/* assets/css/styles.css */

/* ================================
   THEME — LIGHT WEDDING (Rose gold / Silver / Cream)
   ================================ */
:root {
  /* Base (light, wedding) */
  --bg0: #fffaf5;
  /* cream */
  --bg1: #f4efe8;
  /* warm beige */
  --ink: #1f2326;
  /* charcoal */
  --muted: rgba(31, 35, 38, .72);
  --line: rgba(31, 35, 38, .12);

  /* Accents */
  --gold: #d7a3b1;
  /* rose gold */
  --gold2: #b78894;
  /* deeper rose */
  --silver: #c7cdd6;
  /* silver */
  --cream: #fff3e8;

  /* Glass */
  --glass: rgba(255, 255, 255, .65);
  --glass2: rgba(255, 255, 255, .78);

  /* Shadows */
  --shadow: 0 24px 70px rgba(24, 22, 26, .10);
  --shadow2: 0 14px 36px rgba(24, 22, 26, .08);

  --r: 22px;
  --r2: 16px;

  --nav-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;

  /* Fond lumineux : ivoire + halos rose gold / argent */
  background:
    radial-gradient(1100px 680px at 18% 10%, rgba(215, 163, 177, .22), transparent 60%),
    radial-gradient(900px 640px at 82% 18%, rgba(199, 205, 214, .20), transparent 62%),
    radial-gradient(700px 520px at 50% 95%, rgba(255, 243, 232, .75), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* a11y: reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ================================
   NAV - DESKTOP & MOBILE RESPONSIVE
   ================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;

  /* light glass */
  background: rgba(255, 250, 245, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-right: auto;
  transition: transform .3s ease;
}

.nav-brand:hover {
  transform: translateY(-2px);
}

.brand-script {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  letter-spacing: .01em;
}

.brand-amp {
  color: var(--gold2);
  font-weight: 700;
  opacity: .95;
  font-size: 16px;
}

/* Desktop navigation */
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  color: rgba(31, 35, 38, .70);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-link .nav-icon {
  width: 16px;
  height: 16px;
  opacity: .7;
  transition: opacity .3s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(215, 163, 177, .35);
  background: rgba(255, 255, 255, .55);
}

.nav-link:hover .nav-icon {
  opacity: 1;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Audio button with icons */
.audio-btn {
  border: 1px solid rgba(215, 163, 177, .35);
  background: linear-gradient(135deg, rgba(215, 163, 177, .18), rgba(199, 205, 214, .16));
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.audio-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  border-color: rgba(215, 163, 177, .55);
  box-shadow: 0 10px 22px rgba(24, 22, 26, .10);
}

.audio-icon {
  width: 18px;
  height: 18px;
  transition: all .3s ease;
}

.audio-icon-off {
  display: none;
}

.audio-btn.is-on .audio-icon-on {
  display: none;
}

.audio-btn.is-on .audio-icon-off {
  display: block;
  color: var(--gold2);
}

/* Burger button */
.burger {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(31, 35, 38, .14);
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.burger:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 163, 177, .45);
  background: rgba(255, 255, 255, .78);
}

.burger-line {
  width: 20px;
  height: 2px;
  background: rgba(31, 35, 38, .85);
  border-radius: 2px;
  display: block;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* Burger animation when open */
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 22, 26, .35);
  backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.menu-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile drawer panel */
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  z-index: 100;
  border-left: 1px solid rgba(31, 35, 38, .12);
  background: linear-gradient(180deg, rgba(255, 250, 245, .98), rgba(244, 239, 232, .98));
  box-shadow: -10px 0 60px rgba(24, 22, 26, .18);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.menu-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
}

.menu-head {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(31, 35, 38, .10);
  background: rgba(255, 255, 255, .35);
}

.menu-title {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .60);
  font-weight: 600;
}

.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 35, 38, .14);
  background: rgba(255, 255, 255, .70);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, .88);
  transform: rotate(90deg);
}

.menu-close svg {
  width: 20px;
  height: 20px;
}

