:root {
    --brown: #8C7B6B;
    --brown-dark: #7A6A5C;
    --brown-soft: #9D8D7E;
    --brown-light: #B5A898;
    --taupe: #C8BDB0;
    --cream: #FBF9F5;
    --cream-warm: #F7F2EC;
    --ivory: #FFFDF9;
    --linen: #F0EBE3;
    --blush: #EDDDD2;
    --rose: #DDBFB0;
    --gold: #C9A96E;
    --gold-light: #D4BB8A;
    --sage: #C4D1B8;
    --sage-light: #D8E2CC;
    --dusty-rose: #D4B5AB;
    --mauve: #CBAFAA;
    --text: #5C5048;
    --text-soft: #7A6E64;
    --text-muted: #A69D94;
    --white: #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow: hidden; height: 100%; }
body { height: 100%; overflow-x: hidden; overflow-y: auto; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.8;
}

.inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
}
@keyframes gentleSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes calendarPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.2); }
    50% { box-shadow: 0 0 40px rgba(201,169,110,0.4); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== FLOATING PETALS ===== */
.petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}
.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(ellipse, var(--blush), var(--rose));
    border-radius: 50% 0 50% 0;
    opacity: 0;
    animation: petalFall linear infinite;
}
@keyframes petalFall {
    0% { opacity: 0; transform: translateY(-10vh) rotate(0deg) scale(0.5); }
    15% { opacity: 0.6; }
    85% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(105vh) rotate(720deg) scale(1); }
}

/* ===== ORNAMENTAL DIVIDER ===== */
.ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 20px 0;
}
.ornament .line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--taupe), transparent); }
.ornament svg { width: 24px; height: 24px; color: var(--brown-light); opacity: 0.6; }
.ornament-brown .line { background: linear-gradient(90deg, transparent, rgba(255,252,247,0.3), transparent); }
.ornament-brown svg { color: var(--blush); }

/* ===== 1. HERO / BANNER (all-in-one) ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(175deg, var(--ivory) 0%, var(--cream-warm) 40%, var(--linen) 100%);
    overflow: hidden;
    padding: 40px 24px 56px;
}

.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Great Vibes', cursive;
    font-size: clamp(100px, 18vw, 220px);
    color: rgba(107,82,68,0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.hero-all {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-top {
    animation: fadeUp 0.6s ease 0.1s both;
    text-align: center;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeIn 0.5s 0.2s both;
}

.hero-names-inline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 8px;
    animation: fadeUp 0.5s 0.15s both;
    white-space: nowrap;
}
.amp-inline {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    margin: 0 4px;
}

.hero-date-block {
    margin-top: 12px;
    animation: fadeUp 0.5s 0.2s both;
    text-align: center;
}
.hero-date-numbers {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.date-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 400;
    letter-spacing: 0.02em;
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-light) 40%, #fff 50%, var(--gold-light) 60%, var(--gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(201,169,110,0.2));
}
.date-sep {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(28px, 5vw, 48px);
    margin: 0 4px;
    display: inline-block;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 40%, #fff 50%, var(--gold) 60%, var(--gold) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
}
.hero-date-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(9px, 1.5vw, 12px);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 300;
}

/* (scroll-inline removed) */

/* Childhood inside hero */
.hero-childhood {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 32px;
}

.childhood-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.childhood-photo {
    width: clamp(150px, 25vw, 260px);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.childhood-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 4px 6px 24px rgba(0,0,0,0.1);
    border-radius: 4px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.childhood-photo:first-child img { transform: rotate(-3deg); }
.childhood-photo:last-child img { transform: rotate(3deg); }
.childhood-photo:hover img {
    transform: rotate(0deg) scale(1.05) !important;
    box-shadow: 8px 12px 40px rgba(0,0,0,0.15);
}
.childhood-photo img {
    animation: gentleSway 6s ease-in-out infinite, kenBurns 12s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0% { object-position: center top; }
    100% { object-position: center bottom; }
}

.childhood-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.childhood-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brown);
    text-align: center;
    line-height: 1.3;
}

