﻿/* =========================================================
   Champion Skyes — UI Kit
   Dark theme • Aurora canvas • Sticky footer
   ---------------------------------------------------------
   TABLE OF CONTENTS
   1) Theme variables
   2) Reset & base typography
   3) Layout & stacking (flow, containers, grids)
   4) Navigation (glassy header)
   5) Buttons (incl. link variants)
   6) Glass blocks (reusable containers)
   7) Hero section
   8) Content islands (cards, accordion)
   9) Feature grid & tour chips
   10) Bouncing gallery (legacy)
   11) Modal
   12) Calendar & Weather panel
   13) Footer (compact) + responsive fixes
   14) Utilities (visibility, type helpers, FAQ)
   15) Motion accessibility
   16) Responsive type clamps (mobile/short screens)
   17) Desktop caps (order-proof)
   18) Admin / rail styles
   19) Background layers (stars + aurora)
   20) Experience gallery (hero slideshow + thumbnails)
   ========================================================= */


/* =========================================================
   1) THEME VARIABLES
   ========================================================= */
:root {
    --ink: #eaf3ff;
    --ink-muted: #cbd5e1;
    --bg: #000;
    --glass: rgba(5,12,24,.55);
    --glass-border: rgba(148,163,184,.25);
    --green: #22c55e;
    --blue: #38bdf8;
    --purple: #8b5cf6;
    --brand: rgba(34,197,94,.45);
    --brand-dark: #0369a1;
    /* text edge */
    --stroke: #eaf3ff;
    /* Aurora visual tuning (JS may tweak these) */
    --aurora-blur: 8px;
    --aurora-opacity: 1;
    --aurora-scale-y: 1;
}


/* =========================================================
   2) RESET & BASE TYPOGRAPHY
   ========================================================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Fluid base text — the ONLY global size */
html {
    font-size: clamp(14px, 1.4vw + 0.6vh, 20px);
}

body {
    min-height: 100vh;
    display: flex; /* sticky footer layout */
    flex-direction: column;
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden; /* prevent accidental horizontal scroll */
}

/* Readability outline (subtle so Android doesn’t halo text super hard) */
:where(h1,h2,h3,h4,h5,h6,p,li,dt,dd,a,small,strong,em,span,label,blockquote,figcaption,th,td) {
    text-shadow: 0 0 2px var(--stroke), 0 0 6px rgba(0,0,0,.35);
    -webkit-text-stroke: .45px rgba(139,92,246,.35);
}

/* Softer on small phones */
@media (max-width:640px) {
    :where(h1,h2,h3,h4,h5,h6,p,li,dt,dd,a,small,strong,em,span,label,blockquote,figcaption,th,td) {
        -webkit-text-stroke: .3px rgba(139,92,246,.25);
        text-shadow: 0 0 1px var(--stroke), 0 0 3px rgba(0,0,0,.25);
    }
}


/* =========================================================
   3) LAYOUT & STACKING
   ========================================================= */
header.nav,
main,
.hero,
section,
.container,
footer,
.site-footer {
    position: relative;
    z-index: 0;
    display: flow-root; /* stop margin-collapsing */
}

main {
    flex: 1 0 auto;
}

/* Global content width */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(10px, 2.2vw, 24px);
    padding-right: clamp(10px, 2.2vw, 24px);
    box-sizing: border-box;
    overflow-x: hidden; /* safety belt for mobile in case something inside is wide */
}

/* On narrow screens prevent any desktop-ish overflow */
@media (max-width:640px) {
    .container {
        max-width: 100%;
    }
}

.grid {
    display: grid;
    gap: 20px;
}

    .grid.cols-3 {
        grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    }

.home-cards {
    display: grid;
    grid-template-columns: repeat(2,minmax(260px,1fr));
    gap: 16px;
}

@media (max-width:720px) {
    .home-cards {
        grid-template-columns: 1fr;
    }
}

/* Section spacing rhythm */
section + section,
section + .container,
.container + section {
    margin-top: clamp(20px, 4vh, 48px);
}


/* =========================================================
   4) NAVIGATION (GLASSY HEADER)
   ========================================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-bottom: 18px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 0;
}

    .nav .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 30px;
    white-space: nowrap;
}

    .brand small {
        font-weight: 600;
        color: var(--ink-muted);
    }

.nav .row nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

    .nav .row nav a {
        display: inline-block;
        color: var(--ink);
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        padding: 8px 14px;
        border-radius: 12px;
        transition: text-shadow .25s, color .25s, box-shadow .2s, background .2s;
    }

        .nav .row nav a:hover {
            background: rgba(56,189,248,.10);
            box-shadow: 0 0 12px rgba(56,189,248,.25);
        }

        .nav .row nav a.is-current {
            background: rgba(34,197,94,.16);
            color: #eafff1;
            box-shadow: 0 0 0 1px rgba(34,197,94,.45) inset, 0 0 22px rgba(34,197,94,.45);
            text-shadow: 0 0 10px rgba(255,0,85,1);
        }

/* Header gutters on phones */
@media (max-width:640px) {
    .nav .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav .row nav {
        padding-left: 2px;
        padding-right: 2px;
    }
}

/* Wrap gracefully */
@media (max-width:860px) {
    .nav .row,
    .nav .row nav {
        flex-wrap: wrap;
    }

    .brand {
        white-space: normal;
    }
}

@media (max-width:640px) {
    .nav .row nav a {
        font-size: 16px;
        padding: 7px 12px;
    }
}

@media (min-width:1024px) {
    .nav .row nav a {
        font-size: 18px;
    }
}


/* =========================================================
   5) BUTTONS
   ========================================================= */
.btn,
a.btn {
    display: inline-block;
    background: var(--brand);
    color: #fff !important;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    transition: color .15s ease, filter .2s, transform .05s, box-shadow .2s;
}

    .btn:hover,
    a.btn:hover {
        color: #93c5fd !important;
        filter: brightness(1.08);
        box-shadow: 0 0 18px rgba(56,189,248,.35);
    }

    .btn:active,
    a.btn:active,
    .btn:focus,
    a.btn:focus,
    a.btn:focus-visible {
        color: #38bdf8 !important;
        outline: none;
        transform: translateY(1px);
        background: var(--brand-dark);
    }


/* =========================================================
   6) GLASS BLOCKS (REUSABLE)
   ========================================================= */
.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: saturate(120%) blur(10px);
    -webkit-backdrop-filter: saturate(120%) blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    padding: clamp(14px, 2.4vw, 28px);
    color: var(--ink);
}

    .glass.elevated {
        background: color-mix(in srgb, var(--glass) 85%, rgba(0,0,0,.15));
        border-color: rgba(148,163,184,.35);
        box-shadow: 0 14px 40px rgba(0,0,0,.35);
    }

    .glass.sm {
        border-radius: 12px;
        padding: clamp(10px,1.6vw,18px);
    }

    .glass.lg {
        border-radius: 20px;
        padding: clamp(18px,3vw,36px);
    }

    .glass > :where(h1,h2,h3) {
        margin-top: 0;
    }

    .glass > :where(p,ul,ol,blockquote) {
        margin: .6em 0;
    }

    .glass a {
        color: var(--blue);
        text-decoration: underline;
    }

/* Grid helper for multiple .glass blocks */
.glass-grid {
    display: grid;
    gap: clamp(12px, 2vw, 24px);
    grid-template-columns: repeat(12, minmax(0,1fr));
}

    .glass-grid > .glass {
        grid-column: span 12;
    }

