/* ══════════════════════════════════════════
   SVATBA WEB v6 — EDITORIAL LUXURY
   Palette: warm parchment + rich dark + gold
   ══════════════════════════════════════════ */

@font-face {
    font-family: 'Allison Script';
    src: url('Allison_Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── TOKENS ── */
:root {
    --script:   'Allison Script', cursive;
    --serif:    'Playfair Display', Georgia, serif;
    --sans:     'Crimson Pro', Georgia, serif;
    --ui:       'Lato', system-ui, sans-serif;

    --parchment:   #f3ede2;
    --parchment-2: #ede6d8;
    --dark:        #17140e;
    --dark-2:      #201c15;
    --gold:        #8c7b65;
    --gold-light:  #c2ae96;
    --gold-faint:  #e8ddd0;

    --text-on-light:    #1e1a13;
    --text-mid-light:   #6b6154;
    --text-on-dark:     #f3ede2;
    --text-mid-dark:    #9a8e7e;

    --max-w: 1160px;
    --pad:   clamp(24px, 6vw, 88px);
    --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow{ max-width: 640px;        margin: 0 auto; padding: 0 var(--pad); }

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: sticky; top: 0; left: 0; right: 0; z-index: 9998;
    background: var(--parchment);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
    background: rgba(243, 237, 226, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gold-faint);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand {
    display: none;
    font-family: var(--script);
    font-size: 22px;
    color: var(--text-on-light);
    transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.55; }

.nav-menu-overlay {
    position: sticky; top: 0;
    z-index: 9999;
    height: 72px; margin-top: -72px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.nav-menu-list {
    display: flex; gap: clamp(20px, 3vw, 44px);
    list-style: none;
}
.nav-menu-list li, .nav-menu-list a { pointer-events: auto; }
.nav-link {
    font-family: var(--ui);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--text-on-light);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px;
}
.nav-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text-on-light);
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px var(--pad) 72px;
    position: relative;
    overflow: hidden;
}

/* Parallax background layer */
.hero-parallax {
    position: absolute;
    inset: -20% 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 60%, rgba(140,123,101,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(140,123,101,0.05) 0%, transparent 60%);
    pointer-events: none;
    will-change: transform;
}

/* Names */
.hero-content {
    position: relative;
    z-index: 1;
    animation: heroReveal 1.6s var(--ease) 0.1s both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: none; }
}

.hero-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 36px;
}

.hero-name {
    font-family: var(--script);
    font-size: clamp(88px, 20vw, 220px);
    font-weight: normal;
    color: var(--text-on-light);
    line-height: 0.88;
    display: block;
}

.hero-connector {
    font-family: var(--script);
    font-size: clamp(40px, 8vw, 88px);
    font-weight: normal;
    color: var(--gold);
    line-height: 1.1;
    display: block;
    margin: 0.05em 0;
}

/* Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--gold);
}
.hero-divider-line {
    display: block;
    width: clamp(40px, 8vw, 80px);
    height: 1px;
    background: var(--gold-light);
}

.hero-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(15px, 2.2vw, 20px);
    font-weight: 300;
    color: var(--text-mid-light);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hero-date {
    font-family: var(--sans);
    font-size: clamp(10px, 1.4vw, 12px);
    font-weight: 400;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}
.countdown-item {
    display: flex; flex-direction: column; align-items: center;
    min-width: 58px;
}
.countdown-value {
    font-family: var(--serif);
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 300;
    color: var(--text-on-light);
    line-height: 1;
}
.countdown-label {
    font-size: 9px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-mid-light);
    margin-top: 6px;
}
.countdown-sep {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    color: var(--gold-faint);
    padding: 0 6px;
    margin-bottom: 16px;
}

/* Scroll arrow */
.scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    background: none; border: none;
    color: var(--gold);
    opacity: 0.7;
    animation: bounceY 2.2s ease-in-out infinite;
    transition: opacity 0.3s;
}
@keyframes bounceY {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
.section { padding: clamp(80px, 11vw, 150px) 0; }

.eyebrow {
    display: block;
    font-family: var(--ui);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.1;
}

.section-header {
    margin-bottom: clamp(52px, 7vw, 88px);
    text-align: center;
}

.section-sub {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.6;
}

/* ══════════════════════════════════════════
   STORY — warm light
══════════════════════════════════════════ */
.story-section {
    background: var(--dark);
    color: var(--text-on-dark);
}
.story-section .eyebrow       { color: var(--gold); }
.story-section .section-title { color: var(--text-on-dark); }

.container--story { max-width: 900px; }

.story-section .section-header { text-align: left; margin-bottom: 40px; }
.story-section .section-header .eyebrow { text-align: left; }

.story-body {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.story-body p {
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid-dark);
}

.story-media { margin-top: 8px; }

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.video-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}

