@charset "utf-8";

/* ################################################## GENERAL ################################################## */
:root {
    --color-bg: #F4F6FA;
    --color-bg-warm: #E9EEF6;
    --color-surface: #FFFFFF;
    --color-ink: #0E1524;
    --color-text: #3A4356;
    --color-muted: #7B8497;
    --color-line: #DCE3EE;
    --color-line-soft: #E9EEF6;
    --color-primary: #1F5BD6;
    --color-primary-deep: #1543A0;
    --color-primary-soft: rgba(31, 91, 214, 0.10);
    --color-sage: #4A6A8E;
    --color-sage-soft: rgba(74, 106, 142, 0.14);
    --font-display: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;
    --size-md: 1.0625rem;
    --size-lg: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
    --size-h4: clamp(1.25rem, 1vw + 1rem, 1.5rem);
    --size-h3: clamp(1.5rem, 1.8vw + 1rem, 2rem);
    --size-h2: clamp(2rem, 3vw + 1rem, 3.25rem);
    --size-h1: clamp(2.75rem, 6vw + 1rem, 5.75rem);
    --size-display: clamp(3.5rem, 9vw + 1rem, 8.5rem);
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;
    --container-width: 1320px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-pill: 999px;
    --shadow-soft: 0 1px 2px rgba(14, 21, 36, 0.04), 0 8px 24px -12px rgba(14, 21, 36, 0.14);
    --shadow-lift: 0 1px 2px rgba(14, 21, 36, 0.05), 0 20px 44px -18px rgba(14, 21, 36, 0.22);
    --shadow-inset-hi: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
    --dur-fast: 180ms;
    --dur-med: 360ms;
    --dur-slow: 700ms;
}

html {
    scroll-behavior: smooth;
}

section[id],
div[id] {
    scroll-margin-top: var(--header-height);
}

html,
body {
    max-width: none;
}

video {
    display: block;
}

img,
video,
picture {
    max-width: 100%;
    height: auto;
}

.animated,
img,
svg,
a,
i,
.fa-stack {
    transition: all 300ms ease 0s;
}

select {
    cursor: pointer;
}

.unbreakable {
    white-space: nowrap;
}

