/* =================================================================
 * JuriDX Dossier Noir — shared stylesheet for secondary marketing
 * pages. Tokens and patterns extracted verbatim from the landing
 * (Direction 01 · Dossier Noir). Any new page should import this
 * and use the semantic classes below; no per-page overrides.
 * ================================================================= */

/* ===== Motion tokens — defined first so all rules can reference them ===== */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: #06060E; }
body {
  background: #06060E;
  color: #EDECEA;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: transparent; color: inherit; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
mark { background: none; color: #bea987; }
::selection { background: #bea987; color: #06060E; }
hr { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Libre Caslon Text', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  -webkit-hyphens: manual;
  hyphens: manual;
}
h1 { font-size: clamp(52px, 6.5vw, 88px); font-weight: 500; letter-spacing: -0.025em; line-height: 0.98; }
h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 500; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; font-family: 'Plus Jakarta Sans', sans-serif; }
p  { margin: 0; color: #C5C3CD; line-height: 1.65; font-size: 16px; text-wrap: pretty; }
em, .italic-serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: #EDECEA; }
.gold { color: #bea987; }
.muted { color: #9B99A3; }
.fine { color: #7A7885; }

/* Grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* =========================================================
 * Layout shell — section padding creates rhythm via three
 * tiers: standard (128px), hero (96/64), and footer (80/40).
 * The inner .container is a pure max-width box with zero
 * padding so content reaches 1280px on wide screens.
 * =======================================================*/
.container       { max-width: 1280px; margin: 0 auto; padding: 0; }
.container-tight { max-width:  860px; margin: 0 auto; padding: 0; }

.section       { padding: 128px 32px; position: relative; }
.section-hero  { padding:  96px 32px 64px; position: relative; }

/* Prose readability inside a wide .container */
.prose { max-width: 68ch; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50; height: 68px;
  background: rgba(6,6,14,0.75);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; padding: 0 32px;
}
.nav-inner { max-width: 1280px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { display: block; }
.brand-text {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: #EDECEA;
  transition: color 0.2s var(--ease-out-quart);
}
.brand:hover .brand-text { color: #bea987; }
.nav-links { display: flex; gap: 28px; margin-left: 48px; flex: 1; }
.nav-link {
  font-size: 13px; color: #9B99A3; font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-link:hover { color: #EDECEA; }
.nav-link.is-current { color: #bea987; }

/* Underline delight on nav links */
.nav-links .nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #bea987;
  transition: width 0.2s var(--ease-out-quart);
}
.nav-links .nav-link:hover::after { width: 100%; }
.nav-links .nav-link.is-current::after { width: 100%; }

.nav-ctas { display: flex; gap: 12px; align-items: center; }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 8px;
  background: #bea987; color: #06060E;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.15s var(--ease-out-quart), box-shadow 0.15s var(--ease-out-quart);
}
.btn-gold:hover  { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn-gold:active { transform: translateY(0);    box-shadow: 0 1px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  background: transparent; color: #EDECEA;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover  { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.03); }
.btn-ghost:active { border-color: rgba(255,255,255,0.2);  background: rgba(255,255,255,0.05); }
.btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* Page eyebrows and labels */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  color: #bea987; padding: 6px 12px;
  border: 1px solid rgba(190,169,135,0.2);
  border-radius: 20px; background: rgba(190,169,135,0.05);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #bea987; box-shadow: 0 0 8px #bea987; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  color: #8E7430; text-transform: uppercase; margin-bottom: 40px;
}

/* Hero block utilities */
.section-hero h1 { margin-bottom: 32px; }
.section-hero h1:last-child { margin-bottom: 0; }
.section-hero .fine { margin-top: 8px; }
.hero-heading  { margin-bottom: 32px; }
.hero-lead     { font-size: 18px; color: #9B99A3; line-height: 1.65; max-width: 620px; margin-bottom: 36px; }
.hero-lead-start { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: #EDECEA; font-size: 22px; }

/* Hero entrance animation — CSS-driven, fires on page load */
.section-hero .eyebrow,
.section-hero h1,
.section-hero .hero-lead,
.section-hero .btn-row,
.section-hero .hero-lead + * {
  animation: heroFadeUp 0.75s var(--ease-out-quart) both;
}
.section-hero .eyebrow     { animation-delay:   0ms; }
.section-hero h1           { animation-delay:  80ms; }
.section-hero .hero-lead   { animation-delay: 160ms; }
.section-hero .btn-row     { animation-delay: 220ms; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Cards */
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -8px rgba(0,0,0,0.5);
}
.card-elevated {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.card-elevated:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 36px 80px -36px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.07);
}
.card-gold {
  background: linear-gradient(180deg, rgba(190,169,135,0.06), rgba(190,169,135,0.02));
  border: 1px solid rgba(190,169,135,0.25);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px -30px rgba(190,169,135,0.2);
  transition: border-color 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.card-gold:hover {
  border-color: rgba(190,169,135,0.38);
  transform: translateY(-2px);
  box-shadow: 0 28px 72px -32px rgba(190,169,135,0.3);
}

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2           { grid-template-columns: 1fr; }
  .nav              { padding: 0 24px; }
  .section          { padding: 96px 24px; }
  .section-hero     { padding: 56px 24px 32px; }
  .footer           { padding: 64px 24px 32px; }
  .nav-links        { display: none; }
}
@media (max-width: 600px) {
  .nav              { padding: 0 18px; }
  .section          { padding: 72px 18px; }
  .section-hero     { padding: 40px 18px 24px; }
  .footer           { padding: 56px 18px 24px; }
}

/* Split two-column layout */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* Definition list / ruled list */
.ruled { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.06); }
.ruled > * {
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: max-content 1fr; gap: 24px; align-items: baseline;
}
.ruled .key { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.4px; color: #8E7430; text-transform: uppercase; padding-top: 4px; }
.ruled .val { font-size: 15px; color: #C5C3CD; line-height: 1.65; }
.ruled .val strong { color: #EDECEA; font-weight: 600; }
@media (max-width: 700px) { .ruled > * { grid-template-columns: 1fr; gap: 6px; } }

/* Stat strip */
.stats { display: grid; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; }
.stats.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.stats.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.stat { background: #06060E; padding: 28px 24px; transition: background 0.2s var(--ease-out-quart); }
.stat:hover { background: rgba(190,169,135,0.03); }
.stat .n { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; color: #EDECEA; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; }
.stat .n.gold { color: #bea987; font-style: italic; }
.stat .l { margin-top: 10px; font-size: 11px; letter-spacing: 1.6px; color: #8E7430; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 700px) { .stats.cols-3, .stats.cols-4 { grid-template-columns: 1fr 1fr; } }

/* Feature block */
.feature-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feature-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 1.8px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(190,169,135,0.1); color: #bea987; text-transform: uppercase;
}
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; }
.feature-desc { font-size: 15px; color: #9B99A3; line-height: 1.65; margin-top: 10px; }
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; }
.feature-list li {
  padding: 10px 0; font-size: 14px; color: #C5C3CD;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: flex-start; gap: 12px;
}
.feature-list li::before {
  content: ''; flex: 0 0 6px; height: 6px; border-radius: 50%;
  background: #bea987; margin-top: 9px; box-shadow: 0 0 8px rgba(190,169,135,0.6);
}

/* Comparison table (codex style) */
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 16px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare thead th {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  letter-spacing: 1.8px; color: #8E7430; text-transform: uppercase; padding-bottom: 20px;
}
.compare .row-label { color: #EDECEA; font-weight: 500; }
.compare .yes { color: #bea987; }
.compare .partial { color: #8E7430; }
.compare .no { color: #5C5A66; }
.compare td.italic-serif { text-align: right; }
.compare tbody tr { transition: background 0.15s; }
.compare tbody tr:hover { background: rgba(255,255,255,0.015); }

/* Pricing card */
.plan {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.plan:hover:not(.featured) {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.plan.featured {
  background: linear-gradient(180deg, rgba(190,169,135,0.06), rgba(190,169,135,0.01));
  border-color: rgba(190,169,135,0.35);
  box-shadow: 0 30px 80px -40px rgba(190,169,135,0.25);
}
.plan.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 100px -40px rgba(190,169,135,0.35);
}
.plan-name { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: #8E7430; text-transform: uppercase; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; color: #EDECEA; }
.plan-price .period { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; color: #9B99A3; font-weight: 500; margin-left: 8px; }
.plan-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: #bea987; line-height: 1.4; }
.plan-list { list-style: none; padding: 0; margin: 0; }
.plan-list li {
  padding: 12px 0; font-size: 14px; color: #C5C3CD; line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: flex-start; gap: 12px;
}
.plan-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.plan-list li::before { content: '✓'; color: #bea987; font-size: 13px; margin-top: 1px; }
.plan-list li.off { color: #5C5A66; }
.plan-list li.off::before { content: '—'; color: #5C5A66; }

/* Timeline (journal / changelog) */
.timeline { border-left: 1px solid rgba(255,255,255,0.1); margin-left: 8px; padding-left: 32px; }
.entry { position: relative; padding: 12px 0 48px; }
.entry::before {
  content: ''; position: absolute; left: -40px; top: 22px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #06060E; border: 2px solid #bea987;
  box-shadow: 0 0 8px rgba(190,169,135,0.4);
  transition: box-shadow 0.2s var(--ease-out-quart);
}
.entry:hover::before { box-shadow: 0 0 16px rgba(190,169,135,0.6); }
.entry-meta { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.entry-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.4px; color: #8E7430; text-transform: uppercase; }
.entry-ver { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 2px 8px; border-radius: 4px; background: rgba(190,169,135,0.08); color: #bea987; letter-spacing: 0.5px; }
.entry-type { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.4px; color: #9B99A3; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
.entry h3 { font-size: 24px; margin-bottom: 8px; }
.entry p { max-width: 720px; }
.entry ul { list-style: none; padding: 0; margin: 12px 0 0; }
.entry ul li { padding: 4px 0; color: #9B99A3; font-size: 14px; padding-left: 18px; position: relative; }
.entry ul li::before { content: '·'; position: absolute; left: 4px; color: #bea987; }

/* Documentation index */
.doc-group { margin-bottom: 64px; }
.doc-group-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.doc-group-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; letter-spacing: -0.015em; }
.doc-group-count { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.4px; color: #8E7430; }
.doc-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.doc-item {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  display: block; position: relative;
  transition: padding-left 0.2s var(--ease-out-quart);
}
.doc-item .t { font-size: 15px; font-weight: 500; color: #EDECEA; margin-bottom: 4px; transition: color 0.15s; }
.doc-item .t::after {
  content: ' →';
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart);
}
.doc-item .d { font-size: 13px; color: #9B99A3; line-height: 1.5; }
.doc-item:hover { padding-left: 6px; }
.doc-item:hover .t { color: #bea987; }
.doc-item:hover .t::after { opacity: 1; transform: translateX(0); }
@media (max-width: 700px) { .doc-items { grid-template-columns: 1fr; } }

/* Forms */
.form { display: flex; flex-direction: column; gap: 18px; }
.field label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.8px; color: #8E7430; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
  color: #EDECEA; font-family: inherit; font-size: 15px;
  transition: border-color 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(190,169,135,0.5);
  box-shadow: 0 0 0 3px rgba(190,169,135,0.08);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* FAQ / accordion (CSS-only via <details>) */
details.faq { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
details.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; color: #EDECEA;
  transition: color 0.15s;
}
details.faq summary:hover { color: #bea987; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace; font-size: 20px; color: #bea987; margin-left: 16px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out-quart), color 0.15s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .answer { padding-top: 14px; max-width: 820px; color: #9B99A3; font-size: 15px; line-height: 1.7; }
details.faq .answer p { margin-bottom: 10px; color: #C5C3CD; }

/* Footer */
.footer { padding: 80px 32px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-about { font-size: 13px; color: #9B99A3; line-height: 1.6; margin-top: 16px; }
.footer-h { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: #8E7430; text-transform: uppercase; margin-bottom: 16px; }
.footer-link {
  display: block; font-size: 13px; color: #9B99A3; padding: 4px 0;
  transition: color 0.15s, padding-left 0.2s var(--ease-out-quart);
}
.footer-link:hover { color: #EDECEA; padding-left: 4px; }
.footer-base { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); font-size: 12px; color: #5C5A66; }
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { flex-direction: column; }
}

/* Callout banner */
.callout {
  background: linear-gradient(180deg, rgba(190,169,135,0.06), rgba(190,169,135,0.01));
  border: 1px solid rgba(190,169,135,0.25);
  border-radius: 16px; padding: 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  transition: border-color 0.2s var(--ease-out-quart), box-shadow 0.2s var(--ease-out-quart);
}
.callout:hover {
  border-color: rgba(190,169,135,0.35);
  box-shadow: 0 20px 60px -30px rgba(190,169,135,0.15);
}
.callout h3 { font-size: 28px; max-width: 640px; }
.callout p { color: #9B99A3; margin-top: 8px; max-width: 560px; }

/* Utilities */
.space-xs { height: 12px; } .space-s { height: 24px; } .space-m { height: 48px; } .space-l { height: 80px; } .space-xl { height: 120px; }
.text-center { text-align: center; }
.flex { display: flex; } .items-center { align-items: center; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* Fade-in (legacy — use js-reveal for scroll-triggered) */
.fade-in { opacity: 0; transform: translateY(8px); animation: fadeUp 0.8s ease 0.1s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Legal pages — H2 inside <section> must NOT use the huge serif default */
.legal-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #EDECEA;
}
.legal-h2:first-child { margin-top: 0; }

/* Scroll-triggered reveal — class applied by site.js */
.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease-out-quart), transform 0.65s var(--ease-out-quart);
}
.js-reveal.visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion: skip all animation */
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .section-hero .eyebrow,
  .section-hero h1,
  .section-hero .hero-lead,
  .section-hero .btn-row,
  .section-hero .hero-lead + * { animation: none !important; }
}

/* ===== Focus ring ===== */
:focus-visible {
  outline: 2px solid rgba(190,169,135,0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Accessibility ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
