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

/* ── Loader ─────────────────────────────────────── */

#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #D2DDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 24px;
    color: #1B4FC0;
    letter-spacing: 0.05em;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

:root {
    --color-bg: #0f1b2e;
    --color-bg-light: #1a2d4a;
    --color-path: #c8d4e6;
    --color-text: #e8edf4;
    --color-accent: #7ba0cc;
    --color-accent-light: #a3c0e0;
    --color-light: #4a6380;
    --color-cream: #162640;
    --color-type: #063E8D;
    --font-display: 'Fraunces', serif;
    --font-body: 'Epilogue', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: #D2DDE8;
    color: var(--color-type);
    min-height: 100vh;
    overflow-x: hidden;
}

body.password-locked {
    overflow: hidden;
}

/* ── Password Gate ────────────────────────────────── */

.password-gate {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #D2DDE8;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.password-gate.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-form {
    width: min(100%, 360px);
    text-align: center;
}

.password-title {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 800;
    color: #1B4FC0;
    margin-bottom: 1.25rem;
}

.password-label {
    display: block;
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    color: #1B4FC0;
    margin-bottom: 0.5rem;
    text-align: left;
}

.password-row {
    display: flex;
    gap: 0.5rem;
}

.password-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1.5px solid rgba(27, 79, 192, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    color: #1B4FC0;
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    padding: 0 0.75rem;
    outline: none;
}

.password-input:focus {
    border-color: #1B4FC0;
}

.password-submit {
    height: 44px;
    border: 1.5px solid #1B4FC0;
    border-radius: 6px;
    background: #1B4FC0;
    color: #FFFFFF;
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 0 1rem;
    cursor: pointer;
}

.password-error {
    min-height: 1.4em;
    margin-top: 0.75rem;
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    color: #1B4FC0;
    opacity: 0.7;
}

.schedule-day-title-desktop {
    display: inline;
}
.schedule-day-title-mobile {
    display: none;
}

/* ── Sticky Nav ───────────────────────────────────── */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-weight: 900;
    color: #1B4FC0;
    margin-right: 44px;
    text-decoration: none;
}

.nav-link {
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: #1B4FC0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-link:hover {
    color: #318BC3;
}

.nav-logo:hover {
    color: #318BC3;
}

.nav-link + .nav-link {
    margin-left: 32px;
}

.nav-right {
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: #7B93C7;
}

/* ── Mountain ─────────────────────────────────────── */

.mountain-section {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: calc(75vh - 4rem);
    margin-bottom: 0;
    line-height: 0;
    pointer-events: none;
}

.mountain-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

/* ── Hero / Countdown ─────────────────────────────── */

.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 75vh;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: fadeInDown 1.2s ease 0.3s forwards;
    pointer-events: none;
}

.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-tagline {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    color: #1B4FC0;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
}

.tagline-rotate {
    transition: opacity 0.4s ease;
}

.countdown {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.countdown-unit {
    display: flex;
    align-items: baseline;
}

.countdown-number {
    font-family: 'Fraunces', serif;
    font-size: 92px;
    font-weight: 700;
    color: #1B4FC0;
    line-height: 1;
}

.countdown-label {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 300;
    color: #7B93C7;
    line-height: 1;
}

.countdown-date {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    color: #1B4FC0;
    letter-spacing: 0.02em;
}

/* ── Below Mountain Gradient ───────────────────────── */

.below-mountain {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, #F3F5F7, #6B7D97);
}

/* ── Quebec City Image ────────────────────────────── */

.quebec-section {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -76px;
}

.water-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
}

.water-img {
    width: 100%;
    height: auto;
    display: block;
}

.water-lines {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    display: flex;
    pointer-events: none;
    animation: waterMarquee 30s linear infinite;
}

