/* ============================================================================
   Pro Gutter Service Solutions LLC — Martinsburg, WV
   One stylesheet. No frameworks, no utility soup.

   Palette: taken from the brief's extracted hexes — #907860 bronze,
   #786048 deep bronze, #606048 olive — read as the warm metal/earth family
   the trade lives in, lifted with a saturated copper for anything clickable.

   Contents
     01 tokens
     02 reset + base
     03 layout helpers
     04 type
     05 buttons + pills
     06 header, menu sheet, call bar
     07 hero
     08 credential strip
     09 intro
     10 services
     11 the water diagram (signature)
     12 photo moment
     13 process
     14 guards band
     15 review
     16 service area
     17 faq
     18 cta band
     19 form
     20 footer
     21 inner-page heroes + prose
     22 motion, reveals, reduced motion
   ========================================================================== */

/* ------------------------------------------------------------ 01 tokens -- */
:root {
  /* the brief's logo/brand hexes, used verbatim */
  --bronze: #907860;
  --bronze-deep: #786048;
  --olive: #606048;

  /* derived, same hue family — the one saturated note, for actions */
  --copper: #c08552;
  --copper-hi: #d8a473;
  --copper-dim: #a06f42;
  --copper-ink: #a8672e;    /* copper dark enough to read as TEXT on the paper base */
  --bronze-lift: #a58d72;   /* the same bronze, lifted just enough to clear AA at 10px */

  --ink: #14120f;
  --ink-2: #1c1812;
  --ink-3: #272119;
  --paper: #f6f2ea;
  --paper-2: #ede6d9;
  --paper-3: #e3dacb;

  --text: #23201a;
  --muted: #5f584c;
  --muted-dark: #a99d8b;
  --line: #ded5c4;
  --line-2: #cfc4af;
  --line-dark: rgba(240, 232, 218, .16);
  --line-dark-2: rgba(240, 232, 218, .3);

  --display: "Antonio", "Antonio Fallback", Impact, sans-serif;
  --body: "Urbanist", "Urbanist Fallback", system-ui, sans-serif;

  --max: 1180px;
  --gut: 20px;
  --hdr-h: 66px;
  --edge: max(var(--gut), calc((var(--vw, 100vw) - var(--max)) / 2));

  --r: 3px;
  --shadow: 0 18px 44px -26px rgba(20, 18, 15, .55);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

@font-face {
  font-family: "Antonio";
  src: url("/fonts/antonio-100700.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/fonts/urbanist-100900.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* metric-ish fallbacks so the swap barely moves */
@font-face {
  font-family: "Antonio Fallback";
  src: local("Arial Narrow"), local("Haettenschweiler"), local("Impact");
  size-adjust: 92%;
  ascent-override: 96%;
  descent-override: 24%;
}
@font-face {
  font-family: "Urbanist Fallback";
  src: local("Segoe UI"), local("Helvetica Neue"), local("Arial");
  size-adjust: 97%;
}

/* -------------------------------------------------------- 02 reset/base -- */
*, *::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(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 420;
  line-height: 1.6;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
figure, blockquote { margin: 0; }          /* the UA's 1em 40px breaks rails */
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; background: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--copper); color: #fff; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; top: -80px; left: 12px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; font-weight: 700; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

/* ----------------------------------------------------------- 03 layout -- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
section { position: relative; }
.sec { padding: 68px 0; }
.sec-lg { padding: 88px 0; }
.sec-sm { padding: 46px 0; }
.dark { background: var(--ink); color: var(--paper); }
.dark-2 { background: var(--ink-2); }   /* a shade up; always used WITH .dark */
.tint { background: var(--paper-2); }
.tint-3 { background: var(--paper-3); }
.dark a:not(.btn) { color: var(--paper); }  /* never repaint a button label */

.rule { height: 1px; background: var(--line); border: 0; }
.dark .rule { background: var(--line-dark); }

.grid2 { display: grid; gap: 34px; }
@media (min-width: 900px) {
  .grid2 { grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
  .grid2.wide-left { grid-template-columns: 1.15fr .85fr; }
  .grid2.wide-right { grid-template-columns: .85fr 1.15fr; }
}

/* photo frames — never a card, never a box, just the photograph */
.ph { display: block; position: relative; overflow: hidden; background: var(--paper-3); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.dark .ph { background: var(--ink-3); }
.ph-4x5 { aspect-ratio: 4 / 5; }
.ph-3x4 { aspect-ratio: 3 / 4; }
.ph-1x1 { aspect-ratio: 1 / 1; }
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-3x2 { aspect-ratio: 3 / 2; }
.ph-cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(20, 18, 15, .82), rgba(20, 18, 15, 0));
  color: #f3ece0; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}

/* ------------------------------------------------------------- 04 type -- */
.k {
  font-family: var(--body); font-weight: 700; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bronze-deep);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.k::before { content: ""; width: 26px; height: 2px; background: var(--copper); flex: none; }
/* every dark bed, whether or not it carries .dark */
.dark .k, .xsec .k, .area .k, .cta .k, .moment .k, .nf .k, .phero .k { color: var(--bronze-lift); }

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--display); font-weight: 700; line-height: .95;
  letter-spacing: -.004em; text-wrap: balance;
}
h1, .h1 { font-size: clamp(2.6rem, 13vw, 5.4rem); }
h2, .h2 { font-size: clamp(2.2rem, 9.4vw, 3.9rem); line-height: .96; }
h3, .h3 { font-size: clamp(1.5rem, 5.6vw, 2.1rem); line-height: 1.02; }
h4, .h4 {
  font-family: var(--body); font-weight: 700; font-size: 1.06rem;
  line-height: 1.3; letter-spacing: -.005em; margin: 0;
}
.hl { color: var(--copper-ink); }
.dark .hl, .xsec .hl, .area .hl, .cta .hl, .moment .hl, .nf .hl, .phero .hl, .hero .hl { color: var(--copper-hi); }
.lede { font-size: 1.12rem; line-height: 1.55; color: var(--muted); max-width: 46ch; }
.dark .lede, .xsec .lede, .area .lede, .cta .lede, .moment .lede, .nf .lede, .phero .lede { color: #cfc3b0; }
p + p { margin-top: 1em; }
.body-p { max-width: 54ch; }
.small { font-size: .92rem; }
.tiny { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* ---------------------------------------------------------- 05 buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  font-family: var(--body); font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--r); cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-p { background: var(--copper); color: #16110c; box-shadow: 0 10px 26px -14px rgba(192, 133, 82, .9); }
.btn-p:hover { background: var(--copper-hi); transform: translateY(-2px); }
.btn-o { border-color: currentColor; color: var(--text); background: transparent; }
.btn-o:hover { background: var(--text); color: var(--paper); transform: translateY(-2px); }
/* every dark-bedded section, not just the ones carrying .dark */
.dark .btn-o, .dark-2 .btn-o, .hero .btn-o, .phero .btn-o, .moment .btn-o,
.cta .btn-o, .area .btn-o, .nf .btn-o, .xsec .btn-o, .sheet .btn-o {
  color: #f3ece0; border-color: rgba(243, 236, 224, .62);
}
/* sitting directly on a photograph, the outline needs its own bed to stay legible */
.hero .btn-o, .phero .btn-o, .moment .btn-o, .cta .btn-o, .area .btn-o {
  background: rgba(20, 18, 15, .5); backdrop-filter: blur(4px);
}
.dark .btn-o:hover, .dark-2 .btn-o:hover, .hero .btn-o:hover, .phero .btn-o:hover, .moment .btn-o:hover,
.cta .btn-o:hover, .area .btn-o:hover, .nf .btn-o:hover, .xsec .btn-o:hover, .sheet .btn-o:hover {
  background: #f3ece0; color: var(--ink); border-color: #f3ece0;
}
.btn-ghost { padding: 0; min-height: 0; background: none; border: 0; text-transform: none; letter-spacing: 0; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btns .btn { flex: 1 1 auto; min-width: 156px; }
@media (min-width: 560px) { .btns .btn { flex: 0 0 auto; } }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 13px; border: 1px solid var(--line-dark-2); border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: #efe6d7; background: rgba(20, 18, 15, .35); backdrop-filter: blur(6px);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper-hi); flex: none; }

.link-u {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .92rem; letter-spacing: .05em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 2px solid var(--copper); color: inherit;
  transition: gap .18s var(--ease), border-color .18s var(--ease);
}
.link-u:hover { gap: 13px; border-color: var(--text); }
.dark .link-u:hover { border-color: var(--paper); }

/* ----------------------------------------------------------- 06 header -- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: calc(var(--hdr-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  transition: background-color .25s var(--ease), transform .3s var(--ease), box-shadow .25s var(--ease);
}
.hdr::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(20, 18, 15, .72), rgba(20, 18, 15, 0));
  opacity: 1; transition: opacity .25s var(--ease);
}
.hdr.solid { background: rgba(20, 18, 15, .96); box-shadow: 0 1px 0 var(--line-dark); }
.hdr.solid::before { opacity: 0; }
.hdr.up { transform: translateY(-104%); }
.hdr-in {
  position: relative; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gut); display: flex; align-items: center; gap: 14px;
}

.lock { display: flex; align-items: center; gap: 11px; color: #f4ede1; margin-right: auto; }
.lock .mark { width: 34px; height: 40px; flex: none; }
.lock .wm { line-height: .82; }
.lock .wm b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.68rem; letter-spacing: .005em; text-transform: uppercase;
}
.lock .wm span {
  display: block; font-family: var(--body); font-weight: 700;
  font-size: 8.4px; letter-spacing: .27em; text-transform: uppercase;
  color: var(--bronze-lift); margin-top: 4px; white-space: nowrap;
}
@media (min-width: 480px) { .lock .wm b { font-size: 1.86rem; } .lock .wm span { font-size: 9px; letter-spacing: .3em; } .lock .mark { width: 38px; height: 45px; } }

.nav { display: none; }
@media (min-width: 1040px) {
  .nav { display: flex; align-items: center; gap: 26px; }
  .nav a {
    font-size: .87rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: #e9e0d2; padding: 6px 0; position: relative;
  }
  .nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--copper); transition: right .2s var(--ease);
  }
  .nav a:hover::after, .nav a[aria-current]::after { right: 0; }
}
.hdr .btn { min-height: 42px; padding: 9px 17px; font-size: .82rem; }
.hdr .btn-call { display: none; }
@media (min-width: 720px) { .hdr .btn-call { display: inline-flex; } }

.burger {
  width: 46px; height: 46px; display: grid; place-items: center; gap: 0;
  background: transparent; border: 1px solid var(--line-dark-2); border-radius: var(--r);
  cursor: pointer; flex: none;
}
.burger span { display: block; width: 19px; height: 2px; background: #f4ede1; margin: 2.5px 0; }
@media (min-width: 1040px) { .burger { display: none; } }

.sheet {
  position: fixed; inset: 0; z-index: 120; background: var(--ink);
  padding: calc(22px + env(safe-area-inset-top)) var(--gut) calc(30px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateY(-100%); transition: transform .34s var(--ease);
  visibility: hidden;
}
.sheet.open { transform: none; visibility: visible; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.sheet-x {
  width: 46px; height: 46px; border: 1px solid var(--line-dark-2); border-radius: var(--r);
  background: transparent; color: #f4ede1; font-size: 22px; line-height: 1; cursor: pointer;
}
.sheet nav { display: grid; }
.sheet nav a {
  font-family: var(--display); font-weight: 600; font-size: 1.9rem; text-transform: uppercase;
  color: #f2ebdf; padding: 13px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: baseline; gap: 12px;
}
.sheet nav a i {
  font-family: var(--body); font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--bronze);
}
.sheet .btns { margin-top: 26px; }
.sheet .btns .btn { flex: 1 1 100%; }
.sheet-foot { margin-top: auto; padding-top: 26px; color: var(--muted-dark); font-size: .9rem; }

.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 88;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-dark); padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.callbar.show { transform: none; }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 56px; font-weight: 800; font-size: .92rem; letter-spacing: .05em; text-transform: uppercase;
}
.callbar .c1 { background: var(--ink); color: #f4ede1; }
.callbar .c2 { background: var(--copper); color: #16110c; }
.callbar svg { width: 17px; height: 17px; }
@media (min-width: 1040px) { .callbar { display: none; } }
body.has-callbar .foot { padding-bottom: 86px; }
@media (min-width: 1040px) { body.has-callbar .foot { padding-bottom: 34px; } }

/* ------------------------------------------------------------- 07 hero -- */
.hero {
  position: relative; min-height: max(660px, 100svh);
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 40px) var(--gut) 56px;
  background: var(--ink); overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture, .hero-media video, .hero-media img { width: 100%; height: 100%; }
.hero-media img, .hero-media video { object-fit: cover; }
/* The loop is a bright sunset sky, so the scrim is DARKEST where the centred
   copy sits — the usual light-in-the-middle vignette fails contrast here. */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 18, 15, .74) 0%, rgba(20, 18, 15, .56) 28%, rgba(20, 18, 15, .7) 72%, rgba(20, 18, 15, .95) 100%),
    radial-gradient(86% 60% at 50% 50%, rgba(20, 18, 15, .64) 0%, rgba(20, 18, 15, .16) 100%);
}
.hero-in { position: relative; width: 100%; max-width: 860px; margin: 0 auto; text-align: center; color: #f7f1e7; }
.hero .lock-hero { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero .lock-hero .mark { width: 52px; height: 62px; }
.hero .lock-hero b {
  font-family: var(--display); font-weight: 700; font-size: 2.35rem;
  text-transform: uppercase; letter-spacing: .01em; line-height: .84; color: #fdf8ef;
}
.hero .lock-hero span {
  font-family: var(--body); font-weight: 700; font-size: 9.5px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--bronze-lift);
}
@media (min-width: 700px) {
  .hero .lock-hero .mark { width: 60px; height: 72px; }
  .hero .lock-hero b { font-size: 3rem; }
  .hero .lock-hero span { font-size: 11px; }
}
.hero h1 { margin: 20px 0 16px; color: #fdf8ef; }
.hero h1 .hl { display: block; }
.hero .sub { font-size: 1.08rem; line-height: 1.5; color: #e2d8c8; max-width: 34ch; margin: 0 auto 26px; }
@media (min-width: 700px) { .hero .sub { max-width: 50ch; font-size: 1.16rem; } }
.hero .btns { justify-content: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 0; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(243, 236, 224, .2);
}
.hero-trust li {
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: #ddd2c0; padding: 0 14px; position: relative;
}
.hero-trust li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(243, 236, 224, .3);
}
.hero-trust b { color: #fbf5ea; font-weight: 800; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: none; font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(243, 236, 224, .55); writing-mode: vertical-rl;
}
@media (min-width: 1040px) and (min-height: 760px) { .scroll-hint { display: block; } }

.motion-btn {
  position: absolute; right: 14px; bottom: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 34px; padding: 6px 12px;
  background: rgba(20, 18, 15, .6); color: #f2ebdf;
  border: 1px solid rgba(243, 236, 224, .3); border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(6px);
}
.motion-btn svg { width: 12px; height: 12px; flex: none; }
.motion-btn:hover { background: rgba(20, 18, 15, .85); }

/* ----------------------------------------------------------- 08 strip --- */
.strip { background: var(--ink-2); color: var(--paper); border-bottom: 1px solid var(--line-dark); }
.strip ul { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .strip ul { grid-template-columns: repeat(4, 1fr); } }
.strip li {
  padding: 20px 8px 20px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: flex-start; gap: 11px;
}
@media (min-width: 900px) { .strip li { border-bottom: 0; border-right: 1px solid var(--line-dark); padding: 26px 20px 26px 0; } .strip li:last-child { border-right: 0; } }
.strip li:nth-child(odd) { padding-right: 16px; }
@media (max-width: 899px) { .strip li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-dark); } .strip li:nth-last-child(-n+2) { border-bottom: 0; } }
.strip svg { width: 20px; height: 20px; flex: none; color: var(--copper); margin-top: 2px; }
.strip b { display: block; font-size: .95rem; font-weight: 800; line-height: 1.25; }
.strip span { display: block; font-size: .82rem; color: var(--muted-dark); line-height: 1.35; margin-top: 3px; }

/* ------------------------------------------------------------ 09 intro -- */
.intro { padding: 76px 0 70px; }
.intro .grid2 { align-items: start; }
.intro h2 { margin-bottom: 20px; }
.intro .sig {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
}
.intro .sig div { line-height: 1.2; }
.intro .sig b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; }
.intro .sig span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.intro-media { position: relative; }
.intro-media .ph { box-shadow: var(--shadow); }
.intro-media .tagbox {
  position: absolute; left: -10px; bottom: -18px; background: var(--ink); color: var(--paper);
  padding: 15px 18px; max-width: 220px; border-left: 3px solid var(--copper);
}
.intro-media .tagbox b { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 700; line-height: .95; }
.intro-media .tagbox span { font-size: 11.5px; color: var(--muted-dark); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
@media (min-width: 900px) { .intro-media .tagbox { left: -26px; bottom: -22px; } }

/* --------------------------------------------------------- 10 services -- */
.svc-head { display: grid; gap: 16px; margin-bottom: 34px; }
@media (min-width: 900px) { .svc-head { grid-template-columns: 1.1fr .9fr; align-items: end; } }

.feat { display: grid; gap: 22px; margin-bottom: 14px; }
@media (min-width: 820px) { .feat { grid-template-columns: 1fr 1fr; gap: 26px; } }
.feat a {
  position: relative; display: block; overflow: hidden; background: var(--ink);
  transition: transform .3s var(--ease);
}
.feat a:hover { transform: translateY(-4px); }
.feat .ph { aspect-ratio: 4 / 5; }
@media (min-width: 560px) { .feat .ph { aspect-ratio: 3 / 2; } }
@media (min-width: 820px) { .feat .ph { aspect-ratio: 4 / 5; } }
.feat img { transition: transform 1.1s var(--ease); }
.feat a:hover img { transform: scale(1.045); }
.feat .cap {
  position: absolute; inset: auto 0 0 0; padding: 60px 20px 22px; color: #fbf6ec;
  background: linear-gradient(to top, rgba(18, 15, 12, .96) 14%, rgba(18, 15, 12, .74) 52%, rgba(18, 15, 12, .12) 100%);
}
.feat .cap i {
  font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--copper-hi);
}
.feat .cap h3 { margin: 7px 0 8px; color: #fbf6ec; }
.feat .cap p { font-size: .95rem; color: #ded3c2; line-height: 1.45; max-width: 34ch; }
.feat .cap .go { margin-top: 13px; display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-hi); }
.feat .cap .go svg { width: 15px; height: 15px; }

.rows { border-top: 1px solid var(--line); }
.dark .rows { border-top-color: var(--line-dark); }
.rows li { border-bottom: 1px solid var(--line); }
.dark .rows li { border-bottom-color: var(--line-dark); }
.rows a {
  display: grid; grid-template-columns: 54px 1fr 20px; align-items: center; gap: 16px;
  padding: 16px 0; transition: padding .22s var(--ease), color .22s var(--ease);
}
.rows a:hover { padding-left: 10px; color: var(--copper-dim); }
.dark .rows a:hover { color: var(--copper-hi); }
.rows .ph { width: 54px; height: 54px; }
.rows .more { display: none; }              /* a third grid item would wrap the arrow */
.rows .txt b { display: block; font-family: var(--display); font-size: 1.32rem; font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.rows .txt span { display: block; font-size: .9rem; color: var(--muted); line-height: 1.4; margin-top: 4px; }
.dark .rows .txt span { color: var(--muted-dark); }
.rows .arw { width: 20px; height: 20px; color: var(--bronze); }
@media (min-width: 720px) {
  .rows a { grid-template-columns: 72px 1fr auto 24px; gap: 22px; padding: 20px 0; }
  .rows .ph { width: 72px; height: 72px; }
  .rows .txt b { font-size: 1.62rem; }
  .rows .more { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-deep); }
  .dark .rows .more { color: var(--bronze); }
}

/* ------------------------------------------------- 11 the water diagram -- */
.xsec { background: var(--ink); color: var(--paper); overflow: hidden; }
.xsec .grid2 { align-items: center; }
.xsec figure { position: relative; }
.xsec > .wrap figure > svg { width: 100%; height: auto; display: block; }
.xsec .legend { display: grid; gap: 12px; margin-top: 26px; }
.xsec .legend li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: baseline; }
.xsec .legend i {
  font-style: normal; font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  color: var(--copper); line-height: 1;
}
.xsec .legend b { display: block; font-size: .98rem; font-weight: 800; }
.xsec .legend span { display: block; font-size: .9rem; color: var(--muted-dark); line-height: 1.45; }
.flow { stroke-dasharray: 7 11; animation: flow 1.5s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -36; } }
.xsec .motion-btn { position: static; margin-top: 22px; }

