:root {
    /* Adaptive Luxury Color Palette */
    --deep-charcoal: #1A1410;
    --warm-gold: #C9A24B;
    --gold-light: #E8CA7C;
    --gold-dark: #9F7A2A;
    --gold-glow: rgba(201, 162, 75, 0.4);
    --gold-glow-subtle: rgba(201, 162, 75, 0.15);
    --cream: #F5EBDD;
    --ivory: #E9DFCA;
    --deep-maroon: #5A1F28;
    --maroon-light: #7A2D38;
    --muted-forest: #243B32;
    --forest-deep: #162620;
    
    /* Typography */
    --font-luxury-display: 'Cinzel', serif;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing tokens */
    --section-pad-y: clamp(60px, 9vh, 120px);
    --section-pad-x: clamp(16px, 4vw, 40px);
    --container-max-w: 1280px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--deep-charcoal);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--deep-charcoal);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-ornament {
    color: var(--warm-gold);
    margin-bottom: 12px;
    animation: pulseGold 2s infinite ease-in-out;
}

.loader-ornament svg {
    width: clamp(48px, 12vw, 64px);
    height: auto;
}

#loader h1 {
    font-family: var(--font-luxury-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--warm-gold);
    letter-spacing: clamp(3px, 0.8vw, 6px);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.spinner {
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    border: 2px solid rgba(201, 162, 75, 0.2);
    border-top-color: var(--warm-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 18px;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

#loader p {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    letter-spacing: 3px;
    font-style: italic;
    color: var(--ivory);
    opacity: 0.85;
    text-align: center;
}

/* ==========================================================================
   NAVIGATION & PROGRESS
   ========================================================================== */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 100vh;
    height: 100dvh;
    background: rgba(201, 162, 75, 0.15);
    z-index: 100;
    pointer-events: none;
}

#scroll-progress {
    width: 100%;
    background: linear-gradient(to bottom, var(--warm-gold), var(--gold-light));
    box-shadow: 0 0 8px var(--gold-glow);
    height: 0;
}

/* Side Navigation (Desktop & Large Tablet) */
.side-nav {
    position: fixed;
    right: clamp(12px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
}

.nav-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(233, 223, 202, 0.3);
    border: 1px solid rgba(201, 162, 75, 0.35);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: block;
}

.nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 20, 16, 0.95);
    color: var(--warm-gold);
    padding: 4px 9px;
    font-size: 0.72rem;
    font-family: var(--font-luxury-display);
    letter-spacing: 1px;
    border: 1px solid rgba(201, 162, 75, 0.4);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-dot:hover::after {
    opacity: 1;
    visibility: visible;
}

.nav-dot.active, .nav-dot:hover {
    background: var(--warm-gold);
    border-color: var(--gold-light);
    transform: scale(1.35);
    box-shadow: 0 0 10px var(--gold-glow);
}

@media (max-width: 900px) {
    .side-nav { display: none; }
    #scroll-progress-container { width: 2px; }
}

/* Typography Utilities */
h1, h2, h3 { 
    font-family: var(--font-heading); 
    font-weight: normal; 
}
.gold-text { color: var(--warm-gold); }
.italic { font-style: italic; }

/* ==========================================================================
   HERO SECTION (Kerala Love Story)
   ========================================================================== */
