/* ============================================
   GROUNDFORM LANDSCAPES — STYLESHEET
   Palette: Deep Forest · Lime Acid · Off-white
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:     #0f1f0e;
  --forest-mid: #1a3318;
  --forest-light:#2a5228;
  --lime:       #a8e063;
  --lime-dark:  #7cb83a;
  --lime-pale:  #d4f0a0;
  --white:      #f8faf4;
  --off-white:  #eef2e8;
  --grey:       #8a9e84;
  --text:       #1a2e18;
  --text-light: #5a7054;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s;
  --radius: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 32px rgba(15,31,14,0.14);
  --shadow-lg: 0 16px 64px rgba(15,31,14,0.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 14px; height: 14px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease), width 0.2s, height 0.2s, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor.grow {
  width: 40px; height: 40px;
  background: rgba(168,224,99,0.15);
}
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime-dark); margin-bottom: 14px;
}
.eyebrow.light { color: var(--lime-pale); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 16px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88em;
  color: var(--forest-light);
  letter-spacing: 0;
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--lime-pale); }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.section-sub { color: var(--text-light); font-size: 1rem; font-weight: 300; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--lime {
  background: var(--lime); color: var(--forest);
  border-color: var(--lime);
}
.btn--lime:hover {
  background: var(--lime-dark); border-color: var(--lime-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,224,99,0.35);
}
.btn--outline {
  background: transparent; color: var(--white);
  border-color: rgba(248,250,244,0.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(248,250,244,0.08); }
.btn--full { width: 100%; text-align: center; display: block; }
.btn--sm { padding: 10px 22px; font-size: 12px; margin-top: 12px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(15,31,14,0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(168,224,99,0.15);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-mark {
  width: 40px; height: 40px;
  background: var(--lime); color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; flex-shrink: 0;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.08em;
  color: var(--white); line-height: 1.2;
}
.nav__brand-name em { font-family: var(--font-serif); font-style: italic; font-size: 0.85em; color: var(--lime-pale); display: block; }
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav__links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.07em; color: rgba(248,250,244,0.75);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--lime); }
.nav__cta {
  background: var(--lime) !important; color: var(--forest) !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 500 !important; letter-spacing: 0.08em;
}
.nav__cta:hover { background: var(--lime-dark) !important; color: var(--forest) !important; }
.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  animation: heroScale 18s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.35; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,10,0.78) 0%,
    rgba(15,31,14,0.55) 55%,
    rgba(10,22,10,0.65) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: left; padding: 140px 28px 80px;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.hero__tag {
  display: inline-block;
  background: rgba(168,224,99,0.18);
  border: 1px solid rgba(168,224,99,0.4);
  color: var(--lime-pale);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero__headline {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.hero__headline-line {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white);
  display: block;
}
.hero__headline-line--italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  color: var(--lime);
  margin-left: 4vw;
}
.hero__sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(248,250,244,0.7);
  max-width: 480px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(168,224,99,0.7), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll span {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(168,224,99,0.6);
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.15); opacity: 1; }
}
.hero__stats {
  position: absolute; bottom: 0; right: 0;
  z-index: 2;
  display: flex;
}
.hero__stat {
  padding: 24px 32px;
  background: rgba(10,22,10,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168,224,99,0.2);
  text-align: center;
}
.hero__stat + .hero__stat {
  border-left: 1px solid rgba(168,224,99,0.1);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 0.05em;
  color: var(--lime); line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 11px; font-weight: 400;
  color: rgba(248,250,244,0.55);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--forest);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(168,224,99,0.12);
  border-bottom: 1px solid rgba(168,224,99,0.12);
}
.marquee__track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee__track span {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,250,244,0.55);
  padding: 0 28px; white-space: nowrap;
}
.marquee__dot { color: var(--lime) !important; font-size: 8px !important; padding: 0 4px !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services { background: var(--off-white); }
.services__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: end;
  margin-bottom: 64px;
}
.services__intro {
  color: var(--text-light); font-size: 1rem;
  font-weight: 300; line-height: 1.8;
  align-self: end;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card__bg {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card__bg { transform: scale(1.08); }
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,10,0.9) 0%, rgba(10,22,10,0.2) 55%, transparent 100%);
  transition: background 0.4s;
}
.service-card:hover::after {
  background: linear-gradient(to top, rgba(10,22,10,0.92) 0%, rgba(10,22,10,0.5) 100%);
}
.service-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 28px 24px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__content { transform: translateY(0); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.15em;
  color: var(--lime); display: block; margin-bottom: 6px;
}
.service-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 10px;
}
.service-card__content p {
  font-size: 13px; color: rgba(248,250,244,0.65);
  font-weight: 300; line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}
.service-card:hover .service-card__content p {
  opacity: 1; transform: translateY(0);
}

/* ── ABOUT / WHY US ── */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; overflow: hidden;
  padding: 0;
}
.about__image-col {
  position: relative; min-height: 700px;
  background: var(--forest-mid);
}
.about__img-stack { position: relative; width: 100%; height: 100%; }
.about__img--main {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about__img--accent {
  position: absolute; bottom: 48px; right: -36px;
  width: 220px; height: 160px;
  object-fit: cover; border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; top: 48px; left: -20px;
  background: var(--lime); color: var(--forest);
  padding: 18px 22px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 2.8rem; line-height: 1; display: block;
}
.about__badge span {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  line-height: 1.3; display: block;
}
.about__text-col {
  padding: 90px 80px 90px 72px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.about__lead {
  font-size: 1.15rem; font-weight: 300;
  color: var(--text-light); line-height: 1.8;
  margin-bottom: 44px;
}
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.trust-item { display: flex; gap: 14px; }
.trust-item__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1.5px solid var(--lime-dark);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  color: var(--lime-dark);
}
.trust-item__icon svg { width: 18px; height: 18px; }
.trust-item h4 {
  font-size: 14px; font-weight: 500;
  color: var(--forest); margin-bottom: 4px;
}
.trust-item p {
  font-size: 13px; color: var(--text-light);
  font-weight: 300; line-height: 1.6;
}

/* ── GALLERY ── */
.gallery { background: var(--forest); padding-bottom: 0; }
.gallery .section-title { color: var(--white); }
.gallery .section-title em { color: var(--lime-pale); }
.gallery .eyebrow { color: var(--lime); }
.gallery .section-sub { color: rgba(248,250,244,0.5); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-top: 16px;
}
.gallery__item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: auto; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,10,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
  font-size: 13px; font-weight: 400;
  color: var(--white); letter-spacing: 0.06em;
}

