/* ================================================
   GROUNDFORM LANDSCAPES — INNER PAGES STYLESHEET
   ================================================ */

/* ── NAV: inner pages always start scrolled ── */
.nav.scrolled .nav__links a { color: var(--dark); }
.nav.scrolled .nav__links a.active { color: var(--lime-dark); }
.nav.scrolled .nav__burger span { background: var(--dark); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--short { height: 360px; }
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  animation: heroScale 18s ease-in-out infinite alternate;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,10,0.85) 0%, rgba(10,22,10,0.4) 60%, rgba(10,22,10,0.3) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 60px;
}
.page-hero__breadcrumb {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(248,250,244,0.5);
  margin-bottom: 12px;
}
.page-hero__breadcrumb a { color: rgba(248,250,244,0.5); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--lime); }
.page-hero__breadcrumb span { margin: 0 8px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88em;
  color: var(--lime);
  letter-spacing: 0;
}
.page-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248,250,244,0.6);
  max-width: 500px;
}

/* ── BACKGROUND HELPERS ── */
.bg-off-white { background: var(--off-white) !important; }
.bg-forest { background: var(--forest) !important; }

/* ── SERVICES INTRO ── */
.services-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.services-intro__inner p { color: var(--text-light); font-weight: 300; line-height: 1.8; }

/* ── SERVICE DETAIL ── */
.service-detail { background: var(--white); }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail--flip .service-detail__inner { direction: rtl; }
.service-detail--flip .service-detail__inner > * { direction: ltr; }
.service-detail__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__img img {
  width: 100%; height: 480px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.service-detail__img:hover img { transform: scale(1.04); }
.service-detail__img-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(168,224,99,0.25);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.service-detail__text p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
}
.service-detail__includes {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
}
.service-detail__includes h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 14px;
}
.service-detail__includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.service-detail__includes ul li {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.service-detail__includes ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime-dark);
  font-size: 12px;
}

/* ── ABOUT STORY ── */
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-story__img-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-story__stat-card {
  position: absolute;
  background: var(--lime);
  color: var(--forest);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-story__stat-card:first-of-type {
  bottom: -24px;
  right: -28px;
}
.about-story__stat-card--2 {
  top: -24px;
  left: -28px;
}
.about-story__stat-card strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.about-story__stat-card span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  display: block;
}
.about-story__text p { color: var(--text-light); font-weight: 300; line-height: 1.85; }
.about-story__values {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--off-white);
}
.about-story__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.about-story__value span { font-size: 1.8rem; }
.about-story__value p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--forest);
  padding: 0;
}
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-band__item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(168,224,99,0.1);
}
.stats-band__item:last-child { border-right: none; }
.stats-band__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band__item span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,250,244,0.45);
}

/* ── WHY US GRID (about page) ── */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--lime-dark);
}
.why-card__icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--lime-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime-dark);
  margin-bottom: 18px;
}
.why-card__icon svg { width: 20px; height: 20px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ── PROCESS ── */
.process__steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process__step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
}
.process__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.process__step-body h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.process__step-body p {
  font-size: 13px;
  color: rgba(248,250,244,0.5);
  font-weight: 300;
  line-height: 1.65;
}
.process__connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--lime-dark), rgba(168,224,99,0.2));
  flex-shrink: 0;
  margin-top: -40px;
}

