/* ================================================
   WEDDING — Ultra Premium Mobile-First Design
   ================================================ */

:root {
    --c-bg: #fafaf8;
    --c-bg-alt: #f2f0ec;
    --c-surface: #ffffff;
    --c-text: #1a1a1a;
    --c-text-secondary: #6b6b6b;
    --c-text-tertiary: #999;
    --c-accent: #c1440e;
    --c-accent-light: #c1440e18;
    --c-accent-hover: #a03a0b;
    --c-gold: #d4af37;
    --c-gold-light: #d4af3720;
    --c-saffron: #e86c24;
    --c-border: rgba(0,0,0,0.06);
    --c-dark: #0a0a0a;
    --c-dark-surface: #161616;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-display: 'Cormorant', serif;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: calc(80px + var(--safe-bottom));
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { display: block; max-width: 100%; height: auto; }
input, select, textarea { font: inherit; border: none; outline: none; background: none; }
ul, ol { list-style: none; }

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--c-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-ring {
    width: 48px; height: 48px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--c-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    letter-spacing: 4px;
}

/* ===== BOTTOM NAV (Mobile Native) ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem 0.5rem calc(0.5rem + var(--safe-bottom));
    box-shadow: 0 -2px 20px rgba(0,0,0,0.04);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    border-radius: 12px;
    color: var(--c-text-tertiary);
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.bottom-nav-item svg { width: 22px; height: 22px; }
.bottom-nav-item span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.3px; }
.bottom-nav-item.active { color: var(--c-accent); }
.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
}

.bottom-nav-cta {
    background: var(--c-accent);
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 50px;
    margin-top: -12px;
    box-shadow: 0 4px 16px rgba(193,68,14,0.35);
}
.bottom-nav-cta::before { display: none !important; }
.bottom-nav-cta span { color: #fff; }

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: calc(var(--safe-top) + 8px) 0 8px;
    transition: all 0.35s var(--ease);
    pointer-events: none;
}
.top-bar.visible {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--c-border);
    pointer-events: all;
    box-shadow: var(--shadow-xs);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.top-bar-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.top-bar.visible .top-bar-logo { opacity: 1; pointer-events: all; }
.top-bar-date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--c-text-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.top-bar.visible .top-bar-date { opacity: 1; }
.top-bar-menu {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 50%;
    pointer-events: all;
    -webkit-tap-highlight-color: transparent;
}
.top-bar-menu span {
    width: 18px;
    height: 1.5px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.top-bar-menu.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.top-bar-menu.active span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 790;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}
.fullscreen-menu.open { opacity: 1; visibility: visible; }

.menu-nav { display: flex; flex-direction: column; align-items: center; gap: 0; }
.menu-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0.6rem 2rem;
    color: var(--c-text);
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.menu-link:hover, .menu-link:active { color: var(--c-accent); }
.menu-link-cta {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 2px;
    background: var(--c-accent);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(20,10,5,0.55) 75%,
        rgba(10,5,2,0.82) 100%
    );
}

.hero-mandap-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}
.hero-mandap-border::before {
    content: '⟡';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    padding: 0 8px;
    color: rgba(212,175,55,0.6);
    font-size: 0.9rem;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem calc(4rem + var(--safe-bottom));
    color: #fff;
}

.hero-blessings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 1.25rem;
}
.hero-blessing {
    font-size: 0.92rem;
    font-weight: 500;
    color: #d6a878;
    letter-spacing: 1.5px;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
    line-height: 1.7;
}

.hero-badge {
    margin-bottom: 1rem;
}
.hero-badge span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.hero-title {
    margin-bottom: 0.75rem;
}
.hero-name {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 12vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
}
.hero-and {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--c-gold);
    margin: 0.2rem 0;
    opacity: 0.9;
}

.hero-location {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.hero-countdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cd-block { text-align: center; min-width: 48px; }
.cd-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}
.cd-label {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    display: block;
}
.cd-sep {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    margin-top: -0.8rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(193,68,14,0.35);
    transition: all 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.hero-btn svg { width: 16px; height: 16px; }
.hero-btn:active { transform: scale(0.96); }

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: none;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ===== SECTIONS ===== */
.section { padding: 4rem 1.25rem; }
.section-alt { background: var(--c-bg-alt); }
.container { max-width: 1100px; margin: 0 auto; }

.sec-header { text-align: center; margin-bottom: 3rem; }
.sec-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-saffron);
    margin-bottom: 0.6rem;
}
.sec-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.sec-desc {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== COUPLE / STORY ===== */
.story-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.story-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
}
.story-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-accent-light);
}
.story-card-img img { width: 100%; height: 100%; object-fit: cover; }
.story-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.story-role {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-saffron);
    display: block;
    margin-bottom: 0.5rem;
}
.story-card-body p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
}
.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}
.timeline-track { position: relative; padding-left: 1.5rem; }
.timeline-track::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 5px;
    width: 1px;
    background: linear-gradient(to bottom, var(--c-saffron), rgba(232,108,36,0.2));
}
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-bg);
    border: 2px solid var(--c-saffron);
    margin-left: 0.5px;
}
.timeline-dot.active { background: var(--c-accent); box-shadow: 0 0 0 4px var(--c-accent-light); }
.timeline-date {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-saffron);
}
.timeline-content strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    margin: 0.2rem 0 0.3rem;
}
.timeline-content p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
}

/* ===== EVENTS ===== */
.events-scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.event-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.event-card:active { transform: scale(0.98); }
.event-card-featured { border-color: var(--c-accent); box-shadow: var(--shadow-md), 0 0 0 1px var(--c-accent); }

.event-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.event-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.event-card:hover .event-card-header img { transform: scale(1.05); }
.event-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    color: var(--c-text);
}
.badge-gold { background: var(--c-accent); color: #fff; }

.event-card-body { padding: 1.5rem; }
.event-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
}
.event-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.event-card-body > p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.event-footer { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.event-venue-tag, .event-dress-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: var(--c-bg-alt);
    color: var(--c-text-secondary);
}
.event-dress-tag { background: var(--c-accent-light); color: var(--c-accent); }

/* ===== VENUE ===== */
.venue-hero {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 260px;
    margin-bottom: 1.5rem;
}
.venue-hero img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}
.venue-hero-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
}
.venue-hero-overlay p { font-size: 0.85rem; opacity: 0.7; margin-top: 0.25rem; }

/* Elegant illustrative venue hero (no stock photo) */
.venue-hero--elegant {
    display: flex;
    align-items: flex-end;
    background:
        radial-gradient(120% 90% at 50% 20%, #3a1e0f 0%, #24140b 55%, #150b06 100%),
        #1a0e08;
    color: #f4e4c3;
    isolation: isolate;
}
.venue-hero--elegant::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 12% 12%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(50% 50% at 88% 100%, rgba(193, 68, 14, 0.22), transparent 60%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px);
    pointer-events: none;
    z-index: 0;
}
.venue-hero-motif {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(212, 175, 55, 0.55);
    z-index: 1;
    pointer-events: none;
}
.venue-hero-motif svg {
    width: 78%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(212,175,55,0.15));
}
.venue-hero--elegant .venue-hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(21, 11, 6, 0.9) 0%, rgba(21, 11, 6, 0.55) 55%, transparent 100%);
    color: #f7e9c8;
}
.venue-hero-eyebrow {
    display: block;
    font-family: 'Noto Sans Devanagari', var(--font-serif), serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    color: #d4af37;
    margin-bottom: 0.35rem;
    opacity: 0.9;
}
.venue-hero-sub {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--f-body, 'Inter', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 233, 200, 0.7);
}