@media (min-width:768px) {
    .glass-grid.cols-2 > .glass {
        grid-column: span 6;
    }

    .glass-grid.cols-3 > .glass {
        grid-column: span 4;
    }
}

/* Mobile: make glass slightly more opaque / blur lighter */
@media (max-width:640px) {
    .glass,
    .glass.elevated {
        background: color-mix(in srgb, var(--glass) 92%, rgba(0,0,0,.18));
        backdrop-filter: saturate(120%) blur(8px);
        -webkit-backdrop-filter: saturate(120%) blur(8px);
    }
}


/* =========================================================
   7) HERO
   ========================================================= */
.hero {
    position: relative;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-bottom: clamp(20px, 4vh, 48px);
    margin-bottom: clamp(16px, 3vh, 40px);
}

    .hero img {
        display: none;
    }

    .hero .text {
        position: relative;
        z-index: 1;
        color: #fff;
        max-width: min(780px, 92vw);
        padding: clamp(20px, 4vh, 48px) clamp(12px, 3.5vw, 24px);
        text-shadow: 0 2px 18px rgba(0,0,0,.35);
    }

    .hero h1 {
        font-size: clamp(26px, 4.0vw + 1.0vh, 56px);
        line-height: 1.12;
        margin: 0 0 8px;
    }

    .hero p {
        font-size: clamp(15px, 1.6vw + 0.6vh, 22px);
        margin: 0 0 18px;
    }


/* =========================================================
   8) CONTENT ISLANDS (CARDS, ACCORDION)
   ========================================================= */
.card,
.accordion {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    color: #0b1220;
}

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .card .pad {
        padding: 14px;
    }

/* accordion (FAQ style in light mode originally) */
.accordion {
    border-radius: 12px;
}

    .accordion details {
        border-top: 1px solid #e2e8f0;
    }

        .accordion details:first-child {
            border-top: none;
        }

    .accordion summary {
        cursor: pointer;
        padding: 14px 18px;
        font-weight: 600;
        background: #f8fafc;
        color: #0b1220;
    }

    .accordion .answer {
        padding: 14px 18px;
        background: #fff;
        color: #0b1220;
    }

/* BUT: over our aurora background we "glassify"/unframe them */
.card,
.accordion,
.container .card,
.grid .card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--ink);
}

    .card .pad {
        padding: 16px;
    }

    .hero .text,
    #homeTour,
    .section-title,
    #homeTitle,
    #tourTitle,
    #homeBlurb,
    #tourBlurb,
    #expLong,
    .grid .card .pad {
        text-shadow: 0 2px 14px rgba(0,0,0,.35);
    }

/* Typographic helpers */
.section-title {
    font-size: clamp(22px, 2.8vw + 0.9vh, 34px);
}

#homeTitle,
#tourTitle {
    font-size: 28px;
    line-height: 1.25;
}

#homeBlurb,
#tourBlurb,
#expLong {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.6;
}

.note {
    color: var(--ink-muted);
    font-size: clamp(12px, 1.2vw + 0.4vh, 16px);
    opacity: .9;
}


/* =========================================================
   9) FEATURE GRID & TOUR CHIPS
   ========================================================= */
#featureGrid h3 {
    font-size: 20px;
    margin: 0 0 6px;
}

#featureGrid .lead {
    font-size: 24px;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

@media (min-width:940px) {
    #featureGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 20px;
    }
}

#homeTour .grid .card,
#tourTitle ~ .grid .card {
    background: rgba(8,12,18,.25) !important;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,.18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    overflow: visible;
}

    #homeTour .grid .card .pad,
    #tourTitle ~ .grid .card .pad {
        padding: 12px 16px;
        line-height: 1.25;
    }

#homeTour .grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width:640px) {
    #homeTour .grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}


/* =========================================================
   10) BOUNCING GALLERY (legacy physics gallery)
   ========================================================= */
.bounce-stage,
#expGallery.bounce-stage {
    position: relative;
    height: clamp(240px, 55vh, 700px);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #0b1220;
    padding: 0;
    box-sizing: content-box;
}

    .bounce-stage .bouncer {
        position: absolute;
        width: clamp(80px, 22vw, 120px);
        height: clamp(54px, 15vw, 80px);
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(2,6,23,.35);
        cursor: pointer;
        user-select: none;
        -webkit-user-drag: none;
        transform-origin: top left;
        transition: transform .28s ease, box-shadow .28s ease, opacity .2s ease;
        will-change: left, top, transform;
        backface-visibility: hidden;
    }

    .bounce-stage.stage-faded .bouncer:not(.enlarged) {
        opacity: .25;
    }

    .bounce-stage .bouncer.enlarged {
        z-index: 10;
        box-shadow: 0 18px 40px rgba(0,0,0,.55);
    }

    .bounce-stage.stage-focused .bouncer:not(.enlarged) {
        opacity: 0 !important;
        pointer-events: none !important;
    }


/* =========================================================
   11) MODAL
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    z-index: 10000;
}

    .modal.open {
        display: grid;
    }

    .modal .panel {
        width: min(1200px,96vw);
        height: min(900px,90vh);
        background: #0b1220;
        color: #eaf3ff;
        border: 1px solid rgba(148,163,184,.25);
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,.55);
        padding: 18px 18px 10px;
        overflow: auto;
        transform-origin: 50% 50%;
        transform: translate(0,0) scale(1);
        transition: transform .35s cubic-bezier(.2,.9,.2,1);
        will-change: transform;
    }

    .modal .close-x {
        position: sticky;
        top: 0;
        float: right;
        margin: -8px -4px 6px 0;
        background: rgba(148,163,184,.18);
        border: 1px solid rgba(148,163,184,.25);
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        cursor: pointer;
    }


/* =========================================================
   12) CALENDAR & WEATHER PANEL
   ========================================================= */
.cal {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 320px;
}

    .cal .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 2px;
    }

        .cal .head h3 {
            margin: 0;
            font-size: 20px;
        }

    .cal .navbtn {
        background: #0ea5e9;
        color: #fff;
        border: 0;
        border-radius: 10px;
        padding: 6px 10px;
        cursor: pointer;
    }

    .cal .grid {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 6px;
    }

    .cal .dow {
        color: #93a4bf;
        font-size: 12px;
        text-align: center;
    }

    .cal .cell {
        background: #0f1a2b;
        border: 1px solid rgba(148,163,184,.18);
        border-radius: 12px;
        padding: 10px 8px;
        min-height: 74px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

        .cal .cell .d {
            font-weight: 700;
            font-size: 14px;
            color: #cfe2ff;
        }

        .cal .cell .cap {
            font-size: 12px;
            color: #9fb4d3;
        }

        .cal .cell.inactive {
            opacity: .35;
            pointer-events: none;
        }

        .cal .cell.closed {
            background: #1b2433;
            color: #97a1b3;
        }

        .cal .cell.booked {
            background: #301a1a;
            border-color: rgba(220,38,38,.35);
        }

        .cal .cell.limited {
            background: #2a2a19;
            border-color: rgba(234,179,8,.4);
        }

        .cal .cell.available {
            background: #14261c;
            border-color: rgba(34,197,94,.35);
        }

        .cal .cell.selected {
            outline: 2px solid #38bdf8;
        }

.legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 8px;
}

    .legend span {
        font-size: 12px;
        padding: 2px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148,163,184,.25);
    }

    .legend .lg-available {
        background: #14261c;
    }

    .legend .lg-limited {
        background: #2a2a19;
    }

    .legend .lg-booked {
        background: #301a1a;
    }

    .legend .lg-closed {
        background: #1b2433;
    }