/* Family text inside hero */
.hero-family {
    text-align: center;
}
.hero-family h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--brown);
    font-weight: 400;
    margin-bottom: 16px;
}
.hero-family p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-soft);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== 4. FOREVER BANNER ===== */
.forever-banner {
    padding: clamp(40px, 6vw, 72px) 24px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown), var(--brown-soft));
    color: var(--cream);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -24px;
    margin-bottom: -24px;
}
.forever-banner::before, .forever-banner::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 24px;
    background: var(--cream);
}
.forever-banner::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 95% 70%, 90% 30%, 85% 80%, 80% 20%, 75% 60%, 70% 10%, 65% 70%, 60% 25%, 55% 80%, 50% 15%, 45% 65%, 40% 20%, 35% 75%, 30% 30%, 25% 70%, 20% 15%, 15% 60%, 10% 25%, 5% 80%, 0 40%);
}
.forever-banner::after {
    bottom: -1px;
    clip-path: polygon(0 60%, 5% 20%, 10% 75%, 15% 40%, 20% 85%, 25% 30%, 30% 70%, 35% 25%, 40% 80%, 45% 35%, 50% 85%, 55% 20%, 60% 75%, 65% 30%, 70% 90%, 75% 40%, 80% 80%, 85% 20%, 90% 70%, 95% 30%, 100% 60%, 100% 100%, 0 100%);
}

.forever-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.7;
}
.forever-banner .script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(36px, 7vw, 56px);
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-light) 40%, #fff 50%, var(--gold-light) 60%, var(--gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 12px rgba(201,169,110,0.3));
}
@keyframes textShimmer {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

/* ===== 5. CALENDAR ===== */
.calendar-section {
    padding: clamp(60px, 8vw, 100px) 24px;
    text-align: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.calendar-section .watermark {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Great Vibes', cursive;
    font-size: clamp(80px, 16vw, 180px);
    color: rgba(107,82,68,0.025);
    pointer-events: none;
}
.calendar-month {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 60px);
    color: var(--brown);
    margin-bottom: 28px;
    position: relative; z-index: 1;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(6px, 1.5vw, 14px) clamp(4px, 1vw, 10px);
    max-width: 440px;
    margin: 0 auto 36px;
    position: relative; z-index: 1;
}
.calendar-grid .day-header {
    font-size: clamp(9px, 1.2vw, 12px);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    padding-bottom: 10px;
}
.calendar-grid .day {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-soft);
    padding: 8px 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}
.calendar-grid .day:not(.empty):not(.highlight):hover {
    background: rgba(201,169,110,0.1);
    color: var(--text);
    transform: scale(1.15);
}
.calendar-grid .day.empty { visibility: hidden; }
/* Days before the 6th get a subtle crossed-out feel */
.calendar-grid .day.past {
    color: var(--text-muted);
    opacity: 0.5;
}
.cal-animated .day:not(.empty):not(.highlight) {
    animation: calendarPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.calendar-grid .day.highlight {
    position: relative;
    color: var(--white);
    font-weight: 600;
    z-index: 2;
    animation: heartbeat 2s ease-in-out infinite;
}
.calendar-grid .day.highlight::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown), var(--dusty-rose));
    z-index: -1;
    box-shadow: 0 4px 24px rgba(201,169,110,0.3);
    animation: glowPulse 3s ease-in-out infinite;
}
.calendar-grid .day.highlight::after {
    content: '';
    position: absolute;
    bottom: -16px;
    width: 12px;
    height: 12px;
    background: var(--dusty-rose);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    animation: pulse 2s ease-in-out infinite;
}
.calendar-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-soft);
    font-style: italic;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

/* ===== 6. COUPLE PHOTO ===== */
.couple-photo-section {
    position: relative;
    overflow: hidden;
}
.couple-photo-section img {
    width: 100%;
    height: clamp(280px, 45vh, 450px);
    object-fit: cover;
    object-position: center 70% !important;
    display: block;
    filter: brightness(0.95) saturate(0.9);
}
.couple-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(74,52,38,0.45) 100%);
    display: flex; align-items: center; justify-content: center;
}
.wedding-day-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(60px, 14vw, 130px);
    color: var(--white);
    text-shadow: 0 6px 40px rgba(0,0,0,0.35);
    line-height: 1.1;
    text-align: center;
    animation: fadeIn 2s ease both;
}