.venue-info { display: flex; flex-direction: column; gap: 1rem; }
.venue-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--c-border);
}
.venue-info-card svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--c-accent); margin-top: 2px; }
.venue-info-card strong { display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--c-accent); margin-bottom: 0.3rem; }
.venue-info-card p { font-size: 0.85rem; color: var(--c-text-secondary); line-height: 1.5; }

.venue-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-accent);
    padding: 1rem 1.5rem;
    background: var(--c-surface);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-xs);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.venue-map-link svg { width: 18px; height: 18px; }
.venue-map-link:active { transform: scale(0.97); }

/* ===== GALLERY ===== */
.gallery-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.gallery-col { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-col-desktop { display: none; }
.gallery-img {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: auto;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-img:active img { transform: scale(1.05); }

/* ===== WEDDING PARTY ===== */
.party-grid { display: flex; flex-direction: column; gap: 3rem; }
.party-side-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--c-saffron);
}
.party-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.party-member {
    text-align: center;
}
.party-member img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.75rem;
    border: 2px solid var(--c-border);
}
.party-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: #7a1e32;
    background: linear-gradient(145deg, #fff8f0, #f0e0d0);
    border: 2px solid rgba(122, 30, 50, 0.2);
}
.party-member strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.35;
}
.party-member span {
    font-size: 0.7rem;
    color: var(--c-text-tertiary);
    letter-spacing: 0.5px;
}

/* ===== TABS (Details Section) ===== */
.tabs-nav {
    display: flex;
    gap: 0;
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 4px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--c-border);
}
.tab-btn {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--c-text-secondary);
    border-radius: calc(var(--r-md) - 4px);
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.tab-btn.active {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(193,68,14,0.25);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.3s var(--ease); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.info-card {
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--c-border);
}
.info-card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.85rem; color: var(--c-text-secondary); line-height: 1.6; }
.info-note {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-saffron);
    padding-left: 0.75rem;
    border-left: 2px solid var(--c-saffron);
}

.info-card-btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-accent);
    padding: 0.6rem 1.2rem;
    border: 1.5px solid var(--c-accent);
    border-radius: 50px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.info-card-btn:active { background: var(--c-accent); color: #fff; }

.hotel-list { margin-top: 0.5rem; }
.hotel-list li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    border-bottom: 1px solid var(--c-border);
}
.hotel-list li:last-child { border-bottom: none; }
.hotel-list strong { color: var(--c-text); }

.registry-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--c-text-tertiary);
    margin-top: 1.5rem;
    font-style: italic;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--c-border);
}
.faq-item summary {
    padding: 1.2rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--c-accent);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.7;
    padding-bottom: 1.2rem;
}

/* ===== RSVP ===== */
.rsvp-wrap { max-width: 600px; margin: 0 auto; }
.rsvp-form {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 0.75rem; }
.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--c-text-secondary);
    margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--c-bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--c-accent);
    background: var(--c-surface);
    box-shadow: 0 0 0 3px var(--c-accent-light);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Chips (Event checkboxes) */
.chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.3rem; }
.chip {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.chip input { display: none; }
.chip span {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    background: var(--c-bg-alt);
    border: 1.5px solid var(--c-border);
    color: var(--c-text-secondary);
    transition: all 0.2s ease;
}
.chip input:checked + span {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(193,68,14,0.2);
}

/* Toggle (Radio) */
.toggle-group { display: flex; gap: 0.75rem; margin-top: 0.3rem; }
.toggle-option { cursor: pointer; flex: 1; -webkit-tap-highlight-color: transparent; }
.toggle-option input { display: none; }
.toggle-option span {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.85rem 1rem;
    border-radius: var(--r-sm);
    background: var(--c-bg-alt);
    border: 1.5px solid var(--c-border);
    color: var(--c-text-secondary);
    transition: all 0.2s ease;
}
.toggle-option input:checked + span {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(193,68,14,0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--r-sm);
    margin-top: 1rem;
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.submit-btn:active { transform: scale(0.97); }
.submit-btn:disabled { opacity: 0.7; pointer-events: none; }
.submit-btn.loading .submit-text { opacity: 0; }
.submit-btn.loading .submit-loader { opacity: 1; }
.submit-loader {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.6s linear infinite;
}

/* RSVP Success */
.rsvp-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}
.rsvp-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.success-check {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-saffron));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: popIn 0.5s var(--ease-spring);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-check svg { width: 28px; height: 28px; color: #fff; }
.rsvp-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.rsvp-success p { font-size: 0.9rem; color: var(--c-text-secondary); }

/* ===== FOOTER ===== */
.footer {
    background: var(--c-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--c-gold);
    margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.footer-hash {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--c-gold);
    margin: 1rem 0 1.5rem;
}
.footer-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.footer-links a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}
.footer-links a:active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.footer-links svg { width: 18px; height: 18px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
.anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ===== DESKTOP RESPONSIVE (Upward) ===== */
@media (min-width: 640px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .info-cards { grid-template-columns: 1fr 1fr; }
    .events-scroll { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .bottom-nav { display: none; }
    .hero-scroll { display: flex; }

    .section { padding: 6rem 2rem; }
    .sec-header { margin-bottom: 4rem; }

    .story-cards { grid-template-columns: 1fr 1fr; }
    .story-card { padding: 1.5rem; }
    .story-card-img { width: 100px; height: 100px; }

    .event-card-header { height: 220px; }

    .gallery-masonry { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
    .gallery-col-desktop { display: flex; }

    .party-grid { flex-direction: row; gap: 4rem; }
    .party-section { flex: 1; }
    .party-member img { width: 88px; height: 88px; }
    .party-member strong { font-size: 0.85rem; }

    .venue-hero { height: 360px; }

    .rsvp-form { padding: 3rem 2.5rem; }
}

@media (min-width: 1024px) {
    .top-bar { padding: calc(var(--safe-top) + 16px) 0 16px; }
    .top-bar-inner { padding: 0 3rem; }

    .hero-body { padding: 4rem 3rem 5rem; max-width: 700px; }
    .hero-name { font-size: 5.5rem; }

    .section { padding: 8rem 3rem; }

    .story-cards { gap: 2rem; }
    .story-card { padding: 2rem; gap: 1.5rem; }
    .story-card-img { width: 120px; height: 120px; }

    .events-scroll { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .event-card:active { transform: scale(1); }

    .gallery-img:hover img { transform: scale(1.05); }
    .gallery-img:active img { transform: scale(1.05); }

    .info-cards { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

    .venue-hero { height: 450px; border-radius: var(--r-xl); }
    .venue-info { flex-direction: row; flex-wrap: wrap; }
    .venue-info-card { flex: 1; min-width: 200px; }

    .footer-links a:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
    .info-card-btn:hover { background: var(--c-accent); color: #fff; }
    .hero-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(193,68,14,0.4); }
}

@media (min-width: 1280px) {
    .events-scroll { grid-template-columns: repeat(4, 1fr); }
    .event-card-header { height: 200px; }
}

/* ===== HERO ACTIONS (Floating Pills) ===== */
.hero-actions {
    position: absolute;
    bottom: calc(5rem + var(--safe-bottom));
    right: 1.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-action-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.hero-action-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-action-pill:active { transform: scale(0.94); background: rgba(255,255,255,0.2); }

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--c-dark);
    padding: 2rem 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.stats-strip::-webkit-scrollbar { display: none; }
.stats-scroll {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    min-width: max-content;
    padding: 0 1rem;
}
.stat-item {
    text-align: center;
    min-width: 80px;
}
.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--c-gold);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.4rem;
}

/* ===== CAROUSEL ===== */
.carousel {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}
.carousel-track {
    display: flex;
    transition: transform 0.4s var(--ease);
    touch-action: pan-y;
    cursor: grab;
}
.carousel-track:active { cursor: grabbing; }
.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/3;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
}
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 6px;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.carousel-dot.active {
    width: 18px;
    border-radius: 3px;
    background: #fff;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

/* Mini Gallery Grid */
.gallery-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.gallery-mini-grid .gallery-img {
    border-radius: var(--r-sm);
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-mini-grid .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.gallery-mini-grid .gallery-img:active img { transform: scale(1.08); }

.gallery-credit {
    margin: 1.4rem auto 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
}
.gallery-credit a {
    color: var(--c-accent, #c1440e);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}
.gallery-credit a:hover { opacity: 0.75; }

/* ===== BLESSINGS WALL ===== */
.blessings-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.blessings-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px dashed var(--c-border);
    border-radius: var(--r-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(212,175,55,0.04));
    color: var(--c-text-secondary);
}
.blessings-empty-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: var(--c-gold, #d4af37);
    margin-bottom: 0.25rem;
}
.blessings-empty-icon svg { width: 22px; height: 22px; }
.blessings-empty strong {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-text);
}
.blessings-empty p {
    max-width: 320px;
    font-size: 0.85rem;
    line-height: 1.55;
}
.blessings-feed[data-empty="true"] { display: block; }

.blessings-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.blessing-card {
    display: flex;
    gap: 1rem;
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--c-border);
    animation: slideIn 0.4s var(--ease);
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.blessing-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-saffron));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.blessing-body strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}
.blessing-body p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
}
.blessing-time {
    font-size: 0.7rem;
    color: var(--c-text-tertiary);
    margin-top: 0.4rem;
    display: block;
}

