/* ==========================================================================
   LUXURY ANIMATED MARRIAGE INVITATION DESIGN SYSTEM & STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #AA771C;
    --light-gold: #FCF6BA;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    --bg-creme: #FDFBF7;
    --bg-card: rgba(255, 255, 255, 0.88);
    --dark-burgundy: #2D0A14;
    --deep-wine: #1A040B;
    --rose-soft: #F9ECEF;
    --text-dark: #2C2C2C;
    --text-muted: #666666;
    
    --font-script: 'Great Vibes', 'Alex Brush', cursive;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-luxury: 0 20px 40px rgba(45, 10, 20, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-creme);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* --------------------------------------------------------------------------
   2. Canvas Background & Floating Petals
   -------------------------------------------------------------------------- */
#petals-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

/* --------------------------------------------------------------------------
   3. Audio Control Button & Equalizer
   -------------------------------------------------------------------------- */
#audio-control-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
    transition: opacity 0.5s ease;
}
#audio-control-container.hidden {
    opacity: 0;
    pointer-events: none;
}

#music-toggle-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--dark-burgundy);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(45, 10, 20, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

#music-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--gold-glow);
}

.eq-bar-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    margin-right: 4px;
}

.eq-bar {
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: eqPulse 1.2s infinite ease-in-out alternate;
}

.eq-bar:nth-child(1) { animation-delay: 0.1s; }
.eq-bar:nth-child(2) { animation-delay: 0.3s; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; }
.eq-bar:nth-child(4) { animation-delay: 0.4s; }

.paused .eq-bar {
    animation-play-state: paused;
    height: 4px !important;
}

@keyframes eqPulse {
    0% { height: 4px; }
    100% { height: 16px; }
}

/* --------------------------------------------------------------------------
   4. Feature 1: Grand Reveal 3D Digital Envelope
   -------------------------------------------------------------------------- */
#envelope-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #2D0A14 0%, #100207 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    perspective: 1000px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 20px;
}

.envelope-container {
    position: relative;
    width: 340px;
    height: 240px;
}

@media (min-width: 768px) {
    .envelope-container {
        width: 440px;
        height: 300px;
    }
}

.envelope {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1f060e;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
}

.envelope-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #250811;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

/* Inside Preview Card */
.envelope-card {
    position: absolute;
    bottom: 10px;
    left: 5%;
    width: 90%;
    height: 90%;
    background: #FFFDF9;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.1s 0.4s;
    border: 1px solid var(--primary-gold);
}

.card-inner {
    border: 1px dashed rgba(212, 175, 55, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.gold-monogram {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--primary-gold);
    line-height: 1;
}

.envelope-card h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-burgundy);
    margin-top: 5px;
}

.couple-preview-names {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--dark-gold);
    margin: 4px 0;
}

.date-badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    border-top: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
    padding: 2px 10px;
}

/* Flap & Front triangular pocket */
.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 170px solid transparent;
    border-right: 170px solid transparent;
    border-top: 120px solid #2d0a14;
    transform-origin: top;
    z-index: 4;
    transition: transform 0.7s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
    .envelope-flap {
        border-left-width: 220px;
        border-right-width: 220px;
        border-top-width: 150px;
    }
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 170px solid #22060f;
    border-right: 170px solid #22060f;
    border-bottom: 130px solid #2a0812;
    z-index: 3;
    border-radius: 0 0 8px 8px;
}

@media (min-width: 768px) {
    .envelope-front {
        border-left-width: 220px;
        border-right-width: 220px;
        border-bottom-width: 160px;
    }
}

