/* ============================================================
   VEILANT ACCESS — Shared Stylesheet
   Design language: white/bone surfaces, muted gold accent,
   glass panels, monospace data accents, editorial sans headlines.
   ============================================================ */

:root {
  /* Color tokens */
  --white: #ffffff;
  --bone: #faf8f3;
  --bone-deep: #f2ede0;
  --ink: #17181c;
  --ink-soft: #5b5c66;
  --ink-faint: #8b8c96;
  --line: #e6e1d3;
  --line-strong: #d8d0ba;

  --gold: #a9791f;
  --gold-deep: #8a611a;
  --gold-bright: #c8952e;
  --gold-tint: #f6ecd6;
  --gold-tint-strong: #eeddb4;

  --success: #1f7a52;
  --success-tint: #e5f3ec;
  --error: #b3402c;
  --error-tint: #fbeae6;

  --shadow-sm: 0 2px 10px rgba(23, 24, 28, 0.05);
  --shadow-md: 0 12px 32px rgba(23, 24, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 24, 28, 0.12);
  --shadow-gold: 0 12px 30px rgba(169, 121, 31, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ Skip link (a11y) ============ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 3000;
  border-radius: 0 0 8px 0;
  font-family: var(--font-mono);
  font-size: 13px;
}
.skip-link:focus {
  left: 0;
}

/* ============ Focus visibility ============ */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ Top utility strip ============ */
.top-strip {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 14px;
}
.top-strip strong { color: var(--gold-bright); }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 26px;
    gap: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { align-self: flex-start; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(169, 121, 31, 0.26);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: #2b2c33;
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ============ Eyebrow / labels ============ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

/* ============ Badge pills ============ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: var(--bone);
  color: var(--ink-soft);
}
.badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.badge.gold { border-color: var(--gold-tint-strong); background: var(--gold-tint); color: var(--gold-deep); }

/* ============ Sections & typography ============ */
section { padding: 96px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--bone); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; }
h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; }
h3 { font-size: 20px; }
p { color: var(--ink-soft); margin: 0 0 16px; }
.lede { font-size: 18px; color: var(--ink-soft); max-width: 620px; }

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ============ Glass panel ============ */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(169, 121, 31, 0.16);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 76px 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(720px 360px at 12% 0%, rgba(200, 149, 46, 0.14), transparent 60%),
    radial-gradient(600px 340px at 92% 10%, rgba(200, 149, 46, 0.10), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.page-hero {
  padding: 56px 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); }
.page-hero .lede { margin-bottom: 0; }