#hero {
    position: relative;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    perspective: 1200px;
    background-color: var(--deep-charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    will-change: transform;
    animation: heroPhotoEntrance 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroPhotoEntrance {
    0% { transform: scale(1.04); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Scrim Overlay */
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: 
        linear-gradient(90deg, 
            rgba(26, 20, 16, 0.95) 0%, 
            rgba(26, 20, 16, 0.88) 32%, 
            rgba(26, 20, 16, 0.48) 50%, 
            rgba(26, 20, 16, 0.08) 66%, 
            transparent 80%
        ),
        linear-gradient(180deg, 
            rgba(26, 20, 16, 0.45) 0%, 
            transparent 22%, 
            transparent 78%, 
            rgba(26, 20, 16, 0.85) 100%
        );
}

/* Floating Golden Petals */
.petals-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: clamp(8px, 1.5vw, 14px);
    height: clamp(12px, 2vw, 18px);
    background: radial-gradient(ellipse at center, rgba(245, 235, 221, 0.85) 0%, rgba(201, 162, 75, 0.5) 70%, transparent 100%);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    pointer-events: none;
    animation: petalFall 12s linear infinite;
}

@keyframes petalFall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(105vh) translateX(120px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(60px, 8vh, 90px) clamp(16px, 5vw, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Left Text Zone */
.hero-text-zone {
    width: 50%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: clamp(8px, 1.4vh, 14px);
}

/* Animation Staggering for Hero Items */
.hero-anim-item {
    opacity: 0;
    transform: translateY(24px);
    animation: heroItemFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroItemFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top Ornament Motif */
.hero-ornament-top {
    color: var(--warm-gold);
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.kerala-flourish {
    width: clamp(60px, 8vw, 80px);
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}

/* Eyebrow Text */
.hero-eyebrow {
    font-family: var(--font-luxury-display);
    font-size: clamp(0.72rem, 1vw, 0.92rem);
    letter-spacing: clamp(3px, 0.5vw, 5px);
    color: var(--warm-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Main Headline */
.hero-headline {
    font-family: var(--font-serif);
    line-height: 1.08;
    margin: 2px 0 4px;
    font-weight: 400;
}

.headline-line1 {
    display: block;
    font-size: clamp(32px, 5.2vw, 84px);
    color: var(--cream);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.headline-line2 {
    display: block;
    font-size: clamp(36px, 5.8vw, 94px);
    color: var(--warm-gold);
    font-style: italic;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 18px rgba(201, 162, 75, 0.3), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.heart-glyph {
    font-style: normal;
    font-size: 0.85em;
    color: var(--warm-gold);
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

/* Decorative Divider */
.hero-gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 2px 0 4px;
    color: var(--warm-gold);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--warm-gold), rgba(201, 162, 75, 0.1));
}

.hero-gold-divider .divider-line:last-child {
    background: linear-gradient(270deg, var(--warm-gold), rgba(201, 162, 75, 0.1));
}

.divider-icon {
    width: 13px;
    height: 13px;
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

/* Romantic Quote Block */
.hero-quote-block {
    position: relative;
    padding-left: clamp(14px, 2vw, 20px);
    border-left: 2px solid rgba(201, 162, 75, 0.45);
    margin: 2px 0 6px;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--warm-gold);
    opacity: 0.8;
    line-height: 0;
    vertical-align: -0.3em;
    display: inline-block;
}

.quote-mark.open { margin-right: 4px; }
.quote-mark.close { margin-left: 4px; }

.hero-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.25vw, 1.22rem);
    font-style: italic;
    color: var(--ivory);
    line-height: 1.55;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Feature Indicators */
.hero-features {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 18px);
    margin: 4px 0;
    padding: clamp(6px, 1vh, 10px) 0;
    border-top: 1px solid rgba(201, 162, 75, 0.22);
    border-bottom: 1px solid rgba(201, 162, 75, 0.22);
    width: 100%;
    max-width: 500px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-icon-wrap {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gold);
    filter: drop-shadow(0 0 4px var(--gold-glow));
    flex-shrink: 0;
}

.feature-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.feature-label {
    font-family: var(--font-luxury-display);
    font-size: clamp(0.62rem, 0.8vw, 0.72rem);
    letter-spacing: clamp(1px, 0.2vw, 2px);
    color: var(--cream);
    opacity: 0.92;
    font-weight: 500;
    white-space: nowrap;
}

.feature-sep {
    width: 1px;
    height: 14px;
    background: rgba(201, 162, 75, 0.35);
    flex-shrink: 0;
}

/* Wedding Date Wrapper */
.hero-date-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 14px);
    margin: 2px 0 8px;
}

.calendar-badge {
    width: clamp(34px, 4vw, 40px);
    height: clamp(34px, 4vw, 40px);
    border-radius: 8px;
    background: rgba(201, 162, 75, 0.15);
    border: 1px solid var(--warm-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gold);
    box-shadow: 0 0 12px var(--gold-glow);
    flex-shrink: 0;
}

.calendar-icon {
    width: clamp(18px, 2.2vw, 22px);
    height: clamp(18px, 2.2vw, 22px);
}

.date-text {
    display: flex;
    flex-direction: column;
}

.date-prefix {
    font-family: var(--font-serif);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-style: italic;
    color: var(--ivory);
    opacity: 0.9;
}

.date-main {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.95rem);
    font-weight: 600;
    color: var(--warm-gold);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 12px var(--gold-glow);
    line-height: 1.2;
}

.date-flourish-right {
    color: var(--warm-gold);
    width: 24px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.date-flourish-right svg {
    width: 100%;
    height: auto;
}

/* Hero Action Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 16px);
    margin-top: 4px;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(11px, 1.6vh, 14px) clamp(20px, 2.2vw, 28px);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    font-weight: 600;
    letter-spacing: clamp(1.2px, 0.2vw, 2px);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(135deg, #1A1410 0%, #243B32 100%);
    border: 1.5px solid var(--warm-gold);
    color: var(--cream);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 14px var(--gold-glow);
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.05rem;
    line-height: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--warm-gold);
    color: #1A1410;
    border-color: var(--gold-light);
    box-shadow: 0 10px 28px rgba(201, 162, 75, 0.6);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(26, 20, 16, 0.45);
    border: 1.5px solid rgba(201, 162, 75, 0.6);
    color: var(--cream);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-play-icon {
    width: 11px;
    height: 11px;
    color: var(--warm-gold);
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--warm-gold);
    background: rgba(201, 162, 75, 0.2);
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-secondary:hover .btn-play-icon {
    transform: scale(1.2);
}

/* Lower Right Quote Card */
.hero-quote-card {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    bottom: clamp(24px, 5vh, 48px);
    max-width: 320px;
    width: 90%;
    background: rgba(26, 20, 16, 0.76);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 162, 75, 0.4);
    border-radius: 14px;
    padding: clamp(14px, 2vh, 20px) clamp(16px, 2vw, 24px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 75, 0.15);
    z-index: 4;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7), 0 0 30px rgba(201, 162, 75, 0.3);
    border-color: var(--warm-gold);
}

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.card-quote-mark {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--warm-gold);
    line-height: 0.8;
    opacity: 0.9;
}

