/* ========================================
   SVATBA WEB v4 — EDITORIAL MINIMAL
   ======================================== */

:root {
    --clr-white:       #ffffff;
    --clr-off-white:   #faf9f7;
    --clr-near-black:  #1a1a1a;
    --clr-text:        #2e2e2e;
    --clr-text-mid:    #5a5a5a;
    --clr-text-light:  #8a8a8a;
    --clr-taupe:       #c9b99a;
    --clr-taupe-light: #e8ddd0;
    --clr-taupe-dark:  #a89278;
    --clr-border:      #e8e8e8;

    --font-script:  'Great Vibes', cursive;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Lato', sans-serif;

    --space-section: 120px;
    --container-max: 1080px;
    --container-pad: 32px;
    --transition:    all 0.25s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-white);
    overflow-x: hidden;
    line-height: 1.7;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.container--narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--space-section) 0;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-taupe);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 300;
    color: var(--clr-near-black);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.section-subtitle {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    color: var(--clr-text-light);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    border-bottom-color: var(--clr-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--clr-near-black);
    letter-spacing: 3px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--clr-text-mid);
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-taupe);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-near-black);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--clr-near-black);
    transition: var(--transition);
    border-radius: 0;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.hero-bg-year {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(160px, 30vw, 380px);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.025);
    letter-spacing: -8px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    bottom: -0.1em;
    right: -0.05em;
    white-space: nowrap;
}

.hero-content {
    text-align: center;
    padding: 0 var(--container-pad);
    opacity: 0;
    animation: heroReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    position: relative;
    z-index: 1;
}

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

/* AT Monogram */
.hero-monogram {
    margin: 0 auto 36px;
    width: clamp(140px, 22vw, 200px);
    height: clamp(140px, 22vw, 200px);
    color: var(--clr-near-black);
}

.monogram-svg {
    width: 100%;
    height: 100%;
}

.hero-rule {
    width: 40px;
    height: 1px;
    background: var(--clr-taupe);
    margin: 0 auto 32px;
}

.hero-names {
    font-family: var(--font-script);
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--clr-near-black);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-date {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--clr-text-mid);
    margin-bottom: 4px;
}

.hero-location {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    margin-bottom: 48px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 300;
    color: var(--clr-near-black);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    font-weight: 400;
}

.countdown-sep {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    color: var(--clr-taupe-light);
    padding: 0 4px;
    margin-bottom: 18px;
    line-height: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-taupe);
    opacity: 1;
    transition: opacity 0.4s ease, color 0.2s ease;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--clr-near-black);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   STORY SECTION
   ======================================== */

.story-section {
    background: var(--clr-off-white);
}

.story-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-taupe);
    margin-bottom: 16px;
}

.story-headline {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    color: var(--clr-near-black);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.story-body p {
    font-size: 17px;
    font-weight: 300;
    color: var(--clr-text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.story-video {
    margin-top: 48px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   TIMELINE / NAŠE CESTA — stepped (one active year)
   ======================================== */

.timeline-section {
    background: var(--clr-white);
}

/* Nav bar: arrow | scrollable year strip | arrow */
.tl-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    margin-top: 16px;
}

.tl-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-mid);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.tl-arrow:hover:not(:disabled) {
    border-color: var(--clr-near-black);
    color: var(--clr-near-black);
}

.tl-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* Track wrapper — clips overflow, holds the axis line */
.tl-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    /* axis line sits at dot level (bottom of .tl-yr) */
}

.tl-track-wrap::after {
    content: '';
    position: absolute;
    bottom: 4px;           /* center of the 8px dot */
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clr-border);
    pointer-events: none;
}

/* Year strip — scrollable, hides bar */
.tl-years {
    display: flex;
    align-items: flex-end; /* dots at same baseline */
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tl-years::-webkit-scrollbar { display: none; }

/* Individual year button */
.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(--font-heading);
    font-size: 18px;
    font-weight: 300;
    color: var(--clr-text-light);
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
    transition: font-size 0.3s cubic-bezier(0.16,1,0.3,1),
                color 0.25s ease,
                font-weight 0.25s ease;
    user-select: none;
}

.tl-yr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

/* Active state */
.tl-yr.is-active .tl-yr-label {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--clr-near-black);
    font-weight: 400;
}

.tl-yr.is-active .tl-yr-dot {
    background: var(--clr-near-black);
    border-color: var(--clr-near-black);
    transform: scale(1.3);
}

/* 2026 final year */
.tl-yr--final.is-active .tl-yr-label {
    color: var(--clr-taupe);
}

.tl-yr--final.is-active .tl-yr-dot {
    background: var(--clr-taupe);
    border-color: var(--clr-taupe);
}

/* Content panels */
.tl-panels {
    margin-top: 56px;
    min-height: 180px;
}

.tl-panel {
    display: none;
}

.tl-panel.is-active {
    display: block;
    animation: tlFadeIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes tlFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tl-panel-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.tl-caption {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 300;
    color: var(--clr-text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tl-events {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
}

.tl-event {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--clr-text-mid);
    font-weight: 300;
    letter-spacing: 0.2px;
}

.tl-dot-sm {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-taupe);
    flex-shrink: 0;
}

.tl-event--highlight span:last-child {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    color: var(--clr-near-black);
    letter-spacing: 0;
}

.tl-dot-sm--highlight {
    width: 6px;
    height: 6px;
    background: var(--clr-near-black);
}

/* Photos grid (add imgs when ready) */
.tl-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 36px;
}

.tl-photo {
    width: 130px;
    height: 96px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    border: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.tl-photo:hover { opacity: 0.8; }

/* ========================================
   LIGHTBOX
   ======================================== */

.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.93);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    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: 85vh;
    object-fit: contain;
    display: block;
    user-select: none;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.lb-close:hover { color: #fff; }

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
    padding: 16px;
    transition: color 0.2s;
}

