/* ============================================================
   COPPER & MAIN — emergency plumber, phone-first
   Tokens → base → components → sections → inner → motion
   Only transform/opacity animate. No transition-all.
   ============================================================ */

:root {
  --paper:      #f1f3f2;   /* cool light ground */
  --card:       #ffffff;   /* raised panel */
  --ink:        #16191b;   /* primary text */
  --slate:      #5e6a6c;   /* secondary text */
  --copper:     #c0673a;   /* PRIMARY accent = the CALL color */
  --copper-deep:#9e5230;   /* hover/active */
  --copper-soft:#f3e2d7;   /* tint fill */
  --graphite:   #14191b;   /* dark bands */
  --graphite-2: #1e262a;   /* raised on dark */
  --live:       #3fa46a;   /* 24/7 status pulse ONLY */
  --line:       #dce0de;   /* hairline on paper */

  --on-dark-fg:  #eef1f0;
  --on-dark-dim: #9aa6a6;
  --on-dark-line: rgba(238,241,240,.14);

  --display: "Archivo", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, Menlo, monospace;

  --fs-body: 1.0625rem;
  --fs-lede: clamp(1.15rem, 1.02rem + .55vw, 1.4rem);
  --fs-h3: clamp(1.2rem, 1.05rem + .7vw, 1.55rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  --fs-h1: clamp(2.4rem, 1.7rem + 3.4vw, 4.4rem);

  --pad-x: clamp(1.15rem, .6rem + 3vw, 4rem);
  --section-y: clamp(3.5rem, 2.4rem + 5vw, 7rem);
  --maxw: 1240px;
  --measure: 64ch;

  --sh-1: 0 1px 2px rgba(22,25,27,.05), 0 4px 12px rgba(22,25,27,.05);
  --sh-2: 0 2px 4px rgba(22,25,27,.06), 0 12px 30px rgba(22,25,27,.09);
  --sh-3: 0 4px 8px rgba(22,25,27,.08), 0 24px 60px rgba(22,25,27,.14);
  --sh-copper: 0 4px 14px rgba(192,103,58,.32);

  --radius: 5px;
  --radius-lg: 10px;
  --e-firm: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1rem;
  display: block;
}

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.measure { max-width: var(--measure); }

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--copper); color: #fff;
  padding: .6rem 1rem; border-radius: var(--radius); z-index: 400;
  transition: top .2s var(--e-firm);
}
.skip-link:focus { top: 8px; }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
.header--on-dark :focus-visible, [data-header-color="dark"] :focus-visible { outline-color: #e79a72; }

/* ============================================================
   SIGNATURE — the copper run
   ============================================================ */
.run { display: flex; align-items: center; width: 100%; max-width: 260px; margin: 1.4rem 0; }
.run-line { flex: 1; height: 2px; background: var(--copper); opacity: .85; position: relative; }
.run-node {
  width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%;
  border: 2px solid var(--copper); background: var(--paper);
}
.run-elbow { width: 12px; height: 12px; flex: 0 0 auto; border: 2px solid var(--copper); border-left: none; border-bottom: none; }
.run--center { margin-inline: auto; }
.run--dark .run-line { background: var(--copper); opacity: .9; }
.run--dark .run-node { background: var(--graphite); }
/* shimmer along the run */
@keyframes runshimmer { 0% { background-position: -120% 0; } 100% { background-position: 220% 0; } }
.run-line::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,220,190,.9), transparent);
  background-size: 40% 100%; background-repeat: no-repeat;
  animation: runshimmer 3.4s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .run-line::after { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--radius);
  background: var(--copper); color: #fff; border: 1px solid var(--copper);
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--e-firm), background-color .25s var(--e-firm), box-shadow .25s var(--e-firm);
  box-shadow: var(--sh-1);
}
.btn:hover { background: var(--copper-deep); border-color: var(--copper-deep); transform: translateY(-2px); box-shadow: var(--sh-copper); }
.btn:active { transform: translateY(0); }
.btn--call { font-weight: 700; }
.btn--call .ico { width: 1.05em; height: 1.05em; fill: currentColor; flex: 0 0 auto; }
.btn--lg { padding: 1.15rem 1.9rem; font-size: 1.08rem; }
.btn--xl { padding: 1.35rem 2.3rem; font-size: 1.2rem; border-radius: 7px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
.btn--on-dark.btn--ghost { color: var(--on-dark-fg); border-color: var(--on-dark-line); }
.btn--on-dark.btn--ghost:hover { background: var(--on-dark-fg); color: var(--graphite); border-color: var(--on-dark-fg); }
.btn--block { width: 100%; justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--copper); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(192,103,58,.35); padding-bottom: 1px;
  transition: border-color .2s var(--e-firm);
}
.text-link:hover { border-color: var(--copper); }
.text-link .arw { transition: transform .25s var(--e-firm); }
.text-link:hover .arw { transform: translateX(3px); }

