/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--blk);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    line-height: 1.55;
    margin: 0;
}
.cookie-banner__text a { color: var(--y); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--yd); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 9px 20px;
    border-radius: var(--rb);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}
.cookie-btn--reject {
    background: transparent;
    color: rgba(255,255,255,.65);
    border: 1.5px solid rgba(255,255,255,.2);
}
.cookie-btn--reject:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.cookie-btn--accept { background: var(--y); color: var(--ink); border: 1.5px solid transparent; }
.cookie-btn--accept:hover { background: var(--yd); }
html.a11y-no-motion .cookie-banner { transition: none; }

@media (max-width: 600px) {
    .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
    .cookie-banner__actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* ── Legal pages ────────────────────────────────────────────── */
.legal-wrap {
    padding: 60px 0 100px;
    max-width: 760px;
}
.legal-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--blk);
    margin-bottom: 6px;
}
.legal-updated {
    font-size: 13px;
    color: #999;
    margin-bottom: 44px;
}
.legal-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blk);
    margin: 40px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--y);
    display: inline-block;
}
.legal-content h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--blk);
    margin: 24px 0 6px;
}
.legal-content p { font-size: 15px; line-height: 1.75; color: #555; margin-bottom: 12px; }
.legal-content ul,
.legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.legal-content li { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 6px; }
.legal-content a { color: var(--blk); text-decoration: underline; }
.legal-content a:hover { color: var(--y); }
.legal-content strong { color: var(--blk); font-weight: 700; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.legal-content th { background: var(--blk); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.legal-content td { padding: 10px 14px; border-bottom: 1px solid #eee; color: #555; }
.legal-content tr:last-child td { border-bottom: none; }
