/* =========================================================
   Drywall Mavericks — Dark Luxury
   Palette: deep navy, off-white, antique gold, deep slate
   Type: Fraunces (display serif w/ optical sizing) + Inter + JetBrains Mono
   ========================================================= */

:root {
  --ink: #0a0f1e;          /* deep navy (was charcoal) */
  --ink-2: #0f1729;        /* deep slate, slightly lifted */
  --ink-3: #131c33;        /* tertiary surface */
  --ink-deepest: #06091a;  /* near-black navy for utility bar / footer */
  --line: #1f2740;         /* subtle slate-blue line */
  --line-soft: rgba(240, 236, 224, 0.10);
  --line-gold: rgba(201, 168, 76, 0.32);
  --bone: #f0ece0;         /* warm off-white */
  --bone-2: #e2dccb;
  --paper: #14203a;        /* dark paper for form (was light cream) */
  --gold: #c9a84c;          /* antique gold (was hi-vis orange) */
  --gold-2: #d9bb63;        /* lighter gold for hover */
  --gold-deep: #8a6f2e;     /* muted warm gold for subtle uses */
  --green: #7cb86a;
  --muted-dark: rgba(240, 236, 224, 0.62);
  --muted-light: rgba(240, 236, 224, 0.55);

  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

.skip-link {
  position: absolute; left: -9999px; top: 12px;
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  font-weight: 700; border-radius: 4px; z-index: 100;
}
.skip-link:focus { left: 12px; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Utility bar ---------- */
.utility-bar {
  position: relative; z-index: 30;
  background: var(--ink-deepest);
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.ut-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.ut-item { display: inline-flex; align-items: center; gap: 8px; }
.ut-sep { width: 1px; height: 12px; background: var(--line); }
.ut-link { color: var(--bone); transition: color .2s; }
.ut-link:hover { color: var(--gold); }
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); position: relative;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 25;
  background: rgba(10, 15, 30, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.hd-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex; align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
}
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--bone);
}
.brand-text .brand-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 28px;
  font-size: 13.5px; font-weight: 500;
}
.nav a {
  position: relative;
  color: var(--bone);
  padding: 4px 0;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--gold-2); }
.nav a:hover::after { transform: scaleX(1); }

.hd-actions { display: flex; align-items: center; gap: 10px; }
.phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .2s, color .2s;
}
.phone:hover { border-color: var(--gold); color: var(--gold-2); }

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.cta-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.cta-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
}
.cta-orange {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.cta-orange:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.cta-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-gold);
}
.cta-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.cta-lg {
  padding: 16px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--bone);
  transition: transform .25s var(--ease), opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) 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.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) var(--pad) clamp(40px, 5vw, 90px);
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    var(--ink);
  overflow: hidden;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  /* Cool-tinted, lightly desaturated — keeps the navy palette dominant
     while letting the room shape, light, and texture read through. */
  filter: saturate(0.75) brightness(0.88) contrast(1.02);
  z-index: 0;
}
/* Navy veil — directional: lighter where the headline sits (left), denser at the bottom
   for hero-bottom legibility. Lets the photo show through ~25-35% in the upper right. */
.hero-photo-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 30, 0.30) 0%, rgba(10, 15, 30, 0.55) 60%, rgba(10, 15, 30, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 15, 30, 0.72) 0%, rgba(10, 15, 30, 0.45) 40%, rgba(10, 15, 30, 0.25) 100%);
}
.hero-grid { width: 100%; height: 100%; opacity: 0.85; position: relative; z-index: 2; }
/* Faint cross-rule */
.hero-bg::before {
  content: "";
  position: absolute; left: -10%; right: -10%; top: 30%;
  height: 1px; background: var(--line-gold);
  opacity: 0.5;
  z-index: 2;
}
.hero-bg::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px; background: var(--line-gold);
  opacity: 0.4;
  transform: translateX(-22%);
  z-index: 2;
}
/* Fine gold rule along the bottom-right corner — replaces hazard-stripe */
.hero::after {
  content: "";
  position: absolute;
  right: -60px; bottom: 40px;
  width: 360px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.55;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-gold);
  margin-bottom: 36px;
}
.meta-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--bone); }
.meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(124, 184, 106, 0.7);
}
.meta-coord { font-size: 10.5px; color: var(--gold); }

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(56px, 11.5vw, 188px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--bone);
  font-variation-settings: "opsz" 144;
}
.hero-line { display: block; }
.hero-line em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  position: relative;
}
.hero-line em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.04em;
  background: var(--gold);
  opacity: 0.45;
}