/* phone link (mono) */
.phone-link { font-family: var(--mono); font-weight: 700; text-decoration: none; color: inherit; white-space: nowrap; }
.phone-link:hover { color: var(--copper); }

/* live pulse */
.pulse-wrap { display: inline-flex; align-items: center; gap: .5rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--live); position: relative; flex: 0 0 auto; }
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--live);
  animation: pulsering 2s ease-out infinite;
}
@keyframes pulsering { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(3); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pulse::after { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .7rem var(--pad-x);
  transition: background-color .3s var(--e-firm), box-shadow .3s var(--e-firm), border-color .3s var(--e-firm);
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck { background: rgba(241,243,242,.92); backdrop-filter: saturate(1.2) blur(10px); border-bottom-color: var(--line); box-shadow: var(--sh-1); }
.site-head.header--on-dark { color: var(--on-dark-fg); }
.site-head.header--on-dark.is-stuck { background: rgba(20,25,27,.78); border-bottom-color: var(--on-dark-line); }

.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 800; font-size: 1.24rem; letter-spacing: -.03em; color: inherit; text-decoration: none; margin-right: auto; }
.brand-mark { width: 26px; height: 26px; flex: 0 0 auto; }
.brand span { color: var(--copper); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a:not(.nav-cta):not(.head-phone) { font-size: .93rem; font-weight: 500; text-decoration: none; color: inherit; opacity: .85; position: relative; padding: .3rem 0; transition: opacity .2s var(--e-firm); }
.site-nav a:not(.nav-cta):not(.head-phone)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--e-firm); }
.site-nav a:not(.nav-cta):not(.head-phone):hover { opacity: 1; }
.site-nav a:not(.nav-cta):not(.head-phone):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { opacity: 1; color: var(--copper); }

.head-phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--mono); font-weight: 700; font-size: 1rem; text-decoration: none; color: inherit; white-space: nowrap; }
.head-phone .ico { width: .95em; height: .95em; fill: var(--copper); }
.head-phone:hover { color: var(--copper); }
.head-24 { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--live); display: block; }

@media (max-width: 940px) { .site-nav a:not(.nav-cta):not(.head-phone) { display: none; } }
@media (max-width: 620px) { .site-nav .nav-cta { display: none; } .head-phone { font-size: .92rem; } }