/* ===== 7. INVITATION TEXT ===== */
.invitation-block {
    padding: clamp(48px, 7vw, 80px) 24px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown), var(--brown-soft));
    text-align: center;
}
.invitation-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    color: rgba(250,247,242,0.9);
    max-width: 560px;
    margin: 0 auto 32px;
    font-style: italic;
}
.invitation-date {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(32px, 6vw, 48px);
    color: var(--gold-light);
    text-shadow: 0 2px 16px rgba(201,169,110,0.3);
}

/* ===== 8. LOCATION ===== */
.location-section {
    padding: clamp(60px, 8vw, 100px) 24px;
    background: var(--cream);
    text-align: center;
}
.location-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 64px);
    color: var(--brown);
    margin-bottom: 12px;
}
.location-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 48px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    align-items: start;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(184,169,154,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.location-card-header {
    position: relative;
    height: 200px;
    overflow: visible;
}
.location-card-header img {
    width: 100%; height: 200px;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.85);
    transition: transform 0.6s ease;
    border-radius: 20px 20px 0 0;
}
.location-card:hover .location-card-header img {
    transform: scale(1.05);
}
.loc-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loc-column .location-card {
    width: 100%;
}
.loc-icon-standalone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.loc-icon-standalone svg {
    width: 48px; height: 48px;
    color: var(--brown);
    padding: 12px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--linen);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    animation: float 4s ease-in-out infinite;
}
.loc-icon-standalone:nth-child(2) svg {
    animation-delay: -2s;
}
.loc-icon-standalone span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.location-card-body {
    padding: 20px 20px 24px;
    text-align: center;
}
.location-card-body .loc-type {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 500;
}
.location-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
}
.location-card-body .loc-addr {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* (map buttons & modal removed — maps are inline now) */

/* ===== 9. TIMELINE ===== */
.timeline-section {
    padding: clamp(60px, 8vw, 100px) 24px;
    background: var(--cream-warm);
    text-align: center;
}
.timeline-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 64px);
    color: var(--brown);
    margin-bottom: 56px;
}

.tl-time {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--text);
    font-weight: 400;
    line-height: 1;
}
.tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: var(--brown);
    margin-top: 4px;
}
.tl-desc {
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2px;
}

/* ===== 10. DRESSCODE ===== */
.dresscode-section {
    padding: clamp(60px, 8vw, 100px) 24px;
    text-align: center;
    background: var(--cream);
}
.dresscode-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 64px);
    color: var(--brown);
    margin-bottom: 16px;
}
.dresscode-section > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-soft);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.9;
}

.dc-figures {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 8vw, 80px);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dc-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.dc-silhouette {
    position: relative;
    width: 140px;
    height: 280px;
}
.dc-silhouette svg {
    width: 100%;
    height: 100%;
}

.dc-figure-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.dc-palette {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.dc-dot {
    width: clamp(32px, 5vw, 42px);
    height: clamp(32px, 5vw, 42px);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: default;
}
.dc-dot:hover { transform: scale(1.2); }

/* ===== 11. WISHES ===== */
.wishes-section {
    padding: clamp(56px, 8vw, 96px) 24px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown), var(--brown-soft));
    text-align: center;
    position: relative;
}
.wishes-section::before, .wishes-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 24px;
    background: var(--cream);
}
.wishes-section::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 95% 70%, 90% 30%, 85% 80%, 80% 20%, 75% 60%, 70% 10%, 65% 70%, 60% 25%, 55% 80%, 50% 15%, 45% 65%, 40% 20%, 35% 75%, 30% 30%, 25% 70%, 20% 15%, 15% 60%, 10% 25%, 5% 80%, 0 40%);
}
.wishes-section::after {
    bottom: -1px;
    clip-path: polygon(0 60%, 5% 20%, 10% 75%, 15% 40%, 20% 85%, 25% 30%, 30% 70%, 35% 25%, 40% 80%, 45% 35%, 50% 85%, 55% 20%, 60% 75%, 65% 30%, 70% 90%, 75% 40%, 80% 80%, 85% 20%, 90% 70%, 95% 30%, 100% 60%, 100% 100%, 0 100%);
}

.wishes-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 64px);
    color: var(--cream);
    margin-bottom: 28px;
}
.wishes-section .wish-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 2;
    color: rgba(250,247,242,0.88);
    max-width: 520px;
    margin: 0 auto 20px;
    font-style: italic;
}