.kerala-palm-icon {
    width: 20px;
    height: 20px;
    color: var(--warm-gold);
    opacity: 0.85;
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.kerala-palm-icon svg {
    width: 100%;
    height: 100%;
}

.quote-card-body {
    font-family: var(--font-serif);
    font-size: clamp(0.88rem, 1.1vw, 0.96rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    text-align: left;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.quote-card-footer {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    color: var(--warm-gold);
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    font-family: var(--font-luxury-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--warm-gold);
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--warm-gold), transparent);
    margin: 6px auto 0;
    animation: scrollLineAnim 2.2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollLineAnim {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================================================
   HERO RESPONSIVE ADAPTATIONS
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-container {
        padding: clamp(60px, 7vh, 80px) clamp(20px, 4vw, 40px);
    }
    .hero-text-zone {
        width: 58%;
        max-width: 560px;
    }
    .hero-quote-card {
        right: 20px;
        bottom: 24px;
        max-width: 270px;
        padding: 14px 18px;
    }
}

@media (max-width: 860px) {
    #hero {
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 30px;
        min-height: auto;
    }
    .hero-bg {
        position: absolute;
    }
    .hero-photo {
        object-position: 72% 20%;
    }
    .hero-scrim {
        background: 
            linear-gradient(180deg, 
                rgba(26, 20, 16, 0.96) 0%, 
                rgba(26, 20, 16, 0.85) 38%, 
                rgba(26, 20, 16, 0.5) 60%, 
                rgba(26, 20, 16, 0.95) 100%
            );
    }
    .hero-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        padding: 48px 20px 32px;
        min-height: auto;
    }
    .hero-text-zone {
        width: 100%;
        max-width: 100%;
        gap: 12px;
    }
    .hero-quote-card {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 36px 16px 24px;
    }
    .headline-line1 {
        font-size: clamp(26px, 7.8vw, 36px);
    }
    .headline-line2 {
        font-size: clamp(30px, 8.8vw, 42px);
    }
    .hero-features {
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 8px 0;
    }
    .feature-sep {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .btn {
        width: 100%;
    }
}

/* Mobile Landscape handling */
@media (max-height: 540px) and (orientation: landscape) {
    #hero {
        min-height: auto;
        padding: 40px 0;
    }
    .hero-container {
        min-height: auto;
        padding: 20px 24px;
    }
    .hero-text-zone {
        width: 60%;
    }
    .hero-quote-card {
        display: none;
    }
}

/* ==========================================================================
   GLOBAL SECTION STYLING & FLUID GRIDS
   ========================================================================== */
section {
    position: relative;
    padding: var(--section-pad-y) var(--section-pad-x);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 860px) {
    section {
        min-height: auto;
        padding: clamp(50px, 8vh, 80px) var(--section-pad-x);
    }
}

.editorial-text {
    max-width: 720px;
    width: 100%;
    text-align: center;
    line-height: 1.8;
}

.editorial-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
    color: var(--warm-gold);
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.editorial-text p.italic {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--ivory);
    margin-bottom: 16px;
}

.editorial-text p:not(.italic) {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    color: var(--cream);
    opacity: 0.92;
}

.divider {
    width: 60px;
    height: 1.5px;
    background: var(--warm-gold);
    margin: 20px auto;
    box-shadow: 0 0 6px var(--gold-glow);
}