.hero-bottom {
  margin-top: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}
.hero-copy {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 540px;
  margin: 0;
  font-weight: 400;
}
.hero-cta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
}

/* Hero spec strip — now nested inside .hero-inner so it shares the hero grid */
.hero-spec {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  position: relative;
}
/* Tiny tick marks on the spec rail to make it feel like a measuring strip */
.hero-spec::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 6px;
  background-image: linear-gradient(90deg, var(--line-gold) 1px, transparent 1px);
  background-size: 60px 1px;
  background-repeat: repeat-x;
  opacity: 0.6;
  pointer-events: none;
}
.spec-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--line-gold);
  align-items: start;
}
.spec-card:last-child { border-right: 0; }
.spec-card:nth-child(2), .spec-card:nth-child(3) { padding-left: 24px; }
.spec-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  padding-top: 4px;
}
.spec-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 8px;
}
.spec-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.spec-accent .spec-value { color: var(--gold); }
.spec-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: float 2.4s ease-in-out infinite;
  z-index: 3;
  opacity: 0.75;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-deepest);
  color: var(--gold);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.005em;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee-track span { display: inline-block; }
.m-star {
  font-style: normal;
  font-weight: 400;
  font-size: 0.7em;
  opacity: 0.55;
  transform: translateY(-2px);
  color: var(--gold-deep);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section primitives ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
/* .eyebrow-dark kept as a semantic hook in case dark-section accent shifts later */

.sect-h2 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: "opsz" 80;
}
.sect-h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.sect-h2-dark { color: var(--bone); }
.sect-h2-dark em { color: var(--gold); }

.sect-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-light);
  max-width: 460px;
  margin: 0;
}

/* ---------- NUMBERS / TRUST ---------- */
.numbers {
  background: var(--ink-2);
  color: var(--bone);
  padding: clamp(70px, 9vw, 120px) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.num-wrap { max-width: var(--maxw); margin: 0 auto; }
.num-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-gold);
}
.num-intro .eyebrow { color: var(--gold); }
.num-head {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 640px;
  color: var(--bone);
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.num-cell {
  padding: 24px 28px 28px 0;
  border-right: 1px solid var(--line-gold);
}
.num-cell:last-child { border-right: 0; padding-right: 0; }
.num-cell + .num-cell { padding-left: 28px; }
.n-value {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(60px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}
.n-plus {
  color: var(--gold-deep);
  font-size: 0.55em;
  font-weight: 400;
  vertical-align: top;
  margin-left: 4px;
}
.n-label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.n-line {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, var(--gold) 0 var(--w, 30%), transparent var(--w, 30%));
  transition: background 1.2s var(--ease);
}
.n-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-dark);
  margin: 0;
}

/* ---------- SERVICES (bento) ---------- */
.services {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  position: relative;
}
.services::before {
  content: ""; position: absolute; top: 0; left: var(--pad); right: var(--pad);
  height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold) 50%, transparent);
}
.services-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}
.services-head .sect-lead { color: var(--muted-dark); }

.bento {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
.bento-cell {
  position: relative;
  padding: 26px 26px 22px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
  display: flex; flex-direction: column;
}
.bento-cell:hover {
  background: var(--ink-3);
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.b-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 28px;
}
.b-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 0 12px;
}
.b-copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted-dark);
  margin: 0;
}
.b-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.b-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.b-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px; background: var(--gold);
}
.b-list-dark li { color: rgba(10, 15, 30, 0.78); }
.b-list-dark li::before { background: var(--ink); }
.b-arrow {
  position: absolute;
  bottom: 22px; right: 24px;
  font-size: 24px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s var(--ease);
}
.bento-cell:hover .b-arrow { opacity: 1; transform: translateX(0); }
.b-arrow-dark { color: var(--ink); }

