    :root {
      --teal-deep: #00474c;
      --teal-mid: #00695c;
      --teal-light: #e0f2f1;
      --champagne: #C9A96E;
      --champagne-light: #f3e8d4;
      --charcoal: #1C1C1E;
      --offwhite: #FAF9F6;
      --white: #ffffff;
      --text-muted: #5a5a5a;
      --shadow: 0 4px 24px rgba(0,0,0,0.10);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--offwhite);
      color: var(--charcoal);
      margin: 0;
      overflow-x: hidden;
    }

    /* ---- NAV ---- */
    nav.main-nav {
      background: var(--teal-deep);
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
    }
    .nav-home-link {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .nav-home-link:hover { color: var(--champagne); }

    /* ---- LEGAL CONTENT ---- */
    .legal-wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 4rem 1.5rem 5rem;
    }
    .legal-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--champagne);
      display: block;
      margin-bottom: 0.6rem;
    }
    .legal-wrap h1 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 600;
      color: var(--charcoal);
      margin: 0 0 0.5rem;
      line-height: 1.15;
    }
    .legal-updated {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0 0 2.5rem;
    }
    .legal-intro {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0 0 2.5rem;
      max-width: 640px;
    }

    .legal-toc {
      background: var(--white);
      border: 1px solid #e5e0d8;
      border-radius: 4px;
      padding: 1.5rem 1.8rem;
      margin: 0 0 3rem;
    }
    .legal-toc h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--charcoal);
      margin: 0 0 0.9rem;
    }
    .legal-toc ol {
      margin: 0;
      padding-left: 1.2rem;
      columns: 2;
      column-gap: 2rem;
    }
    .legal-toc li {
      font-size: 0.88rem;
      margin-bottom: 0.5rem;
      break-inside: avoid;
    }
    .legal-toc a {
      color: var(--teal-deep);
      text-decoration: none;
    }
    .legal-toc a:hover { text-decoration: underline; }

    .legal-section {
      margin-bottom: 2.6rem;
      scroll-margin-top: 90px;
    }
    .legal-section h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--charcoal);
      margin: 0 0 0.9rem;
    }
    .legal-section h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--charcoal);
      margin: 1.3rem 0 0.5rem;
    }
    .legal-section p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0 0 1rem;
    }
    .legal-section ul, .legal-section ol.legal-list {
      margin: 0 0 1rem;
      padding-left: 1.3rem;
    }
    .legal-section li {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 0.4rem;
    }
    .legal-section a {
      color: var(--teal-deep);
      font-weight: 500;
    }
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0 0 1.2rem;
      font-size: 0.88rem;
    }
    .legal-table th, .legal-table td {
      text-align: left;
      padding: 0.65rem 0.8rem;
      border: 1px solid #e5e0d8;
      vertical-align: top;
    }
    .legal-table th {
      background: var(--teal-light);
      color: var(--charcoal);
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
    }
    .legal-table td {
      color: var(--text-muted);
    }

    .legal-callout {
      background: var(--teal-light);
      border-left: 3px solid var(--teal-deep);
      border-radius: 3px;
      padding: 1.1rem 1.4rem;
      margin: 0 0 1.2rem;
    }
    .legal-callout p {
      margin: 0;
      color: var(--charcoal);
      font-size: 0.9rem;
    }

    .manage-prefs-btn {
      background: var(--champagne);
      color: var(--charcoal);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.75rem 1.6rem;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .manage-prefs-btn:hover {
      background: #b8914f;
      transform: translateY(-1px);
    }

    /* ---- FOOTER ---- */
    footer.main-footer {
      background: var(--teal-deep);
      color: rgba(255,255,255,0.7);
      text-align: center;
      padding: 2.5rem 1.5rem;
    }
    footer.main-footer img {
      height: 52px;
      width: auto;
      margin-bottom: 0.8rem;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    footer.main-footer p {
      font-size: 0.8rem;
      margin: 0;
    }
    footer.main-footer .footer-legal-links {
      margin-top: 0.6rem;
    }
    footer.main-footer .footer-legal-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: underline;
    }
    footer.main-footer .footer-legal-links a:hover {
      color: var(--champagne);
    }

    /* ---- FLOATING PHONE BUTTON ---- */
    .floating-phone-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 800;
    }
    .floating-phone-btn a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: var(--champagne);
      color: var(--charcoal);
      border-radius: 50%;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .floating-phone-btn a:hover {
      background: #b8914f;
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 600px) {
      .legal-toc ol { columns: 1; }
      .legal-table { font-size: 0.82rem; }
    }
    @media (max-width: 480px) {
      .floating-phone-btn { bottom: 1.5rem; right: 1.5rem; }
      .floating-phone-btn a { width: 48px; height: 48px; }
    }
