  @import url('fonts/fonts.css');

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #fbfaf7;            /* warm near-white, not stark */
    --bg-alt: #f3f1ec;        /* subtle block */
    --bg-code: #0e0e10;       /* dark terminal */
    --ink: #0a0a0a;           /* hero, headlines */
    --text: #1a1a1c;          /* body */
    --text-dim: #4a4a52;
    --text-muted: #82827e;
    --line: #e6e3dc;
    --line-soft: #efeee9;
    --accent: #b88a47;        /* amber, darkened for light bg */
    --accent-bright: #d4a25f;
    --accent-soft: #e8c884;
    --code-text: #e8e2d2;
    --code-dim: #82827a;
    --code-green: #8fc585;
    --code-amber: #e0b87a;
  }

  html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
  }

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

  a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent-soft); text-underline-offset: 3px; text-decoration-thickness: 1px; transition: text-decoration-color 0.15s, color 0.15s; }
  a:hover { color: var(--accent); text-decoration-color: var(--accent); }

  /* ── NAV ─────────────────────────────────────────────────── */
  nav {
    position: sticky; top: 0; z-index: 100;
    padding: 1.4rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  nav.scrolled { border-bottom-color: var(--line); background: rgba(251, 250, 247, 0.96); }
  .nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; border: none; }
  .nav-logo:hover { color: var(--ink); text-decoration: none; }
  .nav-logo .logo-dots circle { stroke: var(--ink); }
  .nav-logo .logo-text { font-size: 0.93rem; font-weight: 600; letter-spacing: -0.005em; }
  .nav-logo .logo-varjo { color: var(--ink); }
  .nav-logo .logo-soft { color: var(--text-muted); font-weight: 400; }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a { font-size: 0.86rem; color: var(--text-dim); text-decoration: none; font-weight: 500; }
  .nav-links a:hover, .nav-links a.active { color: var(--ink); text-decoration: none; }
  .nav-cta {
    padding: 0.5rem 1rem;
    background: var(--ink);
    color: var(--bg) !important;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
  }
  .nav-links a { white-space: nowrap; }
  .nav-cta:hover { background: var(--accent); color: var(--bg) !important; }
  .nav-toggle { display: none; background: none; border: none; color: var(--text-dim); font-size: 1.4rem; cursor: pointer; padding: 0.25rem; }

  /* ── LAYOUT ──────────────────────────────────────────────── */
  .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
  .container--narrow { max-width: 760px; }

  /* ── HERO ────────────────────────────────────────────────── */
  .hero {
    padding: 6rem 0 7rem;
    border-bottom: 1px solid var(--line);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 138, 71, 0.18);
  }
  .hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1.6rem;
  }
  .hero h1 .em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
    font-family: 'Newsreader', serif;
    letter-spacing: -0.015em;
  }
  .hero .lede {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--text-dim);
    max-width: 30em;
    margin-bottom: 2.2rem;
    font-weight: 400;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--accent); color: var(--bg); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.85rem 0.4rem;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .btn-arrow { transition: transform 0.2s; }
  .btn-primary:hover .btn-arrow { transform: translateX(2px); }

  .hero-byline {
    margin-top: 2.8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }
  .hero-byline strong { color: var(--text); font-weight: 600; }

  /* ── TERMINAL CARD ───────────────────────────────────────── */
  .terminal {
    background: var(--bg-code);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 24px 60px -20px rgba(10,10,10,0.25);
    font-family: 'SF Mono', 'JetBrains Mono', Menlo, monospace;
    font-size: 0.83rem;
    line-height: 1.7;
  }
  .terminal-bar {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .terminal-bar .dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: #3a3a3e;
  }
  .terminal-bar .title {
    margin-left: auto;
    margin-right: auto;
    padding-right: 2.7rem;
    color: var(--code-dim);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }
  .terminal-body {
    padding: 1.4rem 1.4rem 1.6rem;
    color: var(--code-text);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    tab-size: 2;
  }
  .terminal-body .cmd { color: var(--code-text); }
  .terminal-body .cmd::before { content: '$ '; color: var(--code-amber); }
  .terminal-body .arg { color: var(--code-amber); }
  .terminal-body .flag { color: var(--code-dim); }
  .terminal-body .out { color: var(--code-dim); }
  .terminal-body .ok { color: var(--code-green); font-weight: 500; }
  .terminal-body .fail { color: #d4856b; font-weight: 500; }
  .terminal-body .label { color: var(--code-amber); font-weight: 500; }
  .terminal-body .note { color: var(--code-text); font-style: italic; opacity: 0.78; }
  .terminal-body .blank { height: 0.55rem; }
  .terminal-body .last-line { color: var(--code-text); margin-top: 0.6rem; padding-top: 0.7rem; border-top: 1px dashed rgba(255,255,255,0.08); }

  /* ── PROOF STRIP ─────────────────────────────────────────── */
  .proof {
    padding: 4rem 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-label {
    font-size: 0.72rem; font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 2.4rem;
  }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .proof-stat {
    border-left: 2px solid var(--accent);
    padding-left: 1.4rem;
  }
  .proof-stat .num {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
  }
  .proof-stat .label {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.45;
    font-weight: 500;
  }
  .proof-stat .label a { color: var(--text-dim); }
  .proof-stat .label a:hover { color: var(--ink); }

  /* ── SECTIONS ────────────────────────────────────────────── */
  .section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--line);
  }
  .section-eyebrow {
    font-size: 0.72rem; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  .section h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1.4rem;
    max-width: 22em;
  }
  .section h2 .em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
    font-family: 'Newsreader', serif;
  }
  .section .intro {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 38em;
    margin-bottom: 3.5rem;
  }
  .section p { color: var(--text); margin: 0 0 1.2rem; }

  /* ── GATES (customer-experience cards) ───────────────────── */
  .gate-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gate-timeline-step {
    padding: 1.1rem 1.2rem;
    border-right: 1px solid var(--line);
    background: var(--bg);
  }
  .gate-timeline-step:last-child { border-right: none; }
  .gate-timeline-step .gt-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
  }
  .gate-timeline-step .gt-name {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .gate-timeline-step .gt-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'SF Mono', Menlo, monospace;
    letter-spacing: -0.005em;
  }

  .gates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .gate-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2rem 2rem 1.6rem;
    display: flex;
    flex-direction: column;
  }
  .gate-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--line);
  }
  .gate-card .gate-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.14em;
  }
  .gate-card .gate-meta {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-family: 'SF Mono', Menlo, monospace;
    text-align: right;
  }
  .gate-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1rem 0 0.8rem;
    letter-spacing: -0.018em;
  }
  .gate-card .gate-summary {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0 0 1.4rem;
  }
  .gate-detail {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    align-items: flex-start;
  }
  .gate-detail .gd-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
    width: 6.5rem;
    padding-top: 0.18rem;
  }
  .gate-detail .gd-text {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.5;
    flex: 1;
  }
  .gate-card .gate-example {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
    font-size: 0.84rem;
    color: var(--text-muted);
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    line-height: 1.55;
  }
  .gate-card .gate-example strong {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
  }

  /* ── OPERATIONS (after the engagement) ───────────────────── */
  .operations {
    padding: 5rem 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
  }
  .operations h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    max-width: 22em;
  }
  .operations h3 .em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
    font-family: 'Newsreader', serif;
  }
  .operations p {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 36em;
    margin: 0 0 1.2rem;
  }
  .operations .ops-dims {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .ops-dim {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .ops-dim .label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }
  .ops-dim .val {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
  }
  .ops-dim .sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
  }

  /* ── SHAPES (richer cards) ───────────────────────────────── */
  .shapes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .shape {
    padding: 1.8rem 1.8rem 1.6rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }
  .shape:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(184, 138, 71, 0.18);
  }
  .shape-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
  }
  .shape .tag {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: var(--bg-alt);
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 999px;
  }
  .shape .price {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    font-family: 'SF Mono', Menlo, monospace;
    letter-spacing: 0.01em;
  }
  .shape h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
    letter-spacing: -0.015em;
  }
  .shape .blurb {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.55;
    margin: 0 0 1.4rem;
  }
  .shape-scope {
    padding: 0.9rem 0;
    margin-bottom: 1rem;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
  }
  .shape-scope-row {
    display: flex;
    gap: 0.7rem;
    align-items: baseline;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--text-dim);
  }
  .shape-scope-row + .shape-scope-row { margin-top: 0.3rem; }
  .shape-scope-row .k {
    flex-shrink: 0;
    width: 4.2rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .shape-scope-row .v { color: var(--text); }
  .shape-deliverables {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }
  .shape-deliverables li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
  }
  .shape-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
  }
  .shape-deliverables li .opt {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 0.4rem;
    padding: 0.05rem 0.4rem;
    background: var(--bg-alt);
    border-radius: 3px;
  }
  .shape-deliverables-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }

  /* ── LIMITS / DISCIPLINE ─────────────────────────────────── */
  .limits {
    background: var(--bg-alt);
  }
  .limits .container { padding-top: 0; padding-bottom: 0; }
  .limits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-top: 2.5rem;
  }
  .limit {
    padding-left: 1.4rem;
    border-left: 2px solid var(--accent-soft);
  }
  .limit h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.4rem;
  }
  .limit p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.55;
    margin: 0;
  }

  /* ── CONTACT ─────────────────────────────────────────────── */
  .contact {
    padding: 6rem 0;
    text-align: left;
  }
  .contact h2 {
    margin-bottom: 1.4rem;
  }
  .contact .intro { margin-bottom: 1.8rem; }
  .scoping-checklist {
    margin: 0 0 2rem;
    padding: 1.1rem 1.4rem;
    background: var(--bg-alt);
    border-left: 2px solid var(--accent);
    border-radius: 4px;
  }
  .scoping-checklist .label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: 0.7rem;
  }
  .scoping-checklist ul { list-style: none; margin: 0; padding: 0; }
  .scoping-checklist li {
    font-size: 0.93rem;
    color: var(--text-dim);
    line-height: 1.55;
    padding: 0.18rem 0;
  }
  .scoping-checklist li strong { color: var(--ink); font-weight: 600; margin-right: 0.35rem; }
  .signature {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    color: var(--text-dim);
    font-size: 1.05rem;
  }
  .signature .name {
    font-style: normal;
    color: var(--ink);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
    display: block;
    margin-top: 0.4rem;
  }
  .signature .place {
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.15rem;
  }

  /* ── FOOTER ──────────────────────────────────────────────── */
  footer {
    padding: 3rem 0 3.5rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.82rem;
  }
  footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
  footer a { color: var(--text-muted); text-decoration: none; }
  footer a:hover { color: var(--ink); }
  footer .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

  /* ── RESPONSIVE ──────────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .gates { grid-template-columns: 1fr; gap: 1.4rem; }
    .gate-timeline { grid-template-columns: repeat(2, 1fr); }
    .gate-timeline-step:nth-child(2) { border-right: none; }
    .gate-timeline-step:nth-child(1), .gate-timeline-step:nth-child(2) { border-bottom: 1px solid var(--line); }
    .shapes { grid-template-columns: 1fr; }
    .limits-grid { grid-template-columns: 1fr; }
    .operations .ops-dims { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0; background: var(--bg); padding: 1rem 2rem; border-bottom: 1px solid var(--line); gap: 1rem; }
    .nav-toggle { display: block; }
    .hero { padding: 3rem 0 4rem; }
    .proof-grid { grid-template-columns: 1fr; }
    .gates { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .contact { padding: 4rem 0; }
  }

  /* ── BUILDER-FIRST REFRESH: atmosphere, motion, refinements ─── */
  /* Subtle amber light behind the hero. Audit-grade, not mystical. */
  .hero { position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; top: -28%; right: -12%;
    width: 58%; height: 120%;
    background: radial-gradient(closest-side, rgba(184, 138, 71, 0.10), transparent 72%);
    pointer-events: none; z-index: 0;
  }
  .hero .container { position: relative; z-index: 1; }

  /* Short text stats ("live", "pass^k") read as mono, not giant numerals. */
  .proof-stat .num--text {
    font-size: 1.8rem;
    font-family: 'SF Mono', 'JetBrains Mono', Menlo, monospace;
    letter-spacing: -0.01em;
    padding-top: 0.35rem;
  }
  .proof-stat { transition: border-color 0.2s; }
  .proof-stat:hover { border-left-color: var(--accent-bright); }

  /* Gate cards lift like the shape cards already do. */
  .gate-card { transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
  .gate-card:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -18px rgba(184, 138, 71, 0.22);
  }

  /* The exhibit gets the same warm block treatment, slightly framed. */
  .operations .ops-cta { margin-top: 2.2rem; }

  /* One orchestrated load (hero) + scroll reveals (everything below). */
  @keyframes vrise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    .anim { opacity: 0; animation: vrise 0.85s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; animation-delay: var(--d, 0s); }
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1); }
    .reveal.in { opacity: 1; transform: none; }
  }
