/* =================================================================
   WE ARE MEANT TO MOVE — "Colorado Alpenglow" design system
   Shared tokens + components. Mobile-first.
   ================================================================= */

/* ---- Tokens ---- */
:root {
  /* Warm neutrals (bone paper -> warm charcoal ink) */
  --bone:      #F8F4ED;
  --bone-deep: #F1EADD;
  --sand:      #EDE3D3;
  --stone-100: #E4D9C7;
  --stone-200: #D3C5AF;
  --stone-300: #B8A88E;
  --stone-500: #8A7C68;
  --stone-600: #6B5F4F;
  --ink:       #211C17;
  --ink-soft:  #4A4137;
  --paper:     #FFFFFF;

  /* Alpenglow clay (primary) */
  --clay:      #B5491F;
  --clay-deep: #8E3717;
  --clay-bright:#CB5A2C;
  --clay-tint: #F4E3D8;

  /* Deep pine (secondary) */
  --pine:      #2E4A3A;
  --pine-soft: #4E6B58;
  --pine-tint: #E3EAE2;

  /* Slate sky (tertiary, sparing) */
  --sky:       #5E7C92;

  /* Type */
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", monospace;
  --serif: "Newsreader", Georgia, serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows (warm-tinted) */
  --sh-sm: 0 1px 2px rgba(33,28,23,.06), 0 2px 8px rgba(33,28,23,.04);
  --sh-md: 0 4px 14px rgba(33,28,23,.08), 0 12px 32px rgba(33,28,23,.06);
  --sh-lg: 0 10px 30px rgba(33,28,23,.12), 0 30px 70px rgba(33,28,23,.10);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.04; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
p  { text-wrap: pretty; }
em.serif, .serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow.on-dark { color: var(--clay-bright); }
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section-sm { padding-block: clamp(40px, 6vw, 72px); }
.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.25rem; }
.center { text-align: center; }
.muted { color: var(--stone-600); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.6em;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 6px 18px rgba(181,73,31,.28); }
.btn-primary:hover { background: var(--clay-deep); box-shadow: 0 8px 24px rgba(181,73,31,.36); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--stone-300); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost.on-dark { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.btn-ghost.on-dark:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 1.1em 2em; font-size: 1.08rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Chips / tags ---- */
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5em 0.85em;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--stone-200);
  white-space: nowrap;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
.chip.on-dark { background: rgba(255,255,255,.08); color: #EFE7DA; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }

/* ---- Cards ---- */
.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(33,28,23,.05);
}

/* =================================================================
   NAVBAR (injected by site.js)
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 1.02rem; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo .mark { height: 30px; width: 30px; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.95rem; transition: background .15s, color .15s; }
.nav-links a:hover { background: rgba(33,28,23,.06); }
.nav-cta { display: none; }
.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s, opacity .2s; }

/* transparent-over-hero state */
/* white logo png -> ink on light nav, stays white on transparent/hero nav */
.nav.is-solid .nav-logo .mark { filter: brightness(0) saturate(1); }
.nav.is-transparent { color: #fff; }
.nav.is-transparent .nav-logo .wordmark { color: #fff; }
.nav.is-solid {
  background: rgba(248,244,237,.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(33,28,23,.08);
  color: var(--ink);
}
.nav.is-solid .nav-cta { display: inline-flex; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  color: var(--bone);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a .idx { font-family: var(--mono); font-size: .8rem; color: var(--clay-bright); font-weight: 500; }
.mobile-menu .mm-cta { margin-top: 28px; }
.mobile-menu .mm-contact { margin-top: auto; font-family: var(--mono); font-size: .8rem; color: var(--stone-300); letter-spacing: .04em; line-height: 1.9; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav.is-solid .nav-cta { display: inline-flex; }
}

/* =================================================================
   STICKY MOBILE CTA BAR (injected)
   ================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; gap: 10px; padding: 12px var(--gutter) max(12px, env(safe-area-inset-bottom));
  background: rgba(248,244,237,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(33,28,23,.08);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn-call { flex: 0 0 auto; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* =================================================================
   FOOTER (injected)
   ================================================================= */
.footer { background: var(--ink); color: var(--stone-200); padding-block: clamp(48px, 7vw, 84px) 28px; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer h4 { color: #fff; font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-brand img { height: 38px; margin-bottom: 18px; }
.footer-brand p { color: var(--stone-300); max-width: 30ch; }
.footer nav a { display: block; padding: 6px 0; color: var(--stone-200); font-weight: 500; }
.footer .nap { font-style: normal; line-height: 1.9; color: var(--stone-200); }
.footer .nap a { color: #fff; font-weight: 600; }
.footer-hours { font-family: var(--mono); font-size: .82rem; line-height: 1.9; color: var(--stone-300); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--stone-500); }
.footer-bottom a { color: var(--stone-300); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; } }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   FAQ ACCORDION
   ================================================================= */
.faq-item { border-bottom: 1px solid var(--stone-200); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; text-align: left; font-weight: 700; font-size: clamp(1.05rem,2.2vw,1.25rem); letter-spacing: -.01em; }
.faq-q .ico { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--clay); border-radius: 2px; inset: 0; margin: auto; }
.faq-q .ico::before { width: 16px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 16px; transition: transform .3s; }
.faq-item.open .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-soft); max-width: 64ch; line-height: 1.65; }

/* =================================================================
   SHARED SECTION PIECES
   ================================================================= */
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }

/* marquee of credentials */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: scroll-x 32s linear infinite; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* NAP / hours table */
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--stone-200); font-size: .95rem; }
.hours-row.closed { color: var(--stone-500); }
.hours-row .day { font-weight: 600; }
.hours-row .time { font-family: var(--mono); font-size: .85rem; }

