:root {
    --bg: #eef2fb;
    --panel: #1b2f8a;
    --panel-soft: #243ca6;
    --panel-deep: #122062;
    --text: #f8fbff;
    --text-dark: #1b2f8a;
    --muted: #6371a3;
    --line: rgba(27, 47, 138, .14);
    --accent: #2fb8f4;
    --accent-hover: #1ea6e2;
    --surface: #ffffff;
}

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--text-dark);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, #bcc9ef 0%, #a8bae9 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 47, 138, .12);
    box-shadow: 0 8px 24px rgba(18, 32, 98, .12);
}

    .site-header .container-fluid,
    .site-header .container-xl {
        min-height: 88px;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 88px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 88px;
    width: auto;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(255,255,255,.10)) drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.nav-linkish {
    color: var(--text-dark);
    text-decoration: none;
    opacity: .96;
    font-weight: 600;
}

    .nav-linkish:hover {
        opacity: 1;
        color: var(--panel);
        text-decoration: underline;
        text-underline-offset: 6px;
    }

.mobile-nav {
    border-top: 1px solid rgba(27, 47, 138, .10);
    background: rgba(200, 213, 245, .98);
}

.mobile-link {
    display: block;
    padding: 10px 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 47, 138, .08);
}

    .mobile-link:last-child {
        border-bottom: none;
    }

    .mobile-link:hover {
        color: #ffffff;
    }

/* Hero + intro */
.hero {
    padding: 36px 0 10px;
}

.intro {
    width: 100%;
    max-width: none;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(27, 47, 138, .10);
    border-radius: 22px;
    padding: 24px 24px 22px;
    box-shadow: 0 10px 28px rgba(27, 47, 138, .06);
    backdrop-filter: blur(6px);
}

.intro-quote {
    font-size: 1.18rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.intro-text {
    color: var(--muted);
    max-width: none;
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    white-space: pre-line;
}

    .intro-text strong,
    .intro-text b {
        color: var(--text-dark);
    }

/* Cards */
.cards {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(12, 1fr);
}

.info-card {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--panel) 0%, var(--panel-deep) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 16px;
    color: var(--text);
    box-shadow: 0 10px 24px rgba(27, 47, 138, .12);
    transition: 120ms ease;
}

    .info-card:hover {
        background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel) 100%);
        border-color: rgba(255,255,255,.14);
        transform: translateY(-2px);
    }

.info-card-top {
    display: flex;
    gap: 10px;
    align-items: center;
}

.info-icon {
    font-size: 1.2rem;
}

.info-eyebrow {
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.info-title {
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 650;
}

.info-text {
    margin-top: 6px;
    color: rgba(255,255,255,.82);
}

.info-cta {
    margin-top: 12px;
    font-weight: 600;
    opacity: .95;
}

@media (max-width: 992px) {
    .info-card {
        grid-column: span 12;
    }
}

/* Sections */
.section-title {
    letter-spacing: .04em;
    font-weight: 650;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Pages */
.page {
    padding: 40px 0;
}

.page-title {
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--text-dark);
    margin-bottom: 0;
}

.page-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(27, 47, 138, .10);
    border-radius: 18px;
    padding: 22px;
    color: var(--text-dark);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(27, 47, 138, .06);
}

    .page-card h2,
    .page-card h3 {
        color: var(--text-dark);
    }

.muted {
    color: var(--muted);
    line-height: 1.8;
}

.hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hours li {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(27, 47, 138, .10);
    }

        .hours li:last-child {
            border-bottom: none;
        }

        .hours li span:first-child {
            font-weight: 600;
        }

/* Privacy layout */
.privacy-wrap {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 20px;
}

.privacy-sidebar {
    position: sticky;
    top: 110px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(27, 47, 138, .10);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(27, 47, 138, .06);
    backdrop-filter: blur(6px);
}

