/* ==========================================================
   MUNIRAXON WEDDING — FEMININE BABY BLUE & FROSTED LIQUID GLASS
   Special Edition for the Bride''s Friends (Келин дугоналари)
   ========================================================== */

:root {
    /* Feminine Baby Blue & Azure Palette */
    --blue-night: #14283D;
    --blue-navy: #1C3854;
    --blue-deep: #2A5175;
    --blue-rich: #3E6E98;
    --blue-main: #588BB8;
    --blue-sky: #8DBAE0;
    --blue-baby: #B8D8F2;
    --blue-light: #DCECF8;
    --blue-soft: #EEF6FC;
    --blue-mist: #F7FAFD;

    /* Delicate Champagne & Pearl Accents */
    --gold-champagne: #D8B257;
    --gold-soft: #C29F45;
    --gold-light: #F7ECD0;
    
    /* Gradients */
    --blue-grad-main: linear-gradient(135deg, #1C3854 0%, #2A5175 55%, #588BB8 100%);
    --blue-grad-soft: linear-gradient(135deg, #E6F2FA 0%, #FFFFFF 50%, #D8ECF8 100%);
    --blue-text-grad: linear-gradient(135deg, #14283D 0%, #2A5175 50%, #4D80AE 100%);
    --gold-grad: linear-gradient(135deg, #C29F45 0%, #F5E5A3 50%, #C29F45 100%);

    /* Frosted Liquid Glass */
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: 1.5px solid rgba(184, 216, 242, 0.65);
    --glass-shadow: 0 16px 40px rgba(28, 56, 84, 0.08), 
                    inset 0 1px 3px rgba(255, 255, 255, 0.95), 
                    inset 0 -1px 2px rgba(184, 216, 242, 0.3);

    /* Backgrounds */
    --bg-page: #E5EEF5;
    --bg-mobile: #F4F8FC;

    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;

    --radius-lg: 24px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    background: linear-gradient(135deg, #DFECF5 0%, #F0F6FB 40%, #E2EDF6 100%);
    color: var(--blue-night);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ================= FLOATING BABY BLUE PETALS / SPARKLES ================= */
.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.petal {
    position: absolute;
    top: -30px;
    font-size: 16px;
    opacity: 0.6;
    animation: fall linear infinite;
    filter: drop-shadow(0 2px 6px rgba(141, 186, 224, 0.5));
}

.p1 { left: 10%; animation-duration: 11s; animation-delay: 0s; font-size: 18px; }
.p2 { left: 26%; animation-duration: 14s; animation-delay: 2s; font-size: 14px; }
.p3 { left: 45%; animation-duration: 9s; animation-delay: 4s; font-size: 16px; }
.p4 { left: 65%; animation-duration: 13s; animation-delay: 1s; font-size: 15px; }
.p5 { left: 82%; animation-duration: 15s; animation-delay: 3s; font-size: 14px; }
.p6 { left: 93%; animation-duration: 12s; animation-delay: 5s; font-size: 17px; }
.p7 { left: 36%; animation-duration: 16s; animation-delay: 7s; font-size: 13px; }

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0;
    }
    15% { opacity: 0.75; }
    85% { opacity: 0.75; }
    100% {
        transform: translateY(105vh) rotate(360deg) translateX(30px);
        opacity: 0;
    }
}

/* ================= MOBILE WRAPPER ================= */
.mobile-wrapper {
    width: 100%;
    max-width: 460px;
    background: var(--bg-mobile);
    background-image: 
        radial-gradient(circle at 15% 12%, rgba(184, 216, 242, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 85% 45%, rgba(141, 186, 224, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(216, 236, 248, 0.5) 0%, transparent 50%);
    box-shadow: 0 0 55px rgba(28, 56, 84, 0.12);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

/* ================= FLOATING MUSIC TOGGLE ================= */
.music-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--blue-baby);
    border-radius: 30px;
    padding: 6px 12px 6px 6px;
    box-shadow: 0 6px 20px rgba(28, 56, 84, 0.12), inset 0 1px 2px #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-disc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8D8F2 0%, #588BB8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(88, 139, 184, 0.4);
}

.music-toggle.playing .music-disc {
    animation: rotateDisc 3.5s linear infinite;
}

@keyframes rotateDisc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
}

.music-waves span {
    width: 3px;
    background: var(--blue-main);
    border-radius: 3px;
    height: 4px;
    transition: height 0.2s;
}

.music-toggle.playing .music-waves span:nth-child(1) {
    animation: wave 0.8s ease-in-out infinite alternate;
}
.music-toggle.playing .music-waves span:nth-child(2) {
    animation: wave 0.6s ease-in-out 0.2s infinite alternate;
}
.music-toggle.playing .music-waves span:nth-child(3) {
    animation: wave 0.9s ease-in-out 0.4s infinite alternate;
}

@keyframes wave {
    0% { height: 3px; }
    100% { height: 14px; }
}

/* ================= COMMON SECTION STYLES ================= */
.section {
    padding: 42px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-deep);
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--blue-baby);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(184, 216, 242, 0.3);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-night);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-main);
    margin-bottom: 22px;
    font-weight: 600;
}