.weather {
    background: #0f1a2b;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 12px;
    padding: 12px;
}

    .weather .when {
        font-weight: 700;
        margin: 0 0 6px;
    }

    .weather .big {
        font-size: 32px;
        font-weight: 800;
        margin: 6px 0;
    }

    .weather .meta {
        color: #a9bad3;
        font-size: 13px;
    }

    .weather .src {
        color: #93a4bf;
        font-size: 11px;
        margin-top: 8px;
    }

@media (max-width:900px) {
    .cal {
        grid-template-columns: 1fr;
    }

    .weather .big {
        font-size: clamp(22px, 5.5vw, 32px);
    }
}


/* =========================================================
   13) FOOTER (COMPACT) + RESPONSIVE FIXES
   ========================================================= */
.site-footer.compact {
    margin-top: auto;
    background: #2b2623;
    color: #e8e6e3;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.5;
    width: 100%;
}

    .site-footer.compact .container {
        padding: 16px 24px;
        max-width: 1100px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .site-footer.compact .footer-topline {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        align-items: center;
        opacity: .95;
    }

        .site-footer.compact .footer-topline .brandline {
            font-weight: 700;
        }

        .site-footer.compact .footer-topline .sep {
            opacity: .5;
            padding: 0 2px;
        }

    .site-footer.compact a.link {
        color: #e8e6e3;
        text-decoration: none;
    }

        .site-footer.compact a.link:hover {
            text-decoration: underline;
        }

    .site-footer.compact .footer-mini {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 20px;
        padding: 12px 0 6px;
    }

    .site-footer.compact .mini-title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
        opacity: .7;
        margin-bottom: 6px;
    }

    .site-footer.compact .footer-bottomline {
        border-top: 1px solid rgba(255,255,255,.08);
        margin-top: 10px;
        padding-top: 8px;
        opacity: .8;
    }

    /* wrapping safety */
    .site-footer.compact .footer-topline,
    .site-footer.compact .mini-col,
    .site-footer.compact .mini-text {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

/* Phones */
@media (max-width:480px) {
    .site-footer.compact .container {
        padding: 12px 10px;
    }
}

/* Desktop breathing room */
@media (min-width:900px) {
    .site-footer.compact .container {
        padding: 20px 28px;
    }

    .site-footer.compact .footer-topline {
        gap: 12px 16px;
    }
}

/* Center alignment on narrower screens */
@media (max-width:900px) {
    .site-footer.compact .footer-topline {
        justify-content: center;
        text-align: center;
    }

    .site-footer.compact .footer-mini {
        justify-items: center;
        text-align: center;
    }
}


/* =========================================================
   14) UTILITIES (visibility, title, FAQ tweaks)
   ========================================================= */
.is-hidden {
    display: none !important;
}

/* Big centered title */
.Title {
    display: grid;
    place-items: center;
    margin: clamp(12px, 3vh, 28px) 0;
}

    .Title .glass {
        padding: clamp(16px, 3vw, 32px);
    }

    .Title h2 {
        margin: 0;
        text-align: center;
        font-weight: 900;
        line-height: 1.1;
        font-size: clamp(32px, 6.5vw + 0.5vh, 84px);
        color: var(--ink);
        -webkit-text-stroke: 1.2px var(--green) !important;
        text-shadow: 0 0 2px rgba(34,197,94,.9), 0 0 10px rgba(34,197,94,.45), 0 2px 18px rgba(0,0,0,.35);
    }

/* Mobile: soften outline into glow */
@media (max-width:640px) {
    .Title h2 {
        -webkit-text-stroke: 0 !important;
        text-shadow: 0 0 6px rgba(34,197,94,.65), 0 0 16px rgba(34,197,94,.45), 0 0 28px rgba(34,197,94,.35), 0 2px 18px rgba(0,0,0,.35);
        letter-spacing: .5px;
    }
}

@media (max-width:380px) {
    .Title h2 {
        font-size: clamp(28px, 9vw, 42px);
    }
}

/* FAQ answer content should be dark-on-light when used in cards */
.answer {
    color: #000 !important;
}

/* FAQ — single white container style */
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    color: #0b1220;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    padding: 14px 18px;
}

    .faq-card details {
        padding: 8px 0;
    }

        .faq-card details + details {
            border-top: 1px solid rgba(0,0,0,.08);
        }

        .faq-card details summary {
            cursor: pointer;
            list-style: none;
            padding: 8px 0;
            font-weight: 600;
        }

            .faq-card details summary::-webkit-details-marker {
                display: none;
            }

            .faq-card details summary::after {
                content: "▾";
                float: right;
                opacity: .7;
                transition: transform .2s ease;
            }

        .faq-card details[open] summary::after {
            transform: rotate(180deg);
        }
    /* answer body inside same white card */
    .faq-card .answer {
        margin: 6px 0 2px;
        padding: 0 0 6px 0;
        background: transparent;
        color: #0b1220;
    }


/* =========================================================
   15) MOTION ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    a:hover,
    nav a:hover {
        text-shadow: none;
    }
}


/* =========================================================
   16) RESPONSIVE TYPE CLAMPS (MOBILE/SHORT)
   ========================================================= */
h2 {
    font-size: clamp(20px, 2.8vw + 0.9vh, 34px);
}

h3 {
    font-size: clamp(16px, 2.0vw + 0.6vh, 24px);
}

.lead {
    font-size: clamp(15px, 1.6vw + 0.6vh, 22px);
}

@media (max-height:640px) and (orientation:portrait) {
    html {
        font-size: clamp(13px, 1.1vw + 0.8vh, 18px);
    }

    .hero h1 {
        font-size: clamp(24px, 4.8vw + 0.8vh, 40px);
    }

    .hero p,
    .lead {
        font-size: clamp(13px, 1.6vw + 0.6vh, 18px);
    }
}

/* Tiny phones */
@media (max-width:380px) {
    html {
        font-size: clamp(12px, 3.6vw, 16px);
    }

    .hero h1 {
        font-size: clamp(22px, 8.5vw, 36px);
    }
}

@media (max-width:320px) {
    html {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 22px;
    }
}

/* Extra clamp for very narrow or very short */
@media (max-width:430px), (max-height:640px) and (orientation:portrait) {
    .hero h1 {
        font-size: clamp(22px, 7.2vw, 34px);
        line-height: 1.15;
    }

    .hero p {
        font-size: clamp(13px, 3.4vw, 18px);
    }
}


/* =========================================================
   17) DESKTOP CAPS (order-proof)
   ========================================================= */
@media (min-width:900px) {
    html {
        font-size: 16px !important;
    }

    body {
        font-size: inherit !important;
    }

    .hero h1 {
        font-size: clamp(28px, 3.2vw, 48px) !important;
        line-height: 1.12;
    }

    .section-title {
        font-size: clamp(22px, 2.2vw, 34px) !important;
    }

    .hero p,
    #homeBlurb,
    #tourBlurb,
    #expLong,
    .lead {
        font-size: clamp(16px, 1.4vw, 20px) !important;
        line-height: 1.6;
    }
}


/* =========================================================
   18) ADMIN / RAIL STYLES (calendar, friends rail, etc.)
   ========================================================= */

/* default logo in home card */
#homeLogo {
    width: 80%;
    height: auto;
    display: block;
    margin-inline: auto;
}

