/* ============================================
   SACHA & SHANNON — WEDDING WEBSITE
   ============================================ */

:root {
    --gold: #c9a96e;
    --gold-light: #e0c992;
    --gold-dark: #a88a4e;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --cream: #faf8f5;
    --cream-2: #f5f0e8;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.script {
    font-family: var(--font-script);
}

.light {
    color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

#navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

#navbar.scrolled .nav-logo-img {
    filter: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */

#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-proposal.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 46, 0.4) 0%,
        rgba(26, 26, 46, 0.6) 50%,
        rgba(26, 26, 46, 0.85) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

/* ---- Hebrew / Jewish elements ---- */

.bsd {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    z-index: 10;
    direction: rtl;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hebrew-blessing {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 500;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 1s 0.1s forwards;
    letter-spacing: 3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hebrew-verse {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(18px, 3.5vw, 28px);
    font-weight: 400;
    color: var(--gold-light);
    direction: rtl;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hebrew-section {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: var(--gold);
    direction: rtl;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 2px;
    opacity: 0.85;
}

.hebrew-section.light {
    color: var(--gold-light);
}

.hebrew-parallax {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 700;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hebrew-families {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 500;
    color: var(--gold);
    direction: rtl;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 3px;
}

.success-hebrew {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.family-name-hebrew {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 500;
    color: var(--gold);
    direction: rtl;
    letter-spacing: 3px;
    margin-top: 4px;
}

.footer-hebrew {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.hebrew-hommage {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: var(--gold);
    direction: rtl;
    text-align: center;
    margin-top: 24px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: clamp(20px, 4vw, 32px);
    color: var(--gold-light);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 32px);
    flex-wrap: wrap;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.hero-title .name {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 90px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 4px;
}

.hero-title .ampersand {
    font-family: var(--font-script);
    font-size: clamp(36px, 6vw, 72px);
    color: var(--gold);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
}

.hero-divider .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-divider .ornament {
    color: var(--gold);
    font-size: 14px;
}

.ring-icon {
    display: inline-flex;
    align-items: center;
    filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.5));
    animation: ringShimmer 3s ease-in-out infinite;
}

.monogram-icon {
    height: 60px !important;
    width: auto !important;
    max-height: 60px;
    max-width: 100px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    display: inline-block;
}

.family-divider .monogram-icon {
    height: 50px !important;
    max-height: 50px;
    max-width: 80px;
}

@keyframes ringShimmer {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.4)); }
    50% { filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.8)); }
}

.hero-date {
    font-family: var(--font-sans);
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s 1s forwards;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 4vw, 40px);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s 1.2s forwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    min-width: 60px;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 14px 40px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s 1.4s forwards;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
    padding: 100px 0;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--dark);
}

.section-white {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-pre {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text);
}

.section-title.light {
    color: var(--white);
}

.section-divider {
    margin-top: 16px;
}

.ornament.gold {
    color: var(--gold);
    font-size: 16px;
}

/* ============================================
   NOTRE HISTOIRE
   ============================================ */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
}

.story-text {
    padding: 20px 0;
}

.story-quote {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.4;
}

.story-text p {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-light);
}

.story-signature {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--gold-dark);
    margin-top: 24px;
}

/* ============================================
   PROGRAMME / TIMELINE
   ============================================ */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--dark);
    z-index: 1;
}

.timeline-dot.big {
    width: 20px;
    height: 20px;
    left: -51px;
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}

