/* ============================================================
   PARK HOUSE SERIES – style.css
   West Presents · Pembrokeshire
   ============================================================ */

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal:       #00e5c8;
    --teal-dim:   rgba(0, 229, 200, 0.32);
    --teal-mid:   rgba(0, 229, 200, 0.55);
    --black:      #000;
    --white:      #fff;
    --grey:       rgba(255,255,255,0.75);
    --font-h:     'Barlow Condensed', sans-serif;
    --font-b:     'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-b);
    font-weight: 300;
    overflow-x: hidden;
}

a {
    color: var(--teal);
}

/* ── SMOKE CANVAS ── */
#smoke-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ── NAV ── */
.ph-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, transparent 100%);
    backdrop-filter: blur(2px);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none !important;
}
.nav-logo .logo-top {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
}
.nav-logo .logo-bottom {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none !important;
    transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    z-index: 190;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s;
}
.mobile-menu ul li a:hover { color: var(--teal); }

/* ── BUTTONS ── */
.btn-ph {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 13px 32px;
    border: 2px solid var(--teal);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    display: inline-block;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-ph:hover {
    background: var(--teal);
    color: var(--black);
    box-shadow: 0 0 28px rgba(0,229,200,0.35);
}
.btn-ph-ghost {
    border-color: rgba(255,255,255,0.28);
}
.btn-ph-ghost:hover {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    box-shadow: none;
}
.btn-ph-lg {
    font-size: 0.9rem;
    padding: 16px 40px;
    margin-top: 36px;
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background-image: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.5)),url(https://www.theparkhouseseries.com/media/xftmcuyj/fracast167-nightclub-6686682_1920.jpg);
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0,229,200,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overline {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-brand {
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
}
.brand-park {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 0.88;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
}
.brand-house {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 0.88;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
}
.brand-series {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-top: 8px;
    padding-left: 0.55em;
}
.hero-sub {
    margin-top: 32px;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--grey);
    letter-spacing: 0.04em;
    max-width: 420px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
}
.hero-cta {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}
.scroll-hint span {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,229,200,0.6), transparent);
    animation: scrollPulse 2s 1.4s infinite;
}

/* ── INNER PAGE HERO ── */
.inner-hero {
    position: relative;
    z-index: 1;
    padding: 160px 0 70px;
    overflow: hidden;
    background-image: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.5)),url(https://www.theparkhouseseries.com/media/xftmcuyj/fracast167-nightclub-6686682_1920.jpg);
    background-size: cover;
    background-position: center;
}
.inner-hero-sm {
    padding: 140px 0 50px;
}
.inner-hero-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,229,200,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.inner-hero-title {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-top: 12px;
}
.inner-hero-date {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 14px;
}
.back-link {
    color: var(--teal) !important;
    text-decoration: none !important;
    transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }

/* ── SECTION LABELS / TITLES ── */
.section-label {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 48px;
}

/* ── EVENTS SECTION ── */
.events-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
}
.events-footer-cta {
    text-align: center;
    margin-top: 52px;
}
.no-events {
    padding: 60px 0;
    color: var(--grey);
}

/* ── EVENT CARDS GRID ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.event-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
}
.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    z-index: 1;
}
.event-card:hover { border-color: var(--teal); }
.event-card:hover .card-teal-glow { opacity: 1; }
.event-card:hover .card-title { color: var(--teal); }

.card-teal-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom left, rgba(0,229,200,0.13) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.card-bg { position: absolute; inset: 0; z-index: 0; }
.card-bg-1 { background: radial-gradient(ellipse at 30% 30%, rgba(0,229,200,0.2) 0%, #020c0b 70%); }
.card-bg-2 { background: radial-gradient(ellipse at 70% 20%, rgba(0,229,200,0.15) 0%, #04070d 70%); }
.card-bg-3 { background: radial-gradient(ellipse at 50% 60%, rgba(0,229,200,0.24) 0%, #000 65%); }
.card-bg-4 { background: radial-gradient(ellipse at 20% 80%, rgba(0,229,200,0.16) 0%, #030a08 70%); }
.card-bg-5 { background: radial-gradient(ellipse at 80% 40%, rgba(0,229,200,0.17) 0%, #040408 70%); }

.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
    opacity: 0.7;
}
.card-content { position: relative; z-index: 3; }
.card-day {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}
.card-title {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.25s;
}
.card-subtitle {
    font-weight: 300;
    font-size: 0.78rem;
    color: var(--grey);
    margin-bottom: 14px;
    line-height: 1.4;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.card-time {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 4px 10px;
}
.card-tickets {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none !important;
    border: 1.5px solid var(--teal);
    padding: 4px 12px;
    transition: background 0.2s, color 0.2s;
}
.card-tickets:hover { background: var(--teal); color: var(--black); }

/* ── ABOUT STRIP ── */
.about-strip {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 80px 0;
}
.about-heading {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    text-transform: uppercase;
    line-height: 0.88;
}
.about-heading em { font-style: normal; color: var(--teal); }
.about-right {
    font-weight: 300;
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.8;
}
.about-right p + p { margin-top: 14px; }

