/* ==========================================================================
   Solid Ground Coatings
   --------------------------------------------------------------------------
   Contrast audit (WCAG 2.1 relative luminance, computed — not estimated):

     white   #FFFFFF on navy     #1B2333  → 15.73:1   AAA   body + headings
     sage    #A8B0A8 on navy     #1B2333  →  7.07:1   AAA   muted text on dark
     gold    #C9A227 on navy     #1B2333  →  6.50:1   AA    kickers, rules, icons
     navy    #1B2333 on gold     #C9A227  →  6.50:1   AA    primary CTA fill
     navy    #1B2333 on concrete #EDEEEF  → 13.45:1   AAA   light-section text
     slate   #5A6270 on concrete #EDEEEF  →  5.29:1   AA    muted text on light
     slate   #5A6270 on white   #FFFFFF   →  6.15:1   AA    hints, privacy note
     brick   #A8371F on white   #FFFFFF   →  6.50:1   AA    form errors
     #6B7691 border on navy               →  3.47:1   AA    ghost button boundary
     #7C848F border on concrete           →  3.25:1   AA    ghost button boundary
     #8A919C border on white              →  3.18:1   AA    input boundary (1.4.11)

   FORBIDDEN, enforced by never declaring them:
     gold #C9A227 on white/concrete → 2.42:1  FAIL  (the brief's hard rule)
     white #FFFFFF on gold #C9A227  → 2.42:1  FAIL  (so CTA text is navy)
     sage #A8B0A8 on white          → 2.22:1  FAIL  (light sections use slate)

   Gold is accent only: CTA fills, hairline rules, badge rings, numerals.
   It is never a large field and never body copy.
   ========================================================================== */

/* ---------- fonts (self-hosted, latin subset, variable) ---------- */
@font-face {
  font-family: 'Bitter';
  src: url('assets/fonts/bitter-var.woff2') format('woff2-variations'),
       url('assets/fonts/bitter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('assets/fonts/source-sans-3-var.woff2') format('woff2-variations'),
       url('assets/fonts/source-sans-3-var.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --navy:        #1B2333;
  --navy-deep:   #151B27;
  --navy-surf:   #222C40;
  --navy-line:   #2E3A52;
  --white:       #FFFFFF;
  --gold:        #C9A227;
  --gold-hi:     #E2BC43;
  --gold-lo:     #A8871F;
  --sage:        #A8B0A8;
  --concrete:    #EDEEEF;
  --concrete-2:  #DFE1E3;
  --slate:       #5A6270;

  --ink:         var(--white);
  --muted:       var(--sage);
  --focus:       var(--gold);

  --head: 'Bitter', Georgia, 'Times New Roman', serif;
  --body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.75rem, 9vw, 7rem);
  --r: 4px;

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

/* ---------- reset ---------- */
*, *::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(--navy);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.1875rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--head); line-height: 1.14; margin: 0; letter-spacing: -0.012em; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- a11y utilities ---------- */
.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;
}
.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 200; background: var(--gold); color: var(--navy);
  font-weight: 700; padding: .8rem 1.4rem; border-radius: 0 0 var(--r) var(--r);
  text-decoration: none; transition: transform .16s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
/* Narrow measure without breaking the shared left edge every other section sits on. */
.wrap.measure > * { max-width: 820px; }
.sec { padding-block: var(--sec-y); position: relative; }
.sec-tight { padding-top: 0; }

.sec-navy { background: var(--navy); color: var(--white); }
.sec-light {
  background: var(--concrete);
  color: var(--navy);
  --ink: var(--navy);
  --muted: var(--slate);
  --focus: var(--navy);   /* gold on concrete is 2.4:1 — unusable as a focus ring */
}

/* ---------- type ---------- */
h1 { font-size: clamp(2.25rem, 1.35rem + 4.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.08rem + 0.55vw, 1.45rem); font-weight: 600; }

.kicker {
  font-family: var(--body);
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 .85rem; display: flex; align-items: center; gap: .7rem;
}
.kicker::before {
  content: ""; width: 30px; height: 3px; background: var(--gold); flex: none;
}
/* Gold text on concrete is 2.42:1. On light sections the kicker goes navy and the
   gold survives only as the divider rule, which is exactly what it's for. */
.sec-light .kicker { color: var(--navy); }
.sec-light .kicker::before { background: var(--gold); }