/* Admin calendar day slots etc. */
.chip {
    display: inline-block;
    padding: .25rem .5rem;
    border-radius: 999px;
    font: 600 12px/1 system-ui;
    color: var(--ink);
    border: 1px solid var(--glass-border);
    background: rgba(148,163,184,.12);
}

.chip-open {
    background: rgba(34,197,94,.15);
    border-color: rgba(34,197,94,.35);
}

.chip-partial {
    background: rgba(56,189,248,.15);
    border-color: rgba(56,189,248,.35);
}

.chip-full {
    background: rgba(248,113,113,.15);
    border-color: rgba(248,113,113,.35);
}

.cal-month {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 8px;
}

.cal-dow {
    opacity: .75;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cal-day {
    min-height: 110px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    background: var(--glass);
    position: relative;
    cursor: pointer;
}

    .cal-day .date {
        font-weight: 700;
        font-size: 14px;
    }

    .cal-day .meta {
        position: absolute;
        right: 8px;
        top: 8px;
        font-size: 11px;
        opacity: .8;
    }

    .cal-day .bar {
        height: 6px;
        border-radius: 6px;
        margin-top: 6px;
        background: rgba(148,163,184,.25);
        overflow: hidden;
    }

        .cal-day .bar > span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg,var(--blue),var(--purple));
        }

    .cal-day.open {
        outline: 1px solid rgba(34,197,94,.35);
    }

    .cal-day.partial {
        outline: 1px solid rgba(56,189,248,.35);
    }

    .cal-day.full {
        outline: 1px solid rgba(248,113,113,.35);
    }

.day-section {
    margin: 10px 0 0;
}

.day-h {
    font-size: 14px;
    opacity: .9;
    margin: 10px 0 6px;
}

.slot-row,
.bk-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr .8fr .8fr auto;
    gap: 6px;
    align-items: center;
}

.bk-row {
    grid-template-columns: 1.3fr 1.1fr .6fr .7fr auto;
}

.badge {
    display: inline-block;
    padding: .15rem .4rem;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid var(--glass-border);
    opacity: .9;
}

    .badge.pending {
        background: rgba(250,204,21,.18); /* amber */
    }

    .badge.confirmed {
        background: rgba(34,197,94,.18);
    }

    .badge.canceled {
        background: rgba(248,113,113,.18);
    }

    .badge.refunded {
        background: rgba(248,113,113,.25);
    }

.cal-day.closed {
    opacity: .55;
    filter: saturate(.7);
}

/* Support Our Friends rail */
.friends-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 4px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
}

    .friends-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .friends-scroller::-webkit-scrollbar-track {
        background: transparent;
    }

    .friends-scroller::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.3);
        border-radius: 999px;
    }

.friend-card {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    transition: box-shadow .15s ease, transform .15s ease;
    text-align: center;
}

    .friend-card:hover,
    .friend-card:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0,0,0,.6);
    }

.friend-card-inner {
    display: grid;
    justify-items: center;
    padding: 16px;
    gap: 8px;
    text-align: center;
}

.friend-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #0002;
}

.friend-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    color: var(--ink);
}


/* =========================================================
   19) BACKGROUND LAYERS (STARS + AURORA)
   ========================================================= */

/* Starfield layer (deep sky + stars) sits furthest back */
.content--stars {
    position: fixed;
    inset: 0;
    z-index: -2; /* behind aurora */
    pointer-events: none;
    background: radial-gradient(circle at bottom, #23435c 0%, #070d12 70%);
    overflow: hidden; /* absolutely positioned dots live inside */
}
    /* stars injected by JS */
    .content--stars .star {
        position: absolute;
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 6px #fff;
        opacity: 0.8;
        animation: starFlash 3s linear infinite;
    }

@keyframes starFlash {
    0% {
        opacity: 0.2;
        transform: scale(0.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@media (max-width:600px) {
    .content--stars .star {
        opacity: 0.5;
    }
}

/* Aurora canvas layer sits in front of stars but behind content */
.content--canvas {
    position: fixed;
    inset: 0;
    z-index: -1; /* above stars, below page content */
    pointer-events: none;
    filter: blur(var(--aurora-blur));
    opacity: var(--aurora-opacity);
    transform-origin: bottom center;
    will-change: transform, opacity, filter;
}

    .content--canvas canvas {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        display: block;
    }

/* Mobile tuning for aurora band */
@media (max-width:640px) {
    :root {
        --aurora-blur: 2px;
        --aurora-scale-y: .66;
        --aurora-opacity: .85;
    }
}


/* === EXPERIENCE GALLERY / SLIDESHOW ====================== */

/* Outer hero frame */
#expHero {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    background-color: rgba(0,0,0,0.6); /* shows behind portrait shots */
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Full width of the layout, never overflow horizontally */
    width: 100%;
    max-width: 100%;
    /* FIXED FRAME HEIGHT:
       - On phones: ~45vh feels good and avoids “giant photo”
       - On bigger screens: cap at 500px so it doesn't get massive */
    height: min(45vh, 500px);
    /* If someone’s on a tall desktop, we still don't want a skyscraper.
       As a safety, don't let it get shorter than ~200px on tiny viewports */
    min-height: 200px;
    overflow: hidden; /* we'll letterbox inside */
}

/* Active slideshow image INSIDE the frame */
#expHeroSlideImg {
    /* Make the img size itself *to the frame*, not the other way around */
    width: 100%;
    height: 100%;
    /* CRITICAL PART:
       This scales the image down so the entire thing is visible,
       preserving aspect ratio, and whichever side hits first wins.
       The leftover space just shows the dark bg from #expHero. */
    object-fit: contain;
    /* cosmetics */
    border-radius: 12px;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Thumbnails row under the hero */
.exp-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Each thumb "button" frame */
.exp-thumbBtn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 4px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,.5);
    /* limit thumb footprint so they don't blow out the row */
    width: 80px;
    height: 60px;
    overflow: hidden;
}

    /* Actual thumb image */
    .exp-thumbBtn img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* same rule: full photo, no crop, letterbox */
        border-radius: 6px;
        background-color: #000;
        display: block;
    }

* Frame that holds the active slideshow image */
#expHero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    /* fixed visual window so the image sits INSIDE it */
    height: min(45vh, 500px) !important;
    min-height: 200px !important;
    border-radius: 16px !important;
    border: 1px solid var(--glass-border) !important;
    background: var(--glass) !important;
    background-color: rgba(0,0,0,0.6) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.5) !important;
    overflow: hidden !important;
}

/* The slideshow image itself */
#expHeroSlideImg {
    /* Fill the frame */
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    /* KEY BEHAVIOR:
       - keep the entire photo visible
       - whichever side hits first stops
       - no cropping, no distortion
    */
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Thumbnail strip */
.exp-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Each thumb button */
.exp-thumbBtn {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,.5);
    cursor: pointer;
    overflow: hidden;
}

    /* Thumbnail image */
    .exp-thumbBtn img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        background-color: #000;
        border-radius: 6px;
        display: block;
    }
/* =========================================================
   21) SUPPORT OUR FRIENDS RAIL
   ========================================================= */

.friends-scroller {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 4px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
}

    .friends-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .friends-scroller::-webkit-scrollbar-track {
        background: transparent;
    }

    .friends-scroller::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.3);
        border-radius: 999px;
    }

.friend-card {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    transition: box-shadow .15s ease, transform .15s ease;
    text-align: center;
}

    .friend-card:hover,
    .friend-card:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0,0,0,.6);
    }

