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

        :root {
            --fuerza:  #4F4A2B;
            --luz:     #F2EDD9;
            --honesta: #d8c491;
            --natural: #DDDABF;
            --text:      #4F4A2B;
            --text-soft: #5a5535;
            --text-muted: #6b6440;
            --border:    rgba(79, 74, 43, 0.12);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-mono:    'Chivo Mono', 'Courier New', monospace;
            --max: 680px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-mono);
            font-weight: 300;
            background: var(--luz);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        /* Grain */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }

        /* Nav */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 50;
            height: 68px;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--luz);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo { width: 140px; display: block; }

        .nav-back {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.6;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .nav-back:hover { opacity: 1; }

        /* Page */
        .page {
            position: relative;
            z-index: 1;
            padding: 100px 40px 100px;
            max-width: calc(var(--max) + 80px);
            margin: 0 auto;
        }

        /* Header */
        .page-label {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.5;
            margin-bottom: 20px;
        }

        .page-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 300;
            line-height: 1.05;
            color: var(--fuerza);
            margin-bottom: 20px;
        }

        .page-intro {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-soft);
            max-width: var(--max);
            margin-bottom: 8px;
        }

        .page-updated {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 56px;
        }

        .page-divider {
            width: 100%;
            height: 1px;
            background: var(--border);
            margin-bottom: 56px;
        }

        /* Sections */
        .privacy-section {
            max-width: var(--max);
            padding: 28px 0;
            border-bottom: 1px solid var(--border);
        }

        .privacy-section:first-child {
            border-top: 1px solid var(--border);
        }

        .section-number {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .privacy-section h2 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            color: var(--fuerza);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .privacy-section p {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--text-soft);
            margin-bottom: 12px;
        }

        .privacy-section p:last-child { margin-bottom: 0; }

        .privacy-section ul {
            list-style: none;
            padding: 0;
            margin-top: 4px;
        }

        .privacy-section ul li {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--text-soft);
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
        }

        .privacy-section ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--text-muted);
            font-size: 12px;
        }

        .privacy-section a {
            color: var(--fuerza);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .privacy-section a:hover { opacity: 0.7; }

        .privacy-strong {
            font-weight: 400;
            color: var(--fuerza);
        }

        /* Footer */
        .footer {
            background: var(--fuerza);
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-logo { width: 160px; opacity: 0.85; }

        .footer-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(216, 196, 145, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-link:hover { color: rgba(216, 196, 145, 1); }

        .footer-copy {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.06em;
            color: rgba(216, 196, 145, 0.45);
        }

        /* Responsive */
        @media (max-width: 480px) {
            .nav { padding: 18px 20px; }
            .nav-logo { width: 130px; }
            .page { padding: 90px 20px 72px; }
            .footer { padding: 48px 20px; }
            .footer-links { flex-direction: column; gap: 12px; }
            .footer-logo { width: 140px; }
        }