/* ==========================================================================
   BN Exteriors — ChatGPT Ads landing pages
   Shared stylesheet for /remodeling/ and /home-additions/
   Palette lifted from the BN Exteriors sign logo: espresso, oak, bone paper.
   ========================================================================== */

:root {
  --ink: #1b1512;
  --espresso: #3a2415;
  --brown: #5c4033;
  --brown-2: #4a3226;
  --oak: #c09868;
  --oak-2: #a67d4c;
  --oak-light: #e6d3b3;
  --oak-tint: #f1e6d2;
  --cream: #f5efe4;
  --bone: #fbf8f2;
  --white: #ffffff;
  --brick: #c2783a;
  --brick-2: #a8632c;
  --slate: #607382;
  --muted: #6f6259;
  --line: rgba(58, 36, 21, 0.14);
  --line-strong: rgba(58, 36, 21, 0.28);
  --shadow: 0 24px 60px -24px rgba(58, 36, 21, 0.35), 0 8px 20px -10px rgba(58, 36, 21, 0.2);
  --shadow-sm: 0 6px 18px -8px rgba(58, 36, 21, 0.25);
  --radius: 4px;
  --radius-lg: 8px;
  --wrap: 1180px;
  --font-display: "Roboto Slab", "Rockwell", "Courier New", Georgia, serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--oak-light); color: var(--espresso); }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--espresso); color: #fff; padding: 10px 16px; z-index: 1000; }
.skip:focus { left: 12px; top: 12px; }

/* --- Type helpers ------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--oak-2);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--oak); }
.eyebrow--light { color: var(--oak-light); }
.eyebrow--light::before { background: var(--oak); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.h-display { font-size: clamp(38px, 5.4vw, 64px); line-height: 1.0; letter-spacing: -0.02em; }
.h-display em, .h2 em, .h-story em { font-style: italic; font-weight: 500; color: var(--oak-2);  }
.h2 { font-size: clamp(30px, 3.8vw, 44px); letter-spacing: -0.015em; }
.h3 { font-size: 22px; }
.lead { font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.65; color: var(--muted); max-width: 60ch; }
.lead--light { color: rgba(251, 248, 242, .78); }
.sec-head { display: grid; gap: 14px; margin-bottom: 44px; max-width: 760px; }
.sec-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.sec-head .lead { margin: 0; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--radius); font-weight: 800; font-size: 15.5px;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s, color .18s, box-shadow .18s, border-color .18s;
  letter-spacing: .005em;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--brick { background: var(--brick); color: #fff; box-shadow: 0 10px 24px -12px rgba(194, 120, 58, .6); }
.btn--brick:hover { background: var(--brick-2); transform: translateY(-1px); }
.btn--ink { background: var(--espresso); color: var(--cream); }
.btn--ink:hover { background: var(--brown); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--espresso); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--espresso); background: rgba(58, 36, 21, .04); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(251, 248, 242, .35); }
.btn--ghost-light:hover { border-color: var(--cream); background: rgba(251, 248, 242, .06); }
.btn--oak { background: var(--oak); color: var(--espresso); }
.btn--oak:hover { background: var(--oak-light); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 17px; }

/* --- Top bar + header ----------------------------------------------------- */
.topbar { background: var(--espresso); color: rgba(251, 248, 242, .82); font-size: 13px; letter-spacing: .02em; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar__in span { display: inline-flex; align-items: center; gap: 8px; }
.topbar b { color: var(--oak-light); font-weight: 700; }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--oak); display: inline-block; margin: 0 8px; }

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, .92); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.hdr.is-stuck { box-shadow: 0 8px 30px -18px rgba(58, 36, 21, .45); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 20px; }
.hdr__logo img { height: 62px; width: auto; }
.hdr__cta { display: flex; align-items: center; gap: 22px; }
.hdr__phone { text-decoration: none; display: grid; line-height: 1.15; text-align: right; }
.hdr__phone strong { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--espresso); letter-spacing: -0.01em; }
.hdr__phone small { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hdr__phone:hover strong { color: var(--brick); }

/* --- Hero ------------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(192, 152, 104, .28), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  padding: 72px 0 120px;
}
.hero::before {
  /* fine paper grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .23 0 0 0 0 .14 0 0 0 0 .08 0 0 0 .06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero::after {
  /* oversized watermark initials, like the sign */
  content: "BN"; position: absolute; right: -2vw; top: -6vw; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(220px, 34vw, 520px); line-height: 1; color: rgba(58, 36, 21, .045); letter-spacing: -0.06em; pointer-events: none;
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 56px; align-items: start; }
.hero__copy { display: grid; gap: 22px; padding-top: 8px; }
.hero__copy .lead { max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--brown-2); }
.hero__trust svg { width: 18px; height: 18px; color: var(--oak-2); flex: none; }

