:root {
  --bg: #FFFFFF;
  --surface: #F4F6FA;
  --navy: #1C2B4A;
  --gold: #C9A96E;
  --gold-dim: rgba(201,169,110,0.2);
  --text: #1C2B4A;
  --muted: #6B7A8D;
  --border: rgba(28,43,74,0.1);
  --max: 1060px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Source Sans 3', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px,5vw,56px);
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: 'Libre Baskerville', serif; font-size: 17px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.01em; margin-right: auto;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 22px; background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: #263758; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--navy); transition: 0.3s; }

/* ── Drawer ─────────────────────────────────────────────── */
.drawer {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
  border-bottom: 1px solid var(--border);
}
.drawer.open { max-height: 280px; }
.drawer a {
  display: block; padding: 18px clamp(20px,5vw,56px);
  border-bottom: 1px solid var(--border);
  font-family: 'Libre Baskerville', serif; font-size: 18px;
  color: var(--muted); transition: color 0.2s;
}
.drawer a:hover { color: var(--navy); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  background: var(--navy); color: #fff; border: 1px solid var(--navy);
  font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:hover { background: #263758; transform: translateY(-1px); }

.btn.btn-outline {
  background: transparent; color: var(--navy);
}
.btn.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 4px; color: var(--muted);
  font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--navy); border-color: var(--navy); }

/* ── Section base ───────────────────────────────────────── */
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px,5vw,56px); }
section { padding: clamp(72px,9vh,112px) 0; }

.eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Libre Baskerville', serif; font-weight: 700;
  font-size: clamp(22px,3vw,36px); line-height: 1.2;
  color: var(--navy); margin: 8px 0 48px; max-width: 560px;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(201,169,110,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 80px clamp(20px,5vw,56px); }

.hero-rule {
  border: none; height: 1px; background: var(--gold-dim); margin: 18px 0;
  transform-origin: left center;
}

.hero-title {
  font-family: 'Libre Baskerville', serif; font-weight: 700;
  font-size: clamp(52px,8vw,108px); line-height: 1.02;
  color: var(--navy); margin: 24px 0 0;
}
.hero-line { display: block; }
.hero-sub {
  font-size: clamp(15px,1.5vw,18px); font-weight: 300; color: var(--muted);
  max-width: 480px; line-height: 1.8; margin-top: 28px;
}
.hero-btns { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }

/* Stats strip */
.stats-strip {
  display: flex; align-items: center;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { flex: 1; }
.stat-num {
  font-family: 'Libre Baskerville', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-suffix { font-family: 'Libre Baskerville', serif; font-size: 0.55em; font-weight: 400; color: var(--gold); }
.stat-text { font-family: 'Libre Baskerville', serif; font-size: clamp(22px,2.8vw,36px); font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; margin: 0 clamp(16px,2.5vw,36px); }
.stats-source { font-size: 10px; letter-spacing: 0.06em; color: var(--muted); margin-top: 16px; opacity: 0.5; }

/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 13px 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding-right: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ── Problem ────────────────────────────────────────────── */
.problem { background: var(--surface); border-top: 1px solid var(--border); }
.problem-body { max-width: 680px; }
.body-text { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.body-text:last-child { margin-bottom: 0; }

/* ── Process ────────────────────────────────────────────── */
.process { background: var(--bg); border-top: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.step-num {
  font-family: 'Source Sans 3', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
}
.card-rule { border: none; height: 1px; background: var(--gold-dim); margin-bottom: 20px; }
.step:hover .card-rule { background: var(--gold); transition: background 0.3s; }
.step-title { font-family: 'Libre Baskerville', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ── Services (Features) ────────────────────────────────── */
.services { background: var(--surface); border-top: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 48px; max-width: 760px; }
.feature {
  display: flex; align-items: baseline; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.6;
}
.feature:nth-last-child(-n+2) { border-bottom: none; }
.feature-check { color: var(--gold); font-size: 15px; flex-shrink: 0; line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing { background: var(--bg); border-top: 1px solid var(--border); }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-bottom: 32px; }
.pricing-card {
  padding: 40px 32px; background: var(--bg);
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 4px 32px rgba(28,43,74,0.08); z-index: 1; }
.pricing-card--featured { border-top: 3px solid var(--navy); }
.plan-badge {
  position: absolute; top: 16px; left: 32px;
  padding: 4px 12px;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.pricing-card--featured { padding-top: 60px; }
.plan-name {
  font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.plan-price {
  font-family: 'Libre Baskerville', serif; font-size: clamp(32px,3vw,44px); font-weight: 700;
  color: var(--gold); margin: 16px 0;
}
.pricing-card .card-rule { margin: 8px 0 20px; }
.plan-features { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.plan-features li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px;
}
.pricing-note { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ── Deliverable Preview ────────────────────────────────── */
.deliverable { background: var(--surface); border-top: 1px solid var(--border); }
.deliverable .section-title { margin-bottom: 16px; }
.deliverable-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  max-width: 580px; line-height: 1.85; margin-bottom: 48px;
}
.deliverable-caption {
  font-size: 12px; font-weight: 300; color: var(--muted);
  margin-top: 20px; letter-spacing: 0.04em; text-align: center;
}

/* Browser chrome wrapper */
.browser-frame {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 28px 72px rgba(28,43,74,0.18), 0 4px 16px rgba(28,43,74,0.08);
  border: 1px solid var(--border);
  max-width: 840px;
}
.browser-chrome {
  background: #E8EAED; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #CDD0D4;
}
.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; display: block; }
.browser-bar {
  flex: 1; background: #fff; border-radius: 4px;
  padding: 4px 12px; font-size: 11px; color: #6B7280;
  font-family: 'Source Sans 3', sans-serif;
  border: 1px solid #CDD0D4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Audit mock interior — dark theme, all values hardcoded to avoid page variable bleed */
.audit-mock { background: #0A0D12; position: relative; overflow: hidden; max-height: 560px; }

.am-header {
  background: #111620; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #252E42;
}
.am-header-left { display: flex; align-items: center; gap: 11px; }
.am-mh-pill {
  width: 30px; height: 30px; border-radius: 6px;
  background: linear-gradient(135deg, #4F9CF9, #38BDF8);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; letter-spacing: 0.05em;
  font-family: 'Source Sans 3', sans-serif; flex-shrink: 0;
}
.am-brand-name { font-family: 'Libre Baskerville', serif; font-size: 13px; font-weight: 700; color: #F1F5F9; line-height: 1.2; }
.am-brand-sub { font-size: 9px; color: #475569; letter-spacing: 0.09em; text-transform: uppercase; }
.am-analyst-info { font-size: 11px; color: #475569; font-family: 'Source Sans 3', sans-serif; }

.am-client-block { padding: 18px 20px 14px; border-bottom: 1px solid #1E2535; }
.am-client-name { font-family: 'Libre Baskerville', serif; font-size: 17px; font-weight: 700; color: #F1F5F9; margin-bottom: 3px; }
.am-client-meta { font-size: 11px; color: #475569; letter-spacing: 0.02em; }

.am-score-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: #252E42; margin: 14px 20px;
  border: 1px solid #252E42;
}
.am-score-card { background: #111620; padding: 11px 12px; text-align: center; }
.am-score-num { font-family: 'Libre Baskerville', serif; font-size: 20px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.am-score-label { font-size: 9px; color: #475569; text-transform: uppercase; letter-spacing: 0.08em; }

.am-card-list { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.am-rec-card { background: #111620; border: 1px solid #252E42; border-radius: 4px; overflow: hidden; }
.am-rec-head { display: flex; align-items: center; gap: 9px; padding: 11px 13px; }
.am-rec-num {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
  font-family: 'Source Sans 3', sans-serif; flex-shrink: 0;
}
.am-rec-title { flex: 1; font-size: 12px; font-weight: 600; color: #CBD5E1; line-height: 1.3; }
.am-rec-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 3px; flex-shrink: 0;
}
.am-rec-chevron { font-size: 10px; color: #475569; flex-shrink: 0; }

.am-rec-body { padding: 0 13px 13px; border-top: 1px solid #1E2535; display: none; }
.am-rec-open .am-rec-body { display: block; }
.am-rec-why-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #4F9CF9; margin: 11px 0 5px;
}
.am-rec-why { font-size: 11px; color: #94A3B8; line-height: 1.7; margin-bottom: 10px; }
.am-rec-copy { background: #0A0D12; border: 1px solid #252E42; border-radius: 3px; padding: 9px 11px; position: relative; }
.am-rec-copy-label { font-size: 9px; color: #4F9CF9; letter-spacing: 0.05em; margin-bottom: 5px; text-transform: uppercase; }
.am-rec-copy-text { font-size: 11px; color: #CBD5E1; line-height: 1.6; padding-right: 60px; }
.am-copy-btn {
  position: absolute; top: 8px; right: 8px;
  background: #1E2535; border: 1px solid #2E3A52;
  color: #94A3B8; font-size: 10px; padding: 4px 8px; border-radius: 3px;
  cursor: default; font-family: 'Source Sans 3', sans-serif;
}
.am-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to bottom, transparent, #0A0D12);
  pointer-events: none;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--bg); border-top: 1px solid var(--border); }
.faq-list { max-width: 680px; }
.faq-item { padding: 32px 0; }
.faq-q {
  font-family: 'Libre Baskerville', serif; font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.faq-a { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.85; }
.faq-rule { border: none; height: 1px; background: var(--border); }

/* ── Contact / CTA ──────────────────────────────────────── */
.contact { background: var(--navy); border-top: 1px solid var(--border); }
.contact .eyebrow { color: var(--gold); }
.contact-inner { max-width: 680px; }
.cta-rule { border: none; height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 40px; }
hr.cta-rule:last-child { margin-top: 48px; margin-bottom: 0; }
.cta-title {
  font-family: 'Libre Baskerville', serif; font-size: clamp(26px,3.5vw,48px);
  line-height: 1.15; color: #fff; margin: 8px 0 16px;
}
.cta-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 40px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group textarea {
  padding: 14px 18px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15); color: #fff;
  font-family: 'Source Sans 3', sans-serif; font-size: 14px; font-weight: 300;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; }
.contact-form .btn {
  align-self: flex-start; background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700;
}
.contact-form .btn:hover { background: #b89050; border-color: #b89050; color: var(--navy); transform: translateY(-1px); }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px,5vw,56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo { font-family: 'Libre Baskerville', serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--navy); }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--muted); }

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

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats-strip { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: calc(50% - 12px); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature:last-child { border-bottom: none; }
  .pricing-cards { grid-template-columns: 1fr; gap: 16px; background: none; }
  .pricing-card { border: 1px solid var(--border); }
  .pricing-card--featured { border-color: var(--navy); border-top-width: 3px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .am-score-row { grid-template-columns: repeat(2,1fr); }
  .browser-bar { display: none; }
  .am-rec-title { font-size: 11px; }
  .am-client-name { font-size: 15px; }
  .audit-mock { max-height: 500px; }
}

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

/* ── Hero entrance — orchestrated top-to-bottom ────────────
   Designed timing: eyebrow → rule-draw → title cascade →
   rule-draw-rtl → sub → buttons → stats.
   Each element has a specific role in the sequence.        */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ruleDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero .eyebrow { animation: heroFadeUp 0.55s var(--ease) 0.05s both; }

.hero .hero-rule:first-of-type {
  animation: ruleDraw 0.5s var(--ease) 0.2s both;
  transform-origin: left center;
}
.hero .hero-rule:last-of-type {
  animation: ruleDraw 0.5s var(--ease) 0.58s both;
  transform-origin: right center;
}

.hero-title .hero-line:nth-child(1) { animation: heroFadeUp 0.7s var(--ease) 0.28s both; }
.hero-title .hero-line:nth-child(2) { animation: heroFadeUp 0.7s var(--ease) 0.40s both; }
.hero-title .hero-line:nth-child(3) { animation: heroFadeUp 0.7s var(--ease) 0.52s both; }

.hero .hero-sub    { animation: heroFadeUp 0.65s var(--ease) 0.68s both; }
.hero .hero-btns   { animation: heroFadeUp 0.6s  var(--ease) 0.82s both; }
.hero .stats-strip { animation: heroFadeUp 0.65s var(--ease) 0.96s both; }

/* ── Scroll reveal stagger — steps ─────────────────────── */
.steps .step:nth-child(2) { transition-delay: 130ms; }
.steps .step:nth-child(3) { transition-delay: 260ms; }

/* ── Scroll reveal stagger — features (row by row) ─────── */
.features-grid .feature:nth-child(n+3):nth-child(-n+4) { transition-delay: 80ms; }
.features-grid .feature:nth-child(n+5):nth-child(-n+6) { transition-delay: 160ms; }
.features-grid .feature:nth-child(n+7)                 { transition-delay: 240ms; }

/* ── Scroll reveal stagger — pricing cards ──────────────── */
.pricing-cards .pricing-card:nth-child(2) { transition-delay: 160ms; }
.pricing-cards .pricing-card:nth-child(3) { transition-delay: 320ms; }

/* ── Deliverable frame — slide from left instead of up ─── */
.browser-frame.reveal { transform: translateX(-20px); }

/* ── Interaction polish ─────────────────────────────────── */
.step-num { transition: color 0.25s; }
.step:hover .step-num { color: var(--navy); }

.feature-check { transition: color 0.2s; }
.feature:hover .feature-check { color: var(--navy); }

.pricing-card--featured:hover { box-shadow: 0 8px 48px rgba(28,43,74,0.14); }

/* ── Focus visible — keyboard navigation ─────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

