/*
Theme Name:  Lumière & Romance — Bridgerton Regency
Theme URI:   https://votre-site.com
Author:      Votre Nom
Author URI:  https://votre-site.com
Description: Un thème WordPress élégant à l'esthétique Regency inspirée de Bridgerton, conçu spécialement pour les sites de mariage. Typographie Playfair Display, palette blush & or, countdown, galerie et formulaire RSVP intégrés.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiere-romance
Tags: wedding, one-page, elegant, regency, romantic, gold, blush, marriage, bride, groom

Lumière & Romance Wedding Theme
Copyright (C) 2025

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
*/

/* ============================================
   CSS CUSTOM PROPERTIES — REGENCY PALETTE
============================================ */
:root {
  --cream:        #faf6f0;
  --ivory:        #f5ede0;
  --blush:        #e8c5be;
  --rose:         #c9877b;
  --dusty-rose:   #b86b72;
  --sage:         #8fa68c;
  --sage-dark:    #637a60;
  --gold:         #c9a96e;
  --gold-light:   #e8d5a3;
  --midnight:     #2a2035;
  --plum:         #4a2d4f;
  --charcoal:     #3d3540;
  --text:         #3a2d35;
  --text-light:   #7a6570;

  --font-display: 'Playfair Display', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-italic:  'IM Fell English', serif;

  --shadow-soft:  0 10px 40px rgba(74,45,79,0.08);
  --shadow-card:  0 20px 60px rgba(74,45,79,0.12);
  --border-gold:  1px solid rgba(201,169,110,0.25);
  --radius:       0px; /* Flat edges pour l'esthétique Regency */
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.85;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--dusty-rose);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--plum); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--plum);
}

p { margin-bottom: 1rem; }

/* ============================================
   TYPOGRAPHY
============================================ */
.display-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.script-accent {
  font-family: var(--font-italic);
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

/* ============================================
   NAVIGATION
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: box-shadow 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(74, 45, 79, 0.1);
}

.site-title a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--plum);
  letter-spacing: 0.05em;
}

.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-navigation a {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.main-navigation a:hover { color: var(--dusty-rose); }

.header-cta a {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--plum);
  padding: 0.65rem 1.5rem;
  transition: background 0.3s;
  display: inline-block;
}
.header-cta a:hover { background: var(--dusty-rose); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--plum);
  font-size: 1.5rem;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
  overflow: hidden;
}

.hero-content {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 6rem 8rem;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    var(--gold) 30%,
    var(--blush) 70%,
    transparent
  );
  opacity: 0.6;
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 4.5vw, 5rem);
  color: var(--plum);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-wedding-date {
  display: block;
  font-style: normal;
  font-size: 0.4em;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.8rem;
}

.hero-description {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 420px;
  margin: 2rem 0 2.5rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  background: var(--plum);
  overflow: hidden;
}

.hero-image .wp-post-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: luminosity;
  filter: sepia(20%);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ivory) 0%, transparent 20%);
  pointer-events: none;
}

.hero-date-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(201,169,110,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(250,246,240,0.12);
  backdrop-filter: blur(8px);
}

/* ============================================
   BUTTONS
============================================ */
.btn,
.wp-block-button__link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  color: var(--cream);
  background: var(--plum);
}
.btn-primary:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74,45,79,0.25);
  color: var(--cream);
}

.btn-secondary {
  color: var(--plum);
  background: transparent;
  border-bottom: 1px solid var(--gold);
  padding: 0 0 3px;
}
.btn-secondary:hover { color: var(--dusty-rose); }

.btn-gold {
  color: var(--plum);
  background: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: var(--plum);
}

/* ============================================
   ORNAMENTS & DECORATIVE
============================================ */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.5rem auto;
  max-width: 280px;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-divider-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Floral background patterns via SVG data URI */
.floral-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23c9a96e' opacity='.15'/%3E%3Ccircle cx='40' cy='10' r='2' fill='%23c9a96e' opacity='.08'/%3E%3Ccircle cx='40' cy='70' r='2' fill='%23c9a96e' opacity='.08'/%3E%3Ccircle cx='10' cy='40' r='2' fill='%23c9a96e' opacity='.08'/%3E%3Ccircle cx='70' cy='40' r='2' fill='%23c9a96e' opacity='.08'/%3E%3C/svg%3E");
}