/* --- Form card ------------------------------------------------------------- */
.card-form {
  background: var(--white); border: 1px solid var(--oak-light); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px 30px 26px; position: relative; color: var(--ink);
}
.card-form::before {
  content: ""; position: absolute; left: 22px; right: 22px; top: -1px; height: 4px; background: linear-gradient(90deg, var(--oak), var(--brick)); border-radius: 0 0 4px 4px;
}
.card-form__head { margin-bottom: 20px; display: grid; gap: 6px; }
.card-form__head h2, .card-form__head h3 { font-size: 26px; }
.card-form__head p { margin: 0; color: var(--muted); font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brown-2); }
.field label span { font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius); background: var(--bone);
  transition: border-color .15s, box-shadow .15s, background .15s; min-height: 48px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--oak-2); background: #fff; box-shadow: 0 0 0 4px rgba(192, 152, 104, .22); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--brick); box-shadow: 0 0 0 4px rgba(194, 120, 58, .18); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-status { display: none; margin-top: 12px; padding: 12px 14px; border-radius: var(--radius); font-size: 14.5px; font-weight: 600; }
.form-status--ok { background: #eaf4ec; color: #1f5a2a; }
.form-status--err { background: #fbeae7; color: #8f2312; }
.form-foot { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
.form-foot a { font-weight: 800; color: var(--espresso); text-decoration: none; }
.form-foot a:hover { color: var(--brick); }

/* --- Photo band under hero -------------------------------------------------- */
.band { position: relative; z-index: 2; margin-top: -84px; }
.band__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .9fr; gap: 12px; height: 340px; }
.band__grid figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--oak-tint); }
.band__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.band__grid figure:hover img { transform: scale(1.04); }
.band__grid figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 6px 10px; border-radius: 3px;
  background: rgba(27, 21, 18, .72); color: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(6px);
}
.band__grid figure:nth-child(2) { margin-top: 36px; }
.band__grid figure:nth-child(4) { margin-top: 18px; }

/* --- Trust strip ------------------------------------------------------------ */
.strip { padding: 44px 0 10px; }
.strip__in { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__item { padding: 22px 22px 22px 0; display: grid; gap: 4px; border-right: 1px solid var(--line); margin-right: 22px; }
.strip__item:last-child { border-right: 0; margin-right: 0; }
.strip__item b { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--espresso); }
.strip__item span { font-size: 14px; color: var(--muted); }
.strip__item img { height: 34px; width: auto; margin-bottom: 4px; }

/* --- Generic sections ------------------------------------------------------- */
.sec { padding: 96px 0; }
.sec--tight { padding: 72px 0; }
.sec--cream { background: var(--cream); }
.sec--dark { background: var(--espresso); color: var(--cream); }
.sec--dark .h2, .sec--dark .h3 { color: var(--bone); }
.sec--oak { background: linear-gradient(135deg, var(--oak-tint), var(--cream)); }

/* --- Services grid ---------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-rows: auto 1fr;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--oak-light); }
.svc__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--oak-tint); position: relative; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__num { position: absolute; left: 14px; top: 14px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(251, 248, 242, .92); color: var(--espresso); font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.svc__body { padding: 22px 24px 26px; display: grid; gap: 10px; align-content: start; }
.svc__body p { margin: 0; color: var(--muted); font-size: 15.5px; }
.svc__list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.svc__list li { font-size: 12.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--oak-tint); color: var(--brown-2); }

/* --- Project story (dark) --------------------------------------------------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.story__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.story__photos figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); }
.story__photos figure:first-child { grid-column: 1 / -1; }
.story__photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.story__photos figure:not(:first-child) img { aspect-ratio: 4 / 3; }
.story__photos figcaption { position: absolute; left: 12px; top: 12px; padding: 6px 10px; border-radius: 3px; background: var(--oak); color: var(--espresso); font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story__copy { display: grid; gap: 18px; }
.h-story { font-size: clamp(30px, 3.4vw, 42px); color: var(--bone); }
.story__copy p { color: rgba(251, 248, 242, .8); margin: 0; }
.story__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 18px 0; border-top: 1px solid rgba(251, 248, 242, .15); border-bottom: 1px solid rgba(251, 248, 242, .15); }
.story__specs li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(251, 248, 242, .85); }
.story__specs svg { width: 16px; height: 16px; color: var(--oak); flex: none; margin-top: 4px; }
.pull { position: relative; padding: 4px 0 0 26px; border-left: 3px solid var(--oak); }
.pull p { font-family: var(--font-display); font-size: 20px; line-height: 1.45; color: var(--bone); font-style: italic; font-weight: 500; }
.pull cite { display: block; margin-top: 10px; font-style: normal; font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--oak-light); font-weight: 800; }

/* --- Process ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: var(--line-strong); }
.step { padding: 0 28px 0 0; position: relative; display: grid; gap: 12px; align-content: start; }
.step__num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--bone); border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--espresso); position: relative; z-index: 1;
}
.step:first-child .step__num { background: var(--espresso); color: var(--oak-light); border-color: var(--espresso); }
.step h3 { font-size: 21px; margin-top: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }
.step ul { display: grid; gap: 6px; }
.step li { font-size: 14.5px; color: var(--brown-2); padding-left: 16px; position: relative; }
.step li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--oak); }

.timeline { margin-top: 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 38px; }
.timeline h3 { font-size: 24px; margin-bottom: 8px; }
.timeline p { color: var(--muted); font-size: 15px; margin: 0; }
.tl-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.tl-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.tl-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--espresso); font-size: 17px; white-space: nowrap; }
.tl-table tr:last-child td { border-bottom: 0; }

/* --- Why / promises ----------------------------------------------------------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.split--rev > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.split__media--wide img { aspect-ratio: 4 / 3; }
.split__media .tag {
  position: absolute; left: -18px; bottom: 28px; background: var(--espresso); color: var(--cream); padding: 16px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow); display: grid; gap: 2px; max-width: 260px;
}
.split__media .tag b { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--oak-light); }
.split__media .tag span { font-size: 13px; color: rgba(251, 248, 242, .78); }
.promises { display: grid; gap: 18px; margin-top: 28px; }
.promise { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.promise__ic { width: 44px; height: 44px; border-radius: 10px; background: var(--oak-tint); display: grid; place-items: center; color: var(--brown); }
.promise__ic svg { width: 22px; height: 22px; }
.promise h3 { font-size: 19px; margin-bottom: 4px; }
.promise p { margin: 0; color: var(--muted); font-size: 15px; }

/* --- Owner ---------------------------------------------------------------------- */
.owner { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }
.owner__photo { position: relative; }
.owner__photo img { border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; object-position: 50% 20%; }
.owner__photo::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--oak); border-radius: var(--radius-lg); z-index: -1; }
.owner__copy { display: grid; gap: 16px; }
.owner__copy p { margin: 0; color: var(--muted); }
.owner__quote { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--espresso); padding-left: 22px; border-left: 3px solid var(--oak); }
.owner__quote cite { display: block; font-style: normal; font-family: var(--font-body); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: var(--oak-2); margin-top: 8px; }

