/* =========================================================
   Lustre Clean Carpet Services — "Heritage Eco-Refined"
   Palette built up from their real brand green (#73c142),
   elevated to deep evergreen + warm cream + brass.
   ========================================================= */

:root {
  /* ink & evergreens */
  --ink: #17231b;
  --pine: #14362a;
  --pine-deep: #0e281e;
  --pine-soft: #1f4a37;

  /* greens (refined from their #73c142) */
  --green: #4f9d2f;
  --green-bright: #73c142;
  --green-deep: #2f6f28;

  /* warm neutrals */
  --cream: #f5f1e8;
  --cream-2: #efe9db;
  --card: #fffdf8;
  --sand: #e3dbc7;

  /* accents / text */
  --brass: #bb8b3c;
  --brass-soft: #d3a856;
  --muted: #5f6b60;
  --muted-2: #7a8478;
  --on-dark: #eef2e9;
  --on-dark-soft: #b4c4b5;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --nav-h: 76px;
  --r: 16px;
  --r-lg: 26px;
  --shadow: 0 22px 50px -28px rgba(20, 54, 42, .5);
  --shadow-soft: 0 14px 34px -22px rgba(20, 54, 42, .38);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
.page { overflow-x: clip; position: relative; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
iframe { border: 0; }

/* ---------- shared typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--brass-soft); }

.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--pine);
}
.section-title--light { color: var(--on-dark); }
.section-lede {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.06rem;
}
.section-title--light + .why-lede, .why .section-lede { color: var(--on-dark-soft); }

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

/* grain overlay */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: overlay;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { height: 38px; width: auto; }
.nav-logo--color { display: none; }
.nav-logo--white { display: block; }

.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem); }
.nav-links > a {
  font-weight: 600; font-size: .95rem; color: rgba(238, 242, 233, .9);
  letter-spacing: .01em; transition: color .2s;
}
.nav-links > a:hover { color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(180deg, var(--brass-soft), var(--brass));
  color: #22190a !important; font-weight: 800; font-size: .92rem;
  padding: .62rem 1.05rem; border-radius: 100px;
  box-shadow: 0 8px 20px -10px rgba(187, 139, 60, .7);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(187, 139, 60, .85); }
.nav-cta svg { flex: none; }

/* scrolled state */
.nav.scrolled {
  background: rgba(245, 241, 232, .9);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 rgba(20, 54, 42, .08), 0 12px 30px -24px rgba(20, 54, 42, .5);
}
.nav.scrolled .nav-logo--white { display: none; }
.nav.scrolled .nav-logo--color { display: block; }
.nav.scrolled .nav-links > a { color: var(--pine); }
.nav.scrolled .nav-links > a:hover { color: var(--green-deep); }

/* hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px;
  background: var(--on-dark); transition: transform .3s, opacity .2s, background .35s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav.scrolled .nav-toggle span { background: var(--pine); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + clamp(1rem, 3vw, 2.2rem)) 0 clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(115, 193, 66, .16), transparent 55%),
    linear-gradient(158deg, #12332708 0%, transparent 30%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -8%; top: -14%;
  background: radial-gradient(circle, rgba(115, 193, 66, .22), transparent 62%);
  filter: blur(20px);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.12fr .88fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-copy { display: flex; flex-direction: column; min-width: 0; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fbfaf5;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic; font-weight: 500;
  color: var(--green-bright);
}
.hero-sub {
  margin-top: 1.4rem; max-width: 34em;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--on-dark-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-actions--center { justify-content: center; }
.hero-proof {
  display: flex; align-items: center; gap: .8rem; margin-top: 1.8rem;
  flex-wrap: wrap;
}
.hero-proof .stars { font-size: 1.15rem; }
.hero-proof-txt { color: var(--on-dark-soft); font-size: .95rem; max-width: 30em; }

/* hero trust card */
.hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}
.hero-card-mark { width: 60px; height: 60px; margin-bottom: 1rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }
.hero-card-kicker {
  font-family: var(--font-display); font-style: italic; font-size: 1.28rem;
  color: #fff; margin-bottom: 1.3rem;
}
.hero-card-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem 1rem; }
.hero-card-list li { display: flex; flex-direction: column; }
.hero-card-list strong {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  color: var(--brass-soft); line-height: 1.1;
}
.hero-card-list span { font-size: .82rem; color: var(--on-dark-soft); margin-top: .15rem; }
.hero-card-link {
  display: inline-block; margin-top: 1.5rem; font-weight: 700; font-size: .9rem;
  color: var(--green-bright); border-bottom: 1px solid rgba(115, 193, 66, .4); padding-bottom: 2px;
  transition: gap .2s, color .2s;
}
.hero-card-link:hover { color: #fff; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; letter-spacing: .005em;
  padding: .95rem 1.6rem; border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn--gold {
  background: linear-gradient(180deg, var(--brass-soft), var(--brass));
  color: #22190a;
  box-shadow: 0 14px 30px -14px rgba(187, 139, 60, .8);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(187, 139, 60, .95); }
.btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff; border: 1.5px solid rgba(255, 255, 255, .34);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }
.btn--green {
  background: var(--pine); color: #fff;
  box-shadow: 0 14px 30px -16px rgba(20, 54, 42, .8);
}
.btn--green:hover { background: var(--pine-soft); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--pine);
  border: 1.5px solid rgba(20, 54, 42, .28);
}
.btn--outline:hover { border-color: var(--pine); background: rgba(20, 54, 42, .04); transform: translateY(-2px); }