.b-feature { grid-column: span 2; }
.b-tall { grid-row: span 2; }
.b-dark { background: var(--bone); }
.b-dark .b-num { color: var(--gold-deep); }
.b-dark .b-title { color: var(--ink); }
.b-dark .b-copy { color: rgba(10, 15, 30, 0.7); }
.b-dark .b-arrow { color: var(--ink); }
.b-dark:hover { background: var(--bone-2); border-color: var(--gold-deep); }
.b-orange {
  background: var(--gold);
  border-color: var(--gold);
}
.b-orange .b-num { color: var(--ink); }
.b-orange .b-title { color: var(--ink); }
.b-orange .b-copy { color: rgba(10, 15, 30, 0.82); }
.b-orange:hover { background: var(--gold-2); border-color: var(--gold-2); }

/* Photo-backed bento cells — image sits behind, dark veil keeps text legible */
.b-photo { position: relative; isolation: isolate; }
.b-photo > .b-num,
.b-photo > .b-title,
.b-photo > .b-copy,
.b-photo > .b-list,
.b-photo > .b-arrow {
  position: relative;
  z-index: 2;
}
.b-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Cool, desaturated — recognizable as a photo without competing with the copy. */
  filter: saturate(0.5) brightness(0.85) contrast(1.04);
  opacity: 0.55;
  transition: opacity .45s var(--ease), transform .8s var(--ease), filter .45s var(--ease);
}
.b-photo-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(15, 23, 41, 0.45) 0%, rgba(10, 15, 30, 0.72) 60%, rgba(10, 15, 30, 0.88) 100%);
}
.b-photo:hover .b-photo-img {
  opacity: 0.72;
  transform: scale(1.04);
  filter: saturate(0.7) brightness(0.9) contrast(1.05);
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.proc-wrap { max-width: var(--maxw); margin: 0 auto; }
.proc-head { max-width: 720px; margin-bottom: clamp(50px, 7vw, 90px); }
.proc-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.proc-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 5vw, 56px) 0;
  border-top: 1px solid var(--line-gold);
  align-items: start;
}
.proc-step:last-child { border-bottom: 1px solid var(--line-gold); }
.ps-rail { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ps-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid var(--gold);
  border-radius: 3px;
}
.ps-bar { width: 1px; flex: 1; background: var(--line-gold); }
.ps-body { max-width: 680px; }
.ps-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--bone);
}
.ps-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-dark);
  margin: 0 0 12px;
}
.ps-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Split panel: featured "exhibit A" image on the left, steps on the right */
.proc-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.4fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.proc-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 6px;
  min-height: 480px;
  background: var(--ink-deepest);
  isolation: isolate;
}
.pf-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.5) brightness(0.7) contrast(1.06);
  transition: transform 1.2s var(--ease);
}
.proc-figure:hover .pf-img { transform: scale(1.03); }
.pf-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 30, 0.30) 0%, rgba(10, 15, 30, 0.55) 55%, rgba(10, 15, 30, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 15, 30, 0.45) 0%, rgba(10, 15, 30, 0.05) 50%, rgba(10, 15, 30, 0.45) 100%);
}
/* Hairline gold inset frame */
.pf-frame {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(201, 168, 76, 0.28);
  pointer-events: none;
}
.pf-frame::before,
.pf-frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.pf-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.pf-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.pf-meta {
  position: absolute;
  z-index: 3;
  left: 28px; right: 28px; bottom: 28px;
  display: flex; flex-direction: column;
  gap: 10px;
  color: var(--bone);
}
.pf-cap {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.pf-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone);
  font-style: italic;
}
.pf-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  max-width: 320px;
  line-height: 1.5;
}
/* Subtle measuring tick rail along the top — reinforces the "exhibit" framing */
.pf-tick {
  position: absolute;
  z-index: 3;
  top: 28px; left: 28px;
  display: flex; gap: 6px;
}
.pf-tick span {
  display: block;
  width: 1px; height: 12px;
  background: var(--gold);
  opacity: 0.7;
}
.pf-tick span:nth-child(3) { height: 18px; opacity: 1; }
.proc-split .proc-steps { display: grid; gap: 0; }
.proc-split .proc-step:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 1080px) {
  .proc-split { grid-template-columns: 1fr; }
  .proc-figure { min-height: 360px; }
  .proc-split .proc-step:first-child { border-top: 1px solid var(--line-gold); padding-top: clamp(28px, 5vw, 56px); }
}