.cover {
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

.cover img,
.cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content *:last-child {
    margin-bottom: 0;
}

.btn-icon .fa-stack {
    font-size: 2rem;
    width: 2em;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(27, 26, 26);
    background: linear-gradient(90deg, rgba(27, 26, 26, 0.7035189075630253) 97%, rgba(31, 24, 24, 0.15730042016806722) 100%);
    top: 0;
}

.object-fit-cover {
    object-fit: cover;
}

/* ################################################## Custom styling start ########################################## */
/* Navbar */
.navbar {
    position: fixed;
    top: clamp(0.75rem, 2vh, 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.55rem 0.55rem 0.55rem 1.25rem;
    max-width: calc(100% - clamp(1.25rem, 5vw, 3rem) * 3);
    width: max-content;
    background: rgba(244, 246, 250, 0.78);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid rgba(220, 227, 238, 0.85);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 20px 40px -24px rgba(14, 21, 36, 0.22);
}

.navbar[data-scrolled="true"] {
    background: rgba(244, 246, 250, 0.94);
}

.navbar .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar .nav-brand img {
    max-height: 28px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-inline: 0.875rem;
    margin-bottom: 0;
}

@media (min-width: 960px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.55rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3A4356;
    border-radius: 999px;
}

.nav-link:hover {
    color: #0E1524;
    ;
    background: rgba(26, 23, 20, 0.04);
}

.nav-link.active {
    color: #0E1524;
    ;
    background: rgba(26, 23, 20, 0.06);
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0E1524;
    color: #F2F5FB;
}

.nav-toggle span {
    position: relative;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    display: block;
    transition: transform var(--dur-med) var(--ease-spring),
        opacity var(--dur-fast) var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    transition: transform var(--dur-med) var(--ease-spring);
}

.nav-toggle span::before {
    top: -5px;
}

.nav-toggle span::after {
    top: 5px;
}

.navbar[data-open="true"] .nav-toggle span {
    background: transparent;
}

.navbar[data-open="true"] .nav-toggle span::before {
    transform: translateY(5px) rotate(45deg);
}

.navbar[data-open="true"] .nav-toggle span::after {
    transform: translateY(-5px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(244, 246, 250, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem clamp(1.25rem, 4vw, 3rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease-out);
}

.nav-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.nav-overlay-list {
    display: grid;
    gap: 0.5rem;
}

.nav-overlay-link {
    font-size: clamp(2rem, 9vw, 3.5rem);
    color: #0E1524;
    letter-spacing: -0.03em;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms var(--ease-out),
        transform 500ms var(--ease-spring);
}

.nav-overlay[data-open="true"] .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(1) {
    transition-delay: 60ms;
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(2) {
    transition-delay: 120ms;
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(3) {
    transition-delay: 180ms;
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(4) {
    transition-delay: 240ms;
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(5) {
    transition-delay: 300ms;
}

.nav-overlay[data-open="true"] .nav-overlay-link:nth-child(6) {
    transition-delay: 360ms;
}

.nav-overlay-footer {
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: #7B8497;
    border-top: 1px solid #DCE3EE;
    padding-top: 1.25rem;
}

@media (min-width: 960px) {
    .nav-overlay {
        display: none;
    }
}

/* Hero */
#hero {
    position: relative;
    min-height: 92dvh;
    padding-top: clamp(6rem, 20vh, 10rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: radial-gradient(1200px 800px at 88% 110%, rgba(31, 91, 214, 0.22), transparent 60%),
        radial-gradient(900px 600px at 10% -10%, rgba(74, 106, 142, 0.18), transparent 55%),
        linear-gradient(180deg, #F4F6FA 0%, #E9EEF6 100%)
}

#hero h1 {
    font-size: clamp(3.5rem, 9vw + 1rem, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

#small-hero {
    padding-block: 9rem .1rem;
    background:
        radial-gradient(900px 500px at 92% -10%, rgba(184, 92, 60, 0.16), transparent 55%),
        radial-gradient(800px 400px at 0% 0%, rgba(107, 122, 90, 0.12), transparent 55%),
        var(--color-bg);
}

#small-hero h1 {
    margin-top: .875rem;
    font-size: clamp(2.75rem, 6vw + 1rem, 5.75rem);
}

.small-hero-kicker {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bs-dark);
}

/* Buttons */
.btn-lg {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.btn-lg .btn-icon {
    width: 30px;
    height: 30px;
}

.btn-light .btn-icon {
    background: #E9EEF6;
}

/* Stat shell */
.stat-shell {
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(220, 227, 238, 0.9);
    border-radius: 36px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(14, 21, 36, 0.05), 0 20px 44px -18px rgba(14, 21, 36, 0.22);
    backdrop-filter: blur(10px);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: calc(36px - 8px);
    overflow: hidden;
    background: #E9EEF6;
}

.stat {
    padding: 1.25rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 112px;
}

.stat-num {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: #0E1524;
    letter-spacing: -0.04em;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}

.stat-num span {
    font-size: 0.55em;
    color: var(--bs-primary);
    font-style: italic;
}

.stat-label {
    font-size: 0.75rem;
    color: #7B8497;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-top: auto;
}

/* Marquee */
.marquee {
    overflow: hidden;
    border-block: 1px solid #DCE3EE;
    background: #E9EEF6;
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    padding-block: 1.25rem;
    width: max-content;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-style: italic;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    color: #0E1524;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    white-space: nowrap;
}

.marquee-item::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-primary);
}


@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* Section */
.section.section-warm {
    background: #E9EEF6;
}

.section:last-of-type {
    margin-bottom: 0 !important;
}

.section.py-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* Rule */
.rule {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0E1524;
}

/* Tile */
.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    min-height: 220px;
    background: #FFFFFF;
    border: 1px solid #DCE3EE;
    border-radius: 28px;
    box-shadow: nset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(14, 21, 36, 0.04), 0 8px 24px -12px rgba(14, 21, 36, 0.14);
    overflow: hidden;
    isolation: isolate;
    height: 100%;
    color: #3A4356;
}

.tile-gradient {
    background: radial-gradient(520px 320px at 110% 110%, rgba(31, 91, 214, 0.22), transparent 60%), linear-gradient(180deg, #F4F7FD 0%, #FFFFFF 100%);
    border-color: rgba(31, 91, 214, 0.22);
}

.tile-gradient-2 {
    background: radial-gradient(420px 280px at -10% 110%, rgba(74, 106, 142, 0.22), transparent 60%), #F7FAFE;
    border-color: rgba(74, 106, 142, 0.24);
}

.tile-dark {
    background: #0E1524;
    border-color: rgba(255, 255, 255, 0.08);
}

.tile h2,
.tile h3 {
    font-weight: 500;
}

.tile p {
    margin-top: 1rem;
}

.tile h3 {
    margin-top: .5rem;
}

.tile-dark h2,
.tile-dark .tile-cta {
    color: #ffffff;
}

.tile-dark .tile-kicker {
    color: rgba(242, 245, 251, 0.6);
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.tile:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(14, 21, 36, 0.05), 0 20px 44px -18px rgba(14, 21, 36, 0.22);
}

.tile-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.875rem;
    margin-bottom: .5rem;
}

.tile-kicker {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7B8497;
}

.tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #0E1524;
    transition: gap var(--dur-med) var(--ease-spring);
}

.tile:hover .tile-cta {
    gap: 0.75rem;
}

/* News */
.news-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #DCE3EE;
}

.news-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: baseline;
    padding: 2rem 0;
    border-bottom: 1px solid #DCE3EE;
}

.news-item:hover {
    padding-inline-start: 0.75rem;
}

.news-item-date {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #7B8497;
    font-variant-numeric: tabular-nums;
    min-width: 8ch;
}

.news-item-title {
    font-size: clamp(1.5rem, 1.8vw + 1rem, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #0E1524;
    line-height: 1.1;
}

.news-item-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(31, 91, 214, 0.10);
    color: #1543A0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--dur-med) var(--ease-spring),
        background var(--dur-med) var(--ease-out),
        color var(--dur-med) var(--ease-out);
}

.news-item:hover .news-item-arrow {
    transform: translate(2px, -1px) rotate(-10deg);
    background: #0E1524;
    color: #F2F5FB;
}

@media (max-width: 720px) {
    .news-item {
        grid-template-columns: 1fr auto;
    }

    .news-item-date {
        grid-column: 1 / -1;
    }
}

/* Box */
.box {
    padding: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-inset-hi), var(--shadow-soft)";

}

.box .kicker {
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-muted);
}