/* Pure 3D Metallic Gold Wax Seal */
.wax-seal-wrapper {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.royal-wax-seal {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFF2B3 0%, #E6C254 30%, #BF953F 60%, #8C6214 85%, #593C07 100%);
    box-shadow: 
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -4px 8px rgba(0, 0, 0, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.5);
    border: 3px double rgba(255, 245, 186, 0.9);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.wax-seal-wrapper:hover .royal-wax-seal {
    transform: scale(1.1);
    box-shadow: 
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -4px 8px rgba(0, 0, 0, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 246, 186, 0.8);
}

.seal-outer-rim {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    border: 1px dashed rgba(89, 60, 7, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.seal-inner-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seal-top-star, .seal-bottom-star {
    font-size: 0.5rem;
    color: #4A3002;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    line-height: 1;
}

.seal-initials {
    font-family: var(--font-script);
    font-size: 1.7rem;
    font-weight: 700;
    color: #3B2400;
    text-shadow: 0 1px 1px rgba(255, 248, 204, 0.6), 0 -1px 1px rgba(0, 0, 0, 0.4);
    line-height: 1;
    letter-spacing: 1px;
    margin: -2px 0;
}

.seal-prompt {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--light-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    animation: bouncePrompt 1.8s infinite ease-in-out;
}

@keyframes bouncePrompt {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Opened Envelope Animation State */
.envelope-open .envelope-flap {
    transform: rotateX(180deg);
    z-index: 1;
}

.envelope-open .envelope-card {
    transform: translateY(-160px);
    z-index: 4;
}

/* --------------------------------------------------------------------------
   5. Main Invitation Container & Sections
   -------------------------------------------------------------------------- */
.invitation-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.invitation-visible {
    opacity: 1;
    pointer-events: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center { text-align: center; }

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--dark-burgundy);
    font-weight: 400;
}

.title-divider {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 25px 50px rgba(45, 10, 20, 0.12), 0 0 25px rgba(212, 175, 55, 0.2);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top, #FFFDF9 0%, #F5EDE4 100%);
}

.gold-flourish {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.invitation-header-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--dark-gold);
    font-weight: 600;
}

.couple-title {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--dark-burgundy);
    line-height: 1.2;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .couple-title {
        font-size: 6.5rem;
    }
}

.ampersand {
    font-family: var(--font-heading);
    font-size: 0.6em;
    color: var(--primary-gold);
    display: inline-block;
    margin: 0 15px;
}

.invitation-subtext {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 35px;
    color: var(--text-muted);
    font-style: italic;
}

.hero-date-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.date-line {
    width: 60px;
    height: 1px;
    background: var(--primary-gold);
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.day-name {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--dark-gold);
}

.full-date {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-burgundy);
}

.time-venue {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--dark-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bounce-arrow {
    animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --------------------------------------------------------------------------
   7. Feature 2: Story & Parallax Section
   -------------------------------------------------------------------------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.story-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .story-img {
    transform: scale(1.04);
}

.frame-gold-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--light-gold);
    border-radius: calc(var(--radius-lg) - 10px);
    pointer-events: none;
}

.love-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-burgundy);
    border-left: 3px solid var(--primary-gold);
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.story-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.signature {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--dark-gold);
    display: block;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   8. Feature 3: Micro-Animated Ticking Countdown Clock
   -------------------------------------------------------------------------- */
.countdown-section {
    background: radial-gradient(circle at center, #2D0A14 0%, #150309 100%);
    color: white;
}

.countdown-section .section-title {
    color: var(--light-gold);
}

.countdown-section .subtitle {
    color: var(--primary-gold);
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .countdown-grid {
        gap: 30px;
    }
}

.countdown-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .countdown-card {
        min-width: 140px;
        padding: 30px 24px;
    }
}

.countdown-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.count-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-gold);
    display: block;
    line-height: 1;
}

@media (min-width: 768px) {
    .count-num {
        font-size: 4rem;
    }
}

/* Pulse animation on tick */
.count-num.pulse {
    animation: numberPulse 0.4s ease;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); color: #FFF; }
    100% { transform: scale(1); }
}

.count-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    display: block;
}

.countdown-colon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    display: none;
}

@media (min-width: 768px) {
    .countdown-colon {
        display: block;
    }
}