/* ---------- WORK ---------- */
.work {
  background: var(--ink-2);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.work-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}
.work-head .eyebrow { color: var(--gold); }
.work-head .sect-lead { color: var(--muted-dark); }
.work-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-tile {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .25s;
}
.work-tile:hover { transform: translateY(-4px); border-color: var(--gold); }

.wt-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--ink-3);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.wt-media-dark { background: var(--ink-deepest); border-bottom-color: var(--line); }
.wt-art {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .8s var(--ease);
}
.work-tile:hover .wt-art { transform: scale(1.03); }

/* Real photo treatment for the work tiles */
.wt-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Lightly desaturated so photos sit inside the navy/gold palette, not against it */
  filter: saturate(0.78) contrast(1.04) brightness(0.94);
  transition: transform .8s var(--ease), filter .45s var(--ease);
}
.work-tile:hover .wt-photo {
  transform: scale(1.05);
  filter: saturate(0.92) contrast(1.05) brightness(0.98);
}
/* Bottom gradient — keeps the wt-tag (gold pill) and bottom of the image readable */
.wt-photo-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 15, 30, 0.55) 0%, rgba(10, 15, 30, 0.05) 22%, rgba(10, 15, 30, 0) 55%, rgba(10, 15, 30, 0.75) 100%);
}
/* Lift the badges above the gradient */
.wt-index, .wt-tag { z-index: 3; }

.wt-index {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 236, 224, 0.85);
  padding: 4px 7px;
  background: rgba(10, 15, 30, 0.78);
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  font-weight: 600;
}
.wt-index-light {
  background: rgba(10, 15, 30, 0.78);
  color: var(--gold);
  border-color: var(--line-gold);
}

.wt-tag {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 2;
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  padding: 5px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.work-tile figcaption {
  padding: 18px 18px 20px;
  background: var(--ink-2);
  color: var(--bone);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-tile h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.wt-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted-dark);
  text-transform: uppercase;
  margin-top: auto;
}
.wt-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- VOICES / TESTIMONIALS ---------- */
.voices {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.voices-wrap {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.voice-q {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 22px 0 36px;
  color: var(--bone);
  max-width: 920px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.voice-q em { color: var(--gold); font-style: italic; }
.vq-mark {
  position: absolute;
  top: -0.3em; left: -0.4em;
  font-family: var(--font-display);
  font-size: 2.6em;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  font-style: italic;
  pointer-events: none;
}
.voice-by {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line-gold);
  background: var(--ink-2);
  border-radius: 4px;
}
.voice-av {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1px dashed var(--gold);
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.06);
  font-family: var(--font-mono);
  text-align: left;
}
.va-mono {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--gold);
}
.va-id {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--bone);
}
.voice-who { text-align: left; }
.voice-who strong {
  display: block; font-weight: 600; font-size: 14px; color: var(--bone);
  letter-spacing: 0.005em;
}
.voice-who span {
  display: block; font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--muted-dark);
}
.voice-rate { color: var(--gold); font-size: 13px; letter-spacing: 0.14em; }