.box h4 {
    font-size: 1.375rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.box-large .kicker {
    margin-bottom: .75rem;
}

.box-dark {
    background-color: #0E1524;
}

.box-dark .kicker {
    color: #AEB6C6 !important;
}

.box-dark h2,
.box-dark h3,
.box-dark a {
    color: white;
    font-weight: 400 !important;
    margin-bottom: 1rem;
}

/* Location */
.location {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    padding: 3.5rem;
    min-height: 420px;
    background: radial-gradient(650px 400px at 92% 8%, rgba(31, 91, 214, 0.35), transparent 60%), radial-gradient(520px 340px at 8% 110%, rgba(74, 106, 142, 0.25), transparent 60%), linear-gradient(180deg, #0E1524 0%, #141C30 100%);
    color: #BFC7D6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .location {
        grid-template-columns: 1.1fr 1fr;
        align-items: end;
    }
}

.location .kicker {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #7B8497;
    margin-bottom: 1rem;
}

.location h2 {
    color: white;
}

/* Plans */
.plan-list {
    border-top: 1px solid #DCE3EE;
    border-bottom: 1px solid #DCE3EE;
    display: grid;
}

.plan-list-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #DCE3EE;
    transition: padding var(--dur-med) var(--ease-out);
}

.plan-list-row:last-child {
    border-bottom: 0;
}

.plan-list-row:hover {
    padding-left: 0.5rem;
}

.plan-list-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.plan-list-name {
    font-size: clamp(1.5rem, 1.4vw + 1rem, 2.125rem);
    letter-spacing: -0.03em;
    color: #0E1524;
    font-weight: 600;
    line-height: 1.05;
}

