/* =========================================================
   Ada's Lawn Care, LLC
   Palette grounded in the brand mark (grass-green script on
   mulch-black with a red rule) and the look of the real work:
   black mulch beds with crisp edges against vivid lawn.
   ========================================================= */

:root {
  /* color */
  --soil:        #0D120B;   /* near-black, green-tinted, like rich mulch */
  --soil-2:      #121A0F;   /* raised panel */
  --soil-3:      #18230F;   /* card surface */
  --grass:       #6FBF2C;   /* brand green */
  --grass-deep:  #4F9220;
  --lime:        #A6E84F;   /* highlight green */
  --bone:        #F2F4EC;   /* warm off-white */
  --mist:        #9FAE93;   /* muted sage text */
  --mist-dim:    #6E7C63;
  --clay:        #C81B1B;   /* brand red — used sparingly */
  --line:        rgba(159, 174, 147, 0.16);

  /* type */
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  /* metrics */
  --container: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--soil);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* ---------- shared layout ---------- */
.section { padding: clamp(72px, 11vw, 140px) var(--gut); position: relative; }
.section__head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section__title {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-top: 14px;
}
.section__lead { color: var(--mist); margin-top: 18px; font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--grass);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grass);
  box-shadow: 0 0 0 4px rgba(111,191,44,0.18);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .35s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: var(--grass); color: #0a0f08;
  box-shadow: 0 10px 30px -10px rgba(111,191,44,0.6);
}
.btn--solid:hover { transform: translateY(-3px); background: var(--lime); box-shadow: 0 18px 40px -12px rgba(166,232,79,0.7); }
.btn--ghost {
  background: rgba(242,244,236,0.04); color: var(--bone);
  border-color: var(--line);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--grass); color: var(--lime); }
.btn--pill { padding: 11px 22px; background: var(--grass); color: #0a0f08; }
.btn--pill:hover { background: var(--lime); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--grass), var(--lime));
  z-index: 200; transition: width .1s linear;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 18px var(--gut);
  transition: padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 16, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav.scrolled .nav__inner { padding-top: 11px; padding-bottom: 11px; }
.nav__logo { height: 40px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 1px 1px rgba(0,0,0,0.9)) drop-shadow(0 2px 10px rgba(0,0,0,0.7)); }
.nav.scrolled .nav__logo { height: 34px; }
.nav__links { margin-left: auto; display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: var(--mist);
  position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grass); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav__toggle {
  display: none; margin-left: auto; background: none; border: 0;
  width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--gut) 150px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,16,9,0.55) 0%, rgba(11,16,9,0.35) 35%, rgba(11,16,9,0.86) 100%),
    radial-gradient(120% 80% at 15% 50%, rgba(11,16,9,0.7) 0%, rgba(11,16,9,0) 60%);
}
.hero__content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; width: 100%; }
.hero__title {
  font-size: clamp(2.9rem, 8.5vw, 6.6rem);
  font-weight: 600;
  margin: 18px 0 8px;
  letter-spacing: -0.02em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.1em; }
.hero__title .line > span { display: block; }
.hero__title em {
  font-style: italic; color: var(--grass); font-weight: 500;
}
.hero__sub { max-width: 560px; color: #dfe6d6; font-size: 1.12rem; margin-top: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(11,16,9,0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 100px;
  font-size: 0.92rem;
}
.chip__stars { color: var(--lime); letter-spacing: 2px; }
.chip__text strong { color: var(--bone); }
.chip--alt { color: var(--mist); }

.hero__scroll {
  position: absolute; bottom: 116px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mist);
}
.hero__scroll svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* =========================================================
   ORGANIC EDGE DIVIDERS (mulch-meets-grass motif)
   ========================================================= */