/* ================= FROSTED GLASS CARD ================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 34px 22px;
    width: 100%;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.card-sparkle {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 18px;
    color: var(--blue-sky);
}

/* ================= 1. HERO SECTION ================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 20px 30px;
    background: radial-gradient(circle at 50% 25%, #FFFFFF 0%, #F2F8FC 60%, #E3EDF6 100%);
    border-bottom: 2px solid rgba(184, 216, 242, 0.5);
    position: relative;
}

.monogram-badge {
    margin: 15px auto 8px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--blue-baby);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(88, 139, 184, 0.2), inset 0 1px 3px #fff;
    position: relative;
}

.monogram-badge::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1.5px dashed var(--blue-sky);
    border-radius: 50%;
}

.monogram-inner {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--blue-deep);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-friends-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(235, 245, 253, 0.95), rgba(216, 236, 248, 0.85));
    border: 1.5px solid var(--blue-baby);
    color: var(--blue-deep);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-top: 14px;
    box-shadow: 0 4px 15px rgba(184, 216, 242, 0.35);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-main);
    margin-top: 14px;
    font-weight: 700;
}

.hero-sub-ru {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--blue-deep);
    margin-bottom: 12px;
}

.couple-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin: 8px 0 18px;
    text-shadow: 0 2px 14px rgba(28, 56, 84, 0.08);
}

.couple-names span {
    background: var(--blue-text-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cap-letter {
    font-family: var(--font-serif);
    font-style: normal !important;
    font-size: 1.25em;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
    vertical-align: baseline;
    line-height: 1;
}

.couple-names .ampersand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 34px;
    color: var(--gold-champagne);
    margin: 2px 0;
    -webkit-text-fill-color: var(--gold-champagne);
    text-shadow: 0 0 10px rgba(216, 178, 87, 0.4);
}

/* Liquid Glass Hero Date Pill */
.hero-date-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid var(--blue-baby);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(28, 56, 84, 0.08), inset 0 1px 2px #fff;
    margin: 0 auto 14px;
}

.h-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h-val {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--blue-night);
}

.h-val.highlight-time {
    color: var(--blue-deep);
}

.h-lbl {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-main);
    font-weight: 600;
}

.h-sep {
    color: var(--blue-baby);
    font-size: 10px;
}

.hero-venue-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    background: rgba(255, 255, 255, 0.85);
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid var(--blue-baby);
    margin: 0 auto 15px;
}

.scroll-indicator {
    margin-top: 15px;
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--blue-main);
    letter-spacing: 1px;
}

.bouncing-arrow {
    font-size: 18px;
    margin-top: 4px;
    animation: bounce 1.8s infinite;
    color: var(--blue-sky);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ================= 2. LETTER TO BELOVED FRIEND SECTION ================= */
.friend-letter-card {
    border: 2px solid rgba(184, 216, 242, 0.7);
}

.friend-salut-box {
    margin-bottom: 18px;
}

.friend-main-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-night);
    line-height: 1.2;
}

.friend-sub-ru {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--blue-main);
}

.ornament-divider {
    color: var(--blue-sky);
    font-size: 18px;
    margin: 16px 0;
}

.invite-msg {
    font-size: 19px;
    line-height: 1.65;
    color: var(--blue-night);
    margin-bottom: 16px;
    text-align: center;
}

.invite-msg.uz {
    font-weight: 500;
}

.highlight-names {
    color: var(--blue-deep);
    font-weight: 700;
}

.invite-msg.ru {
    font-size: 16px;
    line-height: 1.55;
    color: var(--blue-deep);
    font-style: italic;
    border-top: 1.5px dashed rgba(184, 216, 242, 0.5);
    padding-top: 15px;
    margin-bottom: 0;
}

/* ================= 3. DRESS CODE SECTION (BABY BLUE) ================= */
.dresscode-section {
    padding-top: 25px;
    padding-bottom: 35px;
}

.dresscode-card {
    border: 2px solid var(--blue-baby);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 254, 0.85));
    box-shadow: 0 18px 45px rgba(28, 56, 84, 0.1), inset 0 1px 2px #fff;
}

.dresscode-badge {
    background: #E8F4FD;
    border-color: var(--blue-sky);
    color: var(--blue-deep);
}

.dress-banner {
    margin-bottom: 22px;
}

.dress-main-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-night);
    margin-bottom: 4px;
}

.dress-subtitle {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-main);
}

/* Color Swatches Grid */
.palette-container {
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--blue-baby);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(28, 56, 84, 0.05);
}

.palette-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-deep);
    margin-bottom: 16px;
}

.swatches-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
}

.swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.swatch-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(28, 56, 84, 0.15);
    transition: transform 0.2s ease;
}

.swatch-circle:hover {
    transform: scale(1.12);
}

.swatch-name {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    color: var(--blue-night);
}

.swatch-shade {
    font-family: var(--font-sans);
    font-size: 9px;
    color: var(--blue-main);
}

.c1 { background: #CFE6FA; } /* Baby Blue */
.c2 { background: #A7D1F2; } /* Sky Blue */
.c3 { background: #89B8E0; } /* Pastel Azure */
.c4 { background: #6F9EC7; } /* Powder Blue */
.c5 { background: #5684AD; } /* Serene Blue */

/* Dress code guidelines pill tags */
.dress-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.d-tag {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-deep);
    background: rgba(232, 244, 253, 0.9);
    border: 1px solid var(--blue-baby);
    padding: 6px 12px;
    border-radius: 20px;
}

.dress-note-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--blue-baby);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
}

.dress-note-p {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.55;
    color: var(--blue-night);
    margin-bottom: 12px;
}

.dress-note-p.ru {
    font-size: 15px;
    font-style: italic;
    color: var(--blue-deep);
    border-top: 1px dashed rgba(184, 216, 242, 0.6);
    padding-top: 12px;
    margin-bottom: 0;
}

/* ================= 4. DATE & WAITING TIME SECTION ================= */
.datetime-section {
    padding-top: 25px;
    padding-bottom: 35px;
}

.datetime-card {
    border: 2px solid rgba(184, 216, 242, 0.7);
}

.event-details-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--blue-baby);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: 0 8px 24px rgba(28, 56, 84, 0.05);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.detail-icon {
    font-size: 32px;
    min-width: 46px;
    height: 46px;
    background: #EEF6FC;
    border: 1.5px solid var(--blue-baby);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-lbl {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--blue-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-val {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--blue-night);
    font-weight: 700;
}

.detail-val.time-val {
    font-size: 28px;
    color: var(--blue-deep);
}

.detail-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--blue-deep);
}

.detail-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-baby), transparent);
}

/* Countdown Grid */
.countdown-block {
    margin-top: 5px;
}

.countdown-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-deep);
    margin-bottom: 14px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.c-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--blue-baby);
    border-radius: 14px;
    padding: 12px 6px;
    box-shadow: 0 4px 14px rgba(28, 56, 84, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-num {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 800;
    color: var(--blue-night);
    line-height: 1;
    margin-bottom: 4px;
}

.c-label {
    font-family: var(--font-sans);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-main);
    font-weight: 600;
}

.cal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2A5175 0%, #4D80AE 100%);
    color: #fff;
    border: 1px solid var(--blue-baby);
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(42, 81, 117, 0.25);
    transition: transform 0.2s;
}

.cal-btn:active {
    transform: scale(0.98);
}

/* ================= 5. LOCATION & MAP SECTION ================= */
.location-section {
    padding-top: 25px;
    padding-bottom: 35px;
}

.venue-glass-card {
    border: 2px solid rgba(184, 216, 242, 0.7);
}

.venue-badge {
    margin-bottom: 12px;
}

.venue-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-night);
}

.venue-name-ru {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-main);
    font-weight: 600;
}

.venue-address {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--blue-deep);
    margin-bottom: 18px;
}

.map-embed-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--blue-baby);
    box-shadow: 0 8px 24px rgba(28, 56, 84, 0.08);
    margin-bottom: 18px;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-btn:active {
    transform: scale(0.98);
}

.nav-btn.y-navi {
    background: linear-gradient(135deg, #FC3F1D, #FF6B4A);
    color: #fff;
    box-shadow: 0 6px 20px rgba(252, 63, 29, 0.25);
}

.nav-btn.y-maps {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #FC3F1D;
    color: #FC3F1D;
    box-shadow: 0 4px 14px rgba(252, 63, 29, 0.1);
}

/* ================= 6. CLOSING SECTION ================= */
.closing-section {
    padding: 35px 22px 65px;
}

.closing-card {
    border: 2px solid rgba(184, 216, 242, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closing-seal {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--blue-sky);
}

.closing-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-night);
    margin-bottom: 4px;
}

.closing-sub {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--blue-main);
    margin-bottom: 24px;
}

.signature-block {
    margin-bottom: 20px;
}

.sig-names {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 42px;
    font-weight: 700;
    background: var(--blue-grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.25;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sig-names .sig-amp {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 30px;
    color: var(--gold-champagne);
    -webkit-text-fill-color: var(--gold-champagne);
}

.sig-families {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-deep);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 380px) {
    .couple-names { font-size: 50px; }
    .hero-date-box { gap: 8px; padding: 10px 16px; }
    .friend-main-title { font-size: 30px; }
    .dress-main-title { font-size: 32px; }
    .swatch-circle { width: 38px; height: 38px; }
    .sig-names { font-size: 38px; }
}