:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #0f8f8c;
    --background: #f5f7fb;
    --surface: #ffffff;
    --surface-alt: #edf3ff;
    --text: #0f172a;
    --text-muted: #526174;
    --border: #dbe3ee;
    --hover-bg: #edf3ff;
    --navy: #020914;
    --display: "Lucida Handwriting", "Segoe Script", cursive;
    --heading: "Montserrat", sans-serif;
    --body: "Inter", sans-serif;
    --page-width: min(1120px, calc(100% - 40px));
    --header-height: 78px;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
    --primary: #60a5fa;
    --primary-hover: #7cb5fb;
    --secondary: #2dd4bf;
    --background: #0b1220;
    --surface: #111827;
    --surface-alt: #172033;
    --text: #eef4ff;
    --text-muted: #a9b5c7;
    --border: #2b3a50;
    --hover-bg: #18243a;
    --navy: #02060d;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
    background: var(--background);
}

body {
    display: flex;
    min-width: 320px;
    min-height: 100dvh;
    margin: 0;
    padding: 110px 0 0;
    overflow-x: hidden;
    flex-direction: column;
    color: var(--text);
    background: var(--background);
    font-family: var(--body);
    line-height: 1.65;
    transition: color 0.2s ease, background-color 0.2s ease;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
    transition: opacity 0.18s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.6vw, 5.8rem);
    font-weight: 800;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 4.3vw, 4rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

h1 em,
h2 em {
    display: inline-block;
    color: var(--primary);
    font-family: var(--display);
    font-size: 0.84em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.04em;
}

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
}

.site-header,
.site-footer {
    transition: opacity 0.18s ease;
}