.friend-card-inner {
    display: grid;
    justify-items: center;
    padding: 16px;
    gap: 8px;
    text-align: center;
}

.friend-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #0002;
}

.friend-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    color: var(--ink);
}
/* =========================================================
   Champion Skyes — UI Kit
   Dark theme • Aurora canvas • Sticky footer
   ---------------------------------------------------------
   TABLE OF CONTENTS
   1) Theme variables
   2) Reset & base typography
   3) Layout & stacking (flow, containers, grids)
   4) Navigation (glassy header)
   5) Buttons (incl. link variants)
   6) Glass blocks (reusable containers)
   7) Hero section
   8) Content islands (cards, accordion)
   9) Feature grid & tour chips
   10) Bouncing gallery (legacy)
   11) Modal
   12) Calendar & Weather panel
   13) Footer (compact) + responsive fixes
   14) Utilities (visibility, type helpers, FAQ)
   15) Motion accessibility
   16) Responsive type clamps (mobile/short screens)
   17) Desktop caps (order-proof)
   18) Admin / rail styles
   19) Background layers (stars + aurora)
   20) Experience gallery (hero slideshow + thumbnails)
   ========================================================= */


/* =========================================================
   1) THEME VARIABLES
   ========================================================= */
:root {
    --ink: #eaf3ff;
    --ink-muted: #cbd5e1;
    --bg: #000;
    --glass: rgba(5,12,24,.55);
    --glass-border: rgba(148,163,184,.25);
    --green: #22c55e;
    --blue: #38bdf8;
    --purple: #8b5cf6;
    --brand: rgba(34,197,94,.45);
    --brand-dark: #0369a1;
    /* text edge */
    --stroke: #eaf3ff;
    /* Aurora visual tuning (JS may tweak these) */
    --aurora-blur: 8px;
    --aurora-opacity: 1;
    --aurora-scale-y: 1;
}


/* =========================================================
   2) RESET & BASE TYPOGRAPHY
   ========================================================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Fluid base text — the ONLY global size */
html {
    font-size: clamp(14px, 1.4vw + 0.6vh, 20px);
}

body {
    min-height: 100vh;
    display: flex; /* sticky footer layout */
    flex-direction: column;
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden; /* prevent accidental horizontal scroll */
}

/* Readability outline (subtle so Android doesn’t halo text super hard) */
:where(h1,h2,h3,h4,h5,h6,p,li,dt,dd,a,small,strong,em,span,label,blockquote,figcaption,th,td) {
    text-shadow: 0 0 2px var(--stroke), 0 0 6px rgba(0,0,0,.35);
    -webkit-text-stroke: .45px rgba(139,92,246,.35);
}

/* Softer on small phones */
@media (max-width:640px) {
    :where(h1,h2,h3,h4,h5,h6,p,li,dt,dd,a,small,strong,em,span,label,blockquote,figcaption,th,td) {
        -webkit-text-stroke: .3px rgba(139,92,246,.25);
        text-shadow: 0 0 1px var(--stroke), 0 0 3px rgba(0,0,0,.25);
    }
}


/* =========================================================
   3) LAYOUT & STACKING
   ========================================================= */
header.nav,
main,
.hero,
section,
.container,
footer,
.site-footer {
    position: relative;
    z-index: 0;
    display: flow-root; /* stop margin-collapsing */
}

main {
    flex: 1 0 auto;
}

/* Global content width */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(10px, 2.2vw, 24px);
    padding-right: clamp(10px, 2.2vw, 24px);
    box-sizing: border-box;
    overflow-x: hidden; /* safety belt for mobile in case something inside is wide */
}

/* On narrow screens prevent any desktop-ish overflow */
@media (max-width:640px) {
    .container {
        max-width: 100%;
    }
}

.grid {
    display: grid;
    gap: 20px;
}

    .grid.cols-3 {
        grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    }

.home-cards {
    display: grid;
    grid-template-columns: repeat(2,minmax(260px,1fr));
    gap: 16px;
}

@media (max-width:720px) {
    .home-cards {
        grid-template-columns: 1fr;
    }
}

/* Section spacing rhythm */
section + section,
section + .container,
.container + section {
    margin-top: clamp(20px, 4vh, 48px);
}


/* =========================================================
   4) NAVIGATION (GLASSY HEADER)
   ========================================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--glass);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 0;
}

    .nav .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 30px;
    white-space: nowrap;
}

    .brand small {
        font-weight: 600;
        color: var(--ink-muted);
    }

.nav .row nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

    .nav .row nav a {
        display: inline-block;
        color: var(--ink);
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        padding: 8px 14px;
        border-radius: 12px;
        transition: text-shadow .25s, color .25s, box-shadow .2s, background .2s;
    }

        .nav .row nav a:hover {
            background: rgba(56,189,248,.10);
            box-shadow: 0 0 12px rgba(56,189,248,.25);
        }

        .nav .row nav a.is-current {
            background: rgba(34,197,94,.16);
            color: #eafff1;
            box-shadow: 0 0 0 1px rgba(34,197,94,.45) inset, 0 0 22px rgba(34,197,94,.45);
            text-shadow: 0 0 10px rgba(255,0,85,1);
        }

/* Header gutters on phones */
@media (max-width:640px) {
    .nav .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav .row nav {
        padding-left: 2px;
        padding-right: 2px;
    }
}

/* Wrap gracefully */
@media (max-width:860px) {
    .nav .row,
    .nav .row nav {
        flex-wrap: wrap;
    }

    .brand {
        white-space: normal;
    }
}

@media (max-width:640px) {
    .nav .row nav a {
        font-size: 16px;
        padding: 7px 12px;
    }
}

@media (min-width:1024px) {
    .nav .row nav a {
        font-size: 18px;
    }
}


/* =========================================================
   5) BUTTONS
   ========================================================= */
.btn,
a.btn {
    display: inline-block;
    background: var(--brand);
    color: #fff !important;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    transition: color .15s ease, filter .2s, transform .05s, box-shadow .2s;
}

    .btn:hover,
    a.btn:hover {
        color: #93c5fd !important;
        filter: brightness(1.08);
        box-shadow: 0 0 18px rgba(56,189,248,.35);
    }

    .btn:active,
    a.btn:active,
    .btn:focus,
    a.btn:focus,
    a.btn:focus-visible {
        color: #38bdf8 !important;
        outline: none;
        transform: translateY(1px);
        background: var(--brand-dark);
    }


/* =========================================================
   6) GLASS BLOCKS (REUSABLE)
   ========================================================= */
.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: saturate(120%) blur(10px);
    -webkit-backdrop-filter: saturate(120%) blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    padding: clamp(14px, 2.4vw, 28px);
    color: var(--ink);
}

    .glass.elevated {
        background: color-mix(in srgb, var(--glass) 85%, rgba(0,0,0,.15));
        border-color: rgba(148,163,184,.35);
        box-shadow: 0 14px 40px rgba(0,0,0,.35);
    }

    .glass.sm {
        border-radius: 12px;
        padding: clamp(10px,1.6vw,18px);
    }

    .glass.lg {
        border-radius: 20px;
        padding: clamp(18px,3vw,36px);
    }

    .glass > :where(h1,h2,h3) {
        margin-top: 0;
    }

    .glass > :where(p,ul,ol,blockquote) {
        margin: .6em 0;
    }

    .glass a {
        color: var(--blue);
        text-decoration: underline;
    }