.water-lines img {
    width: 50%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

@keyframes waterMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* 40s cycle — seamless loop preserving original timings.
   double  t=0–30s    fully within cycle
   penguin t=2–40s    fully within cycle
   single  t=15–45s   wraps: 25/30 across at t=40, resumes next cycle, exits at cycle t=5
   snowman t=25–50s   wraps: 15/25 across at t=40, resumes next cycle, exits at cycle t=10
   canoe   t=30–65s   wraps: 10/35 across at t=40, resumes next cycle, exits at cycle t=25 */

@keyframes iceDouble {
    0%     { transform: translateX(-280px); }
    75%    { transform: translateX(calc(100vw + 280px)); }
    100%   { transform: translateX(calc(100vw + 280px)); }
}

@keyframes icePenguin {
    0%, 5%  { transform: translateX(-280px); }
    100%    { transform: translateX(calc(100vw + 280px)); }
}

/* 0% = 100% = position at t=40 (25/30 through traversal) so loop continues seamlessly.
   step-end on exit keyframe makes the off-screen wrap instant (no flash across screen). */
@keyframes iceSingle {
    0%      { transform: translateX(calc(83.33vw + 186.67px)); }
    12.5%   { transform: translateX(calc(100vw + 280px)); animation-timing-function: step-end; }
    37.5%   { transform: translateX(-280px); }
    100%    { transform: translateX(calc(83.33vw + 186.67px)); }
}

/* 0% = 100% = position at t=40 (15/25 through traversal) so loop continues seamlessly. */
@keyframes iceSnowman {
    0%      { transform: translateX(calc(60vw + 56px)); }
    25%     { transform: translateX(calc(100vw + 280px)); animation-timing-function: step-end; }
    62.5%   { transform: translateX(-280px); }
    100%    { transform: translateX(calc(60vw + 56px)); }
}

/* 0% = 100% = position at t=40 (10/35 through traversal) so loop continues seamlessly. */
@keyframes iceCanoe {
    0%      { transform: translateX(calc(28.57vw - 120px)); }
    62.5%   { transform: translateX(calc(100vw + 280px)); animation-timing-function: step-end; }
    75%     { transform: translateX(-280px); }
    100%    { transform: translateX(calc(28.57vw - 120px)); }
}

.ice-penguin {
    position: absolute;
    top: 35%;
    left: 0;
    width: clamp(70px, 8vw, 140px);
    height: auto;
    pointer-events: none;
    z-index: 3;
    animation: icePenguin 40s linear infinite;
}

.ice-snowman {
    position: absolute;
    top: 40%;
    left: 0;
    width: clamp(90px, 10vw, 180px);
    height: auto;
    pointer-events: none;
    z-index: 5;
    animation: iceSnowman 40s linear infinite;
}

.ice-double {
    position: absolute;
    left: 0;
    height: auto;
    pointer-events: none;
}

.ice-double-1 {
    top: 15%;
    width: clamp(60px, 6.5vw, 120px);
    z-index: 2;
    animation: iceDouble 40s linear infinite;
}

.ice-single {
    position: absolute;
    top: 30%;
    left: 0;
    height: auto;
    pointer-events: none;
    z-index: 4;
    width: clamp(80px, 8.5vw, 160px);
    animation: iceSingle 40s linear infinite;
}

.ice-canoe {
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(140px, 14vw, 260px);
    height: auto;
    pointer-events: none;
    z-index: 6;
    animation: iceCanoe 40s linear infinite;
}

.quebec-img {
    width: 100%;
    height: auto;
    display: block;
}

.quebec-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quebec-overlay.active {
    opacity: 1;
}

/* ── Map Container ────────────────────────────────── */

.map-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 0;
}

.map-container {
    position: relative;
    width: 100%;
}

.map-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

/* ── SVG Path ─────────────────────────────────────── */