.privacy-sidebar-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .privacy-nav a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        padding: 8px 0;
        border-bottom: 1px solid rgba(27, 47, 138, .08);
    }

        .privacy-nav a:last-child {
            border-bottom: none;
        }

        .privacy-nav a:hover {
            color: var(--panel);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.privacy-section {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(27, 47, 138, .10);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(27, 47, 138, .06);
    backdrop-filter: blur(6px);
}

    .privacy-section h2 {
        font-size: 1.15rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }

    .privacy-section p {
        margin-bottom: 0;
        color: var(--muted);
        line-height: 1.85;
    }

.privacy-lead {
    color: var(--muted);
    max-width: 75ch;
    margin-top: 10px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(27, 47, 138, .10);
    background: linear-gradient(135deg, var(--panel-deep) 0%, var(--panel) 100%);
    color: var(--text);
}

.footer-brand {
    letter-spacing: .18em;
    font-weight: 800;
    color: var(--text);
}

.footer-title {
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.footer-link {
    color: var(--text);
    text-decoration: none;
    opacity: .94;
}

    .footer-link:hover {
        opacity: 1;
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

.footer-address {
    color: rgba(255,255,255,.80);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.72);
}

/* Gallery */
.gallery {
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 22px;
    overflow: hidden;
}

.gallery-scrim {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 1;
    pointer-events: none;
}

    .gallery-scrim.left {
        left: 0;
        background: linear-gradient(to right, rgba(27, 47, 138, .45), rgba(27, 47, 138, 0));
    }

    .gallery-scrim.right {
        right: 0;
        background: linear-gradient(to left, rgba(27, 47, 138, .45), rgba(27, 47, 138, 0));
    }

.gallery-track {
    display: flex;
    gap: 16px;
    padding: 18px 64px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

    .gallery-track::-webkit-scrollbar {
        display: none;
    }

.gallery-item {
    margin: 0;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
}

    .gallery-item img {
        display: block;
        width: 440px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center center;
        transform: none;
        transition: none;
    }

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(27, 47, 138, .78);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(27, 47, 138, .22);
    backdrop-filter: blur(10px);
}

    .gallery-arrow span {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        transform: translateY(-1px);
    }

    .gallery-arrow.left {
        left: 12px;
    }

    .gallery-arrow.right {
        right: 12px;
    }

    .gallery-arrow:hover {
        background: rgba(47, 184, 244, .92);
        border-color: rgba(255,255,255,.28);
    }

    .gallery-arrow:active {
        transform: translateY(-50%) scale(.98);
    }

    .gallery-arrow[disabled] {
        opacity: .35;
        cursor: default;
    }

/* Buttons */
.btn-indigo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(27, 47, 138, .14);
    transition: 150ms ease;
}

    .btn-indigo:hover {
        background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel) 100%);
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(27, 47, 138, .18);
    }

.btn-indigo-sm {
    padding: 8px 14px;
    font-size: .92rem;
}

.journey-links .btn,
.page .btn {
    border-radius: 999px;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-item img {
        width: 380px;
    }
}

@media (max-width: 992px) {
    .privacy-wrap {
        grid-template-columns: 1fr;
    }

    .privacy-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .site-header .container-fluid,
    .site-header .container-xl {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .brand {
        padding: 8px 12px;
        border-radius: 16px;
    }

    .brand-logo {
        height: 56px;
    }

    .gallery-track {
        padding: 14px 56px;
    }

    .gallery-item img {
        width: 78vw;
        aspect-ratio: 4 / 3;
    }

    .intro {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .intro-quote {
        font-size: 1.06rem;
    }

    .intro-text {
        font-size: .98rem;
        line-height: 1.8;
    }

    .page-card,
    .privacy-section,
    .privacy-sidebar {
        padding: 18px;
    }
}

.btn-nav-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(27, 47, 138, .18);
    border: 1px solid rgba(255,255,255,.22);
    transition: 160ms ease;
    white-space: nowrap;
}

    .btn-nav-booking:hover {
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(27, 47, 138, .24);
        background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel) 100%);
    }

.mobile-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 8px 20px rgba(27, 47, 138, .18);
}

    .mobile-booking-btn:hover {
        color: #ffffff;
        background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel) 100%);
    }

.booking-callout {
    background: linear-gradient(135deg, rgba(27, 47, 138, .96) 0%, rgba(36, 60, 166, .92) 100%);
    border-radius: 24px;
    padding: 24px;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(27, 47, 138, .16);
    border: 1px solid rgba(255,255,255,.10);
}

.booking-callout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.booking-callout-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    color: rgba(255,255,255,.72);
    font-weight: 700;
}

.booking-callout-title {
    margin: 8px 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.booking-callout-text {
    margin: 0;
    color: rgba(255,255,255,.84);
    max-width: 60ch;
    line-height: 1.8;
}

.booking-callout-actions {
    flex-shrink: 0;
}

.btn-booking-callout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--panel);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    transition: 160ms ease;
    white-space: nowrap;
}

    .btn-booking-callout:hover {
        color: var(--panel);
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(0,0,0,.16);
    }

@media (max-width: 768px) {
    .booking-callout-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-callout-title {
        font-size: 1.25rem;
    }

    .btn-booking-callout {
        width: 100%;
    }

    .booking-callout-actions {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

.privacy-section {
    scroll-margin-top: 120px;
}

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(27, 47, 138, .18);
    transition: 160ms ease;
    white-space: nowrap;
}

.mobile-menu-toggle:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(27, 47, 138, .24);
    background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel) 100%);
}