/* ── LOCATION ── */
.location-strip {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}
.location-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.location-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.location-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.location-text .lbl {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
}
.location-text .val {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.location-text .val span {
    font-family: var(--font-b);
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--grey);
    display: block;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0.04em;
}

/* ── INNER CONTENT PAGES ── */
.inner-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

.rich-text {
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
}
.rich-text p { margin-bottom: 18px; }
.rich-text h2, .rich-text h3 {
    font-family: var(--font-h);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}
.rich-text h2 { font-size: 1.8rem; margin-top: 36px; }
.rich-text h3 { font-size: 1.3rem; margin-top: 28px; }
.rich-text a { color: var(--teal); text-decoration: underline; }
.rich-text ul, .rich-text ol { margin: 0 0 18px 24px; }
.rich-text li { margin-bottom: 6px; }

.sidebar-block .sidebar-val {
    font-weight: 300;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
}
.about-sidebar, .contact-sidebar {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 36px;
}

/* ── EVENT DETAIL ── */
.event-detail-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 90px;
}
.event-poster-wrap {
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
}
.event-poster-img {
    width: 100%;
    display: block;
}
.event-poster-placeholder {
    aspect-ratio: 3/4;
    background: radial-gradient(ellipse at 50% 40%, rgba(0,229,200,0.2) 0%, #050d0c 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,229,200,0.15);
}
.event-poster-placeholder span {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 20px;
}
.event-info { padding-top: 8px; }
.event-meta-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.event-meta-block { margin-bottom: 0; }
.event-meta-val {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}
.event-short-desc {
    margin-top: 28px;
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.7;
    font-weight: 300;
}
.event-full-desc { margin-top: 24px; }

/* ── CONTACT FORM ── */
.ph-form .form-group { margin-bottom: 20px; }
.ph-form label {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 6px;
}
.ph-input {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 0 !important;
    color: var(--white) !important;
    font-family: var(--font-b) !important;
    font-weight: 300 !important;
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    transition: border-color 0.25s !important;
}
.ph-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--teal) !important;
    background: rgba(0,229,200,0.04) !important;
}
.ph-input::placeholder { color: rgba(255,255,255,0.25) !important; }
textarea.ph-input { resize: vertical; }

.form-success {
    padding: 32px;
    border: 1px solid var(--teal);
    background: rgba(0,229,200,0.05);
}
.form-success p { color: rgba(255,255,255,0.7); margin-top: 8px; }
.form-error-msg {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* ── FOOTER ── */
.ph-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 38px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.f-logo {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--teal);
}
.f-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ph-nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 110px 20px 70px; }

    .events-grid { grid-template-columns: repeat(2, 1fr); }

    .about-strip { padding: 60px 0; }
    .about-sidebar, .contact-sidebar { border-left: none; padding-left: 0; margin-top: 40px; }

    .ph-footer { padding: 30px 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .events-grid { grid-template-columns: 1fr; }
    .event-card { aspect-ratio: 4/3; }
}
.nav-logo img {
    height: 2rem;
}

.hero-brand img {
    width: 36rem;
    max-width: 100%;
}

/* ── MOBILE EVENT CARDS – stacked poster + content ── */
@media (max-width: 576px) {

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-card {
        aspect-ratio: unset;
        min-height: unset;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
    }

    /* hide the overlay gradient so it doesn't darken the poster */
    .event-card::before {
        display: none;
    }

    /* poster sits on top as a real image, full width */
    .card-img {
        position: relative;
        width: 100%;
        height: auto;
        opacity: 1;
        object-position: center;
    }

    /* hide the teal gradient bg and glow — poster handles the visual */
    .card-bg,
    .card-teal-glow {
        display: none;
    }

    /* info text below the poster */
    .card-content {
        padding: 18px 20px 22px;
        background: rgba(255,255,255,0.03);
    }
}

.event-card a.card-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

/* ── CONTACT SOCIALS ── */
.contact-intro {
    font-weight: 300;
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 36px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none !important;
    color: var(--white);
    transition: border-color 0.25s, background 0.25s;
}
.social-link:hover {
    border-color: var(--teal);
    background: rgba(0,229,200,0.04);
    color: var(--white);
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s, color 0.25s;
}
.social-link:hover .social-icon {
    border-color: var(--teal);
    color: var(--teal);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.social-label {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 3px;
}
.social-handle {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-arrow {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.25s, transform 0.25s;
}
.social-link:hover .social-arrow {
    color: var(--teal);
    transform: translateX(4px);
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid rgba(0, 229, 200, 0.3);
    padding: 20px 28px;
    width: calc(100% - 48px);
    max-width: 560px;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-inner p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-consent-inner a {
    color: var(--teal);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-ph-sm {
    font-size: 0.72rem;
    padding: 9px 20px;
}