.plan-list-label em,
.plan-list-label i {
    font-weight: 500;
    color: var(--bs-dark);
}

.plan-list-label h3,
.plan-list-label p {
    margin-bottom: 0;
}

.plan-list-label p {
    font-size: .875rem;
    color: #7B8497;
    max-width: 52ch;
}

.plan-list-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.plan-list-price>span {
    font-size: clamp(2rem, 2.4vw + 1rem, 3rem);
    letter-spacing: -0.035em;
    color: #0E1524;
    font-weight: 700;
    line-height: 1;
}

.plan-list-price em {
    font-style: normal;
    font-size: .875rem;
    color: #7B8497;
    letter-spacing: 0;
}

/* Pricelist */
.pricelist {
    display: grid;
    grid-template-columns: 1fr;
}

.pricelist-group {
    border-top: 1px solid #DCE3EE;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 860px) {
    .pricelist-group {
        grid-template-columns: 22ch 1fr;
        gap: 3.5rem;
        align-items: start;
    }
}

.pricelist-head {
    position: sticky;
    top: 2rem;
}

.pricelist-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #1F5BD6;
}

.pricelist-title {
    font-size: clamp(1.5rem, 1.8vw + 1rem, 2rem);
    font-weight: 700;
    color: #0E1524;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-top: 0.6rem;
}

.pricelist-note {
    font-size: 0.875rem;
    color: #7B8497;
    margin-top: 0.6rem;
    max-width: 28ch;
}

.pricelist-rows {
    display: flex;
    flex-direction: column;
}

.pricerow {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 1.0625rem;
    padding: 1.0625rem 0;
    border-bottom: 1px dashed #E9EEF6;
    transition: background var(--dur-fast) var(--ease-out);
}

.pricerow:last-child {
    border-bottom: 0;
}

.pricerow:hover {
    background: linear-gradient(90deg, rgba(31, 91, 214, 0.10), transparent 60%);
}

.pricerow-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.pricerow-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0E1524;
    letter-spacing: -0.015em;
}

.pricerow-meta {
    font-size: 0.75rem;
    color: #7B8497;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.pricerow-price {
    font-variant-numeric: tabular-nums;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0E1524;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.pricerow-price em {
    font-style: italic;
    font-weight: 500;
    color: #1543A0;
    font-size: 0.78em;
    margin-left: 0.35em;
    letter-spacing: 0;
}

.pricelist-foot {
    border-top: 1px solid #DCE3EE;
    padding-top: 2rem;
    margin-top: 1.0625rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.0625rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #7B8497;
}

/* Schedule */
.schedule {
    display: grid;
    gap: 2rem;
}

.schedule-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    padding: 0.375rem;
    background: #FFFFFF;
    border: 1px solid #DCE3EE;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(14, 21, 36, 0.04),
        0 8px 24px -12px rgba(14, 21, 36, 0.14);
    width: max-content;
    max-width: 100%;
}

@media (max-width: 720px) {
    .schedule-tabs {
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Edge fade hint that there's more to scroll */
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
    }

    .schedule-tabs::-webkit-scrollbar {
        display: none;
    }

    .schedule-tab {
        flex: 0 0 auto;
        scroll-snap-align: center;
        padding: 0.6rem 0.95rem;
    }
}

.schedule-tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #7B8497;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--dur-fast) var(--ease-out),
        background var(--dur-med) var(--ease-spring),
        transform var(--dur-fast) var(--ease-out);
}

.schedule-tab:hover {
    color: var(--color-ink);
}

.schedule-tab:active {
    transform: translateY(1px);
}

.schedule-tab[aria-selected="true"] {
    background: var(--color-ink);
    color: #F2F5FB;
    box-shadow: 0 1px 2px rgba(14, 21, 36, 0.2);
}

.schedule-tab-count {
    font-size: 0.6875rem;
    font-variant-numeric: tabular-nums;
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-pill);
    background: var(--color-primary-soft);
    color: var(--color-primary-deep);
}

