/* =============================================
   MARIAGE DAN & MÉLANIE — Stylesheet
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Design Tokens --- */
:root {
  --sage: #9CAF88;
  --sage-light: #B7C9A8;
  --sage-dark: #6B7F5C;
  --sage-pale: #E8EDE3;
  --provence: #7B6D8E;
  --provence-light: #A899B8;
  --provence-dark: #5A4E6A;
  --provence-pale: #E8E3ED;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE2;
  --text: #3A3430;
  --text-light: #6B635C;
  --white: #FFFFFF;
  --gold: #C9B78A;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;

  --transition: 0.3s ease;
}

/* =============================================
   SITE LOCK OVERLAY
   ============================================= */
.site-lock {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(90, 78, 106, 0.97) 0%,
      rgba(107, 127, 92, 0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lock-content {
  text-align: center;
  max-width: 400px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lock-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
  opacity: 0.95;
}

.lock-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.lock-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.lock-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lock-form input[type="password"] {
  width: 140px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lock-form input[type="password"]:focus {
  border-color: var(--sage-light);
  box-shadow: 0 0 0 3px rgba(183, 201, 168, 0.2);
}

.lock-form input[type="password"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 8px;
}

.lock-submit-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.lock-submit-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lock-error {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #f0a0a0;
  margin-top: 12px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .lock-content {
    margin: 0 20px;
    padding: 40px 28px;
  }

  .lock-form input[type="password"] {
    width: 120px;
    font-size: 1.5rem;
    letter-spacing: 10px;
  }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- Decorative Separator --- */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--sage);
  opacity: 0.5;
}

.separator span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sage);
  font-style: italic;
}

/* =============================================
   VIDEO INTRO OVERLAY
   ============================================= */
.video-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s ease;
}

.video-intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

.video-intro.hidden {
  display: none;
}

.video-intro-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.video-intro-container {
  position: relative;
  z-index: 1;
  width: 360px;
  max-width: 90vw;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(123, 109, 142, 0.15);
}

.video-intro-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-skip {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.video-skip:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile: fullscreen video */
@media (max-width: 768px) {
  .video-intro-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .video-skip {
    bottom: 30px;
  }
}

/* =============================================
   HERO SECTION — Background + Countdown
   ============================================= */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/vineyard-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(58, 52, 48, 0.3) 0%,
      rgba(58, 52, 48, 0.5) 50%,
      rgba(58, 52, 48, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-content .ampersand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage-light);
  display: block;
  margin: 4px 0;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0 48px;
}

.countdown-item {
  text-align: center;
  min-width: 70px;
}

.countdown-item .number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  display: block;
  line-height: 1;
  color: var(--white);
}

.countdown-item .label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-top: 6px;
  display: block;
}

.countdown-item+.countdown-item::before {
  content: '';
}

/* --- Hero CTA Button --- */
.btn-hero {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 48px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* =============================================
   BURGER MENU
   ============================================= */
.burger-toggle {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition);
}

.burger-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.burger-toggle.active {
  background: rgba(250, 247, 242, 0.15);
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Scroll state: dark burger */
.burger-toggle.scrolled {
  background: rgba(58, 52, 48, 0.08);
  backdrop-filter: blur(10px);
  border-color: rgba(58, 52, 48, 0.15);
}

.burger-toggle.scrolled span {
  background: var(--text);
}

/* --- Fullscreen Menu Overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(135deg,
      rgba(90, 78, 106, 0.97) 0%,
      rgba(107, 127, 92, 0.97) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-logo {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
  border-radius: 50%;
  opacity: 0.95;
}

.menu-nav {
  list-style: none;
  text-align: center;
}

.menu-nav li {
  margin: 14px 0;
}

.menu-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.menu-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--sage-light);
  transition: width var(--transition);
}

.menu-nav a:hover {
  color: var(--sage-light);
}

.menu-nav a:hover::after {
  width: 100%;
}

/* =============================================
   MAIN CONTENT — Faire-Part
   ============================================= */
.main-content {
  position: relative;
}

/* --- Decorative top border --- */
.faire-part-header {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: var(--cream);
}

.faire-part-header .monogram-img {
  width: 200px;
  /* Increased from 140px */
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.faire-part-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--provence-dark);
  font-style: italic;
  margin-bottom: 8px;
}

.faire-part-header .date-header {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =============================================
   EVENT BLOCKS — Mairie & Houppa
   ============================================= */
.event-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.event-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/vineyard-bg.png');
  background-size: 600px;
  background-repeat: repeat;
  opacity: 0.15;
  z-index: 0;
}

.event-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--cream) 0%,
      transparent 15%,
      transparent 85%,
      var(--cream) 100%);
  z-index: 0;
}

.event-section .event-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.event-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.icon-event {
  width: 56px;
  height: 56px;
  color: var(--provence);
  opacity: 0.7;
}