.map-path {
    stroke: url(#path-gradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Milestone Markers ────────────────────────────── */

.milestone-group {
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.7s ease, filter 0.3s ease;
}

.milestone-group.visible {
    opacity: 1;
}

.milestone-circle {
    fill: #ffffff;
    stroke: none;
    transition: fill 0.3s ease, transform 0.25s ease, filter 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(27, 79, 192, 0.25));
    transform-box: fill-box;
    transform-origin: center;
}

.milestone-ring {
    fill: none;
    stroke: none;
    opacity: 0;
}

.milestone-group {
    cursor: pointer;
}

.milestone-group:hover .milestone-circle,
.milestone-group.hovered .milestone-circle {
    fill: #E8F1FF;
    filter: drop-shadow(0 6px 22px rgba(27, 79, 192, 0.65));
    transform: scale(1.18);
}

.milestone-emoji {
    pointer-events: none;
    transition: transform 0.25s ease;
    transform-box: fill-box;
    transform-origin: center;
}

.milestone-group:hover .milestone-emoji,
.milestone-group.hovered .milestone-emoji {
    transform: scale(1.12);
}

.milestones-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.milestone-label-html {
    position: absolute;
    line-height: 1.2;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.milestone-label-html.visible {
    opacity: 1;
}

.milestone-label-html.right-side {
    transform: translate(44px, -50%);
    text-align: left;
}

.milestone-label-html.left-side {
    transform: translate(calc(-100% - 44px), -50%);
    text-align: right;
}

.milestone-year-html {
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: #1B4FC0;
    opacity: 0.5;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
}

.milestone-title-html {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #1B4FC0;
    margin-top: 6px;
    transition: color 0.3s ease;
}

.milestone-chevron-html {
    opacity: 0.5;
    margin-left: 4px;
    transition: opacity 0.3s ease;
}

.milestone-label-html:hover .milestone-title-html,
.milestone-label-html.hovered .milestone-title-html,
.milestone-label-html:hover .milestone-year-html,
.milestone-label-html.hovered .milestone-year-html {
    color: #318BC3;
}

.milestone-label-html:hover .milestone-year-html,
.milestone-label-html.hovered .milestone-year-html {
    opacity: 0.8;
}

.milestone-label-html:hover .milestone-chevron-html,
.milestone-label-html.hovered .milestone-chevron-html {
    opacity: 1;
}

/* ── Detail Card Overlay ──────────────────────────── */

.detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 10, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.detail-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.detail-card {
    position: relative;
    background: var(--color-cream);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detail-overlay.active .detail-card {
    transform: translateY(0) scale(1);
}

.detail-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 1;
    font-family: var(--font-body);
}

.detail-close:hover {
    opacity: 1;
    transform: scale(1.15);
}

.detail-number {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    background: rgba(123, 160, 204, 0.15);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.detail-title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.detail-carousel {
    position: relative;
    margin-bottom: 0.75rem;
}

.detail-carousel-arrow {
    position: absolute;
    top: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 0 4px;
    transition: background 0.2s;
}

.detail-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.detail-carousel-prev { left: 0; }
.detail-carousel-next { right: 0; }

.detail-carousel.has-multiple ~ .detail-caption-row .detail-carousel-arrow {
    display: flex;
}

.detail-caption-row {
    position: relative;
    width: 100%;
}

.detail-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    border: 2px dashed var(--color-bg-light);
}

.detail-image:has(img) {
    border: none;
}

.detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

.detail-caption {
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.7;
    text-align: center;
    margin: 0 0 0.5rem;
    min-height: 1.2em;
    line-height: 1.4;
    padding: 0 44px;
}

.detail-carousel-counter {
    display: none;
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.6;
    text-align: center;
    margin: 0.5rem 0 0.25rem;
    letter-spacing: 0.08em;
}

.detail-carousel-counter.has-multiple {
    display: block;
}

.detail-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    gap: 0.25rem;
}

.placeholder-icon {
    font-size: 2.5rem;
}

.detail-image-placeholder p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.detail-description {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.schedule-card {
    max-width: 600px;
}

.timeline-card {
    max-width: 960px;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
}

.timeline-card .detail-card-text {
    flex: 1.4 1 0;
    min-width: 0;
}

.timeline-card .detail-card-media {
    flex: 1 1 0;
    min-width: 0;
}

.timeline-card .detail-description {
    margin-bottom: 0;
}

.timeline-card .detail-image {
    aspect-ratio: 3 / 4;
}

.schedule-venue {
    font-family: 'Fira Mono', monospace;
    font-size: 0.95rem;
    color: var(--color-text);
    margin: -0.5rem 0 0.25rem;
    line-height: 1.4;
}

.schedule-address {
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.6;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.schedule-learn-more {
    display: inline-block;
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent-light);
    text-decoration: none;
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.schedule-learn-more:hover {
    color: #318BC3;
}

.schedule-map-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    cursor: pointer;
    margin-top: 0.5rem;
}

.schedule-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}

.schedule-map-cover {
    position: absolute;
    inset: 0;
    transition: background 0.2s;
}

.schedule-map-link:hover .schedule-map-cover {
    background: rgba(255, 255, 255, 0.06);
}

/* ── Schedule ─────────────────────────────────────── */

.schedule {
    position: relative;
    z-index: 1;
    padding: 0 80px 1rem;
    overflow: hidden;
}

.schedule-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #1B4FC0;
    text-align: center;
    margin-bottom: 0;
}