/* ============================================
   COUNTDOWN
============================================ */
.countdown-section {
  background: var(--plum);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.55);
  margin-top: 0.3rem;
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.35;
  animation: countdownBlink 1.5s ease-in-out infinite;
}

@keyframes countdownBlink {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.1;  }
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--plum);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ============================================
   ABOUT / COUPLE SECTION
============================================ */
.about-section {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img-primary {
  position: absolute;
  width: 75%;
  height: 88%;
  top: 0;
  right: 0;
  object-fit: cover;
  filter: sepia(8%) saturate(0.9);
}

.about-img-secondary {
  position: absolute;
  width: 45%;
  height: 48%;
  bottom: 0;
  left: 0;
  object-fit: cover;
  border: 6px solid var(--cream);
  filter: sepia(8%) saturate(0.9);
}

.about-accent-badge {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  z-index: 2;
}

.couple-monogram {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.monogram-letter {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--plum);
}

.monogram-amp {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
}

/* ============================================
   PROGRAM / TIMELINE
============================================ */
.program-section {
  background: var(--ivory);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.program-section::before,
.program-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold),
    var(--blush),
    var(--gold),
    transparent
  );
}
.program-section::before { top: 0; }
.program-section::after  { bottom: 0; }

.event-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.event-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    var(--gold) 10%,
    var(--gold) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline-event {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-event:nth-child(odd)  .event-info  { grid-column: 1; text-align: right; }
.timeline-event:nth-child(odd)  .event-time  { grid-column: 3; }
.timeline-event:nth-child(even) .event-info  { grid-column: 3; text-align: left;  }
.timeline-event:nth-child(even) .event-time  { grid-column: 1; text-align: right; }

.event-node {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: background 0.3s, color 0.3s;
}

.event-node:hover {
  background: var(--gold);
  color: var(--cream);
}

.event-info h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 0.3rem;
}

.event-info p {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.event-time {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 0.6rem;
}

/* ============================================
   GALLERY
============================================ */
.gallery-section {
  padding: 8rem 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: 1;     grid-row: 1;     }
.gallery-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1;     }
.gallery-item:nth-child(3) { grid-column: 4;     grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 2;     }
.gallery-item:nth-child(5) { grid-column: 3;     grid-row: 2;     }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) saturate(0.88);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: sepia(0%) saturate(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,45,79,0.22) 0%, transparent 55%);
  pointer-events: none;
}

/* Gallery lightbox overlay */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,32,53,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-light);
  transition: background 0.4s;
  z-index: 3;
}
.gallery-item:hover .overlay {
  background: rgba(42,32,53,0.35);
}

/* ============================================
   INFO CARDS
============================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  text-align: center;
  border: var(--border-gold);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.info-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.2rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.info-card-detail {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(201,169,110,0.3);
  padding-top: 0.7rem;
  width: 100%;
}

/* ============================================
   RSVP FORM
============================================ */
.rsvp-section {
  background: var(--plum);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
}

.rsvp-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,197,190,0.08) 0%, transparent 70%);
}

.rsvp-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.rsvp-section .section-tag  { color: var(--gold-light); }
.rsvp-section .section-title { color: var(--cream); }
.rsvp-section .section-lead  { color: rgba(250,246,240,0.65); }

.wpcf7-form,
.rsvp-form {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.2rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label,
.wpcf7-form label {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-field input,
.form-field select,
.form-field textarea,
.wpcf7-text,
.wpcf7-email,
.wpcf7-select,
.wpcf7-textarea {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.28);
  padding: 0.85rem 1.2rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,246,240,0.3); }

.form-field select option,
.wpcf7-select option { background: var(--plum); color: var(--cream); }

.form-field textarea { min-height: 110px; resize: vertical; }

.wpcf7-submit,
.btn-submit {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--gold);
  border: none;
  padding: 1.1rem 2.5rem;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 0.5rem;
}

.wpcf7-submit:hover,
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ============================================
   GIFT REGISTRY
============================================ */
.registry-section {
  background: var(--ivory);
  padding: 7rem 0;
  text-align: center;
}

.registry-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 2rem auto 3rem;
  line-height: 1.8;
  position: relative;
  padding: 0 3.5rem;
}

.registry-quote::before,
.registry-quote::after {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  line-height: 1;
}
.registry-quote::before { content: '\201C'; top: -0.5rem; left: 0; }
.registry-quote::after  { content: '\201D'; bottom: -1rem; right: 0; }

