  :root {
    --green:      #1a5c3a;
    --green-light:#2e7d52;
    --orange:     #e8600a;
    --dark:       #0d1f18;
    --white:      #ffffff;
    --off-white:  #f5f5f0;
    --gray:       #6b7280;
    --light-gray: #e8e8e3;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .brand {
    display: flex; align-items: center; gap: 8px;
    font-size: 1rem; font-weight: 700; color: var(--green);
    text-decoration: none;
  }
  .brand img { height: 30px; }
  .back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    text-decoration: none; padding: 9px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; transition: background 0.2s;
  }
  .back-btn:hover { background: var(--green-light); }

  @media (max-width: 600px) {
    nav { padding: 14px 20px; }
    .brand { font-size: 0.88rem; }
  }

  /* ── HERO STRIP ── */
  .policy-hero {
    background: var(--dark);
    padding: 64px 48px 56px;
    position: relative; overflow: hidden;
  }
  .policy-hero::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,96,10,0.18) 0%, transparent 70%);
  }
  .policy-hero::after {
    content: '';
    position: absolute; bottom: -80px; left: 10%;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,92,58,0.25) 0%, transparent 70%);
  }
  .policy-hero .container { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
  .policy-tag {
    display: inline-block;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--orange);
    border: 1px solid rgba(232,96,10,0.4); border-radius: 20px;
    padding: 4px 12px; margin-bottom: 18px;
  }
  .policy-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800;
    color: var(--white); line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .policy-hero p {
    color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7;
    max-width: 560px;
  }
  .policy-meta {
    display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
  }
  .policy-meta span {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 6px;
  }
  .policy-meta span strong { color: rgba(255,255,255,0.7); }

  @media (max-width: 600px) {
    .policy-hero { padding: 48px 20px 44px; }
  }

  /* ── LAYOUT ── */
  .policy-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 48px 80px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .policy-layout {
      grid-template-columns: 1fr;
      padding: 32px 20px 64px;
      gap: 0;
    }
  }

  /* ── SIDEBAR TOC ── */
  .toc {
    position: sticky; top: 80px;
    background: var(--white); border-radius: 14px;
    padding: 24px; border: 1px solid var(--light-gray);
  }
  .toc h6 {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gray); margin-bottom: 16px;
  }
  .toc ol { list-style: none; counter-reset: toc-counter; }
  .toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 2px;
  }
  .toc ol li a {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 10px; border-radius: 8px;
    text-decoration: none; color: var(--gray);
    font-size: 0.8rem; font-weight: 500; line-height: 1.4;
    transition: all 0.2s;
  }
  .toc ol li a::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-size: 0.68rem; color: var(--orange); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }
  .toc ol li a:hover {
    background: var(--off-white); color: var(--dark);
  }
  .toc ol li a.active {
    background: rgba(26,92,58,0.08); color: var(--green); font-weight: 600;
  }

  @media (max-width: 900px) { .toc { display: none; } }

  /* ── CONTENT ── */
  .policy-content { min-width: 0; }

  .policy-section {
    background: var(--white); border-radius: 16px;
    padding: 36px 40px; margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    scroll-margin-top: 90px;
  }
  .policy-section:last-child { margin-bottom: 0; }

  .section-number {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
  }
  .policy-section h2 {
    font-size: 1.2rem; font-weight: 700; color: var(--dark);
    margin-bottom: 18px; line-height: 1.2;
  }
  .policy-section p {
    color: var(--gray); font-size: 0.9rem; line-height: 1.8;
    margin-bottom: 14px;
  }
  .policy-section p:last-child { margin-bottom: 0; }
  .policy-section ul, .policy-section ol {
    color: var(--gray); font-size: 0.9rem; line-height: 1.8;
    padding-left: 20px; margin-bottom: 14px;
  }
  .policy-section ul li, .policy-section ol li { margin-bottom: 6px; }
  .policy-section strong { color: var(--dark); font-weight: 600; }
  .policy-section a { color: var(--green); font-weight: 600; }

  .highlight-box {
    background: rgba(26,92,58,0.06); border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 18px 0;
  }
  .highlight-box p { color: var(--dark); margin-bottom: 0; font-size: 0.88rem; }

  .warning-box {
    background: rgba(232,96,10,0.07); border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 18px 0;
  }
  .warning-box p { color: var(--dark); margin-bottom: 0; font-size: 0.88rem; }

  @media (max-width: 600px) {
    .policy-section { padding: 24px 20px; }
  }

  /* ── CONTACT CARD ── */
  .contact-card {
    background: var(--dark); border-radius: 16px;
    padding: 36px 40px; margin-bottom: 20px; color: var(--white);
  }
  .contact-card .section-number { color: var(--orange); }
  .contact-card h2 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
  .contact-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 10px; }
  .contact-card a  { color: var(--orange); font-weight: 600; text-decoration: none; }
  .contact-card a:hover { text-decoration: underline; }

  @media (max-width: 600px) {
    .contact-card { padding: 24px 20px; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.5);
    padding: 28px 48px; display: flex;
    align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
  }
  footer a { color: var(--orange); text-decoration: none; }
  footer a:hover { text-decoration: underline; }

  @media (max-width: 600px) {
    footer { padding: 24px 20px; flex-direction: column; text-align: center; }
  }