.menu-links {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.menu-link {
  text-decoration: none;
  color: rgba(31, 35, 38, .82);
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .70);
  border-radius: 14px;
  padding: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.menu-link svg {
  width: 18px;
  height: 18px;
  opacity: .8;
  transition: opacity .3s ease;
}

.menu-link:active {
  transform: scale(.98);
  background: rgba(215, 163, 177, .16);
  border-color: rgba(215, 163, 177, .35);
}

.menu-link:active svg {
  opacity: 1;
}

.menu-footer {
  padding: 16px;
  border-top: 1px solid rgba(31, 35, 38, .10);
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.audio-btn-full {
  width: 100%;
  justify-content: center;
}

.menu-hint {
  color: rgba(31, 35, 38, .60);
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.menu-hint svg {
  width: 14px;
  height: 14px;
  color: var(--gold2);
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */
@media (max-width: 980px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .audio-text {
    display: none;
  }

  .nav-inner {
    padding: 12px 16px;
  }

  .brand-script {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .brand-script {
    font-size: 20px;
  }

  .brand-amp {
    font-size: 14px;
  }

  .menu-drawer {
    width: 100vw;
  }
}

/* ================================
   HERO SECTION - RESPONSIVE
   ================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;

  /* voile clair + photo */
  background:
    linear-gradient(rgba(255, 250, 245, .35), rgba(244, 239, 232, .72)),
    url("../img/hero.png") center 22% /cover no-repeat;

  transform: scale(1.08);
  animation: slowZoom 20s ease-in-out infinite alternate;
  filter: saturate(1.02) contrast(1.02) brightness(1.05);
}

@keyframes slowZoom {
  to {
    transform: scale(1.15);
  }
}

.hero-vignette {
  position: absolute;
  inset: -2px;
  background: radial-gradient(1200px 700px at 50% 30%,
      transparent 30%,
      rgba(24, 22, 26, .18) 75%,
      rgba(24, 22, 26, .26));
  pointer-events: none;
  opacity: .75;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 22% 20%, rgba(215, 163, 177, .22), transparent 60%),
    radial-gradient(700px 380px at 78% 30%, rgba(199, 205, 214, .20), transparent 62%);
  mix-blend-mode: screen;
  opacity: .95;
  pointer-events: none;
}

.dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .45;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 150px;
}

.hero-kicker {
  font-size: 12px;
  margin-bottom: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(183, 136, 148, .92);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.hero-kicker svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  margin: 12px 0 16px;
  line-height: .9;
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(48px, 8vw, 100px);
  text-shadow: 0 10px 30px rgba(24, 22, 26, .12);
  display: block;
}

.hero-amp {
  display: inline-block;
  margin: 0 16px;
  font-weight: 700;
  color: var(--gold2);
  font-size: clamp(28px, 3.5vw, 48px);
  transform: translateY(-8px);
  opacity: .95;
}

.hero-subtitle {
  margin: 0;
  max-width: 65ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  font-weight: bold;
  color: rgba(31, 35, 38, .78);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .55);
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 163, 177, .40);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 30px rgba(24, 22, 26, .10);
}

.btn-primary {
  border-color: rgba(215, 163, 177, .45);
  background: linear-gradient(135deg, rgba(215, 163, 177, .26), rgba(199, 205, 214, .18));
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(215, 163, 177, .34), rgba(199, 205, 214, .24));
}

.btn-ghost {
  background: transparent;
}

.btn-small {
  padding: 10px 14px;
  font-size: 12px;
}

.btn-small svg {
  width: 16px;
  height: 16px;
}

/* Hero card (countdown) */
.hero-card {
  position: relative;
  border-radius: var(--r);
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .60);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 24px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(600px 240px at 20% 10%, rgba(215, 163, 177, .18), transparent 55%),
    radial-gradient(500px 220px at 80% 30%, rgba(199, 205, 214, .18), transparent 60%);
  opacity: .65;
  pointer-events: none;
}

.card-top {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 35, 38, .10);
}

.card-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .55);
  font-weight: 600;
}

.card-title {
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(31, 35, 38, .86);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(6px, 2vw, 12px);
  margin-top: 16px;
}

.time {
  border-radius: var(--r2);
  border: 1px solid rgba(31, 35, 38, .10);
  background: rgba(255, 255, 255, .55);
  padding: clamp(10px, 2vw, 16px);
  text-align: center;
  box-shadow: var(--shadow2);
}