/* mobile menu btn */
.menu-btn { display: none; width: 44px; height: 40px; border: 1px solid currentColor; border-radius: var(--radius); background: transparent; color: inherit; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-line { width: 18px; height: 1.5px; background: currentColor; display: block; transition: transform .3s var(--e-firm), opacity .2s; }
@media (max-width: 940px) { .menu-btn { display: inline-flex; } }
body.menu-open .menu-line:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
body.menu-open .menu-line:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.menu-overlay { position: fixed; inset: 0; z-index: 190; background: var(--graphite); color: var(--on-dark-fg); display: flex; flex-direction: column; justify-content: center; gap: .2rem; padding: clamp(2rem,8vw,4rem) var(--pad-x) 3rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .35s var(--e-firm), transform .35s var(--e-firm), visibility 0s .35s; }
body.menu-open .menu-overlay { opacity: 1; visibility: visible; transform: none; transition: opacity .35s var(--e-firm), transform .35s var(--e-firm); }
.menu-links { display: flex; flex-direction: column; gap: .1rem; }
.menu-links a { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem,6vw,2.4rem); color: var(--on-dark-fg); text-decoration: none; padding: .3rem 0; transition: color .2s var(--e-firm), transform .2s var(--e-firm); }
.menu-links a:hover { color: var(--copper); transform: translateX(6px); }
.menu-hr { height: 2px; background: var(--copper); opacity: .8; margin: 1.4rem 0; width: 60px; }
.menu-call { align-self: flex-start; margin-top: .4rem; }
.menu-nap { font-family: var(--mono); font-size: .8rem; color: var(--on-dark-dim); margin-top: 1.4rem; line-height: 1.9; }
.menu-nap a { color: var(--on-dark-fg); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; display: none; gap: .6rem; padding: .6rem clamp(.7rem,3vw,1rem) calc(.6rem + env(safe-area-inset-bottom)); background: rgba(20,25,27,.96); backdrop-filter: blur(8px); border-top: 2px solid var(--copper); }
.callbar .btn { flex: 1 1 auto; justify-content: center; }
.callbar .btn--ghost { color: var(--on-dark-fg); border-color: var(--on-dark-line); background: transparent; flex: 0 1 42%; }
.callbar .btn--ghost:hover { background: var(--on-dark-fg); color: var(--graphite); }
body.callbar-on .callbar { display: flex; }
body.callbar-on { padding-bottom: 68px; }
@media (min-width: 821px) { body.callbar-on { padding-bottom: 0; } body.callbar-on .callbar { display: none; } }
body.menu-open .callbar, body.modal-open .callbar { display: none !important; }

/* ============================================================
   HERO — call-first
   ============================================================ */
