
:root {
    --bg-page: #F5F5F3;
    --surface: #FFFFFF;
    --text-main: #111111;
    --text-muted: #666666;
    --accent-color: #1A1A1A;
    --accent-dark: #000000;
    --accent-light: #EFEFEF;
    --accent-border: #D8D8D6;
    --font-serif: 'Bodoni Moda', 'Didot', serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden !important;
}

/* ==========================================================================
   VOGUE EDITORIAL MAGAZINE COVER TURN (Design 06 Unique)
   ========================================================================== */
#vogue-intro {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, #262626 0%, #111111 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    perspective: 1600px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
}

#vogue-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vogue-cover-stage {
    position: relative;
    perspective: 1400px;
}

.vogue-cover-page {
    position: relative;
    width: 400px;
    max-width: 88vw;
    height: 580px;
    max-height: 84vh;
    background: #FFFFFF;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    transform-origin: left center;
    transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease 0.3s;
    border: 1px solid #E5E5E5;
}

#vogue-intro.opened .vogue-cover-page {
    transform: rotateY(-118deg) scale(0.96);
    opacity: 0;
}

.vogue-mag-header {
    text-align: center;
    border-bottom: 2px solid #111;
    padding-bottom: 0.6rem;
}

.vogue-mag-vol {
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #444;
}

.vogue-mag-title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 0.95;
    margin: 0.2rem 0;
    color: #000;
}

.vogue-mag-sub {
    font-size: 0.62rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: #666;
}

.vogue-mag-photo {
    flex: 1;
    margin: 0.8rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
}

.vogue-mag-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: #000;
    color: #FFF;
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
}

.vogue-mag-footer {
    border-top: 1px solid #111;
    padding-top: 0.8rem;
}

.vogue-couple-headline {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
}

.vogue-mag-date {
    font-size: 0.75rem;
    color: #555;
    margin: 0.2rem 0 0.6rem 0;
    letter-spacing: 1px;
}

.vogue-barcode-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #CCC;
    padding-top: 0.4rem;
}

.vogue-barcode {
    font-family: monospace;
    letter-spacing: -1px;
    font-size: 0.85rem;
    color: #222;
}

.vogue-mag-prompt {
    font-size: 0.68rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #000;
    animation: vogue-bounce 2s infinite ease-in-out;
}

