/* Quality Greens Landscape & Design
   Brand colors (extracted from logo, see brand profile): #3A783A #275D2A #0B2C10 #C9B42D #599748
   ADDITIONS (not brand colors, chosen for this site): --ground, --ground-2, --ink-soft, --stone
   Shape rule: one radius (--r) on every image, panel, button and input. Nothing is pill-shaped.
   Gold is only for rules, keylines and shapes on light ground. It may carry text on --night. */

@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --ground: #edefe6;      /* addition: pale sage bone */
  --ground-2: #e2e6d8;    /* addition */
  --stone: #cfd4c4;       /* addition */
  --ink: #0b2c10;
  --ink-soft: #3b4a3d;    /* addition, 8.1:1 on --ground */
  --green: #3a783a;
  --green-deep: #275d2a;
  --leaf: #599748;
  --night: #0b2c10;
  --night-2: #123a18;
  --on-night: #e9eee2;
  --on-night-soft: #b9c7b4;
  --gold: #c9b42d;
  --line: rgb(11 44 16 / 0.14);
  --line-night: rgb(233 238 226 / 0.16);
  --r: 4px;
  --wrap: 1320px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.2, 0.7, 0, 1);
  --ease-cut: cubic-bezier(0.7, 0, 0.2, 1);
  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0f1a11;
    --ground-2: #16241a;
    --stone: #2a3a2d;
    --ink: #e6ebdf;
    --ink-soft: #b4c0b0;
    --green: #6fae5f;
    --green-deep: #3a783a;
    --night: #08150b;
    --night-2: #0f2214;
    --line: rgb(230 235 223 / 0.14);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  font-stretch: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
/* Film grain: fixed layer, never on scrolling containers */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("/img/grain.png");
  background-size: 128px 128px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.num, .tabular { font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.i { width: 1.15em; height: 1.15em; flex: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--night); color: var(--on-night); padding: .75rem 1rem; border-radius: var(--r);
  text-decoration: none;
}
.skip:focus { top: 1rem; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.lede { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.prose { max-width: 66ch; color: var(--ink-soft); }
.prose p { margin-bottom: 1.1em; }
.prose strong { color: var(--ink); font-weight: 650; }
.h2 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.6rem); }
.h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 2px; background: var(--gold); }
.rule { height: 3px; width: 3.5rem; background: var(--gold); border: 0; margin: 0 0 1.5rem; }
.stack > * + * { margin-top: 1.25rem; }