.lift-day {
    margin: -1rem -80px 0;
    width: calc(100% + 160px);
}

.lift-day + .lift-day {
    margin-top: calc(-1rem - 40px);
}

.lift-scene-wrap {
    position: relative;
}

.lift-scene {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.lift-day-title {
    position: absolute;
    transform: translate(-50%, -50%);
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1B4FC0;
    margin: 0;
    pointer-events: none;
    white-space: nowrap;
}

.event-label {
    position: absolute;
    transform: translate(-50%, 0);
    text-align: center;
    cursor: pointer;
    line-height: 1.25;
    white-space: nowrap;
}

.event-time {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.schedule-chevron {
    margin-left: 0.15em;
}

.event-name {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #1B4FC0;
    margin-top: 8px;
    line-height: 1.5;
}

.event-label:hover .event-time,
.event-label:hover .event-name,
.event-label.is-hovered .event-time,
.event-label.is-hovered .event-name {
    color: #318BC3;
}

.event-gondola[data-event] {
    cursor: pointer;
}

.event-gondola:hover text,
.event-gondola.is-hovered text {
    fill: #318BC3;
}

@keyframes gondolaSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-4deg); }
    75% { transform: rotate(4deg); }
}

.gondola-shaking image {
    animation: gondolaSwing 1s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center top;
}

.schedule-footer-anchor {
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

.schedule-mobile {
    display: none;
}

.mobile-lift-scene {
    display: none;
}

.schedule-day {
    margin-bottom: 2.5rem;
}

.schedule-day-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1B4FC0;
    text-align: center;
    margin-bottom: 1rem;
}

.schedule-day-subtitle {
    font-family: 'Fira Mono', monospace;
    font-size: 13px;
    color: #1B4FC0;
    text-align: center;
    max-width: 320px;
    margin: -0.5rem auto 1.25rem;
    line-height: 1.5;
}

/* Optional Activity lift section (standalone block header above the gondolas) */
.lift-day + .lift-day--activities {
    margin-top: -2.5rem;
}

.lift-day-header {
    text-align: center;
    margin: 0 0 -0.5rem;
}

.lift-day-heading {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1B4FC0;
    margin: 0;
}

.lift-day-subtitle {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    max-width: 600px;
    margin: 0.6rem auto 0;
    line-height: 1.5;
}

.lift-day--activities .lift-scene-wrap {
    margin-top: clamp(-3rem, calc(112.5px - 12.5vw), 0px);
}

.schedule-events {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-event-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.schedule-event-item:hover,
.schedule-event-item:active {
    background: rgba(255, 255, 255, 0.16);
}

.schedule-event-time {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    min-width: 70px;
}

.schedule-event-title {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #1B4FC0;
    line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────── */

.faq {
    position: relative;
    z-index: 2;
    margin-top: -150px;
    padding: 6rem 2rem 6rem;
}

.faq-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #1B4FC0;
    text-align: center;
    margin-bottom: 0;
}

.faq-sections {
    max-width: 1300px;
    margin: 0 auto;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(140px, 240px) 1fr;
    gap: 9rem;
    align-items: start;
    padding: 4rem 0;
    margin-bottom: 0;
}

.faq-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-section-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4FC0;
    text-align: right;
    margin-bottom: 0;
}

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

.faq-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
}

.faq-pair {
    display: block;
    margin-bottom: 0;
}

.faq-pair .faq-section {
    margin-bottom: 0;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-question {
    font-family: 'Fira Mono', monospace;
    font-size: 17px;
    font-weight: 700;
    color: #1B4FC0;
    line-height: 1.4;
}

.faq-answer {
    font-family: 'Fira Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 1;
    line-height: 1.6;
}

/* ── Accommodations ─────────────────────────────── */

.accommodations {
    position: relative;
    z-index: 2;
    margin-top: -30px;
    padding: 2rem 2rem 6rem;
}

.accommodations-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #1B4FC0;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    top: -16px;
}