@keyframes vogue-bounce {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

.vogue-page-curl {
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 28px 28px;
    border-color: transparent transparent #E0E0E0 transparent;
    box-shadow: -2px -2px 6px rgba(0,0,0,0.1);
}

/* FLOATING CONTROLS */
.lang-switch-btn, .music-toggle {
    position: fixed; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.lang-switch-btn {
    top: 1.2rem; right: 1.2rem;
    height: 36px; padding: 0 14px; border-radius: 18px; gap: 5px;
}
.music-toggle {
    bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
}
.lang-switch-btn:hover, .music-toggle:hover {
    background: var(--text-main); color: #fff; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* HERO EDITORIAL */
.vogue-hero {
    min-height: 100vh; padding: 3.5rem 2rem;
    display: flex; align-items: center; justify-content: center;
}
.vogue-hero-frame {
    width: 100%; max-width: 1200px;
    border: 1px solid var(--accent-border);
    padding: 3rem; background: var(--surface);
}
.vogue-top-meta {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--accent-border); padding-bottom: 1rem; margin-bottom: 2.5rem;
    font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 2px;
}
.vogue-hero-editorial-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center;
}
.hero-center-block { text-align: left; }
.vogue-invitation-sub {
    font-family: var(--font-heading); font-size: 0.8rem; letter-spacing: 4px;
    color: var(--text-muted); margin-bottom: 1rem;
}
.couple-names {
    font-family: var(--font-serif); font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 0.95; font-weight: 400; text-transform: uppercase;
}
.vogue-amp { font-style: italic; font-size: 0.7em; color: var(--text-muted); }
.vogue-horizontal-rule {
    height: 2px; width: 80px; background: var(--text-main); margin: 2rem 0;
}
.wedding-date {
    font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 0.4rem;
}
.wedding-venue { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.vogue-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.vogue-photo-frame {
    width: 100%; height: 480px; background-size: cover; background-position: center;
    border: 1px solid var(--accent-border); position: relative;
    filter: contrast(1.05);
}
.vogue-photo-frame.tall { height: 420px; }
.vogue-caption {
    position: absolute; bottom: 0.8rem; left: 0.8rem; right: 0.8rem;
    background: rgba(255, 255, 255, 0.9); padding: 0.4rem 0.8rem;
    font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 1.5px;
    font-weight: 700; text-transform: uppercase;
}

/* BUTTONS */
.btn-vogue-solid {
    display: inline-block; background: var(--text-main); color: #fff;
    padding: 1rem 2rem; text-decoration: none; font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; border: 1px solid var(--text-main);
    cursor: pointer; transition: all 0.2s;
}
.btn-vogue-solid:hover { background: #fff; color: var(--text-main); }
.btn-vogue-outline {
    display: inline-block; background: transparent; color: var(--text-main);
    padding: 1rem 2rem; text-decoration: none; font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; border: 1px solid var(--text-main);
    cursor: pointer; transition: all 0.2s;
}
.btn-vogue-outline:hover { background: var(--text-main); color: #fff; }

/* SECTIONS */
section { padding: 5rem 0; border-bottom: 1px solid var(--accent-border); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
    font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 3px;
    color: var(--text-muted); display: block; margin-bottom: 1rem;
}
.vogue-heading {
    font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1; font-weight: 400; margin-bottom: 1.5rem;
}
.text-center { text-align: center; }

/* COUNTDOWN */
.vogue-cd-container {
    display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
}
.cd-box {
    border: 1px solid var(--accent-border); background: var(--surface);
    padding: 1.5rem 2rem; min-width: 100px;
}
.cd-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600; display: block; line-height: 1; }
.cd-lbl { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; color: var(--text-muted); margin-top: 0.5rem; }

/* STORY SPREAD */
.vogue-story-spread {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center;
}
.vogue-card {
    background: var(--surface); border: 1px solid var(--accent-border); padding: 3.5rem;
}
.story-body { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
.vogue-quote {
    border-left: 2px solid var(--text-main); padding-left: 1.2rem;
    font-family: var(--font-serif); font-style: italic; font-size: 1.2rem;
}

/* TIMELINE */
.vogue-timeline { max-width: 750px; margin: 3rem auto 0; }
.vogue-tl-row {
    display: grid; grid-template-columns: 60px 100px 1fr; gap: 1.5rem;
    padding: 1.8rem 0; border-bottom: 1px solid var(--accent-border); align-items: baseline;
}
.tl-index { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }
.tl-time { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; }
.tl-text h3 { font-family: var(--font-heading); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 0.3rem; }
.tl-text p { font-size: 0.95rem; color: var(--text-muted); }

/* LOCATION SPREAD */
.vogue-location-spread {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.location-address { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.vogue-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* SEATING */
.seating-search-box { max-width: 500px; margin: 2rem auto; }
.vogue-search-bar input {
    width: 100%; padding: 1rem 1.2rem; border: 1px solid var(--accent-border);
    font-family: inherit; font-size: 0.95rem; outline: none; background: #fff;
}
.vogue-search-bar input:focus { border-color: var(--text-main); }
.seating-search-wrap { max-width: 520px; margin: 1.5rem auto 2rem; }
.seating-search-input, #seatingSearch, #seatingSearchInput {
    width: 100%; padding: 0.95rem 1.4rem; border: 1px solid var(--text-main);
    background: #fff; font-family: inherit; font-size: 0.95rem; outline: none; text-align: center;
}
.seating-results, .seating-results-grid {
    max-width: 550px; margin: 1.2rem auto 2.5rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.seating-card, .seating-match-card, .seating-result-item {
    background: #fff; border: 1px solid var(--accent-border); padding: 1rem 1.4rem;
    display: flex; justify-content: space-between; align-items: center; text-align: left;
    transition: all 0.2s;
}
.seating-card:hover, .seating-result-item:hover { border-color: var(--text-main); }
.seating-name, .seating-guest-name { font-weight: 700; font-size: 1.05rem; color: var(--text-main); }
.seating-notes { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.seating-table-badge, .seating-match-card .table-badge {
    background: var(--text-main); color: #fff; padding: 0.4rem 1.1rem;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 1px;
}
.seating-no-result, .seating-empty {
    padding: 1.2rem; color: var(--text-muted); font-size: 0.95rem; background: #fff;
    border: 1px dashed var(--accent-border); text-align: center;
}

/* Floorplan Stage & Canvas */
.floorplan-wrapper { max-width: 850px; margin: 2rem auto 0; padding: 0 1rem; }
.floorplan-header { text-align: center; margin-bottom: 1.2rem; }
.floorplan-header h3 { font-family: var(--font-serif); font-size: 1.8rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.floorplan-header p { font-size: 0.85rem; color: var(--text-muted); }
.floorplan-stage {
    position: relative; width: 100%; height: 500px; background: #FAFAFA;
    border: 1px solid var(--accent-border); margin-top: 1rem; overflow: hidden;
}
.floorplan-stage-tag {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 3px; color: var(--text-muted); user-select: none;
}
.floorplan-head-table {
    position: absolute; transform: translate(-50%, -50%);
    width: 165px; height: 52px; background: #000; color: #fff;
    border: 1px solid #333; display: flex; flex-direction: column;
    align-items: center; justify-content: center; cursor: pointer;
    transition: all 0.25s ease; z-index: 5; text-align: center; padding: 0.2rem 0.5rem;
}
.floorplan-head-table .table-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px; }
.floorplan-head-table .table-sub { font-size: 0.65rem; color: #BBB; white-space: nowrap; }
.floorplan-dance-floor {
    position: absolute; transform: translate(-50%, -50%);
    width: 115px; height: 75px; border: 1px dashed #000; background: #EFEFEF;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1px; color: #000; gap: 3px; z-index: 2; user-select: none;
}
.floorplan-table {
    position: absolute; transform: translate(-50%, -50%);
    width: 68px; height: 68px; border-radius: 50%; background: #fff;
    border: 1.5px solid #000; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: #000; cursor: pointer;
    transition: all 0.25s ease; z-index: 4; text-align: center; padding: 2px;
}
.floorplan-table.shape-rect { border-radius: 0; width: 88px; height: 52px; }
.floorplan-table.shape-rect.rotated { width: 52px; height: 88px; }
.floorplan-table:hover, .floorplan-head-table:hover {
    transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.floorplan-table .table-num { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; line-height: 1; }
.floorplan-table .table-name {
    font-size: 0.62rem; color: #666; margin-top: 2px; max-width: 58px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase;
}
.floorplan-table.highlighted, .floorplan-head-table.highlighted {
    background: #000 !important; color: #fff !important;
    box-shadow: 0 0 0 3px #000, 0 8px 25px rgba(0,0,0,0.4) !important;
    transform: translate(-50%, -50%) scale(1.22) !important; z-index: 10 !important;
}
.floorplan-table.highlighted .table-num, .floorplan-table.highlighted .table-name { color: #fff !important; }
.floorplan-table.dimmed, .floorplan-head-table.dimmed { opacity: 0.25 !important; }

/* RSVP */
.rsvp-card { max-width: 750px; margin: 0 auto; }
.rsvp-desc { color: var(--text-muted); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 1.5px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.9rem; border: 1px solid var(--accent-border); background: #fff;
    font-family: inherit; font-size: 0.95rem; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--text-main); }
.form-submit-wrap { margin-top: 2rem; text-align: center; }
.rsvp-success-message { text-align: center; padding: 2rem; }

/* MUSIC */
.music-card { max-width: 600px; margin: 0 auto; }
.music-desc { color: var(--text-muted); }
.music-success { margin-top: 1rem; font-family: var(--font-heading); font-weight: 700; }

/* PHOTO UPLOAD */
.photo-upload-container { max-width: 650px; margin: 2rem auto 0; }
.photo-dropzone {
    border: 1px dashed var(--text-main); padding: 3rem 1.5rem; cursor: pointer;
    font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 1px;
}
.photo-uploader-name-wrap { margin: 1.5rem 0; }
.photo-uploader-name-wrap input {
    width: 100%; max-width: 320px; padding: 0.8rem; border: 1px solid var(--accent-border);
    text-align: center; font-family: inherit;
}
.photo-preview-grid { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin: 1rem 0; }
.photo-preview-thumb { width: 70px; height: 70px; object-fit: cover; }

/* FOOTER WITH SUNSET EDITORIAL PHOTO */
.vogue-footer {
    position: relative; background: var(--surface); border-top: 1px solid var(--accent-border);
    overflow: hidden;
}
.vogue-footer-hero {
    height: 320px; width: 100%; background-size: cover; background-position: center;
    position: relative; filter: grayscale(20%) contrast(1.1);
}
.vogue-footer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 245, 243, 0.95) 100%);
}
.vogue-footer-content {
    padding: 3rem 1.5rem; position: relative; z-index: 2; margin-top: -50px;
}
.footer-names { font-family: var(--font-serif); font-size: 2.4rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-date { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 2px; color: var(--text-muted); }
.footer-credits { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; margin-top: 2rem; color: var(--text-muted); }
.footer-credits a { color: var(--text-main); text-decoration: none; font-weight: 700; }

.hidden { display: none !important; }

@media (max-width: 768px) {
    /* FLOATING CONTROLS */
    .lang-switch-btn {
        top: 10px !important;
        right: 10px !important;
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 0.72rem !important;
    }
    .music-toggle {
        bottom: 12px !important;
        right: 12px !important;
        width: 38px !important;
        height: 38px !important;
    }

    /* HERO */
    .vogue-hero {
        min-height: auto;
        padding: 2.8rem 0.8rem 2rem;
    }
    .vogue-hero-frame {
        padding: 1.2rem 1rem;
    }
    .vogue-top-meta {
        padding-right: 50px; /* Leave clean space for top-right EN pill */
        margin-bottom: 1.5rem;
    }
    .vogue-hero-editorial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vogue-hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .btn-vogue-solid, .btn-vogue-outline {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
    }
    .vogue-photo-frame { height: 300px; }

    /* COUNTDOWN: 1 SINGLE ROW GUARANTEE */
    .vogue-cd-container {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 1.5rem auto 0 !important;
        padding: 0 !important;
    }
    .cd-box {
        min-width: 0 !important;
        width: 100% !important;
        padding: 0.75rem 0.2rem !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .cd-num {
        font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
        line-height: 1 !important;
    }
    .cd-lbl {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
        margin-top: 0.3rem !important;
    }

    /* STORY, TIMELINE, LOCATION */
    .vogue-story-spread, .vogue-location-spread { grid-template-columns: 1fr; gap: 2rem; }
    .vogue-card { padding: 2rem 1.2rem; }
    .vogue-tl-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 0; }
    .vogue-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; width: 100%; }
    .vogue-actions a { padding: 0.75rem 0.5rem; font-size: 0.75rem; text-align: center; }

    /* SEATING & FLOORPLAN MOBILE */
    .floorplan-stage { height: 420px !important; }
    .floorplan-head-table { width: 145px !important; height: 46px !important; }
    .floorplan-table { width: 58px !important; height: 58px !important; }
    .floorplan-table.shape-rect { width: 76px !important; height: 46px !important; }
    .floorplan-table.shape-rect.rotated { width: 46px !important; height: 76px !important; }
    .floorplan-table .table-num { font-size: 1rem !important; }
    .floorplan-dance-floor { width: 95px !important; height: 60px !important; }

    /* RSVP & FORMS (Prevent iOS zoom) */
    .form-grid { grid-template-columns: 1fr; gap: 1rem; }
    .form-group.full-width { grid-column: span 1; }
    .form-group input, .form-group select, .form-group textarea, #seatingSearch, #seatingSearchInput {
        font-size: 16px !important;
    }
    .rsvp-card { padding: 2rem 1.2rem; }
}

/* ==========================================================================
   SWISS MODERNIST & AVANT-GARDE MINIMALIST SUITE (DESIGN 06)
   ========================================================================== */

/* Masthead Strip */
.swiss-masthead-strip {
    background: #000000;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
}

.swiss-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .swiss-masthead-strip { display: none; }
}

/* Swiss Hero Section */
.swiss-hero {
    background: #FFFFFF;
    border-bottom: 2px solid #000000;
    padding: 5rem 0 6rem;
}

.swiss-grid-frame {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 960px) {
    .swiss-grid-frame {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.swiss-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.3rem;
}

.plus-sign {
    font-weight: 900;
    color: #FF2A00;
}

.swiss-giant-names {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2rem;
}

.s-name {
    display: block;
}

.s-times {
    display: inline-block;
    color: #FF2A00;
    font-weight: 400;
    margin: 0.2rem 0;
}

.swiss-coords-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    color: #555555;
    letter-spacing: 1.5px;
    margin-bottom: 1.8rem;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 0.8rem 0;
}

.swiss-lead-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222222;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.swiss-hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-swiss-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: #000000;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #000000;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-swiss-solid:hover {
    background: #FF2A00;
    border-color: #FF2A00;
    color: #FFFFFF;
}

.btn-swiss-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: #FFFFFF;
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #000000;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-swiss-outline:hover {
    background: #000000;
    color: #FFFFFF;
}

/* Swiss Photo Frame */
.swiss-photo-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    border: 2px solid #000000;
    padding: 14px;
    background: #FFFFFF;
}

.swiss-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center top;
    filter: grayscale(100%) contrast(1.15);
    border: 1px solid #000000;
}

