/* ============================================================
   Smart Centreville Air Duct Cleaners — revamp
   Aesthetic: refined home-wellness. Deep pine + warm cream +
   brass hairlines. Fraunces (display) / Instrument Sans (body).
   Signature motif: flowing "air current" lines.
   ============================================================ */

:root {
  /* palette — elevated from their real green (#0aa06e / #32ba7c) */
  --pine:        #0d3529;   /* deep primary green */
  --pine-deep:   #082019;   /* darkest */
  --emerald:     #17936a;   /* refined brand green */
  --emerald-lit: #35c88a;   /* accent glow */
  --brass:       #b98a45;   /* premium hairline / seal */
  --brass-lit:   #d8ab68;
  --cream:       #f6f2e9;   /* warm paper bg */
  --cream-2:     #efe8da;   /* panel */
  --cream-3:     #e7ddc9;   /* deeper panel */
  --card:        #fffdf8;   /* card surface */
  --ink:         #17241e;   /* body text */
  --ink-soft:    #51605a;   /* muted text */
  --line:        #ddd2bd;   /* hairline on cream */

  --nav-h: 74px;

  --wrap: 1200px;
  --gap: clamp(1rem, 2.4vw, 2rem);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(13, 53, 41, .06);
  --shadow-md: 0 18px 40px -22px rgba(13, 53, 41, .32);
  --shadow-lg: 0 40px 80px -40px rgba(8, 32, 25, .55);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--pine); color: var(--cream); padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--emerald); color: #fff; }

/* ---------- shared ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) var(--gap); }
.section__head { max-width: var(--wrap); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(185,138,69,.16); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--pine);
  margin-top: 1rem;
  max-width: 20ch;
}
.section__intro {
  margin-top: 1.1rem; max-width: 56ch; color: var(--ink-soft); font-size: 1.06rem;
}

.stars { color: var(--brass); letter-spacing: .12em; font-size: .95rem; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--pine); --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: .82rem 1.4rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--lg { padding: 1.02rem 1.7rem; font-size: 1.02rem; }
.btn--solid { background: var(--pine); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--solid:hover { background: var(--emerald); transform: translateY(-2px); box-shadow: 0 22px 44px -20px rgba(13,53,41,.5); }
.btn--ghost { background: transparent; color: var(--pine); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--pine); background: rgba(13,53,41,.04); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--pine); box-shadow: var(--shadow-lg); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--emerald-lit); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(246,242,233,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(246,242,233,.9); }
.nav__inner {
  width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  color: var(--cream); background: var(--pine);
  border-radius: 12px; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__mark--light { background: rgba(255,255,255,.09); color: var(--emerald-lit); }
.brand__text { display: flex; flex-direction: column; line-height: 1.02; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--pine); letter-spacing: -.01em; }
.brand__sub { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; padding: .3rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--pine); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.phone-inline { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--pine); }
.phone-inline svg { width: 1.05em; height: 1.05em; color: var(--emerald); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); border-radius: 12px; }
.nav__toggle span { width: 20px; height: 2px; background: var(--pine); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.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); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 1.2rem var(--gap) 1.6rem;
  display: flex; flex-direction: column; gap: .3rem;
  box-shadow: var(--shadow-md);
  animation: menuDrop .28s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: .9rem .4rem; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: none; margin-top: .8rem; justify-content: center; }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 3rem)) var(--gap) clamp(2rem, 4vw, 3.5rem);
  min-height: calc(100svh - 0px);
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--cream-2) 0%, var(--cream) 55%),
    var(--cream);
}
.hero__aura {
  position: absolute; z-index: 0; top: -18%; right: -10%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at center, rgba(53,200,138,.22), rgba(53,200,138,0) 62%);
  filter: blur(10px); pointer-events: none;
}
.hero__current { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .5; fill: none; stroke: var(--brass); stroke-width: 1.1; pointer-events: none; }
.hero__current path { stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: draw 3s var(--ease) forwards; }
.hero__current path:nth-child(2) { animation-delay: .25s; stroke: var(--emerald); opacity: .55; }
.hero__current path:nth-child(3) { animation-delay: .5s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__grid {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}

.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(1rem, 2vw, 1.5rem); }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -.022em; color: var(--pine);
  max-width: 100%;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--emerald); }
.hero__lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: min(46ch, 100%); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__proof { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; max-width: 100%; }
.hero__proof .stars { font-size: 1.05rem; }
.hero__proof-text { font-size: .95rem; color: var(--ink-soft); min-width: 0; }
.hero__proof-text strong { color: var(--pine); }

/* hero card */
.hero__card { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
  aspect-ratio: 4 / 4.4;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(255,253,248,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: .7rem 1rem; display: flex; flex-direction: column; line-height: 1.1;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.7);
}
.hero__badge-num { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--pine); }
.hero__badge-label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.hero__chip {
  position: absolute; top: -.9rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pine); color: var(--cream); font-size: .82rem; font-weight: 500;
  padding: .55rem .95rem; border-radius: 100px; box-shadow: var(--shadow-md);
}
.hero__chip-mark { color: var(--brass-lit); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--pine); color: var(--cream); }
.trust__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 1.1rem var(--gap);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem;
}
.trust__item { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; color: rgba(246,242,233,.9); }
.trust__item span { color: var(--brass-lit); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.menu {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem);
}
.menu__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.menu__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.menu__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; color: var(--pine); line-height: 1.1; }
.menu__price { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--emerald); white-space: nowrap; text-transform: uppercase; }
.menu__item p { color: var(--ink-soft); font-size: .96rem; }
.menu__tag {
  align-self: flex-start; margin-top: auto; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brass); background: rgba(185,138,69,.1); padding: .3rem .7rem; border-radius: 100px;
}

