/* ---------------------------------------------------------------
   LUCKY 8 MOVING — Dark Editorial System
   Black · Gold · Bone  |  Archivo Black + Manrope + JetBrains Mono
--------------------------------------------------------------- */

:root {
  /* Core */
  --bg:         #0A0A0B;
  --bg-1:       #0F0F11;
  --bg-2:       #16161A;
  --bg-3:       #1E1E23;
  --bg-bone:    #F4EFE2;
  --bg-bone-2:  #E8E0CC;

  --gold:       #D7A82C;
  --gold-bright:#F1C846;
  --gold-deep:  #A68018;
  --gold-soft:  rgba(215,168,44,.12);
  --gold-line:  rgba(215,168,44,.32);

  --ink:        #0A0A0B;
  --bone:       #F4EFE2;
  --bone-dim:   rgba(244,239,226,.62);
  --bone-fade:  rgba(244,239,226,.36);
  --bone-faint: rgba(244,239,226,.16);

  --line:       rgba(244,239,226,.10);
  --line-2:     rgba(244,239,226,.20);
  --line-dark:  rgba(10,10,11,.18);

  --container:  1280px;
  --gutter:     24px;

  --f-display:  "Archivo", "Archivo Black", system-ui, sans-serif;
  --f-body:     "Manrope", system-ui, -apple-system, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease:       cubic-bezier(.2,.7,.2,1);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ----------  Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section.tight { padding: clamp(56px, 7vw, 96px) 0; }
.section.bone { background: var(--bg-bone); color: var(--ink); }

.grid { display: grid; gap: var(--gutter); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid.gap-lg { gap: 28px; }
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split.top { align-items: start; }
.split > * { min-width: 0; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ----------  Mono labels (section codes) ---------- */
.code {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.code::before {
  content: "8";
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.code.bare::before { display: none; }
.bone .code { color: var(--gold-deep); }
.bone .code::before { background: var(--gold-deep); color: var(--bone); }

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.bone .label { color: rgba(10,10,11,.55); }

/* ----------  Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .96;
  margin: 0 0 .35em;
  text-wrap: balance;
  text-transform: none;
}
h1 {
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  letter-spacing: -.04em;
  line-height: .9;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  letter-spacing: -.03em;
}
h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -.012em;
  font-weight: 800;
}
h4 {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}

.display-xl {
  font-family: var(--f-display);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .85;
  text-transform: uppercase;
}

p { margin: 0 0 1em; text-wrap: pretty; }
.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}
.bone .lede { color: rgba(10,10,11,.65); }

.gold { color: var(--gold); }
.outline {
  -webkit-text-stroke: 1.5px var(--bone);
  color: transparent;
}
.bone .outline { -webkit-text-stroke-color: var(--ink); }
.gold-outline {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
}

.section-head { max-width: 740px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .code { justify-content: center; }
.section-head.center .lede { margin-inline: auto; }

/* ----------  Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn .arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 18px 30px; font-size: 14px; }
.btn-gold {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-bone {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
}
.btn-bone:hover { background: #fff; }
.btn-ghost {
  background: transparent; color: var(--bone); border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: var(--bone); }
.btn-ink {
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.btn-ink:hover { background: #000; }
.btn-outline-ink {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--bone); }

/* ----------  Top bar ---------- */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.topbar .row {
  max-width: var(--container);
  margin-inline: auto;
  padding: 11px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
}
.topbar .left { display: inline-flex; align-items: center; gap: 12px; }
.topbar .left::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(215,168,44,.16);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215,168,44,.16); }
  50% { box-shadow: 0 0 0 8px rgba(215,168,44,.02); }
}
.topbar .right { display: inline-flex; align-items: center; gap: 24px; }
.topbar a { color: var(--bone); transition: color .2s var(--ease); }
.topbar a:hover { color: var(--gold); }
/* Mobile-only condensed info line (location + hours), hidden on desktop */
.topbar-mobile { display: none; }
@media (max-width: 720px) {
  .topbar .right { gap: 12px; }
  .topbar .hide-sm { display: none; }
  /* Replace the lone phone number with the location + hours info */
  .topbar .left, .topbar .right { display: none; }
  .topbar .row { justify-content: center; padding-top: 9px; padding-bottom: 9px; }
  .topbar-mobile {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 700; color: var(--bone);
    font-size: 10px; letter-spacing: .06em;
    white-space: nowrap;
  }
  .topbar-mobile::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(215,168,44,.16);
  }
  /* Its content now lives in the top bar — drop the cramped hero strip */
  .hero .hero-top { display: none; }
}

/* ----------  Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 80;
  background: rgba(10,10,11,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 88px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 2px; margin-left: 28px;
}
.nav-links a {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 16px;
  color: var(--bone-dim);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold);
}
.nav-cta { margin-left: auto; }
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-weight: 500; font-size: 12px;
  letter-spacing: .08em;
  color: var(--bone);
  padding: 11px 0;
  text-transform: uppercase;
}
.nav-call:hover { color: var(--gold); }
.nav-call .phone-ico { width: 13px; height: 13px; color: var(--gold); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  background: transparent; border: 1px solid var(--line-2);
  padding: 0; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.6px; background: var(--bone);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 8px var(--gutter) 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 6px;
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.mobile-menu .btn { justify-content: center; }

@media (max-width: 1020px) {
  .nav-links, .nav-cta, .nav-call { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ----------  Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(215,168,44,.10), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(215,168,44,.04), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(244,239,226,.025) 1px, transparent 1px);
  background-size: calc((100% - 2 * var(--gutter)) / 12) 100%;
  background-position: var(--gutter) 0;
  pointer-events: none;
  opacity: .6;
}
.hero > * { position: relative; z-index: 1; }
.hero-top, .hero-bot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-top { border-top: 0; }
.hero-top span, .hero-bot span { display: inline-flex; gap: 10px; align-items: center; }
.hero-top span.gold-dot::before, .hero-bot span.gold-dot::before {
  content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(40px, 6vw, 72px) 0;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  margin: 0;
}
.hero h1 .line { display: block; }
.hero h1 .line.outline { color: transparent; -webkit-text-stroke: 1.5px var(--bone); }
.hero .lede { margin-top: 36px; max-width: 50ch; }
.hero-cta {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-cta .btn { border-radius: 0; }
.hero-cta .btn + .btn { margin-left: -1px; }

.hero-figure {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.hero-figure .photo-slot { height: 100%; }
.hero-figure .figure-info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  pointer-events: none;
}
.hero-figure .figure-info .stamp {
  background: var(--gold); color: var(--ink);
  padding: 6px 10px;
  font-weight: 700;
}

.hero-meta-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta-row > div {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}
.hero-meta-row > div:last-child { border-right: 0; }
.hero-meta-row strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 8px;
}
.hero-meta-row .accent strong { color: var(--gold); }
.hero-meta-row span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-fade);
}
@media (max-width: 700px) {
  .hero-meta-row { grid-template-columns: 1fr 1fr; }
  .hero-meta-row > div:nth-child(2) { border-right: 0; }
  .hero-meta-row > div:nth-child(1), .hero-meta-row > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ----------  Photo slot ---------- */
.photo-slot {
  position: relative;
  width: 100%; height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  overflow: hidden;
  display: grid; place-items: center;
}
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-slot:has(img)::before,
.photo-slot:has(img)::after { content: none; }
.photo-slot::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(244,239,226,.03) 0 12px,
    transparent 12px 24px
  );
  pointer-events: none;
}
.photo-slot::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px dashed rgba(244,239,226,.16);
  pointer-events: none;
}
.photo-slot .ps-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-fade);
  text-align: center;
  padding: 12px 18px;
  max-width: 86%;
  z-index: 1;
  line-height: 1.6;
}
.photo-slot .ps-label .tag {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .22em;
}