/* ----------------------------------------------------------- 12 moment -- */
.moment { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
@media (min-width: 900px) { .moment { min-height: 620px; } }
.moment .bg { position: absolute; inset: 0; z-index: 0; }
.moment .bg picture { display: block; width: 100%; height: 100%; }
.moment .bg img { width: 100%; height: 100%; object-fit: cover; }
.moment .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 15, 12, .9) 4%, rgba(18, 15, 12, .28) 58%, rgba(18, 15, 12, .5) 100%);
}
.moment .wrap { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 42px; color: #fbf6ec; }
.moment h2 { max-width: 16ch; color: #fbf6ec; }
.moment p { margin-top: 14px; max-width: 42ch; color: #e0d5c3; }
.kb img { animation: kb 30s ease-in-out infinite alternate; transform-origin: 54% 62%; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.14); } }

/* ---------------------------------------------------------- 13 process -- */
.proc { counter-reset: step; }
.proc .grid2 { align-items: start; }
.proc ol { border-top: 1px solid var(--line); margin-top: 8px; }
.proc li { border-bottom: 1px solid var(--line); padding: 22px 0; display: grid; grid-template-columns: 62px 1fr; gap: 16px; }
.proc li i {
  font-style: normal; font-family: var(--display); font-weight: 700; font-size: 2.5rem;
  line-height: .8; color: transparent; -webkit-text-stroke: 1.4px var(--bronze-deep);
}
.proc li b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; line-height: 1; margin-bottom: 6px; }
.proc li p { font-size: .96rem; color: var(--muted); max-width: 40ch; }
@media (min-width: 720px) { .proc li { grid-template-columns: 92px 1fr; } .proc li i { font-size: 3.4rem; } }

