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

    :root {
      --ink: #1a1814;
      --parchment: #f5f0e8;
      --warm-white: #faf8f4;
      --sage: #7a8c75;
      --gold: #b8975a;
      --muted: #7a746a;
      --border: rgba(26,24,20,0.1);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--ink);
      font-weight: 300;
      line-height: 1.6;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 3rem;
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-back {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-back:hover { color: var(--ink); }

    .page-header {
      background: var(--parchment);
      padding: 4rem 3rem;
      border-bottom: 1px solid var(--border);
    }

    .page-header-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .last-updated {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    .summary-box {
      background: var(--ink);
      color: var(--parchment);
      padding: 2rem 3rem;
    }

    .summary-box-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .summary-box h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .summary-item {
      font-size: 0.85rem;
      color: rgba(245,240,232,0.8);
      line-height: 1.5;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(245,240,232,0.12);
    }

    .content {
      max-width: 760px;
      margin: 0 auto;
      padding: 4rem 3rem;
    }

    .policy-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
    }

    .policy-section:last-child {
      border-bottom: none;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    p:last-child { margin-bottom: 0; }

    ul {
      margin: 0.75rem 0 1rem 0;
      padding-left: 0;
      list-style: none;
    }

    ul li {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
      padding: 0.4rem 0 0.4rem 1.5rem;
      position: relative;
      border-bottom: 1px solid var(--border);
    }

    ul li:last-child { border-bottom: none; }

    ul li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.8rem;
    }

    strong {
      font-weight: 500;
      color: var(--ink);
    }

    a {
      color: var(--ink);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    a:hover { color: var(--gold); }

    .contact-block {
      background: var(--parchment);
      border: 1px solid var(--border);
      padding: 2rem;
      border-radius: 2px;
      margin-top: 1.5rem;
    }

    .contact-block p {
      margin-bottom: 0.5rem;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--ink);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--ink); }

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

    @media (max-width: 700px) {
      nav, .page-header, .summary-box { padding-left: 1.5rem; padding-right: 1.5rem; }
      .content { padding: 3rem 1.5rem; }
      footer { padding: 1.5rem; flex-direction: column; text-align: center; }
    }