/* --- Reviews ---------------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 28px 24px; display: grid; gap: 14px; align-content: start; position: relative; }
.review::before { content: "\201C"; position: absolute; right: 22px; top: 6px; font-family: var(--font-display); font-size: 88px; line-height: 1; color: var(--oak-tint); font-weight: 700; }
.stars { display: inline-flex; gap: 3px; color: #d99a2b; }
.stars svg { width: 16px; height: 16px; }
.review p { margin: 0; font-size: 15.5px; color: var(--brown-2); position: relative; }
.review footer { display: grid; gap: 2px; padding-top: 12px; border-top: 1px solid var(--line); }
.review footer b { font-size: 14.5px; color: var(--espresso); }
.review footer span { font-size: 13px; color: var(--muted); }
.review--featured { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 0 40px; background: var(--cream); }
.review--featured p { font-family: var(--font-display); font-size: 21px; line-height: 1.45; font-style: italic; font-weight: 500; color: var(--espresso); grid-column: 1 / -1; }

/* --- Service area ----------------------------------------------------------------- */
.area { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.cities li { padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--brown-2); background: var(--bone); }
.cities li.is-home { background: var(--espresso); color: var(--oak-light); border-color: var(--espresso); }

/* --- FAQ (details/summary, no JS) ------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--espresso); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--oak-2); border-bottom: 2px solid var(--oak-2);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--brick); }
.faq .faq__a { padding: 0 0 24px; color: var(--muted); max-width: 70ch; }
.faq .faq__a p:last-child { margin: 0; }

/* --- Closing CTA ------------------------------------------------------------------ */
.close { position: relative; overflow: hidden; background: var(--espresso); color: var(--cream); padding: 96px 0; }
.close::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 15% 100%, rgba(192, 152, 104, .28), transparent 60%); pointer-events: none; }
.close__in { position: relative; display: grid; grid-template-columns: 1fr minmax(360px, 460px); gap: 64px; align-items: center; }
.close__copy { display: grid; gap: 20px; }
.close__copy .h2 { color: var(--bone); }
.close__copy p { color: rgba(251, 248, 242, .8); margin: 0; max-width: 52ch; }
.close__phone { display: grid; gap: 4px; margin-top: 8px; }
.close__phone a { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 40px); font-weight: 600; color: var(--bone); text-decoration: none; letter-spacing: -0.01em; }
.close__phone a:hover { color: var(--oak-light); }
.close__phone span { font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--oak-light); font-weight: 800; }
.close .card-form { box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6); }

/* --- Footer ------------------------------------------------------------------------ */
.ftr { background: var(--ink); color: rgba(251, 248, 242, .7); padding: 48px 0 110px; font-size: 14px; }
.ftr__in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start; }
.ftr__logo { background: var(--bone); display: inline-block; padding: 10px 14px; border-radius: var(--radius); margin-bottom: 14px; }
.ftr__logo img { height: 44px; width: auto; }
.ftr h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--oak-light); margin-bottom: 12px; }
.ftr a { color: var(--cream); text-decoration: none; }
.ftr a:hover { color: var(--oak-light); }
.ftr li { margin-bottom: 6px; }
.ftr__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(251, 248, 242, .12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: rgba(251, 248, 242, .5); }

/* --- Mobile call bar ----------------------------------------------------------------- */
.callbar { display: none; }

/* --- Reveal ------------------------------------------------------------------------- */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv-d1 { transition-delay: .08s; } .js .rv-d2 { transition-delay: .16s; } .js .rv-d3 { transition-delay: .24s; } .js .rv-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* --- Thanks page ---------------------------------------------------------------------- */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks__in { display: grid; gap: 18px; justify-items: center; max-width: 620px; }
.thanks__check { width: 72px; height: 72px; border-radius: 50%; background: var(--oak-tint); display: grid; place-items: center; color: var(--brown); }
.thanks__check svg { width: 34px; height: 34px; }