/* ----------------------------------------------------------- 14 guards -- */
.split-media .ph { box-shadow: var(--shadow); }
.checks { display: grid; gap: 11px; margin-top: 22px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 1rem; }
.checks svg { width: 20px; height: 20px; color: var(--copper-ink); margin-top: 2px; }
.dark .checks svg { color: var(--copper-hi); }

/* ----------------------------------------------------------- 15 review -- */
.rev-wrap { display: grid; gap: 30px; }
@media (min-width: 900px) { .rev-wrap { grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; } }
.stars { display: flex; gap: 4px; }
.stars svg { width: 20px; height: 20px; color: var(--copper-ink); }
.rating-big { display: flex; align-items: baseline; gap: 12px; }
.rating-big b { font-family: var(--display); font-size: 4.2rem; font-weight: 700; line-height: .8; }
.rating-big span { font-size: .9rem; color: var(--muted); line-height: 1.3; max-width: 12ch; }
.dark .rating-big span { color: var(--muted-dark); }
.quote { position: relative; padding-left: 22px; border-left: 3px solid var(--copper-ink); }
.quote p {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.45rem, 5.4vw, 2.05rem);
  line-height: 1.16; letter-spacing: -.002em;
}
.quote footer { margin-top: 18px; font-size: .92rem; color: var(--muted); }
.dark .quote footer { color: var(--muted-dark); }
.quote footer b { display: block; font-size: 1rem; color: inherit; font-weight: 800; }
.quote footer .src { display: inline-flex; align-items: center; gap: 6px; margin-top: 5px; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

/* ------------------------------------------------------------- 16 area -- */
.area { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }
.area .bg { position: absolute; inset: 0; }
.area .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.area .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(20, 18, 15, .95) 10%, rgba(20, 18, 15, .68) 100%); }
.area .wrap { position: relative; }
.towns { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.towns li {
  border: 1px solid var(--line-dark-2); padding: 8px 14px; font-size: .88rem; font-weight: 600;
  border-radius: 999px; color: #ece2d2;
}
.towns li.home { background: var(--copper); border-color: var(--copper); color: #16110c; font-weight: 800; }

/* -------------------------------------------------------------- 17 faq -- */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.18rem, 4.4vw, 1.5rem);
  line-height: 1.12; text-transform: uppercase; letter-spacing: .005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 2px solid var(--copper-ink); border-bottom: 2px solid var(--copper-ink);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-list .a { padding: 0 0 22px; color: var(--muted); max-width: 62ch; }

/* --------------------------------------------------------- 18 cta band -- */
.cta { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); text-align: center; }
.cta .bg { position: absolute; inset: 0; }
.cta .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cta .bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% 40%, rgba(20, 18, 15, .5), rgba(20, 18, 15, .96)); }
.cta .wrap { position: relative; }
.cta h2 { max-width: 15ch; margin: 0 auto 16px; color: #fbf6ec; }
.cta p { max-width: 44ch; margin: 0 auto 28px; color: #ddd2c0; }
.cta .btns { justify-content: center; }

/* ------------------------------------------------------------- 19 form -- */
.form-sec .grid2 { align-items: start; gap: 40px; }
@media (min-width: 900px) { .form-sec .grid2 { grid-template-columns: .85fr 1.15fr; gap: 56px; } }
.contact-list { display: grid; gap: 20px; margin-top: 26px; }
.contact-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; }
.contact-list svg { width: 22px; height: 22px; color: var(--copper-ink); margin-top: 3px; }
.contact-list b { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 2px; }
.dark .contact-list b { color: var(--bronze); }
.contact-list a, .contact-list span { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.05; }
.contact-list .plain { font-family: var(--body); font-size: 1rem; font-weight: 500; line-height: 1.45; }

form.lead { display: grid; gap: 16px; }
.f-row { display: grid; gap: 16px; }
@media (min-width: 620px) { .f-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.dark .field label { color: var(--bronze); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 13px 14px; min-height: 52px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(192, 133, 82, .18); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a8391f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; padding: 0; }
.dark legend { color: var(--bronze); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 15px;
  font-size: .88rem; font-weight: 600; background: #fff; min-height: 44px;
  transition: border-color .16s var(--ease), background-color .16s var(--ease), color .16s var(--ease);
}
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips label:has(input:checked) { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chips label:has(input:focus-visible) { outline: 3px solid var(--copper); outline-offset: 2px; }
.form-msg { font-size: .95rem; line-height: 1.5; }
.form-msg.ok { color: #2c6b3f; font-weight: 600; }
.form-msg.err { color: #a8391f; font-weight: 600; }
.form-msg a, .form-msg button.copy {
  display: inline-flex; align-items: center; min-height: 46px; margin: 10px 10px 0 0; padding: 10px 18px;
  border: 2px solid var(--ink); background: transparent; border-radius: var(--r);
  font-weight: 800; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
}
.form-note { font-size: .84rem; color: var(--muted); }
.dark .form-note { color: var(--muted-dark); }

/* ----------------------------------------------------------- 20 footer -- */
.foot { background: var(--ink); color: var(--paper); padding: 54px 0 34px; }
.foot-top { display: grid; gap: 34px; }
@media (min-width: 860px) { .foot-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; } }
.foot .lock { margin-right: 0; margin-bottom: 16px; }
.foot p { color: var(--muted-dark); font-size: .95rem; max-width: 36ch; }
.foot h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-lift); margin-bottom: 14px; font-weight: 800; }
.foot ul { display: grid; gap: 9px; }
.foot ul a { font-size: .95rem; color: #ded3c2; }
.foot ul a:hover { color: var(--copper-hi); }
.foot-bot {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: .82rem; color: #8d8271;
}
.foot-bot a:hover { color: var(--copper-hi); }

/* ------------------------------------------------- 21 inner page heroes -- */
.phero {
  position: relative; background: var(--ink); color: #fbf6ec; overflow: hidden;
  padding: calc(var(--hdr-h) + env(safe-area-inset-top) + 58px) var(--gut) 52px;
  min-height: 430px; display: flex; align-items: flex-end;
}
@media (min-width: 900px) { .phero { min-height: 520px; padding-bottom: 62px; } }
.phero .bg { position: absolute; inset: 0; }
.phero .bg img { width: 100%; height: 100%; object-fit: cover; }
.phero .bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18, 15, 12, .96) 36%, rgba(18, 15, 12, .6) 76%, rgba(18, 15, 12, .8) 100%),
    linear-gradient(to right, rgba(18, 15, 12, .72), rgba(18, 15, 12, .12) 72%);
}
.phero .wrap { position: relative; width: 100%; padding: 0; max-width: var(--max); }
.phero h1 { font-size: clamp(2.3rem, 10.4vw, 4.4rem); max-width: 17ch; color: #fbf6ec; }
.phero p { margin-top: 14px; max-width: 46ch; color: #e4dacb; font-size: 1.05rem; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #d3c3ab; margin-bottom: 16px; }
.crumb a:hover { color: var(--copper-hi); }
.crumb span { color: rgba(240, 232, 218, .4); }

.prose h3 { margin: 30px 0 12px; }
.prose h3:first-child { margin-top: 0; }
.prose p { max-width: 58ch; color: var(--muted); }
.prose p + p { margin-top: .9em; }
.prose strong { color: var(--text); font-weight: 700; }
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 720px) { .gal { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gal .ph { aspect-ratio: 1 / 1; }
.gal .ph.tall { aspect-ratio: 1 / 1; }
@media (min-width: 720px) { .gal .ph.tall { grid-row: span 2; aspect-ratio: 1 / 2.07; } }

.next-svc { display: grid; gap: 12px; }
@media (min-width: 720px) { .next-svc { grid-template-columns: repeat(3, 1fr); } }
.next-svc a {
  display: block; padding: 18px 20px; border: 1px solid var(--line); background: #fff;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.next-svc a:hover { border-color: var(--copper); transform: translateY(-3px); }
.next-svc b { display: block; font-family: var(--display); font-size: 1.32rem; font-weight: 700; text-transform: uppercase; line-height: 1; }
.next-svc span { display: block; font-size: .88rem; color: var(--muted); margin-top: 6px; }

.nf { background: var(--ink); color: var(--paper); min-height: 78svh; display: flex; align-items: center; text-align: center; }
.nf h1 { font-size: clamp(3.4rem, 18vw, 8rem); }

/* --------------------------------------------- 22 motion + reveals ------ */
.rv { opacity: 1; }
html.io .rv { opacity: 0; transform: translateY(18px); }
html.io .rv.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.io .rv-d1.in { transition-delay: .09s; }
html.io .rv-d2.in { transition-delay: .18s; }
html.io .rv-d3.in { transition-delay: .27s; }

html.motion-off .kb img { animation: none; transform: none; }
html.motion-off .flow { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .kb img, .flow { animation: none !important; }
  html.io .rv { opacity: 1; transform: none; }
  .feat a:hover img { transform: none; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .hdr, .callbar, .sheet, .motion-btn, .cta, form.lead { display: none !important; }
  body { background: #fff; color: #000; }
}