/* Buttons */
.btn {
  --bg: var(--green-deep); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  min-height: 3.25rem; padding: .85rem 1.4rem;
  background: var(--bg); color: var(--fg);
  font: 650 1rem/1 var(--body); font-stretch: 108%; letter-spacing: .01em;
  border: 2px solid var(--bg); border-radius: var(--r);
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn .i { transition: transform .45s var(--ease); }
.btn:hover { --bg: var(--ink); }
.btn:hover .i { transform: translate(3px, -2px); }
.btn:active { transform: translateY(1px) scale(.985); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { --bg: var(--ink); --fg: var(--ground); }
.btn-gold { --bg: var(--gold); --fg: #0b2c10; }
.btn-gold:hover { --bg: #e0cc45; }
@media (prefers-color-scheme: dark) {
  .btn { --bg: var(--green-deep); }
  .btn:hover { --bg: #4a8f47; }
  .btn-ghost { --bg: transparent; }
  .btn-ghost:hover { --bg: var(--ink); --fg: var(--night); }
  .btn-gold { --bg: var(--gold); }
}
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 650; text-decoration: none; color: var(--green-deep);
  border-bottom: 2px solid var(--gold); padding-bottom: .2rem;
}
@media (prefers-color-scheme: dark) { .link-arrow { color: var(--green); } }
.link-arrow .i { transition: transform .45s var(--ease); }
.link-arrow:hover .i { transform: translateX(4px); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 60; padding: .75rem var(--gutter) 0; pointer-events: none; }
.nav {
  pointer-events: auto;
  width: min(100%, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: clamp(.75rem, 1.6vw, 1.75rem);
  height: 4.25rem; padding: 0 .6rem 0 .7rem;
  background: rgb(11 44 16 / 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: var(--on-night);
  border: 1px solid rgb(233 238 226 / 0.1);
  border-radius: 6px;
  box-shadow: 0 18px 40px -24px rgb(11 44 16 / 0.6);
  transition: transform .5s var(--ease);
}
@media (prefers-reduced-transparency: reduce) { .nav { background: var(--night); backdrop-filter: none; } }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 3.2rem; height: 3.2rem; }
.brand-name { font-family: var(--display); font-stretch: 115%; font-weight: 780; font-size: 1.08rem; line-height: 1; letter-spacing: -.01em; }
.brand-name span { display: block; font-weight: 450; font-stretch: 100%; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: .3rem; }
.nav-links { display: flex; gap: clamp(.9rem, 1.6vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; font-size: .95rem; font-weight: 520; color: var(--on-night-soft); padding: .4rem 0; position: relative; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.nav-cta { min-height: 2.9rem; padding: .7rem 1.1rem; }
.nav-toggle { display: none; }

@media (max-width: 1180px) { .nav-phone span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } .nav-phone .i { width: 1.35rem; height: 1.35rem; } }
@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: grid; place-content: center; gap: 6px; width: 3rem; height: 3rem; margin-left: .25rem;
    background: transparent; border: 1px solid var(--line-night); border-radius: var(--r); cursor: pointer; position: relative;
  }
  .nav-toggle .bar { display: block; width: 1.3rem; height: 2px; background: var(--on-night); transition: transform .45s var(--ease); }
  .nav-toggle[aria-expanded="true"] .bar:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
}
.menu {
  pointer-events: auto;
  position: fixed; inset: 0; z-index: -1;
  background: #08150b;
  color: var(--on-night);
  padding: 7rem var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu-links { list-style: none; margin: 0; padding: 0; }
.menu-links a {
  display: block; padding: .55rem 0; text-decoration: none;
  font-family: var(--display); font-stretch: 112%; font-weight: 750; font-size: clamp(1.9rem, 8vw, 3rem); letter-spacing: -.02em;
  border-bottom: 1px solid var(--line-night);
}
.menu-links a[aria-current="page"] { color: var(--gold); }
.menu-foot a { display: inline-flex; gap: .6rem; align-items: center; font-size: 1.25rem; font-weight: 650; text-decoration: none; font-variant-numeric: tabular-nums; }
.menu-foot p { color: var(--on-night-soft); margin-top: .5rem; }
@media (prefers-reduced-motion: no-preference) {
  .menu.is-open .menu-links li { animation: rise .6s var(--ease) both; animation-delay: calc(var(--i) * 55ms + 60ms); }
}
@keyframes rise { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: none; } }

/* Mobile call bar */
.callbar { display: none; }
@media (max-width: 767px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: var(--night); border-top: 1px solid var(--line-night);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 3rem; border-radius: var(--r); text-decoration: none; font-weight: 650; }
  .callbar-call { color: var(--on-night); border: 1px solid var(--line-night); }
  .callbar-quote { background: var(--gold); color: #0b2c10; }
  body { padding-bottom: 4.4rem; }
}

/* HOME HERO: full-width headline, then a copy column beside a wide photo */
.hero { padding-top: clamp(6.5rem, 9vw, 7.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero-top { --h1: clamp(2.2rem, 0.9rem + 3.5vw, 4.5rem); position: relative; }
.hero-h1 { font-size: var(--h1); max-width: 23ch; }
.hero-h1 em { font-style: normal; color: var(--green); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 4.2fr) minmax(0, 7.8fr); gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(1.75rem, 3.5vw, 3rem); align-items: end; }
.hero-copy { padding-bottom: .5rem; }
.hero-copy .lede { margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r); }
.hero-media figcaption, .cap { font-size: .86rem; color: var(--ink-soft); margin-top: .65rem; }
.hero-media::before { content: ""; position: absolute; left: -1rem; top: 1.5rem; bottom: 2.5rem; width: 4px; background: var(--gold); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media::before { display: none; }
  .hero-media img { aspect-ratio: 4 / 3; }
}

/* Trust strip */
.trust { border-block: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, auto); justify-content: space-between; gap: 1rem 2rem; }
.trust li { display: flex; align-items: center; gap: .6rem; padding-block: 1.35rem; font-weight: 600; font-stretch: 106%; font-variant-numeric: tabular-nums; }
.trust .i { color: var(--green); width: 1.4rem; height: 1.4rem; }
.trust a { text-decoration: none; }
.trust .stars { color: var(--gold); display: inline-flex; }
.trust .stars .i { color: var(--gold); width: 1rem; height: 1rem; }
@media (max-width: 1000px) { .trust ul { grid-template-columns: repeat(2, 1fr); gap: 0 1rem; } .trust li { padding-block: .9rem; border-bottom: 1px solid var(--line); } .trust li:last-child { grid-column: 1 / -1; border-bottom: 0; } }

/* Services bento */
.svc-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, minmax(17rem, 1fr)); gap: clamp(.75rem, 1.4vw, 1.25rem); }
.tile { position: relative; overflow: hidden; border-radius: var(--r); color: #fff; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.25rem, 2.5vw, 2rem); isolation: isolate; min-height: 17rem; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(8 21 11 / 0) 30%, rgb(8 21 11 / .82) 100%); }
.tile:hover img { transform: scale(1.04); }
.tile-a { grid-column: span 7; grid-row: span 2; }
.tile-b, .tile-c { grid-column: span 5; }
.tile h3 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem); margin-bottom: .5rem; }
.tile p { margin: 0 0 1rem; max-width: 34ch; color: rgb(255 255 255 / .86); }
.tile .go { display: inline-flex; align-items: center; gap: .5rem; font-weight: 650; }
.tile .go::before { content: ""; width: 1.6rem; height: 2px; background: var(--gold); transition: width .5s var(--ease); }
.tile:hover .go::before { width: 2.6rem; }
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .tile-a, .tile-b, .tile-c { grid-column: auto; grid-row: auto; min-height: 20rem; }
  .tile-a { min-height: 26rem; }
}