/* --- Hub (index) ------------------------------------------------------------------------ */
.hub { padding: 80px 0; }
.hub__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.hub__card { display: grid; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.hub__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hub__card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.hub__card div { padding: 22px 24px 26px; display: grid; gap: 6px; }
.hub__card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__in { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 110px; }
  .band__grid { grid-template-columns: 1fr 1fr; height: auto; }
  .band__grid figure { aspect-ratio: 4 / 3; }
  .band__grid figure:nth-child(2), .band__grid figure:nth-child(4) { margin-top: 0; }
  .services { grid-template-columns: 1fr 1fr; }
  .story, .split, .area, .owner, .timeline, .close__in { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
  .split__media img { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps::before { display: none; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .ftr__in { grid-template-columns: 1fr 1fr; }
  .hero::after { font-size: 260px; top: -40px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar__in { justify-content: center; font-size: 12px; }
  .topbar__in > span:last-child { display: none; }
  .m-hide { display: none; }
  .topbar__in { white-space: nowrap; }
  .hdr__in { min-height: 70px; }
  .hdr__logo img { height: 42px; }
  .hdr__phone { display: none; }
  .hdr .btn { padding: 11px 16px; font-size: 14px; }
  .hero { padding: 40px 0 80px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__trust { gap: 8px 16px; }
  .band { margin-top: -50px; }
  .band__grid { gap: 8px; }
  .card-form { padding: 24px 20px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .strip__in { grid-template-columns: 1fr 1fr; }
  .strip__item { border-right: 0; margin-right: 0; padding: 18px 8px; }
  .sec { padding: 64px 0; }
  .sec-head { margin-bottom: 28px; }
  .services { grid-template-columns: 1fr; }
  .steps, .reviews, .ftr__in { grid-template-columns: 1fr; }
  .review--featured { grid-template-columns: 1fr; }
  .review--featured p { font-size: 19px; }
  .story__photos { gap: 8px; }
  .story__specs { grid-template-columns: 1fr; }
  .owner__photo { max-width: 300px; }
  .timeline { padding: 24px 22px; }
  .close { padding: 64px 0; }
  .close__in { gap: 40px; }
  .faq summary { font-size: 18px; padding: 18px 40px 18px 0; }
  .split__media .tag { left: 12px; bottom: 12px; }
  .hub__grid { grid-template-columns: 1fr; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(251, 248, 242, .96); border-top: 1px solid var(--line); backdrop-filter: blur(10px);
  }
  .callbar .btn { padding: 13px 10px; font-size: 14.5px; }
}

/* ==========================================================================
   D.R. Baker-style header, hero and services (added 2026-09-01)
   ========================================================================== */
:root { --font-sans-display: "Roboto Slab", "Rockwell", Georgia, serif; --charcoal: #232323; --panel: #5b5f67; }
.btn--brick { background: var(--brick); }

.hdr--b { background: #fff; border-bottom: 0; }
.hdr--b .hdr__in { min-height: 96px; }
.hdr--b .hdr__logo img { height: 66px; }
.hdr__nav { display: flex; gap: 34px; margin-inline: auto; }
.hdr__nav a { text-decoration: none; font-weight: 600; font-size: 16px; color: #222; transition: color .15s; }
.hdr__nav a:hover { color: var(--brick); }
.hdr--b .btn--brick { padding: 14px 28px; border-radius: 6px; }

.hero-b { position: relative; background: linear-gradient(180deg, #fff 0, #fff 62%, var(--charcoal) 62%, var(--charcoal) 100%); padding: 6px 0 0; }
.hero-b__card { position: relative; width: min(1310px, calc(100% - 40px)); margin-inline: auto; height: clamp(500px, 44vw, 640px); border-radius: 22px; overflow: hidden; background: #2a2a2a; }
.hero-b__card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-b__card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .42) 60%, rgba(0, 0, 0, .38) 100%); }
.hero-b__in { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 40px 110px 60px; max-width: 980px; color: #fff; }
.hero-b h1 { font-family: var(--font-sans-display); font-weight: 700; font-size: clamp(38px, 4.6vw, 66px); line-height: 1.1; letter-spacing: -.005em; color: #fff; }
.hero-b__sub { font-family: var(--font-body); font-size: clamp(17px, 1.7vw, 25px); font-weight: 500; margin: 20px 0 30px; color: #fff; max-width: 32em; }
.hero-b__actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-b__actions .btn { border-radius: 6px; padding: 15px 28px; }
.hero-b__actions .btn--ghost-light { border-color: rgba(255, 255, 255, .85); }
.hero-b__wm { position: absolute; left: 0; right: 0; bottom: -10px; z-index: 1; font-family: var(--font-sans-display); font-weight: 700; font-size: clamp(56px, 8vw, 118px); line-height: 1; white-space: nowrap; text-align: center; letter-spacing: .03em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .28); pointer-events: none; overflow: hidden; }
.hero-b__side { position: absolute; top: 0; height: 62%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; z-index: 3; }
.hero-b__side--l { left: 28px; flex-direction: column-reverse; }
.hero-b__side--r { right: 28px; }
.hero-b__side a { writing-mode: vertical-rl; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #333; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.hero-b__side--l a { transform: rotate(180deg); }
.hero-b__side--l i { width: 6px; height: 6px; border-radius: 50%; background: #1f4e9c; }
.hero-b__side--r svg { width: 16px; height: 16px; }
.hero-b__side a:hover { color: var(--brick); }

.sv-sec { background: var(--charcoal); color: #fff; padding: 130px 0 90px; }
.sv-sec__eyebrow { display: block; text-align: center; color: var(--brick); font-family: var(--font-sans-display); font-weight: 600; font-size: clamp(18px, 1.7vw, 24px); margin-bottom: 14px; }
.sv-sec__h2 { text-align: center; font-family: var(--font-sans-display); font-weight: 700; font-size: clamp(32px, 3.5vw, 50px); line-height: 1.15; color: #fff; max-width: 820px; margin: 0 auto 64px; letter-spacing: -.005em; }
.carousel { position: relative; --gap: 60px; }
.carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * var(--gap)) / 3); gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0 0 36px; }
.carousel__track::-webkit-scrollbar { display: none; }
.sv { scroll-snap-align: start; position: relative; }
.sv__img { width: 90%; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; background: #333; }
.sv__img img { width: 100%; height: 100%; object-fit: cover; }
.sv__panel { position: relative; margin: -190px 0 0 auto; width: 85%; background: var(--panel); border-radius: 14px; padding: 32px 30px 30px; box-shadow: 0 24px 44px -22px rgba(0, 0, 0, .7); }
.sv__panel h3 { font-family: var(--font-sans-display); font-weight: 600; font-size: 24px; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.sv__panel p { font-size: 16px; color: #fff; margin: 0 0 12px; }
.sv__list { display: grid; gap: 8px; margin-bottom: 24px; }
.sv__list li { display: flex; gap: 10px; align-items: center; font-size: 16px; color: #fff; }
.sv__list li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; flex: none; background: var(--brick) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='m9 6 6 6-6 6'/></svg>") center / 9px no-repeat; }
.sv__link { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 16px; text-decoration: none; }
.sv__link::after { content: ""; width: 40px; height: 2px; background: #fff; transition: width .2s var(--ease); }
.sv__link:hover::after { width: 58px; }
.carousel__btn { position: absolute; top: 46%; width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 0; color: #222; display: grid; place-items: center; cursor: pointer; z-index: 3; box-shadow: 0 6px 16px rgba(0, 0, 0, .4); transition: transform .15s, opacity .15s; }
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:hover { transform: scale(1.06); }
.carousel__btn--prev { left: -24px; }
.carousel__btn--next { right: -24px; }
.carousel__btn[disabled] { opacity: .35; cursor: default; transform: none; }
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 8px; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .35); padding: 0; cursor: pointer; }
.carousel__dots button.is-on { background: #fff; }

@media (max-width: 1180px) {
  .hero-b__side { display: none; }
  .hero-b__in { padding: 40px 60px; }
  .carousel__track { grid-auto-columns: calc((100% - var(--gap)) / 2); }
}
@media (max-width: 900px) {
  .hdr__nav { display: none; }
}
@media (max-width: 720px) {
  .hdr--b .hdr__in { min-height: 72px; }
  .hdr--b .hdr__logo img { height: 46px; }
  .hero-b { background: linear-gradient(180deg, #fff 0, #fff 55%, var(--charcoal) 55%); }
  .hero-b__card { width: calc(100% - 24px); height: 540px; border-radius: 16px; }
  .hero-b__in { padding: 28px 24px 70px; }
  .hero-b__actions .btn { flex: 1 1 100%; }
  .hero-b__wm { font-size: 42px; bottom: 6px; }
  .sv-sec { padding: 80px 0 60px; }
  .carousel { --gap: 24px; }
  .carousel__track { grid-auto-columns: 100%; }
  .sv__img { width: 92%; }
  .sv__panel { margin-top: -150px; width: 90%; padding: 26px 22px 24px; }
  .carousel__btn { display: none; }
}


/* ==========================================================================
   Process (sticky head + outlined step numbers + timeline bars) and
   service-area map. Added after review.
   ========================================================================== */
.proc { background: var(--bone); }
.proc__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.proc__head { position: sticky; top: 120px; display: grid; gap: 18px; justify-items: start; }
.proc__head .lead { margin: 0; }
.proc__steps { margin: 0; padding: 0; list-style: none; display: grid; border-top: 1px solid var(--line-strong); }
.proc__step { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--line-strong); align-items: start; }
.proc__num { font-family: var(--font-display); font-size: 92px; line-height: .85; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--brick); letter-spacing: -.02em; transition: color .35s var(--ease); margin-top: 4px; }
.proc__step:hover .proc__num { color: var(--brick); }
.proc__body h3 { font-size: 27px; margin-bottom: 8px; }
.proc__body > p { color: var(--muted); margin: 0 0 16px; }
.proc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; }
.proc__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--brown-2); line-height: 1.45; }
.proc__list svg { width: 14px; height: 14px; color: var(--brick); flex: none; margin-top: 4px; }

.tl { margin-top: 84px; background: var(--charcoal); color: #fff; border-radius: 18px; padding: 52px 56px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.tl__head { display: grid; gap: 12px; }
.tl__head h3 { font-size: 32px; color: #fff; }
.tl__head p { color: rgba(255, 255, 255, .68); font-size: 15px; margin: 0; }
.tl__chart { display: grid; gap: 18px; }
.tl__row, .tl__axis { display: grid; grid-template-columns: 210px 1fr 130px; gap: 18px; align-items: center; }
.tl__label { font-size: 15px; color: rgba(255, 255, 255, .9); }
.tl__track { position: relative; height: 16px; background: rgba(255, 255, 255, .08); border-radius: 99px; overflow: visible; }
.tl__bar { position: absolute; top: 0; bottom: 0; left: calc(var(--s) / var(--max) * 100%); width: calc((var(--e) - var(--s)) / var(--max) * 100%); background: linear-gradient(90deg, var(--oak), var(--brick)); border-radius: 99px; transform-origin: left center; }
.tl__row--open .tl__bar::after { content: ""; position: absolute; left: 100%; top: 0; bottom: 0; width: 44px; background: linear-gradient(90deg, var(--brick), transparent); }
.tl__val { font-family: var(--font-display); font-weight: 700; font-size: 19px; text-align: right; white-space: nowrap; }
.tl__axis > div { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255, 255, 255, .5); font-weight: 600; letter-spacing: .04em; padding-top: 4px; border-top: 1px solid rgba(255, 255, 255, .12); }
.js .tl.rv .tl__bar { transform: scaleX(0); transition: transform 1.1s var(--ease); }
.js .tl.rv.in .tl__bar { transform: none; }
.js .tl.rv.in .tl__row:nth-child(2) .tl__bar { transition-delay: .12s; }
.js .tl.rv.in .tl__row:nth-child(3) .tl__bar { transition-delay: .24s; }
.js .tl.rv.in .tl__row:nth-child(4) .tl__bar { transition-delay: .36s; }

.area2 { background: var(--cream); }
.area2__in { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.area2__copy { display: grid; gap: 18px; }
.area2__copy .lead { margin: 0; }
.area2__stats { display: flex; gap: 40px; padding-top: 22px; border-top: 1px solid var(--line-strong); margin-top: 8px; }
.area2__stats div { display: grid; gap: 2px; }
.area2__stats b { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--espresso); line-height: 1; }
.area2__stats span { font-size: 13.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.area2__list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px 16px; margin: 0; padding: 0; list-style: none; }
.area2__list li { font-size: 14px; color: var(--brown-2); padding-left: 14px; position: relative; font-weight: 600; }
.area2__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brick); }
.area2__map { position: relative; aspect-ratio: 5 / 5.6; border-radius: 18px; overflow: hidden; background:
  radial-gradient(circle at var(--cx) var(--cy), rgba(194, 120, 58, .28), transparent 42%),
  linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 40px 40px,
  linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 40px 40px,
  var(--charcoal); box-shadow: var(--shadow); }
.area2__ring { position: absolute; left: var(--cx); top: var(--cy); width: var(--r); aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px dashed rgba(255, 255, 255, .16); border-radius: 50%; }
.area2__compass { position: absolute; right: 18px; top: 14px; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: rgba(255, 255, 255, .7); }
.area2__pins { margin: 0; padding: 0; list-style: none; position: absolute; inset: 0; }
.pin { position: absolute; left: calc(var(--x) * 100%); top: calc(var(--y) * 100%); transform: translate(-5px, -50%); display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .92); font-size: 12.5px; font-weight: 600; white-space: nowrap; letter-spacing: .01em; }
.pin::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .18); flex: none; }
.pin--l { flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin--home { color: var(--brick); font-size: 14px; font-weight: 800; transform: translate(-8px, -50%); z-index: 2; }
.pin--home::before { width: 16px; height: 16px; background: var(--brick); box-shadow: 0 0 0 5px rgba(194, 120, 58, .3); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 4px rgba(194, 120, 58, .35); } 70% { box-shadow: 0 0 0 16px rgba(194, 120, 58, 0); } 100% { box-shadow: 0 0 0 16px rgba(194, 120, 58, 0); } }
@media (prefers-reduced-motion: reduce) { .pin--home::before { animation: none; } }

@media (max-width: 1080px) {
  .proc__in { grid-template-columns: 1fr; gap: 40px; }
  .proc__head { position: static; }
  .tl { grid-template-columns: 1fr; padding: 40px 36px; gap: 32px; }
  .area2__in { grid-template-columns: 1fr; gap: 40px; }
  .area2__map { max-width: 620px; }
}
@media (max-width: 720px) {
  .proc__step { grid-template-columns: 64px 1fr; gap: 16px; padding: 26px 0; }
  .proc__num { font-size: 52px; }
  .proc__body h3 { font-size: 22px; }
  .proc__list { grid-template-columns: 1fr; }
  .tl { padding: 30px 22px; margin-top: 56px; border-radius: 14px; }
  .tl__row, .tl__axis { grid-template-columns: 1fr; gap: 6px; }
  .tl__label { font-size: 14px; }
  .tl__val { text-align: left; font-size: 17px; }
  .tl__axis > span { display: none; }
  .area2__map { aspect-ratio: 1 / 1.1; }
  .pin { font-size: 0; gap: 0; }
  .pin--home { font-size: 13px; gap: 8px; }
  .area2__list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin: 0; padding: 0; list-style: none; }
  .area2__list li { font-size: 14px; color: var(--brown-2); padding-left: 14px; position: relative; }
  .area2__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brick); }
  .area2__stats { gap: 24px; }
  .area2__stats b { font-size: 32px; }
}

/* Roboto Slab (the logo face) for headings, eyebrows and captions. No italic exists, so accents go lighter + copper instead. */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -.005em; }
.hero-b h1 { font-weight: 700; letter-spacing: -.01em; }
.h-display em, .h2 em, .h-story em { font-style: normal; font-weight: 300; color: var(--oak-2); }
.pull p, .owner__quote, .review--featured p { font-style: normal; font-weight: 400; }
.eyebrow, .gstrip figcaption, .band__grid figcaption, .story__photos figcaption, .hero-b__side a, .pull cite, .owner__quote cite, .area2__stats span, .ftr h4, .field label { font-family: var(--font-display); font-weight: 600; letter-spacing: .14em; }
.sv-sec__eyebrow { font-weight: 500; letter-spacing: .02em; }
.proc__num { font-weight: 400; -webkit-text-stroke: 1.2px var(--brick); }
.hero-b__wm { font-weight: 400; letter-spacing: .12em; -webkit-text-stroke: 1px rgba(255, 255, 255, .3); }
.tl__val, .area2__stats b, .strip__item b, .hdr__phone strong, .close__phone a { font-weight: 600; }

/* ==========================================================================
   Process (sticky head + outlined step numbers + timeline bars) and
   service-area map. Added after review.
   ========================================================================== */
.proc { background: var(--bone); }
.proc__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.proc__head { position: sticky; top: 120px; display: grid; gap: 18px; justify-items: start; }
.proc__head .lead { margin: 0; }
.proc__steps { margin: 0; padding: 0; list-style: none; display: grid; border-top: 1px solid var(--line-strong); }
.proc__step { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--line-strong); align-items: start; }
.proc__num { font-family: var(--font-display); font-size: 92px; line-height: .85; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--brick); letter-spacing: -.02em; transition: color .35s var(--ease); margin-top: 4px; }
.proc__step:hover .proc__num { color: var(--brick); }
.proc__body h3 { font-size: 27px; margin-bottom: 8px; }
.proc__body > p { color: var(--muted); margin: 0 0 16px; }
.proc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; }
.proc__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--brown-2); line-height: 1.45; }
.proc__list svg { width: 14px; height: 14px; color: var(--brick); flex: none; margin-top: 4px; }

.tl { margin-top: 84px; background: var(--charcoal); color: #fff; border-radius: 18px; padding: 52px 56px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.tl__head { display: grid; gap: 12px; }
.tl__head h3 { font-size: 32px; color: #fff; }
.tl__head p { color: rgba(255, 255, 255, .68); font-size: 15px; margin: 0; }
.tl__chart { display: grid; gap: 18px; }
.tl__row, .tl__axis { display: grid; grid-template-columns: 210px 1fr 130px; gap: 18px; align-items: center; }
.tl__label { font-size: 15px; color: rgba(255, 255, 255, .9); }
.tl__track { position: relative; height: 16px; background: rgba(255, 255, 255, .08); border-radius: 99px; overflow: visible; }
.tl__bar { position: absolute; top: 0; bottom: 0; left: calc(var(--s) / var(--max) * 100%); width: calc((var(--e) - var(--s)) / var(--max) * 100%); background: linear-gradient(90deg, var(--oak), var(--brick)); border-radius: 99px; transform-origin: left center; }
.tl__row--open .tl__bar::after { content: ""; position: absolute; left: 100%; top: 0; bottom: 0; width: 44px; background: linear-gradient(90deg, var(--brick), transparent); }
.tl__val { font-family: var(--font-display); font-weight: 700; font-size: 19px; text-align: right; white-space: nowrap; }
.tl__axis > div { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255, 255, 255, .5); font-weight: 600; letter-spacing: .04em; padding-top: 4px; border-top: 1px solid rgba(255, 255, 255, .12); }
.js .tl.rv .tl__bar { transform: scaleX(0); transition: transform 1.1s var(--ease); }
.js .tl.rv.in .tl__bar { transform: none; }
.js .tl.rv.in .tl__row:nth-child(2) .tl__bar { transition-delay: .12s; }
.js .tl.rv.in .tl__row:nth-child(3) .tl__bar { transition-delay: .24s; }
.js .tl.rv.in .tl__row:nth-child(4) .tl__bar { transition-delay: .36s; }

.area2 { background: var(--cream); }
.area2__in { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.area2__copy { display: grid; gap: 18px; }
.area2__copy .lead { margin: 0; }
.area2__stats { display: flex; gap: 40px; padding-top: 22px; border-top: 1px solid var(--line-strong); margin-top: 8px; }
.area2__stats div { display: grid; gap: 2px; }
.area2__stats b { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--espresso); line-height: 1; }
.area2__stats span { font-size: 13.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.area2__list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px 16px; margin: 0; padding: 0; list-style: none; }
.area2__list li { font-size: 14px; color: var(--brown-2); padding-left: 14px; position: relative; font-weight: 600; }
.area2__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brick); }
.area2__map { position: relative; aspect-ratio: 5 / 5.6; border-radius: 18px; overflow: hidden; background:
  radial-gradient(circle at var(--cx) var(--cy), rgba(194, 120, 58, .28), transparent 42%),
  linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 40px 40px,
  linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 40px 40px,
  var(--charcoal); box-shadow: var(--shadow); }