.num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  color: rgba(183, 136, 148, .95);
  text-shadow: 0 8px 16px rgba(24, 22, 26, .10);
}

.lab {
  margin-top: 4px;
  font-size: clamp(9px, 1.5vw, 11px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .55);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-decoration: none;
  color: rgba(31, 35, 38, .62);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .3s ease;
}

.hero-scroll:hover {
  transform: translateX(-50%) translateY(4px);
}

.mouse {
  width: 24px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(31, 35, 38, .20);
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 6px;
  border-radius: 99px;
  background: rgba(183, 136, 148, .95);
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: .9;
  }

  70% {
    transform: translateX(-50%) translateY(10px);
    opacity: .25;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: .9;
  }
}

/* Hero responsive */
@media (max-width: 980px) {
  .hero {
    padding: 40px 20px 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .countdown {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .countdown {
    gap: 4px;
  }

  .time {
    padding: 8px 4px;
  }

  .lab {
    font-size: 8px;
  }
}

/* ================================
   SECTIONS - GENERAL
   ================================ */
.section {
  padding: clamp(60px, 10vw, 100px) 20px;
}

.section-alt {
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(215, 163, 177, .14), transparent 60%),
    radial-gradient(900px 600px at 78% 18%, rgba(199, 205, 214, .16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(31, 35, 38, .08);
}

.section-soft {
  background:
    radial-gradient(900px 600px at 25% 10%, rgba(215, 163, 177, .14), transparent 60%),
    radial-gradient(900px 600px at 75% 30%, rgba(199, 205, 214, .14), transparent 62%),
    rgba(255, 255, 255, .22);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 56px);
  color: rgba(183, 136, 148, .92);
  letter-spacing: .01em;
}

.section-subtitle {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .55);
  font-weight: 600;
}

/* ================================
   ANNOUNCEMENT SECTION
   ================================ */
.announcement {
  border: 1px solid rgba(31, 35, 38, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .45));
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.announcement::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(900px 280px at 10% 10%, rgba(215, 163, 177, .18), transparent 55%),
    radial-gradient(900px 280px at 90% 20%, rgba(199, 205, 214, .18), transparent 60%);
  opacity: .85;
  pointer-events: none;
}

.announcement-top {
  position: relative;
  text-align: center;
  z-index: 1;
}

.announcement-kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  color: rgba(31, 35, 38, .62);
  font-weight: 600;
}

.announcement-names {
  margin-top: 16px;
  margin-bottom: 14px;
}

.announcement-names .latin {
  font-family: "Great Vibes", cursive;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 1.1;
  color: rgba(31, 35, 38, .92);
  text-shadow: 0 10px 24px rgba(24, 22, 26, .08);
}

.announcement-names .amp {
  color: var(--gold2);
  padding: 0 12px;
}

.announcement-names .hebrew {
  margin-top: 12px;
  font-size: clamp(18px, 2.5vw, 30px);
  letter-spacing: .08em;
  opacity: .92;
  font-family: "Cormorant Garamond", serif;
  color: rgba(31, 35, 38, .82);
}

.announcement-line {
  width: 120px;
  height: 2px;
  margin: 16px auto 20px;
  background: linear-gradient(90deg, transparent, rgba(183, 136, 148, .95), transparent);
}

.announcement-text {
  max-width: 74ch;
  margin: 0 auto;
  color: rgba(31, 35, 38, .72);
  line-height: 1.9;
  font-size: clamp(14px, 2vw, 16px);
}

.announcement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.bloc {
  border: 1px solid rgba(31, 35, 38, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .55);
  padding: 20px;
  text-align: center;
}

.bloc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(31, 35, 38, .90);
  margin-bottom: 12px;
  font-weight: 600;
}

.names {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(31, 35, 38, .68);
  line-height: 1.9;
}

.names li {
  font-size: clamp(13px, 1.8vw, 15px);
}

.names li strong {
  color: rgba(31, 35, 38, .88);
  font-weight: 600;
}

.memory {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-top: 24px;
  padding: 20px;
}