.services__note {
  max-width: var(--wrap); margin: clamp(2rem, 4vw, 3rem) auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.6rem 1.8rem; border-radius: var(--r-md);
  background: linear-gradient(120deg, var(--cream-2), var(--cream-3));
  border: 1px solid var(--line);
}
.services__note p { color: var(--pine); font-weight: 500; font-size: 1.05rem; max-width: 48ch; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--pine-deep); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) var(--gap); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, rgba(53,200,138,.16), transparent 60%);
}
.stats__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat { text-align: center; padding: .5rem; border-left: 1px solid rgba(246,242,233,.14); }
.stat:first-child { border-left: none; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1; letter-spacing: -.01em; }
.stat__mark { color: var(--emerald-lit); font-size: .6em; vertical-align: super; margin-left: .05em; }
.stat__label { display: block; margin-top: .6rem; font-size: .86rem; letter-spacing: .04em; color: rgba(246,242,233,.72); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gallery__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.4vw, 1.2rem);
}
.gallery__cell {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.gallery__cell--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cell figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 1.3rem 1.1rem .9rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: #fff;
  background: linear-gradient(to top, rgba(8,32,25,.72), transparent);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.reviews__rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; font-weight: 500; color: var(--pine); }
.reviews__rating .stars { font-size: 1.1rem; }
.reviews__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.4rem);
}
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow-sm);
}
.review--feature {
  grid-column: span 1; grid-row: span 1;
  background: var(--pine); color: var(--cream); border-color: transparent;
}
.review--feature p { color: var(--cream); font-size: 1.14rem; }
.review--feature .review__name { color: #fff; }
.review--feature .review__meta { color: rgba(246,242,233,.6); }
.review p { font-family: var(--font-display); font-weight: 400; font-size: 1.04rem; line-height: 1.45; color: var(--ink); font-optical-sizing: auto; }
.review footer { margin-top: auto; display: flex; flex-direction: column; }
.review__name { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--pine); }
.review__meta { font-size: .8rem; color: var(--ink-soft); }
.reviews__crew { max-width: var(--wrap); margin: clamp(2rem,4vw,3rem) auto 0; text-align: center; color: var(--ink-soft); font-size: 1.02rem; }
.reviews__crew strong { color: var(--pine); font-weight: 600; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream-2); }
.visit__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.visit__rows { margin-top: 2rem; display: flex; flex-direction: column; gap: .1rem; border-top: 1px solid var(--line); }
.visit__row { display: flex; flex-direction: column; gap: .35rem; padding: 1.2rem .2rem; border-bottom: 1px solid var(--line); }
.visit__label { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--emerald); }
.visit__value { font-size: 1.16rem; color: var(--pine); font-weight: 500; }
.visit__row--call { transition: padding-left .25s var(--ease); }
.visit__row--call:hover { padding-left: .8rem; }
.visit__row--call .visit__value { font-family: var(--font-display); font-size: 1.7rem; }
.hours { display: flex; justify-content: space-between; gap: 1rem; font-size: 1rem; font-weight: 400; color: var(--ink); max-width: 320px; padding: .12rem 0; }
.hours span:last-child { color: var(--ink-soft); }