.sec-lede {
  font-size: clamp(1.09rem, 1rem + 0.42vw, 1.3rem);
  color: var(--muted); max-width: 62ch; margin-top: 1.1rem;
}
.eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin: 0 0 1.1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--body); font-weight: 700; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--r); cursor: pointer;
  padding: .85rem 1.4rem; line-height: 1.2;
  transition: background-color .16s var(--ease), border-color .16s var(--ease),
              color .16s var(--ease), transform .1s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); }
.btn-gold:active { background: var(--gold-lo); border-color: var(--gold-lo); transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--white); border-color: #6B7691; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.sec-light .btn-ghost { color: var(--navy); border-color: #7C848F; }
.sec-light .btn-ghost:hover { border-color: var(--navy); background: rgba(27,35,51,.05); }

.btn-xl {
  font-size: 1.125rem; padding: 1.05rem 1.7rem; min-height: 60px; width: 100%;
}
@media (min-width: 560px) { .btn-xl { width: auto; } }

.btn-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn-stack small { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .78; }
.btn-stack strong { font-size: 1.32rem; font-weight: 700; letter-spacing: .01em; }

.ico-phone {
  width: 20px; height: 20px; flex: none; background: currentColor;
  -webkit-mask: var(--phone-svg) center / contain no-repeat;
  mask: var(--phone-svg) center / contain no-repeat;
}
:root {
  --phone-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1l-2.3 2.2z'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-head {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--navy-line);
  position: relative; z-index: 60;
}
.head-inner { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { flex: none; display: flex; align-items: center; gap: .7rem; text-decoration: none; line-height: 1; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-name { display: none; }
@media (min-width: 560px) {
  .brand-name {
    display: block; font-family: var(--head); font-weight: 700; font-size: 1.1rem;
    color: var(--white); letter-spacing: .005em; white-space: nowrap;
    border-bottom: 2px solid var(--gold); padding-bottom: 4px;
  }
}
.head-nav { display: none; }
.btn-head { margin-left: auto; padding: .7rem 1.05rem; font-size: .95rem; }
.btn-head-txt { display: inline; }   /* the number stays visible at every width */

@media (min-width: 900px) {
  .site-head { position: sticky; top: 0; }
  .head-inner { min-height: 92px; gap: 2rem; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-name { font-size: 1.26rem; }
  .head-nav { display: block; margin-left: auto; }
  .head-nav ul { display: flex; gap: 1.75rem; }
  .head-nav a {
    text-decoration: none; font-weight: 600; font-size: 1rem; color: var(--sage);
    padding: .4rem 0; position: relative; transition: color .16s var(--ease);
  }
  .head-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .head-nav a:hover { color: var(--white); }
  .head-nav a:hover::after { transform: scaleX(1); }
  .btn-head { margin-left: 0; }
}

/* ---------- hero ---------- */
.hero {
  padding-block: clamp(2.75rem, 7vw, 5.5rem) clamp(3.25rem, 8vw, 6rem);
  background:
    radial-gradient(120% 90% at 12% 0%, #24304A 0%, rgba(36,48,74,0) 62%),
    var(--navy);
}
.hero-inner { display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; }
}
.hero h1 { margin-bottom: 1.15rem; text-wrap: balance; }
.hero .lede { font-size: clamp(1.09rem, 1rem + 0.45vw, 1.3rem); color: var(--sage); max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }

.badges { display: flex; flex-wrap: wrap; gap: .55rem 1.5rem; margin-top: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sage);
}
.badge-ring {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 2px var(--navy), inset 0 0 0 3px rgba(201,162,39,.45);
}

/* ---------- hero motion panel: pour → flake ---------- */
.pour {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 8px; overflow: hidden; background: var(--navy);
  box-shadow: 0 22px 50px -28px rgba(0,0,0,.85);
}
@media (min-width: 900px) { .pour { aspect-ratio: 1 / 1; max-height: 540px; } }

/* Static fallback surface: visible until the canvas paints, permanent without JS. */
.pour::before {
  content: ""; position: absolute; inset: 0; opacity: 1;
  transition: opacity .22s linear;
  background-image:
    radial-gradient(rgba(242,244,247,.16) 1px, transparent 1.2px),
    radial-gradient(rgba(168,176,168,.13) 1px, transparent 1.2px),
    linear-gradient(148deg, #3B3F86 0%, #6E7CD0 24%, #3A4270 46%, #232B45 68%, #1B2333 100%);
  background-size: 19px 19px, 27px 27px, 100% 100%;
  background-position: 0 0, 9px 13px, 0 0;
}
.pour[data-ready="1"]::before { opacity: 0; }
.pour canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }

.pour-rule {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
}
.pour[data-ready="1"] .pour-rule { animation: pourRule .52s var(--ease) 1.35s both; }
@keyframes pourRule { to { transform: scaleX(1); } }
.no-js .pour-rule { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .pour-rule { transform: scaleX(1); }
  .pour[data-ready="1"] .pour-rule { animation: none; }
}

/* ---------- founder note ---------- */
.founder-note {
  margin-top: 1.9rem; padding-left: clamp(1.1rem, 3vw, 1.9rem);
  border-left: 3px solid var(--gold);
  font-size: clamp(1.06rem, 1rem + 0.35vw, 1.19rem);
}
.founder-note p { color: #D5D9DE; }
.signoff { font-family: var(--head); font-weight: 600; color: var(--white); margin-top: 1.4rem; }

/* ---------- pillars ---------- */
.pillars { display: grid; gap: clamp(1.6rem, 3.5vw, 2.4rem); margin-top: clamp(2.4rem, 5vw, 3.5rem); }
@media (min-width: 760px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar { border-top: 3px solid var(--gold); padding-top: 1.15rem; }
.pillar h3 { margin-bottom: .6rem; }
.pillar p { color: var(--slate); }
.pillar em { font-style: italic; color: var(--navy); font-weight: 600; }

/* ---------- comparison table ---------- */
.cmp-h { margin-top: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.15rem; font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem); }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--concrete-2); border-radius: var(--r); background: #fff; }
.cmp { min-width: 640px; font-size: 1rem; }
.cmp th, .cmp td { text-align: left; padding: .95rem 1.15rem; vertical-align: top; border-bottom: 1px solid var(--concrete-2); }
.cmp thead th { font-family: var(--head); font-size: .9rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: var(--navy); color: var(--white); border-bottom: 0; }
.cmp thead th.ours { background: var(--navy-deep); box-shadow: inset 0 -3px 0 var(--gold); }
.cmp tbody th { font-weight: 700; color: var(--navy); width: 22%; }
.cmp tbody td { color: var(--slate); }
.cmp td.ours { color: var(--navy); font-weight: 600; background: rgba(201,162,39,.07); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp-final th, .cmp-final td { border-top: 2px solid var(--navy); font-size: 1.06rem; }
.cmp-final td.ours { background: var(--navy); color: var(--white); font-family: var(--head); font-weight: 700; }
.cmp-close { margin-top: 1.6rem; color: var(--slate); max-width: 62ch; font-size: 1.09rem; }

/* Below 760px the table would need sideways scrolling, and the "how we do it"
   column — the whole point of the section — is the part that scrolls out of sight.
   Each row becomes a labelled card instead. ARIA roles in the markup keep the
   table semantics that display:block would otherwise throw away. */
@media (max-width: 759px) {
  .cmp-scroll { overflow: visible; border: 0; background: transparent; border-radius: 0; }
  .cmp { min-width: 0; }
  .cmp thead { display: none; }
  .cmp, .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; width: auto; }
  .cmp tr {
    background: #fff; border: 1px solid var(--concrete-2); border-radius: var(--r);
    margin-bottom: .8rem; padding: 1rem 1.1rem;
  }
  .cmp tbody th {
    width: auto; padding: 0 0 .7rem; border: 0;
    font-family: var(--head); font-size: 1.12rem;
  }
  .cmp tbody td { padding: .55rem .8rem; border: 0; border-radius: 3px; }
  .cmp tbody td::before {
    content: attr(data-label); display: block;
    font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
    color: var(--slate); margin-bottom: .2rem;
  }
  .cmp tbody td:not(.ours) { padding-left: 0; padding-right: 0; }
  .cmp td.ours { background: rgba(201,162,39,.12); margin-top: .5rem; }
  .cmp td.ours::before { color: #6B5A17; }
  .cmp-final td.ours { background: var(--navy); color: var(--white); }
  .cmp-final td.ours::before { color: var(--gold); }
  .cmp-final th, .cmp-final td { border-top: 0; }
  .cmp-final { border-color: var(--navy); border-width: 2px; }
}

/* ---------- service cards ---------- */
.cards { display: grid; gap: 1.25rem; margin-top: clamp(2.2rem, 5vw, 3.2rem); }
@media (min-width: 780px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--navy-surf); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: clamp(1.35rem, 3vw, 1.85rem);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .65rem; }
.card > p { color: var(--sage); font-size: 1.03rem; }
.tag {
  display: inline-block; align-self: flex-start; margin: 0 0 .9rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 2px;
  color: var(--sage); border: 1px solid var(--navy-line);
}
.tag-core { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.ticks { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--navy-line); display: grid; gap: .5rem; }
.ticks li { position: relative; padding-left: 1.6rem; font-size: .97rem; color: var(--sage); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg);
}

/* ---------- process steps ---------- */
.steps { margin-top: clamp(2.2rem, 5vw, 3.2rem); display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.15rem; padding-bottom: 1.9rem; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 23px; top: 3.1rem; bottom: .35rem;
  width: 2px; background: linear-gradient(var(--gold), rgba(201,162,39,.12));
}
.step:last-child::before { display: none; }
.step-n {
  font-family: var(--head); font-size: 1.05rem; font-weight: 700;
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold); border: 2px solid var(--gold); background: var(--navy);
  position: relative; z-index: 1;
}
.step-body h3 { margin: .6rem 0 .5rem; }
.step-body p { color: var(--sage); }
/* Five columns across a 1160px wrap leaves ~200px per step — about 26 characters a
   line. The vertical timeline stays readable at every width, so it stays. */