.blessing-form {
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
}
.blessing-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.blessing-form input,
.blessing-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--c-bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    color: var(--c-text);
    transition: border-color 0.2s ease;
}
.blessing-form input:focus,
.blessing-form textarea:focus {
    border-color: var(--c-accent);
    outline: none;
}
.blessing-form textarea { resize: none; }
.blessing-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.blessing-submit svg { width: 14px; height: 14px; }
.blessing-submit:active { transform: scale(0.95); }

/* ===== MUSIC PLAYER (Floating) ===== */
.music-player {
    position: fixed;
    bottom: calc(90px + var(--safe-bottom));
    left: 1rem;
    z-index: 850;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(20,20,20,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transform: translateY(120%);
    transition: transform 0.4s var(--ease);
}
.music-player.visible { transform: translateY(0); }

.music-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.music-toggle svg { width: 14px; height: 14px; color: #fff; }
.music-icon-pause { display: none; }
.music-player.playing .music-icon-play { display: none; }
.music-player.playing .music-icon-pause { display: block; }

.music-info { max-width: 120px; }
.music-title {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.music-progress {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}
.music-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--c-accent);
    border-radius: 2px;
    transition: width 0.3s linear;
}

.music-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}
.music-visualizer span {
    width: 2px;
    height: 4px;
    background: var(--c-accent);
    border-radius: 1px;
    transition: height 0.15s ease;
}
.music-player.playing .music-visualizer span {
    animation: vizBounce 0.6s ease infinite alternate;
}
.music-player.playing .music-visualizer span:nth-child(1) { animation-delay: 0s; }
.music-player.playing .music-visualizer span:nth-child(2) { animation-delay: 0.15s; }
.music-player.playing .music-visualizer span:nth-child(3) { animation-delay: 0.3s; }
.music-player.playing .music-visualizer span:nth-child(4) { animation-delay: 0.45s; }
@keyframes vizBounce {
    from { height: 4px; }
    to { height: 16px; }
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    top: calc(var(--safe-top) + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--c-dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.4s var(--ease-spring);
    white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (min-width: 768px) {
    .music-player { bottom: 2rem; left: 2rem; }
    .hero-actions { bottom: 3rem; right: 3rem; flex-direction: row; }
    .carousel-arrow { display: flex; }
    .carousel-slide { aspect-ratio: 16/9; }
    .gallery-mini-grid { gap: 0.75rem; }
    .stats-scroll { gap: 3rem; }
    .stat-num { font-size: 2.5rem; }
    .blessing-form-row { flex-direction: row; }
    .blessing-form input { max-width: 200px; }
}

@media (min-width: 1024px) {
    .carousel-arrow:hover { background: rgba(255,255,255,0.3); }
    .hero-action-pill:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }
    .gallery-mini-grid .gallery-img:hover img { transform: scale(1.08); }
}

/* =========================================================
   INVITATION ENVELOPE INTRO
   ========================================================= */
.invite-intro {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: radial-gradient(ellipse at center, #2d1810 0%, #0a0604 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 1rem;
    perspective: 1500px;
}
.invite-intro.show { opacity: 1; visibility: visible; }
.invite-intro.opening .envelope { animation: envSlide 1.2s var(--ease) forwards; }
.invite-intro.opened {
    animation: introFadeOut 0.6s ease 1.4s forwards;
}
@keyframes introFadeOut { to { opacity: 0; visibility: hidden; } }

.invite-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.invite-star {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(212,175,55,0.7);
    border-radius: 50%;
    animation: twinkle 3s ease infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.2); }
}

.invite-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.envelope {
    position: relative;
    width: min(340px, 88vw);
    aspect-ratio: 5 / 7;
    transform-style: preserve-3d;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Envelope back (invitation card sits here) */
.envelope-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5e9c8 0%, #f9efd1 50%, #ecdcb0 100%);
    border-radius: 12px;
    border: 1px solid rgba(193,68,14,0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.4rem;
}
.invite-card {
    text-align: center;
    color: #2d1810;
    width: 100%;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.8s ease 1s, transform 0.8s var(--ease) 1s;
}
.invite-intro.opening .invite-card { opacity: 1; transform: translateY(-10px); }

.invite-ornament {
    display: block;
    font-size: 1.8rem;
    color: var(--c-accent);
    margin-bottom: 0.5rem;
}
.invite-blessing {
    font-size: 0.7rem;
    color: var(--c-accent);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.invite-line {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: #5a3a20;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.invite-names {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--c-accent);
    margin: 0.6rem 0;
    line-height: 1.2;
}
.invite-names span { color: var(--c-gold); font-style: italic; font-weight: 400; }
.invite-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.8rem 0;
}
.invite-divider span {
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--c-gold), transparent);
}
.invite-divider i { color: var(--c-gold); font-style: normal; font-size: 0.8rem; }
.invite-date {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #2d1810;
    margin: 0.4rem 0;
}
.invite-date sup { font-size: 0.7rem; }
.invite-venue {
    font-size: 0.75rem;
    color: #5a3a20;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.invite-tap {
    font-size: 0.7rem;
    color: var(--c-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Envelope front (cover) */
.envelope-front {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8a2410 0%, #c1440e 50%, #8a2410 100%);
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    transform: translateZ(1px);
    transition: opacity 0.5s ease 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.envelope-pattern {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 6px;
    background-image:
        radial-gradient(circle at 10px 10px, rgba(212,175,55,0.15) 1px, transparent 1.5px),
        radial-gradient(circle at 30px 30px, rgba(212,175,55,0.1) 1px, transparent 1.5px);
    background-size: 40px 40px;
}
.envelope-pattern::before, .envelope-pattern::after {
    content: '۞';
    position: absolute;
    color: rgba(212,175,55,0.6);
    font-size: 1.2rem;
}
.envelope-pattern::before { top: 8px; left: 8px; }
.envelope-pattern::after { bottom: 8px; right: 8px; }

.envelope-seal {
    text-align: center;
    color: var(--c-gold);
    z-index: 1;
}
.seal-monogram {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1;
}
.seal-monogram i { font-style: italic; font-size: 2rem; opacity: 0.85; }
.seal-subtext {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.85);
    margin-top: 0.6rem;
}

.invite-intro.opening .envelope-front {
    opacity: 0;
}

/* Envelope flap (top triangle) */
.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: 3;
    transform-origin: top center;
    transition: transform 1s var(--ease);
    transform-style: preserve-3d;
}
.envelope-flap-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6a1c0c 0%, #a83a0d 50%, #6a1c0c 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-top: 1px solid rgba(212,175,55,0.4);
}
.invite-intro.opening .envelope-flap {
    transform: rotateX(180deg);
}
.envelope-flap-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.invite-intro.opening .envelope-flap-shadow { opacity: 1; }