.event-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--provence-dark);
  margin-bottom: 6px;
}

.event-section .event-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 28px;
}

.event-section .event-details {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 2;
  margin-bottom: 32px;
}

.event-section .event-details strong {
  font-weight: 600;
  color: var(--provence-dark);
}

/* --- Waze Button --- */
.btn-waze {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(156, 175, 136, 0.3);
}

.btn-waze:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(156, 175, 136, 0.45);
}

.btn-waze svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Section divider --- */
.section-divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg,
      transparent,
      var(--sage),
      transparent);
  opacity: 0.4;
}

/* =============================================
   FORMULAIRE SECTION
   ============================================= */
.form-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--cream);
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  opacity: 0.4;
}

.form-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--provence-dark);
  margin-bottom: 8px;
}

.form-section .form-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-style: italic;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  min-height: 300px;
  border: 1px solid var(--sage-pale);
  border-radius: 12px;
  padding: 48px 32px;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.form-container .placeholder-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  opacity: 0.6;
}

/* --- RSVP Form --- */
.rsvp-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input[type="text"] {
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 14px 16px;
  border: 1px solid var(--sage-pale);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input[type="text"]:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

.form-group input[type="text"]::placeholder {
  color: var(--text-light);
  opacity: 0.5;
}

/* --- Checkbox Options --- */
.form-options {
  margin-bottom: 24px;
}

.checkbox-group {
  margin-bottom: 12px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 14px 18px;
  border: 1px solid var(--sage-pale);
  border-radius: 10px;
  transition: all var(--transition);
  background: var(--cream);
}

.custom-checkbox:hover {
  border-color: var(--sage-light);
  background: rgba(156, 175, 136, 0.06);
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--sage-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
}

.checkmark::after {
  content: '';
  width: 6px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
  position: absolute;
  top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark {
  background: var(--sage);
  border-color: var(--sage);
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
  transform: rotate(45deg) scale(1);
}

.custom-checkbox input[type="checkbox"]:checked~.label-text {
  color: var(--text);
  font-weight: 500;
}

.label-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  transition: color var(--transition);
  line-height: 1.4;
}

.label-text strong {
  color: var(--provence-dark);
  font-weight: 600;
}

/* --- Attendance Details --- */
.attendance-details {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--sage-pale);
  border-radius: 10px;
  background: var(--cream);
}

.details-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.details-text input[type="number"] {
  width: 60px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 4px;
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--provence-dark);
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
  appearance: textfield;
}

.details-text input[type="number"]::-webkit-outer-spin-button,
.details-text input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.details-text input[type="number"]:focus {
  border-color: var(--sage);
}

/* --- Submit Button --- */
.form-submit {
  text-align: center;
  margin-top: 8px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  padding: 16px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(156, 175, 136, 0.3);
  position: relative;
  min-width: 250px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(156, 175, 136, 0.45);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Loader */
.btn-submit .loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit.loading span:first-child {
  display: none;
}

.btn-submit.loading .loader {
  display: inline-block;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .form-container {
    padding: 32px 20px;
  }

  .btn-submit {
    width: 100%;
    padding: 16px 24px;
  }
}

/* =============================================
   PENSÉES — In Memoriam
   ============================================= */
.pensee-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--cream);
  position: relative;
}

.pensee-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid rgba(156, 175, 136, 0.3);
  /* Soft sage border */
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

/* Decorative corners */
.pensee-content::before,
.pensee-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--provence);
  transition: all 0.5s ease;
  opacity: 0.6;
}

.pensee-content::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.pensee-content::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.pensee-content .separator {
  margin-bottom: 30px;
  opacity: 0.6;
}

.pensee-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pensee-memorial {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 2;
  margin-top: 32px;
  border-top: 1px solid rgba(123, 109, 142, 0.2);
  /* Soft provence separator */
  padding-top: 32px;
}

.pensee-memorial strong {
  font-weight: 500;
  color: var(--provence-dark);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95em;
  display: inline-block;
  margin: 0 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(135deg,
      var(--provence-dark) 0%,
      var(--sage-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/vineyard-bg.png');
  background-size: 500px;
  background-repeat: repeat;
  opacity: 0.06;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-monogram {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-light);
  margin-bottom: 8px;
}

.footer-date {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 32px;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--sage-light);
}

.footer-separator {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.4;
  font-style: italic;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .countdown {
    gap: 16px;
  }

  .countdown-item {
    min-width: 56px;
  }

  .countdown-item .number {
    font-size: 1.8rem;
  }

  .countdown-item .label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .btn-hero {
    padding: 14px 36px;
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .event-section {
    padding: 60px 20px;
  }

  .menu-nav a {
    font-size: 1.3rem;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 0.75rem;
  }

  .form-container {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content .subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item .number {
    font-size: 1.5rem;
  }

  .btn-hero {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .burger-toggle {
    top: 16px;
    right: 16px;
  }
}