/* ----------  Marquee ---------- */
.marquee {
  background: var(--gold);
  color: var(--ink);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after {
  content: "★";
  font-family: var(--f-display);
  color: var(--ink);
  font-size: .8em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ----------  Services List (editorial) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.6fr 2fr 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
  cursor: pointer;
}
.svc-row:hover { background: rgba(215,168,44,.05); }
.svc-row .n {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .14em;
  font-weight: 500;
}
.svc-row .name {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--bone);
  text-transform: uppercase;
}
.svc-row .desc {
  color: var(--bone-dim);
  font-size: 15.5px;
  line-height: 1.5;
}
.svc-row .arrow-cell {
  text-align: right;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bone-fade);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.svc-row:hover .arrow-cell { color: var(--gold); transform: translateX(4px); }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 60px 1fr 40px; gap: 16px; padding: 22px 0; }
  .svc-row .desc { grid-column: 2 / span 2; font-size: 14px; }
  .svc-row .name { font-size: clamp(1.2rem, 5vw, 1.6rem); }
}

/* ----------  Card (general fallback for sub-pages) ---------- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
}
.card:hover { border-color: var(--gold-line); background: var(--bg-3); }
.card .n {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 24px;
}
.card h3 { margin: 0 0 12px; }
.card p {
  color: var(--bone-dim);
  font-size: 15px;
  margin-bottom: 20px;
}
.card .read-more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.card:hover .read-more { color: var(--gold); }
.card .read-more .arrow { transition: transform .25s var(--ease); }
.card:hover .read-more .arrow { transform: translateX(4px); }

.bone .card { background: #fff; border-color: var(--line-dark); color: var(--ink); }
.bone .card p { color: rgba(10,10,11,.65); }
.bone .card .n { color: var(--gold-deep); }
.bone .card .read-more { color: var(--ink); border-color: var(--line-dark); }
.bone .card:hover { border-color: var(--gold-deep); background: #fff; }

/* ----------  Process — vertical timeline ---------- */
.process {
  position: relative;
  padding-left: 60px;
}
.process::before {
  content: "";
  position: absolute; left: 19px; top: 12px; bottom: 12px;
  width: 1px; background: var(--line);
}
.process .step {
  position: relative;
  padding: 18px 0 36px;
}
.process .step:last-child { padding-bottom: 0; }
.process .step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: -60px; top: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .04em;
}
.process { counter-reset: step; }
.process .step { counter-increment: step; }
.process .step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.process .step p { color: var(--bone-dim); max-width: 56ch; margin: 0; }
@media (max-width: 600px) {
  .process { padding-left: 50px; }
  .process .step::before { left: -50px; width: 34px; height: 34px; }
  .process::before { left: 16px; }
}