.memory-title {
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 15px);
  color: rgba(31, 35, 38, .72);
  margin-bottom: 10px;
}

.memory-text {
  color: rgba(31, 35, 38, .68);
  font-size: clamp(13px, 1.8vw, 15px);
}

.memory-list {
  margin: 0;
  text-decoration: none;
  list-style: none;
  padding: 0;
  color: rgba(31, 35, 38, .82);
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.8;
}

.announcement-footer {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-chip {
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .60);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: clamp(11px, 1.5vw, 13px);
  color: rgba(31, 35, 38, .78);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-chip svg {
  width: 16px;
  height: 16px;
  color: var(--gold2);
}

/* ================================
   INFO CARDS - RESPONSIVE GRID
   ================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.info-card {
  border-radius: var(--r);
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .60);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
  padding: 24px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 163, 177, .35);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 60px rgba(24, 22, 26, .14);
}

.info-card h3 {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 3vw, 24px);
  color: rgba(31, 35, 38, .92);
}

.muted {
  color: rgba(31, 35, 38, .68);
  line-height: 1.8;
  font-size: clamp(13px, 1.8vw, 15px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(215, 163, 177, .35);
  background: rgba(215, 163, 177, .18);
  color: rgba(31, 35, 38, .88);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

.chip svg {
  width: 14px;
  height: 14px;
}

.addr {
  margin-top: 12px;
  border-radius: var(--r2);
  border: 1px dashed rgba(31, 35, 38, .20);
  padding: 14px;
  background: rgba(255, 255, 255, .55);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(12px, 1.6vw, 14px);
  color: rgba(31, 35, 38, .78);
}

.addr svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold2);
}

.actions {
  margin-top: 16px;
}

.list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.list li {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold2);
  opacity: .8;
}

/* Note */
.note {
  margin-top: 24px;
  border-radius: var(--r);
  border: 1px solid rgba(215, 163, 177, .30);
  background: rgba(215, 163, 177, .16);
  padding: 18px 20px;
  color: rgba(31, 35, 38, .82);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(13px, 1.8vw, 15px);
}

.note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold2);
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   RSVP FORM - FULLY RESPONSIVE
   ================================ */
.rsvp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.form {
  border-radius: var(--r);
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .62);
  box-shadow: var(--shadow2);
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(14px);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .62);
  margin-bottom: 10px;
  font-weight: 600;
}

.field label svg {
  width: 14px;
  height: 14px;
  opacity: .8;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31, 35, 38, .14);
  background: rgba(255, 255, 255, .75);
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition: all .3s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(215, 163, 177, .60);
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 0 0 3px rgba(215, 163, 177, .18);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.field-row-tight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.segmented {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.seg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(31, 35, 38, .14);
  background: rgba(255, 255, 255, .70);
  cursor: pointer;
  user-select: none;
  transition: all .3s ease;
  flex: 1;
  min-width: 120px;
}

.seg:hover {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(215, 163, 177, .35);
}

.seg input {
  accent-color: var(--gold2);
  width: 18px;
  height: 18px;
  margin: 0;
}

.btn-submit {
  margin-bottom: 16px;
  border: 1px solid rgba(215, 163, 177, .45);
  background: linear-gradient(135deg, rgba(215, 163, 177, .26), rgba(199, 205, 214, .18));
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  border-color: rgba(215, 163, 177, .65);
  box-shadow: 0 14px 30px rgba(24, 22, 26, .12);
}

.btn-submit[disabled] {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.status {
  margin: 12px 0 0;
  min-height: 20px;
  font-weight: 600;
  color: rgba(31, 35, 38, .82);
  font-size: 14px;
}

.aside {
  border-radius: var(--r);
  border: 1px solid rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  padding: clamp(20px, 3vw, 28px);
}

.aside h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 28px);
  color: rgba(31, 35, 38, .92);
}

.aside-box {
  margin-top: 16px;
  border-radius: var(--r2);
  border: 1px solid rgba(215, 163, 177, .30);
  background: rgba(215, 163, 177, .16);
  padding: 16px;
}

.aside-k {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .62);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aside-k svg {
  width: 14px;
  height: 14px;
  color: var(--gold2);
}