/* How we build: dark section with cross-section */
.night { background: var(--night); color: var(--on-night); }
.night .eyebrow { color: var(--gold); }
.night .lede, .night .prose { color: var(--on-night-soft); }
.build-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.build-intro { position: sticky; top: 7rem; }
.build-intro .h2 { margin-bottom: 1.25rem; }
.build-photo { margin-top: 2.25rem; }
.build-photo img { border-radius: var(--r); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.build-photo figcaption { color: var(--on-night-soft); font-size: .86rem; margin-top: .6rem; }
.xsec { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.layer { display: grid; grid-template-columns: minmax(7rem, 38%) 1fr; align-items: stretch; border-top: 1px solid var(--line-night); }
.layer:last-child { border-bottom: 1px solid var(--line-night); }
.layer-band { position: relative; min-height: 5.5rem; overflow: hidden; }
.layer-text { padding: 1.1rem 0 1.1rem clamp(1rem, 2.4vw, 2rem); }
.layer-text h3 { font-size: 1.15rem; font-stretch: 108%; margin-bottom: .3rem; color: #fff; }
.layer-text p { margin: 0; color: var(--on-night-soft); font-size: .97rem; }
.layer-key .layer-text h3 { color: var(--gold); }
/* Band photos: real close-ups of each material from QG job photos */
.layer-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b-block { min-height: 4.5rem; }
.b-edge { min-height: 4rem; }
.b-stone { min-height: 9rem; }
.b-clay { min-height: 5rem; }
.b-rock { min-height: 5rem; }
.layer-key .layer-band { box-shadow: inset 0 0 0 3px var(--gold); }
.layer-key .layer-band img { z-index: -1; }
.layer-key .layer-band { isolation: isolate; }
.xsec-note { margin: 1rem 0 0; font-size: .86rem; color: var(--on-night-soft); }
.js .xsec .layer-band { clip-path: inset(100% 0 0 0); transition: clip-path .9s var(--ease-cut); }
.js .xsec .layer-text { opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .xsec.in .layer-band { clip-path: inset(0 0 0 0); }
.js .xsec.in .layer-text { opacity: 1; transform: none; }
.js .xsec.in .layer:nth-last-child(1) > * { transition-delay: 0ms; }
.js .xsec.in .layer:nth-last-child(2) > * { transition-delay: 160ms; }
.js .xsec.in .layer:nth-last-child(3) > * { transition-delay: 320ms; }
.js .xsec.in .layer:nth-last-child(4) > * { transition-delay: 480ms; }
.js .xsec.in .layer:nth-last-child(5) > * { transition-delay: 640ms; }
.js .xsec.in .layer:nth-last-child(6) > * { transition-delay: 800ms; }
@media (max-width: 900px) {
  .build-grid { grid-template-columns: 1fr; }
  .build-intro { position: static; }
  .layer { grid-template-columns: 1fr; border-top: 0; margin-top: 1.25rem; }
  .layer:last-child { border-bottom: 0; }
  .layer-band { border-radius: var(--r); min-height: 4.5rem; }
  .b-stone { min-height: 6.5rem; }
  .layer-text { padding: .85rem 0 0; }
}

/* Project sequence: horizontal scroll-snap strip */
.seq-head { display: grid; gap: 1rem; max-width: 44rem; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.seq { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(16rem, 34vw, 30rem); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.25rem; padding-inline: max(var(--gutter), (100vw - var(--wrap)) / 2); scroll-padding-inline: max(var(--gutter), (100vw - var(--wrap)) / 2); scrollbar-color: var(--green) transparent; list-style: none; margin: 0; }
.seq li { scroll-snap-align: start; }
.seq img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.seq h3 { font-size: 1.1rem; font-stretch: 108%; margin: 1rem 0 .3rem; display: flex; gap: .75rem; align-items: baseline; }
.seq h3 span { color: var(--gold); font-variant-numeric: tabular-nums; font-size: .9rem; }
.seq p { color: var(--ink-soft); margin: 0; font-size: .97rem; max-width: 36ch; }
@media (max-width: 640px) { .seq { grid-auto-columns: 82vw; } }

/* Before / after */
.ba-section-grid { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.ba { margin: 0; max-width: 60rem; }
.ba-frame { position: relative; overflow: hidden; border-radius: var(--r); aspect-ratio: 4 / 3; background: var(--ground-2); --pos: 50%; touch-action: pan-y; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: var(--gold); pointer-events: none; }
.ba-handle > span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; background: var(--night); color: var(--gold); border: 2px solid var(--gold); border-radius: var(--r); }
.ba-handle .i { width: 1rem; height: 1rem; }
.ba-tag { position: absolute; top: .9rem; padding: .3rem .6rem; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgb(8 21 11 / .78); color: #fff; border-radius: var(--r); pointer-events: none; }
.ba-tag-b { left: .9rem; }
.ba-tag-a { right: .9rem; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; }
.ba-range:focus-visible + * { outline: none; }
.ba-frame:has(.ba-range:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }
.ba figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: .7rem; }
.ba-picker { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.ba-pick { width: 100%; display: grid; grid-template-columns: 5.5rem 1fr; gap: .9rem; align-items: center; text-align: left; padding: .5rem; background: transparent; border: 1px solid var(--line); border-radius: var(--r); color: inherit; font: inherit; cursor: pointer; transition: border-color .35s var(--ease), background-color .35s var(--ease); }
.ba-pick img { width: 5.5rem; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }
.ba-pick span { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.ba-pick[aria-pressed="true"] { border-color: var(--green); background: var(--ground-2); box-shadow: inset 3px 0 0 var(--gold); }
.ba-pick:hover { border-color: var(--green); }
.ba-panel[hidden] { display: none; }
@media (max-width: 900px) { .ba-section-grid { grid-template-columns: 1fr; } .ba-picker { grid-template-columns: repeat(2, 1fr); } .ba-pick { grid-template-columns: 1fr; } .ba-pick img { width: 100%; } }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.quote-big { margin: 0; }
.quote-big blockquote { margin: 0; font-family: var(--display); font-stretch: 104%; font-weight: 560; font-size: clamp(1.4rem, 1.05rem + 1.3vw, 2.1rem); line-height: 1.3; letter-spacing: -.012em; text-wrap: pretty; }
.quote-big blockquote::before { content: "\201C"; display: block; font-size: 4.5rem; line-height: .7; color: var(--gold); margin-bottom: .4rem; }
.quote-big figcaption, .quote-small figcaption { margin-top: 1.25rem; font-weight: 650; }
.quote-big figcaption span, .quote-small figcaption span { display: block; font-weight: 450; color: var(--ink-soft); font-size: .9rem; }
.quote-list { list-style: none; margin: 0; padding: 0; }
.quote-list li + li { border-top: 1px solid var(--line); }
.quote-small { margin: 0; padding-block: 1.4rem; }
.quote-small blockquote { margin: 0; color: var(--ink-soft); }
.quote-small figcaption { margin-top: .6rem; font-size: .95rem; }
.stars-row { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: .6rem; }
.stars-row .i { width: 1rem; height: 1rem; }
.reviews-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 2rem; }
.rating-badge { display: inline-flex; align-items: baseline; gap: .6rem; }
.rating-badge strong { font-family: var(--display); font-stretch: 112%; font-size: 2.6rem; line-height: 1; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Area + CTA */
.cta-block { background: var(--ground-2); border-top: 4px solid var(--gold); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.cta-grid .h2 { margin-bottom: 1.25rem; }
.towns { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
.towns li { font-family: var(--display); font-stretch: 115%; font-weight: 760; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.3rem); letter-spacing: -.02em; line-height: 1.15; }
.towns li:not(:last-child)::after { content: "/"; color: var(--gold); margin-left: 1.25rem; font-weight: 400; }
.cta-side { display: grid; gap: 1rem; }
.cta-side .btn { width: 100%; }
.cta-meta { display: grid; gap: .35rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; margin-top: .5rem; }
.cta-meta span { display: inline-flex; align-items: center; gap: .5rem; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }

/* INNER PAGES */
.page-hero { padding-top: clamp(6.75rem, 9vw, 8rem); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.crumbs ol { list-style: none; display: flex; gap: .5rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--gold); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.ph-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.ph-h1 { font-size: clamp(2rem, 1.2rem + 2.4vw, 3.5rem); margin-bottom: 1.25rem; }
.ph-media { position: relative; }
.ph-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.ph-inset { position: absolute; left: -2rem; bottom: -2rem; width: 42%; border: 6px solid var(--ground); border-radius: var(--r); background: var(--ground); }
.ph-inset img { aspect-ratio: 4 / 3; }
.ph-inset figcaption { font-size: .78rem; padding: .35rem .2rem 0; color: var(--ink-soft); }
@media (max-width: 900px) { .ph-grid { grid-template-columns: 1fr; } .ph-media { order: -1; } .ph-inset { left: auto; right: .75rem; bottom: -1.5rem; width: 44%; } }

.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); }
.split-flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
@media (max-width: 900px) { .split, .split-flip { grid-template-columns: 1fr; } }

.offer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 4vw, 3.5rem); list-style: none; margin: 0; padding: 0; }
.offer li { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.offer h3 { font-size: 1.2rem; font-stretch: 108%; margin-bottom: .4rem; display: flex; align-items: center; gap: .6rem; }
.offer h3 .i { color: var(--green); width: 1.35rem; height: 1.35rem; }
.offer p { margin: 0; color: var(--ink-soft); }
@media (max-width: 700px) { .offer { grid-template-columns: 1fr; } }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1px; background: var(--line-night); border: 1px solid var(--line-night); border-radius: var(--r); overflow: hidden; }
.steps li { background: var(--night); padding: clamp(1.4rem, 2.5vw, 2rem); counter-increment: s; }
.steps li::before { content: counter(s, decimal-leading-zero); display: block; font-family: var(--display); font-stretch: 115%; font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--gold); margin-bottom: 1.25rem; font-variant-numeric: tabular-nums; }
.steps h3 { font-size: 1.2rem; font-stretch: 108%; color: #fff; margin-bottom: .5rem; }
.steps p { margin: 0; color: var(--on-night-soft); font-size: .97rem; }

.signs { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .75rem; }
.signs li { display: flex; gap: .75rem; align-items: flex-start; }
.signs .i { color: var(--green); margin-top: .2rem; }

.photo-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.75rem, 1.4vw, 1.25rem); }
.photo-row figure { margin: 0; }
.photo-row img { width: 100%; object-fit: cover; border-radius: var(--r); aspect-ratio: 4 / 3; }
.photo-row figcaption { font-size: .86rem; color: var(--ink-soft); margin-top: .55rem; }
.pr-a { grid-column: span 7; } .pr-b { grid-column: span 5; } .pr-c { grid-column: span 4; } .pr-d { grid-column: span 8; } .pr-e { grid-column: span 6; }
.pr-tall img { aspect-ratio: 3 / 4; }
@media (max-width: 760px) { .photo-row { grid-template-columns: 1fr; } .photo-row > * { grid-column: auto !important; } }

.faq { max-width: 52rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; padding: 1.35rem 0; font-family: var(--display); font-stretch: 106%; font-weight: 680; font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: .9rem; height: .9rem; background: linear-gradient(var(--green), var(--green)) center / 100% 2px no-repeat, linear-gradient(var(--green), var(--green)) center / 2px 100% no-repeat; transition: transform .45s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 62ch; }
.faq-a p:last-child { margin: 0; }

.band-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; padding: clamp(2rem, 4vw, 3.25rem); background: var(--night); color: var(--on-night); border-radius: var(--r); position: relative; overflow: hidden; }
.band-cta::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--gold); }
.band-cta h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); }
.band-cta p { color: var(--on-night-soft); margin: .5rem 0 0; }
.band-cta .btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.band-cta .btn-ghost { --fg: var(--on-night); border-color: var(--on-night); }
.band-cta .btn-ghost:hover { --bg: var(--on-night); --fg: var(--night); }