/* =========================================================
   BAND (marquee)
   ========================================================= */
.band {
  background: var(--pine-deep);
  color: var(--on-dark-soft);
  overflow: hidden; padding: .95rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.band-track {
  display: flex; align-items: center; gap: 1.6rem; width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display); font-style: italic; font-size: 1.12rem;
  white-space: nowrap;
}
.band-track span { color: #dfe6d5; }
.band-track .dot { color: var(--green-bright); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.services, .gallery, .area { background: var(--cream); }
.services > *, .reviews > *, .gallery > *, .area > * {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.svc {
  background: var(--card); border: 1px solid var(--sand);
  border-radius: var(--r-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(79, 157, 47, .4); }
.svc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 15px; margin-bottom: 1.3rem;
  color: var(--green-deep);
  background: linear-gradient(160deg, rgba(115, 193, 66, .16), rgba(115, 193, 66, .05));
  border: 1px solid rgba(79, 157, 47, .22);
}
.svc h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--pine); margin-bottom: .5rem; }
.svc p { color: var(--muted); font-size: .98rem; }
.svc-more {
  margin-top: 2.4rem; text-align: center; color: var(--muted);
  font-size: .96rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: center; align-items: center;
}
.svc-more span {
  position: relative; font-weight: 600; color: var(--pine);
}
.svc-more span::before { content: "✦"; color: var(--green); margin-right: .5rem; font-size: .7rem; vertical-align: middle; }

/* =========================================================
   WHY (dark)
   ========================================================= */
.why {
  background:
    radial-gradient(90% 80% at 12% 10%, rgba(115, 193, 66, .12), transparent 55%),
    linear-gradient(155deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--on-dark);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.why-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.why-lede { color: var(--on-dark-soft); margin-top: 1.2rem; font-size: 1.05rem; max-width: 40em; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.6rem; margin-top: 2.4rem; }
.why-point { display: flex; gap: .85rem; align-items: flex-start; }
.why-check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
  color: var(--pine-deep); background: var(--green-bright);
  box-shadow: 0 6px 14px -6px rgba(115, 193, 66, .6);
}
.why-point strong { display: block; color: #fff; font-weight: 700; font-size: 1.02rem; margin-bottom: .15rem; }
.why-point div { color: var(--on-dark-soft); font-size: .92rem; line-height: 1.5; }

/* seal */
.why-seal { display: flex; flex-direction: column; align-items: center; text-align: center; }
.seal {
  position: relative; width: 190px; height: 190px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(211, 168, 86, .22), rgba(14, 40, 30, .1));
  border: 2px solid var(--brass);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6), inset 0 0 30px rgba(211, 168, 86, .12);
}
.seal-ring { position: absolute; inset: 12px; border-radius: 50%; border: 1px dashed rgba(211, 168, 86, .5); }
.seal-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.seal-100 { font-family: var(--font-display); font-weight: 600; font-size: 2.9rem; color: var(--brass-soft); line-height: 1; }
.seal-txt { font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); margin-top: .35rem; line-height: 1.4; }
.why-seal-note { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: #fff; margin-top: 1.8rem; max-width: 24em; }
.why-seal-cite { color: var(--brass-soft); font-weight: 700; font-size: .85rem; margin-top: .7rem; letter-spacing: .02em; }

/* =========================================================
   GALLERY (masonry via columns)
   ========================================================= */
.gallery { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.gallery-grid { columns: 3; column-gap: 1.3rem; }
.shot {
  break-inside: avoid; margin-bottom: 1.3rem;
  border-radius: var(--r); overflow: hidden; position: relative;
  border: 1px solid var(--sand); box-shadow: var(--shadow-soft);
  background: var(--card);
}
.shot img { width: 100%; height: auto; transition: transform .6s ease; }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .95rem .8rem; font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(14, 40, 30, .82), transparent);
  letter-spacing: .01em;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--cream-2); padding: clamp(4.5rem, 9vw, 8rem) 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.review {
  background: var(--card); border: 1px solid var(--sand);
  border-radius: var(--r-lg); padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.review--feature {
  grid-row: span 2; grid-column: span 1;
  background: linear-gradient(160deg, var(--pine), var(--pine-deep));
  border-color: transparent; color: var(--on-dark);
}
.review .stars { margin-bottom: 1rem; }
.review blockquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.12rem; line-height: 1.45; color: var(--pine);
  letter-spacing: -.01em;
}
.review--feature blockquote { color: #fbfaf5; font-size: 1.34rem; }
.review figcaption { margin-top: 1.3rem; display: flex; flex-direction: column; }
.rev-name { font-weight: 700; color: var(--pine); font-size: .98rem; }
.review--feature .rev-name { color: #fff; }
.rev-meta { font-size: .82rem; color: var(--muted-2); margin-top: .1rem; }
.review--feature .rev-meta { color: var(--on-dark-soft); }
.rev-reply {
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .88rem; color: var(--on-dark-soft); line-height: 1.55;
}
.rev-reply span {
  display: block; font-weight: 700; color: var(--brass-soft);
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem;
}

/* =========================================================
   AREA + CONTACT
   ========================================================= */
.area { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.area-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.area-copy .section-title, .area-copy .section-lede { text-align: left; }
.area-copy .section-lede { margin-left: 0; }
.area-contact { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.area-facts {
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.6rem; margin-top: 2rem;
  justify-content: start;
}
.area-facts dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); font-weight: 700; }
.area-facts dd { font-family: var(--font-display); font-size: 1.02rem; color: var(--pine); margin-top: .3rem; }
.area-towns {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem;
  padding-top: 1.8rem; border-top: 1px solid var(--sand);
}
.area-towns li {
  font-size: .82rem; font-weight: 600; color: var(--muted);
  background: var(--card); border: 1px solid var(--sand);
  padding: .34rem .72rem; border-radius: 100px;
}
.area-map {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--sand);
  box-shadow: var(--shadow); background: var(--card);
  aspect-ratio: 4 / 3.4; min-height: 340px;
}
.area-map iframe { width: 100%; height: 100%; display: block; filter: saturate(.9); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(115, 193, 66, .2), transparent 60%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--on-dark);
}
.cta-bg { position: absolute; inset: 0; }
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 var(--pad); }
.cta-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.02em; color: #fbfaf5;
}
.cta-sub { margin-top: 1.1rem; color: var(--on-dark-soft); font-size: 1.1rem; }
.cta .hero-actions { margin-top: 2.2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--pine-deep); color: var(--on-dark-soft); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .92rem; max-width: 34ch; color: var(--on-dark-soft); }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1.3rem; }
.footer-social a { font-weight: 700; font-size: .85rem; color: var(--brass-soft); transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-col h4 {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.1rem; font-weight: 700;
}
.footer-col a, .footer-col span { display: block; font-size: .92rem; color: var(--on-dark-soft); margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: var(--green-bright); }
.footer-base {
  max-width: var(--maxw); margin: 2.8rem auto 0; padding: 1.6rem var(--pad) 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .82rem; color: var(--muted-2);
}
.footer-note { color: var(--brass-soft); font-weight: 600; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(245, 241, 232, .98);
    backdrop-filter: blur(14px);
    padding: .6rem var(--pad) 1.4rem;
    box-shadow: 0 24px 40px -24px rgba(20, 54, 42, .5);
    border-top: 1px solid var(--sand);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { color: var(--pine); padding: .85rem .2rem; border-bottom: 1px solid var(--sand); }
  .nav-links > a:hover { color: var(--green-deep); }
  .nav-cta { margin-top: .9rem; justify-content: center; }
  .nav-toggle { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }

  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-seal { order: -1; }

  .area-inner { grid-template-columns: 1fr; }
  .review--feature { grid-row: span 1; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 620px) {
  .hero-title { font-size: clamp(2.3rem, 10vw, 3rem); }
  .hero-actions .btn { flex: 1 1 auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .why-points { grid-template-columns: 1fr; }
  .area-facts { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .band-track { animation: none; }
  .shot:hover img { transform: none; }
  .btn:hover, .svc:hover, .nav-cta:hover { transform: none; }
}
