  :root {
    --forest: #1a2e22;
    --forest-m: #243d2e;
    --forest-l: #2e5040;
    --forest-xl: #3d6b54;
    --gold: #b08d57;
    --gold-l: #d4af70;
    --gold-p: #f5edda;
    --gold-xp: #faf7f0;
    --cream: #f8f4ec;
    --cream-w: #efe8d5;
    --cream-d: #e5dbc8;
    --ink: #1a1a1a;
    --slate: #3d3d3d;
    --muted: #7a7a7a;
    --border: #e0d8c6;
    --white: #fff;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--cream-w); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── TOPNAV ── */
  .topnav {
    position: sticky; top: 0; z-index: 100;
    background: var(--forest);
    height: 60px;
    display: flex; align-items: center;
    padding: 0 5vw;
    gap: 20px;
    border-bottom: 1px solid rgba(176,141,87,.2);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 21px; font-weight: 400;
    color: #fff; text-decoration: none;
    letter-spacing: .3px;
  }
  .nav-logo em { font-style: italic; color: var(--gold-l); }
  .nav-sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }
  .nav-crumb {
    font-size: 12px; color: rgba(255,255,255,.4);
    display: flex; align-items: center; gap: 6px; flex: 1;
  }
  .nav-crumb span { color: rgba(255,255,255,.65); }
  .nav-links { display: flex; gap: 6px; }
  .nav-link {
    padding: 7px 15px; border-radius: 4px;
    font-size: 12px; font-weight: 600;
    text-decoration: none; transition: .2s; cursor: pointer; border: none;
  }
  .nav-link-ghost { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18); }
  .nav-link-ghost:hover { color: #fff; border-color: rgba(255,255,255,.4); }
  .nav-link-gold { background: var(--gold); color: var(--forest); font-weight: 700; }
  .nav-link-gold:hover { background: var(--gold-l); }

  /* ── HERO ── */
  .hero {
    background: var(--forest);
    position: relative; overflow: hidden;
    padding: 72px 5vw 64px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 120%, rgba(176,141,87,.14) 0%, transparent 70%),
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b08d57' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  /* decorative vertical line */
  .hero-vline {
    position: absolute; left: 5vw; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, rgba(176,141,87,.3), transparent);
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 820px; margin: 0 auto;
    text-align: center;
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(176,141,87,.12);
    border: 1px solid rgba(176,141,87,.3);
    padding: 6px 18px; border-radius: 40px;
    font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-l); margin-bottom: 28px;
  }
  .hero-kicker::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--gold);
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 400; color: #fff;
    line-height: 1.08; margin-bottom: 18px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-l); }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,.55);
    line-height: 1.75; max-width: 560px; margin: 0 auto 36px;
  }
  .hero-meta {
    display: inline-flex; gap: 32px; flex-wrap: wrap;
    justify-content: center;
  }
  .hero-meta-item { text-align: center; }
  .hero-meta-label {
    font-size: 9px; text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(255,255,255,.28); display: block; margin-bottom: 3px;
  }
  .hero-meta-val {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6);
  }

  /* ── LAYOUT ── */
  .page-wrap {
    max-width: 1160px; margin: 0 auto;
    padding: 64px 5vw 100px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
  }

  /* ── SIDEBAR TOC ── */
  .toc {
    position: sticky; top: 80px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .toc-header {
    background: var(--forest);
    padding: 16px 20px;
  }
  .toc-header-label {
    font-size: 9px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    margin-bottom: 4px; display: block;
  }
  .toc-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; color: #fff; font-weight: 400;
  }
  .toc-list { list-style: none; padding: 8px 0; }
  .toc-item a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 20px;
    font-size: 12.5px; color: var(--slate);
    text-decoration: none; transition: .2s;
    border-left: 3px solid transparent;
    line-height: 1.4;
  }
  .toc-item a:hover, .toc-item a.active {
    background: var(--gold-xp);
    color: var(--forest);
    border-left-color: var(--gold);
  }
  .toc-item a .toc-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px; color: var(--gold);
    flex-shrink: 0; width: 16px; text-align: center;
  }
  .toc-divider {
    height: 1px; background: var(--border);
    margin: 6px 0;
  }
  .toc-contact {
    padding: 14px 20px;
    background: var(--gold-xp);
    border-top: 1px solid var(--border);
  }
  .toc-contact-label {
    font-size: 9px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 8px; display: block;
  }
  .toc-contact a {
    display: block; font-size: 12px; color: var(--forest-l);
    text-decoration: none; margin-bottom: 3px; font-weight: 500;
  }
  .toc-contact a:hover { color: var(--gold); }

  /* ── ARTICLE ── */
  .article {}

  /* intro card */
  .intro-card {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-l) 100%);
    border-radius: 12px; padding: 32px 36px;
    margin-bottom: 48px; position: relative; overflow: hidden;
  }
  .intro-card::before {
    content: '§';
    position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 120px; color: rgba(255,255,255,.04);
    line-height: 1;
  }
  .intro-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: rgba(255,255,255,.78);
    line-height: 1.85; max-width: 580px;
  }
  .intro-card p strong { color: var(--gold-l); font-weight: 600; }

  /* section */
  .policy-section {
    margin-bottom: 52px;
    scroll-margin-top: 80px;
  }
  .section-head {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }
  .section-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 400;
    color: var(--gold); line-height: 1;
    flex-shrink: 0; width: 48px; text-align: center;
    opacity: .6;
  }
  .section-title-wrap {}
  .section-label {
    font-size: 9px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 4px; display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 500; color: var(--forest);
    line-height: 1.15;
  }

  .policy-body {
    font-size: 14.5px; color: var(--slate);
    line-height: 1.85;
  }
  .policy-body p { margin-bottom: 14px; }
  .policy-body p:last-child { margin-bottom: 0; }

  /* highlight block */
  .highlight-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin: 20px 0;
  }
  .highlight-block .hb-label {
    font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px; display: block;
  }
  .highlight-block ul {
    list-style: none;
  }
  .highlight-block ul li {
    display: flex; gap: 10px;
    font-size: 14px; color: var(--slate);
    padding: 6px 0;
    border-bottom: 1px solid var(--cream-w);
    line-height: 1.6;
  }
  .highlight-block ul li:last-child { border-bottom: none; }
  .highlight-block ul li::before {
    content: '→';
    color: var(--gold); font-size: 13px;
    flex-shrink: 0; margin-top: 2px;
  }

  /* two-col grid */
  .two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin: 20px 0;
  }
  .two-col-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px; padding: 18px 20px;
  }
  .two-col-card .tcc-icon { font-size: 24px; margin-bottom: 8px; }
  .two-col-card .tcc-title {
    font-size: 13px; font-weight: 700; color: var(--forest);
    margin-bottom: 6px;
  }
  .two-col-card .tcc-body {
    font-size: 13px; color: var(--muted); line-height: 1.6;
  }

  /* cookie row */
  .cookie-table {
    width: 100%; border-collapse: collapse;
    margin: 18px 0;
    font-size: 13.5px;
  }
  .cookie-table thead th {
    background: var(--forest);
    color: rgba(255,255,255,.8);
    padding: 10px 14px; text-align: left;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
  }
  .cookie-table thead th:first-child { border-radius: 6px 0 0 0; }
  .cookie-table thead th:last-child { border-radius: 0 6px 0 0; }
  .cookie-table tbody td {
    padding: 11px 14px; color: var(--slate);
    border-bottom: 1px solid var(--cream-w);
    vertical-align: top; line-height: 1.5;
  }
  .cookie-table tbody tr:hover td { background: var(--gold-xp); }
  .cookie-table tbody tr:last-child td { border-bottom: none; }

  /* rights grid */
  .rights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin: 20px 0;
  }
  .right-card {
    background: var(--forest);
    border-radius: 8px; padding: 18px 16px;
    text-align: center;
  }
  .right-card .rc-icon { font-size: 26px; margin-bottom: 8px; }
  .right-card .rc-title {
    font-size: 12.5px; font-weight: 700; color: var(--gold-l);
    margin-bottom: 5px;
  }
  .right-card .rc-body { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.55; }

  /* contact card */
  .contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    margin-top: 20px;
  }
  .contact-card-head {
    background: var(--forest);
    padding: 20px 24px;
    display: flex; align-items: center; gap: 14px;
  }
  .contact-card-head .ch-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(176,141,87,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .contact-card-head .ch-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 400; color: #fff;
  }
  .contact-card-head .ch-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
  .contact-card-body { padding: 22px 24px; }
  .contact-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--cream-w);
  }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-row .cr-icon {
    width: 34px; height: 34px; border-radius: 7px;
    background: var(--forest-f, var(--cream));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
    background: var(--gold-xp); border: 1px solid var(--border);
  }
  .contact-row .cr-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
  .contact-row .cr-val { font-size: 14px; color: var(--slate); }
  .contact-row .cr-val a { color: var(--forest-l); text-decoration: none; font-weight: 500; }
  .contact-row .cr-val a:hover { color: var(--gold); }

  /* update notice */
  .update-notice {
    background: rgba(176,141,87,.08);
    border: 1px solid rgba(176,141,87,.25);
    border-radius: 8px; padding: 14px 18px;
    display: flex; gap: 12px; align-items: flex-start;
    margin: 20px 0;
  }
  .update-notice .un-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .update-notice p { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

  /* ── FOOTER STRIP ── */
  .footer-strip {
    background: var(--forest);
    border-top: 1px solid rgba(176,141,87,.15);
    padding: 28px 5vw;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 14px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px; color: #fff; text-decoration: none;
  }
  .footer-logo em { font-style: italic; color: var(--gold-l); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a {
    font-size: 12px; color: rgba(255,255,255,.4);
    text-decoration: none; transition: .2s;
  }
  .footer-links a:hover { color: var(--gold-l); }
  .footer-copy { font-size: 11.5px; color: rgba(255,255,255,.28); }

  /* ── PROGRESS LINE ── */
  .reading-bar {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    width: 0%; z-index: 200; transition: width .1s linear;
  }

  /* ── ANIMATIONS ── */
  .policy-section { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
  .policy-section.visible { opacity: 1; transform: translateY(0); }
  .intro-card { opacity: 0; transform: translateY(12px); transition: .5s .1s ease; }
  .intro-card.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .page-wrap { grid-template-columns: 1fr; gap: 32px; padding: 40px 5vw 80px; }
    .toc { position: static; }
    .two-col { grid-template-columns: 1fr; }
    .rights-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .hero { padding: 52px 5vw 44px; }
    .rights-grid { grid-template-columns: 1fr; }
    .cookie-table { font-size: 12px; }
  }