/* ============================================
   ACCOMMODATION
============================================ */
.accommodation-section {
  padding: 8rem 0;
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.hotel-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--ivory);
  border: var(--border-gold);
  align-items: start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.hotel-rank-badge {
  width: 78px;
  height: 78px;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hotel-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.hotel-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.hotel-distance {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--midnight);
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
}

.footer-monogram {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.footer-couple-names {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-wedding-date {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

.footer-quote {
  margin: 3rem auto;
  max-width: 400px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,246,240,0.4);
  line-height: 1.8;
}

.footer-quote cite {
  display: block;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  color: rgba(201,169,110,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom a {
  color: rgba(201,169,110,0.45);
}

/* ============================================
   WORDPRESS CORE
============================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 0.4rem;
}

.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

.sticky { /* WordPress sticky post */ }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 7rem 2rem 4rem; }
  .hero-image   { height: 55vw; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-images { height: 60vw; min-height: 300px; }
  .hotel-grid   { grid-template-columns: 1fr; max-width: 480px; }
  .info-cards   { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .form-row { grid-template-columns: 1fr; }
  .countdown-section { gap: 2rem; padding: 2rem 1rem; }
}

@media (max-width: 700px) {
  .site-header { padding: 1rem 1.5rem; }
  .main-navigation { display: none; }
  .main-navigation.open { display: flex; position: fixed; inset: 0; background: var(--ivory); align-items: center; justify-content: center; }
  .main-navigation.open ul { flex-direction: column; gap: 2rem; text-align: center; }
  .main-navigation.open a { font-size: 1.2rem; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .section-padding { padding: 4rem 0; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-title { font-size: 2.8rem; }
}

/* ============================================
   SCROLLBAR
============================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--dusty-rose); }

/* ============================================
   PHOTO SHARE / QR CODE SECTION
============================================ */
.photo-share-section {
  background: var(--ivory);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.photo-share-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blush), var(--gold), transparent);
}

.photo-share-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.qr-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid rgba(201,169,110,0.3);
  position: relative;
}

/* Coins décoratifs du cadre QR */
.qr-frame::before,
.qr-frame::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.5;
}
.qr-frame::before { top: 0.5rem; left: 0.8rem; }
.qr-frame::after  { bottom: 0.5rem; right: 0.8rem; }

.qr-code-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.qr-placeholder {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
}

.qr-hint {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  max-width: 170px;
  margin: 0;
}

.qr-label {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(201,169,110,0.3);
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ============================================
   GOOGLE MAPS EMBED
============================================ */
.maps-embed-container {
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
}

.maps-embed-container iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.maps-placeholder {
  background: var(--ivory);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(201,169,110,0.35);
}

.maps-placeholder-inner {
  text-align: center;
  padding: 2rem;
}

/* ============================================
   RSVP — NOUVEAUX CHAMPS
============================================ */
.required {
  color: var(--rose);
  font-size: 0.85em;
}

/* Champs âges enfants */
.children-ages-wrapper {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1.5rem;
  margin-top: 0.3rem;
  transition: all 0.4s ease;
}

.children-ages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.field-hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(250,246,240,0.45);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

/* Vérification humaine */
.human-check-field {
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 1.5rem;
}

.human-check-field > label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.human-check-badge {
  font-size: 1.1rem;
}

.human-check-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.human-check-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 0;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — NOUVELLES SECTIONS
============================================ */
@media (max-width: 900px) {
  .photo-share-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .photo-share-text .section-title,
  .photo-share-text .section-tag { text-align: center; }
  .photo-share-qr { display: flex; justify-content: center; }

  .maps-embed-container iframe { height: 300px; }

  .human-check-wrapper { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ============================================
   LANGUAGE SWITCHER
============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  transition: color 0.25s, background 0.25s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 2px;
}

.lang-btn:hover {
  color: var(--plum);
  background: rgba(74,45,79,0.06);
}

.lang-btn.lang-active {
  color: var(--plum);
  font-weight: 600;
  background: rgba(74,45,79,0.07);
}

.lang-sep {
  color: rgba(201,169,110,0.5);
  font-size: 0.75rem;
}

/* Hide text label on very small screens, keep flag */
@media (max-width: 500px) {
  .lang-btn span { display: none; }
}

/* ============================================
   ADMIN NOTICE STYLE (for export page)
============================================ */
.lumiere-admin-notice {
  background: #faf6f0;
  border-left: 4px solid #c9a96e;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}