.area2__ring { position: absolute; left: var(--cx); top: var(--cy); width: var(--r); aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px dashed rgba(255, 255, 255, .16); border-radius: 50%; }
.area2__compass { position: absolute; right: 18px; top: 14px; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: rgba(255, 255, 255, .7); }
.area2__pins { margin: 0; padding: 0; list-style: none; position: absolute; inset: 0; }
.pin { position: absolute; left: calc(var(--x) * 100%); top: calc(var(--y) * 100%); transform: translate(-5px, -50%); display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .92); font-size: 12.5px; font-weight: 600; white-space: nowrap; letter-spacing: .01em; }
.pin::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .18); flex: none; }
.pin--l { flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin--home { color: var(--brick); font-size: 14px; font-weight: 800; transform: translate(-8px, -50%); z-index: 2; }
.pin--home::before { width: 16px; height: 16px; background: var(--brick); box-shadow: 0 0 0 5px rgba(194, 120, 58, .3); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 4px rgba(194, 120, 58, .35); } 70% { box-shadow: 0 0 0 16px rgba(194, 120, 58, 0); } 100% { box-shadow: 0 0 0 16px rgba(194, 120, 58, 0); } }
@media (prefers-reduced-motion: reduce) { .pin--home::before { animation: none; } }

@media (max-width: 1080px) {
  .proc__in { grid-template-columns: 1fr; gap: 40px; }
  .proc__head { position: static; }
  .tl { grid-template-columns: 1fr; padding: 40px 36px; gap: 32px; }
  .area2__in { grid-template-columns: 1fr; gap: 40px; }
  .area2__map { max-width: 620px; }
}
@media (max-width: 720px) {
  .proc__step { grid-template-columns: 64px 1fr; gap: 16px; padding: 26px 0; }
  .proc__num { font-size: 52px; }
  .proc__body h3 { font-size: 22px; }
  .proc__list { grid-template-columns: 1fr; }
  .tl { padding: 30px 22px; margin-top: 56px; border-radius: 14px; }
  .tl__row, .tl__axis { grid-template-columns: 1fr; gap: 6px; }
  .tl__label { font-size: 14px; }
  .tl__val { text-align: left; font-size: 17px; }
  .tl__axis > span { display: none; }
  .area2__map { aspect-ratio: 1 / 1.1; }
  .pin { font-size: 0; gap: 0; }
  .pin--home { font-size: 13px; gap: 8px; }
  .area2__list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin: 0; padding: 0; list-style: none; }
  .area2__list li { font-size: 14px; color: var(--brown-2); padding-left: 14px; position: relative; }
  .area2__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brick); }
  .area2__stats { gap: 24px; }
  .area2__stats b { font-size: 32px; }
}


