/* ==========================================================================
   Cookie consent — quiet, premium bottom bar. Brand-aligned (bronze accent).
   ========================================================================== */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999;
    background: rgba(15, 13, 10, 0.96);      /* --ink-3 tint */
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(199, 166, 124, 0.22);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-consent.is-visible { transform: translateY(0); }

.cookie-consent__inner {
    max-width: 1280px;                        /* --wrap */
    margin: 0 auto;
    padding: 1.1rem clamp(1.25rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent__text {
    color: #cfc7b8;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}
.cookie-consent__text a {
    color: #F2EDE4;                           /* --bone */
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__actions { display: flex; gap: 0.6rem; }

.cookie-consent__btn {
    font: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.2rem;
    border: 1px solid #B0895A;               /* --bronze */
    background: #B0895A;
    color: #16130F;                          /* --ink */
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.cookie-consent__btn:hover { background: #C7A67C; border-color: #C7A67C; }

.cookie-consent__btn--ghost {
    background: transparent;
    color: #F2EDE4;
    border-color: rgba(242, 237, 228, 0.35);
}
.cookie-consent__btn--ghost:hover { background: transparent; border-color: #F2EDE4; opacity: 1; }

@media (max-width: 640px) {
    .cookie-consent__inner { flex-direction: column; align-items: flex-start; }
    .cookie-consent__actions { width: 100%; }
    .cookie-consent__btn { flex: 1; }
}
