/* =========================================================
   Ridgeline Roofing Co. — SlateMark Process · Roofing
   Type: Big Shoulders Display (display/labels) + Public Sans (body)
   Ground: paper · Ink: storm slate · Action: spruce · Hand: chalk
   ========================================================= */

@font-face {
  font-family: 'Big Shoulders';
  src: url('assets/fonts/BigShouldersDisplay-latin.woff2') format('woff2');
  font-weight: 600 800;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('assets/fonts/PublicSans-var.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('assets/fonts/PublicSans-var-italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #F3F2ED;
  --paper-2: #E9E7E0;
  --white: #FFFFFF;
  --line: #D3D0C6;
  --line-strong: #B9B5A9;
  --text: #17202A;
  --muted: #5A6470;
  --ink: #121A21;
  --ink-2: #1B2530;
  --ink-line: rgba(255,255,255,0.16);
  --ink-muted: rgba(255,255,255,0.72);
  --spruce: #1F5A3F;
  --spruce-dark: #164632;
  --chalk: #F4CF5B;
  --chalk-white: #F6F3EA;
  --display: 'Big Shoulders', 'Arial Narrow', Impact, sans-serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --wrap: 1240px;
  --nav-h: 76px;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 400 17px/1.55 var(--body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
b { font-weight: 600; }
:focus-visible { outline: 2px solid var(--spruce); outline-offset: 3px; }
.sect--ink :focus-visible, .hero :focus-visible, .nav:not(.is-scrolled) :focus-visible { outline-color: var(--chalk); }

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  padding: 10px 14px; background: var(--ink); color: #fff;
  font: 600 14px var(--body);
}
.skip:focus { top: 16px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

#crew, #hail, #day, #services, #areas, #reviews, #warranty, #contact { scroll-margin-top: 72px; }

/* ---------- Type helpers ---------- */

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font: 600 13.5px/1 var(--display);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: currentColor; opacity: .7; }
.kicker.on-dark { color: var(--chalk); }

.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; font-weight: 500; color: var(--text); }
.sect--ink .lede { color: #fff; }
.fine { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.demo-tag {
  display: inline-block; vertical-align: middle;
  font: 600 10px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; font-style: normal;
  padding: 4px 6px 3px; border: 1px solid currentColor; border-radius: 2px;
  opacity: .85; margin-left: 6px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px 12px;
  border: 1.5px solid transparent; border-radius: 2px;
  font: 700 17px/1 var(--display); letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.btn-lg { padding: 17px 28px 16px; font-size: 19px; }
.btn-solid { background: var(--spruce); color: #fff; border-color: var(--spruce); }
.btn-solid:hover { background: var(--spruce-dark); border-color: var(--spruce-dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--text); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn:active { transform: translateY(1px); }

/* ---------- Nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,16,22,.55), rgba(10,16,22,0));
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  color: var(--text);
  background: rgba(243,242,237,.96);
  box-shadow: 0 1px 0 var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 24px; flex-shrink: 0; }
.brand-mark path { fill: none; stroke: var(--chalk); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.nav.is-scrolled .brand-mark path { stroke: var(--spruce); }
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
  font: 800 22px/1 var(--display); letter-spacing: .06em; text-transform: uppercase;
}
.brand-sub { font-size: 11px; font-weight: 600; letter-spacing: .28em; margin-top: 4px; opacity: .8; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  font: 600 15px/1 var(--display); letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 0; opacity: .9;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: currentColor; transition: right .25s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { font: 700 17px/1 var(--display); letter-spacing: .06em; white-space: nowrap; }
.nav-phone:hover { color: var(--chalk); }
.nav.is-scrolled .nav-phone:hover { color: var(--spruce); }

.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px; margin-right: -8px;
  background: none; border: 0; cursor: pointer; color: inherit;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.menu-open .nav-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .nav-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; letter-spacing: .08em; }
  .nav-phone { display: none; }
}
@media (max-width: 900px) {
  .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.menu-open { color: var(--text); background: var(--paper); box-shadow: 0 1px 0 var(--line); }
  .nav.menu-open .brand-mark path { stroke: var(--spruce); }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
    padding: 24px clamp(20px, 4vw, 48px) 40px;
    background: var(--paper); color: var(--text);
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s var(--ease), visibility 0s linear .3s;
    overflow-y: auto;
  }
  .menu-open .nav-links { transform: none; visibility: visible; transition-delay: 0s, 0s; }
  .nav-links a { font-size: 34px; letter-spacing: .04em; padding: 10px 0; opacity: 1; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links a::after { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-chalk { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.js .hero-media { animation: heroSettle 22s var(--ease) both; }
@keyframes heroSettle { from { transform: scale(1.07); } to { transform: scale(1); } }

.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,16,22,.9) 0%, rgba(10,16,22,.68) 34%, rgba(10,16,22,.18) 64%, rgba(10,16,22,0) 100%),
    linear-gradient(0deg, rgba(10,16,22,.92) 0%, rgba(10,16,22,.4) 32%, rgba(10,16,22,0) 60%);
}

.hero-in { position: relative; width: 100%; padding-top: calc(var(--nav-h) + 56px); padding-bottom: clamp(36px, 5vh, 64px); }
.hero-h {
  font-size: clamp(64px, 9.6vw, 138px);
  font-weight: 800; line-height: .88; letter-spacing: .005em; text-transform: uppercase;
  max-width: 10ch; margin: 0 0 26px;
}
.chalk-text { color: var(--chalk); }
.hero-p { max-width: 540px; font-size: clamp(17px, 1.35vw, 19.5px); line-height: 1.5; color: rgba(255,255,255,.9); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-proof {
  position: relative; border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(10,16,22,.78);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid > div { padding: 22px 24px 22px 0; border-left: 1px solid rgba(255,255,255,.14); padding-left: 22px; }
.proof-grid > div:first-child { border-left: 0; padding-left: 0; }
.proof-grid strong { display: block; font: 700 24px/1 var(--display); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; }
.proof-grid span { display: block; font-size: 13px; line-height: 1.4; color: var(--ink-muted); }
.photo-note { position: absolute; right: 12px; bottom: 100px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62); writing-mode: vertical-rl; transform: rotate(180deg); }

/* Chalk drawings — base state is fully drawn; JS only adds the draw-on */
.ck { fill: none; stroke: var(--chalk-white); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: url(#chalkF); opacity: .95; }
.ck-y { stroke: var(--chalk); stroke-width: 4.5; }
.ck-t { font: 700 28px var(--display); letter-spacing: .08em; text-transform: uppercase; fill: var(--chalk); filter: url(#chalkF); }
.ck-n { font-size: 26px; fill: var(--chalk-white); }
.ck-big { font-size: 64px; }
.hero-chalk .ck { stroke: var(--chalk); stroke-width: 3.5; }
.hero-chalk .ck-t { font-size: 30px; }

.js .hero-chalk .ck, .js .chalk-overlay .ck { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .hero-chalk .ck-t, .js .chalk-overlay .ck-t { opacity: 0; }
.js .hero-chalk.in .ck, .js .in .chalk-overlay .ck { animation: ckDraw .9s cubic-bezier(.3, .6, .3, 1) forwards; animation-delay: calc(var(--i, 0) * .14s); }
.js .hero-chalk.in .ck-t, .js .in .chalk-overlay .ck-t { animation: ckFade .45s var(--ease) forwards; animation-delay: calc(var(--i, 0) * .14s + .35s); }
@keyframes ckDraw { to { stroke-dashoffset: 0; } }
@keyframes ckFade { to { opacity: 1; } }

@media (max-width: 900px) {
  .hero-chalk { display: none; }
  .hero-photo { object-position: 58% 40%; }
  .hero-scrim { background: linear-gradient(0deg, rgba(10,16,22,.96) 0%, rgba(10,16,22,.78) 38%, rgba(10,16,22,.3) 66%, rgba(10,16,22,.12) 100%); }
  .hero-h { font-size: clamp(60px, 17vw, 96px); max-width: none; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid > div { padding: 16px 16px 16px 0; }
  .proof-grid > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .proof-grid > div:nth-child(even) { padding-left: 16px; }
  .photo-note { display: none; }
}
@media (max-width: 480px) {
  .kicker { font-size: 12px; letter-spacing: .1em; }
  .kicker::before { display: none; }
  .proof-grid strong { font-size: 20px; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Sections ---------- */

.sect { padding: clamp(72px, 9vw, 124px) 0; }
.sect--ink { background: var(--ink); color: #fff; }
.sect--ink .fine, .sect--ink .sect-sub, .sect--ink p { color: var(--ink-muted); }
.sect--ink h2, .sect--ink h3, .sect--ink .lede { color: #fff; }
.sect--paper2 { background: var(--paper-2); }

.sect-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 880px; }
.sect-num {
  display: flex; align-items: center; gap: 16px;
  font: 700 15px/1 var(--display); letter-spacing: .2em; color: var(--muted);
  margin-bottom: 22px;
}
.sect-num::after { content: ""; flex: 0 0 64px; height: 1px; background: var(--line-strong); }
.sect--ink .sect-num { color: var(--chalk); }
.sect--ink .sect-num::after { background: rgba(255,255,255,.28); }
.sect h2 { font-size: clamp(44px, 5.6vw, 82px); line-height: .94; letter-spacing: .005em; max-width: 14ch; }
.sect-sub { margin-top: 20px; max-width: 620px; font-size: 16.5px; color: var(--muted); }

/* Photographs — flat prints, no glass */
.ph { position: relative; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph figcaption { padding: 10px 0 0; font-size: 12.5px; line-height: 1.45; letter-spacing: .02em; color: var(--muted); }
.ph figcaption em { font-style: normal; opacity: .7; }
.sect--ink .ph figcaption { color: var(--ink-muted); }

/* ---------- 01 · Crew ---------- */

.crew-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.crew-copy > * + * { margin-top: 28px; }

.ticket { position: relative; padding: 22px 24px 24px 28px; border: 1px solid var(--line); border-left-width: 4px; background: var(--paper-2); }
.ticket--ours { background: var(--white); border-left-color: var(--spruce); }
.ticket-label {
  display: block; font: 700 13px/1 var(--display); letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.ticket--ours .ticket-label { color: var(--spruce); }
.ticket ol { counter-reset: t; display: grid; gap: 12px; }
.ticket li { position: relative; padding-left: 40px; font-size: 15.5px; line-height: 1.45; counter-increment: t; }
.ticket li::before {
  content: counter(t, decimal-leading-zero); position: absolute; left: 0; top: 1px;
  font: 700 17px/1.4 var(--display); letter-spacing: .04em; color: var(--muted);
}
.ticket--ours li::before { color: var(--spruce); }
.ticket--theirs li b { color: var(--muted); }

.crew-media { position: relative; padding-bottom: 12%; }
.ph--main { aspect-ratio: 4 / 5; }
.ph--main img { aspect-ratio: 4 / 5; }
.ph--main figcaption { text-align: right; padding-left: 48%; }
.ph--inset {
  position: absolute; left: -6%; bottom: 0; width: 46%; aspect-ratio: 4 / 5;
  padding: 8px 8px 10px; background: var(--white); border: 1px solid var(--line);
  transform: rotate(-2.5deg);
  box-shadow: 0 18px 30px -22px rgba(18,26,33,.5);
}
.ph--inset img { aspect-ratio: 4 / 5; }

.people { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: clamp(48px, 6vw, 88px); padding-top: 32px; border-top: 1px solid var(--line-strong); }
.people li { display: flex; gap: 18px; align-items: flex-start; }
.people img { width: 84px; height: 104px; object-fit: cover; object-position: 50% 20%; flex-shrink: 0; border: 1px solid var(--line); }
.people b { display: block; font: 700 24px/1 var(--display); letter-spacing: .02em; margin-bottom: 8px; }
.people span { display: block; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.people .demo-tag { margin: 10px 0 0; }
.people-note { padding-left: 0; }

@media (max-width: 900px) {
  .crew-grid { grid-template-columns: 1fr; }
  .crew-media { max-width: 520px; padding-bottom: 14%; }
  .ph--inset { left: 0; }
  .people { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- 02 · Hail / test square ---------- */

.hail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.square { position: relative; }
.square img { aspect-ratio: 3 / 2; width: 100%; object-fit: cover; }
.chalk-overlay { position: absolute; left: 0; top: 0; width: 100%; aspect-ratio: 3 / 2; pointer-events: none; }
.hail-copy > * + * { margin-top: 22px; }

.facts {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 32px;
  margin-top: clamp(56px, 7vw, 96px); padding-top: 44px; border-top: 1px solid var(--ink-line);
}
.fact-num { display: block; font: 700 15px/1 var(--display); letter-spacing: .2em; color: var(--chalk); margin-bottom: 18px; }
.facts h3 { font-size: 26px; line-height: 1; letter-spacing: .01em; margin-bottom: 14px; }
.facts p { font-size: 15px; line-height: 1.55; }

@media (max-width: 980px) {
  .hail-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) { .facts { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- 03 · The install day ---------- */

.day-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.rail { position: relative; padding-left: 128px; }
.rail-line { position: absolute; left: 104px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.rail-fill { display: block; width: 100%; height: 100%; background: var(--spruce); transform-origin: top; transform: scaleY(1); }
.js .rail-fill { transform: scaleY(0); }
.step { position: relative; padding-bottom: 44px; }
.step:last-child { padding-bottom: 0; }
.step time {
  position: absolute; left: -128px; width: 90px; top: 2px; text-align: right;
  font: 700 clamp(22px, 2vw, 28px)/1 var(--display); letter-spacing: .02em; color: var(--muted);
  transition: color .3s var(--ease);
}
.step::before {
  content: ""; position: absolute; left: -31px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--spruce); border: 2px solid var(--spruce);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.js .step::before { background: var(--paper); border-color: var(--line-strong); }
.js .step.done::before { background: var(--spruce); border-color: var(--spruce); }
.js .step time { color: var(--muted); }
.js .step.done time { color: var(--text); }
.step h3 { font-size: 26px; line-height: 1; letter-spacing: .01em; margin-bottom: 10px; }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--muted); max-width: 52ch; }

.day-media { position: sticky; top: 100px; }
.day-media .ph img { aspect-ratio: 4 / 5; }

@media (max-width: 900px) {
  .day-grid { grid-template-columns: 1fr; }
  .day-media { position: static; max-width: 520px; }
  .rail { padding-left: 84px; }
  .rail-line { left: 62px; }
  .step time { left: -84px; width: 50px; font-size: 19px; }
  .step::before { left: -29px; top: 4px; width: 14px; height: 14px; }
}

/* ---------- 04 · Services ---------- */

.svc-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.svc-list { border-bottom: 1px solid var(--line-strong); }
.svc a {
  display: grid; grid-template-columns: 52px minmax(0, 1fr) 176px; gap: 20px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line-strong);
  transition: padding-left .25s var(--ease);
}
.svc-n { font: 700 20px/1.35 var(--display); letter-spacing: .06em; color: var(--muted); transition: color .2s var(--ease); }
.svc-body b { display: block; font: 700 30px/1 var(--display); letter-spacing: .01em; margin-bottom: 8px; }
.svc-body > span { display: block; font-size: 15px; line-height: 1.5; color: var(--muted); }
.svc-meta { font: 600 12px/1.5 var(--body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-align: right; padding-top: 6px; }
.svc a:hover .svc-n, .svc.is-active .svc-n, .svc a:focus-visible .svc-n { color: var(--spruce); }
.svc a:hover .svc-body b, .svc.is-active .svc-body b { color: var(--spruce); }
.svc-stage { position: sticky; top: 100px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink); }
.svc-stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s var(--ease), transform .8s var(--ease); }
.svc-stage img.is-fading { opacity: 0; }

@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-stage { display: none; }
  .svc a { grid-template-columns: 44px minmax(0, 1fr); }
  .svc-meta { grid-column: 2; text-align: left; padding-top: 0; }
}

/* ---------- 05 · Your street ---------- */

.block-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.aerial img { aspect-ratio: 4 / 3; }
.aerial .chalk-overlay { aspect-ratio: 1000 / 697; }
.block-copy > * + * { margin-top: 22px; }
.block-copy h2 { margin-top: 0; }
.areas-h { font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 36px; }
.areas { display: flex; flex-wrap: wrap; gap: 6px 0; margin-top: 12px; }
.areas li { font: 700 22px/1.3 var(--display); letter-spacing: .03em; text-transform: uppercase; }
.areas li:not(:last-child)::after { content: "·"; margin: 0 12px; color: var(--line-strong); }

@media (max-width: 900px) { .block-grid { grid-template-columns: 1fr; } }

/* ---------- 06 · Quotes ---------- */

.quotes { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.quote-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.quote-row blockquote { margin: 0; padding-top: 22px; border-top: 2px solid var(--text); }
.quote-row p { font: italic 500 19px/1.42 var(--body); }
.quote-row p::before { content: "\201C"; font-family: var(--display); font-style: normal; font-weight: 800; font-size: 44px; line-height: 0; vertical-align: -14px; margin-right: 6px; color: var(--spruce); }
.quote-row footer { margin-top: 16px; font: 600 12px/1.5 var(--body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 800px) { .quote-row { grid-template-columns: 1fr; } }

/* ---------- 07 · Warranty ---------- */

.warranty-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.warranty-copy > * + * { margin-top: 22px; }
.warranty-copy h2 { margin-top: 0; }
.wty { margin: 40px 0 0; border-top: 1px solid var(--ink-line); }
.wty > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--ink-line); }
.wty dt { font: 700 22px/1.1 var(--display); letter-spacing: .04em; text-transform: uppercase; color: var(--chalk); }
.wty dd { margin: 0; font-size: 15.5px; line-height: 1.55; }
.wty dd b { color: #fff; }
.warranty-ph img { aspect-ratio: 4 / 5; }

@media (max-width: 900px) {
  .warranty-grid { grid-template-columns: 1fr; }
  .warranty-ph { max-width: 420px; }
}
@media (max-width: 560px) { .wty > div { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- 08 · Contact ---------- */

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.contact-copy > * + * { margin-top: 22px; }
.contact-copy h2 { margin-top: 0; }
.big-phone { display: inline-block; font: 800 clamp(42px, 5vw, 66px)/1 var(--display); letter-spacing: .02em; color: var(--spruce); margin-top: 30px; }
.big-phone:hover { color: var(--spruce-dark); }
.hours { margin: 30px 0 0; border-top: 1px solid var(--line-strong); }
.hours > div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.hours dt { font: 700 15px/1.5 var(--display); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hours dd { margin: 0; font-size: 15.5px; line-height: 1.5; }

.est { display: grid; gap: 20px; padding: clamp(24px, 3vw, 36px); background: var(--white); border: 1px solid var(--line); }
.est label { display: grid; gap: 8px; font: 700 13.5px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; color: var(--text); }
.est input, .est select, .est textarea {
  width: 100%; margin: 0; padding: 13px 14px;
  font: 400 16px/1.4 var(--body); color: var(--text);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 2px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.est select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317202A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.est textarea { resize: vertical; min-height: 96px; }
.est input:focus, .est select:focus, .est textarea:focus { outline: none; border-color: var(--spruce); box-shadow: 0 0 0 3px rgba(31,90,63,.18); }
.row2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.claim { margin: 0; padding: 0; border: 0; min-width: 0; }
.claim legend { padding: 0; margin-bottom: 8px; font: 700 13.5px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; }
.claim label { display: inline-flex; align-items: center; gap: 8px; margin: 12px 18px 0 0; font: 400 15.5px/1 var(--body); letter-spacing: 0; text-transform: none; }
.claim input { width: 18px; height: 18px; margin: 0; accent-color: var(--spruce); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.est .btn { width: 100%; margin-top: 4px; }
.est .fine { text-align: center; font-size: 13px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

.foot { background: var(--paper-2); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.foot .brand-mark path { stroke: var(--spruce); }
.foot-brand p { margin-top: 18px; max-width: 300px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.foot h4 { font: 700 13px/1 var(--display); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.foot-grid a:not(.brand), .foot-grid p { display: block; font-size: 15px; line-height: 1.5; color: var(--text); margin-bottom: 10px; }
.foot-grid a:not(.brand):hover { color: var(--spruce); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-top: 22px; font-size: 13px; color: var(--muted); }
.foot-bottom a:hover { color: var(--spruce); }
.foot-demo { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .foot-grid > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile call bar ---------- */

.callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  grid-template-columns: 1.15fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -1px 0 rgba(0,0,0,.08);
}
.callbar a {
  display: flex; align-items: center; justify-content: center;
  height: 58px; font: 700 18px/1 var(--display); letter-spacing: .08em; text-transform: uppercase; color: #fff;
}
.callbar-call { background: var(--ink); }
.callbar-est { background: var(--spruce); }
@media (max-width: 900px) {
  .callbar { display: grid; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* ---------- Static mode (?static=1) — for stills, video renders and crawlers: every reveal on, nothing moves ---------- */
html.static .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
html.static .hero-media { animation: none !important; }
html.static .hero-chalk .ck, html.static .chalk-overlay .ck { stroke-dashoffset: 0 !important; animation: none !important; }
html.static .hero-chalk .ck-t, html.static .chalk-overlay .ck-t { opacity: 1 !important; animation: none !important; }
html.static .rail-fill { transform: scaleY(1) !important; }
html.static .step::before { background: var(--spruce) !important; border-color: var(--spruce) !important; }
html.static .step time { color: var(--text) !important; }
html.static .callbar { display: none !important; }

/* ---------- Reveal (below the fold only; base state visible without JS) ---------- */

.js .rv { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  .js .hero-media { animation: none; }
  .js .hero-chalk .ck, .js .chalk-overlay .ck { stroke-dashoffset: 0; animation: none; }
  .js .hero-chalk .ck-t, .js .chalk-overlay .ck-t { opacity: 1; animation: none; }
  .js .rail-fill { transform: scaleY(1); }
  .js .step::before { background: var(--spruce); border-color: var(--spruce); }
  .js .step time { color: var(--text); }
  .svc-stage img, .btn, .nav, .nav-links { transition: none; }
}

/* =========================================================
   Multi-page additions
   ========================================================= */

/* Solid nav on interior pages */
.nav--solid { color: var(--text); background: rgba(243,242,237,.96); box-shadow: 0 1px 0 var(--line); }
.nav--solid .brand-mark path { stroke: var(--spruce); }
.nav--solid .nav-phone:hover { color: var(--spruce); }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after { right: 0; background: var(--spruce); }
.nav-mobile-extra { display: none; }
@media (max-width: 900px) {
  .nav-mobile-extra { display: block; width: 100%; margin-top: 18px; }
  .nav-mobile-phone { font: 800 34px/1 var(--display); letter-spacing: .02em; color: var(--spruce); }
}

/* Page header */
.page-head { padding: calc(var(--nav-h) + clamp(48px, 7vw, 96px)) 0 clamp(40px, 6vw, 72px); }
.page-head .kicker { margin-bottom: 22px; }
.page-head h1 { font-size: clamp(48px, 7vw, 104px); line-height: .92; letter-spacing: .005em; max-width: 12ch; }
.page-head .lede { margin-top: 26px; max-width: 640px; }
.page-head--ink { background: var(--ink); color: #fff; }
.page-head--ink .kicker { color: var(--chalk); }
.page-head--ink .lede { color: #fff; }
.page-head .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Full-width photo band under a header */
.band { position: relative; margin: 0; }
.band img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.band figcaption { position: absolute; right: clamp(16px, 3vw, 40px); bottom: 14px; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); background: rgba(10,16,22,.55); padding: 6px 10px; }
@media (max-width: 700px) { .band img { aspect-ratio: 4 / 3; } }

/* Prose */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: .96; letter-spacing: .005em; margin-top: clamp(40px, 6vw, 64px); max-width: 16ch; }
.prose h3 { font-size: 27px; line-height: 1; margin-top: 36px; }
.prose h2 + p, .prose h3 + p { margin-top: 14px; }
.prose p { font-size: 17px; line-height: 1.6; color: var(--text); }
.prose p.small { font-size: 15px; color: var(--muted); }
.prose ul, .prose ol { display: grid; gap: 10px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; font-size: 16.5px; line-height: 1.55; }
.prose ul li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--spruce); font-weight: 700; }
.prose ol { counter-reset: p; }
.prose ol li { position: relative; padding-left: 44px; font-size: 16.5px; line-height: 1.55; counter-increment: p; }
.prose ol li::before { content: counter(p, decimal-leading-zero); position: absolute; left: 0; top: 2px; font: 700 18px/1.4 var(--display); letter-spacing: .04em; color: var(--spruce); }
.prose strong { font-weight: 600; }
.prose a:not(.btn) { color: var(--spruce); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:not(.btn):hover { color: var(--spruce-dark); }
.sect--ink .prose p, .sect--ink .prose li { color: var(--ink-muted); }
.sect--ink .prose h2, .sect--ink .prose h3, .sect--ink .prose strong { color: #fff; }
.sect--ink .prose a:not(.btn) { color: var(--chalk); }
.sect--ink .prose ul li::before, .sect--ink .prose ol li::before { color: var(--chalk); }

/* Tickets inside prose keep their own numbering */
.prose .ticket ol { padding-left: 0; gap: 12px; }
.prose .ticket li { padding-left: 40px; font-size: 15.5px; }
.prose .ticket li::before { font-size: 17px; top: 1px; }
.prose .ticket--theirs li::before { color: var(--muted); }
.prose .ticket--ours li::before { color: var(--spruce); }

/* Two-column: prose + sticky aside */
.two-col { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.two-col .aside { position: sticky; top: 100px; display: grid; gap: 28px; }
.two-col .aside .ph img { aspect-ratio: 4 / 5; }
.two-col .aside .ph--wide img { aspect-ratio: 4 / 3; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col .aside { position: static; max-width: 520px; }
}

/* Callout note (ticket) */
.note { padding: 22px 24px 24px 28px; border: 1px solid var(--line); border-left: 4px solid var(--spruce); background: var(--white); }
.note .ticket-label { color: var(--spruce); }
.note p { font-size: 16px; line-height: 1.55; }
.note p + p { margin-top: 10px; }
.note--chalk { border-left-color: var(--chalk); background: var(--paper-2); }
.note--chalk .ticket-label { color: var(--text); }
.sect--ink .note { background: var(--ink-2); border-color: var(--ink-line); border-left-color: var(--chalk); }
.sect--ink .note .ticket-label { color: var(--chalk); }
.sect--ink .note p { color: var(--ink-muted); }

/* Big numbered steps (claim process) */
.steps { display: grid; gap: 0; counter-reset: s; border-top: 1px solid var(--line-strong); }
.steps > li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); counter-increment: s; }
.steps > li::before { content: counter(s, decimal-leading-zero); font: 800 44px/1 var(--display); color: var(--spruce); letter-spacing: .02em; padding-top: 2px; }
.steps h3 { font-size: 27px; line-height: 1; margin-bottom: 10px; }
.steps p { font-size: 16px; line-height: 1.55; color: var(--muted); max-width: 62ch; }
.steps p + p { margin-top: 8px; }
.sect--ink .steps { border-top-color: var(--ink-line); }
.sect--ink .steps > li { border-bottom-color: var(--ink-line); }
.sect--ink .steps > li::before { color: var(--chalk); }
@media (max-width: 600px) { .steps > li { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; } .steps > li::before { font-size: 32px; } }

/* Comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 2px solid var(--text); }
.cmp { width: 100%; min-width: 640px; border-collapse: collapse; }
.cmp th, .cmp td { text-align: left; vertical-align: top; padding: 16px 18px 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.cmp th { font: 700 15px/1.3 var(--display); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cmp thead th { padding-top: 16px; }
.cmp thead th:not(:first-child) { color: var(--text); font-size: 22px; letter-spacing: .02em; text-transform: none; }
.cmp tbody th { color: var(--text); font-size: 14px; }
.cmp td b { font-weight: 600; }
.cmp td.best { color: var(--spruce); font-weight: 600; }
@media (max-width: 700px) {
  .table-wrap { overflow: visible; border-top: 0; }
  .cmp { min-width: 0; }
  .cmp thead { display: none; }
  .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; }
  .cmp tr { padding: 18px 0 8px; border-top: 2px solid var(--text); }
  .cmp tbody th { padding: 0 0 10px; border: 0; font-size: 13px; letter-spacing: .18em; }
  .cmp td { padding: 8px 0 8px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 12px; font-size: 14.5px; }
  .cmp td:last-child { border-bottom: 0; }
  .cmp td::before { content: attr(data-col); font: 700 12px/1.5 var(--display); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
  .cmp td.best::before { color: var(--spruce); }
}

/* FAQ */
.faq { border-top: 1px solid var(--line-strong); max-width: 920px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) 40px; gap: 20px; align-items: center; padding: 22px 0; font: 700 clamp(21px, 2.2vw, 26px)/1.05 var(--display); letter-spacing: .01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 40px; height: 40px; border: 1.5px solid var(--line-strong); border-radius: 50%; background: linear-gradient(var(--text), var(--text)) center / 14px 1.5px no-repeat, linear-gradient(var(--text), var(--text)) center / 1.5px 14px no-repeat; transition: transform .25s var(--ease), background .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); border-color: var(--spruce); }
.faq summary:hover { color: var(--spruce); }
.faq .answer { padding: 0 0 26px; max-width: 66ch; }
.faq .answer p { font-size: 16.5px; line-height: 1.6; color: var(--text); }
.faq .answer p + p { margin-top: 12px; }

/* Job cards (our work) */
.jobs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.job { position: relative; padding: 24px 24px 26px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--text); display: grid; gap: 10px; align-content: start; }
.job .job-where { font: 700 24px/1 var(--display); letter-spacing: .02em; }
.job .job-year { font: 700 14px/1 var(--display); letter-spacing: .18em; color: var(--spruce); text-transform: uppercase; }
.job .job-sys { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.job p { font-size: 15px; line-height: 1.55; color: var(--text); margin-top: 4px; }
.job--hail { border-top-color: var(--chalk); }
@media (max-width: 900px) { .jobs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .jobs { grid-template-columns: 1fr; } }

/* Owner's letter */
.letter { position: relative; max-width: 720px; padding: clamp(28px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--text); }
.letter .ticket-label { color: var(--muted); margin-bottom: 20px; }
.letter p { font-size: 17.5px; line-height: 1.62; }
.letter p + p { margin-top: 16px; }
.letter .sign { display: inline-grid; margin-top: 28px; }
.letter .sign b { font: 800 34px/1 var(--display); letter-spacing: .02em; text-transform: uppercase; }
.letter .sign svg { width: 180px; height: 14px; margin-top: 2px; }
.letter .sign svg path { fill: none; stroke: var(--chalk); stroke-width: 4; stroke-linecap: round; filter: url(#chalkF); }
.letter .sign span { font-size: 13px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; }

/* People grid (crew page) */
.people-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 28px; }
.person .ph img { aspect-ratio: 4 / 5; object-position: 50% 25%; }
.person .ph-slot { aspect-ratio: 4 / 5; border: 1.5px dashed var(--line-strong); display: grid; place-items: center; text-align: center; padding: 20px; color: var(--muted); font: 700 13px/1.5 var(--display); letter-spacing: .16em; text-transform: uppercase; background: var(--paper-2); }
.person b { display: block; margin-top: 16px; font: 700 26px/1 var(--display); letter-spacing: .02em; }
.person .role { display: block; margin-top: 6px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--spruce); font-weight: 600; }
.person p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--muted); }
@media (max-width: 800px) { .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .people-grid { grid-template-columns: 1fr; } }

/* Layer list (what's in a roof) */
.layers { counter-reset: l; display: grid; border-top: 1px solid var(--line-strong); }
.layers li { display: grid; grid-template-columns: 56px minmax(0, 220px) minmax(0, 1fr); gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); counter-increment: l; }
.layers li::before { content: counter(l); font: 800 26px/1 var(--display); color: var(--spruce); }
.layers b { font: 700 22px/1.1 var(--display); letter-spacing: .01em; }
.layers span { font-size: 15px; line-height: 1.5; color: var(--muted); }
.layers li.skipped b::after { content: "often skipped"; display: inline-block; margin-left: 10px; vertical-align: middle; font: 600 10px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--text); background: var(--chalk); padding: 4px 6px 3px; border-radius: 2px; }
@media (max-width: 700px) { .layers li { grid-template-columns: 40px minmax(0, 1fr); } .layers span { grid-column: 2; } }

/* Checklist (first 48 hours) */
.checklist { display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 40px; font-size: 16.5px; line-height: 1.55; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border: 2px solid var(--chalk-white); filter: url(#chalkF); }
.checklist li b { display: block; font: 700 21px/1.1 var(--display); letter-spacing: .01em; margin-bottom: 4px; color: #fff; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; padding: clamp(56px, 8vw, 96px) 0; }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: center; }
.cta-band h2 { font-size: clamp(40px, 5vw, 72px); line-height: .94; max-width: 14ch; }
.cta-band p { margin-top: 16px; color: var(--ink-muted); max-width: 52ch; font-size: 16.5px; }
.cta-band .cta-actions { display: grid; gap: 14px; justify-items: start; }
.cta-band .big-phone { color: var(--chalk); margin: 0; }
.cta-band .big-phone:hover { color: #fff; }
@media (max-width: 800px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* Service index rows + interior service header */
.svc-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.svc-card { display: grid; grid-template-rows: auto 1fr; background: var(--white); border: 1px solid var(--line); transition: transform .25s var(--ease), border-color .25s var(--ease); }
.svc-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.svc-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.svc-card .svc-card-body { padding: 22px 24px 26px; display: grid; gap: 8px; align-content: start; }
.svc-card .svc-n { font-size: 14px; }
.svc-card b { font: 700 30px/1 var(--display); letter-spacing: .01em; }
.svc-card p { font-size: 15px; line-height: 1.5; color: var(--muted); }
.svc-card .more { margin-top: 8px; font: 700 14px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; color: var(--spruce); }
@media (max-width: 700px) { .svc-index { grid-template-columns: 1fr; } }

/* Fact strip (interior pages) */
.factstrip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.factstrip > div { padding: 22px 24px 22px 0; border-left: 1px solid var(--line); padding-left: 22px; }
.factstrip > div:first-child { border-left: 0; padding-left: 0; }
.factstrip strong { display: block; font: 700 26px/1 var(--display); letter-spacing: .02em; margin-bottom: 6px; }
.factstrip span { font-size: 14px; line-height: 1.45; color: var(--muted); }
@media (max-width: 700px) { .factstrip { grid-template-columns: 1fr; } .factstrip > div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); } .factstrip > div:first-child { border-top: 0; } }

/* Quotes page */
.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .quote-grid { grid-template-columns: 1fr; } }

/* Areas page */
.area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; border-top: 1px solid var(--line-strong); }
.area-list li { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.area-list b { font: 700 22px/1.1 var(--display); letter-spacing: .02em; text-transform: uppercase; }
.area-list span { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
@media (max-width: 800px) { .area-list { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .area-list li { grid-template-columns: 1fr; gap: 4px; } }

/* Home: condensed rail */
.rail--short .step { padding-bottom: 32px; }

/* Thanks / 404 */
.simple { min-height: 70vh; display: grid; align-items: center; padding: calc(var(--nav-h) + 64px) 0 96px; }
.simple .wrap { max-width: 760px; }
.simple h1 { font-size: clamp(48px, 7vw, 96px); line-height: .92; }
.simple .lede { margin-top: 24px; }
.simple .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Legal */
.legal .prose p, .legal .prose li { font-size: 15.5px; }
.person .ph-slot.person-initials { border-style:solid; background:var(--paper-2); color:var(--ink); font-size:clamp(80px,12vw,150px); letter-spacing:-.04em; }