/* Grid helper for multiple .glass blocks */
.glass-grid {
    display: grid;
    gap: clamp(12px, 2vw, 24px);
    grid-template-columns: repeat(12, minmax(0,1fr));
}

    .glass-grid > .glass {
        grid-column: span 12;
    }

@media (min-width:768px) {
    .glass-grid.cols-2 > .glass {
        grid-column: span 6;
    }

    .glass-grid.cols-3 > .glass {
        grid-column: span 4;
    }
}

/* Mobile: make glass slightly more opaque / blur lighter */
@media (max-width:640px) {
    .glass,
    .glass.elevated {
        background: color-mix(in srgb, var(--glass) 92%, rgba(0,0,0,.18));
        backdrop-filter: saturate(120%) blur(8px);
        -webkit-backdrop-filter: saturate(120%) blur(8px);
    }
}


/* =========================================================
   7) HERO
   ========================================================= */
.hero {
    position: relative;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-bottom: clamp(20px, 4vh, 48px);
    margin-bottom: clamp(16px, 3vh, 40px);
}

    .hero img {
        display: none;
    }

    .hero .text {
        position: relative;
        z-index: 1;
        color: #fff;
        max-width: min(780px, 92vw);
        padding: clamp(20px, 4vh, 48px) clamp(12px, 3.5vw, 24px);
        text-shadow: 0 2px 18px rgba(0,0,0,.35);
    }

    .hero h1 {
        font-size: clamp(26px, 4.0vw + 1.0vh, 56px);
        line-height: 1.12;
        margin: 0 0 8px;
    }

    .hero p {
        font-size: clamp(15px, 1.6vw + 0.6vh, 22px);
        margin: 0 0 18px;
    }


/* =========================================================
   8) CONTENT ISLANDS (CARDS, ACCORDION)
   ========================================================= */
.card,
.accordion {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    color: #0b1220;
}

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .card .pad {
        padding: 14px;
    }

/* accordion (FAQ style in light mode originally) */
.accordion {
    border-radius: 12px;
}

    .accordion details {
        border-top: 1px solid #e2e8f0;
    }

        .accordion details:first-child {
            border-top: none;
        }

    .accordion summary {
        cursor: pointer;
        padding: 14px 18px;
        font-weight: 600;
        background: #f8fafc;
        color: #0b1220;
    }

    .accordion .answer {
        padding: 14px 18px;
        background: #fff;
        color: #0b1220;
    }

/* BUT: over our aurora background we "glassify"/unframe them */
.card,
.accordion,
.container .card,
.grid .card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--ink);
}

    .card .pad {
        padding: 16px;
    }

    .hero .text,
    #homeTour,
    .section-title,
    #homeTitle,
    #tourTitle,
    #homeBlurb,
    #tourBlurb,
    #expLong,
    .grid .card .pad {
        text-shadow: 0 2px 14px rgba(0,0,0,.35);
    }

/* Typographic helpers */
.section-title {
    font-size: clamp(22px, 2.8vw + 0.9vh, 34px);
}

#homeTitle,
#tourTitle {
    font-size: 28px;
    line-height: 1.25;
}

#homeBlurb,
#tourBlurb,
#expLong {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.6;
}

.note {
    color: var(--ink-muted);
    font-size: clamp(12px, 1.2vw + 0.4vh, 16px);
    opacity: .9;
}


/* =========================================================
   9) FEATURE GRID & TOUR CHIPS
   ========================================================= */
#featureGrid h3 {
    font-size: 20px;
    margin: 0 0 6px;
}

#featureGrid .lead {
    font-size: 24px;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

@media (min-width:940px) {
    #featureGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 20px;
    }
}

#homeTour .grid .card,
#tourTitle ~ .grid .card {
    background: rgba(8,12,18,.25) !important;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,.18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    overflow: visible;
}

    #homeTour .grid .card .pad,
    #tourTitle ~ .grid .card .pad {
        padding: 12px 16px;
        line-height: 1.25;
    }

#homeTour .grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width:640px) {
    #homeTour .grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}


/* =========================================================
   10) BOUNCING GALLERY (legacy physics gallery)
   ========================================================= */
.bounce-stage,
#expGallery.bounce-stage {
    position: relative;
    height: clamp(240px, 55vh, 700px);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #0b1220;
    padding: 0;
    box-sizing: content-box;
}

    .bounce-stage .bouncer {
        position: absolute;
        width: clamp(80px, 22vw, 120px);
        height: clamp(54px, 15vw, 80px);
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(2,6,23,.35);
        cursor: pointer;
        user-select: none;
        -webkit-user-drag: none;
        transform-origin: top left;
        transition: transform .28s ease, box-shadow .28s ease, opacity .2s ease;
        will-change: left, top, transform;
        backface-visibility: hidden;
    }

    .bounce-stage.stage-faded .bouncer:not(.enlarged) {
        opacity: .25;
    }

    .bounce-stage .bouncer.enlarged {
        z-index: 10;
        box-shadow: 0 18px 40px rgba(0,0,0,.55);
    }

    .bounce-stage.stage-focused .bouncer:not(.enlarged) {
        opacity: 0 !important;
        pointer-events: none !important;
    }


/* =========================================================
   11) MODAL
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    z-index: 10000;
}

    .modal.open {
        display: grid;
    }

    .modal .panel {
        width: min(1200px,96vw);
        height: min(900px,90vh);
        background: #0b1220;
        color: #eaf3ff;
        border: 1px solid rgba(148,163,184,.25);
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,.55);
        padding: 18px 18px 10px;
        overflow: auto;
        transform-origin: 50% 50%;
        transform: translate(0,0) scale(1);
        transition: transform .35s cubic-bezier(.2,.9,.2,1);
        will-change: transform;
    }

    .modal .close-x {
        position: sticky;
        top: 0;
        float: right;
        margin: -8px -4px 6px 0;
        background: rgba(148,163,184,.18);
        border: 1px solid rgba(148,163,184,.25);
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        cursor: pointer;
    }


/* =========================================================
   12) CALENDAR & WEATHER PANEL
   ========================================================= */
.cal {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 320px;
}

    .cal .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 2px;
    }

        .cal .head h3 {
            margin: 0;
            font-size: 20px;
        }

    .cal .navbtn {
        background: #0ea5e9;
        color: #fff;
        border: 0;
        border-radius: 10px;
        padding: 6px 10px;
        cursor: pointer;
    }

    .cal .grid {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 6px;
    }

    .cal .dow {
        color: #93a4bf;
        font-size: 12px;
        text-align: center;
    }

    .cal .cell {
        background: #0f1a2b;
        border: 1px solid rgba(148,163,184,.18);
        border-radius: 12px;
        padding: 10px 8px;
        min-height: 74px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

        .cal .cell .d {
            font-weight: 700;
            font-size: 14px;
            color: #cfe2ff;
        }

        .cal .cell .cap {
            font-size: 12px;
            color: #9fb4d3;
        }

        .cal .cell.inactive {
            opacity: .35;
            pointer-events: none;
        }

        .cal .cell.closed {
            background: #1b2433;
            color: #97a1b3;
        }

        .cal .cell.booked {
            background: #301a1a;
            border-color: rgba(220,38,38,.35);
        }

        .cal .cell.limited {
            background: #2a2a19;
            border-color: rgba(234,179,8,.4);
        }

        .cal .cell.available {
            background: #14261c;
            border-color: rgba(34,197,94,.35);
        }

        .cal .cell.selected {
            outline: 2px solid #38bdf8;
        }

.legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 8px;
}

    .legend span {
        font-size: 12px;
        padding: 2px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148,163,184,.25);
    }

    .legend .lg-available {
        background: #14261c;
    }

    .legend .lg-limited {
        background: #2a2a19;
    }

    .legend .lg-booked {
        background: #301a1a;
    }

    .legend .lg-closed {
        background: #1b2433;
    }