.note { border-left: 4px solid var(--gold); padding: .25rem 0 .25rem 1.25rem; color: var(--ink-soft); max-width: 60ch; }

/* Gallery */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter { font: 600 .95rem/1 var(--body); padding: .8rem 1.1rem; min-height: 2.9rem; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: var(--r); cursor: pointer; transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.filter:hover { border-color: var(--green); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--ground); border-color: var(--ink); }
.gallery { columns: 3 20rem; column-gap: 1.1rem; }
.g-item { break-inside: avoid; margin: 0 0 1.1rem; }
.g-item[hidden] { display: none; }
.g-open { display: block; width: 100%; padding: 0; border: 0; background: var(--ground-2); cursor: zoom-in; border-radius: var(--r); overflow: hidden; }
.g-open img { width: 100%; transition: transform .9s var(--ease); }
.g-open:hover img { transform: scale(1.03); }
.g-item figcaption { font-size: .88rem; color: var(--ink-soft); margin-top: .5rem; }
.g-count { color: var(--ink-soft); font-size: .9rem; margin: -1rem 0 1.5rem; font-variant-numeric: tabular-nums; }
.lightbox { width: min(100vw - 2rem, 1400px); max-height: calc(100dvh - 2rem); padding: 0; border: 0; background: transparent; color: #fff; overflow: visible; }
.lightbox::backdrop { background: rgb(5 12 7 / .92); }
.lb-fig { margin: 0; display: grid; gap: .75rem; justify-items: center; }
.lb-fig img { max-height: calc(100dvh - 8rem); width: auto; max-width: 100%; border-radius: var(--r); }
.lb-fig figcaption { font-size: .95rem; color: #d7ddd2; text-align: center; }
.lb-btn { position: fixed; display: grid; place-items: center; width: 3rem; height: 3rem; background: rgb(8 21 11 / .85); color: #fff; border: 1px solid rgb(255 255 255 / .2); border-radius: var(--r); cursor: pointer; }
.lb-btn .i { width: 1.4rem; height: 1.4rem; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label, .field .label { font-weight: 650; font-size: .95rem; }
.field .req { color: var(--green); }
.field .help { font-size: .85rem; color: var(--ink-soft); }
.input { width: 100%; font: inherit; color: var(--ink); background: var(--ground); border: 1.5px solid #8a9785; border-radius: var(--r); padding: .85rem .95rem; min-height: 3.2rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
@media (prefers-color-scheme: dark) { .input { border-color: #52614f; background: var(--ground-2); } }
.input::placeholder { color: #66735f; }
.input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgb(201 180 45 / .45); }
textarea.input { min-height: 9rem; resize: vertical; }
select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 1.2rem) 55%, calc(100% - .85rem) 55%; background-size: .35rem .35rem; background-repeat: no-repeat; padding-right: 2.5rem; }
input[type="file"].input { padding: .65rem; }
.input:user-invalid { border-color: #b3261e; }
.err { color: #b3261e; font-size: .85rem; font-weight: 600; display: none; }
@media (prefers-color-scheme: dark) { .err { color: #ffb4ab; } .input:user-invalid { border-color: #ffb4ab; } }
.input:user-invalid ~ .err { display: block; }
.hp { position: absolute; left: -9999px; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.form-foot p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
.aside-card { border-top: 4px solid var(--gold); background: var(--ground-2); padding: clamp(1.5rem, 3vw, 2rem); border-radius: var(--r); }
.aside-card h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.aside-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .75rem; }
.aside-list .i { color: var(--green); margin-top: .2rem; }
.aside-list a { font-weight: 650; text-decoration: none; }
.aside-list span { display: block; color: var(--ink-soft); font-size: .92rem; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

.simple { min-height: 70dvh; display: grid; align-content: center; padding-top: 8rem; }

/* Footer */
.site-footer { background: var(--night); color: var(--on-night-soft); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.6fr)); gap: 2.5rem; }
.footer-brand img { width: 7.5rem; height: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; }
.footer-h { font-size: .8rem; font-stretch: 100%; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { text-decoration: none; color: var(--on-night); background: linear-gradient(var(--gold), var(--gold)) 0 100% / 0 1px no-repeat; transition: background-size .45s var(--ease); }
.site-footer a:hover { background-size: 100% 1px; }
.footer-social { display: grid; gap: .55rem; }
.footer-social a { display: inline-flex; gap: .5rem; align-items: center; width: max-content; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; margin-top: 3rem; padding-block: 1.5rem; border-top: 1px solid var(--line-night); font-size: .88rem; }
.footer-base p { margin: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal on scroll: hard wipe for images, short rise for text */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .js .rv-img { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease-cut); }
  .js .rv.in { opacity: 1; transform: none; }
  .js .rv-img.in { clip-path: inset(0 0 0 0); }
  .js .rv-d1 { transition-delay: 90ms; } .js .rv-d2 { transition-delay: 180ms; } .js .rv-d3 { transition-delay: 270ms; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .xsec .layer-band { clip-path: none; }
  .js .xsec .layer-text { opacity: 1; transform: none; }
}
.crop-43 { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.page-contact .callbar { grid-template-columns: 1fr; } .page-contact .callbar-quote { display: none; }
.b-edge img { object-position: 50% 70%; }
/* Step photos: photo fills the card, text overlays a bottom scrim */
.steps-photo { gap: clamp(.6rem, 1vw, .9rem); background: none; border: 0; border-radius: 0; overflow: visible; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.steps-photo li { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: 32rem; padding: clamp(1.1rem, 1.6vw, 1.5rem); border-radius: var(--r); background: var(--night-2); }
.steps-photo .step-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.steps-photo li::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(8 21 11 / 0) 22%, rgb(8 21 11 / .55) 48%, rgb(8 21 11 / .94) 78%); }
.steps-photo li::before { position: absolute; top: .9rem; left: .9rem; margin: 0; padding: .45rem .6rem; font-size: 1.35rem; background: rgb(8 21 11 / .82); border-radius: var(--r); box-shadow: inset 0 -2px 0 var(--gold); }
.steps-photo li:hover .step-img { transform: scale(1.045); }
.steps-photo h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.steps-photo p { color: rgb(238 243 233 / .9); font-size: .95rem; line-height: 1.5; }
@media (max-width: 1180px) { .steps-photo { grid-template-columns: repeat(2, minmax(0, 1fr)); } .steps-photo li { min-height: 28rem; } .steps-photo li:last-child { grid-column: 1 / -1; min-height: 24rem; } }
@media (max-width: 560px) { .steps-photo { grid-template-columns: 1fr; } .steps-photo li, .steps-photo li:last-child { min-height: 26rem; } }
.steps-note { margin: 1rem 0 0; font-size: .86rem; color: var(--on-night-soft); }
/* Step cards open the full photo */
.step-open { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-start; justify-content: flex-end; padding: .9rem; background: none; border: 0; border-radius: var(--r); cursor: zoom-in; color: #fff; }
.step-open .i { width: 2.4rem; height: 2.4rem; padding: .5rem; background: rgb(8 21 11 / .72); border-radius: var(--r); transition: transform .45s var(--ease), background-color .45s var(--ease); }
.steps-photo li:hover .step-open .i, .step-open:focus-visible .i { transform: scale(1.08); background: rgb(8 21 11 / .92); }
.step-open:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }
/* Odd fifth slider: same size as its neighbors, centered on its own row */
.pr-full { grid-column: 1 / -1; justify-self: center; width: calc(50% - clamp(.75rem, 1.4vw, 1.25rem) / 2); }
@media (max-width: 760px) { .pr-full { width: 100%; } }
/* Hero logo fills the open space above the hero text (desktop) */
.hero-logo { display: none; }
@media (min-width: 861px) {
  .home .hero-grid { align-items: stretch; }
  .home .hero-copy { display: flex; flex-direction: column; }
  .hero-logo { display: flex; flex: 1 1 auto; min-height: 0; align-items: center; justify-content: center; margin-bottom: 1rem; container-type: size; }
  .hero-logo img { width: min(19rem, 100cqh - .5rem, 100%); height: auto; }
  @container (max-height: 6rem) { .hero-logo img { display: none; } }
}

/* Hero scene: the owners beside the headline (laptops and up; images don't download below 1024px) */
.hero-scene { display: none; }
@media (min-width: 1024px) {
  .hero-scene { display: block; position: absolute; left: calc(var(--h1) * 10.6); right: 0; top: calc(var(--h1) * 1.25); bottom: -1.5rem; container-type: size; overflow: hidden; }
  .scene-lawn { position: absolute; left: 0; right: 0; bottom: 0; height: 3.5rem; overflow: hidden; border-radius: var(--r); background: #6a9f52; }
  .lawn-mowed { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #4f8a3f 0 2.25rem, #3f7a36 2.25rem 4.5rem); }
  .digger { position: absolute; right: 1.25rem; bottom: 1.1rem; height: min(13.5rem, 100cqh - 1.5rem); aspect-ratio: 200 / 501; }
  .mower { position: absolute; bottom: .35rem; right: calc(min(13.5rem, 100cqh - 1.5rem) * .4 + 2.5rem); height: min(8.5rem, 100cqh - 1rem); aspect-ratio: 360 / 280; will-change: transform; }
  .digger picture, .mower picture { position: absolute; inset: 0; }
  .digger img, .mower img { display: block; width: 100%; height: 100%; }
  .digger .dig-up { visibility: hidden; }
  .digger.is-up .dig-up { visibility: visible; }
  .digger.is-up .dig-down { visibility: hidden; }
  .js .hero-scene:not(.done) .mower { opacity: 0; }
  .js .hero-scene:not(.done) .lawn-mowed { clip-path: inset(0 100% 0 0); }
}
@media (min-width: 1024px) and (prefers-color-scheme: dark) { .scene-lawn { background: #4f7f3e; } .lawn-mowed { background: repeating-linear-gradient(90deg, #3d6e31 0 2.25rem, #33612b 2.25rem 4.5rem); } }
.inline-link { color: var(--green-deep); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 600; }
.inline-link:hover { color: var(--ink); }
@media (prefers-color-scheme: dark) { .inline-link { color: var(--green); } }
.night .inline-link { color: #fff; }
.towns a { text-decoration: none; background: linear-gradient(var(--gold), var(--gold)) 0 100% / 0 3px no-repeat; transition: background-size .45s var(--ease); }
.towns a:hover { background-size: 100% 3px; }
.night .offer p { color: var(--on-night-soft); }
.offer li[id] { scroll-margin-top: 7rem; }
/* Two-photo pair (before/after not shot from the same spot) */
.duo { margin: 0; }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.duo-cell { position: relative; }
.duo-cell img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r); }
.pair-tag { position: absolute; top: .7rem; left: .7rem; padding: .3rem .55rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgb(8 21 11 / .78); color: #fff; border-radius: var(--r); }
.duo figcaption { font-size: .86rem; color: var(--ink-soft); margin-top: .55rem; }
@media (min-width: 1024px) and (max-width: 1280px) {
  .home .hero-grid { margin-top: 3.75rem; }
  .hero-scene { bottom: -3.25rem; }
}
@media (min-width: 1041px) and (max-width: 1240px) {
  .nav { gap: .8rem; }
  .nav-links { gap: .9rem; }
  .nav-link { font-size: .88rem; }
  .brand img { width: 2.8rem; height: 2.8rem; }
  .brand-name { font-size: 1rem; }
  .brand-name span { white-space: nowrap; font-size: .66rem; }
  .nav-cta { padding: .65rem .95rem; }
}
.hero-social { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.1rem; width: max-content; text-decoration: none; line-height: 1; transition: transform .35s var(--ease); }
.hero-social .i { width: 2.7rem; height: 2.7rem; }
.fb-text { display: flex; flex-direction: column; gap: .15rem; }
.fb-follow { font-family: var(--display); font-stretch: 100%; font-weight: 700; font-size: .92rem; color: #3a3a3a; }
.fb-word { font-family: var(--display); font-stretch: 105%; font-weight: 800; font-size: 1.55rem; letter-spacing: -.01em; color: #0866ff; }
.hero-social:hover { transform: translateY(-2px); }
@media (prefers-color-scheme: dark) { .fb-follow { color: #e6ebdf; } .fb-word { color: #4d9bff; } }
/* Hero quick-estimate form (replaces the logo/lede/buttons column) */
.hero-form { background: var(--ground-2); border-top: 4px solid var(--gold); border-radius: var(--r); padding: clamp(1.1rem, 1.8vw, 1.6rem); }
.hf-title { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.8rem); margin-bottom: .3rem; }
.hf-sub { color: var(--ink-soft); font-size: .95rem; margin: 0 0 1rem; }
.hf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem .85rem; }
.hero-form .field { gap: .3rem; }
.hero-form .field label { font-size: .85rem; }
.hero-form .input { min-height: 2.75rem; padding: .6rem .8rem; }
.hero-form textarea.input { min-height: 3.6rem; }
.hero-form .opt { font-weight: 400; color: var(--ink-soft); }
.hf-foot { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.1rem; margin-top: 1rem; }
.hf-call { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .92rem; text-decoration: none; color: var(--ink-soft); }
.hf-call:hover { color: var(--ink); }
@media (min-width: 861px) { .home .hero-copy { justify-content: flex-end; } }
@media (max-width: 480px) { .hf-grid { grid-template-columns: 1fr; } .hf-foot .btn { width: 100%; } }

/* Facebook + Google badges: under the form on small screens, above the owners scene on laptops and up */
.hero-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-links .hero-social { margin: 0; }
.hero-links-bottom { margin-top: 1.25rem; }
.hero-links-top { display: none; }
.hero-google { display: inline-flex; transition: transform .35s var(--ease); }
.hero-google img { height: 3.3rem; width: auto; }
.hero-google:hover { transform: translateY(-2px); }
@media (prefers-color-scheme: dark) { .hero-google { background: #f4f5f0; border-radius: var(--r); padding: .25rem .45rem; } }
@media (min-width: 1024px) {
  .hero-links-bottom { display: none; }
  .hero-links-top { display: flex; flex-wrap: nowrap; position: absolute; left: calc(var(--h1) * 10.6); right: 0; width: max-content; margin: 0 auto; top: calc(var(--h1) * 1.25 - 3.4rem); }
}
@media (min-width: 861px) and (max-width: 1300px) { .hero-form .hf-desc { display: none; } }
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-links-top { left: auto; right: 0; margin: 0; gap: 1rem; }
  .hero-links-top .hero-social .i { width: 2.3rem; height: 2.3rem; }
  .hero-links-top .fb-follow { font-size: .8rem; }
  .hero-links-top .fb-word { font-size: 1.3rem; }
  .hero-links-top .hero-google img { height: 2.8rem; }
}
/* Big 5-star row under the featured review */
.big-stars { display: flex; gap: clamp(.4rem, 1vw, .9rem); margin-top: clamp(2rem, 4vw, 3.25rem); color: var(--gold); }
.big-stars img { display: block; width: clamp(3.4rem, 2.2rem + 3.4vw, 6rem); height: auto; filter: drop-shadow(0 8px 12px rgb(110 70 8 / .28)); }
@media (prefers-reduced-motion: no-preference) {
  .js .big-stars .bs { display: inline-flex; opacity: 0; transform: scale(.6); transition: opacity .5s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i) * 110ms + 150ms); }
  .js .quote-big.in .big-stars .bs { opacity: 1; transform: none; }
}
.hero-kicker { display: flex; align-items: center; gap: .6rem; margin: 0 0 1rem; font-size: clamp(.8rem, .75rem + .2vw, .95rem); font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.hero-kicker::before { content: ""; width: 2.2rem; height: 2px; background: var(--gold); flex: none; }
.hero-h1 span, .hero-h1 em { display: block; }
@media (max-width: 600px) { .hero-kicker::before { display: none; } }
@media (min-width: 1024px) {
  .hero-top { --h1: clamp(2.1rem, .6rem + 3.1vw, 4.1rem); }
  .hero-scene { left: calc(var(--h1) * 12); }
  .hero-links-top { left: calc(var(--h1) * 12); }
  .home .hero { padding-top: clamp(6rem, 8vw, 7rem); }
}
.towns-inline { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.offer h3 .inline-link { font-weight: inherit; }
.hero-rating { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .35rem .7rem; margin-top: 1.25rem; font-size: .95rem; color: var(--ink-soft); text-decoration: none; }
.hero-rating .stars-row { margin: 0; }
.hero-rating .stars-row .i { width: 1.2rem; height: 1.2rem; }
.hero-rating strong { color: var(--ink); }
.hero-rating:hover span:last-child { text-decoration: underline; text-decoration-color: var(--gold); }
/* Compliance: plain Facebook link (official f logo), text Google rating, form notice */
.fb-plain { font-weight: 650; font-size: 1rem; color: var(--ink); white-space: nowrap; }
.hero-social .i { width: 2.2rem; height: 2.2rem; }
.hero-google { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink-soft); white-space: nowrap; }
.hero-google .stars-row { margin: 0; }
.hero-google .stars-row .i { width: 1.15rem; height: 1.15rem; }
.hero-google strong { color: var(--ink); }
.hero-google:hover .g-text, .hero-social:hover .fb-plain { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
@media (prefers-color-scheme: dark) { .hero-google { background: none; padding: 0; } }
.form-note { margin: .85rem 0 0; font-size: .82rem; line-height: 1.5; color: var(--ink-soft); }
.form-note a { color: inherit; text-decoration: underline; }
@media (min-width: 1024px) and (max-width: 1279px) { .hero-links-top { flex-direction: column; align-items: flex-end; gap: .45rem; } .hero-links-top .hero-social .i { width: 1.8rem; height: 1.8rem; } .hero-links-top .fb-plain, .hero-links-top .hero-google { font-size: .9rem; } }
.hero-google-img img { height: 3.3rem; width: auto; display: block; }
@media (min-width: 1024px) and (max-width: 1279px) { .hero-links-top .hero-google-img img { height: 2.6rem; } }
@media (prefers-color-scheme: dark) { .hero-google-img { background: #f4f5f0; border-radius: var(--r); padding: .25rem .45rem; } }