.hero { position: relative; background: var(--graphite); color: var(--on-dark-fg); overflow: hidden; padding-top: clamp(6.5rem,12vh,9.5rem); padding-bottom: clamp(3rem,6vw,5rem); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(96deg, rgba(20,25,27,.95) 0%, rgba(20,25,27,.9) 44%, rgba(20,25,27,.55) 78%, rgba(20,25,27,.4) 100%), linear-gradient(0deg, rgba(20,25,27,.85), rgba(20,25,27,.1) 42%); }
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero .hero-lede { font-size: var(--fs-lede); color: var(--on-dark-fg); opacity: .93; max-width: 50ch; margin-bottom: 1.7rem; }
.hero-avail { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-fg); margin-bottom: 1.5rem; }
.hero-call { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.hero-call .num { font-family: var(--mono); font-weight: 700; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); color: #fff; text-decoration: none; letter-spacing: -.01em; }
.hero-call .num:hover { color: var(--copper); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: .2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: clamp(2rem,4vw,3rem); border-top: 1px solid var(--on-dark-line); }
.hero-stat { flex: 1 1 150px; padding: 1.2rem 1.3rem 0 0; margin-top: 1.2rem; }
.hero-stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem,1.1rem+1.2vw,1.9rem); color: #fff; display: block; letter-spacing: -.02em; }
.hero-stat .lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .35rem; display: block; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--card); border-block: 1px solid var(--line); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.8rem; padding-block: 1.4rem; }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .76rem; letter-spacing: .03em; color: var(--slate); text-transform: uppercase; }
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex: 0 0 auto; }
.trust-item b { color: var(--ink); font-weight: 700; }
.trust-item .star { color: var(--copper); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 640px; margin-bottom: clamp(2rem,4vw,3rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .run { margin-inline: auto; }
.sec-head p { color: var(--slate); margin-top: .9rem; margin-bottom: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.4rem); }
.svc-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--sh-1); transition: transform .3s var(--e-firm), box-shadow .3s var(--e-firm), border-color .3s var(--e-firm); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--copper); }
.svc-media { aspect-ratio: 4/3; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e-firm); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: .45rem; font-size: 1.15rem; }
.svc-body p { color: var(--slate); font-size: .92rem; margin-bottom: 1rem; }
.svc-more { margin-top: auto; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--copper); display: inline-flex; align-items: center; gap: .5rem; }
.svc-more .arw { transition: transform .25s var(--e-firm); }
.svc-card:hover .svc-more .arw { transform: translateX(4px); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.why { background: var(--paper); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2.5vw,1.8rem); }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--sh-1); }
.feat-ico { width: 40px; height: 40px; border-radius: 9px; background: var(--copper-soft); color: var(--copper); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feat-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--copper); stroke-width: 2; }
.feat h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.feat p { color: var(--slate); font-size: .93rem; margin: 0; }
@media (max-width: 800px) { .feat-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--card); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,2rem); }
.step { position: relative; }
.step-num { font-family: var(--mono); font-weight: 700; font-size: 1rem; color: #fff; background: var(--copper); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.step p { color: var(--slate); font-size: .93rem; margin: 0; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   BEFORE / AFTER (reused from Trueline)
   ============================================================ */
.ba-wrap { display: grid; gap: clamp(1.5rem,3vw,2.5rem); }
.ba { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-2); border: 1px solid var(--line); user-select: none; touch-action: pan-y; background: var(--graphite); }
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-tag { position: absolute; bottom: 1rem; z-index: 4; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(20,25,27,.74); backdrop-filter: blur(3px); padding: .4rem .7rem; border-radius: 3px; }
.ba-tag--before { left: 1rem; }
.ba-tag--after { right: 1rem; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 5; width: 2px; background: #fff; transform: translateX(-1px); cursor: ew-resize; }
.ba-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-2); display: flex; align-items: center; justify-content: center; gap: 3px; }
.ba-grip::before, .ba-grip::after { content: ""; width: 0; height: 0; border-block: 5px solid transparent; }
.ba-grip::before { border-right: 6px solid var(--copper); }
.ba-grip::after { border-left: 6px solid var(--copper); }
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-grip { outline: 2px solid var(--copper); outline-offset: 3px; }
.ba-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-top: .9rem; flex-wrap: wrap; }
.ba-caption h3 { font-size: 1.1rem; }
.ba-caption .meta { font-family: var(--mono); font-size: .76rem; color: var(--copper); }
@media (min-width: 820px) { .ba-wrap.ba-2 { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--paper); }
.areas-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chip { font-family: var(--mono); font-size: .82rem; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem; text-decoration: none; transition: border-color .2s, color .2s, transform .2s; }
.area-chip:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }
.area-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-2); aspect-ratio: 4/3; }
.area-map img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .areas-grid { grid-template-columns: 1fr; } .area-map { order: -1; aspect-ratio: 16/9; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--card); border-block: 1px solid var(--line); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.2vw,1.5rem); }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--copper); letter-spacing: .12em; font-size: .8rem; margin-bottom: .8rem; }
.rev-quote { font-size: .96rem; color: var(--ink); margin-bottom: 1.1rem; }
.rev-who { margin-top: auto; font-size: .85rem; }
.rev-who b { font-weight: 700; }
.rev-who .rev-meta { font-family: var(--mono); font-size: .72rem; color: var(--slate); display: block; margin-top: .2rem; }
.rev-agg { text-align: center; margin-top: 2rem; font-family: var(--mono); font-size: .82rem; color: var(--slate); }
.rev-agg b { color: var(--ink); }
@media (max-width: 860px) { .rev-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   DARK CTA / CALL BAND
   ============================================================ */
.band-dark { background: var(--graphite); color: var(--on-dark-fg); position: relative; }
.band-dark .eyebrow { color: #e79a72; }
.callband { text-align: center; }
.callband h2 { color: #fff; margin-bottom: 1rem; }
.callband p { color: var(--on-dark-dim); max-width: 46ch; margin-inline: auto; margin-bottom: 1.8rem; }
.callband .num { display: block; font-family: var(--mono); font-weight: 700; font-size: clamp(2rem,1.2rem+3vw,3.4rem); color: #fff; text-decoration: none; margin-bottom: 1.4rem; letter-spacing: -.01em; }
.callband .num:hover { color: var(--copper); }
.callband .avail { display: inline-flex; }

/* pricing band */
.pricing-band { background: var(--copper-soft); border-block: 1px solid #e6cdbc; }
.pricing-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.pricing-grid h2 { margin-bottom: .7rem; }
.pricing-grid p { color: var(--ink); opacity: .85; margin: 0; max-width: 56ch; }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FORM
   ============================================================ */
.form-section { background: var(--paper); }
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.form-intro h2 { margin-bottom: 1rem; }
.form-intro p { color: var(--slate); }
.form-intro .form-callout { margin-top: 1.6rem; padding: 1.2rem 1.3rem; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--copper); border-radius: var(--radius); }
.form-intro .form-callout .num { font-family: var(--mono); font-weight: 700; font-size: 1.35rem; color: var(--copper); text-decoration: none; }
.form-intro .form-callout p { margin: .3rem 0 0; font-size: .88rem; }
.lead-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--sh-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); margin-bottom: .45rem; }
.field input, .field select, .field textarea { font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem .9rem; width: 100%; transition: border-color .2s var(--e-firm), box-shadow .2s var(--e-firm); }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(192,103,58,.14); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--copper-deep); }
.lead-form .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.form-hint { font-family: var(--mono); font-size: .76rem; color: var(--slate); margin: 1rem 0 0; text-align: center; }
.form-hint a { color: var(--copper); }
.form-confirm { text-align: center; padding: 1.5rem 0; }
.form-confirm .eyebrow { color: var(--copper); }
.form-confirm h3 { font-size: 1.4rem; }
@media (max-width: 800px) { .form-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--graphite); color: var(--on-dark-fg); padding-top: clamp(3rem,6vw,5.5rem); padding-bottom: 2.5rem; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2rem; padding-bottom: 2.5rem; }
.foot-brand { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem,4vw,2.6rem); letter-spacing: -.03em; color: #fff; line-height: 1; }
.foot-brand span { color: var(--copper); }
.foot-tag { font-family: var(--mono); font-size: .78rem; color: var(--on-dark-dim); letter-spacing: .1em; text-transform: uppercase; margin-top: .9rem; }
.foot-phone { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-family: var(--mono); font-weight: 700; font-size: 1.25rem; color: #fff; text-decoration: none; }
.foot-phone:hover { color: var(--copper); }
.foot-col h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; font-weight: 700; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.foot-col a, .foot-col address { color: var(--on-dark-fg); text-decoration: none; opacity: .85; font-style: normal; font-size: .9rem; line-height: 1.7; transition: opacity .2s, color .2s; }
.foot-col a:hover { opacity: 1; color: var(--copper); }
.foot-nap { font-family: var(--mono); font-size: .8rem; color: var(--on-dark-dim); line-height: 2; }
.foot-nap a { color: var(--on-dark-fg); }
.foot-sig { border-top: 1px solid var(--on-dark-line); margin: 0; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-family: var(--mono); font-size: .72rem; color: var(--on-dark-dim); }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand-col { grid-column: 1 / -1; } }
@media (max-width: 500px) { .foot-top { grid-template-columns: 1fr; } }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { background: var(--graphite); color: var(--on-dark-fg); position: relative; overflow: hidden; padding-top: clamp(6.5rem,13vh,9.5rem); padding-bottom: clamp(2.5rem,5vw,4rem); }
.page-hero .hero-media::after { background: linear-gradient(96deg, rgba(20,25,27,.95), rgba(20,25,27,.72) 62%, rgba(20,25,27,.5)); }
.page-hero-inner { position: relative; z-index: 1; max-width: 740px; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lede { font-size: var(--fs-lede); color: var(--on-dark-fg); opacity: .92; max-width: 54ch; margin-bottom: 1.4rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; align-items: center; }
.crumbs { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--on-dark-dim); margin-bottom: 1.3rem; }
.crumbs a { color: var(--on-dark-dim); text-decoration: none; }
.crumbs a:hover { color: var(--copper); }