.accommodations .faq-answer {
    font-size: 16px;
}

.book-btn {
    position: relative;
    display: inline-block;
    align-self: flex-start;
    text-align: center;
    margin-top: 0.75rem;
    padding: 8px 24px;
    font-family: 'Fira Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #1B4FC0;
    border: 1.5px solid #1B4FC0;
    border-radius: 28px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.book-btn:hover {
    background: #778DBC;
    border-color: #778DBC;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .accommodations {
        padding: 4rem 1rem 4rem;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* ── Bear composition ───────────────────────────── */

.bear-composition {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1090 / 642;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.bear-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bear-layer:nth-child(1) { z-index: 1; }
.bear-layer:nth-child(2) { z-index: 2; transition: transform 0.3s ease; }
.bear-layer:nth-child(3) { z-index: 3; }

.bear-layer:nth-child(2).bearfish--up { transform: translateY(-40px); }

/* ── RSVP ───────────────────────────────────────── */

.rsvp {
    padding: 18rem 2rem calc(6rem + 200px);
}

.rsvp-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #1B4FC0;
    text-align: center;
    margin-bottom: 1rem;
}

.rsvp-subtitle {
    font-family: 'Fira Mono', monospace;
    font-size: 1.0625rem;
    color: #fff;
    text-align: center;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.rsvp-btn-wrapper {
    display: flex;
    justify-content: center;
}

.rsvp-btn {
    position: relative;
    display: inline-block;
    padding: 14px 48px;
    font-family: 'Fira Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: #1B4FC0;
    border: 1.5px solid #1B4FC0;
    border-radius: 32px;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.rsvp-btn::before,
.book-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.65) 0%, transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,0.55) 0%, transparent 20%),
        radial-gradient(circle at 42% 78%, rgba(255,255,255,0.55) 0%, transparent 26%),
        radial-gradient(circle at 88% 70%, rgba(255,255,255,0.6) 0%, transparent 24%),
        radial-gradient(circle at 12% 72%, rgba(255,255,255,0.55) 0%, transparent 24%),
        radial-gradient(circle at 55% 38%, rgba(255,255,255,0.5) 0%, transparent 18%),
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 16%);
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center;
    transition: opacity 0.5s ease-out, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

.btn-label {
    position: relative;
    z-index: 1;
}

.rsvp-btn:hover {
    background: #778DBC;
    border-color: #778DBC;
    transform: translateY(-1px);
}

.rsvp-btn:hover::before,
.book-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Ice-crack pressed state */
.rsvp-btn::after,
.book-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cg fill='none' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M62 34 L50 22 L44 10 L41 2'/%3E%3Cpath d='M44 10 L34 8'/%3E%3Cpath d='M62 34 L59 18 L62 6'/%3E%3Cpath d='M62 34 L82 24 L97 13 L109 5'/%3E%3Cpath d='M97 13 L106 7'/%3E%3Cpath d='M62 34 L90 32 L122 35 L152 31 L180 34 L196 32'/%3E%3Cpath d='M122 35 L131 27'/%3E%3Cpath d='M152 31 L161 38'/%3E%3Cpath d='M62 34 L84 44 L101 52 L114 59'/%3E%3Cpath d='M62 34 L60 48 L63 58'/%3E%3Cpath d='M60 48 L52 54'/%3E%3Cpath d='M62 34 L49 45 L39 53 L33 59'/%3E%3Cpath d='M62 34 L44 33 L26 35 L9 32'/%3E%3Cpath d='M26 35 L20 41'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: 31% 57%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.rsvp-btn:active::after,
.rsvp-btn.cracking::after,
.book-btn:active::after,
.book-btn.cracking::after {
    opacity: 0.5;
    transform: scale(1);
    transition: opacity 0.05s ease-out, transform 0.07s cubic-bezier(0.2, 1.5, 0.4, 1);
}

.rsvp-btn:active,
.book-btn:active {
    transform: translateY(0) scale(0.97);
}

.site-footer {
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: #FFFFFF;
    opacity: 0.5;
    text-align: center;
    padding-bottom: 24px;
}