/* ── REVIEWS ── */
.reviews { background: var(--off-white); }
.reviews__overall {
  margin-top: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.reviews__stars-big {
  font-size: 1.6rem; color: #f0b429;
  letter-spacing: 4px;
}
.reviews__overall span {
  font-size: 12px; color: var(--text-light);
  font-weight: 400; letter-spacing: 0.06em;
}
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 3px solid var(--lime-dark);
}
.review-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.review-card__top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card__top > div:nth-child(2) { flex: 1; }
.review-card__top strong {
  display: block; font-size: 14px; color: var(--forest);
}
.review-card__top span {
  font-size: 12px; color: var(--text-light); font-weight: 300;
}
.review-card__stars { color: #f0b429; font-size: 0.85rem; letter-spacing: 1px; }
.review-card > p {
  font-family: var(--font-serif);
  font-style: italic; font-size: 0.97rem;
  color: var(--text); line-height: 1.75;
  margin-bottom: 18px;
}
.review-card__service {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime-dark);
  background: rgba(124,184,58,0.1);
  padding: 4px 12px; border-radius: 100px;
}

/* ── FAQ ── */
.faq { position: relative; overflow: hidden; padding: 110px 0; }
.faq__bg { position: absolute; inset: 0; }
.faq__bg img { width: 100%; height: 100%; object-fit: cover; }
.faq__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,10,0.93), rgba(26,51,24,0.92));
}
.faq__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 80px; align-items: start;
}
.faq__header { position: sticky; top: 100px; }
.faq__list { display: flex; flex-direction: column; gap: 3px; }
.faq__item {
  background: rgba(248,250,244,0.05);
  border: 1px solid rgba(168,224,99,0.12);
  border-radius: var(--radius); overflow: hidden;
  transition: background 0.3s;
}
.faq__item.open {
  background: rgba(168,224,99,0.07);
  border-color: rgba(168,224,99,0.25);
}
.faq__q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 400;
  color: var(--white); text-align: left;
}
.faq__q:hover { color: var(--lime-pale); }
.faq__icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid rgba(168,224,99,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq__icon span {
  position: absolute; background: var(--lime);
  border-radius: 2px; transition: transform 0.3s var(--ease);
}
.faq__icon span:first-child { width: 10px; height: 1.5px; }
.faq__icon span:last-child { width: 1.5px; height: 10px; }
.faq__item.open .faq__icon span:last-child { transform: rotate(90deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq__a p {
  padding: 0 24px 24px;
  font-size: 14px; font-weight: 300;
  color: rgba(248,250,244,0.6); line-height: 1.85;
}
.faq__item.open .faq__a { max-height: 400px; }

/* ── CONTACT ── */
.contact { background: var(--forest); }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact .eyebrow { color: var(--lime); }
.contact .section-title { color: var(--white); }
.contact .section-title em { color: var(--lime-pale); }
.contact__blurb {
  color: rgba(248,250,244,0.6);
  font-weight: 300; font-size: 0.95rem;
  margin-top: 18px; line-height: 1.8;
}
.contact__phone {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px; padding: 20px 24px;
  background: rgba(168,224,99,0.1);
  border: 1px solid rgba(168,224,99,0.25);
  border-radius: var(--radius-lg);
  transition: background 0.3s;
}
.contact__phone:hover { background: rgba(168,224,99,0.16); }
.contact__phone-icon {
  width: 44px; height: 44px; background: var(--lime);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--forest); flex-shrink: 0;
}
.contact__phone-icon svg { width: 22px; height: 22px; }
.contact__phone span {
  display: block; font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--lime-pale); margin-bottom: 3px;
}
.contact__phone strong {
  font-size: 1.4rem; font-family: var(--font-display);
  letter-spacing: 0.04em; color: var(--white);
}
.contact__info-items {
  margin-top: 24px; display: flex;
  flex-direction: column; gap: 14px;
}
.contact__info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(248,250,244,0.55);
  font-weight: 300;
}
.contact__info-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--lime-dark); }
.contact__form-col { position: relative; }
.contact__form {
  background: rgba(248,250,244,0.04);
  border: 1px solid rgba(248,250,244,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(168,224,99,0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 14px 16px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--white); outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,250,244,0.25); }
