:root {
    --bg-ivory: #FFFFF0;
    --bg-cream: #FDF5E6;
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --text-primary: #4B3E2F;
    --text-secondary: #6B5E4F;
    --peach: #FFDAB9;
    --rose: #FFC0CB;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Great Vibes', cursive;
    --font-calligraphy: 'Allura', cursive;
    --transition: 0.8s ease-in-out;
}

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

body {
    background-color: var(--bg-ivory);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

.cormorant { font-family: var(--font-heading); }
.montserrat { font-family: var(--font-body); }
.allura { font-family: var(--font-calligraphy); }
.hidden { display: none !important; }

/* Entrance Screen Sliding Doors */
#entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: visibility 2s;
    overflow: hidden;
    background: radial-gradient(ellipse 85% 75% at 50% 45%, #fffefb 0%, #f7efe3 55%, #ebe2d4 100%);
}

.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bg-ivory);
    background-image:
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 0%, transparent 40%, transparent 60%, rgba(212, 175, 55, 0.04) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 10;
    border: 3px double var(--gold);
    will-change: transform;
    backface-visibility: hidden;
}

.door-left {
    left: 0;
    border-right: 1px solid var(--gold);
}

.door-right {
    right: 0;
    border-left: 1px solid var(--gold);
}

#entrance-overlay.open-doors .door-left {
    transform: translate3d(-100%, 0, 0);
}

#entrance-overlay.open-doors .door-right {
    transform: translate3d(100%, 0, 0);
}

#entrance-overlay.open-doors .entrance-content {
    opacity: 0;
    pointer-events: none;
}

.entrance-content {
    position: relative;
    z-index: 20;
    max-width: 26rem;
    width: 90%;
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.35rem, 4vw, 2rem);
    text-align: center;
    background: linear-gradient(165deg, #fffffd 0%, #faf6f0 48%, #f3ebe0 100%);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.45),
        0 0 0 6px rgba(255, 255, 255, 0.95),
        0 0 0 7px rgba(212, 175, 55, 0.12),
        0 32px 64px rgba(75, 62, 47, 0.14);
    transition: opacity 0.8s ease;
}

.entrance-content::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.entrance-card-surface {
    position: relative;
    z-index: 1;
}

.entrance-content.fade-in {
    animation: entranceReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.entrance-kicker {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    display: inline-block;
    min-width: 8rem;
}

.entrance-ganesha {
    width: 72px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.35));
}

.entrance-preface {
    font-size: 0.98rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin: 0 0 0.35rem;
}

.entrance-names {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: clamp(3.1rem, 11vw, 4.5rem);
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0.2rem 0 0.85rem;
}

.entrance-name {
    display: block;
}

.entrance-ampersand {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.42em;
    color: var(--gold-dark);
    margin: 0.08em 0 0.12em;
    letter-spacing: 0.02em;
}

.entrance-calligraphy {
    font-family: var(--font-calligraphy);
    font-size: clamp(1.85rem, 5.5vw, 2.45rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--gold-dark);
    margin: 0 0 0.35rem;
}

.entrance-subline {
    font-size: 1.02rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0 0 1.1rem;
    letter-spacing: 0.02em;
}

.entrance-flourish {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 1.1rem;
    letter-spacing: 0.35em;
}

#enter-btn.entrance-cta {
    padding: 0.9rem 2.1rem;
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#enter-btn.entrance-cta:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

@media (max-width: 380px) {
    .entrance-kicker {
        letter-spacing: 0.35em;
    }
}