/* ── Paper Noise Texture ──────────────────────────── */

.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.6;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.45' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.024 0 0 0 0 0.243 0 0 0 0 0.553 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ── Snow ─────────────────────────────────────────── */

.snow {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}

.snow-layer {
    position: absolute;
    left: 0;
    right: 0;
    top: -100vh;
    height: 200vh;
    background-repeat: repeat;
    will-change: transform;
}

.snow-layer-1 {
    background-image:
        radial-gradient(2.5px 2.5px at 30px 40px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 90px 180px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 160px 70px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(2px 2px at 230px 260px, rgba(255,255,255,0.65) 50%, transparent 100%),
        radial-gradient(3px 3px at 310px 130px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 390px 300px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 460px 50px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(2px 2px at 540px 220px, rgba(255,255,255,0.65) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 610px 160px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 680px 340px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(3px 3px at 750px 90px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(2px 2px at 820px 280px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 900px 150px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 960px 370px, rgba(255,255,255,0.65) 50%, transparent 100%);
    background-size: 1000px 500px;
    animation: snowfall-1 10s linear infinite;
}

.snow-layer-2 {
    background-image:
        radial-gradient(2px 2px at 45px 100px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 120px 30px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(2px 2px at 200px 200px, rgba(255,255,255,0.65) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 275px 110px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2px 2px at 355px 280px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(3px 3px at 430px 60px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2px 2px at 510px 310px, rgba(255,255,255,0.65) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 580px 170px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 660px 80px, rgba(255,255,255,0.7) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 730px 250px, rgba(255,255,255,0.75) 50%, transparent 100%),
        radial-gradient(2px 2px at 810px 350px, rgba(255,255,255,0.65) 50%, transparent 100%),
        radial-gradient(2.5px 2.5px at 880px 140px, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 950px 230px, rgba(255,255,255,0.7) 50%, transparent 100%);
    background-size: 1000px 450px;
    animation: snowfall-2 7s linear infinite;
}

.snow-layer-3 {
    background-image:
        radial-gradient(3.5px 3.5px at 60px 80px, rgba(255,255,255,0.45) 50%, transparent 100%),
        radial-gradient(4px 4px at 170px 240px, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(3px 3px at 280px 50px, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(3.5px 3.5px at 380px 190px, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(4px 4px at 500px 320px, rgba(255,255,255,0.45) 50%, transparent 100%),
        radial-gradient(3px 3px at 600px 110px, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(3.5px 3.5px at 710px 270px, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(4px 4px at 820px 60px, rgba(255,255,255,0.45) 50%, transparent 100%),
        radial-gradient(3px 3px at 920px 200px, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 1000px 700px;
    animation: snowfall-3 16s linear infinite;
    opacity: 0.7;
}

@keyframes snowfall-1 {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 500px, 0); }
}

@keyframes snowfall-2 {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 450px, 0); }
}

@keyframes snowfall-3 {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 700px, 0); }
}

/* ── Cursor Snowflake Trail ───────────────────────── */

.cursor-snowflake {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    font-size: 14px;
    opacity: 1;
    animation: cursorSnowDrift 2s ease-out forwards;
}

@keyframes cursorSnowDrift {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--drift-x), 40px) rotate(180deg) scale(0.4);
    }
}

/* ── Animations ───────────────────────────────────── */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 900px) {
    .site-nav {
        padding: 16px 16px 12px;
        justify-content: center;
    }

    .site-nav.nav-past-mountain {
        background-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .nav-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-logo {
        flex-basis: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .nav-link {
        padding: 6px 4px;
    }

    .nav-link + .nav-link {
        margin-left: 24px;
    }

    .nav-right {
        display: none;
    }

    .accommodations-grid {
        gap: 3rem;
    }

    .hero {
        min-height: 65vh;
        padding: 2rem 1rem;
    }

    .mountain-section {
        margin-top: calc(65vh - 4rem);
    }

    .countdown {
        gap: 8px;
    }

    .countdown-number {
        font-size: 46px;
    }

    .countdown-label {
        font-size: 22px;
    }

    .countdown-tagline,
    .countdown-date {
        font-size: 11px;
    }

    .map-wrapper {
        padding: 0 0.5rem 100px;
    }

    .map-path {
        stroke: #9CA7AF;
    }

    .milestone-circle {
        filter: drop-shadow(0 5px 10px rgba(27, 79, 192, 0.34))
                drop-shadow(0 1px 2px rgba(27, 79, 192, 0.22));
    }

    .milestone-group:hover .milestone-circle,
    .milestone-group.hovered .milestone-circle {
        filter: drop-shadow(0 7px 16px rgba(27, 79, 192, 0.5))
                drop-shadow(0 2px 4px rgba(27, 79, 192, 0.25));
    }

    .milestone-label {
        font-size: 22px;
    }

    .schedule-day-title-desktop {
        display: none;
    }
    .schedule-day-title-mobile {
        display: inline;
    }

    .quebec-section {
        overflow: hidden;
    }
    .quebec-img,
    .quebec-overlay {
        width: 160%;
        margin-left: -30%;
    }

    .quebec-overlay {
        animation: quebecHotelFade 18s ease-in-out infinite;
    }

    .quebec-overlay[data-hotel="fairmont"] {
        animation-delay: 0s;
    }

    .quebec-overlay[data-hotel="mons"] {
        animation-delay: 6s;
    }

    .quebec-overlay[data-hotel="other"] {
        animation-delay: 12s;
    }

    @keyframes quebecHotelFade {
        0%, 8% { opacity: 0; }
        20%, 38% { opacity: 1; }
        50%, 100% { opacity: 0; }
    }

    .detail-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 40px 1rem;
    }

    .detail-overlay .detail-card {
        margin: auto;
    }

    .detail-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px;
        max-width: 420px;
    }

    .schedule-card {
        max-width: 480px;
    }

    .timeline-card {
        max-width: 420px;
        flex-direction: column;
        gap: 0;
    }

    .timeline-card .detail-description {
        margin-bottom: 1rem;
    }

    .timeline-card .detail-image {
        aspect-ratio: 3 / 4;
    }

    .detail-title {
        font-size: 1.8rem;
    }

    .schedule {
        padding: 0 1rem 1rem;
        scroll-margin-top: 92px;
    }

    .lift-day {
        display: none;
    }

    .schedule-mobile {
        display: block;
        margin: 1.5rem auto 0;
        max-width: max-content;
    }

    .mobile-lift-scene {
        display: block;
        width: 100vw;
        height: auto;
        margin: 0 0 -0.35rem 50%;
        overflow: visible;
        pointer-events: none;
        transform: translateX(-50%);
    }

    .mobile-lift-scene image {
        animation: gondolaSwing 1.6s ease-in-out infinite;
        transform-box: fill-box;
        transform-origin: center top;
    }

    .mobile-lift-scene--activities {
        margin-top: 0.75rem;
    }

    .schedule-event-item {
        background: none;
    }

    .schedule-event-item:hover,
    .schedule-event-item:active {
        background: none;
    }

    .schedule-event-time {
        color: rgba(27, 79, 192, 0.5);
        font-size: 14px;
        text-align: right;
        min-width: 130px;
    }

    .schedule-event-title {
        font-size: 14px;
    }

    .schedule-events {
        gap: 0.25rem;
    }

    .schedule-day--activities .schedule-day-subtitle {
        color: rgba(27, 79, 192, 0.5);
    }

    .milestone-title-html {
        font-size: 14px;
        white-space: nowrap;
    }

    .site-footer {
        font-size: 11.6px;
    }

    .rsvp {
        padding-bottom: 124px;
    }

    .site-footer-sponsor {
        display: block;
        margin-top: 4px;
    }

    .quebec-section {
        margin-top: 3rem;
    }

    .faq {
        margin-top: -20px;
        scroll-margin-top: 92px;
    }

    .faq {
        padding: 4rem 1rem 4rem;
    }

    .faq-section {
        display: block;
        padding: 0;
        margin-bottom: 7rem;
    }

    .faq-sections > .faq-section:first-child {
        padding-top: 3rem;
    }

    .faq-section:not(:last-child) {
        border-bottom: none;
    }

    .faq-section-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .faq-pair {
        margin-bottom: 0;
    }

    .faq-pair .faq-section {
        margin-bottom: 7rem;
    }
}