.schedule-tab[aria-selected="true"] .schedule-tab-count {
    background: rgba(255, 255, 255, 0.12);
    color: #F2F5FB;
}

.schedule-panel {
    display: none;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-inset-hi), var(--shadow-soft);
    overflow: hidden;
    animation: schedulePanelIn 420ms var(--ease-spring);
}

.schedule-panel[data-active="true"] {
    display: block;
}

@keyframes schedulePanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-day-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-line);
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, transparent 100%);
}

.schedule-day-name {
    font-size: 1.375rem;
    letter-spacing: -0.025em;
    color: var(--color-ink);
    font-weight: 600;
}

.schedule-day-meta {
    font-size: var(--size-xs);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
    font-weight: 600;
}

.schedule-empty {
    padding: var(--space-lg);
    text-align: center;
    color: var(--color-muted);
    font-size: var(--size-sm);
}

.schedule-row {
    display: grid;
    grid-template-columns: 88px 1fr auto auto;
    align-items: center;
    padding: 0.9rem var(--space-lg);
    border-bottom: 1px solid var(--color-line-soft);
    transition: background var(--dur-fast) var(--ease-out);
}

.schedule-row:last-child {
    border-bottom: 0;
}

.schedule-row:hover {
    background: var(--color-bg-warm);
}

.schedule-time {
    font-weight: 700;
    color: var(--color-ink);
    font-variant-numeric: tabular-nums;
    font-size: var(--size-sm);
    letter-spacing: -0.01em;
}

.schedule-group {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.schedule-group-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.schedule-group-meta {
    font-size: var(--size-xs);
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.schedule-level {
    font-size: var(--size-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text);
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-pill);
    background: var(--color-bg-warm);
    border: 1px solid var(--color-line);
    white-space: nowrap;
}

.schedule-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: var(--size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
    white-space: nowrap;
}

.schedule-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

.schedule-status[data-state="open"] {
    color: #2F7A4F;
}

.schedule-status[data-state="few"] {
    color: #B87A1F;
}

.schedule-status[data-state="full"] {
    color: var(--color-muted);
}

@media (max-width: 720px) {
    .schedule-row {
        grid-template-columns: 72px 1fr;
        grid-template-areas:
            "time group"
            "time meta";
        row-gap: 0.35rem;
        padding: 0.85rem var(--space-md);
    }

    .schedule-time {
        grid-area: time;
        align-self: start;
    }

    .schedule-group {
        grid-area: group;
    }

    .schedule-level {
        grid-area: meta;
        justify-self: start;
    }

    .schedule-status {
        grid-area: meta;
        justify-self: end;
    }
}

/* Accordion */
.accordion-button {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
}

.accordion-button:hover {
    color: var(--bs-secondary);
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-body {
    padding-top: 0;
}

/* Footer */
.footer {
    background: #0E1524;
    ;
    color: #AEB6C6;
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 800px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    color: #F2F5FB;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 18ch;
    font-weight: 400;
}

.footer-brand em {
    font-style: italic;
    color: var(--bs-primary);
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #F2F5FB;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.footer-list {
    display: grid;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-list a {
    color: #AEB6C6;
    transition: color var(--dur-fast) var(--ease-out);
}

.footer-list a:hover {
    color: #F2F5FB;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.875rem;
    margin-top: 3.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: #7B8497;
    letter-spacing: 0.04em;
}

/* Extra */
.min-h-md {
    min-height: 250px;
    object-fit: cover;
}

/* Input */
.form-control,
.form-select {
    padding: .875rem 1rem;
    border: 1px solid #DCE3EE;
    border-radius: 18px;
}

.form-label {
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-muted);
}

/* ################################################## MEDIA QUERIES ################################################## */
/* Below small devices (standard values) */

/* Small devices (landscape phones, 576px and up) */
/* Bootstrap: -sm */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
/* Bootstrap: -md */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
/* Bootstrap: -lg */
@media (min-width: 992px) {
    .tile-head {
        margin-bottom: 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
/* Bootstrap: -xl */
@media (min-width: 1200px) {}

/* HD devices (extra large desktops, 1540px and up) */
@media (min-width: 1540px) {}

@media (min-width: 1800px) {}