.wish-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 32px auto;
    max-width: 520px;
    flex-wrap: wrap;
}
.wish-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, background 0.3s;
}
.wish-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.wish-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    animation: wishIconBounce 3s ease-in-out infinite;
}
.wish-card:nth-child(2) .wish-card-icon {
    animation: wishIconGlow 3s ease-in-out infinite;
}
@keyframes wishIconBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-8deg) scale(1.1); }
    50% { transform: rotate(8deg) scale(1.05); }
    75% { transform: rotate(-4deg) scale(1.08); }
}
@keyframes wishIconGlow {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.15); filter: brightness(1.3); }
}
.wish-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(250,247,242,0.8);
    line-height: 1.7;
    font-style: italic;
}

.wishes-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(250,247,242,0.65);
    font-style: italic;
    margin-top: 32px;
    line-height: 1.9;
}
.wishes-signature {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--gold-light);
    margin-top: 16px;
    text-shadow: 0 2px 12px rgba(201,169,110,0.25);
}

/* ===== 12. FINAL / RSVP ===== */
.final-section {
    position: relative;
    overflow: hidden;
    margin-top: -24px;
    z-index: 1;
}
.final-photo {
    position: relative;
    width: 100%;
    height: clamp(380px, 60vh, 560px);
    overflow: hidden;
}
.final-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 80%;
    filter: brightness(0.95) saturate(0.95);
    animation: carDrive 4s ease-in-out infinite;
}
@keyframes carDrive {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    15% { transform: translateX(6px) translateY(-2px) rotate(0.3deg); }
    30% { transform: translateX(-4px) translateY(1px) rotate(-0.2deg); }
    50% { transform: translateX(8px) translateY(-3px) rotate(0.4deg); }
    70% { transform: translateX(-3px) translateY(2px) rotate(-0.3deg); }
    85% { transform: translateX(5px) translateY(-1px) rotate(0.2deg); }
}
.final-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(74,52,38,0.35));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.final-photo-overlay .waiting {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(32px, 6vw, 52px);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    margin-bottom: 8px;
}
.final-photo-overlay .mono-big {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(64px, 12vw, 110px);
    color: rgba(255,255,255,0.85);
    text-shadow: 0 4px 32px rgba(0,0,0,0.3);
    line-height: 1;
}

.final-text {
    padding: clamp(40px, 6vw, 64px) 24px;
    text-align: center;
    background: var(--cream);
}
.final-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 500px;
    margin: 0 auto 20px;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(170deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-soft) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: -1px;
    height: 24px;
    background: var(--cream);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 95% 70%, 90% 30%, 85% 80%, 80% 20%, 75% 60%, 70% 10%, 65% 70%, 60% 25%, 55% 80%, 50% 15%, 45% 65%, 40% 20%, 35% 75%, 30% 30%, 25% 70%, 20% 15%, 15% 60%, 10% 25%, 5% 80%, 0 40%);
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 24px clamp(40px, 6vw, 60px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-monogram {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(56px, 10vw, 96px);
    color: rgba(250,247,242,0.12);
    line-height: 1;
    margin-bottom: 16px;
    animation: float 8s ease-in-out infinite;
}

.footer-names {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--gold-light);
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(201,169,110,0.2);
}

.footer-date {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    letter-spacing: 0.4em;
    color: rgba(250,247,242,0.5);
    margin-bottom: 32px;
    font-weight: 300;
}

.footer-countdown {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 3vw, 32px);
    margin-bottom: 40px;
    flex-wrap: nowrap;
}
.fc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.fc-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 44px);
    color: var(--cream);
    font-weight: 400;
    line-height: 1;
}
.fc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.4);
}
.fc-sep {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--gold);
    opacity: 0.4;
    align-self: flex-start;
    margin-top: 6px;
}

.footer-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(250,247,242,0.55);
    font-style: italic;
    line-height: 2;
    max-width: 480px;
    margin: 0 auto 36px;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}
.footer-ornament .fo-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250,247,242,0.2), transparent);
}
.footer-ornament .fo-heart {
    color: var(--gold);
    opacity: 0.4;
    font-size: 14px;
    animation: heartbeat 3s ease-in-out infinite;
}