/* ============ Code Console (signature element) ============ */
.console {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1b1c22;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #101116;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.console-dot { width: 9px; height: 9px; border-radius: 50%; }
.console-dot.r { background: #e05a4a; }
.console-dot.y { background: #e0a93d; }
.console-dot.g { background: #46b17e; }
.console-file { margin-left: 10px; font-size: 11px; color: #9a9ba5; letter-spacing: 0.02em; }

.console-body {
  padding: 22px 22px 26px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #b7b9c4;
  min-height: 230px;
  position: relative;
}
.console-line { white-space: pre; }
.console-line .ln { color: #55575f; display: inline-block; width: 26px; user-select: none; }
.console-tag-fail {
  color: #ff8a75;
  background: rgba(224, 90, 74, 0.12);
  border-radius: 4px;
  padding: 1px 6px;
  transition: background 0.4s ease, color 0.4s ease;
}
.console-tag-pass {
  color: #6fd4a4;
  background: rgba(70, 177, 126, 0.14);
  border-radius: 4px;
  padding: 1px 6px;
}
.console-comment { color: #6b6d78; }
.console-keyword { color: #c8952e; }
.console-string { color: #9bc27a; }

.cursor-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 4;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.45));
  animation: cursorTravel 7s cubic-bezier(.65,.05,.36,1) infinite;
}
.click-ring {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  opacity: 0;
  z-index: 3;
  animation: clickPulse 7s ease infinite;
}
.fail-badge, .pass-badge {
  position: absolute;
  right: 22px;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.fail-badge { background: rgba(224,90,74,0.15); color: #ff8a75; animation: badgeFail 7s ease infinite; }
.pass-badge { background: rgba(70,177,126,0.16); color: #6fd4a4; opacity: 0; animation: badgePass 7s ease infinite; }

@keyframes cursorTravel {
  0%   { top: 40px; left: 60%; opacity: 0; }
  6%   { opacity: 1; }
  22%  { top: 108px; left: 34%; opacity: 1; }
  30%  { top: 108px; left: 34%; }
  34%  { top: 108px; left: 34%; transform: scale(0.85); }
  40%  { top: 108px; left: 34%; transform: scale(1); }
  70%  { top: 108px; left: 34%; opacity: 1; }
  84%  { top: 60px; left: 70%; opacity: 1; }
  100% { top: 60px; left: 70%; opacity: 0; }
}
@keyframes clickPulse {
  0%, 27% { opacity: 0; transform: scale(0.6); top: 100px; left: 26px; }
  30% { opacity: 1; transform: scale(1); }
  40% { opacity: 0; transform: scale(1.6); }
  100% { opacity: 0; }
}
@keyframes badgeFail {
  0%, 32% { opacity: 1; }
  42%, 100% { opacity: 0; }
}
@keyframes badgePass {
  0%, 38% { opacity: 0; }
  46%, 100% { opacity: 1; }
}
.line-fixable { transition: color 0.5s ease; }

/* ============ Stat row ============ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 860px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  border-top: 2px solid var(--gold);
  padding-top: 14px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}
.stat .cap {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ Cards / grids ============ */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  border-color: var(--gold-tint-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card .icon-tile {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-tile svg { width: 22px; height: 22px; color: var(--gold-deep); }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 14.5px; }

/* Approach comparison cards */
.compare-card { border-radius: var(--radius-md); padding: 34px; }
.compare-card.bad { background: var(--error-tint); border: 1px solid #f0d2ca; }
.compare-card.good { background: var(--success-tint); border: 1px solid #cfe7da; }
.compare-card h3 { display: flex; align-items: center; gap: 10px; }
.compare-card ul { margin: 0; padding-left: 20px; }
.compare-card li { margin-bottom: 12px; font-size: 14.5px; color: var(--ink); }
.compare-card.bad h3 { color: var(--error); }
.compare-card.good h3 { color: var(--success); }

/* ============ Pricing ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-card.featured::before {
  content: 'Most Selected';
  position: absolute;
  top: -13px; left: 30px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.price-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.price-value { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin: 12px 0 4px; }
.price-value span { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--ink-faint); }
.price-desc { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; }
.price-features li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 13.8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ============ FAQ ============ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq-plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  color: var(--gold-deep);
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--gold-tint); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-panel-inner { padding: 0 4px 24px; font-size: 14.5px; color: var(--ink-soft); max-width: 760px; }

/* category tag for faq */
.faq-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  background: var(--gold-tint);
  padding: 4px 10px;
  border-radius: 100px;
  margin: 36px 0 6px;
  display: inline-block;
}

/* ============ Case study / litigation cards ============ */
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  background: var(--white);
  margin-bottom: 22px;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.case-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}
.case-tag.outcome-loss { background: var(--error-tint); color: var(--error); border-color: #f0d2ca; }
.case-tag.outcome-settled { background: var(--gold-tint); color: var(--gold-deep); border-color: var(--gold-tint-strong); }
.case-tag.outcome-mixed { background: #eef1fb; color: #46538f; border-color: #d6dcf2; }
.case-card h3 { margin-bottom: 8px; }
.case-card .case-cite { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); margin-bottom: 16px; }
.case-lesson {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--bone);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
}
.case-lesson strong { color: var(--ink); }

/* ============ Quote / callout ============ */
.callout {
  border-radius: var(--radius-lg);
  padding: 44px;
  background: linear-gradient(135deg, var(--gold-tint), var(--white));
  border: 1px solid var(--gold-tint-strong);
}

/* ============ Timeline (about) ============ */
.timeline { border-left: 2px solid var(--line-strong); margin-left: 8px; }
.timeline-item { position: relative; padding: 0 0 34px 30px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-tint-strong);
}
.timeline-item h4 { margin-bottom: 6px; font-size: 15.5px; }
.timeline-item p { font-size: 14px; margin-bottom: 0; }

/* ============ Form ============ */
.form-panel { padding: 40px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 12px; color: var(--ink-faint); margin-top: 6px; }
.form-note {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-faint);
  align-items: flex-start;
  margin-top: 18px;
}

/* Diagnostic mini-console output on contact page */
.mini-console-out {
  font-family: var(--font-mono);
  font-size: 12px;
  background: #1b1c22;
  color: #b7b9c4;
  border-radius: var(--radius-sm);
  padding: 18px;
  min-height: 90px;
  line-height: 1.8;
}
.mini-console-out .ok { color: #6fd4a4; }
.mini-console-out .sys { color: #7fa8e0; }

/* ============ CTA band ============ */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 60px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #b9bac2; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { box-shadow: 0 14px 30px rgba(200,149,46,0.28); }

/* ============ Footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: var(--bone);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand p { font-size: 13.5px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13.8px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); text-decoration: underline; }

/* ============ Utility ============ */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.max-prose { max-width: 760px; }
.small-print { font-size: 12.5px; color: var(--ink-faint); }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

.legal-body h2 { font-size: 20px; margin-top: 44px; }
.legal-body h3 { font-size: 16px; margin-top: 24px; }
.legal-body p, .legal-body li { font-size: 14.5px; color: var(--ink-soft); }
.legal-toc {
  padding: 26px;
  margin-bottom: 40px;
}
.legal-toc h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-mono); margin-bottom: 14px; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
.legal-toc li { font-size: 13.5px; margin-bottom: 8px; }
.legal-toc a { text-decoration: none; color: var(--ink); }
.legal-toc a:hover { color: var(--gold-deep); }
@media (max-width: 700px) { .legal-toc ol { columns: 1; } }