.voice-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.vs-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-2);
  transition: border-color .25s;
}
.vs-card:hover { border-color: var(--line-gold); }
.vs-card p {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--bone);
}
.vs-card span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- COVERAGE ---------- */
.coverage {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.cov-wrap { max-width: var(--maxw); margin: 0 auto; }
.cov-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.cov-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.cov-map {
  aspect-ratio: 1;
  max-width: 480px;
  position: relative;
}
.cov-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.cov-group { display: flex; flex-direction: column; }
.cov-cap {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line-gold);
}
.cov-list {
  list-style: none;
  padding: 0; margin: 0;
}
.cov-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--bone);
  position: relative;
  padding-left: 22px;
}
/* Inside perimeter — solid filled gold marker */
.cov-list-in li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
/* Outside perimeter — outlined gold marker */
.cov-list-out li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px;
  background: transparent;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.cov-more {
  color: var(--gold) !important;
  font-style: italic;
}
.cov-list-in .cov-more::before,
.cov-list-out .cov-more::before {
  background: transparent !important;
  border: 1px solid var(--gold);
  width: 7px; height: 7px;
  transform: translateY(-50%) rotate(0);
}

/* ---------- QUOTE ---------- */
.quote {
  background: var(--ink-2);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
/* Fine gold blueprint corner motif (was graphite + radial blob) */
.quote::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 180px; height: 180px;
  background-image:
    linear-gradient(to right, rgba(201, 168, 76, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 76, 0.10) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.85;
  mask-image: radial-gradient(circle at top right, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at top right, #000 30%, transparent 75%);
}
.quote::after {
  content: "";
  position: absolute;
  top: 28px; right: 28px;
  width: 64px; height: 64px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}
.q-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  position: relative; z-index: 2;
  align-items: start;
}
.q-left { padding-top: 8px; }
.q-left .eyebrow { color: var(--gold); }
.q-h2 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--bone);
}
.q-h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.q-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-dark);
  margin: 0 0 32px;
  max-width: 440px;
}
.q-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; gap: 12px;
}
.q-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
}
.q-check {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.q-or {
  display: flex; align-items: center; gap: 14px;
  margin: 30px 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.q-or-line { flex: 1; height: 1px; background: var(--line-gold); }
.q-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.q-phone:hover { background: var(--gold-2); color: var(--ink); }

/* form — now a dark luxury ticket */
.q-form {
  background: var(--paper);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(201, 168, 76, 0.04);
}
.q-form-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--line-gold);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--muted-dark);
  text-transform: uppercase;
}
.q-form-tag { color: var(--bone); font-weight: 600; }
.q-form-id { color: var(--gold); }
.q-field {
  display: block;
  margin-bottom: 16px;
}
.q-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.q-field input,
.q-field select,
.q-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-gold);
  background: transparent;
  padding: 10px 0 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--bone);
  outline: none;
  border-radius: 0;
  transition: border-color .2s;
}
.q-field input::placeholder,
.q-field textarea::placeholder { color: rgba(240, 236, 224, 0.32); font-weight: 400; }
.q-field input:focus,
.q-field select:focus,
.q-field textarea:focus { border-color: var(--gold); }
.q-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23c9a84c' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  color: var(--bone);
}
.q-field select option {
  background: var(--ink-2);
  color: var(--bone);
}
.q-field textarea {
  border: 1px solid var(--line-gold);
  padding: 14px;
  border-radius: 4px;
  resize: vertical;
  font-size: 15px;
  min-height: 110px;
  background: rgba(10, 15, 30, 0.35);
}
.q-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.q-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.q-pill {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s;
}
.q-pill:hover { border-color: var(--gold); color: var(--bone); }
.q-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.q-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px 22px;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s var(--ease);
}
.q-submit:hover { background: var(--gold-2); transform: translateY(-1px); }
.q-submit.is-success { background: var(--green); color: var(--ink); }
.q-note {
  margin: 14px 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.q-note.is-success { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deepest);
  color: var(--bone);
  padding: clamp(60px, 7vw, 90px) var(--pad) 30px;
  border-top: 1px solid var(--line);
}
.ft-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.ft-brand .brand { margin-bottom: 18px; }
.ft-mission {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 380px;
  margin: 0;
}
.ft-col {
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-dark);
}
.ft-col a { color: var(--bone); transition: color .2s; }
.ft-col a:hover { color: var(--gold); }
.ft-social { display: inline-flex; align-items: center; gap: 7px; }
.ft-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ft-addr { color: var(--muted-dark); }
.ft-emer { color: var(--gold-2); font-size: 12.5px; margin-top: 8px; }