/* ----------  Massive stat block ---------- */
.megastat {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.megastat > div {
  padding: 56px 24px 48px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.megastat > div:last-child { border-right: 0; }
.megastat strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .9;
  color: var(--bone);
  margin-bottom: 14px;
}
.megastat .accent strong { color: var(--gold); }
.megastat span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-fade);
}
@media (max-width: 800px) {
  .megastat { grid-template-columns: 1fr 1fr; }
  .megastat > div:nth-child(2) { border-right: 0; }
  .megastat > div:nth-child(1), .megastat > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ----------  Big pull quote ---------- */
.pullquote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin-inline: auto;
  text-align: left;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-wrap: balance;
}
.pullquote blockquote::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-size: 1.4em;
  line-height: .3;
  margin-bottom: 24px;
}
.pullquote .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-dim);
}
.pullquote .who .stars { color: var(--gold); letter-spacing: 3px; font-family: var(--f-display); font-size: 13px; }
.pullquote .who strong { color: var(--bone); }

/* ----------  Founder's note (About) ---------- */
.founder-note {
  margin: 22px 0 0;
  padding: 26px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
}
.founder-note blockquote {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--bone-dim);
  text-wrap: pretty;
}
.founder-note figcaption {
  display: flex; flex-direction: column; gap: 3px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.founder-note .fn-name {
  font-family: var(--f-display);
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -.01em; color: var(--bone);
}
.founder-note .fn-role {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}
.pullquote .nav-quotes {
  display: flex; gap: 8px; margin-left: auto;
}
.pullquote .nav-quotes button {
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  background: transparent; color: var(--bone);
  cursor: pointer;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.pullquote .nav-quotes button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ----------  Pricing tables ---------- */
.price-table {
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.bone .price-table { background: #fff; border-color: var(--line-dark); }
.price-table .head {
  padding: 22px 26px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.bone .price-table .head { background: var(--bg-bone-2); border-color: var(--line-dark); }
.price-table .head h3 { margin: 0; font-size: 1.1rem; }
.price-table .head .meta {
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.bone .price-table .head .meta { color: var(--gold-deep); }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.bone .price-row { border-color: var(--line-dark); }
.price-row:last-child { border-bottom: 0; }
.price-row .name {
  font-family: var(--f-display); font-weight: 700; font-size: 15.5px;
  letter-spacing: -.005em;
}
.price-row .name small {
  display: block; color: var(--bone-fade);
  font-family: var(--f-mono); font-weight: 400; font-size: 11px; margin-top: 4px;
  letter-spacing: .12em; text-transform: uppercase;
}
.bone .price-row .name small { color: rgba(10,10,11,.5); }
.price-row .rate {
  font-family: var(--f-display);
  font-weight: 900; font-size: 24px; letter-spacing: -.02em;
  color: var(--gold);
}
.bone .price-row .rate { color: var(--gold-deep); }
.price-row .rate small {
  font-size: 13px;
  color: var(--bone-fade);
  font-family: var(--f-mono);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}
.bone .price-row .rate small { color: rgba(10,10,11,.5); }
.price-note { font-size: 13.5px; color: var(--bone-dim); margin-top: 20px; line-height: 1.6; }
.bone .price-note { color: rgba(10,10,11,.65); }

/* ----------  FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--line);
}
.bone .faq details { border-color: var(--line-dark); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 50px 24px 0;
  position: relative;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; background: var(--gold); color: var(--ink); border-color: var(--gold); }
.faq .answer {
  padding: 0 50px 24px 0;
  color: var(--bone-dim);
  font-size: 15.5px; line-height: 1.65;
}
.bone .faq .answer { color: rgba(10,10,11,.7); }

/* ----------  CTA strip ---------- */
.cta-strip {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(60px, 9vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "8";
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(20rem, 35vw, 32rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  opacity: .06;
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: 24px;
}
.cta-strip .lede { color: rgba(10,10,11,.78); }
.cta-strip .actions { display: flex; gap: 0; flex-wrap: wrap; margin-top: 32px; }
.cta-strip .actions .btn + .btn { margin-left: -1px; }

/* ----------  Forms ---------- */
.form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--bone-dim);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  background: transparent;
  color: var(--bone);
  padding: 12px 0;
  font: inherit;
  font-size: 16px;
  border-radius: 0;
  transition: border-color .2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; border: 1px solid var(--line-2); padding: 14px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 14px center, right 8px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--bone-fade); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form .full { width: 100%; justify-content: center; }
.form-success {
  display: none;
  background: rgba(215,168,44,.12);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 14px 18px;
  font-family: var(--f-mono); font-size: 13px;
}
.form-success.show { display: block; }

/* ----------  Mobile-only contact (replaces the form on phones) ---------- */
.contact-mobile { display: none; }
.contact-mobile-actions { display: grid; gap: 12px; margin-top: 24px; }
.contact-mobile-actions .btn { width: 100%; justify-content: center; gap: 10px; }
.contact-mobile-actions .btn svg { flex-shrink: 0; }
@media (max-width: 720px) {
  #quoteForm { display: none; }
  .contact-mobile { display: block; }
}

/* ----------  Contact card ---------- */
.contact-card {
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: clamp(28px, 4vw, 36px);
  display: grid; gap: 14px;
}
.contact-card .item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card .item:last-child { border-bottom: 0; }
.contact-card .item .ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card .item strong {
  font-family: var(--f-display); font-weight: 800; font-size: 16px;
  display: block; margin-bottom: 4px;
}
.contact-card .item small {
  display: block; color: var(--bone-fade);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.contact-card .item a:hover { color: var(--gold); }

/* ----------  Area chips ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.area-chip {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.area-chip:last-child { border-right: 0; }
.area-chip .place {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -.02em;
  color: var(--bone);
}
.area-chip .n {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.area-chip small { color: var(--bone-dim); font-size: 13px; line-height: 1.5; }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-chip:nth-child(2) { border-right: 0; }
  .area-chip:nth-child(1), .area-chip:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-chip { border-right: 0; border-bottom: 1px solid var(--line); }
  .area-chip:last-child { border-bottom: 0; }
}

/* ----------  Photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: clamp(220px, 19vw, 320px) clamp(220px, 19vw, 320px);
  gap: 14px;
}
.gallery .slot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery .slot.tall { grid-row: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, clamp(200px, 42vw, 300px)); }
  .gallery .slot.tall { grid-row: span 1; grid-column: span 2; }
}

/* ----------  Page header (sub-pages) ---------- */
.page-header {
  background: var(--bg);
  padding: clamp(80px, 9vw, 130px) 0 clamp(64px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 100% 0%, rgba(215,168,44,.10), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 { margin-top: 18px; max-width: 16ch; }
.page-header .lede { margin-top: 22px; max-width: 56ch; }
.crumbs {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone-fade);
}
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: .5; }

/* ----------  Footer ---------- */
footer.site {
  background: var(--bg);
  color: var(--bone);
  padding: clamp(64px, 8vw, 100px) 0 32px;
  border-top: 1px solid var(--line);
  overflow-x: clip;
}
footer.site .top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { footer.site .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .top { grid-template-columns: 1fr; } }
footer.site .brand-logo { height: 104px; }
footer.site .pitch {
  color: var(--bone-dim); margin-top: 18px; font-size: 15px; max-width: 36ch; line-height: 1.6;
}
footer.site .foot-cta { margin-top: 22px; display: flex; gap: 0; }
footer.site .foot-cta .btn + .btn { margin-left: -1px; }
footer.site h4 {
  color: var(--gold); margin-bottom: 18px; font-size: 11px; letter-spacing: .18em;
  font-family: var(--f-mono); font-weight: 500; text-transform: uppercase;
}
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
footer.site a { color: var(--bone-dim); font-size: 15px; transition: color .2s var(--ease); }
footer.site a:hover { color: var(--gold); }
footer.site .bottom {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-fade);
}
footer.site .bottom .powered-by {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
footer.site .bottom .powered-by:hover {
  color: var(--gold-bright); border-bottom-color: var(--gold-bright);
}
.footer-mega {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  /* full-bleed: break out of the centered container to the page edges */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: clamp(14px, 3vw, 48px);
  box-sizing: border-box;
}
.footer-mega .super {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.footer-mega .super text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 200px;
  letter-spacing: -.04em;
}
.footer-mega .signature {
  font-family: var(--f-display);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -.005em;
  color: var(--bone);
  margin-top: -6px;
}
.footer-mega .signature .gold { color: var(--gold); }

/* ----------  Mobile action bar ---------- */
/* ----------  Mobile action bar — floating "Call Now" pill ---------- */
.mobile-bar {
  display: none;
  position: fixed; z-index: 70;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  padding: 6px;
  background: rgba(14,14,17,.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0,0,0,.5), 0 2px 0 rgba(255,255,255,.03) inset;
  gap: 7px;
}
.mobile-bar a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--f-display); font-weight: 800; font-size: 12px; line-height: 1;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .12s var(--ease), background .2s var(--ease);
}
.mobile-bar a:active { transform: scale(.97); }
/* Call Now = primary, prominent gold pill */
.mobile-bar .call {
  flex: 2 1 0;
  background: var(--gold); color: var(--ink);
  box-shadow: 0 4px 16px rgba(215,168,44,.32);
}
.mobile-bar .call svg { width: 14px; height: 14px; }
/* Quote = secondary, quiet ghost pill */
.mobile-bar .quote {
  flex: 1 1 0;
  background: transparent; color: var(--bone);
  border: 1px solid var(--line-2);
}
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
}

/* ----------  Terms page ---------- */
.terms-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; }
@media (max-width: 900px) { .terms-layout { grid-template-columns: 1fr; gap: 32px; } }
.terms-toc {
  position: sticky; top: 100px; align-self: start;
  padding-left: 18px;
  border-left: 1px solid var(--gold-line);
  display: grid; gap: 10px;
}
.terms-toc h4 { color: var(--gold); margin-bottom: 4px; }
.terms-toc a {
  color: var(--bone-dim);
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 0;
}
.terms-toc a:hover { color: var(--gold); }
.terms-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-top: 64px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-line);
}
.terms-content h2:first-child { margin-top: 0; }
.terms-content h3 {
  margin-top: 32px;
  font-family: var(--f-mono); font-weight: 500;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.terms-content p, .terms-content li { color: var(--bone-dim); }
.terms-content ul { padding-left: 20px; line-height: 1.75; }

/* ----------  The 8 Promises ---------- */
.promises-wrap {
  position: relative;
  overflow: hidden;
}
.promises-wrap::before {
  content: "8";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(28rem, 70vw, 56rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
  color: var(--gold);
  opacity: .03;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.promises-wrap > * { position: relative; z-index: 1; }
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.promise {
  padding: 36px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.promise:hover { background: rgba(215,168,44,.05); }
.promise .big-n {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.promise p {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--bone);
  line-height: 1.22;
  margin: 0;
}
@media (max-width: 900px) { .promises { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .promises { grid-template-columns: 1fr; } }

/* ----------  Reveal default-on (no JS-dependence) ---------- */
[data-reveal] { opacity: 1; transform: none; }

/* ----------  Hover & link ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.link-arrow:hover { color: var(--gold-bright); }

/* ===============================================================
   HEADER ENTRANCE ANIMATION
   Each page's masthead rises + fades in on load. Staggered so the
   eye reads it top-to-bottom. Fully disabled for reduced-motion.
=============================================================== */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Home hero */
  .anim-ready .hero h1 .line,
  .anim-ready .hero .lede,
  .anim-ready .hero-cta,
  .anim-ready .hero-meta-row,
  .anim-ready .hero-figure,
  /* Sub-page mastheads */
  .anim-ready .page-header .crumbs,
  .anim-ready .page-header h1,
  .anim-ready .page-header .lede {
    opacity: 0;
    animation: riseIn .72s var(--ease) both;
  }

  .anim-ready .hero h1 .line:nth-child(1) { animation-delay: .06s; }
  .anim-ready .hero h1 .line:nth-child(2) { animation-delay: .15s; }
  .anim-ready .hero h1 .line:nth-child(3) { animation-delay: .24s; }
  .anim-ready .hero .lede                 { animation-delay: .40s; }
  .anim-ready .hero-cta                   { animation-delay: .50s; }
  .anim-ready .hero-meta-row              { animation-delay: .60s; }
  .anim-ready .hero-figure                { animation-delay: .30s; animation-duration: .9s; }

  .anim-ready .page-header .crumbs        { animation-delay: .05s; }
  .anim-ready .page-header h1             { animation-delay: .14s; }
  .anim-ready .page-header .lede          { animation-delay: .34s; }
}

/* Safety net: once settled (wall-clock), force the final visible state.
   The animation has already finished by now in a real browser, so this
   is a seamless no-op there — and a guaranteed reveal everywhere else. */
html.anim-settled .hero h1 .line,
html.anim-settled .hero .lede,
html.anim-settled .hero-cta,
html.anim-settled .hero-meta-row,
html.anim-settled .hero-figure,
html.anim-settled .page-header .crumbs,
html.anim-settled .page-header h1,
html.anim-settled .page-header .lede {
  opacity: 1;
  animation: none;
}

/* ===============================================================
   MOBILE REFINEMENTS
=============================================================== */

/* Top bar: the "Always Available" label + phone overflow narrow
   phones (nowrap). Drop the label and center the phone instead. */
@media (max-width: 600px) {
  .topbar .left { display: none; }
  .topbar .row { justify-content: center; }
}

/* Oversized brand logos eat vertical space on small screens. */
@media (max-width: 1020px) {
  .brand-logo { height: 64px; }
}
@media (max-width: 600px) {
  .brand-logo { height: 64px; }
  footer.site .brand-logo { height: 72px; }
  .nav { padding: 5px var(--gutter); }
}

/* Make primary CTA pairs full-width & easy to tap on phones.
   (Connected -1px buttons become a clean stacked pair.) */
@media (max-width: 560px) {
  .hero-cta,
  .cta-strip .actions,
  footer.site .foot-cta,
  .page-header [style*="display:flex"] {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta .btn,
  .cta-strip .actions .btn,
  footer.site .foot-cta .btn,
  .page-header .btn {
    justify-content: center;
    width: 100%;
  }
  /* Reset the connected-button negative margins when stacked. */
  .hero-cta .btn + .btn,
  .cta-strip .actions .btn + .btn,
  footer.site .foot-cta .btn + .btn,
  .page-header .btn + .btn { margin-left: 0; }
}

/* Tighten oversized headline tracking on very small screens so long
   words ("Pricing", "Policies") don't clip the viewport edge. */
@media (max-width: 420px) {
  h1 { letter-spacing: -.03em; }
  .hero h1 { letter-spacing: -.03em; }
}

/* The big stat numbers can't wrap ("$125"), so at 2-up they forced the
   grid columns past the viewport. Scale them down + tighten padding. */
@media (max-width: 600px) {
  .megastat > div { padding: 36px 16px 30px; }
  .megastat strong { font-size: clamp(2rem, 11vw, 2.8rem); letter-spacing: -.04em; }
}

/* Let the review byline wrap instead of overflowing on phones. */
@media (max-width: 560px) {
  .pullquote .who { flex-wrap: wrap; }
  .pullquote .nav-quotes { margin-left: 0; }
}