@media (min-width: 700px) {
  .step { gap: 1.6rem; padding-bottom: 2.4rem; }
  .step-body { max-width: 68ch; }
  .step-body h3 { margin-top: .7rem; }
}

/* ---------- service area ---------- */
.areas { display: grid; gap: 1.25rem; margin-top: clamp(2.2rem, 5vw, 3rem); }
@media (min-width: 700px) { .areas { grid-template-columns: repeat(3, 1fr); } }
.area { background: var(--navy-surf); border: 1px solid var(--navy-line); border-left: 3px solid var(--gold); border-radius: var(--r); padding: 1.35rem 1.5rem; }
.area h3 { margin-bottom: .35rem; }
.area p { color: var(--sage); font-size: .99rem; }

/* ---------- warranty ---------- */
.warranty {
  display: grid; gap: 1.4rem; align-items: start;
  background: var(--navy-surf); border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: inset 0 0 0 1px rgba(201,162,39,.16);
}
@media (min-width: 620px) { .warranty { grid-template-columns: auto 1fr; gap: 1.9rem; } }
.warranty h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.9rem); margin-bottom: .65rem; }
.warranty p { color: var(--sage); }
.warranty strong { color: var(--gold); font-family: var(--head); letter-spacing: .02em; }
.seal {
  width: 74px; height: 74px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--gold-hi), var(--gold-lo));
  box-shadow: 0 0 0 5px var(--navy-surf), 0 0 0 7px rgba(201,162,39,.35);
}
.seal-inner {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); box-shadow: inset 0 0 0 2px rgba(201,162,39,.55);
  position: relative;
}
.seal-inner::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 15px; height: 15px; background: var(--gold); transform: rotate(45deg);
}