.seal { margin-top: 2rem; display: flex; gap: 1.2rem; align-items: center; padding: 1.4rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); }
.seal__badge {
  flex: none; width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  color: var(--cream); background: var(--pine);
  border: 2px solid var(--brass); box-shadow: inset 0 0 0 3px rgba(246,242,233,.12);
}
.seal__yr { font-family: var(--font-display); font-weight: 600; font-size: .82rem; line-height: 1.05; letter-spacing: .06em; }
.seal__text { font-size: .95rem; color: var(--ink-soft); }

.visit__map { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.95); }
.visit__directions {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--cream); color: var(--pine); font-weight: 600; font-size: .88rem;
  padding: .6rem 1rem; border-radius: 100px; box-shadow: var(--shadow-md);
}
.visit__directions:hover { background: #fff; }

/* ============================================================
   CLOSER
   ============================================================ */
.closer {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--cream); text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gap);
}
.closer__current { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: var(--emerald-lit); stroke-width: 1.1; opacity: .32; }
.closer__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.closer__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.04; letter-spacing: -.015em; }
.closer__text { color: rgba(246,242,233,.82); font-size: 1.1rem; max-width: 46ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--pine-deep); color: var(--cream); padding: clamp(2.6rem, 5vw, 3.6rem) var(--gap) 1.8rem; }
.footer__inner {
  max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.6rem;
  padding-bottom: 1.8rem; border-bottom: 1px solid rgba(246,242,233,.12);
}
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.footer__tag { font-size: .9rem; color: rgba(246,242,233,.62); font-style: italic; font-family: var(--font-display); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.footer__links a { font-size: .92rem; color: rgba(246,242,233,.82); }
.footer__links a:hover { color: var(--emerald-lit); }
.footer__base { max-width: var(--wrap); margin: 1.4rem auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
.footer__base p { font-size: .82rem; color: rgba(246,242,233,.5); }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: .05s; }
[data-reveal]:nth-child(3) { transition-delay: .1s; }
[data-reveal]:nth-child(4) { transition-delay: .15s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav__links, .phone-inline { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__card { order: 2; max-width: 460px; }
  .hero__photo { aspect-ratio: 16/11; }
  .hero__photo img { object-position: 60% 40%; }

  .menu { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(3) { border-left: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__cell--wide { grid-column: span 2; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .review--feature { grid-column: span 2; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map iframe { min-height: 340px; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .section { padding: clamp(3.2rem, 12vw, 4.5rem) var(--gap); }
  .hero__copy > * { max-width: 100%; }
  .hero__title { font-size: clamp(2rem, 8.6vw, 2.7rem); }
  .hero__lede { max-width: 100%; }
  .eyebrow { letter-spacing: .1em; flex-wrap: wrap; font-size: .72rem; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__card { max-width: none; }
  .menu { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__cell, .gallery__cell--wide { grid-column: span 1; aspect-ratio: 16/10; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review--feature { grid-column: span 1; }
  .services__note { flex-direction: column; align-items: flex-start; }
  .trust__inner { justify-content: flex-start; }
  .footer__base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__current path { animation: none; stroke-dashoffset: 0; }
  .btn, .menu__item, .gallery__cell img { transition: none !important; }
}