.edge { position: absolute; left: 0; width: 100%; height: clamp(70px, 9vw, 120px); z-index: 3; display: block; }
.edge--hero { bottom: -1px; }
.edge--up { top: -1px; transform: translateY(-99%); }
.edge__fill { fill: var(--soil); }
.edge__line {
  stroke: var(--grass); stroke-width: 3;
  stroke-dasharray: 3000; stroke-dashoffset: 3000;
  filter: drop-shadow(0 0 6px rgba(111,191,44,0.5));
}
.edge--hero .edge__line { animation: draw 2.4s var(--ease) .6s forwards; }
.edge.in-view .edge__line { animation: draw 2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* The .edge--up sits above a section; its fill should match that section's bg.
   Sections that follow it set their own bg, so we recolor per use below. */
.services + .edge--up .edge__fill,
.edge--up .edge__fill { fill: var(--soil); }

/* =========================================================
   STATS
   ========================================================= */
.stats { padding: clamp(46px, 7vw, 80px) var(--gut); background: var(--soil-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; position: relative; }
.stat::after {
  content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: var(--line);
}
.stat:last-child::after { display: none; }
.stat__num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4rem); color: var(--grass);
  line-height: 1; display: flex; justify-content: center; align-items: baseline;
}
.stat__num .plus { color: var(--lime); }
.stat__label { color: var(--mist); font-size: 0.92rem; margin-top: 10px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--soil); }
.cards {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: linear-gradient(180deg, rgba(24,35,15,0.9), rgba(18,26,15,0.7));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 30px;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), border-color .4s, box-shadow .45s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 50% -20%, rgba(111,191,44,0.16), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(111,191,44,0.5);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(111,191,44,0.12);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--grass);
  background: rgba(111,191,44,0.1);
  border: 1px solid rgba(111,191,44,0.25);
  transition: transform .45s var(--ease), background .4s;
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); background: rgba(111,191,44,0.18); }
.card__icon svg { width: 32px; height: 32px; }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--mist); font-size: 0.98rem; }
.services__more {
  max-width: var(--container); margin: 44px auto 0; text-align: center;
  color: var(--mist); font-size: 0.98rem;
}
.services__more a { color: var(--grass); font-weight: 600; white-space: nowrap; }
.services__more a:hover { color: var(--lime); }

/* =========================================================
   WORK / GALLERY
   ========================================================= */
.work { background: var(--soil-2); }
.gallery {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 16px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--soil-3); padding: 0;
  cursor: pointer; grid-column: span 1; grid-row: span 1;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,16,9,0.85));
  opacity: .55; transition: opacity .4s;
}
.gallery__cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 0.92rem; font-weight: 600; color: var(--bone);
  transform: translateY(8px); opacity: 0; transition: transform .45s var(--ease), opacity .4s;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: .8; }
.gallery__item:hover .gallery__cap { transform: translateY(0); opacity: 1; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--soil); }
.about__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 6vw, 80px); align-items: center;
}
.about__media { position: relative; border-radius: 24px; overflow: hidden; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; right: 18px; bottom: 18px;
  background: var(--grass); color: #0a0f08;
  width: 104px; height: 104px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 600; line-height: 1.05;
  box-shadow: 0 20px 40px -16px rgba(111,191,44,0.7);
  transform: rotate(-8deg);
}
.about__text .section__title { text-align: left; }
.about__text > p { color: var(--mist); margin-top: 18px; }
.about__text strong { color: var(--bone); }
.about__list {
  list-style: none; padding: 0; margin: 26px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px;
}
.about__list li {
  position: relative; padding-left: 26px; color: var(--bone); font-size: 0.98rem;
}
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 9px; border-left: 2px solid var(--grass); border-bottom: 2px solid var(--grass);
  transform: rotate(-45deg);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--soil-2); overflow: hidden; }
.reviews__track {
  max-width: var(--container); margin: 0 auto;
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 14px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 82vw);
  background: linear-gradient(180deg, rgba(24,35,15,0.8), rgba(18,26,15,0.6));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 30px; margin: 0;
  display: flex; flex-direction: column;
}
.review__stars { color: var(--lime); letter-spacing: 3px; font-size: 1.05rem; }
.review blockquote {
  margin: 16px 0 22px; font-family: var(--display);
  font-size: 1.18rem; line-height: 1.45; font-weight: 400; color: var(--bone);
}
.review figcaption { margin-top: auto; display: flex; flex-direction: column; }
.review__name { font-weight: 600; }
.review__src { color: var(--mist); font-size: 0.85rem; }
.reviews__nav { max-width: var(--container); margin: 26px auto 0; display: flex; gap: 12px; justify-content: center; }
.rbtn {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(242,244,236,0.04); border: 1px solid var(--line); color: var(--bone);
  display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.rbtn:hover { background: var(--grass); color: #0a0f08; border-color: var(--grass); transform: translateY(-2px); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--soil); }
.contact__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 6vw, 72px); align-items: start;
}
.contact__intro .section__title { text-align: left; }
.contact__intro > p { color: var(--mist); margin-top: 18px; max-width: 420px; }
.contact__info { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.contact__info li { display: flex; align-items: center; gap: 14px; font-size: 1.02rem; }
.contact__info a:hover { color: var(--lime); }
.contact__ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: var(--grass);
  background: rgba(111,191,44,0.1); border: 1px solid rgba(111,191,44,0.22);
}