/* Floral Corner Decorations */
.floral-decoration {
    position: fixed;
    width: 250px;
    height: 250px;
    z-index: 50;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.top-left {
    top: -30px;
    left: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FFDAB9' d='M20,10 Q40,30 20,50 Q10,30 20,10'/%3E%3Cpath fill='%23FFC0CB' d='M10,20 Q30,40 50,20 Q30,10 10,20'/%3E%3Ccircle fill='%23D4AF37' cx='20' cy='20' r='2'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.top-right {
    top: -30px;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FFDAB9' d='M80,10 Q60,30 80,50 Q90,30 80,10'/%3E%3Cpath fill='%23FFC0CB' d='M90,20 Q70,40 50,20 Q70,10 90,20'/%3E%3Ccircle fill='%23D4AF37' cx='80' cy='20' r='2'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.bottom-left {
    bottom: -30px;
    left: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FFDAB9' d='M20,90 Q40,70 20,50 Q10,70 20,90'/%3E%3Cpath fill='%23FFC0CB' d='M10,80 Q30,60 50,80 Q30,90 10,80'/%3E%3Ccircle fill='%23D4AF37' cx='20' cy='80' r='2'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.bottom-right {
    bottom: -30px;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FFDAB9' d='M80,90 Q60,70 80,50 Q90,70 80,90'/%3E%3Cpath fill='%23FFC0CB' d='M90,80 Q70,60 50,80 Q70,90 90,80'/%3E%3Ccircle fill='%23D4AF37' cx='80' cy='80' r='2'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

/* Sections Styling */
.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Hero V2 (Split Screen) */
.hero-v2 {
    background: linear-gradient(135deg, #fff 0%, var(--bg-cream) 100%);
    padding: 0;
}

.hero-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

.hero-image-side {
    flex: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-cream);
    padding: 2rem;
    position: relative;
}

.main-portrait-frame {
    width: 100%;
    height: 80%;
    max-width: 500px;
    padding: 15px;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--gold);
    transform: rotate(-2deg);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.main-portrait-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text-side {
    flex: 1.2;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mandap-arch-v2 {
    width: 100%;
    max-width: 650px;
    padding: 4rem 2rem;
    border: 3px solid var(--gold);
    border-radius: 50% 50% 0 0;
    position: relative;
    background: rgba(255, 255, 255, 0.673);
    backdrop-filter: blur(10px);
}

.mandap-arch-v2::before {
    content: '';
    position: absolute;
    top: 5px; right: 5px; bottom: 0; left: 5px;
    border: 1px solid var(--gold);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.ganesha-hero {
    width: 90px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.invitation-title {
    font-size: 1.2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 3rem;
}

.couple-names-v2 h2 {
    font-size: 4rem;
    color: var(--gold-dark);
    margin: 1rem 0;
    font-weight: 500;
}

.ampersand-v2 {
    font-size: 3rem;
    color: var(--gold);
    margin: 1rem 0;
    font-style: italic;
}

/* Landscape Banner */
.landscape-banner {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.landscape-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 240, 0.2), rgba(75, 62, 47, 0.4));
    display: flex;
    justify-content: center;
    align-items: center;
}

.romantic-quote {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: white;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.4);
    font-weight: 400;
}

/* Event card section — soft ceremonial backdrop */
#event-card-section {
    background-color: var(--bg-cream);
    background-image:
        radial-gradient(ellipse 120% 70% at 50% 0%, rgba(212, 175, 55, 0.18), transparent 58%),
        radial-gradient(circle at 8% 75%, rgba(255, 218, 185, 0.45), transparent 42%),
        radial-gradient(circle at 92% 30%, rgba(255, 192, 203, 0.28), transparent 38%),
        linear-gradient(175deg, #fffef9 0%, var(--bg-cream) 42%, #f8ecd8 100%);
    background-repeat: no-repeat;
}

#event-card-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L32 12 L39 10 L35 16 L42 20 L34 21 L30 28 L26 21 L18 20 L25 16 L21 10 L28 12 Z' fill='%23D4AF37' fill-opacity='0.06'/%3E%3C/svg%3E");
    background-size: 72px 72px;
    pointer-events: none;
    opacity: 0.85;
}

#event-card-section .content-container {
    position: relative;
    z-index: 1;
}

/* Save the Date Card */
.save-the-date-card {
    background: white;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.save-the-date-card::before {
    content: '';
    position: absolute;
    top: 10px; right: 10px; bottom: 10px; left: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.date-main {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin: 1rem 0;
}

.malayalam-date {
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 2rem 0;
}

.muhurtham-venue-row {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

.reception-row .venue-name {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin: 1rem 0;
}

.gold-btn {
    margin-top: 2rem;
    background: linear-gradient(135deg, #A8894F, #D4AF37);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(168, 137, 79, 0.3);
    transition: all 0.3s ease;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 137, 79, 0.4);
}

/* Info Grid (Right/Left) */
.flex-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
}

.info-card {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}

.directions-card {
    flex: 1;
}

.info-header {
    padding: 2rem;
}

.loc-icon {
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.info-header h4 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 1rem 0;
}

.info-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #fcfaf7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23D4AF37' opacity='0.2'/%3E%3C/svg%3E");
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.map-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
}

.open-maps-btn {
    background: white;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.open-maps-btn:hover {
    background: var(--gold);
    color: white;
}

.message-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.awaiting-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-left: 5px solid var(--gold-dark);
}

.accent-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.great-vibes-accent {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.great-vibes-names {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ornament-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.ornament-dots span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}

.quote-card {
    padding: 3rem 2rem;
    background-color: #FDFaf0;
    position: relative;
}

.blessing-text {
    font-style: italic;
    font-size: 1.2rem;
    color: #6B5E4F;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.heart-watermark {
    position: absolute;
    bottom: 5px;
    right: 15px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.08;
    transform: rotate(15deg);
}

/* Music Control */
#music-control {
    position: fixed;
    bottom: max(28px, env(safe-area-inset-bottom, 0px));
    right: max(28px, env(safe-area-inset-right, 0px));
    z-index: 1000;
}

#music-toggle.music-fab {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, filter 0.28s ease;
}

#music-toggle.music-fab:hover {
    transform: scale(1.06);
}

#music-toggle.music-fab:active {
    transform: scale(0.96);
}

