/* Cookie consent bar — brand-adapted to the UrbanPeak palette (ink / cream / gold).
   Structure and behaviour follow the Site Completion Protocol; only colours change. */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999;
    background: rgba(14, 19, 24, 0.96);
    backdrop-filter: blur(12px);
    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: 1220px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent__text {
    color: rgba(245, 242, 236, 0.75);
    font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0;
}
.cookie-consent__text a { color: #f5f2ec; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; gap: 0.6rem; }
.cookie-consent__btn {
    font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    border: 1px solid #937840;
    background: #937840;
    color: #fff;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.cookie-consent__btn:hover { background: #5C3B29; border-color: #5C3B29; }
.cookie-consent__btn--ghost {
    background: transparent;
    color: #f5f2ec;
    border-color: rgba(245, 242, 236, 0.35);
}
.cookie-consent__btn--ghost:hover { background: rgba(245, 242, 236, 0.08); border-color: rgba(245, 242, 236, 0.6); }
@media (max-width: 640px) {
    .cookie-consent__inner { flex-direction: column; align-items: flex-start; }
    .cookie-consent__actions { width: 100%; }
    .cookie-consent__btn { flex: 1; }
}