/* form */
.form {
  background: linear-gradient(180deg, rgba(24,35,15,0.7), rgba(18,26,15,0.55));
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(26px, 4vw, 40px);
  position: relative;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--bone); }
.field__opt { color: var(--mist-dim); font-weight: 400; }
.field input, .field textarea, .select-wrap select {
  background: rgba(11,16,9,0.6);
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--bone); font-family: inherit; font-size: 1rem;
  padding: 13px 15px; width: 100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--mist-dim); }
.field input:focus, .field textarea:focus, .select-wrap select:focus {
  outline: none; border-color: var(--grass);
  box-shadow: 0 0 0 4px rgba(111,191,44,0.14);
  background: rgba(11,16,9,0.85);
}
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px; }
.select-wrap svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--mist); pointer-events: none; }
.field.invalid input, .field.invalid select { border-color: var(--clay); box-shadow: 0 0 0 4px rgba(200,27,27,0.14); }
.field__error { color: #ef6a6a; font-size: 0.8rem; margin-top: 6px; min-height: 0; opacity: 0; transition: opacity .2s; }
.field.invalid .field__error { opacity: 1; }
.form__note { color: var(--mist-dim); font-size: 0.82rem; margin-top: 14px; text-align: center; }

.form__success {
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(180deg, rgba(18,26,15,0.98), rgba(13,18,11,0.98));
  border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 40px; gap: 6px;
  animation: fadeUp .5s var(--ease);
}
.form__success h3 { font-size: 1.8rem; }
.form__success p { color: var(--mist); max-width: 320px; margin: 6px 0 20px; }
.form__success-mark { color: var(--grass); width: 76px; height: 76px; margin-bottom: 6px; }
.form__success-mark svg { width: 100%; height: 100%; }
.form__success-mark circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw2 .5s var(--ease) .1s forwards; }
.form__success-mark path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw2 .35s var(--ease) .5s forwards; }
@keyframes draw2 { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn.is-loading .btn__label { opacity: 0.4; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { position: relative; background: var(--soil-2); padding-top: 120px; border-top: 1px solid var(--line); }
.edge--footer { fill: var(--soil-2); }
.edge--footer .edge__fill { fill: var(--soil-2); }
.footer__logo { height: 50px; width: auto; margin-bottom: 18px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gut) 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
}
.footer__brand p { color: var(--mist); max-width: 360px; font-size: 0.96rem; }
.footer h4 { font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--grass); margin-bottom: 16px; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a, .footer__contact span { color: var(--mist); font-size: 0.96rem; transition: color .25s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--lime); }
.footer__bar {
  border-top: 1px solid var(--line);
  padding: 22px var(--gut);
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--mist-dim); font-size: 0.86rem;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,11,6,0.94); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 4vw;
  animation: fadeUp .3s var(--ease);
}
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9); }
.lightbox__close {
  position: absolute; top: 22px; right: 22px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(242,244,236,0.08); border: 1px solid var(--line); color: var(--bone);
  display: grid; place-items: center; transition: background .25s, transform .25s;
}
.lightbox__close:hover { background: var(--clay); transform: rotate(90deg); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* hero line clip-reveal */
.hero__title .line > span { transform: translateY(110%); transition: transform 1s var(--ease); }
.hero.loaded .hero__title .line:nth-child(1) > span { transition-delay: .15s; transform: translateY(0); }
.hero.loaded .hero__title .line:nth-child(2) > span { transition-delay: .32s; transform: translateY(0); }
.hero .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hero.loaded .reveal { opacity: 1; transform: translateY(0); }
.hero.loaded .reveal[data-delay="1"] { transition-delay: .5s; }
.hero.loaded .reveal[data-delay="2"] { transition-delay: .62s; }
.hero.loaded .reveal[data-delay="3"] { transition-delay: .74s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.menu-open { background: rgba(11,16,9,0.96); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
  .nav.menu-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px var(--gut) 22px;
  }
  .nav.menu-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav.menu-open .nav__cta { display: inline-flex; margin: 14px var(--gut) 0; width: calc(100% - var(--gut)*2); }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .nav__logo, .nav.scrolled .nav__logo { height: 32px; }
  .cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__scroll { display: none; }
  .footer__bar { flex-direction: column; gap: 6px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], .hero .reveal, .hero__title .line > span { opacity: 1 !important; transform: none !important; }
  .edge__line { stroke-dashoffset: 0 !important; }
  .hero__media img { transform: scale(1.02) !important; }
}
