/* ═══════════════════════════════════════════════════════════
   CIRCLO — Complete Design System
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
    --font: "Outfit", "Inter", system-ui, sans-serif;
    --bg: #f7f8fe;
    --bg-subtle: var(--bg);
    --surface: #ffffff;
    --border: #e4e8f5;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-faint: #94a3b8;
    --nav-text: #4a4f57;
    --nav-text-hover: #2d3239;
    --brand: #6854f8;
    --brand-dark: #4b36ef;
    --brand-soft: #ece9ff;
    --gold: #f5c842;
    --gold-dark: #c99d0e;
    --navy: #0d1224;
    --navy-mid: #1d2755;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --sh-xs: 0 1px 4px rgba(15, 23, 42, .05);
    --sh-sm: 0 4px 16px rgba(15, 23, 42, .07);
    --sh-md: 0 12px 32px rgba(15, 23, 42, .10);
    --sh-lg: 0 24px 56px rgba(15, 23, 42, .14);
    --sh-brand: 0 14px 40px rgba(104, 84, 248, .30);
    --t: .22s cubic-bezier(.4, 0, .2, 1);
    --t-slow: .45s cubic-bezier(.22, 1, .36, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --nav-h: 70px;
    --form-border-width: 2.5px;
    --form-border-color: #c5cee0;
}

/* ── 2. Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 20px;
    background: var(--bg);
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body:not(.admin-body) p {
    font-size: 20px;
}

body.site-loading .site-main,
body.site-loading .site-footer {
    opacity: 0;
    transform: translateY(8px);
}

body.site-ready .site-main,
body.site-ready .site-footer {
    opacity: 1;
    transform: none;
    transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}

body.site-ready.site-instant .site-main,
body.site-ready.site-instant .site-footer {
    transition: none;
    transform: none;
}

img { max-width: 100%; display: block; }

a,
a:hover,
a:focus,
a:active,
a:visited {
    color: inherit;
    text-decoration: none;
}

a:not(.btn):not(.event-card):not(.navbar-brand):not(.footer-brand):not(.footer-link) {
    transition: color var(--t), opacity var(--t);
}

/* ── Smooth transitions (public site) ──────────────────────── */
.site-nav,
.site-footer,
.card,
.feature-card,
.info-card,
.event-card,
.page-hero,
.event-hero-wrap,
.filter-card,
.booking-card,
.btn,
.form-control,
.form-select,
.badge,
.alert,
.accordion-button,
.footer-link {
    transition:
        background var(--t),
        color var(--t),
        border-color var(--t),
        box-shadow var(--t),
        transform var(--t),
        opacity var(--t);
}

/* Hero carousel crossfade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity .75s var(--ease-smooth);
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

/* Accordion open/close */
.accordion-collapse {
    transition: height .35s var(--ease-smooth);
}