.swiss-cross {
    position: absolute;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.cross-tl { top: -8px; left: -8px; }
.cross-tr { top: -8px; right: -8px; }
.cross-bl { bottom: -8px; left: -8px; }
.cross-br { bottom: -8px; right: -8px; }

.swiss-photo-tagline {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-align: right;
    margin-top: 10px;
    color: #555555;
}

/* Section Header Style */
.swiss-section-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 1.2rem;
    margin-bottom: 3.5rem;
}

.swiss-section-index {
    font-family: 'Space Grotesk', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FF2A00;
    line-height: 1;
}

.sub-label {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555555;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.swiss-h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #000000;
}

/* 3. Horology Precision Chronometer Matrix */
.swiss-countdown-section {
    padding: 6rem 0;
    background: #F5F5F3;
    border-bottom: 2px solid #000000;
}

.swiss-chronometer-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid #000000;
    background: #FFFFFF;
    margin-bottom: 2rem;
}

.chrono-cell {
    padding: 2.5rem 1.5rem;
    border-right: 2px solid #000000;
    text-align: center;
}

.chrono-cell:last-child {
    border-right: none;
}

.chrono-iso {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 0.5rem;
}

.chrono-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    color: #000000;
}

.chrono-label {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #000000;
    margin-top: 0.5rem;
}