/* Two-Column Cards & Tilt Cards */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 60px);
    max-width: var(--container-max-w);
    width: 100%;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.text-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 8px;
    color: var(--warm-gold);
    font-family: var(--font-serif);
}

.text-col h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    margin-bottom: 16px;
    font-style: italic;
    color: var(--ivory);
    opacity: 0.9;
    font-family: var(--font-serif);
}

.text-col p {
    line-height: 1.75;
    color: var(--cream);
    opacity: 0.92;
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
}

.tilt-card {
    border: 1px solid rgba(201, 162, 75, 0.35);
    padding: clamp(6px, 1vw, 10px);
    background: rgba(26, 20, 16, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 162, 75, 0.12);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    width: 100%;
}

.tilt-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 162, 75, 0.3);
    border-color: var(--warm-gold);
}

.tilt-card img {
    width: 100%;
    height: clamp(280px, 45vw, 480px);
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 4px;
}

@media (max-width: 820px) {
    .two-column { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 32px; 
    }
    .tilt-card { 
        transform: none !important; 
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Cinematic Video / Media Section */
.cinematic-media {
    width: 100%;
    height: clamp(260px, 50vh, 560px);
    min-height: auto;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.cinematic-media video, .cinematic-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.45);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
#gallery h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(24px, 4vh, 40px);
    color: var(--warm-gold);
    font-family: var(--font-serif);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-auto-rows: clamp(240px, 30vw, 320px);
    gap: clamp(12px, 1.8vw, 20px);
    width: 100%;
    max-width: var(--container-max-w);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    border: 1px solid rgba(201, 162, 75, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Bento Spans on Desktop */
@media (min-width: 901px) {
    .gallery-item:nth-child(2), .gallery-item:nth-child(5) {
        grid-row: span 2;
    }
    .gallery-item:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(200px, 35vw, 280px);
    }
    .gallery-item:nth-child(n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: clamp(240px, 65vw, 320px);
    }
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: brightness(0.88) contrast(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 35px rgba(0,0,0,0.6);
    pointer-events: none;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.12);
}

.gallery-item:hover::after {
    box-shadow: inset 0 0 20px rgba(201, 162, 75, 0.3);
    border-color: var(--warm-gold);
}

/* ==========================================================================
   COUNTDOWN SECTION
   ========================================================================== */
#countdown-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--warm-gold);
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

#countdown-section p { 
    margin-bottom: clamp(24px, 4vh, 40px); 
    font-style: italic; 
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--ivory);
    text-align: center;
}

#countdown-grid {
    display: flex;
    gap: clamp(12px, 2.5vw, 32px);
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
}

.cd-item {
    display: flex;
    flex-direction: column;
    padding: clamp(14px, 2.5vw, 22px) clamp(14px, 2vw, 24px);
    background: rgba(26, 20, 16, 0.7);
    border: 1px solid rgba(201, 162, 75, 0.3);
    border-radius: 12px;
    flex: 1;
    min-width: 70px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(201, 162, 75, 0.1);
}

.cd-item span:first-child {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: var(--cream);
    line-height: 1.1;
    text-shadow: 0 0 12px var(--gold-glow);
}

.cd-item span:last-child {
    font-family: var(--font-luxury-display);
    font-size: clamp(0.62rem, 0.9vw, 0.75rem);
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    color: var(--warm-gold);
    text-transform: uppercase;
    margin-top: 6px;
}

#countdown-message {
    display: none;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-family: var(--font-luxury-display);
    color: var(--warm-gold);
    letter-spacing: 3px;
    text-align: center;
}

@media (max-width: 480px) {
    #countdown-grid {
        gap: 8px;
    }
    .cd-item {
        padding: 12px 6px;
    }
}

/* ==========================================================================
   EVENT DETAILS SECTION
   ========================================================================== */
#details .two-column { 
    align-items: stretch; 
}

.detail-card {
    border: 1px solid rgba(201, 162, 75, 0.35);
    padding: clamp(28px, 4vw, 44px) clamp(20px, 3.5vw, 36px);
    text-align: center;
    background: rgba(26, 20, 16, 0.85);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 75, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.detail-card:hover {
    transform: translateY(-4px);
    border-color: var(--warm-gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
}

.detail-card h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: var(--warm-gold);
    margin-bottom: 14px;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.detail-card p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--cream);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

/* ==========================================================================
   FOOTER SECTION (Luxury Closing & UnikCorp CTA)
   ========================================================================== */
.site-footer {
    position: relative;
    background-color: var(--deep-charcoal);
    padding: clamp(80px, 12vh, 130px) var(--section-pad-x) clamp(40px, 6vh, 70px);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(201, 162, 75, 0.18);
    width: 100%;
}

.footer-gradient-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(60px, 10vh, 120px);
    background: linear-gradient(to bottom, rgba(26, 20, 16, 0.2) 0%, rgba(26, 20, 16, 1) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 6vh, 52px);
    position: relative;
    z-index: 2;
}