.accordion-button::after {
    transition: transform .3s var(--ease-smooth);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .back-to-top {
        transition: none;
    }

    body.site-ready .site-main,
    body.site-ready .site-footer {
        transition: none;
        transform: none;
    }

    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .carousel-fade .carousel-item {
        transition: none;
    }

    .card:hover,
    .feature-card:hover,
    .event-card:hover,
    .info-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* ── 3. Typography helpers ─────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.18;
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header.centered > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-intro {
    margin-top: .75rem;
    margin-bottom: 0;
    max-width: 44rem;
    line-height: 1.65;
}

/* ── 4. Navigation ─────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: var(--nav-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    transition: background var(--t), box-shadow var(--t);
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, .08);
}

.site-nav .navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--nav-text) !important;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.brand-gem {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, #a78bfa, #6854f8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    color: #fff;
    line-height: 1;
}

.site-nav .nav-link {
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--nav-text) !important;
    padding: .44rem .8rem !important;
    border-radius: 8px;
    transition: color var(--t), background var(--t);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
    color: var(--nav-text-hover) !important;
    background: var(--bg-subtle);
}

.site-nav .nav-link.active,
.site-nav .nav-link.active:hover,
.site-nav .nav-link.active:focus {
    color: var(--brand) !important;
    background: var(--brand-soft);
    font-weight: 700;
}

.site-nav .btn-nav-cta.is-active {
    box-shadow: 0 4px 16px rgba(245, 200, 66, .38);
    outline: 2px solid rgba(104, 84, 248, .35);
    outline-offset: 2px;
}

.site-nav .btn-nav-cta {
    font-size: 1rem;
    font-weight: 700;
    padding: .6rem 1.35rem;
    border-radius: 8px;
    background: var(--gold);
    color: #1a1200;
    border: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    line-height: 1;
}

.site-nav .btn-nav-cta i {
    font-size: .9em;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.site-nav-desktop {
    margin-left: auto;
}

.site-nav-mobile-actions {
    margin-left: auto;
    gap: .5rem;
    flex-shrink: 0;
}

.site-nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem .75rem;
    min-height: 44px;
    border-radius: 8px;
    background: var(--gold);
    color: #1a1200;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 10px rgba(245, 200, 66, .28);
    transition: background var(--t), box-shadow var(--t);
}

.site-nav-mobile-cta i {
    font-size: 1rem;
    pointer-events: none;
}

.site-nav-mobile-cta:hover,
.site-nav-mobile-cta:focus {
    background: #e8b500;
    color: #1a1200;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245, 200, 66, .35);
}

.site-nav-mobile-cta.is-active {
    outline: 2px solid rgba(104, 84, 248, .35);
    outline-offset: 2px;
}

.site-nav-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: var(--bg-subtle);
    color: var(--nav-text);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--t), color var(--t);
}

.site-nav-toggler:hover,
.site-nav-toggler:focus {
    background: var(--brand-soft);
    color: var(--brand);
}

.site-nav-toggler i {
    font-size: 1.65rem;
    line-height: 1;
    pointer-events: none;
}

.site-mobile-menu {
    width: min(88vw, 320px);
    border-left: 1px solid var(--border);
    background: var(--surface);
    z-index: 1045;
}

.offcanvas-backdrop {
    z-index: 1040;
}

.site-mobile-menu .offcanvas-header {
    padding: 1.1rem 1.15rem;
    border-bottom: 1px solid var(--border);
}

.site-mobile-menu .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.site-mobile-menu .offcanvas-body {
    padding: 1rem 1.15rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-height: calc(100vh - 4.5rem);
    min-height: calc(100dvh - 4.5rem);
}

.site-mobile-nav {
    gap: .2rem;
    margin-bottom: .5rem;
    flex: 1 1 auto;
}

.site-mobile-nav-link {
    display: block;
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--text) !important;
    padding: .72rem .85rem !important;
    border-radius: 8px;
}

.site-mobile-nav-link.active,
.site-mobile-nav-link:hover,
.site-mobile-nav-link:focus {
    color: var(--brand) !important;
    background: var(--brand-soft);
}

.site-mobile-menu .btn-nav-cta,
.site-mobile-nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    flex-shrink: 0;
    font-size: 1.05rem;
    font-weight: 700;
    padding: .85rem 1.15rem;
    min-height: 48px;
    border-radius: 10px;
    background: var(--gold);
    color: #1a1200;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    line-height: 1.2;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 16px rgba(245, 200, 66, .32);
    transition: background var(--t), transform var(--t), box-shadow var(--t), color var(--t);
}

.site-mobile-menu .btn-nav-cta i,
.site-mobile-nav-cta i {
    font-size: 1.1rem;
    line-height: 1;
    pointer-events: none;
}

.site-mobile-menu .btn-nav-cta:hover,
.site-mobile-menu .btn-nav-cta:focus,
.site-mobile-nav-cta:hover,
.site-mobile-nav-cta:focus {
    background: #e8b500;
    color: #1a1200;
    transform: none;
    box-shadow: 0 6px 20px rgba(245, 200, 66, .4);
    text-decoration: none;
}

.site-mobile-menu .btn-nav-cta.is-active,
.site-mobile-nav-cta.is-active {
    box-shadow: 0 4px 16px rgba(245, 200, 66, .38);
    outline: 2px solid rgba(104, 84, 248, .35);
    outline-offset: 2px;
}

.btn-nav-cta:hover {
    background: #e8b500;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, .4);
    text-decoration: none;
}

/* ── 5. Hero ───────────────────────────────────────────────── */
.hero-wrap {
    position: relative;
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
    content-visibility: visible;
}

/* Carousel fills hero-wrap (fixes mobile when parent height is not %‑based) */
.hero-wrap > .carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-wrap .carousel-inner,
.hero-wrap .carousel-item,
.hero-wrap .hero-slide {
    height: 100%;
    min-height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide-img.img-pending {
    opacity: 0;
}

.hero-slide-img.is-loaded {
    opacity: 1;
    transition: opacity .25s ease;
}

.img-progressive.img-pending {
    opacity: 0;
}

.img-progressive.is-loaded {
    opacity: 1;
    transition: opacity .22s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(13, 18, 36, .86) 0%,
        rgba(29, 39, 85, .68) 48%,
        rgba(13, 18, 36, .32) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.hero-content > .container { pointer-events: auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    padding: .38rem 1rem;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.25rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.1rem;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #ffd65c, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: rgba(255, 255, 255, .78);
    max-width: 44rem;
    margin-bottom: 2rem;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    font-size: 1rem;
    font-weight: 700;
    padding: .6rem 1.35rem;
    border-radius: 8px;
    border-width: 1.5px;
    line-height: 1;
    gap: .3rem;
}

.hero-actions .btn i {
    font-size: .9em;
}

.hero-actions .btn:hover {
    transform: translateY(-1px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce-scroll 2.6s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.carousel-indicators {
    bottom: 4.5rem;
    z-index: 3;
}

.carousel-indicators button {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
    border: none;
    margin: 0 3px;
    transition: width var(--t), background var(--t);
}

.carousel-indicators button.active {
    width: 52px;
    background: var(--gold);
}

/* ── 6. Buttons ────────────────────────────────────────────── */
.btn {
    font-weight: 700;
    border-radius: var(--r-sm);
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
    letter-spacing: -.01em;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-gold {
    background: linear-gradient(145deg, #ffd65c, var(--gold));
    color: #1a1200;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(245, 200, 66, .32);
}

.btn-gold:hover {
    background: linear-gradient(145deg, #ffca30, var(--gold-dark));
    color: #fff;
    box-shadow: 0 10px 28px rgba(245, 200, 66, .44);
}

.btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-color: rgba(255, 255, 255, .44);
}

.btn-brand {
    background: linear-gradient(135deg, #7e6cfc, var(--brand));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--sh-brand);
}

.btn-brand:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 16px 44px rgba(104, 84, 248, .42);
}

.btn-outline-brand {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
}

.btn-dark {
    background: linear-gradient(145deg, #1e2d40, var(--navy));
    color: #fff;
    border-color: transparent;
}

.btn-dark:hover {
    background: linear-gradient(145deg, #273d55, #1a2840);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    border-width: 1.5px;
}

.btn-outline-dark:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.btn-warning {
    background: linear-gradient(145deg, #ffd65c, var(--gold));
    color: #1a1200;
    border-color: transparent;
    font-weight: 700;
}

.btn-warning:hover { color: #fff; }

/* ── 7. Sections ───────────────────────────────────────────── */
.site-main {
    overflow-x: hidden;
    background: var(--bg);
}

.section-block {
    background: var(--bg);
    padding: 5rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Pull first banner on each page closer to the nav */
.site-main > .section-block:first-child {
    padding-top: 2.25rem;
}

.site-main > .hero-wrap:first-child {
    margin-top: -0.5rem;
}

.section-block-sm { padding: 3rem 0; }

/* ── 8. Feature Cards ──────────────────────────────────────── */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.8rem;
    height: 100%;
    box-shadow: var(--sh-sm);
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-soft), transparent 60%);
    opacity: 0;
    transition: opacity var(--t);
    border-radius: inherit;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.fi-purple { background: #ede9ff; color: #6854f8; }
.fi-gold   { background: #fef8e1; color: #c99d0e; }
.fi-green  { background: #e6f9f1; color: #059669; }
.fi-blue   { background: #e0f2fe; color: #0284c7; }

.feature-card h3 {
    font-size: 1.04rem;
    font-weight: 800;
    margin-bottom: .55rem;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ── 9. Event Cards ────────────────────────────────────────── */
.event-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--sh-sm);
    transition: transform var(--t), box-shadow var(--t);
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    color: inherit;
    text-decoration: none;
}

.event-card-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.event-thumb {
    height: 224px;
    width: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.event-card:hover .event-thumb { transform: scale(1.05); }

.event-price-badge {
    position: absolute;
    top: .85rem;
    right: .85rem;
    background: rgba(10, 14, 30, .84);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    padding: .32rem .7rem;
    border-radius: 8px;
    letter-spacing: -.01em;
}

.event-card-body {
    padding: 1.3rem 1.4rem 1.55rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: .6rem;
    font-weight: 600;
}

.event-card-body h3 {
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
    line-height: 1.3;
}

.event-card-desc {
    color: var(--text-muted);
    margin-bottom: .9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px solid var(--border);
    gap: .5rem;
    flex-wrap: wrap;
}

.event-date-info {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── 10. Steps Section ─────────────────────────────────────── */
.steps-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(104, 84, 248, .06);
    pointer-events: none;
}

.steps-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(245, 200, 66, .05);
    pointer-events: none;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.8rem;
    height: 100%;
    box-shadow: var(--sh-sm);
    transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
    position: relative;
}

.step-card:hover {
    border-color: rgba(104, 84, 248, .22);
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

.step-num {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    color: var(--brand-soft);
    margin-bottom: .6rem;
    user-select: none;
}

.step-card h3 {
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .55rem;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

.steps-inspiration {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.inspiration-quote {
    position: relative;
    margin: 0;
    padding: 2rem 2rem 2rem 2.25rem;
    background: linear-gradient(145deg, #ffffff 0%, var(--brand-soft) 140%);
    border: 1px solid rgba(104, 84, 248, .14);
    border-left: 5px solid var(--gold);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    overflow: hidden;
}

.inspiration-quote::before {
    content: "\201C";
    position: absolute;
    top: -.15rem;
    right: 1.25rem;
    font-size: 6.5rem;
    line-height: 1;
    font-weight: 900;
    color: var(--brand);
    opacity: .12;
    pointer-events: none;
    user-select: none;
}

.inspiration-quote-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1rem;
}

.inspiration-quote-label i {
    font-size: 1rem;
}

.inspiration-quote-text {
    margin: 0;
    padding: 0;
    border: none;
}

.inspiration-quote-text p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
}

.inspiration-quote-text p::before {
    content: "\201C";
    margin-right: .15rem;
    color: var(--gold-dark);
    font-weight: 900;
    font-style: normal;
}

.inspiration-quote-text p::after {
    content: "\201D";
    margin-left: .1rem;
    color: var(--gold-dark);
    font-weight: 900;
    font-style: normal;
}

/* ── 11. Gallery ───────────────────────────────────────────── */
.gallery-section { background: var(--bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-thumb-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    text-align: left;
}

.gallery-thumb-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.gallery-item.fade-up {
    transform: translateY(18px) scale(0.98);
    transition:
        opacity .7s var(--ease-out),
        transform .7s var(--ease-out);
}

.gallery-item.fade-up.visible {
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .44s ease;
    pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.06); }

/* Site lightbox (homepage gallery, etc.) */
.site-lightbox .modal-content {
    background: rgba(8, 16, 30, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.site-lightbox .modal-backdrop.show {
    opacity: .88;
}

.site-lightbox-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.site-lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(70vh, 520px);
}

.site-lightbox-img {
    max-width: 100%;
    max-height: min(70vh, 520px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--r-sm);
}

.site-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 1.2rem;
    transition: background var(--t);
}

.site-lightbox-nav:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

.site-lightbox-prev { left: .35rem; }
.site-lightbox-next { right: .35rem; }

.site-lightbox-counter {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
}

/* ── 12. Page Hero (inner pages) ───────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #1d2755 0%, #5535c8 52%, #9550dd 100%);
    border-radius: var(--r-xl);
    padding: 3.5rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .07);
    pointer-events: none;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    padding: .32rem .85rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: .65rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, .76);
    max-width: 50rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    line-height: 1.65;
}

/* ── 13. Info Cards ────────────────────────────────────────── */
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 2rem;
    height: 100%;
    box-shadow: var(--sh-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

.about-intro {
    margin-bottom: 1.5rem;
}

.about-intro-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.about-intro-inner .feature-icon {
    flex-shrink: 0;
}

.about-intro-inner h2 {
    margin-bottom: .65rem;
}

.about-intro-inner p {
    max-width: 52rem;
}

@media (max-width: 575px) {
    .about-intro-inner {
        flex-direction: column;
    }
}

.about-card-story { border-top: 4px solid var(--brand); }
.about-card-mission { border-top: 4px solid var(--gold); }
.about-card-vision { border-top: 4px solid #059669; }
.about-card-values { border-top: 4px solid #0284c7; }

.about-values-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
}

.about-values-list li + li {
    margin-top: .45rem;
}

.info-card h2,
.info-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .8rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 0;
}

.contact-email-link {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--t);
}

.contact-form .form-label {
    font-size: 0.95rem;
    text-transform: capitalize;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-form-card .alert {
    border-radius: var(--r-sm);
}

.contact-email-link:hover {
    color: var(--brand-dark);
}

/* ── 14. Event Detail ──────────────────────────────────────── */
.event-hero-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -0.25rem;
    margin-bottom: 2.5rem;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 18, 36, .90) 0%,
        rgba(13, 18, 36, .55) 60%,
        transparent 100%
    );
}

.event-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 3rem;
    color: #fff;
}

.booking-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--sh-md);
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}

.booking-card .alert {
    margin-top: .5rem;
    margin-bottom: 1.25rem;
}

.booking-card form {
    margin-top: 1.75rem;
    margin-bottom: .5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

/* Event detail page */
.event-page {
    font-size: 20px;
}

.event-page.section-block {
    padding: 45px 0 100px;
}

.site-main > .event-page.section-block:first-child {
    padding-top: 45px;
}

.event-page .event-hero-wrap {
    margin-bottom: 30px;
}

.event-page .event-hero-content {
    padding: 30px;
}

.event-page .info-card,
.event-page .booking-card {
    padding: 30px;
    height: 100%;
}

.event-page .event-content-row {
    align-items: stretch;
}

.event-page .event-content-col {
    display: flex;
    flex-direction: column;
}

.event-page .event-content-col .info-card,
.event-page .event-content-col .booking-card {
    flex: 1;
    width: 100%;
}

.event-page .event-about-card:hover {
    transform: none;
    box-shadow: var(--sh-sm);
}

.event-page .booking-card {
    position: static;
    top: auto;
    align-self: stretch;
}

.event-page .event-panel-title,
.event-page .event-about-list,
.event-page .event-about-list li,
.event-page .form-label,
.event-page .form-control,
.event-page .form-select,
.event-page .form-control::placeholder,
.event-page .btn,
.event-page .alert {
    font-size: 20px;
}

.event-page .event-about-card .event-panel-title,
.event-page .event-about-subheading {
    font-size: 22px;
}

.event-page .booking-card .event-panel-title {
    font-size: 24px;
}

.event-page .event-panel-title {
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .8rem;
    line-height: 1.3;
}

.event-page .event-hero-content .page-hero-eyebrow {
    font-size: 22px;
}

.event-page .event-hero-title {
    font-size: 28px;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.event-page .event-hero-meta {
    font-size: 22px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

.event-page .event-hero-content .badge {
    font-size: 22px;
    padding: .5em .95em;
}

.event-page .event-hero-meta.mb-3 {
    color: rgba(255, 255, 255, .75);
}

.event-page .booking-card form {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.event-page .event-about-lead {
    font-weight: 600;
    color: var(--text);
    line-height: 1.72;
}

.event-page .event-about-body {
    color: var(--text-muted);
    line-height: 1.72;
}

.event-page .event-about-subheading {
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .85rem;
}

.event-page .event-about-list {
    line-height: 1.9;
    padding-left: 1.15rem;
    color: var(--text-muted);
}

.event-about-list li + li {
    margin-top: .2rem;
}

.event-map-wrap {
    margin-top: 1.75rem;
    margin-bottom: 0;
}

.event-map-address {
    color: var(--text-muted);
    font-weight: 600;
}

.event-map-frame {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-xs);
    background: var(--surface);
}

.event-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 150px;
    height: 170px;
    border: 0;
}

.event-map-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .85rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--t);
}

.event-map-link:hover {
    color: var(--brand-dark);
}

/* ── 15. Accordion ─────────────────────────────────────────── */
.accordion { --bs-accordion-border-color: transparent; }

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--r-md) !important;
    margin-bottom: .85rem;
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.accordion-button {
    font-weight: 700;
    font-size: .95rem;
    padding: 1.1rem 1.3rem;
    color: var(--text);
    background: var(--surface);
    border-radius: 0 !important;
}

.faq-answer {
    font-size: .9rem;
    line-height: 1.7;
}

.accordion-button:not(.collapsed) {
    background: var(--brand-soft);
    color: var(--brand-dark);
    box-shadow: none;
}

/* ── 16. Forms ─────────────────────────────────────────────── */
.site-main form,
.site-footer form {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.site-main form.d-flex.flex-column {
    gap: 1.4rem !important;
}

.site-main form.row {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.25rem;
}

.site-main form > div,
.site-main form .col-md-4,
.site-main form .col-12 {
    margin-bottom: 0;
}

.site-footer form {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.site-footer form.d-flex.flex-column {
    gap: 1rem !important;
}

.form-label {
    font-size: .83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .55rem;
    display: block;
}

.form-control,
.form-select,
.form-control-sm,
textarea.form-control,
input.form-control,
select.form-select,
.site-footer .form-control,
.site-footer .form-select,
.site-footer .form-control-sm,
.admin-shell .form-control,
.admin-shell .form-select,
.admin-shell .form-control-sm,
.admin-shell textarea.form-control,
.admin-main .form-control,
.admin-main .form-select,
.admin-main textarea.form-control {
    border-radius: 8px;
    border: var(--form-border-width) solid var(--form-border-color);
    padding: .5rem .75rem;
    font-size: .84rem;
    font-weight: 400;
    line-height: 1.4;
    min-height: auto;
    background: var(--surface);
    color: var(--text);
    transition: border-color var(--t), box-shadow var(--t);
}

.form-control:focus,
.form-select:focus,
.site-footer .form-control:focus,
.site-footer .form-select:focus,
.admin-shell .form-control:focus,
.admin-shell .form-select:focus,
.admin-main .form-control:focus,
.admin-main .form-select:focus {
    border-width: var(--form-border-width);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(104, 84, 248, .14);
    background: var(--surface);
    color: var(--text);
    font-weight: 400;
}

.form-control::placeholder,
.admin-shell .form-control::placeholder,
.admin-main .form-control::placeholder {
    color: var(--text-faint);
    font-weight: 500;
}

/* ── 17. Badges ────────────────────────────────────────────── */
.badge {
    border-radius: 999px;
    font-weight: 700;
    font-size: .72rem;
    padding: .4em .88em;
    letter-spacing: .02em;
}

/* ── 18. Alerts ────────────────────────────────────────────── */
.alert { border-radius: var(--r-md); border: none; }

/* ── 19. Past Events ───────────────────────────────────────── */
.past-event-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--sh-xs);
}

.past-event-card .event-thumb { filter: grayscale(25%); }

/* ── 20. Footer ────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(160deg, #08101e 0%, #0f1c32 52%, #0d1224 100%);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 5rem 0 2.5rem;
    color: #fff;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand:hover { color: #fff; text-decoration: none; }

.footer-about {
    color: #fff;
    line-height: 1.68;
    margin-bottom: 0;
}

.footer-about + .footer-about {
    margin-top: .9rem;
}

.footer-heading {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer a.footer-link,
.site-footer a.footer-link:link,
.site-footer a.footer-link:visited,
.site-footer a.footer-link:hover,
.site-footer a.footer-link:focus,
.site-footer a.footer-link:active,
.site-footer span.footer-link {
    display: block;
    font-size: .95rem;
    color: #fff;
    text-decoration: none;
    padding: .22rem 0;
    opacity: 1;
    transition: opacity var(--t);
}

.site-footer a.footer-link:hover,
.site-footer a.footer-link:focus {
    color: #fff;
    opacity: .85;
}

.footer-social {
    margin-top: 1.1rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.footer-social-link,
.footer-social-link-static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.15rem;
    text-decoration: none;
    transition: background var(--t), color var(--t), transform var(--t);
}

.footer-social-link:hover,
.footer-social-link:focus {
    color: #fff;
    background: linear-gradient(135deg, #7e6cfc, var(--brand));
    transform: translateY(-2px);
}

.footer-social-link-static {
    opacity: .85;
}

.contact-social {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
}

.contact-social-label {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: .75rem;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.contact-social-link,
.contact-social-link-static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.15rem;
    text-decoration: none;
    transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}

.contact-social-link:hover,
.contact-social-link:focus {
    color: #fff;
    background: linear-gradient(135deg, #7e6cfc, var(--brand));
    transform: translateY(-2px);
    box-shadow: var(--sh-brand);
}

.contact-social-link-static {
    opacity: .75;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .07);
    margin: 2.5rem 0 1.5rem;
}

.footer-copy {
    font-size: 1rem;
    color: #fff;
}

@media (min-width: 992px) {
    .site-footer .footer-col-contact {
        margin-left: -1.75rem;
        padding-right: 0;
    }

    .site-footer .footer-col-subscribe {
        margin-left: auto;
        padding-left: 2rem;
        padding-right: 0;
    }
}

.site-footer .footer-heading + .alert {
    margin-top: .75rem;
}

.site-footer .form-control,
.site-footer .form-control-sm,
.site-footer .form-select {
    background: rgba(255, 255, 255, .07);
    border: var(--form-border-width) solid rgba(255, 255, 255, .28);
    color: #fff;
    font-weight: 400;
}

.site-footer .form-control::placeholder {
    color: rgba(255, 255, 255, .75);
}

.site-footer .alert {
    color: #fff;
}

.site-footer .alert-success {
    background: rgba(25, 135, 84, .35);
    border-color: rgba(255, 255, 255, .2);
}

.site-footer .alert-danger {
    background: rgba(220, 53, 69, .35);
    border-color: rgba(255, 255, 255, .2);
}

.site-footer .form-control:focus,
.site-footer .form-select:focus {
    background: rgba(255, 255, 255, .10);
    border-width: var(--form-border-width);
    border-color: var(--brand);
    box-shadow: none;
    color: #fff;
    font-weight: 400;
}

.site-footer .footer-subscribe-form {
    max-width: 280px;
    margin-top: .85rem !important;
    margin-bottom: 0 !important;
    gap: .55rem !important;
}

.site-footer .footer-col-subscribe .footer-heading {
    margin-bottom: .65rem;
}

.site-footer .footer-col-subscribe .alert {
    max-width: 280px;
    font-size: .78rem;
    padding: .45rem .65rem;
}

.site-footer .footer-col-subscribe .form-control,
.site-footer .footer-col-subscribe .form-control-sm {
    font-size: .82rem;
    padding: .45rem .7rem;
    line-height: 1.35;
    min-height: auto;
}

.site-footer .footer-col-subscribe .form-control::placeholder {
    font-size: .82rem;
    font-weight: 500;
}

.site-footer .footer-col-subscribe .btn-gold {
    font-size: .8rem;
    font-weight: 700;
    padding: .45rem .85rem;
    align-self: flex-start;
}

/* ── 21. Filter Card ───────────────────────────────────────── */
.filter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--sh-sm);
    margin-top: .5rem;
    margin-bottom: 3rem;
}

.filter-card form {
    margin-top: 0;
    margin-bottom: 0;
}

.filter-card .form-label {
    font-size: 20px;
}

.filter-card .form-select {
    font-size: 20px;
    font-weight: 400;
}

.filter-card .btn {
    font-size: 20px;
}

/* ── 22. Back to top ───────────────────────────────────────── */
.back-to-top {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1045;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .62rem 1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #7e6cfc, var(--brand));
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: var(--sh-brand);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .28s var(--ease-out),
        transform .28s var(--ease-out),
        visibility .28s var(--ease-out),
        background var(--t);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
}

.back-to-top i {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 575px) {
    .back-to-top span {
        display: none;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ── 23. Scroll Animations ─────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .42s var(--ease-out), transform .42s var(--ease-out);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }

/* Admin panel styles: assets/css/admin.css */

.table {
    --bs-table-bg: #ffffff;
    --bs-table-striped-bg: #f8f9fc;
    --bs-table-border-color: #dfe3eb;
    border: 1px solid #dfe3eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
}

.table thead th {
    background: #eef2f8;
    color: #1b2230;
    font-weight: 700;
    border-bottom-width: 1px;
    vertical-align: middle;
}

.table td,
.table th {
    vertical-align: middle;
    padding: .7rem .85rem;
}

.table-responsive { border-radius: 10px; }

/* ── 24. Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .section-block { padding: 3.5rem 0; }

    .site-main > .section-block:first-child {
        padding-top: 1.75rem;
    }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-card { position: static; top: auto; }
    .event-page .booking-card { position: static; top: auto; align-self: stretch; }
    .event-page .event-content-row { align-items: stretch; }
    .page-hero { padding: 2.8rem 2rem; }
    .event-page .event-hero-content { padding: 30px; }
}

@media (max-width: 767px) {
    .hero-content { align-items: flex-end; padding-bottom: 6rem; }
    .hero-title { font-size: 1.95rem; }
    .hero-actions { gap: .6rem; }
    .hero-scroll { display: none; }
    .page-hero { padding: 2rem 1.4rem; border-radius: var(--r-lg); }
    .page-hero h1 { font-size: 1.65rem; }
    .event-page .event-hero-title { font-size: 24px; }
    .event-page .event-hero-content .page-hero-eyebrow,
    .event-page .event-hero-meta,
    .event-page .event-hero-content .badge { font-size: 20px; }
    .event-page .event-hero-content { padding: 30px; }
    .event-hero-wrap { min-height: 260px; }
    .event-page .info-card,
    .event-page .booking-card { padding: 30px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: 1fr; }
    .carousel-indicators { bottom: 5.5rem; }
}

/* Home page: ensure navbar copy reads as dark grey over the hero */
.page-home .site-nav .navbar-brand,
.page-home .site-nav .nav-link {
    color: var(--nav-text) !important;
}

.page-home .site-nav .nav-link:hover,
.page-home .site-nav .nav-link:focus {
    color: var(--nav-text-hover) !important;
}

.page-home .site-nav .nav-link.active,
.page-home .site-nav .nav-link.active:hover,
.page-home .site-nav .nav-link.active:focus {
    color: var(--brand) !important;
}

.page-home .site-nav-toggler {
    color: var(--nav-text);
}

/* ── 25. Cookie consent ────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.1rem 1.25rem;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, #12182e 0%, #1d2755 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .28);
    color: #fff;
}

.cookie-consent-title {
    margin: 0 0 .35rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.cookie-consent-text {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
    max-width: 42rem;
}

.cookie-consent-policy {
    display: inline-block;
    margin-top: .45rem;
    font-size: .86rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-policy:hover {
    color: #ffe27a;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    font-size: .88rem;
    font-weight: 700;
    padding: .55rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    touch-action: manipulation;
}

.cookie-consent .btn-outline-light {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.cookie-consent .btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.footer-cookie-settings {
    display: inline;
    margin: 0 0 0 .35rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--gold);
    font-size: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.footer-cookie-settings:hover {
    color: #ffe27a;
}

.site-footer .footer-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .15rem .35rem;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-actions .cookie-consent-btn {
        flex: 1 1 calc(50% - .3rem);
        justify-content: center;
    }
}