.weather {
    background: #0f1a2b;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 12px;
    padding: 12px;
}

    .weather .when {
        font-weight: 700;
        margin: 0 0 6px;
    }

    .weather .big {
        font-size: 32px;
        font-weight: 800;
        margin: 6px 0;
    }

    .weather .meta {
        color: #a9bad3;
        font-size: 13px;
    }

    .weather .src {
        color: #93a4bf;
        font-size: 11px;
        margin-top: 8px;
    }

@media (max-width:900px) {
    .cal {
        grid-template-columns: 1fr;
    }

    .weather .big {
        font-size: clamp(22px, 5.5vw, 32px);
    }
}


/* =========================================================
   13) FOOTER (COMPACT) + RESPONSIVE FIXES
   ========================================================= */
.site-footer.compact {
    margin-top: auto;
    background: #2b2623;
    color: #e8e6e3;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.5;
    width: 100%;
}

    .site-footer.compact .container {
        padding: 16px 24px;
        max-width: 1100px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .site-footer.compact .footer-topline {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        align-items: center;
        opacity: .95;
    }

        .site-footer.compact .footer-topline .brandline {
            font-weight: 700;
        }

        .site-footer.compact .footer-topline .sep {
            opacity: .5;
            padding: 0 2px;
        }

    .site-footer.compact a.link {
        color: #e8e6e3;
        text-decoration: none;
    }

        .site-footer.compact a.link:hover {
            text-decoration: underline;
        }

    .site-footer.compact .footer-mini {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 20px;
        padding: 12px 0 6px;
    }

    .site-footer.compact .mini-title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
        opacity: .7;
        margin-bottom: 6px;
    }

    .site-footer.compact .footer-bottomline {
        border-top: 1px solid rgba(255,255,255,.08);
        margin-top: 10px;
        padding-top: 8px;
        opacity: .8;
    }

    /* wrapping safety */
    .site-footer.compact .footer-topline,
    .site-footer.compact .mini-col,
    .site-footer.compact .mini-text {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

/* Phones */
@media (max-width:480px) {
    .site-footer.compact .container {
        padding: 12px 10px;
    }
}

/* Desktop breathing room */
@media (min-width:900px) {
    .site-footer.compact .container {
        padding: 20px 28px;
    }

    .site-footer.compact .footer-topline {
        gap: 12px 16px;
    }
}

/* Center alignment on narrower screens */
@media (max-width:900px) {
    .site-footer.compact .footer-topline {
        justify-content: center;
        text-align: center;
    }

    .site-footer.compact .footer-mini {
        justify-items: center;
        text-align: center;
    }
}


/* =========================================================
   14) UTILITIES (visibility, title, FAQ tweaks)
   ========================================================= */
.is-hidden {
    display: none !important;
}

/* Big centered title */
.Title {
    display: grid;
    place-items: center;
    margin: clamp(12px, 3vh, 28px) 0;
}

    .Title .glass {
        padding: clamp(16px, 3vw, 32px);
    }

    .Title h2 {
        margin: 0;
        text-align: center;
        font-weight: 900;
        line-height: 1.1;
        font-size: clamp(32px, 6.5vw + 0.5vh, 84px);
        color: var(--ink);
        -webkit-text-stroke: 1.2px var(--green) !important;
        text-shadow: 0 0 2px rgba(34,197,94,.9), 0 0 10px rgba(34,197,94,.45), 0 2px 18px rgba(0,0,0,.35);
    }

/* Mobile: soften outline into glow */
@media (max-width:640px) {
    .Title h2 {
        -webkit-text-stroke: 0 !important;
        text-shadow: 0 0 6px rgba(34,197,94,.65), 0 0 16px rgba(34,197,94,.45), 0 0 28px rgba(34,197,94,.35), 0 2px 18px rgba(0,0,0,.35);
        letter-spacing: .5px;
    }
}

@media (max-width:380px) {
    .Title h2 {
        font-size: clamp(28px, 9vw, 42px);
    }
}

/* FAQ answer content should be dark-on-light when used in cards */
.answer {
    color: #000 !important;
}

/* FAQ — single white container style */
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    color: #0b1220;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    padding: 14px 18px;
}

    .faq-card details {
        padding: 8px 0;
    }

        .faq-card details + details {
            border-top: 1px solid rgba(0,0,0,.08);
        }

        .faq-card details summary {
            cursor: pointer;
            list-style: none;
            padding: 8px 0;
            font-weight: 600;
        }

            .faq-card details summary::-webkit-details-marker {
                display: none;
            }

            .faq-card details summary::after {
                content: "▾";
                float: right;
                opacity: .7;
                transition: transform .2s ease;
            }

        .faq-card details[open] summary::after {
            transform: rotate(180deg);
        }
    /* answer body inside same white card */
    .faq-card .answer {
        margin: 6px 0 2px;
        padding: 0 0 6px 0;
        background: transparent;
        color: #0b1220;
    }


/* =========================================================
   15) MOTION ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    a:hover,
    nav a:hover {
        text-shadow: none;
    }
}


/* =========================================================
   16) RESPONSIVE TYPE CLAMPS (MOBILE/SHORT)
   ========================================================= */
h2 {
    font-size: clamp(20px, 2.8vw + 0.9vh, 34px);
}

h3 {
    font-size: clamp(16px, 2.0vw + 0.6vh, 24px);
}

.lead {
    font-size: clamp(15px, 1.6vw + 0.6vh, 22px);
}

@media (max-height:640px) and (orientation:portrait) {
    html {
        font-size: clamp(13px, 1.1vw + 0.8vh, 18px);
    }

    .hero h1 {
        font-size: clamp(24px, 4.8vw + 0.8vh, 40px);
    }

    .hero p,
    .lead {
        font-size: clamp(13px, 1.6vw + 0.6vh, 18px);
    }
}

/* Tiny phones */
@media (max-width:380px) {
    html {
        font-size: clamp(12px, 3.6vw, 16px);
    }

    .hero h1 {
        font-size: clamp(22px, 8.5vw, 36px);
    }
}

@media (max-width:320px) {
    html {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 22px;
    }
}

/* Extra clamp for very narrow or very short */
@media (max-width:430px), (max-height:640px) and (orientation:portrait) {
    .hero h1 {
        font-size: clamp(22px, 7.2vw, 34px);
        line-height: 1.15;
    }

    .hero p {
        font-size: clamp(13px, 3.4vw, 18px);
    }
}


/* =========================================================
   17) DESKTOP CAPS (order-proof)
   ========================================================= */
@media (min-width:900px) {
    html {
        font-size: 16px !important;
    }

    body {
        font-size: inherit !important;
    }

    .hero h1 {
        font-size: clamp(28px, 3.2vw, 48px) !important;
        line-height: 1.12;
    }

    .section-title {
        font-size: clamp(22px, 2.2vw, 34px) !important;
    }

    .hero p,
    #homeBlurb,
    #tourBlurb,
    #expLong,
    .lead {
        font-size: clamp(16px, 1.4vw, 20px) !important;
        line-height: 1.6;
    }
}


/* =========================================================
   18) ADMIN / RAIL STYLES (calendar, friends rail, etc.)
   ========================================================= */