.swiss-cal-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-swiss-link {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.2rem;
    transition: all 0.2s ease;
}

.btn-swiss-link:hover {
    color: #FF2A00;
    border-color: #FF2A00;
}

/* 4. Swiss Story */
.swiss-story-section {
    padding: 6rem 0;
    background: #FFFFFF;
    border-bottom: 2px solid #000000;
}

.swiss-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 960px) {
    .swiss-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.brief-item {
    margin-bottom: 2.5rem;
}

.brief-index {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #FF2A00;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.brief-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
}

.brief-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444444;
}

.story-monochrome-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border: 2px solid #000000;
    filter: grayscale(100%) contrast(1.2);
    position: relative;
}

.photo-info-bar {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: #000000;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
}

/* 5. Schedule Table */
.swiss-schedule-section {
    padding: 6rem 0;
    background: #F5F5F3;
    border-bottom: 2px solid #000000;
}

.swiss-table-timeline {
    border: 2px solid #000000;
    background: #FFFFFF;
}

.timeline-row {
    display: grid;
    grid-template-columns: 80px 140px 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid #E0E0E0;
    transition: background 0.2s ease;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-row.highlight-row, .timeline-row:hover {
    background: #F9F9F8;
}

.row-seq {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF2A00;
}

.row-timestamp {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
}

.row-body h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.row-body p {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .timeline-row {
        grid-template-columns: 45px 1fr;
        gap: 0.8rem;
        padding: 1.4rem 1rem;
    }
    .row-timestamp {
        grid-column: 2;
        margin-bottom: -0.4rem;
    }
    .row-body {
        grid-column: 2;
    }
}

/* 6. Architectural Venue */
.swiss-venue-section {
    padding: 6rem 0;
    background: #FFFFFF;
    border-bottom: 2px solid #000000;
}

.swiss-venue-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 960px) {
    .swiss-venue-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-bottom: 1px solid #E0E0E0;
    padding: 1rem 0;
}