/* ══════════════════════════════════════════
   TIMELINE — parchment
══════════════════════════════════════════ */
.timeline-section {
    background: var(--parchment);
    color: var(--text-on-light);
}
.timeline-section .eyebrow    { color: var(--gold); }
.timeline-section .section-title { color: var(--text-on-light); }

.tl-nav {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 52px;
}

.tl-arrow {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: none;
    border: 1px solid var(--gold-faint);
    color: var(--gold);
    transition: border-color 0.2s, color 0.2s;
    margin-bottom: 4px;
}
.tl-arrow:hover:not(:disabled) { border-color: var(--gold); color: var(--text-on-light); }
.tl-arrow:disabled { opacity: 0.2; cursor: default; }

.tl-track-wrap {
    flex: 1; overflow: hidden; position: relative;
}
.tl-track-wrap::after {
    content: '';
    position: absolute; bottom: 4px; left: 0; right: 0;
    height: 1px; background: var(--gold-faint);
    pointer-events: none;
}

.tl-years {
    display: flex; align-items: flex-end;
    overflow-x: auto; scrollbar-width: none;
}
.tl-years::-webkit-scrollbar { display: none; }

.tl-yr {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 8px 12px 0;
    background: none; border: none; cursor: pointer;
    flex-shrink: 0; min-width: 72px;
}

.tl-yr-label {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid-light);
    opacity: 0.6;
    transition: font-size 0.35s var(--ease), color 0.25s, opacity 0.25s;
}
.tl-yr.is-active .tl-yr-label {
    font-size: clamp(30px, 4.5vw, 52px);
    color: var(--text-on-light);
    opacity: 1;
    font-weight: 300;
}
.tl-yr--final.is-active .tl-yr-label { color: var(--gold); }

.tl-yr-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-faint);
    transition: background 0.25s, transform 0.25s;
    z-index: 1;
    margin-bottom: 1px;
}
.tl-yr.is-active .tl-yr-dot {
    background: var(--gold);
    transform: scale(1.5);
}

.tl-panels { min-height: 130px; padding: 12px 0; }
.tl-panel { display: none; }
.tl-panel.is-active {
    display: block;
    animation: panelIn 0.45s var(--ease) both;
}
@keyframes panelIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}

.tl-caption {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 3.2vw, 34px);
    font-weight: 300;
    color: var(--text-on-light);
    line-height: 1.6;
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

/* Lightbox */
.lb-overlay {
    position: fixed; inset: 0;
    background: rgba(20,16,10,0.94);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.lb-overlay.is-open { opacity: 1; pointer-events: auto; }
.lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 22px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
}
.lb-close { top: 20px; right: 20px; font-size: 18px; }
.lb-prev  { left: 16px; }
.lb-next  { right: 16px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════
   INFO — warm light
══════════════════════════════════════════ */
.info-section {
    background: var(--dark-2);
    color: var(--text-on-dark);
}
.info-section .eyebrow       { color: var(--gold); }
.info-section .section-title { color: var(--text-on-dark); }

.info-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid var(--gold);
    margin-bottom: clamp(44px, 6vw, 72px);
    color: var(--text-on-dark);
}
.info-notice i { font-size: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-notice strong {
    display: block;
    font-family: var(--ui);
    font-size: 11px; font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-on-dark);
    margin-bottom: 6px;
}
.info-notice p {
    font-size: 17px; font-weight: 300;
    color: var(--text-mid-dark);
    line-height: 1.6;
}