/* default logo in home card */
#homeLogo {
    width: 80%;
    height: auto;
    display: block;
    margin-inline: auto;
}

/* Admin calendar day slots etc. */
.chip {
    display: inline-block;
    padding: .25rem .5rem;
    border-radius: 999px;
    font: 600 12px/1 system-ui;
    color: var(--ink);
    border: 1px solid var(--glass-border);
    background: rgba(148,163,184,.12);
}

.chip-open {
    background: rgba(34,197,94,.15);
    border-color: rgba(34,197,94,.35);
}

.chip-partial {
    background: rgba(56,189,248,.15);
    border-color: rgba(56,189,248,.35);
}

.chip-full {
    background: rgba(248,113,113,.15);
    border-color: rgba(248,113,113,.35);
}

.cal-month {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 8px;
}

.cal-dow {
    opacity: .75;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cal-day {
    min-height: 110px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    background: var(--glass);
    position: relative;
    cursor: pointer;
}

    .cal-day .date {
        font-weight: 700;
        font-size: 14px;
    }

    .cal-day .meta {
        position: absolute;
        right: 8px;
        top: 8px;
        font-size: 11px;
        opacity: .8;
    }

    .cal-day .bar {
        height: 6px;
        border-radius: 6px;
        margin-top: 6px;
        background: rgba(148,163,184,.25);
        overflow: hidden;
    }

        .cal-day .bar > span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg,var(--blue),var(--purple));
        }

    .cal-day.open {
        outline: 1px solid rgba(34,197,94,.35);
    }

    .cal-day.partial {
        outline: 1px solid rgba(56,189,248,.35);
    }

    .cal-day.full {
        outline: 1px solid rgba(248,113,113,.35);
    }

.day-section {
    margin: 10px 0 0;
}

.day-h {
    font-size: 14px;
    opacity: .9;
    margin: 10px 0 6px;
}

.slot-row,
.bk-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr .8fr .8fr auto;
    gap: 6px;
    align-items: center;
}

.bk-row {
    grid-template-columns: 1.3fr 1.1fr .6fr .7fr auto;
}

.badge {
    display: inline-block;
    padding: .15rem .4rem;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid var(--glass-border);
    opacity: .9;
}

    .badge.pending {
        background: rgba(250,204,21,.18); /* amber */
    }

    .badge.confirmed {
        background: rgba(34,197,94,.18);
    }

    .badge.canceled {
        background: rgba(248,113,113,.18);
    }

    .badge.refunded {
        background: rgba(248,113,113,.25);
    }

.cal-day.closed {
    opacity: .55;
    filter: saturate(.7);
}

/* Support Our Friends rail */
.friends-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 4px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
}

    .friends-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .friends-scroller::-webkit-scrollbar-track {
        background: transparent;
    }

    .friends-scroller::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.3);
        border-radius: 999px;
    }

.friend-card {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    transition: box-shadow .15s ease, transform .15s ease;
    text-align: center;
}

    .friend-card:hover,
    .friend-card:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0,0,0,.6);
    }

.friend-card-inner {
    display: grid;
    justify-items: center;
    padding: 16px;
    gap: 8px;
    text-align: center;
}

.friend-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #0002;
}

.friend-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    color: var(--ink);
}


/* =========================================================
   19) BACKGROUND LAYERS (STARS + AURORA)
   ========================================================= */

/* Starfield layer (deep sky + stars) sits furthest back */
.content--stars {
    position: fixed;
    inset: 0;
    z-index: -2; /* behind aurora */
    pointer-events: none;
    background: radial-gradient(circle at bottom, #23435c 0%, #070d12 70%);
    overflow: hidden; /* absolutely positioned dots live inside */
}

    /* stars injected by JS */
    .content--stars .star {
        position: absolute;
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 6px #fff;
        opacity: 0.8;
        animation: starFlash 3s linear infinite;
    }

@keyframes starFlash {
    0% {
        opacity: 0.2;
        transform: scale(0.6);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@media (max-width:600px) {
    .content--stars .star {
        opacity: 0.5;
    }
}

/* Aurora canvas layer sits in front of stars but behind content */
.content--canvas {
    position: fixed;
    inset: 0;
    z-index: -1; /* above stars, below page content */
    pointer-events: none;
    filter: blur(var(--aurora-blur));
    opacity: var(--aurora-opacity);
    transform-origin: bottom center;
    will-change: transform, opacity, filter;
}

    .content--canvas canvas {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        display: block;
    }

/* Mobile tuning for aurora band */
@media (max-width:640px) {
    :root {
        --aurora-blur: 2px;
        --aurora-scale-y: .66;
        --aurora-opacity: .85;
    }
}


/* =========================================================
   20) EXPERIENCE GALLERY / SLIDESHOW
   ========================================================= */

/* Outer hero frame */
#expHero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    /* fixed visual window so the image sits INSIDE it */
    height: min(45vh, 500px);
    min-height: 200px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    background-color: rgba(0,0,0,0.6); /* shows behind portrait shots */
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    overflow: hidden;
}

/* The slideshow image itself */
#expHeroSlideImg {
    /* Fill the frame */
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    /* KEY BEHAVIOR:
       - keep the entire photo visible
       - whichever side hits first stops
       - no cropping, no distortion
    */
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Thumbnail strip */
.exp-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Each thumb button */
.exp-thumbBtn {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,.5);
    cursor: pointer;
    overflow: hidden;
}

    /* Thumbnail image */
    .exp-thumbBtn img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* full photo, no crop */
        background-color: #000;
        border-radius: 6px;
        display: block;
    }


/* =========================================================
   21) SUPPORT OUR FRIENDS RAIL
   ========================================================= */

.friends-scroller {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 4px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
    -webkit-overflow-scrolling: touch;
}

    .friends-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .friends-scroller::-webkit-scrollbar-track {
        background: transparent;
    }

    .friends-scroller::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.3);
        border-radius: 999px;
    }

.friend-card {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    transition: box-shadow .15s ease, transform .15s ease;
    text-align: center;
}

    .friend-card:hover,
    .friend-card:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0,0,0,.6);
    }

.friend-card-inner {
    display: grid;
    justify-items: center;
    padding: 16px;
    gap: 8px;
    text-align: center;
}

.friend-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #0002;
}

.friend-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    color: var(--ink);
}
/* TripAdvisor badge sizing in footer */
.site-footer .TA_socialButtonIcon {
    width: 56px; /* tweak to taste: 40–80px */
    height: 56px;
    overflow: hidden;
    display: inline-block;
}

    .site-footer .TA_socialButtonIcon ul,
    .site-footer .TA_socialButtonIcon li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-footer .TA_socialButtonIcon img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

#taWidgetSlot {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Owner photo */
.owner-figure {
    display: flex;
    justify-content: center;
    margin: 10px 0 18px;
}

    .owner-figure img {
        width: clamp(140px, 22vw, 220px);
        height: clamp(140px, 22vw, 220px);
        border-radius: 16px; /* make 50% if you want a circle */
        object-fit: cover;
        box-shadow: 0 6px 24px rgba(0,0,0,.35);
        border: 1px solid var(--glass-border);
    }
/* Footer social icons */
.site-footer .socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer .social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

    .site-footer .social-icon svg {
        width: 100%;
        height: 100%;
        display: block;
        fill: var(--ink);
        opacity: .85;
        transition: opacity .15s ease;
    }

    .site-footer .social-icon:hover svg {
        opacity: 1;
    }