.spec-k {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: #888888;
    font-weight: 700;
}

.spec-v {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 500;
}

.venue-links-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.venue-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border: 2px solid #000000;
    filter: grayscale(100%) contrast(1.1);
    position: relative;
}

.cross-overlay {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 1.5rem;
    color: #FF2A00;
    font-weight: 900;
}

/* 7. Swiss Seating & Floorplan */
.swiss-seating-section {
    padding: 6rem 0;
    background: #F5F5F3;
    border-bottom: 2px solid #000000;
}

.swiss-seating-search input {
    width: 100%;
    max-width: 600px;
    padding: 1rem 1.2rem;
    border: 2px solid #000000;
    background: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    outline: none;
    margin-bottom: 2rem;
}

.swiss-floorplan-box {
    background: #FFFFFF;
    border: 2px solid #000000;
    padding: 2.5rem;
    margin-top: 3rem;
}

/* 8. Minimalist Swiss RSVP */
.swiss-rsvp-section {
    padding: 6rem 0;
    background: #FFFFFF;
    border-bottom: 2px solid #000000;
}

.swiss-form-wrapper {
    max-width: 780px;
}

.swiss-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 650px) {
    .swiss-form-grid {
        grid-template-columns: 1fr;
    }
}

.s-field.full {
    grid-column: span 2;
}

