

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  :root {
    --green:    #0D3D28;
    --green-a:  #1E7A50;
    --cream:    #F4F2EC;
    --ink:      #181C19;
    --body:     #3A4340;
    --muted:    #636E6A;
    --border:   rgba(13,61,40,0.12);
    --white:    #FFFFFF;
  }

  body { background: var(--cream); color: var(--ink); font-family: 'DM Sans', system-ui, sans-serif; }

  /* ── NAV (shared) ── */
  .main-nav { background: var(--green); padding: 0 5vw; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
  .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-mark { background: rgba(255,255,255,0.12); color: #f4f1ea; font-weight: 700; font-size: 13px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; letter-spacing: 0.5px; }
  .nav-brand-name { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: white; letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 6px; }
  .nav-link { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); padding: 8px 12px; border-radius: 4px; cursor: pointer; transition: color .2s, background .2s; text-decoration: none; background: none; border: none; }
  .nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
  .nav-btn { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 7px 14px; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; background: none; }
  .nav-btn:hover { color: white; border-color: rgba(255,255,255,0.5); }
  .nav-tools-wrap { position: relative; }
  .nav-tools-btn { display: flex; align-items: center; gap: 5px; }
  .nav-tools-btn::after { content: '▾'; font-size: 10px; opacity: 0.6; }
  .tools-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: white; border: 1px solid var(--border); border-radius: 6px; min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 200; padding: 8px 0; }
  .tools-dropdown.open { display: block; }
  .tools-dropdown a { display: block; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--body); padding: 10px 18px; text-decoration: none; transition: background .15s; }
  .tools-dropdown a:hover { background: var(--cream); color: var(--ink); }
  .mobile-nav-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger-line { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); margin: 4px 0; border-radius: 2px; }

  /* ── PAGE HERO ── */
  .page-hero { background: var(--green); padding: 80px 10vw 90px; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4.5vw, 56px); font-weight: 400; color: white; line-height: 1.1; letter-spacing: -1px; max-width: 700px; margin-bottom: 16px; }
  .page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.55); }
  .page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; line-height: 1.7; }

  /* ── CONTENT ── */
  .privacy-wrap { max-width: 740px; margin: 0 auto; padding: 72px 10vw 96px; }
  .privacy-wrap h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--ink); margin: 48px 0 16px; letter-spacing: -0.3px; }
  .privacy-wrap h2:first-child { margin-top: 0; }
  .privacy-wrap p { font-size: 15px; color: var(--body); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
  .privacy-wrap p:last-child { margin-bottom: 0; }
  .privacy-wrap strong { font-weight: 500; color: var(--ink); }
  .privacy-wrap a { color: var(--green-a); text-decoration: none; }
  .privacy-wrap a:hover { text-decoration: underline; }

  .privacy-statement { background: white; border: 1px solid var(--border); border-left: 3px solid var(--green-a); padding: 28px 32px; margin: 0 0 48px; }
  .privacy-statement p { font-size: 16px; margin: 0; font-weight: 400; }
  .privacy-statement p + p { margin-top: 12px; }

  .privacy-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
  .privacy-table th { background: var(--green); color: white; text-align: left; padding: 12px 16px; font-weight: 500; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
  .privacy-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--body); vertical-align: top; font-weight: 300; }
  .privacy-table tr:last-child td { border-bottom: none; }
  .privacy-table td:first-child { font-weight: 500; color: var(--ink); white-space: nowrap; }

  /* ── FOOTER (shared) ── */
  footer.main-footer { background: var(--green); padding: 64px 10vw 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  .footer-brand-col { max-width: 280px; }
  .footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .footer-mark { background: rgba(255,255,255,0.12); color: #f4f1ea; font-weight: 700; font-size: 13px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; letter-spacing: 0.5px; }
  .footer-brand-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: white; letter-spacing: 1.5px; text-transform: uppercase; }
  .footer-tagline { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 20px; }
  .footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.7; font-weight: 300; }
  .footer-col { }
  .footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 16px; }
  footer.main-footer ul { list-style: none; }
  footer.main-footer ul li { margin-bottom: 10px; }
  footer.main-footer ul li a { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; font-weight: 300; transition: color .2s; text-decoration: none; }
  footer.main-footer ul li a:hover { color: white; }
  .footer-bottom { background: var(--green); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 10vw; font-size: 12px; color: rgba(255,255,255,.3); font-family: 'DM Sans', sans-serif; display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,.7); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-nav-btn { display: block; }
    .privacy-wrap { padding: 48px 20px 72px; }
    .page-hero { padding: 52px 20px 60px; }
    footer.main-footer { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 56px; }
    .footer-brand-col { max-width: 100%; }
    .footer-bottom { padding: 16px 20px; }
    .privacy-statement { padding: 20px 20px; }
  }

  .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; }
  .mobile-nav-overlay.open { display: block; }
  .mobile-nav-drawer { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: var(--green); z-index: 200; transition: right .3s ease; padding-top: 64px; overflow-y: auto; }
  .mobile-nav-drawer.open { right: 0; }
  .mobile-nav-links a { display: block; font-family: "DM Sans", sans-serif; font-size: 15px; color: #d5e2db; padding: 14px 28px; text-align: left; transition: background .2s; text-decoration: none; }
  .mobile-nav-links a:hover { background: rgba(255,255,255,0.06); color: white; }
  footer.main-footer { display: grid; }
  footer.main-footer a { text-decoration: none; }