.lb-prev:hover,
.lb-next:hover { color: #fff; }

.lb-prev { left: 8px; }
.lb-next { right: 8px; }

/* ========================================
   INFO SECTION
   ======================================== */

.info-section {
    background: var(--clr-off-white);
}

/* No-photo notice */
.info-notice {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
    border: 1.5px solid var(--clr-near-black);
    background: var(--clr-white);
    margin-bottom: 48px;
}

.info-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--clr-near-black);
    font-size: 20px;
    margin-top: 2px;
}

.info-notice-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-near-black);
    margin-bottom: 4px;
}

.info-notice-text p {
    font-size: 14px;
    color: var(--clr-text-mid);
    font-weight: 300;
    line-height: 1.6;
}

/* Cards grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--clr-border);
}

.info-card {
    background: var(--clr-white);
    padding: 36px 28px;
    transition: background 0.2s ease;
}

.info-card:hover {
    background: var(--clr-off-white);
}

.info-card-number {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--clr-taupe);
    margin-bottom: 14px;
    font-weight: 400;
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--clr-near-black);
    margin-bottom: 10px;
}

.info-card-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--clr-text-mid);
    line-height: 1.7;
}

.info-card-body a {
    color: var(--clr-taupe-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-card-body a:hover {
    color: var(--clr-near-black);
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 9px 16px;
    border: 1px solid var(--clr-border);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-mid);
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-map:hover {
    border-color: var(--clr-near-black);
    color: var(--clr-near-black);
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */

.schedule-section {
    background: var(--clr-white);
}

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

.schedule-item {
    display: grid;
    grid-template-columns: 72px 1px 1fr;
    gap: 0 28px;
    align-items: stretch;
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-border);
}

.day-schedule .schedule-item:first-child {
    border-top: 1px solid var(--clr-border);
}

.schedule-time {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--clr-text-light);
    padding-top: 3px;
    flex-shrink: 0;
    line-height: 1;
}

.schedule-divider {
    width: 1px;
    background: var(--clr-taupe-light);
    align-self: stretch;
    flex-shrink: 0;
}

.schedule-event {
    padding-top: 2px;
}

.schedule-event strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--clr-near-black);
    line-height: 1.2;
    margin-bottom: 2px;
}

.schedule-event span {
    font-size: 13px;
    color: var(--clr-text-light);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* ========================================
   RSVP SECTION
   ======================================== */

.rsvp-section {
    background: var(--clr-off-white);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-mid);
    margin-bottom: 10px;
    font-weight: 400;
}

.form-required {
    color: var(--clr-taupe);
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--clr-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--clr-near-black);
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    border-bottom-color: var(--clr-near-black);
}

.form-input::placeholder {
    color: var(--clr-text-light);
    font-weight: 300;
}

.form-textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.6;
}

/* Radio options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: var(--clr-white);
    position: relative;
}

.radio-option:hover {
    border-color: var(--clr-near-black);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-indicator {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.radio-option input:checked ~ .radio-indicator {
    border-color: var(--clr-near-black);
}

.radio-option input:checked ~ .radio-indicator::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--clr-near-black);
    border-radius: 50%;
}

.radio-text {
    font-size: 15px;
    color: var(--clr-text-mid);
    font-weight: 300;
    transition: color 0.2s ease;
}

.radio-option input:checked ~ .radio-text {
    color: var(--clr-near-black);
    font-weight: 400;
}

/* Conditional fields */
.conditional-fields {
    border-left: 2px solid var(--clr-taupe-light);
    padding-left: 24px;
    margin: 4px 0 8px;
}

.conditional-fields[hidden] {
    display: none;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 18px;
    margin-top: 32px;
    background: var(--clr-near-black);
    color: var(--clr-white);
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background: var(--clr-text);
}

.btn-submit:active {
    transform: scale(0.99);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form message */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message[hidden] {
    display: none;
}

.form-message.success {
    background: rgba(100, 140, 100, 0.08);
    color: #3a6040;
    border: 1px solid rgba(100, 140, 100, 0.2);
}

.form-message.error {
    background: rgba(160, 80, 60, 0.08);
    color: #7a3020;
    border: 1px solid rgba(160, 80, 60, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--clr-near-black);
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    padding: 72px 0 56px;
}

.footer-monogram {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 28px;
    width: 56px;
    height: 56px;
}

.footer-monogram .monogram-svg {
    width: 100%;
    height: 100%;
}

.footer-date {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}

.footer-venue {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 28px;
}

.footer-love {
    font-family: var(--font-script);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   RESPONSIVE — 980px (mobile nav)
   ======================================== */

@media (max-width: 980px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: 100vh;
        padding: 100px 40px 40px;
        gap: 28px;
        transition: left 0.3s ease;
        z-index: 5;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 12px;
        letter-spacing: 3px;
        color: var(--clr-text-mid);
    }

    .nav-toggle {
        display: flex;
        z-index: 10;
    }

    /* Info grid: 2-col */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE — 767px
   ======================================== */

@media (max-width: 767px) {
    :root {
        --space-section: 80px;
        --container-pad: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-monogram {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .countdown-sep {
        display: none;
    }

    .countdown {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 64px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-notice {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }

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

/* ========================================
   RESPONSIVE — 480px
   ======================================== */

@media (max-width: 480px) {
    .hero-names {
        font-size: clamp(44px, 14vw, 56px);
    }

    .countdown-value {
        font-size: 28px;
    }

    .tl-yr {
        min-width: 56px;
        padding: 8px 8px 0;
    }

    .radio-option {
        padding: 14px 16px;
    }

    .info-notice {
        padding: 20px;
    }
}