/* Couple Closing */
.footer-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1.5vh, 12px);
    text-align: center;
    width: 100%;
}

.footer-ornament-top {
    color: var(--warm-gold);
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.footer-couple-names {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--cream);
    font-weight: 400;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    line-height: 1.1;
    margin: 4px 0;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.gold-ampersand {
    color: var(--warm-gold);
    font-size: 0.85em;
    margin: 0 clamp(2px, 0.5vw, 6px);
    text-shadow: 0 0 12px var(--gold-glow);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: var(--warm-gold);
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-shadow: 0 2px 10px rgba(201, 162, 75, 0.25);
}

.footer-blessing {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.4vw, 1.22rem);
    color: var(--ivory);
    opacity: 0.92;
    max-width: 560px;
    line-height: 1.6;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    padding: 0 10px;
}

.footer-gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 14px auto 0;
    color: var(--warm-gold);
}

/* Website CTA Card */
.footer-cta-card {
    background: rgba(26, 20, 16, 0.75);
    border: 1px solid rgba(201, 162, 75, 0.28);
    border-radius: 16px;
    padding: clamp(24px, 4.5vw, 38px) clamp(16px, 4vw, 44px);
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 75, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-cta-card:hover {
    border-color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 162, 75, 0.2);
}

.cta-eyebrow {
    font-family: var(--font-luxury-display);
    font-size: clamp(0.68rem, 0.9vw, 0.76rem);
    letter-spacing: clamp(2px, 0.4vw, 3.5px);
    color: var(--warm-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    color: var(--cream);
    font-weight: 500;
    margin: 2px 0 0;
    line-height: 1.35;
}

.cta-subtext {
    font-family: var(--font-serif);
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-style: italic;
    color: var(--ivory);
    opacity: 0.88;
    margin-bottom: 8px;
    max-width: 500px;
    line-height: 1.5;
}

/* CTA Buttons Container */
.footer-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.8vw, 18px);
    margin: 8px 0;
    flex-wrap: wrap;
    width: 100%;
}

/* Primary Contact Button */
.footer-contact-btn {
    background: linear-gradient(135deg, #1A1410 0%, #3D141B 100%);
    border: 1.5px solid var(--warm-gold);
    color: var(--cream);
    padding: clamp(12px, 1.6vh, 14px) clamp(24px, 2.5vw, 32px);
    border-radius: 50px;
    font-family: var(--font-luxury-display);
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: clamp(1.5px, 0.25vw, 2.2px);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 14px var(--gold-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
}

.footer-contact-btn:hover {
    background: var(--warm-gold);
    color: var(--deep-charcoal);
    border-color: var(--gold-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(201, 162, 75, 0.55);
}

.footer-contact-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.footer-contact-btn:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

/* Secondary WhatsApp Button */
.footer-whatsapp-btn {
    background: rgba(36, 59, 50, 0.45);
    border: 1.5px solid rgba(201, 162, 75, 0.65);
    color: var(--cream);
    padding: clamp(12px, 1.6vh, 14px) clamp(22px, 2.2vw, 28px);
    border-radius: 50px;
    font-family: var(--font-luxury-display);
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: clamp(1.5px, 0.25vw, 2.2px);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.whatsapp-icon {
    width: 17px;
    height: 17px;
    color: var(--warm-gold);
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.footer-whatsapp-btn:hover {
    background: rgba(36, 59, 50, 0.9);
    border-color: var(--warm-gold);
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25), 0 0 16px var(--gold-glow);
}

.footer-whatsapp-btn:hover .whatsapp-icon {
    color: #25D366;
    transform: scale(1.1);
}

.footer-whatsapp-btn:hover .btn-arrow {
    transform: translate(2px, -2px);
}

.footer-whatsapp-btn:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

/* Small UnikCorp Website Link */
.footer-website-link-wrap {
    margin-top: 4px;
}

.footer-website-link {
    font-family: var(--font-luxury-display);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    letter-spacing: 2px;
    color: var(--warm-gold);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.25s ease;
    border-bottom: 1px dotted rgba(201, 162, 75, 0.35);
    padding-bottom: 2px;
}

.footer-website-link:hover {
    opacity: 1;
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold-glow);
    border-bottom-color: var(--warm-gold);
}

@media (max-width: 580px) {
    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .footer-contact-btn,
    .footer-whatsapp-btn {
        width: 100%;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}