/* ── FULL GALLERY PAGE ── */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.gallery-filter__btn {
  background: none;
  border: 1.5px solid var(--cream-deep, #e3ddd3);
  border-color: rgba(42,82,40,0.2);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.06em;
}
.gallery-filter__btn:hover,
.gallery-filter__btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--lime);
}
.full-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.fg-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  transition: opacity 0.3s;
}
.fg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.fg-item:hover img { transform: scale(1.06); }
.fg-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,10,0.88) 0%, transparent 55%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.35s;
}
.fg-item:hover .fg-item__overlay { opacity: 1; }
.fg-item__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 5px;
}
.fg-item__overlay strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}
.fg-item__overlay p {
  font-size: 12px;
  color: rgba(248,250,244,0.55);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 2000;
  max-width: 90vw;
  max-height: 90vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.lightbox__img-wrap {
  max-width: 1100px;
  max-height: 80vh;
}
.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}
.lightbox__backdrop {
  position: fixed; inset: 0;
  background: rgba(10,22,10,0.92);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(6px);
}
.lightbox__backdrop.open { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: var(--white); font-size: 1.4rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(168,224,99,0.15);
  border: 1px solid rgba(168,224,99,0.3);
  color: var(--white); font-size: 2.5rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer; z-index: 2001;
  transition: background 0.2s;
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(168,224,99,0.3); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__caption {
  text-align: center;
  color: rgba(248,250,244,0.6);
  font-size: 13px;
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ── MORE PROJECTS ── */
.more-projects__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.more-projects__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.more-projects__text p {
  color: var(--text-light);
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.8;
}

/* ── CONTACT PAGE ── */
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  color: var(--white);
  margin-top: 32px;
  transition: background 0.3s;
}
.contact-info-card:hover { background: var(--forest-mid); }
.contact-info-card__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__icon.lime {
  background: var(--lime);
  color: var(--forest);
}
.contact-info-card__icon svg { width: 22px; height: 22px; }
.contact-info-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248,250,244,0.5);
  margin-bottom: 3px;
}
.contact-info-card strong {
  font-size: 1.3rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.contact-info-items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 3px;
}
.contact-info-item span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}
.contact-trust {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--off-white);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-trust__item {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-trust__item span {
  color: var(--lime-dark);
  font-weight: 700;
}
.contact-page__form-wrap {
  background: var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.contact-page__form-head {
  background: var(--forest-mid);
  padding: 28px 36px;
  border-bottom: 1px solid rgba(168,224,99,0.1);
}
.contact-page__form-head h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-page__form-head p {
  font-size: 13px;
  color: rgba(248,250,244,0.5);
  font-weight: 300;
}
.contact-page__form-wrap form {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Reuse form styles from main style.css — inputs inherit dark form context */
.contact-page__form-wrap .form-group label {
  color: rgba(168,224,99,0.7);
}
.contact-page__form-wrap .form-group input,
.contact-page__form-wrap .form-group select,
.contact-page__form-wrap .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.contact-page__form-wrap .form-group input::placeholder,
.contact-page__form-wrap .form-group textarea::placeholder { color: rgba(248,250,244,0.25); }
.contact-page__form-wrap .form-group select option { background: var(--forest-mid); }
.contact-page__form-wrap .form-group input:focus,
.contact-page__form-wrap .form-group select:focus,
.contact-page__form-wrap .form-group textarea:focus { border-color: var(--lime-dark); }
.form-group--checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex; gap: 12px; cursor: pointer;
  font-size: 13px; color: rgba(248,250,244,0.5);
  font-weight: 300; line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--lime-dark);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(248,250,244,0.3);
}
.contact-page__form-wrap .form-success {
  position: absolute; inset: 0;
  background: rgba(10,22,10,0.97);
  display: none;
  align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
}
.contact-page__form-wrap .form-success.show { display: flex; animation: fadeIn 0.4s ease; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--lime);
  padding: 64px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--forest);
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(15,31,14,0.65);
  font-weight: 300;
  font-size: 1rem;
  max-width: 480px;
}
.cta-band__actions {
  display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0;
}
.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border: 2px solid rgba(15,31,14,0.35);
  padding: 15px 28px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
}
.btn--outline-dark:hover {
  background: rgba(15,31,14,0.08);
  border-color: var(--forest);
}

/* ── FAQ TEASER ── */
.faq-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.faq-teaser__inner .section-title { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-detail__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--flip .service-detail__inner { direction: ltr; }
  .service-detail__img img { height: 360px; }
  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story__stat-card:first-of-type { right: 16px; bottom: -16px; }
  .about-story__stat-card--2 { left: 16px; top: -16px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-band__item { border-right: none; border-bottom: 1px solid rgba(168,224,99,0.1); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page__inner { grid-template-columns: 1fr; gap: 48px; }
  .full-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .more-projects__inner { grid-template-columns: 1fr; }
  .more-projects__actions { flex-direction: row; }
  .services-intro__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .page-hero { height: 380px; }
  .page-hero--short { height: 300px; }
  .why-us__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; gap: 0; align-items: flex-start; }
  .process__step { max-width: 100%; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .process__step-num { font-size: 2rem; flex-shrink: 0; }
  .process__connector { width: 1px; height: 30px; margin: 0 0 0 24px; background: linear-gradient(to bottom, var(--lime-dark), rgba(168,224,99,0.2)); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .stats-band__inner { grid-template-columns: 1fr 1fr; }
  .service-detail__includes ul { grid-template-columns: 1fr; }
  .faq-teaser__inner { flex-direction: column; align-items: flex-start; }
  .about-story__values { flex-direction: column; }
  .full-gallery__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .stats-band__inner { grid-template-columns: 1fr; }
  .contact-page__form-wrap form { padding: 24px 20px; }
  .contact-page__form-head { padding: 22px 20px; }
  .gallery-filter { gap: 8px; }
  .gallery-filter__btn { padding: 8px 16px; font-size: 12px; }
}