@keyframes envSlide {
    0% { transform: translateY(0) scale(1); }
    60% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(-40px) scale(0.95); }
}

.invite-instruction {
    color: rgba(212,175,55,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    animation: pulseGlow 2s ease infinite;
}
.invite-intro.opening .invite-instruction { opacity: 0; transition: opacity 0.3s ease; }
@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =========================================================
   3D CARD TILT
   ========================================================= */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    will-change: transform;
    position: relative;
}
.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--tilt-x, 50%) var(--tilt-y, 50%),
                rgba(255,255,255,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}
.tilt-card.tilting { transition: none; }
.tilt-card.tilting::after { opacity: 1; }

/* =========================================================
   PER-EVENT ACTION BUTTONS
   ========================================================= */
.event-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.event-action {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.55rem 0.85rem;
    background: var(--c-bg-alt);
    color: var(--c-text);
    border-radius: 50px;
    transition: all 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}
.event-action svg { width: 14px; height: 14px; }
.event-action:active { transform: scale(0.96); background: var(--c-accent-light); color: var(--c-accent); }

/* =========================================================
   VENUE MAP ACTIONS
   ========================================================= */
.venue-map-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.venue-map-actions .venue-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    background: var(--c-surface);
}

/* =========================================================
   LIVE STREAMING SECTION
   ========================================================= */
.livestream-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
    max-width: 900px;
    margin: 0 auto;
}

.livestream-frame {
    position: relative;
    width: 100%;
    background: #000;
}
.livestream-preview { position: relative; }
.livestream-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.livestream-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 0.6s var(--ease);
}
.livestream-card:hover .livestream-poster { transform: scale(1.05); }
.livestream-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
    background: #000;
}
.livestream-thumb.is-playing iframe { display: block; }
.livestream-thumb.is-playing .livestream-poster,
.livestream-thumb.is-playing .livestream-play { display: none; }

.livestream-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}
.livestream-badge.live { background: rgba(229,28,28,0.95); }
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 0 0 rgba(255,59,59,0.6);
    animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255,59,59,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

.livestream-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: all 0.25s var(--ease);
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.livestream-play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: ringPulse 2s ease infinite;
}
@keyframes ringPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}
.livestream-play svg { width: 28px; height: 28px; margin-left: 4px; }
.livestream-play:active { transform: translate(-50%, -50%) scale(0.93); }

.livestream-info {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.livestream-events {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.livestream-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--c-bg-alt);
    border-radius: var(--r-sm);
    border-left: 3px solid var(--c-border);
}
.livestream-event.featured {
    border-left-color: var(--c-accent);
    background: linear-gradient(to right, rgba(193,68,14,0.06), var(--c-bg-alt) 50%);
}
.livestream-event strong {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
}
.livestream-event span {
    font-size: 0.75rem;
    color: var(--c-text-secondary);
    letter-spacing: 0.5px;
}

.livestream-note {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--c-text-secondary);
    margin-bottom: 0.85rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--c-gold, #d4af37);
    background: rgba(255,255,255,0.02);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    border-radius: 0 4px 4px 0;
}
.livestream-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
.ls-btn svg { width: 18px; height: 18px; }
.ls-btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,0,0,0.3);
}
.ls-btn-primary:active { transform: scale(0.97); }
.ls-btn-ghost {
    background: var(--c-bg-alt);
    color: var(--c-text);
    border: 1px solid var(--c-border);
}
.ls-btn-ghost:active { background: var(--c-accent-light); }

/* =========================================================
   CONCIERGE SECTION
   ========================================================= */
.concierge-tabs {
    display: flex;
    gap: 0;
    background: var(--c-surface);
    border-radius: var(--r-md);
    padding: 4px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--c-border);
}
.ctab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--c-text-secondary);
    border-radius: calc(var(--r-md) - 4px);
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.ctab-btn svg { width: 16px; height: 16px; }
.ctab-btn.active {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(193,68,14,0.25);
}

.ctab-panel { display: none; }
.ctab-panel.active { display: block; animation: fadeUp 0.35s var(--ease); }

/* Stay Card */
.stay-card, .pickup-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
    max-width: 700px;
    margin: 0 auto;
}
.stay-card-head, .pickup-head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.stay-card-head h3, .pickup-head h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.stay-card-head p, .pickup-head p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
}

.stay-lookup {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.stay-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.stay-input-wrap svg {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--c-text-tertiary);
    pointer-events: none;
}
.stay-input-wrap input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    background: var(--c-bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    color: var(--c-text);
    transition: all 0.2s ease;
    outline: none;
}
.stay-input-wrap input:focus {
    border-color: var(--c-accent);
    background: var(--c-surface);
    box-shadow: 0 0 0 3px var(--c-accent-light);
}
.stay-lookup-btn {
    padding: 0.85rem 1.5rem;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--r-sm);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.stay-lookup-btn:active { transform: scale(0.97); }

.stay-result {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--r-sm);
    animation: slideIn 0.4s var(--ease);
}
.stay-result.success {
    background: linear-gradient(135deg, rgba(30,122,77,0.08), rgba(46,167,106,0.04));
    border: 1px solid rgba(30,122,77,0.2);
}
.stay-result.fail {
    background: linear-gradient(135deg, rgba(193,68,14,0.06), rgba(232,108,36,0.03));
    border: 1px solid rgba(193,68,14,0.2);
}
.stay-result h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.stay-result .stay-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--c-border);
    font-size: 0.85rem;
}
.stay-result .stay-row:last-child { border-bottom: none; }
.stay-result .stay-row span:first-child { color: var(--c-text-secondary); }
.stay-result .stay-row span:last-child { font-weight: 500; }
.stay-result-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.stay-result-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.55rem 0.95rem;
    border-radius: 50px;
    background: var(--c-bg-alt);
    color: var(--c-text);
}
.stay-result-actions svg { width: 14px; height: 14px; }
.stay-result-actions a.primary { background: var(--c-accent); color: #fff; }

.stay-help {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}
.stay-help p {
    font-size: 0.8rem;
    color: var(--c-text-secondary);
    margin-bottom: 0.75rem;
}
.stay-help-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #25d366;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}
.stay-help-wa svg { width: 16px; height: 16px; }
.stay-help-wa:active { transform: scale(0.97); }

/* Pickup form */
.pickup-form .form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 0.5rem; }
.pickup-form .form-field { margin-bottom: 0.5rem; }
.pickup-form input,
.pickup-form select,
.pickup-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--c-bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    color: var(--c-text);
    transition: all 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}
.pickup-form input:focus,
.pickup-form select:focus,
.pickup-form textarea:focus {
    border-color: var(--c-accent);
    background: var(--c-surface);
    box-shadow: 0 0 0 3px var(--c-accent-light);
}
.pickup-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.pickup-form textarea { resize: vertical; min-height: 60px; }