.ft-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- Mobile sticky CTA ---------- */
.mobi-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 40;
  background: var(--ink-deepest);
  border-top: 1px solid var(--line-gold);
}
.mobi-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 600;
}
.mc-call {
  color: var(--bone);
  border-right: 1px solid var(--line);
}
.mc-quote {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 22px; font-size: 13px; }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .b-feature { grid-column: span 2; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-strip { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 24px var(--pad);
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-gold);
    gap: 18px;
    align-items: flex-start;
    font-size: 18px;
  }
  .menu-toggle { display: inline-flex; }
  .phone { display: none; }
  .hd-actions .cta-primary { padding: 10px 14px; font-size: 12.5px; white-space: nowrap; }
  .hd-wrap { gap: 12px; padding: 0 16px; }
  .brand { gap: 10px; }
  .brand-text strong { font-size: 15px; }
  .brand-text .brand-sub { font-size: 8.5px; }

  .hero { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .hero-bottom { grid-template-columns: 1fr; align-items: start; }
  .hero-cta { justify-self: start; }
  .hero-spec { grid-template-columns: 1fr; }
  .spec-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-gold);
    padding: 18px 0 !important;
  }
  .spec-card:last-child { border-bottom: 0; }

  .num-intro { grid-template-columns: 1fr; gap: 18px; }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell { padding: 22px 18px 22px 0 !important; border-bottom: 1px solid var(--line-gold); }
  .num-cell:nth-child(2n) { padding-right: 0 !important; border-right: 0; }
  .num-cell:nth-child(odd) { padding-left: 0 !important; }
  .num-cell:nth-child(odd):not(:first-child) { padding-left: 0 !important; }

  .services-head { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .b-feature { grid-column: span 2; }
  .b-tall { grid-row: auto; }

  .proc-step { grid-template-columns: 1fr; gap: 16px; }
  .ps-rail { flex-direction: row; align-items: center; gap: 12px; }
  .ps-bar { height: 1px; width: 100%; }

  .work-head { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wt-media { aspect-ratio: 4 / 5; }

  .cov-body { grid-template-columns: 1fr; }
  .cov-map { margin: 0 auto; }

  .q-wrap { grid-template-columns: 1fr; }
  .q-row { grid-template-columns: 1fr; }

  .ft-wrap { grid-template-columns: 1fr 1fr; }

  .mobi-cta { display: flex; }
  body { padding-bottom: 56px; }
}

@media (max-width: 520px) {
  .ut-hide-sm { display: none; }
  .hero-h1 { font-size: clamp(48px, 14vw, 84px); }
  .hero-line em::after { display: none; } /* underline gets clunky at small sizes */
  .work-grid { grid-template-columns: 1fr; }
  .cov-cols { grid-template-columns: 1fr; gap: 28px; }
  .cov-list li { font-size: 19px; padding: 12px 0 12px 22px; }
  .ft-wrap { grid-template-columns: 1fr; }
  .voice-q { font-size: 22px; padding: 0 4px; }
  .vq-mark { font-size: 1.8em; }
  .bento { grid-template-columns: 1fr; }
  .b-feature { grid-column: auto; }
  .num-grid { grid-template-columns: 1fr; }
  .num-cell { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .voice-by { flex-direction: column; padding: 16px; gap: 12px; align-items: flex-start; }
  .hero::after { display: none; }
  /* Hide header CTA on small mobile — sticky mobi-cta handles conversion */
  .hd-actions .cta-primary { display: none; }
  .brand-text strong { font-size: 14px; }
  .brand-text .brand-sub { display: none; }
  .hd-wrap { height: 64px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