#music-toggle.music-fab:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 4px;
}

.music-fab-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    background: conic-gradient(
        from 210deg,
        rgba(212, 175, 55, 0.35),
        rgba(255, 255, 255, 0.95),
        rgba(212, 175, 55, 0.45),
        rgba(184, 134, 11, 0.3),
        rgba(212, 175, 55, 0.35)
    );
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 10px 28px rgba(75, 62, 47, 0.16);
}

.music-fab-core {
    position: relative;
    z-index: 1;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding-bottom: 2px;
    background: linear-gradient(165deg, #fffffe 0%, #faf5eb 55%, #f3ebe0 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#music-toggle.music-fab .music-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
    color: var(--gold-dark);
    filter: drop-shadow(0 1px 1px rgba(75, 62, 47, 0.1));
}

#music-toggle.music-fab .music-svg {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

#music-toggle.music-fab .music-svg-on {
    opacity: 1;
    transform: scale(1);
}

#music-toggle.music-fab .music-svg-off {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

#music-toggle.music-fab.music-is-off .music-svg-on {
    opacity: 0;
    transform: scale(0.92);
}

#music-toggle.music-fab.music-is-off .music-svg-off {
    opacity: 1;
    transform: scale(1);
    pointer-events: none;
}

#music-toggle.music-fab .status-text {
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    line-height: 1;
    white-space: nowrap;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* With Best Compliments Section */
.compliments-card {
    background: white;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
}

.floral-accent-top {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.compliments-names p {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 1rem 0;
}

.card-divider-short {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
}

.gold-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #A8894F, #D4AF37);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(168, 137, 79, 0.3);
    transition: all 0.3s ease;
}

.gold-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(168, 137, 79, 0.4);
}

.call-icon { font-size: 1.2rem; }

/* Countdown Timer Styles */
#timer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.time-val {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer & Brand Styles */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.powered-by {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-link {
    text-decoration: none;
    color: var(--gold-dark);
    font-size: 2rem;
    transition: transform 0.3s;
    font-weight: 400;
}

.brand-link:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .flex-row { flex-direction: column; }
    .hero-split { flex-direction: column-reverse; }
    .hero-image-side { height: 60vh; width: 100%; border-bottom: 1px solid var(--gold); }
    .hero-text-side { width: 100%; padding: 4rem 1.5rem; }
    .save-the-date-card { width: 95%; }
}

@media (max-width: 768px) {
    #timer { gap: 1rem; }
    .timer-segment { width: 70px; }
    .time-val { font-size: 2.5rem; }
    .muhurtham-venue-row { flex-direction: column; gap: 1rem; }
    .date-main { font-size: 2.5rem; }
    .great-vibes-names { font-size: 2.8rem; }
    .compliments-card { padding: 3rem 1.5rem; }
    .brand-link { font-size: 1.5rem; }

    /* Hero: hide portrait column; couple photo as soft backdrop inside mandap only */
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-side {
        display: none;
    }

    .hero-text-side {
        width: 100%;
        flex: 1;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 3rem 1.25rem;
        position: relative;
        overflow: hidden;
    }

    .hero-text-side::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url('1.jpeg') center / cover no-repeat;
        opacity: 0.48;
        pointer-events: none;
    }

    .hero-text-side .mandap-arch-v2 {
        position: relative;
        z-index: 1;
        overflow: hidden;
        isolation: isolate;
        background: rgba(255, 253, 248, 0.963);
        backdrop-filter: blur(19px);
        -webkit-backdrop-filter: blur(26px);
    }

    .hero-text-side .mandap-arch-v2::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: 50% 50% 0 0;
        background: url('1.jpeg') center / cover no-repeat;
        opacity: 0.20;
        pointer-events: none;
    }

    .hero-text-side .mandap-arch-v2::before {
        z-index: 1;
    }

    .hero-text-side .mandap-arch-v2 > * {
        position: relative;
        z-index: 2;
    }

    /* Quote block first, full photo visible below (no overlay crop) */
    .landscape-banner {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .landscape-banner .banner-overlay {
        position: relative;
        order: 1;
        width: 100%;
        height: auto;
        min-height: 0;
        flex: 0 0 auto;
        padding: 2.25rem 1.25rem 2.5rem;
        background: linear-gradient(180deg, #fffefb 0%, #f5ebe0 55%, #ebe2d4 100%);
        justify-content: center;
        align-items: center;
    }

    .landscape-banner .romantic-quote {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        color: var(--gold-dark);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
        text-align: center;
        line-height: 1.15;
        max-width: 20ch;
    }

    .landscape-banner .landscape-photo {
        order: 2;
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 78vh;
        max-height: min(78dvh, 900px);
        margin: 0 auto;
        flex: 0 1 auto;
        object-fit: contain;
        object-position: center center;
        filter: brightness(1);
        background: linear-gradient(180deg, #ebe2d4 0%, #f7efe3 40%, #faf6ef 100%);
    }
}
