/* =====================================================
   PRIVACY POLICY STYLES v1
   ===================================================== */

/* ── Root Variables ── */
:root {
    --cream: #FAFAF7;
    --cream-warm: #F5F1E9;
    --dark: #1C1A18;
    --mid: #6A6763;
    --light-mid: #A09A94;
    --hairline: rgba(28, 26, 24, .09);
    --hairline-mid: rgba(28, 26, 24, .14);
    --burgundy: #7A1F2B;
    --burgundy-dk: #5C1720;
    --gold: #C8A36A;
    --gold-lt: #D9BC8F;
    --white: #FFFFFF;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --t: all 0.35s var(--ease);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 12px rgba(28, 26, 24, .06);
    --shadow-card: 0 4px 24px rgba(28, 26, 24, .08);
    --shadow-lift: 0 16px 56px rgba(28, 26, 24, .14);
    --shadow-xl: 0 32px 80px rgba(28, 26, 24, .18);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

img,
svg,
iframe,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.main-content {
    max-width: 860px;
	margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

/* ── Privacy Hero ── */
.privacy-hero {
    padding: 80px 0 56px;
    background: var(--cream);
    text-align: center;
}

.privacy-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.privacy-hero .eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px;
    color: var(--burgundy);
    display: block;
    margin-bottom: 20px;
}

.privacy-hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(38px, 5.6vw, 74px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: var(--dark);
}

.privacy-hero h1 .burg {
    color: var(--burgundy);
}

.privacy-hero .sub {
    margin-top: 22px;
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--mid);
    line-height: 1.75;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Privacy Content ── */
.privacy-page {
    padding: 60px 0 100px;
    background: var(--cream);
}

.privacy-block {
    margin-bottom: 48px;
}

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

.privacy-block h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 30px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.privacy-block h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--dark);
}

.privacy-block p {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.privacy-block p strong {
    color: var(--dark);
    font-weight: 600;
}

.privacy-block ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.privacy-block ul li {
    position: relative;
    padding: 6px 0 6px 24px;
    color: var(--mid);
    font-size: 15px;
    line-height: 1.7;
}

.privacy-block ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--burgundy);
    font-weight: 300;
}

.privacy-block .section-content p {
    margin-bottom: 12px;
}

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

.privacy-block .contact-info {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
    border: 1px solid var(--hairline);
}

.privacy-block .contact-info p {
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--dark);
}

.privacy-block .contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-block .contact-info strong {
    color: var(--burgundy);
    font-weight: 600;
}

.privacy-block .contact-info a {
    color: var(--burgundy);
    font-weight: 500;
    transition: color .25s;
}

.privacy-block .contact-info a:hover {
    color: var(--burgundy-dk);
}

.privacy-page .last-updated {
    text-align: center;
    font-size: 13px;
    color: var(--light-mid);
    margin-top: 48px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ── Reveal Animations ── */
@keyframes rvIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.rv.in {
    animation: rvIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rv-1.in {
    animation-delay: 0.05s;
}
.rv-2.in {
    animation-delay: 0.15s;
}
.rv-3.in {
    animation-delay: 0.25s;
}
.rv-4.in {
    animation-delay: 0.35s;
}
.rv-5.in {
    animation-delay: 0.45s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 48px 0 32px;
    }

    .privacy-page {
        padding: 40px 0 60px;
    }

    .privacy-block {
        margin-bottom: 32px;
    }

    .privacy-block h2 {
        font-size: clamp(20px, 4vw, 24px);
    }

    .privacy-block p,
    .privacy-block ul li,
    .privacy-block .section-content p {
        font-size: 14px;
    }

    .privacy-block .contact-info {
        padding: 18px 20px;
    }

    .privacy-page .last-updated {
        font-size: 12px;
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .privacy-block h2 {
        font-size: 18px;
    }

    .privacy-block p,
    .privacy-block ul li,
    .privacy-block .section-content p {
        font-size: 13px;
    }

    .privacy-block ul li {
        padding: 4px 0 4px 20px;
    }

    .privacy-block ul li::before {
        top: 4px;
    }

    .privacy-block .contact-info {
        padding: 14px 16px;
    }

    .privacy-block .contact-info p {
        font-size: 13px;
    }
}

/* ── Scrollbar ── */
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

::selection {
    background: var(--burgundy);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 10px;
    border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dk);
}