/* ==========================================================================
   Google Map panel, equal photo strip, logo-font labels (added after review)
   ========================================================================== */
.gmap { position: relative; aspect-ratio: 5 / 4.2; border-radius: 18px; overflow: hidden; background: var(--charcoal); box-shadow: var(--shadow); }
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.gmap__btn { position: absolute; left: 16px; bottom: 16px; z-index: 2; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .6); }
.gmap__btn svg { width: 18px; height: 18px; }

.gstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gstrip figure { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); background: var(--oak-tint); box-shadow: var(--shadow-sm); }
.gstrip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gstrip figure:hover img { transform: scale(1.04); }
.gstrip figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 10px; border-radius: 3px; background: rgba(27, 21, 18, .72); color: var(--cream); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); }

@media (max-width: 720px) {
  .gstrip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gmap { aspect-ratio: 1 / 1; }
  .area2__list { grid-template-columns: 1fr 1fr; }
}


/* ==========================================================================
   Home page: choose-a-service grid
   ========================================================================== */
.choose { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.ch { grid-column: span 2; display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: #fff; background: var(--panel); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 44px -22px rgba(0, 0, 0, .7); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ch:nth-child(4) { grid-column: 2 / span 2; }
.ch:nth-child(5) { grid-column: 4 / span 2; }
.ch:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -24px rgba(0, 0, 0, .8); }
.ch__img { aspect-ratio: 16 / 10; overflow: hidden; background: #333; }
.ch__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ch:hover .ch__img img { transform: scale(1.05); }
.ch__body { padding: 26px 26px 26px; display: grid; gap: 10px; align-content: start; }
.ch__body h3 { font-size: 26px; color: #fff; line-height: 1.15; }
.ch__body p { margin: 0; color: rgba(255, 255, 255, .9); font-size: 16px; }
.ch__body .sv__list { margin-bottom: 8px; }
.ch__body .sv__link { margin-top: auto; color: var(--oak-light); }
.ch:hover .sv__link::after { width: 58px; }
@media (max-width: 1080px) {
  .choose { grid-template-columns: 1fr 1fr; }
  .ch, .ch:nth-child(4), .ch:nth-child(5) { grid-column: auto; }
}
@media (max-width: 720px) {
  .choose { grid-template-columns: 1fr; gap: 16px; }
  .ch__body h3 { font-size: 23px; }
}

/* Simple home: chooser sits flush against the footer */
.sv-sec--home { padding-bottom: 120px; }