/* image frame */
.imgframe { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--sand); position: relative; }
.imgframe img { width: 100%; height: 100%; object-fit: cover; }

/* placeholder block */
.ph {
  position: relative; border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, rgba(138,124,104,.10) 0 10px, rgba(138,124,104,.04) 10px 20px),
    var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-600); font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(138,124,104,.2);
}

/* =================================================================
   HOME PAGE SECTIONS
   ================================================================= */

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(20,15,11,.45) 0%, rgba(20,15,11,.12) 30%, rgba(20,15,11,.55) 78%, rgba(20,15,11,.86) 100%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(48px, 9vh, 110px); padding-top: calc(var(--nav-h) + 30px); }
.hero h1 { color: #fff; margin: 18px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 .serif { color: var(--clay-bright); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.35rem); max-width: 52ch; margin-top: 22px; color: rgba(255,255,255,.92); line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 40px; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.hero-trust span { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.72); margin-top: 5px; text-transform: uppercase; }
.hero-scroll { position: absolute; right: var(--gutter); bottom: 26px; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }
@media (min-width: 900px) { .hero-scroll { display: inline-flex; } }

/* CREDS marquee */
.creds { background: var(--ink); padding-block: 22px; }
.creds .chip { background: rgba(255,255,255,.06); color: #EFE7DA; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }

/* PAIN */
.pain-grid { display: grid; gap: 28px; }
@media (min-width: 860px) { .pain-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }

/* SERVICES */
.services { background: var(--bone-deep); }
.svc-grid { display: grid; gap: 16px; margin-top: 44px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card { background: var(--paper); border-radius: var(--r-lg); padding: 28px 24px 24px; box-shadow: var(--sh-sm);
  border: 1px solid rgba(33,28,23,.05); display: flex; flex-direction: column; min-height: 240px;
  transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.svc-num { font-family: var(--mono); font-size: .8rem; color: var(--clay); letter-spacing: .1em; }
.svc-card h3 { margin: 14px 0 10px; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.svc-link { margin-top: 18px; font-weight: 700; color: var(--clay); font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

/* PROCESS */
.process { background: var(--ink); color: var(--bone); }
.process .eyebrow { color: var(--clay-bright); }
.process h2 { color: #fff; }
.process-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 920px) { .process-grid { grid-template-columns: 1.05fr .95fr; gap: 72px; } }
.steps { margin-top: 36px; display: flex; flex-direction: column; gap: 30px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-n { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 1.05rem; color: var(--clay-bright);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22); }
.steps h4 { color: #fff; margin-bottom: 6px; font-size: 1.25rem; }
.steps p { color: rgba(248,244,237,.74); max-width: 46ch; }
.process-media .imgframe { aspect-ratio: 4/5; }
@media (max-width: 919px) { .process-media .imgframe { aspect-ratio: 16/10; } }

/* ABOUT teaser */
.about-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 920px) { .about-grid { grid-template-columns: .9fr 1.1fr; gap: 72px; } }
.about-media .imgframe { aspect-ratio: 4/5; max-width: 460px; }
.about-copy h2 { margin: 10px 0 18px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.nowrap { white-space: nowrap; }

/* PRICE band */
.price-band { background: var(--clay); color: #fff; padding-block: clamp(56px, 8vw, 100px); }
.price-band h2 { color: #fff; }
.price-inner { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) { .price-inner { grid-template-columns: 1.3fr .7fr; gap: 64px; } }
.price-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-xl);
  padding: 38px 32px; text-align: center; backdrop-filter: blur(6px); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-fig { font-size: clamp(3.4rem, 9vw, 5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price-unit { font-family: var(--mono); font-size: .9rem; color: rgba(255,255,255,.8); letter-spacing: .06em; margin-bottom: 20px; }
.price-card .btn-primary { background: #fff; color: var(--clay-deep); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.price-card .btn-primary:hover { background: var(--bone); }
.price-detail { margin-top: 14px; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }

/* LOCATION */
.location-grid { display: grid; gap: 44px; align-items: start; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.loc-block { margin: 30px 0; max-width: 420px; }
.loc-block h4 { font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone-600); margin-bottom: 10px; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 1/1; background: var(--sand); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 900px) { .map-frame { aspect-ratio: 4/5; } }

/* FINAL CTA */
.final-cta { background: var(--bone-deep); }
.final-cta h2 { margin: 8px 0 16px; }

/* =================================================================
   INTERIOR PAGES (about / services / cost / contact / faqs)
   ================================================================= */
.page-hero { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 86px)); padding-bottom: clamp(28px, 5vw, 60px); background: var(--bone-deep); }
.page-hero .wrap { max-width: 980px; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); margin: 16px 0 0; }
.page-hero .lead { margin-top: 22px; max-width: 56ch; }

/* image band under page hero */
.page-band { height: clamp(220px, 38vw, 440px); overflow: hidden; }
.page-band img { width: 100%; height: 100%; object-fit: cover; }

/* prose */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; }
.prose h3 { margin: 2.2rem 0 .8rem; }
.prose strong { color: var(--ink); }

/* generic two-column */
.two-col { display: grid; gap: 40px; align-items: start; }
@media (min-width: 920px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } }
.two-col.media-left { }
.sticky-side { position: sticky; top: calc(var(--nav-h) + 24px); }

/* SERVICE detail rows */
.svc-detail { display: grid; gap: 36px; align-items: center; padding-block: clamp(40px, 6vw, 72px); border-top: 1px solid var(--stone-200); scroll-margin-top: calc(var(--nav-h) + 20px); }
.svc-detail:first-of-type { border-top: none; }
@media (min-width: 900px) { .svc-detail { grid-template-columns: 1fr 1fr; gap: 64px; } .svc-detail.flip .svc-detail-media { order: -1; } }
.svc-detail-media .imgframe { aspect-ratio: 4/3; }
.svc-detail .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 20px; }
.svc-detail h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.svc-detail ul.ticks { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
ul.ticks li::before { content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--clay-tint); color: var(--clay); font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1.5px rgba(181,73,31,.45); }

/* stat row */
.stat-row { display: grid; gap: 24px; grid-template-columns: repeat(2,1fr); margin-top: 40px; }
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat { }
.stat .num { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.03em; color: var(--clay); line-height: 1; }
.stat .lbl { font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-600); margin-top: 8px; }

/* testimonial */
.quote-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(28px,5vw,52px); box-shadow: var(--sh-sm); border: 1px solid rgba(33,28,23,.05); }
.quote-card blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.1rem); line-height: 1.34; color: var(--ink); }
.quote-card .by { margin-top: 22px; font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone-600); }