/* ---------- placeholder notice ---------- */
.notice {
  margin-top: 1.5rem; padding: 1.15rem 1.35rem;
  background: rgba(201,162,39,.08);
  border: 1px dashed rgba(201,162,39,.5);
  border-radius: var(--r); color: var(--sage); font-size: 1.02rem; max-width: 78ch;
}
.notice strong { color: var(--white); }

/* ---------- gallery ---------- */
.grid-gallery { display: grid; gap: 1rem; margin-top: clamp(1.8rem, 4vw, 2.5rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 780px) { .grid-gallery { grid-template-columns: repeat(3, 1fr); } }
.tile { margin: 0; }
.tile-art {
  display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r);
  border: 1px dashed var(--navy-line);
  background-image:
    radial-gradient(rgba(242,244,247,.13) 1px, transparent 1.3px),
    radial-gradient(rgba(168,176,168,.10) 1px, transparent 1.3px),
    linear-gradient(150deg, #2A3550 0%, #222C40 55%, #1D2536 100%);
  background-size: 17px 17px, 25px 25px, 100% 100%;
  background-position: 0 0, 8px 11px, 0 0;
}
.tile figcaption { margin-top: .65rem; font-size: .9rem; color: var(--sage); line-height: 1.4; }
.tile-tag {
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}

/* ---------- reviews ---------- */
.grid-reviews { display: grid; gap: 1rem; margin-top: clamp(1.8rem, 4vw, 2.5rem); }
@media (min-width: 700px) { .grid-reviews { grid-template-columns: repeat(3, 1fr); } }
.slot {
  border: 1px dashed var(--navy-line); border-radius: var(--r);
  padding: 1.6rem 1.35rem; text-align: center; background: rgba(255,255,255,.015);
}
.slot-mark {
  display: block; width: 26px; height: 26px; margin: 0 auto .9rem;
  border: 2px solid var(--gold); transform: rotate(45deg); opacity: .55;
}
.slot p { font-weight: 700; color: var(--white); margin-bottom: .3rem; font-size: 1rem; }
.slot-note { font-size: .86rem; color: var(--sage); }

/* ---------- quote form ---------- */
.quote-wrap { display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .quote-wrap { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; } }
.side-call { margin-top: 1.8rem; }
.side-note { margin-top: 1.4rem; color: var(--slate); font-size: 1rem; line-height: 1.9; }
.side-note a { color: var(--navy); font-weight: 600; }

.quote-form {
  background: #fff; border: 1px solid var(--concrete-2); border-radius: var(--r);
  padding: clamp(1.35rem, 3.5vw, 2.1rem);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .4rem;
}
.req { color: #A8371F; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1.0625rem; color: var(--navy);
  background: #FBFBFC; border: 1.5px solid #8A919C; border-radius: var(--r);
  padding: .78rem .9rem; min-height: 52px;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--slate); }