.form-group select option { background: var(--forest-mid); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lime-dark); }
.form-note {
  text-align: center; font-size: 12px;
  color: rgba(248,250,244,0.3); margin-top: -4px;
}
.form-success {
  display: none; position: absolute; inset: 0;
  background: rgba(10,22,10,0.96); border-radius: var(--radius-lg);
  align-items: center; justify-content: center;
}
.form-success.show { display: flex; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-success__content { text-align: center; }
.form-success__tick {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid var(--lime-dark);
  color: var(--lime); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--white); letter-spacing: 0.05em; margin-bottom: 8px;
}
.form-success p { color: rgba(248,250,244,0.6); font-size: 14px; }

/* ── FOOTER ── */
.footer { background: var(--forest); border-top: 1px solid rgba(168,224,99,0.1); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-top: 64px; padding-bottom: 64px;
}
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer__logo span:last-child {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 0.08em; color: var(--white); line-height: 1.2;
}
.footer__logo em {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85em; color: var(--lime-pale); display: block;
}
.footer__brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(248,250,244,0.4); line-height: 1.7;
  max-width: 280px;
}
.footer__nav h5, .footer__services h5, .footer__contact h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-pale); margin-bottom: 20px;
}
.footer__nav, .footer__services, .footer__contact {
  display: flex; flex-direction: column; gap: 10px;
}
.footer__nav a, .footer__services a, .footer__contact a,
.footer__contact span {
  font-size: 13px; color: rgba(248,250,244,0.45);
  font-weight: 300; transition: color 0.2s;
}
.footer__nav a:hover, .footer__services a:hover,
.footer__contact a:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(248,250,244,0.05);
  padding: 20px 28px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom p {
  font-size: 12px; color: rgba(248,250,244,0.2);
}
.footer__bottom em { font-style: italic; color: rgba(248,250,244,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__image-col { min-height: 460px; }
  .about__img--accent { right: 20px; }
  .about__text-col { padding: 60px 40px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: var(--forest); flex-direction: column;
    justify-content: center; align-items: center;
    gap: 28px; z-index: 800;
  }
  .nav__links.open { display: flex; animation: fadeIn 0.3s ease; }
  .nav__links a { font-size: 1.1rem !important; }
  .nav__burger { display: flex; z-index: 1000; position: relative; }
  /* ── HERO MOBILE ── */
  .hero { min-height: 100svh; display: flex; flex-direction: column; }
  .hero__content { padding: 100px 20px 24px; flex: 1; }
  .hero__tag { font-size: 10px; padding: 5px 12px; margin-bottom: 16px; }
  .hero__headline { margin-bottom: 16px; }
  .hero__headline-line { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .hero__headline-line--italic { font-size: clamp(2rem, 9.5vw, 3.2rem); margin-left: 2vw; }
  .hero__sub { font-size: 0.88rem; margin-bottom: 24px; max-width: 100%; }
  .hero__actions .btn { padding: 12px 24px; font-size: 12px; }
  .hero__scroll { display: none; }
  .hero__stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--forest);
    width: 100%;
    flex-shrink: 0;
  }
  .hero__stat { padding: 16px 8px; flex: unset; min-width: unset; text-align: center; }
  .hero__stat strong { font-size: 1.6rem; }
  .hero__stat span { font-size: 9px; letter-spacing: 0.06em; }
  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .services__header { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__header { position: static; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px 20px; }
}

@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__headline-line { font-size: clamp(2rem, 10vw, 3rem); }
  .hero__headline-line--italic { font-size: clamp(1.7rem, 8.5vw, 2.6rem); }
  .hero__stat strong { font-size: 1.4rem; }
  .hero__stat span { font-size: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__text-col { padding: 44px 24px; }
}

/* ── SERVICE CARD image-specific position overrides ── */
.service-card:nth-child(3) .service-card__bg {
  background-position: center 30%;
}
.service-card:nth-child(5) .service-card__bg {
  background-position: center 35%;
}
.service-card:nth-child(6) .service-card__bg {
  background-position: center top;
}

/* ── ABOUT accent image crop ── */
.about__img--accent {
  object-position: center 20%;
}
