/* ─── Page ───────────────────────────────────────────── */
.privacy-page {
    font-family: 'Inter', sans-serif;
    background: var(--color-room, #f7f6f3);
    min-height: 100vh;
}

/* ─── Hero ───────────────────────────────────────────── */
.privacy-hero {
    padding: 96px 24px 56px;
    text-align: center;
    animation: privacyFadeUp 0.5s ease both;
}

.privacy-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.privacy-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ink-tertiary, #aaa);
    margin-bottom: 16px;
}

.privacy-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 16px;
}

.privacy-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-ink-secondary, #666);
    max-width: 480px;
    margin: 0 auto 12px;
}

.privacy-date {
    font-size: 12px;
    color: var(--color-ink-tertiary, #aaa);
}

/* ─── Body ───────────────────────────────────────────── */
.privacy-body {
    padding: 0 24px 64px;
}

.privacy-items {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ─── Item ───────────────────────────────────────────── */
.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border: 1px solid #e8e6e1;
    border-radius: 10px;
    padding: 24px 28px;
    transition: box-shadow 0.15s;
    animation: privacyFadeUp 0.4s ease both;
}

.privacy-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* stagger */
.privacy-item:nth-child(1) {
    animation-delay: 0.04s;
}

.privacy-item:nth-child(2) {
    animation-delay: 0.08s;
}

.privacy-item:nth-child(3) {
    animation-delay: 0.12s;
}

.privacy-item:nth-child(4) {
    animation-delay: 0.16s;
}

.privacy-item:nth-child(5) {
    animation-delay: 0.20s;
}

.privacy-item:nth-child(6) {
    animation-delay: 0.24s;
}

.privacy-item:nth-child(7) {
    animation-delay: 0.28s;
}

.privacy-item:nth-child(8) {
    animation-delay: 0.32s;
}

.privacy-item:nth-child(9) {
    animation-delay: 0.36s;
}

.privacy-item:nth-child(10) {
    animation-delay: 0.40s;
}

.privacy-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary, #0a0a0a);
    opacity: 0.35;
    flex-shrink: 0;
    margin-top: 3px;
    min-width: 24px;
}

.privacy-item-content {
    flex: 1;
}

.privacy-item-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 8px;
}

.privacy-item-text {
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-ink-secondary, #666);
}

.privacy-link {
    color: var(--color-primary, #0a0a0a);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(10, 10, 10, 0.25);
    transition: text-decoration-color 0.15s;
}

.privacy-link:hover {
    text-decoration-color: rgba(10, 10, 10, 0.8);
}

/* ─── Footer ─────────────────────────────────────────── */
.privacy-footer {
    padding: 0 24px 64px;
}

.privacy-footer-inner {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid #e8e6e1;
    padding-top: 32px;
    text-align: center;
}

.privacy-footer-label {
    font-size: 12px;
    color: var(--color-ink-secondary, #888);
    margin-bottom: 16px;
}

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

.privacy-footer-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary, #0a0a0a);
    text-decoration: none;
    text-underline-offset: 2px;
    transition: opacity 0.15s;
}

.privacy-footer-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* ─── Animation ──────────────────────────────────────── */
@keyframes privacyFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 480px) {
    .privacy-hero {
        padding: 64px 16px 40px;
    }

    .privacy-body,
    .privacy-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .privacy-item {
        padding: 20px 16px;
        gap: 16px;
    }

    .privacy-footer-links {
        gap: 12px 16px;
    }
}