.is-switching main,
.is-switching .site-header,
.is-switching .site-footer {
    opacity: 0.94;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 20px;
    z-index: 1000;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    transform: translateY(-180%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-shell {
    position: relative;
    width: var(--page-width);
    margin-inline: auto;
}

.capsule {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 0;
    z-index: 100;
    width: 100%;
    padding-inline: 20px;
}

.desktop-header {
    display: grid;
    grid-template-columns: 200px 1fr 156px;
    align-items: center;
    width: min(1180px, 100%);
    height: var(--header-height);
    margin-inline: auto;
    padding: 9px 14px 9px 20px;
    color: #edf4ff;
    background: var(--navy);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.brand:hover {
    opacity: 0.84;
}

.brand img {
    width: 164px;
    height: 54px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: #c5d1e0;
    font-family: var(--heading);
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease;
    gap: 7px;
}

.desktop-nav a i {
    color: #75b7ff;
    font-size: 0.76rem;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: #fff;
    background: #12243a;
}

.desktop-nav a:hover i,
.desktop-nav a.is-active i {
    color: #fff;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.icon-button,
.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1px solid #27384d;
    color: #edf4ff;
    background: #0b1728;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
}

.icon-button {
    width: 44px;
    border-radius: 50%;
}

.language-toggle {
    min-width: 64px;
    padding-inline: 12px;
    border-radius: 999px;
    font-family: var(--heading);
    font-size: 0.72rem;
    font-weight: 800;
    gap: 7px;
}

.icon-button:hover,
.language-toggle:hover {
    border-color: #45617f;
    background: #14253a;
    transform: translateY(-1px);
}

.mobile-header,
.mobile-bottom-nav {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    min-height: calc(100svh - 110px);
    min-height: calc(100dvh - 110px);
    padding: 28px 0 42px;
    gap: clamp(34px, 6vw, 76px);
}

.hero-copy {
    min-width: 0;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--heading);
    font-size: 0.87rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
    gap: 10px;
}

.button i {
    transition: transform 0.2s var(--ease);
}

.button:hover {
    transform: translateY(-1px);
}

.button:hover i.fa-arrow-right,
.button:hover i.fa-arrow-up-right-from-square {
    transform: translateX(2px);
}

.button-primary {
    color: #fff;
    background: var(--primary);
}

.button-primary:hover {
    background: var(--primary-hover);
}

.button-ghost,
.button-secondary {
    border-color: var(--border);
    color: var(--text);
    background: var(--surface);
}

.button-ghost:hover,
.button-secondary:hover {
    border-color: color-mix(in srgb, var(--primary) 36%, var(--border));
    background: var(--hover-bg);
}

.button-light {
    color: #071629;
    background: #fff;
}

.button-light:hover {
    background: #eaf1fb;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    gap: 10px 20px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-row i {
    color: var(--secondary);
}

.hero-visual {
    display: grid;
    min-height: clamp(340px, 43vw, 520px);
    place-items: center;
    border: 1px solid #1d3149;
    border-radius: var(--radius-xl);
    background: #061322;
}

.hero-ticket {
    width: min(460px, 88%);
    padding: clamp(16px, 3vw, 30px);
    border: 1px solid #203852;
    border-radius: var(--radius-lg);
    background: #0a1a2c;
}

.hero-ticket img {
    width: 100%;
    height: auto;
    max-height: 310px;
    object-fit: contain;
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    padding: 94px 0;
    border-top: 1px solid var(--border);
    gap: clamp(36px, 7vw, 90px);
}

.intro-heading h2 {
    margin-bottom: 0;
}

.intro-copy {
    max-width: 620px;
    padding-top: 8px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.intro-copy p {
    margin-bottom: 0;
}

.pathways,
.explore {
    padding: 82px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 36px;
}

.section-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.section-heading p {
    max-width: 390px;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cta-card {
    position: relative;
    display: grid;
    min-height: 300px;
    padding: clamp(26px, 3.4vw, 38px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
}

.cta-card:hover {
    border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
    background: color-mix(in srgb, var(--primary) 3%, var(--surface));
    transform: translateY(-2px);
}

.card-wide {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 260px;
    column-gap: 24px;
}

.card-wide .card-link {
    grid-column: 2;
}

.card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: auto;
    place-items: center;
    border-radius: var(--radius-md);
    color: #fff;
    background: var(--primary);
    font-size: 1.05rem;
}

.cta-card p {
    max-width: 470px;
    color: var(--text-muted);
}

.card-link {
    display: flex;
    align-items: center;
    align-self: end;
    justify-content: space-between;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-family: var(--heading);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-link i {
    transition: transform 0.2s var(--ease);
}

.cta-card:hover .card-link i {
    transform: translateX(2px);
}

.booking-card {
    border-color: color-mix(in srgb, var(--primary) 34%, var(--border));
    color: var(--text);
    background: var(--surface);
}

.booking-card:hover {
    border-color: color-mix(in srgb, var(--primary) 52%, var(--border));
    background: color-mix(in srgb, var(--primary) 4%, var(--surface));
}

.booking-card p {
    color: var(--text-muted);
}

.booking-card .card-link {
    border-color: var(--border);
    color: var(--primary);
}

.booking-card .card-icon {
    color: #fff;
    background: var(--secondary);
}

.booking-card .booking-count span {
    color: var(--text-muted);
}

[data-theme="dark"] .booking-card {
    border-color: #1e3852;
    color: #edf4ff;
    background: #071629;
}

[data-theme="dark"] .booking-card:hover {
    border-color: #355876;
    background: #0a1b2e;
}

[data-theme="dark"] .booking-card p,
[data-theme="dark"] .booking-card .booking-count span {
    color: #aab8ca;
}

[data-theme="dark"] .booking-card .card-link {
    border-color: #20364e;
    color: #75b7ff;
}

.booking-count {
    position: absolute;
    top: 30px;
    right: 30px;
    display: grid;
    text-align: right;
}

.booking-count strong {
    font-family: var(--heading);
    font-size: 2.1rem;
    line-height: 1;
}

.booking-count span {
    color: var(--text-muted);
    font-size: 0.68rem;
}

.register-card {
    border-color: color-mix(in srgb, var(--secondary) 40%, var(--border));
}

.register-card .card-icon {
    background: var(--secondary);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.explore-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
    gap: 18px;
}

.explore-card:hover {
    border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.explore-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: var(--surface-alt);
    font-size: 1.1rem;
}

.explore-card span:nth-child(2) {
    display: grid;
    gap: 5px;
}

.explore-card strong {
    font-family: var(--heading);
    font-size: 1rem;
}

.explore-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.explore-card > i {
    color: var(--primary);
    transition: transform 0.2s var(--ease);
}

.explore-card:hover > i {
    transform: translateX(2px);
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 52px;
    margin-bottom: 42px;
    padding: clamp(34px, 5vw, 58px);
    border-radius: var(--radius-xl);
    color: #edf4ff;
    background: #071629;
    gap: 28px;
}

.final-cta h2 {
    margin-bottom: 0;
}

.final-cta h2 em {
    color: #75b7ff;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr;
    align-items: center;
    width: 100%;
    min-height: 180px;
    margin-top: auto;
    padding: 32px max(24px, calc((100vw - 1120px) / 2));
    border: 0;
    border-radius: 0;
    color: #c7d4e8;
    background: #020914;
    gap: 28px;
}

.footer-brand img {
    width: 176px;
    height: 66px;
    object-fit: contain;
}

.footer-brand p {
    margin: 4px 0 0;
    color: #94a5b9;
    font-size: 0.8rem;
}

.footer-contact,
.footer-legal {
    display: grid;
    gap: 6px;
}

.footer-contact strong,
.footer-legal strong {
    color: #fff;
    font-family: var(--heading);
    font-size: 0.8rem;
}

.footer-contact a,
.footer-legal span {
    color: #adbbcc;
    font-size: 0.76rem;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #75b7ff;
}

.footer-legal {
    text-align: right;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: var(--heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    gap: 9px;
}

.subpage-hero {
    display: flex;
    min-height: calc(100svh - 290px);
    min-height: calc(100dvh - 290px);
    padding-block: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.subpage-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.78rem;
    gap: 8px;
}

.subpage-breadcrumb a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    transition: color 160ms ease;
    gap: 6px;
}

.subpage-breadcrumb a:hover,
.subpage-breadcrumb a:focus-visible {
    color: var(--primary);
}

.subpage-breadcrumb > .fa-chevron-right {
    font-size: 0.62rem;
}

.subpage-hero h1 {
    margin-bottom: 20px;
}

.subpage-hero > p {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.noscript {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    background: #b42318;
}

@media (max-width: 1000px) {
    :root {
        --page-width: min(100% - 32px, 820px);
    }

    .desktop-header {
        grid-template-columns: 170px 1fr 140px;
    }

    .desktop-nav a {
        padding-inline: 9px;
        font-size: 0.74rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
        gap: 30px;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
        padding-inline: max(24px, calc((100vw - 820px) / 2));
    }

    .footer-legal {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 760px) {
    :root {
        --page-width: calc(100% - 28px);
    }

    html {
        scroll-padding-top: 96px;
    }

    body {
        padding: 90px 0 0;
    }

    .site-header {
        top: max(10px, env(safe-area-inset-top));
        padding-inline: 10px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: grid;
        grid-template-columns: 44px 1fr 64px;
        align-items: center;
        width: min(100%, 520px);
        height: 68px;
        margin-inline: auto;
        padding: 7px 9px;
        color: #edf4ff;
        background: #020914;
    }

    .mobile-header .brand {
        justify-self: center;
    }

    .mobile-header .brand img {
        width: 126px;
        height: 46px;
    }

    .mobile-header .icon-button {
        width: 42px;
        height: 42px;
    }

    .mobile-header .language-toggle {
        width: 60px;
        min-width: 60px;
        height: 42px;
        padding-inline: 8px;
        gap: 5px;
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 14px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 14px;
        z-index: 100;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: min(420px, calc(100% - 28px));
        height: 64px;
        margin-inline: auto;
        padding: 7px;
        color: #c7d4e8;
        background: #020914;
    }

    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        border-radius: 50%;
        font-size: 0.96rem;
        transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
    }

    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav a.is-active {
        color: #fff;
        background: #14253a;
        transform: translateY(-1px);
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    h2 {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: calc(100svh - 90px);
        min-height: calc(100dvh - 90px);
        padding: 28px 0 36px;
        gap: 28px;
    }

    .hero-lead {
        margin-bottom: 24px;
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
    }

    .hero-visual {
        min-height: clamp(190px, 31svh, 280px);
        border-radius: var(--radius-lg);
    }

    .hero-ticket {
        width: min(360px, 88%);
        padding: 14px;
    }

    .hero-ticket img {
        max-height: 210px;
    }

    .intro {
        grid-template-columns: 1fr;
        padding: 72px 0;
        gap: 26px;
    }

    .intro-copy {
        padding-top: 0;
        font-size: 1rem;
    }

    .pathways,
    .explore {
        padding: 66px 0;
    }

    .section-heading {
        align-items: flex-start;
        margin-bottom: 28px;
        flex-direction: column;
        gap: 14px;
    }

    .cta-grid,
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .cta-card,
    .card-wide {
        grid-template-columns: 1fr;
        min-height: 260px;
        padding: 26px;
    }

    .card-wide .card-link {
        grid-column: auto;
    }

    .booking-count {
        top: 26px;
        right: 26px;
    }

    .explore-card {
        min-height: 138px;
        padding: 20px;
        gap: 14px;
    }

    .explore-icon {
        width: 46px;
        height: 46px;
    }

    .final-cta {
        align-items: stretch;
        margin-top: 32px;
        margin-bottom: 0;
        border-radius: 0;
        flex-direction: column;
    }

    .site-footer {
        grid-template-columns: 1fr;
        width: 100%;
        min-height: 0;
        padding: 32px 24px calc(112px + env(safe-area-inset-bottom));
        border-radius: 0;
    }

    .footer-legal {
        grid-column: auto;
    }

    .subpage-hero {
        min-height: calc(100svh - 250px);
        min-height: calc(100dvh - 250px);
        padding-block: 56px;
    }
}

@media (max-width: 420px) {
    .trust-row {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 180px;
    }

    .explore-card {
        grid-template-columns: auto 1fr;
    }

    .explore-card > i {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .button:hover,
    .cta-card:hover,
    .explore-card:hover,
    .icon-button:hover,
    .language-toggle:hover,
    .mobile-bottom-nav a:hover {
        transform: none;
    }
}