/* Button styles */
.gold-btn {
    background: var(--gold-gradient);
    color: var(--dark-burgundy);
    font-weight: 700;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(170, 119, 28, 0.3);
    transition: all 0.3s ease;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.gold-outline-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.gold-outline-btn:hover {
    background: var(--gold-gradient);
    color: var(--dark-burgundy);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------------------------------------
   9. Venue Showcase Section
   -------------------------------------------------------------------------- */
.venue-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .venue-card {
        grid-template-columns: 1fr 1fr;
    }
}

.venue-image-wrapper {
    position: relative;
    height: 350px;
}

@media (min-width: 992px) {
    .venue-image-wrapper {
        height: 100%;
    }
}

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

.venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dark-burgundy);
    color: var(--light-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--primary-gold);
}

.venue-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-burgundy);
    margin-bottom: 10px;
}

.venue-address {
    color: var(--dark-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.venue-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
}

.venue-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--deep-wine);
    color: white;
    padding: 60px 0;
    border-top: 2px solid var(--primary-gold);
}

.footer-monogram {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary-gold);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--light-gold);
    margin-bottom: 10px;
}

.hashtag {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   11. DEDICATED MOBILE LUXURY RESPONSIVE DESIGN SYSTEM (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .section {
        padding: 55px 0;
    }

    .container {
        padding: 0 18px;
    }

    .section-title-wrapper {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    /* Envelope Mobile Positioning */
    #envelope-wrapper {
        padding: 12px;
    }

    .envelope-container {
        width: 310px;
        height: 220px;
    }

    .envelope-card {
        padding: 10px;
    }

    .card-inner {
        padding: 8px;
    }

    .gold-monogram {
        font-size: 1.8rem;
    }

    .envelope-card h2 {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .couple-preview-names {
        font-size: 1.4rem;
        margin: 2px 0;
    }

    .date-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 2px 8px;
    }

    .envelope-flap {
        border-left-width: 155px;
        border-right-width: 155px;
        border-top-width: 110px;
    }

    .envelope-front {
        border-left-width: 155px;
        border-right-width: 155px;
        border-bottom-width: 120px;
    }

    .royal-wax-seal {
        width: 70px;
        height: 70px;
    }

    .seal-outer-rim {
        width: 60px;
        height: 60px;
    }

    .seal-initials {
        font-size: 1.3rem;
    }

    .seal-prompt {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    /* Hero Section Mobile Typography & Layout */
    .hero-section {
        padding: 45px 16px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .invitation-header-tag {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .couple-title {
        font-size: 3.2rem;
        line-height: 1.15;
        margin: 15px 0;
    }

    .name-first, .name-second {
        display: block;
    }

    .ampersand {
        display: block;
        margin: 4px 0;
        font-size: 0.55em;
    }

    .invitation-subtext {
        font-size: 1.05rem;
        margin-bottom: 25px;
        padding: 0 8px;
    }

    .hero-date-box {
        flex-direction: column;
        gap: 10px;
    }

    .date-line {
        width: 40px;
    }

    .full-date {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .time-venue {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Story Section Mobile */
    .story-grid {
        gap: 30px;
    }

    .story-img {
        height: 320px;
        object-fit: cover;
    }

    .love-quote {
        font-size: 1.15rem;
        padding-left: 14px;
        margin-bottom: 18px;
    }

    .story-text {
        font-size: 0.95rem;
    }

    .signature {
        font-size: 2.2rem;
    }

    /* Countdown Grid Mobile (Perfect 4-card touch row) */
    .countdown-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin: 25px 0;
    }

    .countdown-card {
        min-width: unset;
        padding: 16px 4px;
        border-radius: 8px;
    }

    .count-num {
        font-size: 1.7rem;
    }

    .count-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
        margin-top: 4px;
    }

    .countdown-colon {
        display: none;
    }

    /* Buttons Mobile Touch Targets */
    .gold-btn, .gold-outline-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    /* Venue Card Mobile */
    .glass-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .venue-info {
        padding: 20px 5px;
    }

    .venue-name {
        font-size: 1.6rem;
    }

    .venue-address {
        font-size: 0.85rem;
    }

    .venue-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .venue-image-wrapper {
        height: 220px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 45px 16px;
    }

    .footer-monogram {
        font-size: 2.4rem;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    #audio-control-container {
        bottom: 18px;
        right: 18px;
    }

    #music-toggle-btn {
        width: 48px;
        height: 48px;
    }
}