.aside-v {
  margin-top: 8px;
  font-weight: 700;
  color: rgba(31, 35, 38, .86);
  font-size: clamp(14px, 2vw, 16px);
}

.aside-tip {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 35, 38, .10);
  color: rgba(31, 35, 38, .68);
  line-height: 1.7;
  font-size: clamp(12px, 1.6vw, 14px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.aside-tip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold2);
  opacity: .8;
}

@media (max-width: 980px) {
  .rsvp-grid {
    grid-template-columns: 1fr;
  }

  .announcement-footer {
    text-align: center;
  }

  .btn-submit {
    margin-bottom: 0px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row-tight {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
  }
}

/* ================================
   FOOTER
   ================================ */
.footer {
  padding: 32px 20px;
  border-top: 1px solid rgba(31, 35, 38, .10);
  text-align: center;
  color: rgba(31, 35, 38, .62);
  font-size: clamp(12px, 1.6vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--gold2);
}

/* ================================
   REVEAL ANIMATIONS
   ================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(.98);
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* ================================
   PERFORMANCE OPTIMIZATIONS
   ================================ */
.hero-bg,
.hero-glow,
.hero-vignette,
.hero-card,
.hero-content,
.dust {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Subtle sweep effect */
.hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 210deg at 40% 30%,
      transparent,
      rgba(215, 163, 177, .14),
      transparent,
      rgba(199, 205, 214, .14),
      transparent);
  opacity: .55;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
  animation: sweep 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sweep {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-6deg);
  }

  to {
    transform: translate3d(2%, 1%, 0) rotate(6deg);
  }
}

/* No scroll when menu open */
html.no-scroll,
html.no-scroll body {
  overflow: hidden;
}

/* ================================
   FOOTER — premium, desktop clean
   ================================ */
.footer {
  padding: 56px 20px;
  border-top: 1px solid rgba(31, 35, 38, .10);
  background: rgba(255, 255, 255, .24);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}

.footer-left {
  text-align: left;
}

.footer-wed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(31, 35, 38, .80);
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--gold2);
}

.footer-wed-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.3;
}

.footer-date {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .55);
}

.footer-right {
  justify-self: end;
  text-align: right;
  display: grid;
  gap: 14px;
}

.footer-pro-title {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(31, 35, 38, .62);
  font-weight: 600;
}

.footer-pro-sub {
  margin-top: 6px;
  color: rgba(31, 35, 38, .58);
  font-size: 13px;
}

.footer-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 163, 177, .55);
  background: rgba(255, 255, 255, .55);
  color: rgba(31, 35, 38, .86);
  text-decoration: none;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  background: rgba(215, 163, 177, .10);
  border-color: rgba(215, 163, 177, .75);
}

.footer-credit {
  color: rgba(31, 35, 38, .55);
  font-size: 12px;
}

.footer-credit a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(31, 35, 38, .72);
  border-bottom: 1px solid rgba(31, 35, 38, .20);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}

.footer-credit a:hover {
  color: rgba(31, 35, 38, .90);
  border-color: rgba(215, 163, 177, .75);
}

/* Responsive: stack propre */
@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    text-align: center;
  }

  .footer-right {
    justify-self: center;
    text-align: center;
  }

  .footer-actions {
    justify-items: center;
  }
}


/* mobile finitions */
@media (max-width: 480px) {
  .footer {
    padding: 46px 16px 40px;
  }

  .footer-text {
    font-size: 16px;
  }

  .footer-mark {
    font-size: 11px;
    letter-spacing: .10em;
  }
}


@media (max-width: 980px) {

  /* On cache la nav desktop */
  .nav-desktop {
    display: none;
  }

  .hero-inner {
    margin-top: 0px;
  }

  /* On supprime le burger + le drawer + overlay */
  .burger {
    display: none !important;
  }

  .menu-overlay {
    display: none !important;
  }

  .menu-drawer {
    display: none !important;
  }

  /* On garde juste le bouton musique */
  .audio-text {
    display: none;
  }

  /* optionnel : icône seule */
  .nav-inner {
    padding: 12px 16px;
  }

  .brand-script {
    font-size: 24px;
  }
}