/* Editorial numbered rows */
.info-rows { border-top: 1px solid rgba(255,255,255,0.1); }

.info-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0 40px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s ease;
    align-items: start;
}

.info-row:hover { border-bottom-color: var(--gold); }

.info-num {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    padding-top: 4px;
    letter-spacing: 1px;
}

.info-row-body h3 {
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 400;
    font-style: italic;
    color: var(--text-on-dark);
    margin-bottom: 8px;
}

.info-row-body p {
    font-size: 17px; font-weight: 300;
    color: var(--text-mid-dark);
    line-height: 1.8;
    max-width: 560px;
}

.info-row-body a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.row-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px; font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: opacity 0.2s;
    text-decoration: none !important;
}
.row-link:hover { opacity: 0.6; }

/* ══════════════════════════════════════════
   SCHEDULE — parchment
══════════════════════════════════════════ */
.schedule-section {
    background: var(--parchment-2);
    color: var(--text-on-light);
}
.schedule-section .eyebrow     { color: var(--gold); }
.schedule-section .section-title { color: var(--text-on-light); }

.day-schedule { display: flex; flex-direction: column; }

.schedule-item {
    display: grid;
    grid-template-columns: 56px 1px 1fr;
    gap: 0 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gold-faint);
    align-items: center;
}
.schedule-item:first-child { border-top: 1px solid var(--gold-faint); }

.s-time {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-align: right;
}

.s-dot {
    width: 1px;
    background: var(--gold-faint);
    align-self: stretch;
    margin: 0 auto;
    position: relative;
}
.s-dot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--parchment-2);
}

.s-event { display: flex; flex-direction: column; gap: 3px; padding-left: 4px; }
.s-event strong {
    font-family: var(--serif);
    font-size: 17px; font-weight: 400;
    color: var(--text-on-light);
}
.s-event span {
    font-size: 12px; font-weight: 300;
    color: var(--text-mid-light);
}

/* ══════════════════════════════════════════
   RSVP — warm light
══════════════════════════════════════════ */
.rsvp-section {
    background: var(--dark);
    padding: clamp(80px, 11vw, 150px) var(--pad);
}

.rsvp-card {
    background: var(--parchment);
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 68px);
    color: var(--text-on-light);
}

.rsvp-card .eyebrow       { color: var(--gold); }
.rsvp-card .section-title { color: var(--text-on-light); }
.rsvp-card .section-sub   { color: var(--text-mid-light); }
.rsvp-card .section-header { margin-bottom: 40px; }

/* Form */
.rsvp-form { display: flex; flex-direction: column; gap: 32px; }

.form-group { display: flex; flex-direction: column; gap: 10px; }

.form-label {
    font-family: var(--ui);
    font-size: 10px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-mid-light);
}
.req { color: var(--gold); }

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold-faint);
    padding: 12px 0;
    font-family: var(--sans);
    font-size: 18px; font-weight: 300;
    color: var(--text-on-light);
    width: 100%;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
}
.form-input:focus { border-bottom-color: var(--gold); }
.form-input::placeholder { color: var(--text-mid-light); opacity: 0.6; }
.form-textarea { resize: vertical; min-height: 72px; line-height: 1.6; }

/* Radio */
.radio-group { display: flex; flex-direction: column; }
.radio-option {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-faint);
    cursor: pointer; transition: opacity 0.2s;
}
.radio-option:first-of-type { border-top: 1px solid var(--gold-faint); }
.radio-option:hover { opacity: 0.75; }
.radio-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

.radio-indicator {
    width: 16px; height: 16px;
    border: 1.5px solid var(--gold-faint);
    border-radius: 50%; flex-shrink: 0; position: relative;
    transition: border-color 0.2s;
}
.radio-option input:checked ~ .radio-indicator { border-color: var(--gold); }
.radio-option input:checked ~ .radio-indicator::after {
    content: '';
    position: absolute; inset: 3px;
    background: var(--gold); border-radius: 50%;
}