.pickup-submit {
    width: 100%;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--r-sm);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.pickup-submit svg { width: 18px; height: 18px; }
.pickup-submit:active { transform: scale(0.97); }

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    text-align: center;
    transition: all 0.25s var(--ease);
}
.contact-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 auto 0.85rem;
    letter-spacing: 1px;
}
.contact-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}
.contact-role {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-saffron);
    margin-bottom: 0.5rem;
}
.contact-note {
    font-size: 0.8rem;
    color: var(--c-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.contact-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
.ca-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.ca-btn svg { width: 18px; height: 18px; }
.ca-call { background: #3c6df0; color: #fff; }
.ca-wa { background: #25d366; color: #fff; }
.ca-btn:active { transform: scale(0.92); }

/* Download invite */
.invite-download {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--c-border);
}
.invite-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(193,68,14,0.25);
    transition: all 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.invite-dl-btn svg { width: 18px; height: 18px; }
.invite-dl-btn:active { transform: scale(0.97); }
.invite-download p {
    font-size: 0.78rem;
    color: var(--c-text-tertiary);
    margin-top: 0.75rem;
}

/* =========================================================
   WHATSAPP FAB
   ========================================================= */
.wa-fab {
    position: fixed;
    right: 1rem;
    bottom: calc(86px + var(--safe-bottom));
    z-index: 920;
}

.wa-fab-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 2;
}
.wa-fab-trigger svg { width: 26px; height: 26px; }
.wa-fab-icon-open { display: none; }
.wa-fab.open .wa-fab-icon-closed { display: none; }
.wa-fab.open .wa-fab-icon-open { display: block; }
.wa-fab.open .wa-fab-trigger {
    background: var(--c-dark);
    transform: rotate(90deg);
}
.wa-fab-trigger::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: waPulse 2.4s ease infinite;
    z-index: -1;
}
.wa-fab.open .wa-fab-trigger::before { display: none; }
@keyframes waPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.3s var(--ease-spring);
}
.wa-fab.open .wa-fab-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wa-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}
.wa-action-label {
    background: rgba(20,20,20,0.92);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.55rem 0.95rem;
    border-radius: 50px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.wa-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}
.wa-action-icon svg { width: 20px; height: 20px; }
.wa-action:active .wa-action-icon { transform: scale(0.92); }

/* Stagger reveal */
.wa-fab.open .wa-action:nth-child(1) { animation: waItemIn 0.3s var(--ease-spring) 0.05s both; }
.wa-fab.open .wa-action:nth-child(2) { animation: waItemIn 0.3s var(--ease-spring) 0.1s both; }
.wa-fab.open .wa-action:nth-child(3) { animation: waItemIn 0.3s var(--ease-spring) 0.15s both; }
.wa-fab.open .wa-action:nth-child(4) { animation: waItemIn 0.3s var(--ease-spring) 0.2s both; }
@keyframes waItemIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Backdrop when FAB open */
.wa-fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    z-index: 910;
    transition: all 0.3s ease;
}
.wa-fab-backdrop.show { opacity: 1; visibility: visible; }

/* =========================================================
   RESPONSIVE ADDITIONS (NEW)
   ========================================================= */
@media (min-width: 640px) {
    .contacts-grid { grid-template-columns: 1fr 1fr; }
    .pickup-form .form-grid { grid-template-columns: 1fr 1fr; }
    .livestream-info { grid-template-columns: 1.5fr 1fr; align-items: center; }
    .livestream-actions { flex-direction: row; flex-wrap: wrap; }
    .ls-btn { flex: 1; min-width: 0; }
}

@media (min-width: 768px) {
    .wa-fab { right: 2rem; bottom: 2rem; }
    .ctab-btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; gap: 0.5rem; }
    .ctab-btn svg { width: 18px; height: 18px; }
    .contacts-grid { grid-template-columns: repeat(3, 1fr); }
    .livestream-thumb { aspect-ratio: 21/9; }
    .livestream-play { width: 88px; height: 88px; }
    .livestream-play svg { width: 36px; height: 36px; }
    .stay-card, .pickup-card { padding: 3rem 2.5rem; }
}

@media (min-width: 1024px) {
    .contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .ls-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.35); }
    .invite-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(193,68,14,0.35); }
}

/* =========================================================
   LIVE UPDATES BANNER (sticky top)
   ========================================================= */
.live-banner {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 880;
    width: calc(100% - 1.5rem);
    max-width: 540px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(15,13,18,0.92);
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 10px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.05);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}
.live-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}
.live-banner-pulse {
    position: relative;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    flex-shrink: 0;
}
.live-banner-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(255,59,59,0.4);
    animation: bannerPulse 1.6s ease infinite;
}
@keyframes bannerPulse {
    0%   { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}
.live-banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.live-banner-body { flex: 1; min-width: 0; }
.live-banner-body strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.4;
    color: #f4ead4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.live-banner-meta {
    font-size: 0.68rem;
    color: rgba(244,234,212,0.55);
    letter-spacing: 0.5px;
}
.live-banner-close {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.live-banner-close:hover { background: rgba(255,255,255,0.15); }
.live-banner-close svg { width: 14px; height: 14px; }

.live-banner[data-sev="urgent"]  { border-color: rgba(193,68,14,0.6); box-shadow: 0 10px 36px rgba(193,68,14,0.35); }
.live-banner[data-sev="warning"] { border-color: rgba(196,112,0,0.5); }
.live-banner[data-sev="success"] { border-color: rgba(30,122,77,0.5); }
.live-banner[data-sev="urgent"] .live-banner-pulse { background: #c1440e; }
.live-banner[data-sev="urgent"] .live-banner-pulse::before { background: rgba(193,68,14,0.45); }

/* =========================================================
   LIVE UPDATES SECTION
   ========================================================= */
.live-tag-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    margin-right: 0.45rem;
    box-shadow: 0 0 0 0 rgba(255,59,59,0.6);
    animation: pulseDot 1.5s ease infinite;
    vertical-align: middle;
}
.updates-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.updates-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.update-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 1.1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
    animation: updateIn 0.4s var(--ease-spring);
}
@keyframes updateIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.update-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--c-text-tertiary);
}
.update-item[data-sev="success"]::before { background: #1e7a4d; }
.update-item[data-sev="warning"]::before { background: #c47000; }
.update-item[data-sev="urgent"]::before  { background: var(--c-accent); }
.update-item.is-new {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), var(--c-surface) 60%);
    box-shadow: 0 6px 20px rgba(212,175,55,0.18);
}
.update-item.is-new .update-time::after {
    content: 'NEW';
    margin-left: 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--c-accent);
    color: #fff;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.update-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--c-accent-light);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.update-item[data-sev="success"] .update-icon { background: rgba(30,122,77,0.1); color: #1e7a4d; }
.update-item[data-sev="warning"] .update-icon { background: rgba(196,112,0,0.1); color: #c47000; }
.update-item[data-sev="urgent"]  .update-icon { background: rgba(193,68,14,0.1); color: var(--c-accent); }

.update-body p {
    font-size: 0.92rem;
    color: var(--c-text);
    line-height: 1.5;
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.update-time {
    font-size: 0.72rem;
    color: var(--c-text-tertiary);
    letter-spacing: 0.4px;
}
.update-author {
    font-size: 0.72rem;
    color: var(--c-text-secondary);
    margin-left: 0.5rem;
}

.updates-empty, .lg-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--c-surface);
    border: 1px dashed var(--c-border);
    border-radius: var(--r-lg);
}
.updates-empty-icon, .lg-empty-icon {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}
.updates-empty strong, .lg-empty strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--c-text);
    margin-bottom: 0.35rem;
}
.updates-empty p, .lg-empty p {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.5;
}