.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.5rem,1.2rem+1.4vw,2.1rem); margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p { color: var(--ink); margin-bottom: 1rem; }
.prose p.dim, .prose .dim { color: var(--slate); }
.prose ul { padding-left: 0; list-style: none; margin: 1rem 0 1.4rem; display: grid; gap: .65rem; }
.prose ul li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 2px; background: var(--copper); }
.prose strong { font-weight: 600; }
.prose a:not(.btn) { color: var(--copper); text-decoration: underline; text-decoration-color: rgba(192,103,58,.35); text-underline-offset: 3px; }

.content-2 { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px) { .content-2 { grid-template-columns: 1fr; } }
.aside-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--sh-1); position: sticky; top: 84px; }
.aside-card h3 { font-size: 1.12rem; margin-bottom: 1rem; }
.aside-card .kv { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-top: 1px solid var(--line); font-size: .9rem; }
.aside-card .kv:first-of-type { border-top: none; }
.aside-card .kv .k { color: var(--slate); font-family: var(--mono); font-size: .76rem; }
.aside-card .kv .v { font-weight: 600; text-align: right; }
.aside-card .btn { margin-top: 1rem; }
.aside-call { text-align: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.aside-call .num { font-family: var(--mono); font-weight: 700; font-size: 1.25rem; color: var(--copper); text-decoration: none; }
.aside-call small { display: block; color: var(--slate); font-family: var(--mono); font-size: .72rem; margin-top: .2rem; }

.inline-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-2); margin: 1.6rem 0; }
.inline-media img { width: 100%; }
.inline-media figcaption { font-family: var(--mono); font-size: .74rem; color: var(--slate); padding: .7rem .9rem; background: var(--card); }