.footer-hashtag {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(20px, 4vw, 30px);
    color: rgba(250,247,242,0.35);
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.footer-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(250,247,242,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(250,247,242,0.5);
    transition: all 0.3s;
    cursor: pointer;
}
.footer-link:hover {
    background: rgba(250,247,242,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px);
}
.footer-link svg { width: 18px; height: 18px; }

/* Scroll to top button */
.scroll-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border: 1.5px solid rgba(250,247,242,0.25);
    border-radius: 100px;
    background: transparent;
    color: rgba(250,247,242,0.7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    cursor: pointer;
    transition: all 0.4s;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}
.scroll-top-btn:hover {
    background: rgba(250,247,242,0.1);
    border-color: var(--gold-light);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.scroll-top-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.scroll-top-btn:hover svg { transform: translateY(-3px); }

.footer-copy-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(250,247,242,0.3);
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.3s;
}
.footer-copy-link strong {
    font-weight: 500;
    color: rgba(250,247,242,0.45);
    transition: color 0.3s;
}
.footer-copy-link:hover {
    color: rgba(250,247,242,0.5);
    background: rgba(250,247,242,0.05);
}
.footer-copy-link:hover strong {
    color: var(--gold-light);
}

/* Footer floating particles */
.footer-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.fp {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
    animation: float 10s ease-in-out infinite;
}

/* ===== MAP LINK BUTTON ===== */
.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--taupe);
    border-radius: 100px;
    background: transparent;
    color: var(--text-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    text-decoration: none;
    transition: all 0.3s;
}
.map-link-btn:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===== TIMELINE NEW (left-line-right) ===== */
.tl-rows {
    max-width: 700px;
    margin: 0 auto;
}
.tl-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    min-height: 90px;
}
.tl-left, .tl-right {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
}
.tl-left { text-align: right; }
.tl-right { text-align: left; }
.tl-line {
    width: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.tl-line::before {
    content: '';
    position: absolute;
    top: -24px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--taupe), var(--rose), var(--taupe));
    opacity: 0.3;
}
.tl-row:first-child .tl-line::before { top: 50%; }
.tl-row:last-child .tl-line::before { bottom: 50%; }
.tl-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--taupe);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.tl-icon svg { width: 18px; height: 18px; color: var(--brown); }

/* ===== RSVP BUTTONS ===== */
.rsvp-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 1.5px solid var(--taupe);
    border-radius: 100px;
    background: transparent;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    cursor: pointer;
    transition: all 0.4s;
}
.rsvp-choice:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107,82,68,0.2);
}
.rsvp-choice.rsvp-no {
    border-color: rgba(184,169,154,0.4);
    color: var(--text-muted);
}
.rsvp-choice.rsvp-no:hover {
    background: var(--linen);
    color: var(--text-soft);
    border-color: var(--taupe);
}

/* ===== RSVP FORM CARD ===== */
.rsvp-form-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(184,169,154,0.2);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.rsvp-field {
    margin-bottom: 24px;
}
.rsvp-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--text-soft);
    font-style: italic;
    display: block;
    margin-bottom: 8px;
}
.rsvp-input {
    width: 100%;
    padding: 16px 24px;
    border: 1.5px solid var(--taupe);
    border-radius: 16px;
    background: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}
.rsvp-input:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(107,82,68,0.1);
}
.rsvp-input.error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.rsvp-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #c0392b;
    margin-top: 6px;
    display: none;
}
.rsvp-input.error + .rsvp-error {
    display: block;
}

/* ===== GUEST COUNT BTN ===== */
.guest-count-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--taupe);
    background: transparent;
    color: var(--brown);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: flex; align-items: center; justify-content: center;
}
.guest-count-btn:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}

/* ===== DC DOT ACTIVE ===== */
.dc-dot.active {
    box-shadow: 0 0 0 3px var(--brown), 0 4px 12px rgba(0,0,0,0.15);
    transform: scale(1.15);
}
.dc-dot { cursor: pointer; }

