 :root {
      --midnight: #0A0C10;
      --ink: #10131A;
      --surface: #14171F;
      --card: #1A1E28;
      --border: rgba(255,255,255,0.07);
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dim: rgba(201,168,76,0.12);
      --cream: #F5F0E8;
      --muted: rgba(245,240,232,0.90);
      --white: #FFFFFF;
      --nav-h: 76px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--midnight);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 1.75;
      overflow-x: hidden;
    }

    /* All headings use Inter */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Inter', sans-serif;
      color: var(--white);
      line-height: 1.2;
    }

    /* ── NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
      z-index: 9999;
      background: rgba(10,12,16,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      height: 100%; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.03em;
      color: var(--white);
      text-decoration: none;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .nav-logo .logo-mark {
      width: 32px; height: 32px;
      border: 1.5px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: var(--gold);
    }
    .nav-back {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--gold); }

    .nav-toggle {
      display: none; background: none; border: none;
      color: var(--white); font-size: 1.4rem; cursor: pointer;
    }

    /* ── HERO BANNER ── */
    .page-hero {
      position: relative;
      padding-top: calc(var(--nav-h) + 5rem);
      padding-bottom: 4rem;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .page-hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(201,168,76,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero-glow {
      position: absolute; width: 600px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
      top: 0; right: -100px; pointer-events: none;
    }
    .page-hero-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    }
    .eyebrow {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); display: flex; align-items: center; gap: 0.5rem;
      margin-bottom: 1.2rem;
    }
    .eyebrow::before {
      content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
    }
    .page-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      color: var(--white);
    }
    .page-subtitle {
      font-size: 0.92rem; color: var(--muted); max-width: 580px; line-height: 1.75;
      margin-bottom: 2rem;
    }
    .page-meta {
      display: flex; gap: 2rem; flex-wrap: wrap;
    }
    .meta-item {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em;
    }
    .meta-item i { color: var(--gold); font-size: 0.8rem; }

    /* ── LAYOUT ── */
    .content-wrapper {
      max-width: 820px; margin: 0 auto; padding: 4rem 2rem 6rem;
    }

    /* ── ARTICLE CONTENT ── */
    .policy-content { min-width: 0; }

    .policy-section {
      padding-bottom: 3.5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 3.5rem;
    }
    .policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .section-number {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.75rem;
    }
    .policy-section h2 {
      font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em;
      margin-bottom: 1.25rem; color: var(--white);
    }
    .policy-section p {
      font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem;
    }
    .policy-section p:last-child { margin-bottom: 0; }
    .policy-section p strong { color: var(--cream); font-weight: 600; }

    .policy-list {
      list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.6rem;
    }
    .policy-list li {
      font-size: 0.9rem; color: var(--muted); line-height: 1.7;
      display: flex; align-items: flex-start; gap: 0.75rem;
    }
    .policy-list li::before {
      content: ''; display: block; width: 5px; height: 5px;
      background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 0.6rem;
    }

    /* Highlight box */
    .policy-highlight {
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.2);
      border-left: 3px solid var(--gold);
      padding: 1.2rem 1.5rem; margin: 1.5rem 0;
    }
    .policy-highlight p {
      font-size: 0.88rem; color: var(--cream); margin: 0; line-height: 1.75;
    }
    .policy-highlight .highlight-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.4rem;
    }

    /* Info card */
    .info-card {
      background: var(--card); border: 1px solid var(--border);
      padding: 1.5rem; margin-top: 1.5rem;
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .info-card i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
    .info-card p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.75; }
    .info-card p strong { color: var(--cream); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-inner p { font-size: 0.75rem; color: rgba(245,240,232,0.3); }
    .footer-legal { display: flex; gap: 2rem; }
    .footer-legal a {
      font-size: 0.72rem; color: rgba(245,240,232,0.3); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: var(--gold); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 576px) {
      .page-meta { flex-direction: column; gap: 0.75rem; }
      .nav-toggle { display: block; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }