/* ---------- self-hosted type (variable woff2 from Google Fonts, latin subset) ----------
   Downloaded 2026-09-15. One file per family/style carries the whole weight range,
   so no more third-party CSS on the critical path (it cost ~2 s of LCP on mobile). */
@font-face{ font-family:"Cormorant Garamond"; font-style:normal; font-weight:300 700; font-display:swap;
  src:url("/fonts/cormorant-garamond.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face{ font-family:"Cormorant Garamond"; font-style:italic; font-weight:300 700; font-display:swap;
  src:url("/fonts/cormorant-garamond-italic.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face{ font-family:"Manrope"; font-style:normal; font-weight:200 800; font-display:swap;
  src:url("/fonts/manrope.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

/* Loth & Son — "Forest & Brass"
   Design system supplied by the client 2026-09-14 (Dribbble refs: Onvision
   "Landscaping - Website", Lucy "Terra & Stone"). Cormorant Garamond 500 for
   display, Manrope for everything else. Warm paper ground, deep forest green
   for inverse bands, brass as the single accent. 8px radii, quiet warm
   shadows, 260ms ease-out reveals.

   TWO TOKENS DIVERGE FROM THE SUPPLIED SHEET, both for contrast:
     --accent-ink #8A642E  brass TEXT on light. The sheet's --accent-strong
                           (#A87E42) is 3.20:1 on paper and eyebrows are 12px,
                           which needs 4.5:1. #8A642E is 4.64:1 and holds the
                           hue. --brass-500 stays exactly as supplied and is
                           used on dark grounds and as fills only.
     --border-input #8A8066 the input boundary is what identifies the control,
                           so it needs 3:1 (WCAG 1.4.11). --border-default
                           (#E7E0D2, 1.15:1) is a decorative hairline and stays
                           decorative: card edges, section rules. */

:root{
  /* ---- base palette, verbatim from tokens/colors.css ---- */
  --green-900:#16291F; --green-800:#1B3527; --green-700:#22422F;
  --green-600:#2E5540; --green-500:#3E6B52; --green-200:#C9D6CB; --green-100:#E4EBE3;
  --brass-600:#A87E42; --brass-500:#C89B5A; --brass-200:#EAD9BC; --brass-100:#F4EBDC;
  --stone-900:#1C2420; --stone-700:#47524B; --stone-500:#6E7A71;
  --stone-300:#C9C4B6; --stone-200:#E7E0D2; --stone-100:#F3EFE7; --stone-50:#FAF8F2;
  --white:#FFFFFF;

  /* ---- role tokens ---- */
  --surface-page:var(--stone-100);
  --surface-card:var(--white);
  --surface-raised:var(--stone-50);
  --surface-inverse:var(--green-700);
  --surface-inverse-deep:var(--green-900);
  --text-heading:var(--green-800);
  --text-body:var(--stone-900);
  --text-muted:var(--stone-700);        /* 7.11:1 on paper */
  --text-soft:#5A655D;                  /* 5.30:1 on paper — captions, meta */
  --text-on-inverse:var(--stone-100);
  --text-on-inverse-muted:var(--green-200);
  --accent:var(--brass-500);            /* fills and dark grounds only */
  --accent-ink:#8A642E;                 /* brass text on light — 4.64:1 */
  --accent-on-dark:var(--brass-200);    /* brass text on green — 8.02:1 */
  --link:var(--green-600);
  --link-hover:var(--green-800);
  --border-default:var(--stone-200);
  --border-strong:var(--stone-300);
  --border-input:#8A8066;               /* 3.92:1 white / 3.42:1 paper */
  --border-on-inverse:rgba(243,239,231,.18);
  --focus-ring:var(--green-500);

  /* ---- type ---- */
  --font-display:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --font-sans:"Manrope","Helvetica Neue",Helvetica,Arial,sans-serif;
  --tracking-eyebrow:.14em;

  /* ---- space, radii, shadow, motion ---- */
  --space-4:16px; --space-5:24px; --space-6:32px; --space-7:48px;
  --space-8:64px; --space-9:96px; --space-10:128px;
  --radius-sm:4px; --radius-md:8px; --radius-btn:8px; --radius-pill:999px;
  --shadow-card:0 1px 2px rgba(28,36,32,.06), 0 8px 24px rgba(28,36,32,.07);
  --shadow-overlay:0 12px 48px rgba(22,41,31,.28);
  --ease-out:cubic-bezier(.22,1,.36,1);
  --duration-fast:150ms; --duration-base:260ms;

  --gutter:clamp(20px,5vw,32px);
  --step:var(--space-6);   /* the gap between a section heading and its list or form */
  --band:clamp(64px,9vw,104px);
  --max:1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--surface-page); color:var(--text-body);
  font-family:var(--font-sans); font-size:16px; line-height:1.6; font-weight:400;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
img,picture,svg{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:var(--link); text-decoration:none; }
a:hover{ color:var(--link-hover); text-decoration:underline; }
:focus-visible{ outline:2px solid var(--focus-ring); outline-offset:2px; }
.band--ivy :focus-visible,.site-footer :focus-visible{ outline-color:var(--brass-500); }
ul,ol{ list-style:none; margin:0; padding:0; }
p{ margin:0 0 1.1em; max-width:68ch; }
p:last-child{ margin-bottom:0; }
button{ font:inherit; }

/* ---------- type -------------------------------------------------------- */
h1,h2,h3{ margin:0; color:var(--text-heading); text-wrap:balance; }
h1,h2{ font-family:var(--font-display); font-weight:500; letter-spacing:-.01em; line-height:1.1; }
h1{ font-size:clamp(38px,5.2vw,60px); }
h2{ font-size:clamp(30px,3.6vw,44px); }
h3{ font-family:var(--font-sans); font-weight:600; font-size:clamp(18px,1.5vw,20px); line-height:1.3; letter-spacing:-.005em; }
em{ font-style:italic; }
.lede{ font-size:clamp(17px,1.35vw,19px); line-height:1.6; color:var(--text-muted); max-width:56ch; }
.band--ivy .lede{ color:var(--text-on-inverse-muted); }
.label{
  font-family:var(--font-sans); font-size:12px; font-weight:600;
  letter-spacing:var(--tracking-eyebrow); text-transform:uppercase;
  color:var(--accent-ink); margin:0 0 14px;
}
.label--ivy{ color:var(--accent-on-dark); }
.note{ font-size:15px; line-height:1.6; color:var(--text-soft); max-width:62ch; }
.note a{ text-decoration:underline; text-underline-offset:2px; }
.band--ivy .note{ color:var(--text-on-inverse-muted); }
.band--ivy .note a{ color:var(--stone-100); }
.hint{ font-size:13.5px; color:var(--text-soft); margin:6px 0 0; }

.sec-head{ max-width:46ch; margin-bottom:var(--space-6); }
.sec-head .lede{ margin-top:14px; }

/* ---------- layout ------------------------------------------------------ */
.wrap{ width:100%; max-width:calc(var(--max) + 2*var(--gutter)); margin:0 auto; padding:0 var(--gutter); }
/* Same left edge as every other .wrap; the 760px measure sits on the children,
   so nothing is indented at 1024px+ and nothing is pinned 8px off the grid. */
.wrap--narrow > *{ max-width:760px; }
.wrap--center{ margin:0 auto; max-width:calc(760px + 2*var(--gutter)); }
.wrap--center > *{ max-width:none; }
/* Was 980px, which inset FAQ rules and interior h1s 110px from every
   neighbouring .wrap section. The measure is constrained on the text itself
   instead, so every left edge on a page lines up. */
.wrap--mid{ max-width:calc(var(--max) + 2*var(--gutter)); }
.wrap--mid > h1{ max-width:34ch; }
.wrap--mid > .lede{ max-width:58ch; }
.band{ padding:var(--band) 0; }
.band--tight{ padding:calc(var(--band)*.55) 0 calc(var(--band)*.4); }
.band--ground2{ background:var(--white); border-top:1px solid var(--border-default); border-bottom:1px solid var(--border-default); }
.band--ivy{ background:var(--surface-inverse); color:var(--text-on-inverse); }
.band--ivy h1,.band--ivy h2,.band--ivy h3{ color:var(--stone-100); }
.band--ivy p{ color:var(--text-on-inverse-muted); }
.split{ display:grid; gap:var(--space-7); align-items:start; }
@media (min-width:1000px){ .split{ grid-template-columns:1fr 1fr; gap:56px; } }
.btnrow{ display:flex; flex-wrap:wrap; gap:12px; margin-top:var(--space-6); }
@media (max-width:520px){ .btnrow .btn{ flex:1 1 100%; } }

/* ---------- buttons ----------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:50px; padding:15px 28px; border:1px solid transparent;
  border-radius:var(--radius-btn); background:var(--green-700); color:var(--stone-100);
  font-family:var(--font-sans); font-size:15px; font-weight:600; line-height:1;
  text-decoration:none; cursor:pointer;
  transition:background var(--duration-fast) var(--ease-out),
             color var(--duration-fast) var(--ease-out),
             border-color var(--duration-fast) var(--ease-out);
}
.btn:hover{ background:var(--green-800); color:var(--stone-100); text-decoration:none; }
.btn:active{ background:var(--green-900); }
.btn--line{ background:transparent; color:var(--green-700); border-color:var(--green-700); }
.btn--line:hover{ background:var(--green-100); color:var(--green-800); }
.btn--onivy{ background:var(--stone-100); color:var(--green-800); }
.btn--onivy:hover{ background:var(--white); color:var(--green-900); }
.btn--lineivy{ background:transparent; color:var(--stone-100); border-color:rgba(243,239,231,.7); }
.btn--lineivy:hover{ background:rgba(243,239,231,.12); color:var(--white); border-color:var(--stone-100); }
.btn--full{ width:100%; }
.btn svg{ width:16px; height:16px; flex:none; transition:transform var(--duration-fast) var(--ease-out); }
.btn:hover svg{ transform:translateX(3px); }

/* ---------- header ------------------------------------------------------ */
.draft{
  background:var(--green-900); color:var(--stone-100);
  font-size:12.5px; letter-spacing:.01em; padding:9px var(--gutter); text-align:center;
}
.site-header{ position:sticky; top:0; z-index:50; background:var(--stone-100); border-bottom:1px solid var(--border-default); }
/* Over a photo hero the design system calls for a translucent blurred bar.
   A position:sticky header stays in flow, so it sits ABOVE the photo rather
   than over it and the blur just samples the paper ground — a washed sage
   bar. Floating it needs position:absolute, which then has to be offset by
   the draft ribbon's height and breaks when that changes. So on the homepage
   the bar is solid deep green instead: it merges with the ribbon into one
   dark block above a dark-topped photo, the nav stays sticky (which the
   estimate CTA wants), and there is no fragile offset. */
.site-header--over{
  background:var(--green-900); border-bottom:1px solid var(--border-on-inverse);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:68px; }
.brand{ text-decoration:none; display:block; line-height:1.12; }
.brand b{ display:block; font-family:var(--font-display); font-weight:500; font-size:24px; color:var(--text-heading); letter-spacing:-.01em; }
.brand span{ display:block; font-family:var(--font-display); font-style:italic; font-size:14.5px; color:var(--accent-ink); margin-top:1px; }
.site-header--over .brand b{ color:var(--stone-100); }
.site-header--over .brand span{ color:var(--brass-200); }
.brand:hover{ text-decoration:none; }
.nav-actions{ display:flex; align-items:center; gap:6px; }
.icon-btn{
  width:46px; height:46px; display:inline-flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid transparent; border-radius:var(--radius-btn);
  color:var(--green-700); cursor:pointer;
}
.icon-btn svg{ width:22px; height:22px; }
.icon-btn:hover{ background:var(--green-100); }
.site-header--over .icon-btn{ color:var(--stone-100); }
.site-header--over .icon-btn:hover{ background:rgba(243,239,231,.12); }
.header-cta{ display:none; min-height:42px; padding:11px 20px; font-size:14px; }

#nav{
  position:absolute; left:0; right:0; top:100%;
  background:var(--stone-100); border-bottom:1px solid var(--border-default);
  padding:4px var(--gutter) 24px; box-shadow:var(--shadow-overlay);
}
#nav[hidden]{ display:none; }
.navlinks li + li{ border-top:1px solid var(--border-default); }
.navlinks a{
  display:block; padding:14px 0; font-family:var(--font-display); font-size:24px;
  font-weight:500; color:var(--text-heading); text-decoration:none;
}
.navlinks a:hover{ color:var(--accent-ink); text-decoration:none; }
.navlinks a[aria-current="page"]{ color:var(--accent-ink); }
.site-header--over .navlinks a[aria-current="page"]{ color:var(--brass-200); }
.skip{ position:absolute; left:-9999px; top:8px; z-index:100; padding:12px 16px; background:var(--stone-100); color:var(--green-800); border-radius:var(--radius-btn); font-weight:600; }
.skip:focus{ left:var(--gutter); }
.linklist li a{ display:inline-block; padding:10px 0; font-size:16px; }
#nav .btn{ margin-top:18px; width:100%; }

@media (min-width:1024px){
  .site-header .wrap{ min-height:76px; }
  .nav-toggle{ display:none; }
  .header-cta{ display:inline-flex; }
  #nav{ position:static; display:flex !important; align-items:center; gap:28px;
        background:transparent; border:0; padding:0; margin-left:auto; box-shadow:none; }
  #nav .btn{ display:none; }
  .navlinks{ display:flex; gap:28px; }
  .navlinks li + li{ border:0; }
  .navlinks a{ font-family:var(--font-sans); font-size:14.5px; font-weight:500; padding:8px 0; color:var(--text-muted); }
  .site-header--over .navlinks a{ color:var(--stone-100); }
  .navlinks a:hover{ color:var(--accent-ink); }
  .site-header--over .navlinks a:hover{ color:var(--brass-200); }
  .nav-actions .icon-btn[href^="tel"]{ display:none; }
}

/* ---------- photo hero -------------------------------------------------- */
.chero{ position:relative; background:var(--green-900); color:var(--stone-100); display:flex; align-items:flex-end; min-height:min(640px,86svh); overflow:hidden; }
.chero-img{ position:absolute; inset:0; }
.chero-img picture,.chero-img img{ width:100%; height:100%; }
.chero-img img{ object-fit:cover; object-position:center 58%; }
.chero-img::after{
  content:""; position:absolute; inset:0;
  /* Open through the roofline, then closing steadily from the eyebrow down —
     the headline block sits on a field dark enough for 12px type. */
  background:linear-gradient(rgba(22,41,31,.30) 0%, rgba(22,41,31,.26) 16%,
                             rgba(22,41,31,.56) 40%, rgba(22,41,31,.86) 100%);
}
.chero-in{ position:relative; padding-top:clamp(96px,20vh,180px); padding-bottom:clamp(72px,9vw,88px); }
.chero h1{ color:var(--stone-100); max-width:15ch; font-size:clamp(40px,6.4vw,72px); line-height:1.04; }
.chero h1 em{ color:var(--brass-200); }
.chero .label{ color:var(--brass-200); }
.chero-lede{ margin-top:18px; font-size:clamp(16.5px,1.3vw,18px); line-height:1.6; color:var(--text-on-inverse-muted); max-width:48ch; }
.chero .btnrow{ margin-top:var(--space-6); }
.chero-marks{ display:flex; flex-wrap:wrap; gap:8px 10px; margin-top:var(--space-7); }

.chero-marks li{
  font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--stone-100); background:rgba(22,41,31,.55); border:1px solid var(--border-on-inverse);
  border-radius:var(--radius-pill); padding:7px 14px;
}

/* ---------- compact CTA strip ------------------------------------------ */
.band--strip{ padding:calc(var(--band)*.52) 0; }
.cta-row{ display:grid; gap:var(--space-6); align-items:center; }
.cta-row h2{ font-size:clamp(26px,2.9vw,36px); max-width:20ch; }
.cta-row .lede{ max-width:46ch; }
.cta-row .btnrow{ flex-wrap:nowrap; }
@media (min-width:900px){
  .cta-row{ grid-template-columns:1fr auto; gap:56px; }
  .cta-row .btnrow{ justify-content:flex-end; }
}
@media (max-width:520px){ .cta-row .btnrow{ flex-wrap:wrap; } }

/* ---------- trust row --------------------------------------------------- */
.facts{ display:grid; grid-template-columns:1fr; gap:1px; background:var(--border-default); border:1px solid var(--border-default); border-radius:var(--radius-md); overflow:hidden; }
.facts li{ background:var(--surface-card); padding:20px 22px; font-size:15px; line-height:1.55; color:var(--text-muted); }
.facts li b{ display:block; font-weight:600; font-size:15.5px; color:var(--text-heading); margin-bottom:3px; }
@media (min-width:640px){ .facts{ grid-template-columns:1fr 1fr; } }
@media (min-width:1024px){ .facts{ grid-template-columns:repeat(4,1fr); } }

/* ---------- plates ------------------------------------------------------ */
.plate{ margin:0; }
.plate img{ width:100%; height:auto; border-radius:var(--radius-md); background:var(--stone-200); }
.plate figcaption{ font-size:15px; line-height:1.55; color:var(--text-soft); margin-top:10px; max-width:52ch; }
.band--ivy .plate figcaption{ color:var(--text-on-inverse-muted); }
.plates{ display:grid; gap:var(--space-5); }
.plates .plate img{ aspect-ratio:4/3; object-fit:cover; }
@media (min-width:760px){ .plates{ grid-template-columns:1fr 1fr; } .plates--3{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1100px){ .plates--4{ grid-template-columns:repeat(4,1fr); } }

/* ---------- service cards ----------------------------------------------- */
.cards{ display:grid; gap:var(--space-5); }
@media (min-width:700px){ .cards{ grid-template-columns:1fr 1fr; } }
@media (min-width:1000px){ .cards--3{ grid-template-columns:repeat(3,1fr); } }
.card{
  display:flex; flex-direction:column; background:var(--surface-card);
  border:1px solid var(--border-default); border-radius:var(--radius-md);
  box-shadow:var(--shadow-card); overflow:hidden; text-decoration:none;
  transition:transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.card:hover{ transform:translateY(-2px); box-shadow:0 2px 4px rgba(28,36,32,.07), 0 14px 34px rgba(28,36,32,.11); text-decoration:none; }
.card-media{ aspect-ratio:16/10; overflow:hidden; background:var(--stone-200); }
.card-media img{ width:100%; height:100%; object-fit:cover; }
.card-body{ padding:22px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card-body .label{ margin:0; }
.card-body h3{ font-family:var(--font-display); font-weight:500; font-size:23px; line-height:1.2; letter-spacing:-.01em; }
.card-body p{ font-size:15px; line-height:1.6; color:var(--text-muted); margin:0; }
.card-go{ margin-top:auto; padding-top:6px; display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color:var(--green-600); }
.card-go svg{ width:15px; height:15px; transition:transform var(--duration-fast) var(--ease-out); }
.card:hover .card-go{ color:var(--green-800); }
.card:hover .card-go svg{ transform:translateX(3px); }
/* Under 700px the three cards become a thumbnail row-list instead of ~1100px of stacked photo cards. */
@media (max-width:699px){
  .card{ display:grid; grid-template-columns:96px 1fr; align-items:center; }
  .card-media{ aspect-ratio:auto; width:96px; height:100%; min-height:96px; align-self:stretch; }
  .card-body{ min-width:0; }
  .card-body{ padding:12px 14px; gap:3px; }
  .card-body .label{ display:block; font-size:11px; }
  .card-body h3{ font-size:18px; }
  .card-body p{ display:none; }
  .card-go{ padding-top:2px; }
}

/* ---------- process steps ----------------------------------------------- */
.steps{ display:grid; gap:var(--space-7); }
@media (min-width:820px){ .steps{ grid-template-columns:repeat(3,1fr); gap:40px; } }
.steps li > span{ display:block; font-family:var(--font-display); font-weight:500; font-size:32px; line-height:1; color:var(--accent-ink); }
.steps h3{ margin:10px 0 8px; }
.steps p{ font-size:15px; line-height:1.6; color:var(--text-muted); margin:0; }

/* ---------- before / after ---------------------------------------------- */
.ba{ display:grid; gap:var(--space-5); }
@media (min-width:760px){ .ba{ grid-template-columns:repeat(3,1fr); } }
.ba-pair{ display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.ba-shot{ position:relative; }
.ba-shot img{ width:100%; aspect-ratio:4/5; object-fit:cover; display:block; background:var(--stone-200); }
.ba-shot:first-child img{ border-radius:var(--radius-md) 0 0 var(--radius-md); }
.ba-shot:last-child img{ border-radius:0 var(--radius-md) var(--radius-md) 0; }
.ba-tag{
  position:absolute; left:9px; bottom:9px; font-size:11.5px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; border-radius:var(--radius-pill); padding:4px 11px;
  background:rgba(22,41,31,.82); color:var(--stone-100);
}
.ba-tag--after{ background:var(--brass-500); color:var(--green-900); }
.ba-cap{ font-size:14px; font-weight:600; color:var(--text-heading); margin-top:11px; }
.ba-cap span{ display:block; font-weight:400; font-size:14.5px; color:var(--text-soft); margin-top:3px; }

/* ---------- service / includes rows ------------------------------------- */
.svc{ border-top:1px solid var(--border-default); max-width:820px; }
.svc.svc--thumbs a{ grid-template-columns:96px 1fr auto; }
.svc-thumb{ width:96px; aspect-ratio:1; border-radius:var(--radius-sm); overflow:hidden; background:var(--stone-200); }
.svc-thumb img{ width:100%; height:100%; object-fit:cover; }
.svc--sub a{ padding:18px 0; }
.svc--sub h3{ font-size:17px; }
.svc li{ border-bottom:1px solid var(--border-default); }
.svc a{ display:grid; grid-template-columns:1fr auto; gap:12px 24px; align-items:center; padding:24px 0; text-decoration:none; }
.svc a:hover{ text-decoration:none; }
.svc h3{ transition:color var(--duration-fast) var(--ease-out); }
.svc a:hover h3{ color:var(--accent-ink); }
.svc p{ margin:6px 0 0; font-size:15px; color:var(--text-muted); max-width:58ch; }
.svc .go{ font-size:14px; font-weight:600; color:var(--green-600); white-space:nowrap; }
.svc .go::after{ content:"\2192"; margin-left:7px; display:inline-block; transition:transform var(--duration-fast) var(--ease-out); }
.svc a:hover .go::after{ transform:translateX(3px); }
/* Inert "what this covers" rows: brass left rule, no hairlines, no arrow —
   they must not look like the linked rows they sit near. */
.svc--inc{ border-top:0; display:grid; gap:14px; }
.svc--inc li{ border-bottom:0; }
.svc .inc{ padding:6px 0 6px 18px; border-left:2px solid var(--brass-500); }
.svc .inc h3{ font-family:var(--font-sans); font-weight:600; font-size:17px; }
.svc .inc p{ margin-top:4px; }
@media (min-width:760px){ .svc--inc{ grid-template-columns:1fr 1fr; gap:18px 40px; max-width:1000px; } }
@media (max-width:620px){ .svc a{ grid-template-columns:1fr; } .svc .go{ justify-self:start; } .svc.svc--thumbs a{ grid-template-columns:72px 1fr; } .svc.svc--thumbs .go{ grid-column:2; } .svc-thumb{ width:72px; } }

/* ---------- towns ------------------------------------------------------- */
.towns{ display:grid; grid-template-columns:1fr 1fr; gap:10px; align-items:stretch; }
.towns a,.towns span{
  display:flex; align-items:center; height:100%; padding:16px 18px; font-size:15.5px; font-weight:500;
  background:var(--surface-card); border:1px solid var(--border-default);
  border-radius:var(--radius-md); text-decoration:none; color:var(--text-heading);
  transition:border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.towns span{ color:var(--text-soft); font-weight:400; background:var(--surface-raised); border-style:dashed; }
.towns a:hover{ border-color:var(--border-strong); box-shadow:var(--shadow-card); text-decoration:none; }
@media (min-width:760px){ .towns{ grid-template-columns:repeat(4,1fr); } }
.band--ivy .towns a,.band--ivy .towns span{ background:transparent; border-color:var(--border-on-inverse); color:var(--stone-100); }
.band--ivy .towns span{ color:var(--text-on-inverse-muted); background:transparent; border-style:dashed; }
.band--ivy .towns a:hover{ background:rgba(243,239,231,.08); }

/* ---------- story ------------------------------------------------------- */
.story{ display:grid; gap:var(--space-7); align-items:start; }
@media (min-width:1000px){ .story{ grid-template-columns:7fr 5fr; gap:64px; } }
.beats li{ display:grid; grid-template-columns:78px 1fr; gap:16px; padding:18px 0; border-top:1px solid var(--border-on-inverse); align-items:baseline; }
.beats li:last-child{ border-bottom:1px solid var(--border-on-inverse); }
.beats .yr{ font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--brass-200); }
.beats p{ margin:0; font-size:15px; max-width:52ch; }
.story-close{ margin-top:30px; }
.story-close p{ font-family:var(--font-display); font-weight:500; font-size:clamp(21px,2.1vw,27px); line-height:1.32; color:var(--stone-100); max-width:36ch; }
.story .plate picture{ display:block; overflow:hidden; border-radius:var(--radius-md); }

/* ---------- interior hero ----------------------------------------------- */
.hero{ padding-top:calc(var(--band)*.7); }
.hero + .band--tight{ padding-top:0; }
.hero .wrap{ display:grid; gap:var(--space-7); align-items:start; }
.hero .lede{ margin-top:18px; }
.hero .note{ margin-top:18px; }
@media (min-width:1024px){ .hero .wrap{ grid-template-columns:7fr 5fr; gap:56px; } }
.hero-plates .plate img{ aspect-ratio:4/3; object-fit:cover; }
@media (min-width:1024px){ .hero-plates .plate img{ max-height:520px; } }

/* ---------- form -------------------------------------------------------- */
/* ---------- estimate card (single form, white card, over a photo or the green band) ---------- */
.estimate{ position:relative; overflow:hidden; }
.estimate--ivy{ background:var(--surface-inverse); }
.estimate--photo{ background:var(--green-900); }
.estimate-back{ position:absolute; inset:0; }
.estimate-back img{ width:100%; height:100%; object-fit:cover; object-position:center 55%; }
.estimate--photo::before{ content:""; position:absolute; inset:0; background:linear-gradient(rgba(22,41,31,.30), rgba(22,41,31,.46)); }
.estimate-wrap{ position:relative; display:grid; justify-items:center; }
.estimate-card{
  width:100%; max-width:560px; background:var(--white); border-radius:var(--radius-md);
  box-shadow:var(--shadow-overlay); padding:clamp(24px,5vw,40px);
}
.estimate-card .label{ margin-bottom:10px; }
.estimate-card h2{ font-size:clamp(28px,4vw,36px); }
.estimate-lede{ margin:12px 0 22px; font-size:16px; line-height:1.55; color:var(--text-muted); max-width:52ch; }
.estimate-card .field > label{ color:var(--green-800); }
.row2{ display:grid; gap:16px; grid-template-columns:1fr 1fr; }
@media (max-width:420px){ .row2{ grid-template-columns:1fr; } }
select:invalid{ color:var(--text-muted); }
select option{ color:var(--text-body); }
.fine{ margin:14px 0 0; font-size:13.5px; line-height:1.5; color:var(--text-soft); text-align:center; }
.fine a{ color:var(--green-600); text-decoration:underline; text-underline-offset:2px; }
.form{ display:grid; gap:16px; }
@media (max-width:1023px){ .estimate-card{ margin-bottom:8px; } .form .btn{ scroll-margin-bottom:76px; } }
.field{ display:grid; grid-template-columns:minmax(0,1fr); gap:7px; }
.field > label,.field legend{ font-size:14px; font-weight:600; color:var(--text-heading); padding:0; }
.req{ font-weight:500; font-size:12px; color:var(--text-soft); margin-left:6px; }
.band--ivy .req{ color:var(--text-on-inverse-muted); }
.field-err{ font-size:14px; margin:4px 0 0; color:var(--text-body); }
.band--ivy .field-err{ color:var(--stone-100); }
.field-err[hidden]{ display:none; }
select[aria-invalid="true"],select[aria-invalid="true"]:focus{ border-color:var(--brass-600); box-shadow:0 0 0 3px rgba(200,155,90,.28); }
.form-recap{ font-size:14px; margin:0; padding:10px 14px; border-radius:var(--radius-sm); background:rgba(243,239,231,.10); color:var(--text-on-inverse-muted); }
.band--ground2 .form-recap{ background:var(--stone-100); color:var(--text-muted); }
.form-recap[hidden]{ display:none; }
.band--ivy .field > label,.band--ivy .field legend{ color:var(--stone-100); }
input[type=text],input[type=tel],input[type=email],select,textarea{
  width:100%; min-height:48px; padding:12px 14px;
  border:1px solid var(--border-input); border-radius:var(--radius-sm);
  background:var(--white); color:var(--text-body); font:inherit; font-size:16px;
  appearance:none; -webkit-appearance:none;
  transition:border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
textarea{ min-height:128px; resize:vertical; line-height:1.55; }
select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347524B' stroke-width='1.75'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:18px; padding-right:40px;
}
input:focus,select:focus,textarea:focus{ outline:none; border-color:var(--green-600); box-shadow:0 0 0 3px rgba(62,107,82,.22); }
::placeholder{ color:var(--text-muted); opacity:1; }
input[type=file]{ width:100%; font-size:14px; color:var(--text-muted); padding:0; }
input[type=file]::file-selector-button{
  appearance:none; -webkit-appearance:none; margin:0 12px 0 0; cursor:pointer;
  min-height:44px; padding:12px 18px; border:1px solid var(--green-700);
  border-radius:var(--radius-sm); background:transparent; color:var(--green-700);
  font-family:var(--font-sans); font-size:14px; font-weight:600;
  transition:background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
input[type=file]::file-selector-button:hover{ background:var(--green-100); }
.band--ivy input[type=file]{ color:var(--text-on-inverse-muted); }
.band--ivy input[type=file]::file-selector-button{ border-color:rgba(243,239,231,.42); color:var(--stone-100); }
.band--ivy input[type=file]::file-selector-button:hover{ background:rgba(243,239,231,.12); }
.checks{ display:grid; grid-template-columns:1fr; gap:6px; }
@media (min-width:360px){ .checks{ grid-template-columns:1fr 1fr; } }
.check{
  display:flex; align-items:center; gap:11px; min-height:44px; padding:8px 14px;
  background:var(--white); border:1px solid var(--border-default); border-radius:var(--radius-sm);
  /* set explicitly: the tile is white, so it must not inherit .band--ivy's
     light text color. This exact leak has bitten every build of this site. */
  color:var(--text-body);
  font-size:15px; text-transform:none; letter-spacing:0; cursor:pointer;
  transition:border-color var(--duration-fast) var(--ease-out);
}
.check:hover{ border-color:var(--border-input); }
.check input{ width:19px; height:19px; margin:0; accent-color:var(--green-700); flex:none; }
.hp{ position:absolute; left:-9999px; }
.form .note{ text-align:center; margin-top:2px; }
.vh{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.steps--tight{ gap:var(--space-5); }
@media (min-width:820px){ .steps--tight{ grid-template-columns:1fr; max-width:56ch; } }

/* ---------- footer ------------------------------------------------------ */
/* The footer carries the clearance for the fixed action bar (not body), so the
   green runs all the way down instead of ending in a strip of paper. */
.site-footer{ background:var(--surface-inverse-deep); color:var(--text-on-inverse); padding:calc(var(--band)*.40) 0 calc(56px + env(safe-area-inset-bottom)); }
@media (min-width:760px){ .site-footer{ padding-top:calc(var(--band)*.55); } }
.site-footer a{ color:var(--text-on-inverse-muted); text-decoration:none; }
.site-footer a:hover{ color:var(--stone-100); text-decoration:underline; }
.site-footer p{ color:var(--text-on-inverse-muted); font-size:15px; }
/* MOBILE FOOTER — one full-width block per section, each with its OWN 2-column
   list. The old layout put Services (8 links) beside Company (4) in one grid
   row; the row stretched to the taller column and left ~220px of dead space
   under Company. Flowing each list 2-up instead balances them and removes it. */
.foot-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
/* Contact and Follow stack full-width on mobile: the address then fits on one
   line instead of breaking at the @, and the two pills sit side by side
   instead of stacking. Two columns again from 760px. */
.foot-meta{ display:grid; grid-template-columns:1fr; gap:14px; }
.foot-list{ display:grid; grid-template-columns:1fr 1fr; gap:0 20px; align-content:start; }
.foot-tag{ margin-top:8px; max-width:40ch; }
.foot-mail{ overflow-wrap:break-word; }
@media (min-width:760px){
  .foot-grid{
    grid-template-columns:1.8fr 1fr 1fr;
    grid-template-areas:"id svc co" "meta svc co";
    gap:18px 40px; align-content:start;
  }
  .foot-id{ grid-area:id; }
  .foot-meta{ grid-area:meta; grid-template-columns:1fr 1fr; gap:18px 24px; }
  .foot-nav--svc{ grid-area:svc; }
  .foot-nav--co{ grid-area:co; }
  .foot-list{ grid-template-columns:1fr; }
  .foot-tag{ margin-top:10px; max-width:32ch; }
}
.foot-brand{ font-family:var(--font-display); font-weight:500; font-size:25px; line-height:1.1; color:var(--stone-100); }
@media (min-width:760px){ .foot-brand{ font-size:28px; } }
.foot-brand em{ display:block; font-size:16px; color:var(--brass-200); margin-top:2px; }
.site-footer .foot-h{ margin:0; font-family:var(--font-sans); font-size:12px; font-weight:600; letter-spacing:var(--tracking-eyebrow); text-transform:uppercase; color:var(--brass-200); margin-bottom:6px; }
.site-footer ul li{ font-size:14.5px; }
.site-footer ul li a{ display:inline-block; padding:9px 0; line-height:1.35; }  /* ~36px rows on touch */
@media (min-width:1024px){ .site-footer ul li a{ padding:3px 0; } }
.site-footer .foot-social a{ padding-top:0; padding-bottom:0; }
.foot-legal{
  margin-top:var(--space-4); padding:12px 0 0; border-top:1px solid var(--border-on-inverse);
  display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 16px; font-size:12px; color:var(--text-on-inverse-muted);
}
.foot-credit a{ display:inline-block; padding:6px 0; }

/* Footer social links. Brass outline pills, 44px touch targets. The .soc-ico
   span is an empty slot: paste the platform's own official SVG inside it and
   it sizes and inherits color automatically; while empty it collapses. */
.foot-social{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.foot-social li{ font-size:14px; }
.site-footer .foot-social a{
  display:inline-flex; align-items:center; gap:8px;
  min-height:44px; padding:0 15px;
  border:1px solid var(--brass-600); border-radius:999px;
  color:var(--brass-200); text-decoration:none;
  font-family:var(--font-sans); font-weight:600; font-size:14px;
}
.site-footer .foot-social a:hover{
  background:var(--brass-500); border-color:var(--brass-500);
  color:var(--green-800); text-decoration:none;
}
.foot-social svg{ width:17px; height:17px; fill:currentColor; flex:none; }
.soc-ico:empty{ display:none; }

@media (min-width:760px){ .foot-credit{ margin-left:auto; } .foot-legal{ gap:8px 24px; font-size:12.5px; margin-top:var(--space-5); } }

/* ---------- mobile action bar ------------------------------------------- */
.actionbar{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background:var(--border-default); border-top:1px solid var(--border-default);
  padding-bottom:env(safe-area-inset-bottom);
}
.actionbar a{ display:flex; align-items:center; justify-content:center; min-height:56px; font-size:15px; font-weight:600; text-decoration:none; background:var(--stone-100); color:var(--green-800); }
.actionbar a:hover{ text-decoration:none; }
.actionbar .primary{ background:var(--green-700); color:var(--stone-100); }
@media (min-width:1024px){ .actionbar{ display:none; } .site-footer{ padding-bottom:0; } }

/* ---------- faq + breadcrumb -------------------------------------------- */
.faq{ border-top:1px solid var(--border-default); }
.faq li{ display:grid; gap:10px; padding:26px 0; border-bottom:1px solid var(--border-default); }
.faq h3{ font-family:var(--font-display); font-weight:500; font-size:23px; line-height:1.25; max-width:36ch; }
.faq p{ color:var(--text-muted); max-width:62ch; font-size:16px; }
@media (min-width:900px){ .faq li{ grid-template-columns:5fr 7fr; gap:48px; } }
.band--ivy .faq,.band--ivy .faq li{ border-color:var(--border-on-inverse); }
.crumbs{ font-size:13px; color:var(--text-soft); margin-bottom:20px; display:flex; flex-wrap:wrap; gap:7px; }
.crumbs a{ color:var(--text-muted); display:inline-block; padding:12px 4px; margin:-12px 0; }

/* ---------- work strip (horizontal gallery) ----------------------------- */
.strip{ padding-bottom:calc(var(--band)*.8); }
.strip-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:var(--space-7); }
.strip-ctl{ display:none; align-items:center; gap:10px; flex:none; }
.strip-count{ font-size:13px; letter-spacing:.06em; color:var(--text-soft); margin-right:8px; font-variant-numeric:tabular-nums; }
.strip-count b{ font-weight:700; color:var(--text-heading); }
.strip-btn{
  width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center;
  background:var(--white); border:1px solid var(--border-input); border-radius:var(--radius-btn);
  color:var(--green-700); cursor:pointer;
  transition:background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}
.strip-btn svg{ width:19px; height:19px; }
.strip-btn:hover{ background:var(--green-700); color:var(--stone-100); border-color:var(--green-700); }
.strip-btn:disabled{ opacity:.34; cursor:default; background:var(--white); color:var(--green-700); border-color:var(--border-default); }
@media (min-width:760px){ .strip-ctl{ display:flex; } }
.strip-rail{
  overflow-x:auto; overflow-y:hidden; overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory; scroll-padding-left:var(--gutter);
  -webkit-overflow-scrolling:touch; scrollbar-width:none; cursor:grab;
}
.strip-rail::-webkit-scrollbar{ display:none; }
.strip-rail.is-drag{ cursor:grabbing; scroll-snap-type:none; user-select:none; }
.strip-rail:focus-visible{ outline:2px solid var(--focus-ring); outline-offset:-2px; }
.strip-list{ display:flex; gap:var(--space-5); width:max-content; padding:4px var(--gutter); }
.strip-item{ flex:none; width:76vw; max-width:460px; scroll-snap-align:start; }
.strip-item .plate img{ aspect-ratio:4/3; object-fit:cover; }
.strip-item figcaption{ min-height:2.9em; }
@media (min-width:900px){ .strip-item{ width:36vw; max-width:480px; } }
.strip-note{ margin-top:var(--space-6); }

/* ---------- motion ------------------------------------------------------ */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .card,.btn svg,.svc h3,.strip-btn{ transition:none; }
}
