:root {
            --bg-cream: #faf7f0;
            --bg-white: #ffffff;
            --text-ink: #1c1c1c;
            --text-muted: #6b665e;
            --accent: #c5a052;
            --accent-dark: #b8893f;
            --border-warm: #e8e2d4;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --max-w: 1140px;
            --nav-h: 72px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,.08);
            --radius-sm: 8px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            font-weight: 300;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-ink);
            background: var(--bg-cream);
            touch-action: manipulation;
        }
        .container {
            max-width: var(--max-w);
            margin-inline: auto;
            padding-inline: 1.5rem;
            width: 100%;
        }
        .section {
            padding: 4rem 0;
        }
        .section--white { background: var(--bg-white); }
        .section--cream { background: var(--bg-cream); }
        .eyebrow {
            font-family: var(--font-body);
            font-size: .72rem;
            font-weight: 500;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--accent);
            display: block;
            margin-bottom: .5rem;
        }
        .hairline {
            border: none;
            border-top: 1px solid var(--accent);
            opacity: .35;
            margin: 0 0 1.25rem 0;
            max-width: 60px;
        }
        .section-heading {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-ink);
            margin-bottom: 1.5rem;
        }

        /* --- Nav --- */
        #nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 900;
            height: var(--nav-h);
            display: flex;
            align-items: center;
            background: rgba(250,247,240,.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid transparent;
            transition: background .3s, border-color .3s, box-shadow .3s;
        }
        #nav.scrolled {
            background: rgba(250,247,240,.97);
            border-bottom-color: var(--border-warm);
            box-shadow: var(--shadow-sm);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            width: 100%;
        }
        .nav-wordmark {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .wm-primary {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-ink);
            letter-spacing: .02em;
        }
        .wm-sub {
            font-size: .6rem;
            font-weight: 500;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.75rem;
        }
        .nav-links a {
            font-size: .82rem;
            font-weight: 400;
            color: var(--text-ink);
            text-decoration: none;
            transition: color .2s;
        }
        .nav-links a:hover, .nav-links a:focus-visible {
            color: var(--accent);
        }
        .nav-cta {
            font-size: .82rem;
            font-weight: 500;
            color: var(--text-ink);
            text-decoration: none;
            border: 1px solid var(--accent);
            border-radius: var(--radius-sm);
            padding: .5rem 1.1rem;
            transition: background .2s, color .2s;
            flex-shrink: 0;
        }
        .nav-cta:hover {
            background: var(--accent);
            color: #fff;
        }
        .nav-burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px; height: 44px; min-height: 44px;
            background: none; border: none; cursor: pointer; padding: 0;
            -webkit-tap-highlight-color: transparent; flex-shrink: 0;
        }
        .nav-burger span {
            display: block; width: 22px; height: 2px;
            background: var(--text-ink); border-radius: 2px;
            transition: transform .25s, opacity .25s;
        }
        .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-burger.open span:nth-child(2) { opacity: 0; }
        .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        @media (max-width: 900px) {
            .nav-links, .nav-cta { display: none; }
            .nav-burger { display: flex; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: var(--nav-h); left: 0; right: 0;
                height: calc(100dvh - var(--nav-h));
                height: calc(100vh - var(--nav-h));
                background: rgba(250,247,240,.98);
                -webkit-backdrop-filter: blur(16px);
                backdrop-filter: blur(16px);
                padding: 1.5rem 1.5rem 6rem;
                z-index: 860;
                border-top: 1px solid var(--border-warm);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            .nav-links.open a {
                display: block; padding: 1rem 0; font-size: 1.05rem;
                border-bottom: 1px solid var(--border-warm); width: 100%; text-align: left;
            }
        }

        /* --- Privacy page layout --- */
        .privacy-hero {
            padding-top: calc(var(--nav-h) + 3rem);
            padding-bottom: 1rem;
        }
        .privacy-content {
            max-width: 720px;
            margin-inline: auto;
        }
        .privacy-dateline {
            font-size: .85rem;
            color: var(--text-muted);
            margin-top: .25rem;
        }
        .privacy-intro {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .privacy-toc {
            background: var(--bg-white);
            border: 1px solid var(--border-warm);
            border-left: 3px solid var(--accent);
            border-radius: var(--radius-sm);
            padding: 1.5rem 1.75rem;
            margin-bottom: 3rem;
        }
        .privacy-toc__label {
            font-family: var(--font-display);
            font-size: .85rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: .75rem;
        }
        .privacy-toc__list {
            list-style: none;
            padding: 0; margin: 0;
            columns: 2;
            column-gap: 1.5rem;
        }
        .privacy-toc__list li {
            margin-bottom: .4rem;
            break-inside: avoid;
        }
        .privacy-toc__list a {
            font-size: .88rem;
            color: var(--text-ink);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color .2s, color .2s;
        }
        .privacy-toc__list a:hover, .privacy-toc__list a:focus-visible {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        .privacy-section {
            margin-bottom: 2.5rem;
            scroll-margin-top: 90px;
        }
        .privacy-section__number {
            font-family: var(--font-display);
            font-size: .75rem;
            letter-spacing: .15em;
            color: var(--accent);
            margin-bottom: .25rem;
        }
        .privacy-section h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: .75rem;
            color: var(--text-ink);
        }
        .privacy-section p {
            margin-bottom: 1rem;
        }
        .privacy-section ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        .privacy-section li {
            margin-bottom: .4rem;
        }
        .privacy-section a {
            color: var(--accent-dark);
            text-decoration: none;
            border-bottom: 1px solid var(--border-warm);
            transition: border-color .2s;
        }
        .privacy-section a:hover { border-bottom-color: var(--accent); }
        .privacy-section strong { font-weight: 500; }
        .privacy-section code {
            font-family: 'Courier New', monospace;
            font-size: .9em;
            background: var(--bg-cream);
            padding: .1em .3em;
            border-radius: 3px;
        }

        /* --- Footer --- */
        #footer {
            background: #14141a;
            color: rgba(255,255,255,.7);
            padding: 3rem 0 2rem;
        }
        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .footer-wordmark .wm-primary {
            color: #fff;
            font-size: 1.1rem;
        }
        .footer-wordmark .wm-sub {
            color: rgba(255,255,255,.4);
        }
        .wm-reg {
            font-size: .8rem;
            color: rgba(255,255,255,.4);
            margin-top: .5rem;
            line-height: 1.5;
        }
        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }
        .footer-nav a {
            font-size: .82rem;
            color: rgba(255,255,255,.6);
            text-decoration: none;
            transition: color .2s;
        }
        .footer-nav a:hover { color: var(--accent); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .footer-copy {
            font-size: .8rem;
            color: rgba(255,255,255,.4);
            line-height: 1.6;
        }
        .footer-copy a {
            color: rgba(255,255,255,.5);
            text-decoration: none;
        }
        .footer-copy a:hover { color: var(--accent); }
        .footer-disclaimer {
            font-size: .72rem;
            color: rgba(255,255,255,.3);
            max-width: 420px;
            line-height: 1.6;
        }
        @media (max-width: 640px) {
            .footer-top { flex-direction: column; }
            .privacy-toc__list { columns: 1; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            * { transition: none !important; }
        }