/* ===== PARALLAX & TILT ===== */
.childhood-photo {
    perspective: 600px;
}
.childhood-photo img {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
.childhood-photo:hover img {
    filter: brightness(1.05) contrast(1.05);
}

/* ===== PHOTO SPARKLE ON HOVER ===== */
.childhood-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 4px;
}
.childhood-photo:hover::after {
    opacity: 1;
    animation: sparkleSwipe 0.8s ease forwards;
}
@keyframes sparkleSwipe {
    from { background-position: 100% 100%; }
    to { background-position: 0% 0%; }
}
.childhood-photo { position: relative; overflow: hidden; }

/* ===== COUPLE PHOTO PARALLAX ===== */
.couple-photo-section {
    overflow: hidden;
}
.couple-photo-section img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ===== CURSOR FOLLOWER ===== */
.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
    mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 1; }

/* ===== COUNTDOWN HEARTS ===== */
.heart-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 16px;
    animation: heartBurst 1s ease-out forwards;
}
@keyframes heartBurst {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-80px) scale(0.3); }
}

/* ===== MAGNETIC BUTTONS ===== */
.join-btn, .rsvp-choice {
    position: relative;
    overflow: hidden;
}
.join-btn::before, .rsvp-choice::before {
    content: '';
    position: absolute;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: width 0.6s ease, height 0.6s ease;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.join-btn:hover::before, .rsvp-choice:hover::before {
    width: 300px; height: 300px;
}

/* ===== TEXT REVEAL UNDERLINE ===== */
.hero-family h2 {
    background-image: linear-gradient(var(--gold-light), var(--gold-light));
    background-size: 0% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 1s ease;
    padding-bottom: 4px;
    display: inline;
}
.hero-family h2.text-revealed {
    background-size: 100% 2px;
}

/* ===== LOCATION CARD HOVER GLOW ===== */
.location-card {
    position: relative;
}
.location-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}
.location-card:hover::after { opacity: 0.3; }