.timeline-date {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.timeline-date .day {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.timeline-date .num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}

.timeline-date .month {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.timeline-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.timeline-card.highlight {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.timeline-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.timeline-time {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-place {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}

.timeline-address {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.timeline-note {
    font-family: var(--font-body);
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.timeline-note.invitation {
    display: inline-block;
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    margin-top: 4px;
}

.timeline-map-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gold);
    margin-top: 12px;
    transition: opacity 0.3s;
}

.timeline-map-btn:hover {
    opacity: 0.7;
}

/* ============================================
   PARALLAX BREAK
   ============================================ */

.parallax-break {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.65);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.parallax-content .script {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--gold-light);
}

/* ============================================
   LIEU
   ============================================ */

.lieu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.lieu-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.lieu-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.lieu-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lieu-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lieu-detail strong {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.lieu-detail p {
    font-size: 16px !important;
    margin-bottom: 0 !important;
}

.btn-gold {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 14px 36px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* ============================================
   HÉBERGEMENT
   ============================================ */

.hotel-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.hotel-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--gold);
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.hotel-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.hotel-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hotel-card > p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.hotel-prices {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.hotel-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 28px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.hotel-price.featured {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
}

.price-label {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-top: 8px;
}

.price-note {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.hotel-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============================================
   RSVP FORM
   ============================================ */

.rsvp-form {
    max-width: 650px;
    margin: 0 auto;
}

.rsvp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.rsvp-field {
    margin-bottom: 20px;
}

.rsvp-field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 8px;
}

.rsvp-field input[type="text"],
.rsvp-field textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.rsvp-field input[type="text"]:focus,
.rsvp-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.rsvp-field textarea {
    resize: vertical;
    min-height: 80px;
}

.rsvp-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    max-width: 180px;
}

.counter-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    font-size: 22px;
    color: var(--gold-dark);
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-sans);
}

.counter-btn:hover {
    background: rgba(201, 169, 110, 0.15);
}

.rsvp-counter input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(201, 169, 110, 0.2);
    border-right: 1px solid rgba(201, 169, 110, 0.2);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    outline: none;
    padding: 8px 0;
    -moz-appearance: textfield;
}

.rsvp-counter input[type="number"]::-webkit-inner-spin-button,
.rsvp-counter input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rsvp-events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.rsvp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--cream);
}

.rsvp-checkbox:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.rsvp-checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(201, 169, 110, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    font-size: 14px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s;
}

.rsvp-checkbox input:checked ~ .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.rsvp-checkbox input:checked ~ .checkmark::after {
    opacity: 1;
}

.rsvp-checkbox input:checked ~ .checkbox-label strong {
    color: var(--gold-dark);
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkbox-label strong {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.checkbox-label small {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-light);
}

.rsvp-submit {
    display: block;
    width: 100%;
    padding: 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.rsvp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.rsvp-submit:active {
    transform: translateY(0);
}

.rsvp-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.rsvp-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.rsvp-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text);
    margin-bottom: 8px;
}

.rsvp-success p {
    font-size: 18px;
    color: var(--text-light);
}

.rsvp-error {
    text-align: center;
    padding: 16px;
    background: #fff0f0;
    border: 1px solid #ffcccc;
    border-radius: 8px;
    margin-top: 16px;
    color: #cc3333;
    font-family: var(--font-sans);
    font-size: 14px;
}

/* ============================================
   GALERIE
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    padding: 16px;
    transition: opacity 0.3s;
    z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.6;
}

.lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 40px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   HOMMAGE
   ============================================ */

.hommage-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.hommage-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hommage-names {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.hommage-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hommage-star {
    color: var(--gold);
    font-size: 20px;
}

.hommage-name p {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
}

.hommage-zichrono {
    font-size: 16px;
    color: var(--gold);
    margin-left: 8px;
}

.hommage-quote {
    font-family: var(--font-script);
    font-size: 26px;
    color: var(--gold);
    line-height: 1.4;
}

/* ============================================
   FAMILLES
   ============================================ */

.families-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: center;
}

.family-card {
    flex: 1;
    max-width: 350px;
}

.family-card h3 {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.family-parent {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.family-note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 8px;
}

.family-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 2px;
}

.family-divider {
    font-size: 32px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--dark);
    padding: 60px 20px;
    text-align: center;
}