@media (max-width: 650px) {
    .s-field.full {
        grid-column: span 1;
    }
}

.s-field label {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.4rem;
}

.s-field input, .s-field select, .s-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #000000;
    background: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: #000000;
    outline: none;
}

.s-field input:focus, .s-field select:focus, .s-field textarea:focus {
    border-color: #FF2A00;
}

.swiss-success {
    border: 2px solid #000000;
    padding: 3rem;
    text-align: center;
    background: #F5F5F3;
}

/* 9. Music & Photo */
.swiss-music-section {
    padding: 6rem 0;
    background: #F5F5F3;
    border-bottom: 2px solid #000000;
}

.swiss-split-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 850px) {
    .swiss-split-two {
        grid-template-columns: 1fr;
    }
}

.swiss-box {
    background: #FFFFFF;
    border: 2px solid #000000;
    padding: 2.5rem 2rem;
}

.swiss-h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.box-p {
    font-size: 0.88rem;
    color: #555555;
    margin-bottom: 1.5rem;
}

.swiss-music-form {
    display: flex;
    gap: 0.6rem;
}

.swiss-music-form input {
    flex: 1;
    padding: 0.85rem;
    border: 2px solid #000000;
    font-size: 16px;
    outline: none;
}

.swiss-dropzone {
    border: 2px dashed #000000;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1.2rem;
}

.drop-icon {
    font-size: 2rem;
    font-weight: 900;
    color: #FF2A00;
    display: block;
    margin-bottom: 0.4rem;
}

.swiss-input-wrap input {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #000000;
    font-size: 16px;
    margin-bottom: 1rem;
    outline: none;
}

/* 10. Swiss Colophon Footer */
.swiss-colophon-footer {
    padding: 6rem 0 4rem;
    background: #000000;
    color: #FFFFFF;
    text-align: center;
}

.swiss-ty-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.swiss-ty-sub {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    color: #AAAAAA;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.swiss-names {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: #FF2A00;
}

.swiss-meta-footer {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.68rem;
    letter-spacing: 3px;
    color: #666666;
}

.swiss-meta-footer a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Strict Mobile 1-Row Chronometer Grid */
@media (max-width: 768px) {
    .swiss-chronometer-matrix {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0 !important;
    }
    .chrono-cell {
        padding: 1.2rem 0.2rem !important;
    }
    .chrono-iso {
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
    }
    .chrono-num {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    }
    .chrono-label {
        font-size: 0.58rem !important;
        letter-spacing: 1px !important;
    }
}

/* ==========================================================================
   DESKTOP ENHANCEMENTS (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .swiss-hero-layout {
        max-width: 1100px;
        margin: 0 auto;
    }
    .swiss-chronometer-matrix {
        max-width: 900px;
        margin: 0 auto;
    }
    .swiss-rsvp-card {
        max-width: 760px;
        margin: 0 auto;
        padding: 4.5rem 3.5rem;
    }
    .swiss-split-two {
        max-width: 1040px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}