/* =========================================================
   LIVE GALLERY
   ========================================================= */
.live-gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lg-filters {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.lg-filter-block {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.lg-filter-label {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    font-weight: 600;
}
.lg-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.lg-chip {
    border: 1px solid var(--c-border);
    background: var(--c-surface);
    color: var(--c-text-secondary);
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lg-chip:hover { border-color: var(--c-accent); color: var(--c-text); }
.lg-chip.active {
    background: rgba(193, 68, 14, 0.12);
    border-color: var(--c-accent);
    color: var(--c-accent);
    font-weight: 600;
}
.lg-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.lg-dl-all {
    font-size: 0.82rem;
}
.lg-stat {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 0.85rem 0.6rem;
    text-align: center;
}
.lg-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--c-accent);
    margin-bottom: 0.15rem;
    line-height: 1;
}
.lg-stat span {
    font-size: 0.68rem;
    color: var(--c-text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.lg-tile {
    aspect-ratio: 1;
    position: relative;
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--c-bg-alt);
    -webkit-tap-highlight-color: transparent;
    animation: lgIn 0.4s var(--ease-spring);
    box-shadow: var(--shadow-xs);
}
@keyframes lgIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
.lg-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.lg-tile:hover img { transform: scale(1.07); }
.lg-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lg-tile:hover .lg-tile-overlay,
.lg-tile:focus .lg-tile-overlay { opacity: 1; }
.lg-tile-overlay strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
}
.lg-tile-overlay span {
    font-size: 0.65rem;
    opacity: 0.85;
}
.lg-tile-badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: rgba(193,68,14,0.92);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.18rem 0.4rem;
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s var(--ease-spring);
}
.lg-tile.is-new .lg-tile-badge { opacity: 1; transform: scale(1); }
.lg-tile.is-new::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(193,68,14,0.6);
    animation: tilePulse 2s ease 3;
    pointer-events: none;
}
@keyframes tilePulse {
    0%   { box-shadow: 0 0 0 0 rgba(193,68,14,0.5); }
    100% { box-shadow: 0 0 0 12px rgba(193,68,14,0); }
}

/* Mobile: always show overlay */
@media (hover: none) {
    .lg-tile-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 40%); }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8,7,6,0.95);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 0.75rem;
}
.lightbox[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}
.lightbox-close, .lightbox-nav, .lightbox-dl {
    -webkit-tap-highlight-color: transparent;
}
.lightbox-close {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
    right: 0.75rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.lightbox-nav:active { transform: translateY(-50%) scale(0.92); }
.lightbox-nav svg { width: 22px; height: 22px; }

.lightbox-stage {
    width: 100%;
    max-width: 1100px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}
.lightbox-stage img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--r-md);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    animation: lbIn 0.4s var(--ease-spring);
}
@keyframes lbIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox-stage figcaption {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #fff;
    padding: 0 0.5rem;
}
.lightbox-stage figcaption strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}
.lightbox-stage figcaption span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}
#lightboxTags {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.95);
    letter-spacing: 0.3px;
}
.lightbox-dl {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
    flex-shrink: 0;
    box-shadow: 0 6px 22px rgba(193,68,14,0.35);
}
.lightbox-dl svg { width: 16px; height: 16px; }
.lightbox-dl:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(193,68,14,0.45); }
.lightbox-dl:active { transform: scale(0.96); }

/* =========================================================
   BOTTOM NAV LIVE BADGE
   ========================================================= */
.nav-live-wrap { position: relative; display: inline-flex; }
.nav-live-badge {
    position: absolute;
    top: -3px;
    right: -6px;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    border-radius: 7px;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(193,68,14,0.4);
    animation: badgePop 0.4s var(--ease-spring);
}
@keyframes badgePop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