.price-list { margin: 1.4rem 0; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.price-row:last-child { border-bottom: 1px solid var(--line); }
.price-row .pr-name { font-weight: 600; }
.price-row .pr-val { font-family: var(--mono); color: var(--copper); font-weight: 700; white-space: nowrap; }

.faq { display: grid; gap: 0; margin-top: 1.4rem; }
.faq details { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--display); font-weight: 700; font-size: 1.06rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--copper); font-size: 1.3rem; transition: transform .25s var(--e-firm); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--slate); margin: .8rem 0 0; max-width: 66ch; }

.cta-band { background: var(--card); border-block: 1px solid var(--line); text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--slate); max-width: 48ch; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-band .run { margin-inline: auto; }
.cta-actions { display: flex; gap: .8rem 1.2rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-actions .num { font-family: var(--mono); font-weight: 700; font-size: 1.3rem; color: var(--copper); text-decoration: none; }

.driver-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 1.4rem 0; }
.driver { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.driver h4 { font-family: var(--display); font-size: 1rem; margin-bottom: .3rem; }
.driver p { font-size: .88rem; color: var(--slate); margin: 0; }
@media (max-width: 640px) { .driver-grid { grid-template-columns: 1fr; } }

/* area cards (hub) */
.areahub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.2vw,1.5rem); }
.area-card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--sh-1); transition: transform .3s var(--e-firm), box-shadow .3s var(--e-firm); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.area-card .ac-media { aspect-ratio: 16/9; overflow: hidden; }
.area-card .ac-media img { width: 100%; height: 100%; object-fit: cover; }
.area-card .ac-body { padding: 1.2rem 1.3rem 1.4rem; }
.area-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.area-card p { color: var(--slate); font-size: .9rem; margin: 0; }
@media (max-width: 820px) { .areahub-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   SCHEDULE MODAL
   ============================================================ */
.sched-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 1.2rem; background: rgba(20,25,27,.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s var(--e-firm); }
body.modal-open { overflow: hidden; }
body.modal-open .sched-modal { display: flex; opacity: 1; }
.sm-panel { background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--sh-3); width: min(560px,100%); max-height: 92vh; overflow-y: auto; padding: clamp(1.5rem,4vw,2.4rem); position: relative; transform: translateY(10px); transition: transform .3s var(--e-firm); }
body.modal-open .sm-panel { transform: none; }
.sm-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.sm-close:hover { background: var(--ink); color: #fff; }
.sm-panel h2 { font-size: clamp(1.4rem,1.2rem+1vw,1.9rem); margin-bottom: .4rem; }
.sm-panel .sm-lede { color: var(--slate); font-size: .94rem; margin-bottom: 1.3rem; }
.sm-panel .sm-call { text-align: center; font-family: var(--mono); font-size: .82rem; color: var(--slate); margin-top: 1rem; }
.sm-panel .sm-call a { color: var(--copper); font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .sched-modal, .sm-panel { transition: none; } }

/* ============================================================
   REVEALS + reduced motion
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--e-firm), transform .6s var(--e-firm); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-i] { transition-delay: calc(var(--i,0) * 70ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc-card, .area-card, .svc-media img, .text-link .arw { transition: none !important; }
}
body.dev-static .reveal { opacity: 1 !important; transform: none !important; }
body.dev-static .site-head { position: absolute; }
[data-dev-hidden] { display: none !important; }

.center { text-align: center; }
.nowrap { white-space: nowrap; }