.field input:focus, .field textarea:focus { background: #fff; border-color: var(--navy); }
.hint { font-size: .875rem; color: var(--slate); margin: .4rem 0 0; }
.err { font-size: .875rem; color: #A8371F; font-weight: 600; margin: .4rem 0 0; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #A8371F; background: #FFF7F5; }
.field.invalid .err { display: block; }

.btn-submit { width: 100%; font-size: 1.09rem; padding: 1rem 1.6rem; min-height: 58px; margin-top: .35rem; }
.form-status { margin: .9rem 0 0; font-weight: 600; font-size: .97rem; color: #A8371F; }
.privacy { margin: 1.1rem 0 0; font-size: .875rem; color: var(--slate); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.site-foot { background: var(--navy-deep); border-top: 3px solid var(--gold); padding-block: clamp(2.75rem, 6vw, 4rem) clamp(2rem, 4vw, 2.75rem); }
.foot-grid { display: grid; gap: 2.1rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }
.foot-brand img { width: 190px; }
.foot-tag { margin-top: 1rem; color: var(--sage); font-size: .97rem; max-width: 30ch; }
.foot-col h3 {
  font-family: var(--body); font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.foot-col ul { display: grid; gap: .55rem; }
.foot-col li, .foot-col a { color: var(--sage); font-size: 1rem; }
.foot-col a { text-decoration: none; border-bottom: 1px solid transparent; transition: color .16s var(--ease), border-color .16s var(--ease); }
.foot-col a:hover { color: var(--white); border-bottom-color: var(--gold); }
.foot-phone { font-family: var(--head); font-size: 1.35rem !important; font-weight: 700; color: var(--white) !important; }
.soon { opacity: .62; font-style: italic; }
.foot-legal {
  margin-top: clamp(2.2rem, 5vw, 3rem); padding-top: 1.4rem;
  border-top: 1px solid var(--navy-line); color: var(--sage); font-size: .875rem;
}

/* ---------- sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 899px) {
  /* must clear the fixed call bar (54px target + 2 × .55rem padding + border) */
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  .callbar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--navy-deep); border-top: 1px solid var(--navy-line);
    padding: .55rem var(--gut) calc(.55rem + env(safe-area-inset-bottom, 0px));
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    background: var(--gold); color: var(--navy); text-decoration: none;
    font-weight: 700; font-size: 1.09rem; min-height: 54px; border-radius: var(--r);
  }
  .callbar a:active { background: var(--gold-lo); }
}

/* ---------- scroll reveal (opt-in, one-shot, JS + motion allowed only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-rise] {
    opacity: 0; transform: translate3d(0, 8px, 0);
    transition: opacity .38s var(--ease), transform .38s var(--ease);
  }
  .js [data-rise].in { opacity: 1; transform: none; }
}

@media print {
  .callbar, .pour, .skip { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}