/* about page specifics */
.about-hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.cert-list { display: grid; gap: 14px; margin-top: 8px; }
.cert-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--sh-sm); border: 1px solid rgba(33,28,23,.05); }
.cert-list .ci { flex: 0 0 auto; font-family: var(--mono); font-size: .78rem; color: var(--clay); font-weight: 600; padding-top: 2px; }
.cert-list strong { display: block; }
.cert-list small { color: var(--stone-600); font-size: .9rem; }

/* cost page */
.cost-card { max-width: 520px; margin-inline: auto; text-align: center; background: var(--paper); border-radius: var(--r-xl); padding: clamp(32px,6vw,56px); box-shadow: var(--sh-lg); border: 1px solid rgba(33,28,23,.06); position: relative; }
.cost-card .ribbon { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); }
.cost-card .big { font-size: clamp(4rem, 12vw, 6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin: 10px 0 2px; }
.cost-card .per { font-family: var(--mono); color: var(--stone-600); letter-spacing: .04em; margin-bottom: 26px; }
.cost-card ul.ticks { text-align: left; max-width: 360px; margin: 0 auto 30px; }

/* contact page */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone-600); }
.field input, .field textarea, .field select { font: inherit; padding: 14px 16px; border-radius: var(--r-md); border: 1.5px solid var(--stone-200); background: var(--paper); color: var(--ink); transition: border-color .15s, box-shadow .15s; width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(181,73,31,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: var(--clay-deep); font-size: .82rem; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--clay-deep); }
.form-success { display: none; background: var(--pine-tint); border: 1.5px solid var(--pine-soft); color: var(--pine); padding: 20px 22px; border-radius: var(--r-md); font-weight: 600; }
.contact-info-card { background: var(--ink); color: var(--bone); border-radius: var(--r-lg); padding: clamp(28px,5vw,40px); }
.contact-info-card h3 { color: #fff; }
.contact-info-card .ci-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-card .ci-row .k { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay-bright); flex: 0 0 84px; padding-top: 3px; }
.contact-info-card a { color: #fff; font-weight: 600; }
.contact-info-card .ci-row .v { color: var(--stone-200); }

/* neighborhoods chips */
.hood-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* FAQ page width */
.faq-wrap { max-width: 820px; }

/* skip link for a11y */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