.radio-text {
    font-size: 17px; font-weight: 300;
    color: var(--text-mid-light); transition: color 0.2s;
}
.radio-option input:checked ~ .radio-text { color: var(--text-on-light); font-weight: 400; }

/* Checkboxes */
.check-group { display: flex; flex-direction: column; }
.check-option {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-faint);
    cursor: pointer; transition: opacity 0.2s;
}
.check-option:first-of-type { border-top: 1px solid var(--gold-faint); }
.check-option:hover { opacity: 0.75; }
.check-option input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

.check-indicator {
    width: 16px; height: 16px;
    border: 1.5px solid var(--gold-faint);
    flex-shrink: 0; position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.check-option input:checked ~ .check-indicator {
    border-color: var(--gold); background: var(--gold);
}
.check-option input:checked ~ .check-indicator::after {
    content: '';
    position: absolute; left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: 1.5px solid var(--parchment);
    border-top: none; border-left: none;
    transform: rotate(45deg);
}

.check-text {
    font-size: 17px; font-weight: 300;
    color: var(--text-mid-light); transition: color 0.2s;
}
.check-option input:checked ~ .check-text { color: var(--text-on-light); font-weight: 400; }

.cond-wrap {
    padding: 16px 0 4px 30px;
    border-left: 1px solid var(--gold-faint);
    margin: 0 0 4px;
    display: flex; flex-direction: column; gap: 10px;
}
.cond-wrap[hidden] { display: none; }

/* Submit */
.btn-submit {
    width: 100%; padding: 18px; margin-top: 8px;
    background: var(--text-on-light);
    color: var(--parchment);
    border: none; font-family: var(--ui);
    font-size: 10.5px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
}
.btn-submit:hover { background: var(--gold); color: var(--parchment); }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-message {
    margin-top: 16px;
    padding: 14px 0;
    font-size: 17px; font-weight: 300;
    line-height: 1.5;
}
.form-message.success { border-left: 2px solid var(--gold); padding-left: 16px; color: var(--gold-light); }
.form-message.error   { border-left: 2px solid #c0392b;    padding-left: 16px; color: #e07b6a; }
.form-message[hidden] { display: none; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: var(--parchment-2);
    border-top: 1px solid var(--gold-faint);
    padding: clamp(64px, 9vw, 110px) 0;
    text-align: center;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.footer-names {
    font-family: var(--script);
    font-size: clamp(42px, 8vw, 84px);
    font-weight: normal;
    color: var(--text-on-light);
    line-height: 1;
    margin-bottom: 20px;
}

.footer-info {
    font-size: 11px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 860px) {
    .nav-inner { justify-content: space-between; }
    .nav-brand { display: block; }
    .nav-toggle { display: flex; }
    .navbar { background: var(--parchment); }
    .nav-menu-overlay {
        position: fixed;
        top: 72px; left: 0;
        width: 100vw; height: calc(100vh - 72px); height: calc(100dvh - 72px);
        margin: 0;
        z-index: 99999;
        background: var(--parchment);
        flex-direction: column;
        align-items: center; justify-content: center;
        display: none;
    }
    .nav-menu-overlay.active { display: flex; }
    .nav-menu-list { flex-direction: column; align-items: center; gap: 36px; transform: none; }
    .nav-link { font-size: 13px; letter-spacing: 3px; color: var(--text-on-light); }

    .story-layout { grid-template-columns: 1fr; }
    .story-text .section-title { font-size: clamp(30px, 7vw, 48px); }

    .info-grid { grid-template-columns: 1fr; }
    .schedule-item { grid-template-columns: 48px 1px 1fr; gap: 0 20px; }
}

@media (max-width: 480px) {
    .hero-name { font-size: clamp(72px, 22vw, 120px); }
    .hero-connector { font-size: clamp(32px, 10vw, 56px); }
    .countdown-item { min-width: 48px; }
}

body.nav-open { overflow: hidden; }