/* ===== TIMELINE ROW HOVER ===== */
.tl-row {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 4px 0;
}
.tl-row:hover {
    background: rgba(184,169,154,0.08);
    margin-left: -40px;
    margin-right: -40px;
    padding: 12px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.tl-row:hover .tl-icon {
    background: var(--brown);
    border-color: var(--brown);
    transform: scale(1.15);
}
.tl-row:hover .tl-icon svg { color: var(--cream); }
.tl-row:hover .tl-time { color: var(--brown); }
.tl-row:hover .tl-title { color: var(--gold); }

/* ===== WISH CARD TILT ===== */
.wish-card {
    transform-style: preserve-3d;
    perspective: 500px;
}

/* ===== PHOTO GALLERY LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    animation: fadeUp 0.4s ease both;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* ===== STAGGERED REVEAL ===== */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
/* ===== TABLET & MOBILE (< 700px) ===== */
@media (max-width: 700px) {
    .location-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .loc-column, .loc-column .location-card { width: 100%; }
    .tl-left, .tl-right { padding: 12px 10px; }
    .tl-time { font-size: clamp(22px, 5vw, 28px) !important; }
    .dc-silhouette { width: 100px; height: 200px; }
    .dc-figures { gap: 24px; }
    .couple-photo-section img { height: clamp(200px, 35vh, 300px); }
    .hero { padding: 32px 16px 40px; }
    .hero-childhood { margin-top: 16px; margin-bottom: 20px; }
    .forever-banner { padding: clamp(28px, 5vw, 48px) 16px; }
    .calendar-section { padding: 48px 16px; }
    .calendar-grid { max-width: 320px; }
    .invitation-block { padding: clamp(36px, 5vw, 56px) 16px; }
    .location-section { padding: 48px 16px; }
    .timeline-section { padding: 48px 16px; }
    .tl-rows { max-width: 100%; }
    .dresscode-section { padding: 48px 16px; }
    .dresscode-section > p { max-width: 340px; }
    .wishes-section { padding: 48px 16px; }
    .wish-cards { gap: 16px; }
    .wish-card { min-width: 160px; padding: 20px 16px; }
    .final-text { padding: 32px 16px; }
    .rsvp-form-card { padding: 28px 20px; }
    .rsvp-choice { padding: 12px 24px; font-size: 15px; }
    .footer-inner { padding: 48px 16px 36px; }
    .footer-countdown { gap: clamp(6px, 2vw, 16px); }
    .fc-num { font-size: clamp(24px, 6vw, 36px); }
    .fc-sep { font-size: 22px; }
    .footer-monogram { font-size: clamp(48px, 12vw, 80px); }
    .footer-names { font-size: clamp(24px, 6vw, 36px); }
    .scroll-top-btn { padding: 12px 28px; font-size: 14px; }
    .wedding-day-text { font-size: clamp(40px, 12vw, 80px) !important; }
    .ornament .line { width: 40px; }
    .cursor-glow { display: none; }
    /* Timeline touch */
    .tl-row:active {
        background: rgba(184,169,154,0.08);
        margin-left: -16px;
        margin-right: -16px;
        padding: 10px 16px;
        border-radius: 12px;
    }
    .tl-row:active .tl-icon { background: var(--brown); border-color: var(--brown); transform: scale(1.15); }
    .tl-row:active .tl-icon svg { color: var(--cream); }
    .tl-row:active .tl-time { color: var(--brown); }
    .tl-row:active .tl-title { color: var(--gold); }
}

/* ===== SMALL MOBILE (< 420px) ===== */
@media (max-width: 420px) {
    .childhood-photo { width: 120px; }
    .childhood-text { font-size: clamp(16px, 4vw, 22px); }
    .hero-names-inline { font-size: clamp(28px, 8vw, 48px); }
    .date-num { font-size: clamp(28px, 7vw, 48px); }
    .date-sep { font-size: clamp(22px, 5vw, 36px); }
    .tl-row { grid-template-columns: 1fr 36px 1fr; }
    .tl-icon { width: 32px; height: 32px; }
    .tl-icon svg { width: 13px; height: 13px; }
    .tl-desc { font-size: 10px; }
    .couple-photo-section img { height: 200px; }
    .final-photo { height: clamp(280px, 50vh, 380px); }
    .calendar-grid { max-width: 280px; gap: 4px 2px; }
    .calendar-grid .day-header { font-size: 8px; padding-bottom: 6px; }
    .calendar-grid .day { font-size: 14px; padding: 4px 0; }
    .calendar-grid .day.highlight::before { inset: -1px; }
    .calendar-grid .day.highlight::after { bottom: -12px; width: 8px; height: 8px; }
    .calendar-month { font-size: clamp(30px, 7vw, 44px); }
    .dc-dot { width: clamp(28px, 7vw, 36px); height: clamp(28px, 7vw, 36px); }
    .dc-palette { gap: 6px; }
    .dc-figures { gap: 16px; }
    .dc-silhouette { width: 80px; height: 170px; }
    .rsvp-form-card { padding: 24px 16px; border-radius: 18px; }
    .rsvp-input { padding: 14px 16px; font-size: 15px; }
    .guest-count-btn { width: 36px; height: 36px; font-size: 18px; }
    .wish-card { min-width: 100%; }
    .wish-card-icon { font-size: 28px; }
    .location-card-body h3 { font-size: 20px; }
    .map-link-btn { padding: 10px 20px; font-size: 13px; }
    .loc-icon-standalone svg { width: 40px; height: 40px; padding: 10px; }
    .footer-quote { font-size: clamp(13px, 3.5vw, 16px); }
    .footer-hashtag { font-size: clamp(18px, 5vw, 26px); }
}

/* ===== VERY SMALL (< 360px) ===== */
@media (max-width: 360px) {
    .childhood-photo { width: 105px; }
    .childhood-text { font-size: 15px; }
    .hero-names-inline { font-size: 26px; white-space: normal; }
    .date-num { font-size: 26px; }
    .hero { padding: 24px 12px 32px; }
    .forever-banner { padding: 24px 12px; }
    .forever-banner h2 { font-size: 11px; }
    .forever-banner .script { font-size: 30px; }
    .tl-left, .tl-right { padding: 10px 6px; }
    .tl-time { font-size: 20px !important; }
    .tl-title { font-size: 13px; }
    .rsvp-choice { padding: 10px 18px; font-size: 13px; gap: 6px; }
    .fc-num { font-size: 22px; }
    .fc-label { font-size: 7px; }
    .calendar-grid { max-width: 250px; gap: 3px 1px; }
    .calendar-grid .day { font-size: 13px; padding: 3px 0; }
    .calendar-section { padding: 36px 12px; }
}
