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

    :root {
      --accent: #BA994E;
      --dark: #050505;
      --dark2: #0d0d0d;
      --mid: #242424;
      --text: #e0e0e0;
      --text-muted: #888;
      --white: #fff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.7;
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* NAVBAR */
    header {
      background: rgba(10,10,10,0.97);
      border-bottom: 1px solid #1a1a1a;
      padding: 0 5%;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo img { height: 40px; width: auto; }

    .logo-text {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.1em;
    }

    .back-link {
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .back-link:hover { color: var(--accent); text-decoration: none; }

    /* HERO */
    .page-hero {
      background: var(--dark2);
      border-bottom: 1px solid var(--mid);
      padding: 60px 5% 48px;
    }

    .page-hero-inner { max-width: 800px; }

    .page-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .page-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }

    .page-hero p {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* CONTENT */
    .policy-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 64px 5% 96px;
    }

    .policy-section {
      margin-bottom: 48px;
    }

    .policy-section h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--mid);
      margin-bottom: 18px;
    }

    .policy-section h2 span {
      color: var(--accent);
      margin-right: 10px;
      font-size: 0.85rem;
    }

    .policy-section p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .policy-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }

    .policy-section ul li {
      font-size: 0.9rem;
      color: var(--text-muted);
      padding-left: 18px;
      position: relative;
    }

    .policy-section ul li::before {
      content: '▸';
      color: var(--accent);
      position: absolute;
      left: 0;
    }

    .policy-section code {
      font-family: monospace;
      background: var(--mid);
      padding: 1px 6px;
      font-size: 0.82rem;
      color: var(--accent);
      border-radius: 2px;
    }

    .highlight-box {
      background: var(--dark2);
      border-left: 3px solid var(--accent);
      padding: 16px 20px;
      margin: 18px 0;
    }

    .highlight-box p {
      margin: 0;
      font-size: 0.87rem;
    }

    /* FOOTER */
    footer {
      background: #080808;
      border-top: 1px solid #1a1a1a;
      padding: 28px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy { font-size: 0.8rem; color: var(--text-muted); }

    .footer-link {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-link:hover { color: var(--accent); text-decoration: none; }

    @media (max-width: 600px) {
      footer { flex-direction: column; text-align: center; }
    }