/* Responsive */
@media (min-width: 640px) {
    .live-gallery { grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
}
@media (min-width: 768px) {
    .live-banner { top: calc(72px + env(safe-area-inset-top, 0px)); }
    .live-gallery { grid-template-columns: repeat(4, 1fr); }
    .live-gallery-stats { gap: 1rem; }
    .lg-stat { padding: 1.2rem 1rem; }
    .lg-stat strong { font-size: 2rem; }
}
@media (min-width: 1024px) {
    .live-gallery { grid-template-columns: repeat(5, 1fr); }
}

/* ===== Notification opt-in CTA ===== */
.notif-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(199, 159, 73, 0.12), rgba(102, 27, 41, 0.10));
    border: 1px solid rgba(199, 159, 73, 0.35);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    animation: notifSlideIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes notifSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.notif-cta-icon {
    flex: 0 0 auto;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #c79f49, #a07f30);
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 14px rgba(160, 127, 48, 0.35);
    animation: notifPulse 2.4s ease-in-out infinite;
}
@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.notif-cta-body {
    flex: 1 1 auto;
    min-width: 0;
}
.notif-cta-body strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--c-text);
    margin-bottom: 0.15rem;
}
.notif-cta-body p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--c-text-secondary);
    line-height: 1.4;
}
.notif-cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-end;
}
.notif-cta-btn {
    border: none;
    background: linear-gradient(135deg, #661b29, #a02d3c);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(102, 27, 41, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}
.notif-cta-btn:hover  { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(102, 27, 41, 0.30); }
.notif-cta-btn:active { transform: translateY(0); }
.notif-cta-btn:disabled { opacity: 0.7; cursor: progress; }
.notif-cta-skip {
    border: none;
    background: transparent;
    color: var(--c-text-secondary);
    font-size: 0.78rem;
    padding: 0.15rem 0.4rem;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.18);
    text-underline-offset: 3px;
}
.notif-cta-skip:hover { color: var(--c-text); }

.notif-state {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--c-text-secondary);
    background: rgba(34, 134, 58, 0.06);
    border: 1px solid rgba(34, 134, 58, 0.20);
    border-radius: 999px;
    width: fit-content;
}
.notif-state-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22863a;
    box-shadow: 0 0 0 4px rgba(34, 134, 58, 0.15);
    flex: 0 0 auto;
}
.notif-state.notif-state-denied {
    background: rgba(193, 68, 14, 0.06);
    border-color: rgba(193, 68, 14, 0.22);
}
.notif-state.notif-state-denied .notif-state-dot { background: #c1440e; box-shadow: 0 0 0 4px rgba(193, 68, 14, 0.15); }

@media (max-width: 600px) {
    .notif-cta {
        flex-wrap: wrap;
        gap: 0.85rem;
    }
    .notif-cta-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .notif-cta-btn { flex: 1 1 auto; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bottom-nav, .top-bar, .fullscreen-menu, #loader, .music-player, .toast,
    .wa-fab, .wa-fab-backdrop, .invite-intro,
    .live-banner, .lightbox { display: none !important; }
    body { padding: 0; }
    .section { padding: 2rem 1rem; }
}

/* ==============================================================
   HERO · COUPLE PORTRAIT — warm color · face-centered
   Content panel right (desktop) / bottom-right (mobile)
   ============================================================== */
.hero-mn {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: grid;
    overflow: hidden;
    isolation: isolate;
    background: #1a100c;
    color: #2c1810;
    font-family: 'Inter', sans-serif;
    --mn-ink: #2c1810;
    --mn-ink-soft: #5c4038;
    --mn-cream: #fff8f0;
    --mn-warm: #8b4a3a;
    --mn-gold: #b8892a;
    --mn-burgundy: #7a1e32;
}

/* Background */
.hero-mn__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-mn__bg picture,
.hero-mn__img {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-mn__img {
    object-fit: cover;
    object-position: var(--face-x, 42%) var(--face-y, 43%);
    transform: scale(1.0);
    animation: mnKen 28s ease-in-out infinite alternate;
    /* Warm color via CSS — keeps source pixels sharp */
    filter: sepia(0.16) saturate(1.32) contrast(1.03) brightness(1.03);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity .8s ease;
}
@keyframes mnKen {
    from { transform: scale(1.0); }
    to   { transform: scale(1.02); }
}

/* Swipeable pre-wedding reel banner.
   Full-bleed cover video on every viewport, with a horizontal
   swipe/click carousel between two reels. */
.hero-mn__reels {
    position: absolute;
    inset: 0;
    overflow: hidden;
    touch-action: pan-y;              /* horizontal handled by JS; vertical scroll passes through */
    user-select: none;
    -webkit-user-select: none;
    opacity: 0;                       /* revealed once first slide is ready */
    transition: opacity .9s ease;
}
.hero-mn__bg.is-playing .hero-mn__reels { opacity: 1; }

.hero-mn__track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(0,0,0);
    transition: transform .55s cubic-bezier(.2,.85,.25,1);
    will-change: transform;
}
.hero-mn__track.is-dragging { transition: none; }

.hero-mn__slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-mn__vfill {
    /* Blurred fallback that fills the slide before its video decodes. */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 1;
    transition: opacity .9s ease;
    pointer-events: none;
    transform: scale(1.08);
    filter: blur(18px) saturate(1.1) brightness(0.72);
    will-change: opacity;
}
.hero-mn__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    opacity: 0;
    transition: opacity 1.1s ease .1s;
    pointer-events: none;
    filter: sepia(0.10) saturate(1.20) contrast(1.02) brightness(1.02);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    will-change: opacity;
}
.hero-mn__slide.is-ready   .hero-mn__video { opacity: 1; }
.hero-mn__slide.is-ready   .hero-mn__vfill { opacity: 0; }

/* Fade the original portrait still out while the banner is live */
.hero-mn__bg.is-playing .hero-mn__img { opacity: 0; animation: none; }

/* Pagination dots — glass pill, top-centre so the content panel never covers it */
.hero-mn__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(78px + env(safe-area-inset-top));         /* sits just below the SV chip */
    z-index: 4;
    display: flex;
    gap: 8px;
    padding: 7px 11px;
    background: rgba(24,14,10,0.35);
    border: 1px solid rgba(255,236,196,0.28);
    border-radius: 999px;
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
@media (min-width: 900px) {
    .hero-mn__dots { top: calc(28px + env(safe-area-inset-top)); }
}
.hero-mn__bg.is-playing .hero-mn__dots { opacity: 1; pointer-events: auto; }
.hero-mn__dot {
    width: 22px;
    height: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-mn__dot span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,236,196,0.42);
    transition: background .3s ease, transform .3s ease;
}
.hero-mn__dot.is-active span,
.hero-mn__dot[aria-selected="true"] span { background: #fff6e0; transform: scaleY(1.4); }
.hero-mn__dot:focus-visible { outline: 2px solid #f2c98a; outline-offset: 3px; border-radius: 999px; }

/* Prev / next arrows — hidden on mobile (swipe is the affordance) */
.hero-mn__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff8ec;
    background: rgba(24,14,10,0.38);
    border: 1px solid rgba(255,236,196,0.28);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease, background .2s ease, transform .2s ease;
}
.hero-mn__arrow svg { width: 20px; height: 20px; }
.hero-mn__arrow--prev { left: 28px; }
.hero-mn__arrow--next { right: 28px; }
.hero-mn__arrow:hover { background: rgba(24,14,10,0.62); }
.hero-mn__arrow:focus-visible { outline: 2px solid #f2c98a; outline-offset: 3px; opacity: 1; }
.hero-mn__arrow[disabled] { opacity: 0.3 !important; cursor: default; }
@media (hover: hover) and (min-width: 900px) {
    .hero-mn__bg.is-playing .hero-mn__arrow { display: inline-flex; opacity: 0.85; }
    .hero-mn__reels:hover .hero-mn__arrow  { opacity: 1; transform: translateY(-50%) scale(1.04); }
}

/* Small floating pause/play control — bottom-left of hero, lifted above the
   mobile bottom-nav (~72px tall) so it never overlaps. On desktop we sit low
   because there is no bottom-nav. */
.hero-mn__vtoggle {
    position: absolute;
    left:   calc(18px + env(safe-area-inset-left));
    bottom: calc(90px + env(safe-area-inset-bottom));
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;               /* revealed only when a reel actually plays */
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff8ec;
    background: rgba(24,14,10,0.42);
    border: 1px solid rgba(255,236,196,0.30);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, opacity .3s ease;
    opacity: 0;
}
.hero-mn__bg.is-playing .hero-mn__vtoggle,
.hero-mn__bg.is-paused  .hero-mn__vtoggle { display: inline-flex; opacity: 0.9; }
.hero-mn__vtoggle:hover  { background: rgba(24,14,10,0.62); transform: scale(1.06); opacity: 1; }
.hero-mn__vtoggle:focus-visible { outline: 2px solid #f2c98a; outline-offset: 2px; opacity: 1; }
.hero-mn__vtoggle svg { width: 13px; height: 13px; }
.hero-mn__vtoggle .hero-mn__vtoggle-play  { display: none; }
.hero-mn__vtoggle .hero-mn__vtoggle-pause { display: block; }
.hero-mn__bg.is-paused .hero-mn__vtoggle .hero-mn__vtoggle-play  { display: block; }
.hero-mn__bg.is-paused .hero-mn__vtoggle .hero-mn__vtoggle-pause { display: none; }
@media (min-width: 900px) {
    /* No bottom-nav on desktop → sit close to the corner */
    .hero-mn__vtoggle { width: 42px; height: 42px; left: 28px; bottom: 28px; }
    .hero-mn__vtoggle svg { width: 15px; height: 15px; }
}

.hero-mn__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 50% at 38% 42%,
            rgba(255,220,180,0.06) 0%,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,0.15) 100%),
        linear-gradient(155deg,
            rgba(255,240,220,0.04) 0%,
            rgba(0,0,0,0) 38%,
            rgba(44,24,16,0.45) 70%,
            rgba(44,24,16,0.82) 100%),
        linear-gradient(180deg,
            rgba(0,0,0,0.18) 0%,
            rgba(0,0,0,0) 18%,
            rgba(0,0,0,0) 48%,
            rgba(44,24,16,0.55) 82%,
            rgba(44,24,16,0.78) 100%);
    pointer-events: none;
    transition: filter .8s ease;
}
.hero-mn__bg.is-playing .hero-mn__shade {
    filter: brightness(0.72) contrast(1.08);
}
.hero-mn__bg.is-playing::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(135deg,
            rgba(0,0,0,0.08) 0%,
            rgba(0,0,0,0.02) 35%,
            rgba(20,10,6,0.55) 72%,
            rgba(16,8,4,0.92) 100%),
        linear-gradient(180deg,
            rgba(0,0,0,0.32) 0%,
            rgba(0,0,0,0.08) 22%,
            rgba(0,0,0,0) 50%,
            rgba(20,10,6,0.62) 100%);
}

.hero-mn__grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    mix-blend-mode: soft-light;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

.hero-mn__frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(184,137,42,0.35);
    pointer-events: none;
    z-index: 2;
}
.hero-mn__frame::before,
.hero-mn__frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(184,137,42,0.55);
}
.hero-mn__frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-mn__frame::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Content shell — sits bottom-right so faces (left-centre) stay visible */
.hero-mn__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 100svh;
    min-height: 100vh;
    padding: calc(8px + env(safe-area-inset-top)) 14px calc(52px + env(safe-area-inset-bottom));
    max-width: min(100%, 340px);
    margin-left: auto;
    width: 100%;
    pointer-events: none;
}
.hero-mn__content > * { pointer-events: auto; }

.hero-mn__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding-top: 0;
    opacity: 0;
    animation: mnUp 0.9s ease-out 0.3s forwards;
}

.hero-mn__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--mn-burgundy);
    background: rgba(255, 248, 240, 0.38);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.hero-mn__ribbon {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mn-ink-soft);
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.38);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

/* Frosted glass panels — readability from blur + tint, not text glow */
.hero-mn__main,
.hero-mn__foot {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 248, 240, 0.36);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    box-shadow: 0 10px 36px rgba(44, 24, 16, 0.12);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-mn__main {
    margin-bottom: 12px;
    padding: 14px 15px 13px;
}

.hero-mn__eyebrow {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mn-ink-soft);
    margin-bottom: 9px;
    line-height: 1.5;
    opacity: 0;
    animation: mnUp 0.9s ease-out 0.5s forwards;
}

.hero-mn__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 10px;
}

.hero-mn__name {
    display: block;
    font-size: clamp(2.2rem, 8.5vw, 3.5rem);
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--mn-ink);
    opacity: 0;
    animation: mnName 1s cubic-bezier(0.22,0.7,0.2,1) forwards;
}
.hero-mn__name:first-of-type { animation-delay: 0.65s; }
.hero-mn__name:last-of-type  { animation-delay: 1.05s; }

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

.hero-mn__amp {
    display: block;
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.45rem);
    color: var(--mn-burgundy);
    font-weight: 500;
    margin: 2px 0;
    opacity: 0;
    animation: mnUp 0.7s ease-out 0.9s forwards;
}

.hero-mn__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mn-ink);
    margin-bottom: 10px;
    opacity: 0;
    animation: mnUp 0.9s ease-out 1.2s forwards;
}
.hero-mn__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--mn-gold);
}

.hero-mn__blessings {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(122, 30, 50, 0.1);
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--mn-ink-soft);
    line-height: 1.5;
    opacity: 0;
    animation: mnUp 0.9s ease-out 1.35s forwards;
}
.hero-mn__blessings span {
    color: var(--mn-ink-soft);
}

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

/* Bottom panel */
.hero-mn__foot {
    padding: 14px 13px 11px;
    opacity: 0;
    transform: translateY(18px);
    animation: mnDock 1s cubic-bezier(0.22,0.7,0.2,1) 1.5s forwards;
}
@keyframes mnDock {
    to { opacity: 1; transform: translateY(0); }
}

.hero-mn__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(3px, 1.3vw, 8px);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(122,30,50,0.12);
}
.hero-mn__cd {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
}
.hero-mn__cd-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3.4vw, 1.35rem);
    font-weight: 500;
    line-height: 1;
    color: var(--mn-ink);
    font-feature-settings: 'tnum';
}
.hero-mn__cd-num.flip { animation: mnFlip 0.35s ease; }
@keyframes mnFlip {
    0%   { transform: rotateX(0deg); opacity: 1; }
    50%  { transform: rotateX(-75deg); opacity: 0.35; }
    100% { transform: rotateX(0deg); opacity: 1; }
}
.hero-mn__cd-lbl {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--mn-ink-soft);
    margin-top: 4px;
}
.hero-mn__cdsep {
    font-size: 1rem;
    color: rgba(122,30,50,0.35);
    align-self: flex-start;
    margin-top: 2px;
}

.hero-mn__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.hero-mn__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(122,30,50,0.25);
    background: rgba(255,255,255,0.72);
    color: var(--mn-ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.hero-mn__btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-mn__btn:hover { background: rgba(255,255,255,0.85); border-color: rgba(122,30,50,0.45); }
.hero-mn__btn:active { transform: scale(0.97); }

.hero-mn__btn--primary {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #6a1828 0%, #7a1e32 50%, #9a2840 100%);
    border-color: #7a1e32;
    color: var(--mn-cream);
    padding: 13px 20px;
    font-size: 0.78rem;
    box-shadow: 0 8px 22px rgba(122,30,50,0.28);
}
.hero-mn__btn--primary:hover {
    background: linear-gradient(135deg, #5a1220 0%, #6a1828 50%, #8a2238 100%);
    border-color: #6a1828;
}

.hero-mn__scroll {
    display: none;
}

/* Desktop — same face-centered crop as mobile, panel on right */
@media (min-width: 900px) {
    .hero-mn { --face-x: 42%; --face-y: 43%; }

    .hero-mn__shade {
        background:
            radial-gradient(ellipse 55% 55% at 36% 42%,
                rgba(255,220,180,0.08) 0%,
                rgba(0,0,0,0) 50%,
                rgba(0,0,0,0.12) 100%),
            linear-gradient(90deg,
                rgba(255,240,220,0.03) 0%,
                rgba(0,0,0,0) 45%,
                rgba(44,24,16,0.25) 68%,
                rgba(44,24,16,0.55) 100%),
            linear-gradient(180deg,
                rgba(0,0,0,0.08) 0%,
                rgba(0,0,0,0) 22%,
                rgba(0,0,0,0) 60%,
                rgba(44,24,16,0.2) 100%);
    }

    .hero-mn__content {
        justify-content: flex-end;
        max-width: 340px;
        margin-right: clamp(40px, 7vw, 100px);
        margin-left: auto;
        padding: calc(16px + env(safe-area-inset-top)) 0 calc(72px + env(safe-area-inset-bottom));
        min-height: 100svh;
    }

    .hero-mn__head { margin-bottom: 12px; }
    .hero-mn__main { margin-bottom: 16px; }
    .hero-mn__name { font-size: clamp(2.5rem, 3.8vw, 3.6rem); }

    .hero-mn__scroll {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        position: absolute;
        left: auto;
        right: clamp(32px, 6vw, 80px);
        bottom: 32px;
        z-index: 4;
        text-decoration: none;
        color: rgba(92,64,56,0.55);
        font-size: 0.55rem;
        font-weight: 600;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        opacity: 0;
        animation: mnUp 0.8s ease-out 2s forwards, mnBounceDesk 2.4s ease-in-out 2.4s infinite;
        pointer-events: auto;
    }
    .hero-mn__scroll svg { width: 14px; height: 14px; }
    @keyframes mnBounceDesk {
        0%,100% { transform: translateY(0); }
        50%     { transform: translateY(4px); }
    }
}

@media (max-width: 380px) {
    .hero-mn__content { padding-left: 16px; padding-right: 16px; }
    .hero-mn__meta { font-size: 0.64rem; letter-spacing: 0.1em; }
    .hero-mn__eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; }
    .hero-mn__frame { inset: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-mn__img,
    .hero-mn__head, .hero-mn__eyebrow, .hero-mn__name, .hero-mn__amp,
    .hero-mn__meta, .hero-mn__blessings, .hero-mn__foot, .hero-mn__scroll {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-mn__img { transform: scale(1.0); filter: sepia(0.16) saturate(1.32) contrast(1.03) brightness(1.03); }
    /* Respect reduced-motion — hide the reel banner entirely and keep the still */
    .hero-mn__reels { display: none !important; }
    .hero-mn__video { display: none !important; }
    .hero-mn__bg.is-playing .hero-mn__img { opacity: 1 !important; }
    .hero-mn__scroll { transform: translateX(-50%); }
    @media (min-width: 900px) {
        .hero-mn__scroll { transform: none; }
    }
}

