@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --bg: #fafaf8;
    --surface: #ffffff;
    --border: #e8e4de;
    --text: #1a1a1a;
    --muted: #8a8680;
    --gold: #c9a84c;
    --gold-light: #f0e6cc;
    --radius: 14px;
}

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

html, body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.site-header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--gold); }

.back-link {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.back-link:hover { color: var(--text); }

.policy-wrap {
    flex: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    width: 100%;
}

.policy-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.policy-wrap h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.15;
}

.policy-date {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 40px;
    display: block;
}

.policy-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 12px;
}

.policy-wrap p {
    font-size: 15px;
    color: #4a4642;
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-wrap ul { list-style: none; margin-bottom: 14px; }

.policy-wrap ul li {
    font-size: 15px;
    color: #4a4642;
    line-height: 1.8;
    padding: 6px 0 6px 20px;
    position: relative;
}

.policy-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 15px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
}

.policy-wrap a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--gold);
}

.policy-wrap a:hover { color: var(--gold); }

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 16px;
}

.contact-card p { margin-bottom: 8px; font-size: 14px; color: #4a4642; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card strong { color: var(--text); }

.highlight-list { margin-bottom: 14px; }

.highlight-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.highlight-list li::before { display: none; }

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 40px 40px 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-section h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}

.footer-section a {
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-section a:hover { color: var(--text); }

.footer-bottom {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .site-header { padding: 16px 20px; }
    .policy-wrap { padding: 36px 20px 60px; }
    .footer { padding: 32px 20px 20px; }
}