.footer-names {
    font-family: var(--font-script);
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-date {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-ornament .line {
    width: 40px;
    height: 1px;
    background: rgba(201, 169, 110, 0.4);
}

.footer-love {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Hero content should not use scroll reveal */
.hero-content.reveal {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Tablette (1024px) ---- */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .story-grid {
        gap: 40px;
    }

    .families-grid {
        gap: 36px;
    }

    .family-card {
        max-width: 300px;
    }

    .lieu-content {
        gap: 36px;
    }

    .hommage-content {
        max-width: 580px;
    }

    .parallax-break {
        height: 40vh;
        min-height: 280px;
    }
}

/* ---- Mobile (768px) ---- */
@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-logo-img {
        height: 34px;
    }

    /* Hero */
    #hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .bsd {
        top: 16px;
        right: 20px;
        font-size: 18px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-divider .line {
        width: 40px;
    }

    .hero-cta {
        padding: 12px 32px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Monogram */
    .monogram-icon {
        height: 50px !important;
        max-height: 50px;
        max-width: 80px;
    }

    .family-divider .monogram-icon {
        height: 45px !important;
        max-height: 45px;
        max-width: 72px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-pre {
        font-size: 24px;
    }

    /* Familles */
    .families-grid {
        flex-direction: column;
        gap: 28px;
    }

    .family-card {
        max-width: 100%;
    }

    .family-divider {
        transform: rotate(0);
    }

    .family-name {
        font-size: 28px;
    }

    .family-parent {
        font-size: 18px;
    }

    .hebrew-families {
        font-size: 24px;
        margin-bottom: 28px;
    }

    /* Hommage */
    .hommage-intro {
        font-size: 16px;
    }

    .hommage-name p {
        font-size: 17px;
    }

    .hommage-quote {
        font-size: 22px;
    }

    .hommage-names {
        gap: 16px;
        margin-bottom: 32px;
    }

    /* Notre histoire */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image {
        order: -1;
    }

    .story-quote {
        font-size: 26px;
    }

    .story-text p {
        font-size: 16px;
    }

    .story-signature {
        font-size: 30px;
    }

    /* Timeline */
    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-dot {
        left: -38px;
    }

    .timeline-dot.big {
        left: -41px;
    }

    .timeline-card {
        padding: 24px;
    }

    .timeline-card h3 {
        font-size: 20px;
    }

    .timeline-date .num {
        font-size: 36px;
    }

    .timeline-item {
        margin-bottom: 36px;
    }

    /* Parallax */
    .parallax-break {
        height: 35vh;
        min-height: 250px;
        background-attachment: scroll;
    }

    /* Lieu */
    .lieu-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lieu-text p {
        font-size: 16px;
    }

    .lieu-map iframe {
        height: 300px;
    }

    /* RSVP */
    .rsvp-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rsvp-events {
        grid-template-columns: 1fr;
    }

    .rsvp-checkbox {
        padding: 14px;
    }

    .rsvp-submit {
        padding: 16px;
        font-size: 13px;
    }

    /* Hébergement */
    .hotel-card {
        padding: 32px 24px;
    }

    .hotel-prices {
        flex-direction: column;
        gap: 16px;
    }

    /* Galerie */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .gallery-caption {
        transform: translateY(0);
        padding: 12px 10px 10px;
        font-size: 11px;
    }

    /* Lightbox — plus gros boutons tactiles */
    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        padding: 20px;
    }

    .lightbox-close {
        font-size: 36px;
        top: 12px;
        right: 16px;
    }

    /* Footer */
    footer {
        padding: 48px 16px;
    }

    .footer-names {
        font-size: 34px;
    }

    .footer-hebrew {
        font-size: 26px;
    }
}

/* ---- Petit mobile (480px) ---- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-title .name {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-title .ampersand {
        font-size: 28px;
    }

    .hero-title {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-divider {
        gap: 10px;
        margin-bottom: 14px;
    }

    .hero-divider .line {
        width: 30px;
    }

    .hero-date {
        letter-spacing: 2px;
        margin-bottom: 28px;
    }

    .hero-cta {
        padding: 11px 28px;
        font-size: 11px;
    }

    /* Monogram */
    .monogram-icon {
        height: 42px !important;
        max-height: 42px;
        max-width: 68px;
    }

    .family-divider .monogram-icon {
        height: 38px !important;
        max-height: 38px;
        max-width: 62px;
    }

    .nav-logo-img {
        height: 30px;
    }

    /* Countdown */
    .countdown {
        gap: 12px;
        margin-bottom: 28px;
    }

    .countdown-num {
        font-size: 24px;
        min-width: 48px;
    }

    .countdown-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-pre {
        font-size: 22px;
    }

    /* Familles */
    .families-grid {
        gap: 24px;
    }

    .family-card h3 {
        font-size: 24px;
    }

    .family-name {
        font-size: 26px;
    }

    .family-parent {
        font-size: 16px;
    }

    .family-note {
        font-size: 14px;
    }

    .hebrew-families {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .family-name-hebrew {
        font-size: 18px;
    }

    /* Hommage */
    .hommage-name {
        gap: 8px;
    }

    .hommage-name p {
        font-size: 15px;
    }

    .hommage-star {
        font-size: 16px;
    }

    .hommage-zichrono {
        font-size: 13px;
    }

    .hommage-quote {
        font-size: 20px;
    }

    /* Story */
    .story-quote {
        font-size: 24px;
    }

    .story-signature {
        font-size: 28px;
    }

    /* Timeline */
    .timeline {
        padding-left: 36px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-dot {
        left: -34px;
        width: 12px;
        height: 12px;
    }

    .timeline-dot.big {
        left: -37px;
        width: 18px;
        height: 18px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 18px;
    }

    .timeline-date .num {
        font-size: 32px;
    }

    .timeline-time {
        font-size: 13px;
    }

    .timeline-place {
        font-size: 16px;
    }

    .timeline-address {
        font-size: 13px;
    }

    .timeline-note {
        font-size: 14px;
    }

    .timeline-icon {
        font-size: 24px;
    }

    .timeline-item {
        margin-bottom: 32px;
    }

    /* Parallax */
    .parallax-break {
        height: 30vh;
        min-height: 200px;
    }

    /* Lieu */
    .lieu-map iframe {
        height: 250px;
    }

    .lieu-detail strong {
        font-size: 12px;
    }

    .btn-gold {
        font-size: 12px;
        padding: 12px 28px;
    }

    /* RSVP */
    .rsvp-field label {
        font-size: 11px;
    }

    .rsvp-field input[type="text"],
    .rsvp-field textarea {
        font-size: 16px;
        padding: 12px 14px;
    }

    .checkbox-label strong {
        font-size: 13px;
    }

    .checkbox-label small {
        font-size: 11px;
    }

    .rsvp-submit {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .success-hebrew {
        font-size: 26px;
    }

    /* Galerie */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 1;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Footer */
    footer {
        padding: 40px 16px;
    }

    .footer-names {
        font-size: 30px;
    }

    .footer-date {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .footer-hebrew {
        font-size: 24px;
    }

    .footer-love {
        font-size: 14px;
    }
}

/* ---- Très petit mobile (360px) ---- */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title .name {
        font-size: 30px;
    }

    .hero-title .ampersand {
        font-size: 24px;
    }

    .hero-title {
        gap: 6px;
    }

    .countdown-num {
        font-size: 20px;
        min-width: 40px;
    }

    .countdown-label {
        font-size: 8px;
    }

    .countdown {
        gap: 8px;
    }

    .monogram-icon {
        height: 36px !important;
        max-height: 36px;
        max-width: 58px;
    }

    .family-divider .monogram-icon {
        height: 32px !important;
        max-height: 32px;
        max-width: 52px;
    }

    .family-name {
        font-size: 22px;
    }

    .family-card h3 {
        font-size: 22px;
    }

    .hebrew-families {
        font-size: 18px;
    }

    .section-pre {
        font-size: 20px;
    }

    .hommage-name p {
        font-size: 14px;
    }

    .hommage-quote {
        font-size: 18px;
    }

    .story-quote {
        font-size: 22px;
    }

    .timeline-card {
        padding: 16px;
    }

    .timeline-card h3 {
        font-size: 16px;
    }

    .timeline-date .num {
        font-size: 28px;
    }

    .footer-names {
        font-size: 26px;
    }

    .footer-hebrew {
        font-size: 22px;
    }

    .nav-logo-img {
        height: 26px;
    }
}
