/* ==============================
   Hero section
   ============================== */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 50%, #7B9EC4 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, #9BB5D0 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, #B8CCE0 0%, transparent 60%),
    linear-gradient(135deg, #5A7A9E 0%, #8AAAC8 50%, #C5D8E8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.08), transparent 31%),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.08), transparent 34%);
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: min(1300px, 94vw);
  margin-inline: auto;
  display: grid;
  justify-items: center;
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: clamp(0.2em, 1vw, 0.45em);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  width: fit-content;
  white-space: nowrap;
  text-shadow: 0 4px 40px rgba(100, 140, 180, 0.5), 0 0 80px rgba(255, 255, 255, 0.1);
}

.hero-title .hero-line {
  display: inline;
}

.hero-title .hero-line + .hero-line {
  margin-left: 0.32em;
}

.hero-date-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  margin-inline: auto;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
}

.hero-date {
  font-family: "Lato", sans-serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.ornament {
  flex: 0 0 auto;
  width: clamp(96px, 16vw, 220px);
  color: rgba(212, 175, 122, 0.85);
  opacity: 0.95;
}

.hero-scroll-indicator {
  margin-top: 2.4rem;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-scroll-indicator p {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  animation: chevronBounce 2s ease-in-out infinite;
}

/* ==============================
   Story section
   ============================== */
.story-section {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(90, 120, 160, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(100, 130, 170, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(180, 200, 220, 0.15) 0%, transparent 70%),
    linear-gradient(160deg, #5A7A9E 0%, #7A9DBE 40%, #8AAAC8 100%);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.story-book {
  position: relative;
  z-index: 1;
}

.story-floral {
  position: absolute;
  width: min(280px, 30vw);
  color: #D4AF7A;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.story-floral-left {
  top: 10%;
  left: -60px;
  transform: rotate(-15deg);
}

.story-floral-right {
  bottom: 10%;
  right: -60px;
  transform: rotate(165deg);
}

.story-light {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  animation: storyLightPulse 4s ease-in-out infinite alternate;
}

.story-light.light-1 { top: 12%; left: 16%; animation-delay: 0s; }
.story-light.light-2 { top: 19%; left: 76%; animation-delay: 0.8s; }
.story-light.light-3 { top: 42%; left: 35%; animation-delay: 1.4s; }
.story-light.light-4 { top: 56%; left: 68%; animation-delay: 2s; }
.story-light.light-5 { top: 74%; left: 18%; animation-delay: 2.8s; }
.story-light.light-6 { top: 84%; left: 80%; animation-delay: 3.4s; }

.story-header {
  text-align: center;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 68px);
  font-weight: 300;
  letter-spacing: 10px;
  color: #1E3A5A;
  text-shadow: 0 2px 30px rgba(30, 58, 90, 0.15);
  margin-bottom: 0;
}

.story-subtitle {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.6rem, 3vw, 26px);
  color: rgba(30, 58, 90, 0.55);
  margin-top: -8px;
}

.story-ornament {
  color: #D4AF7A;
  margin: 16px auto 64px;
  width: min(260px, 82vw);
}

.story-ornament svg {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease 0.15s, opacity 0.8s ease 0.15s;
}

.story-ornament.is-visible svg {
  opacity: 1;
  transform: scaleX(1);
}

.story-intro {
  max-width: 600px;
  margin: 0 auto 3.8rem;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-style: italic;
  color: rgba(30, 58, 90, 0.65);
}

.love-timeline {
  position: relative;
  display: grid;
  gap: 1.6rem;
}

.love-line {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 30px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, #D4AF7A 15%, #D4AF7A 85%, transparent 100%);
  opacity: 0.38;
}

.love-line-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #D4AF7A 16%, #D4AF7A 84%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 26px rgba(212, 175, 122, 0.28);
  transition: height 2s cubic-bezier(0.16, 1, 0.32, 1);
}

.love-step {
  display: grid;
  grid-template-columns: minmax(0, 42%) 120px minmax(0, 42%);
  justify-content: space-between;
  align-items: stretch;
  min-height: 300px;
  position: relative;
}

.step-left .step-visual { grid-column: 1; }
.step-left .chapter-card { grid-column: 3; }
.step-right .chapter-card { grid-column: 1; }
.step-right .step-visual { grid-column: 3; }

.step-center {
  grid-column: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
}

.chapter-index {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D4AF7A;
  margin-bottom: 8px;
}

.chapter-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 122, 0.15);
  border: 2px solid rgba(212, 175, 122, 0.5);
  display: grid;
  place-items: center;
  animation: chapterPulse 3s ease infinite;
}

.node-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8965A, #D4AF7A);
  box-shadow: 0 4px 20px rgba(200, 150, 90, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
}

.node-inner svg {
  width: 24px;
  height: 24px;
}

.step-connector {
  position: absolute;
  top: calc(50% + 72px);
  width: 8px;
  height: 8px;
  background: rgba(212, 175, 122, 0.6);
  transform: rotate(45deg) scale(0.3);
  opacity: 0;
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.love-step:last-child .step-connector {
  display: none;
}

.chapter-card,
.story-panel {
  opacity: 0;
  min-height: 280px;
}

.step-left .chapter-card { transform: translateX(40px); }
.step-left .story-panel { transform: translateX(-40px); }
.step-right .chapter-card { transform: translateX(-40px); }
.step-right .story-panel { transform: translateX(40px); }

.step-center .chapter-index,
.step-center .chapter-node {
  opacity: 0;
  transform: scale(0.55);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.love-step.is-visible .chapter-index,
.love-step.is-visible .chapter-node {
  opacity: 1;
  transform: scale(1);
}

.love-step.is-visible .chapter-card,
.love-step.is-visible .story-panel {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.32, 1) 0.2s, opacity 0.8s cubic-bezier(0.16, 1, 0.32, 1) 0.2s;
}

.love-step.is-visible .step-connector {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.chapter-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 40px 48px;
  box-shadow: 0 8px 40px rgba(30, 58, 90, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.chapter-card > * {
  opacity: 0;
  transform: translateY(14px);
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.love-step.is-visible .chapter-card > * {
  opacity: 1;
  transform: translateY(0);
}

.love-step.is-visible .chapter-card .chapter-badge { transition-delay: 0.4s; }
.love-step.is-visible .chapter-card h3 { transition-delay: 0.5s; }
.love-step.is-visible .chapter-card .chapter-meta { transition-delay: 0.6s; }
.love-step.is-visible .chapter-card .chapter-copy { transition-delay: 0.7s; }
.love-step.is-visible .chapter-card .chapter-separator { transition-delay: 0.8s; }

.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(30, 58, 90, 0.18);
  border-color: rgba(212, 175, 122, 0.4);
}

.chapter-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 2px;
  padding: 4px 14px;
  font-family: "Lato", sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: #D4AF7A;
  background: rgba(212, 175, 122, 0.15);
  border: 1px solid rgba(212, 175, 122, 0.4);
  text-transform: uppercase;
}

.chapter-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: #1E3A5A;
  margin: 12px 0 8px;
}

.chapter-meta {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(30, 58, 90, 0.5);
}

.chapter-copy {
  margin-top: 0.9rem;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  color: rgba(30, 58, 90, 0.75);
}

.chapter-separator {
  margin-top: auto;
  width: 40px;
  height: 1px;
  background: rgba(212, 175, 122, 0.4);
}

.step-right .chapter-separator {
  margin-left: auto;
}

.story-panel {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 40px rgba(30, 58, 90, 0.15);
  background: linear-gradient(135deg, rgba(44, 74, 110, 0.6), rgba(90, 120, 160, 0.4));
}

.story-panel svg {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.story-panel .spark {
  color: rgba(255, 255, 255, 0.84);
  transform-origin: center;
  animation: storySparkle 2.4s ease-in-out infinite;
}

.story-panel .spark-a { animation-duration: 2.8s; animation-delay: 0.1s; }
.story-panel .spark-b { animation-duration: 1.9s; animation-delay: 0.5s; }
.story-panel .spark-c { animation-duration: 2.3s; animation-delay: 0.9s; }
.story-panel .spark-d { animation-duration: 1.7s; animation-delay: 1.2s; }

.moon-glow {
  animation: moonGlowPulse 3.3s ease-in-out infinite;
}

.gem-glint {
  transform-origin: 260px 118px;
  animation: gemGlint 2.8s linear infinite;
}

.heart-floaters .heart {
  animation: heartFloat 2.8s ease-in-out infinite;
}

.heart-floaters .heart-a { animation-delay: 0s; }
.heart-floaters .heart-b { animation-delay: 0.8s; }
.heart-floaters .heart-c { animation-delay: 1.4s; }

.petal-shower .petal-fall {
  transform-origin: center;
  animation: petalFall 6s linear infinite;
}

.petal-shower .petal-1 { animation-delay: 0s; }
.petal-shower .petal-2 { animation-delay: 0.5s; }
.petal-shower .petal-3 { animation-delay: 1.1s; }
.petal-shower .petal-4 { animation-delay: 1.7s; }
.petal-shower .petal-5 { animation-delay: 2.3s; }
.petal-shower .petal-6 { animation-delay: 2.9s; }
.petal-shower .petal-7 { animation-delay: 3.5s; }
.petal-shower .petal-8 { animation-delay: 4.1s; }

.story-outro {
  margin-top: 3.2rem;
  padding: 48px;
  text-align: center;
  background: rgba(30, 58, 90, 0.2);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 122, 0.2);
  border-bottom: 1px solid rgba(212, 175, 122, 0.2);
  border-radius: 10px;
}

.story-outro p {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 4vw, 40px);
  color: rgba(212, 175, 122, 0.9);
}

.outro-hearts {
  margin-top: 1rem;
  display: inline-flex;
  gap: 24px;
  color: rgba(212, 175, 122, 0.9);
}

.outro-hearts svg {
  width: 16px;
  height: 16px;
}

@keyframes storyLightPulse {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.45); }
}

@keyframes chapterPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes storySparkle {
  0%, 100% { opacity: 0.28; transform: scale(0.55); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes moonGlowPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.65; }
}

@keyframes gemGlint {
  0% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(15deg) brightness(1.2); }
  100% { filter: hue-rotate(0deg) brightness(1); }
}

@keyframes heartFloat {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-60px); opacity: 0; }
}

@keyframes petalFall {
  0% { transform: translateY(-6px) rotate(0deg); opacity: 0.95; }
  100% { transform: translateY(188px) rotate(280deg); opacity: 0; }
}

@media (max-width: 900px) {
  .love-line {
    left: 32px;
    transform: none;
  }

  .love-step {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    min-height: auto;
  }

  .step-center {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-content: start;
    padding-top: 0.4rem;
  }

  .step-left .step-visual,
  .step-left .chapter-card,
  .step-right .step-visual,
  .step-right .chapter-card {
    grid-column: 2;
    width: 100%;
  }

  .step-left .step-visual,
  .step-right .step-visual {
    grid-row: 1;
  }

  .step-left .chapter-card,
  .step-right .chapter-card {
    grid-row: 2;
    margin-top: 0.9rem;
  }

  .story-panel,
  .story-panel svg {
    min-height: 200px;
  }

  .step-connector {
    top: calc(50% + 58px);
  }

  .chapter-card,
  .story-outro {
    padding: 30px 28px;
  }
}

@media (max-width: 600px) {
  .love-line {
    left: 20px;
  }

  .story-title {
    font-size: 44px;
    letter-spacing: 6px;
  }

  .story-intro {
    font-size: 14px;
    margin-bottom: 2.4rem;
  }

  .story-panel,
  .story-panel svg {
    min-height: 160px;
  }

  .chapter-card {
    padding: 24px 20px;
  }

  .chapter-card h3 {
    font-size: 2rem;
  }

  .story-outro {
    padding: 34px 20px;
  }

  .story-outro p {
    font-size: 34px;
  }
 }
}

/* ==============================
   Galerie et jour J
   ============================== */
.gallery-section {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(122, 157, 191, 0.92) 0%,
    rgba(173, 196, 216, 0.78) 42%,
    rgba(241, 236, 228, 0.88) 100%
  );
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 243, 220, 0.16), transparent 34%),
    radial-gradient(circle at 78% 68%, rgba(255, 239, 214, 0.14), transparent 36%);
}

.gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==============================
   Section Le Jour J — cinématique
   ============================== */
.day-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(70, 100, 140, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(80, 110, 150, 0.25) 0%, transparent 50%),
    linear-gradient(170deg, #5A7A9E 0%, #6B8CAE 30%, #7A9DBE 60%, #8AAECE 100%);
}

/* Motif losanges */
.day-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='rgba(255,255,255,1)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

/* Halos ambiants */
.day-ambient {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.day-ambient--left {
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.day-ambient--right {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle, rgba(100, 140, 200, 0.08) 0%, transparent 70%);
}

/* En-tête */
.day-header {
  text-align: center;
  margin-bottom: 60px;
}

.day-title {
  font-size: clamp(48px, 6vw, 72px) !important;
  font-weight: 300 !important;
  letter-spacing: 12px !important;
  color: #1E3A5A !important;
  text-shadow: 0 2px 20px rgba(30, 58, 90, 0.1) !important;
  margin-bottom: 8px !important;
}

.day-subtitle {
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  color: rgba(30, 58, 90, 0.5);
  margin-bottom: 16px;
  line-height: 1.4;
}

.day-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.day-ornament svg {
  width: 260px;
  height: 32px;
  color: #D4AF7A;
  overflow: visible;
}

/* Rail de progression */
.day-progress {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 40px;
  overflow: visible;
}

.day-progress::before,
.day-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 122, 0.85);
  transform: translateY(-50%);
}

.day-progress::before { left: -2px; }
.day-progress::after  { right: -2px; }

#day-progress-line {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: inherit;
  background: linear-gradient(90deg, #C8965A, #D4AF7A, #E8C88A);
}

.day-progress.is-visible #day-progress-line {
  animation: dayProgressFill 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Timeline horizontale */
.day-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Cartes scènes */
.day-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(30, 58, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.38s ease;
  cursor: default;
}

.day-scene:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(212, 175, 122, 0.45);
  box-shadow:
    0 14px 40px rgba(30, 58, 90, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Partie visuelle (icon + label) */
.day-scene__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px 22px;
  background: rgba(30, 58, 90, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Teintes ambiantes par scène */
.day-scene--dawn     .day-scene__visual { background: rgba(255, 215, 120, 0.1); }
.day-scene--mairie   .day-scene__visual { background: rgba(100, 150, 210, 0.18); }
.day-scene--afternoon .day-scene__visual { background: rgba(130, 170, 220, 0.18); }
.day-scene--henna    .day-scene__visual { background: rgba(180, 100, 80, 0.12); }
.day-scene--night    .day-scene__visual { background: rgba(30, 20, 60, 0.22); }

.day-scene__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212, 175, 122, 0.85);
}

.day-scene__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 122, 0.4);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(220, 235, 255, 0.9);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.day-scene:hover .day-scene__icon {
  border-color: rgba(212, 175, 122, 0.75);
  background: rgba(212, 175, 122, 0.12);
}

.day-scene__icon svg {
  width: 24px;
  height: 24px;
}

/* Contenu textuel */
.day-scene__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 22px;
}

.day-card .time {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #D4AF7A;
  margin-bottom: 8px;
}

.day-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #EEF4FA;
  line-height: 1.25;
  margin-bottom: 10px;
}

.day-card p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(220, 235, 250, 0.72);
  flex: 1;
}

/* ==============================
   Compteurs et contact
   ============================== */
.counters-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 18%, rgba(212, 175, 122, 0.2), transparent 32%),
    radial-gradient(circle at 82% 30%, rgba(138, 174, 206, 0.22), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(90, 122, 158, 0.35), transparent 48%),
    linear-gradient(165deg, #2f4966 0%, #3d5f84 45%, #5b7ba0 100%);
}

.counters-constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.counters-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.counters-ambient--top {
  width: min(430px, 42vw);
  height: min(430px, 42vw);
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(212, 175, 122, 0.14);
}

.counters-ambient--bl {
  width: min(340px, 34vw);
  height: min(340px, 34vw);
  left: -8%;
  bottom: -14%;
  background: rgba(90, 122, 158, 0.2);
}

.counters-ambient--br {
  width: min(380px, 36vw);
  height: min(380px, 36vw);
  right: -10%;
  bottom: -18%;
  background: rgba(212, 175, 122, 0.12);
}

.counters-divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212, 175, 122, 0.55);
  letter-spacing: 0.8em;
  font-size: 0.95rem;
  z-index: 1;
}

.counters-divider--top {
  top: 12px;
}

.counters-divider--bottom {
  bottom: 12px;
}

.counters-section .container {
  position: relative;
  z-index: 2;
}

.counters-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 880px;
}

.counters-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: rgba(233, 240, 247, 0.8);
}

.counters-eyebrow__dash {
  width: 34px;
  height: 1px;
  background: rgba(212, 175, 122, 0.55);
}

.counters-title {
  margin-top: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f4f7fb;
}

.counters-subtitle {
  margin-top: 0.5rem;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  color: rgba(212, 175, 122, 0.92);
}

.counters-ornament {
  margin-top: 1rem;
  color: rgba(212, 175, 122, 0.75);
}

.counters-ornament svg {
  width: 126px;
  height: auto;
}

.counters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 148px;
  gap: 1rem;
}

.stat-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(250, 248, 245, 0.32);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(184, 204, 224, 0.12));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(12, 29, 46, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.stat-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 122, 0.15), rgba(212, 175, 122, 0.7), rgba(212, 175, 122, 0.15));
}

.stat-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.2rem 1.25rem;
}

.stat-card__inner--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.6rem;
  align-items: center;
}

.stat-card__inner--col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card__inner--banner {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  gap: 1rem;
}

.stat-card--total {
  grid-column: 1 / -1;
}

.stat-microlabel {
  font-size: 0.63rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  color: rgba(227, 236, 246, 0.76);
}

.stat-number {
  margin: 0.35rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, #f7e7ce 0%, #d4af7a 44%, #c8965a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-unit {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.27em;
  color: rgba(243, 247, 252, 0.9);
}

.stat-poem {
  margin-top: 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(231, 238, 246, 0.78);
  line-height: 1.5;
}

.stat-poem--lg {
  margin-top: 0;
  font-size: 1.04rem;
}

.stat-poem--sm {
  margin-top: 0.2rem;
  font-size: 0.92rem;
}

.stat-card__right {
  display: flex;
  justify-content: center;
}

.stat-guests-svg {
  width: clamp(118px, 13vw, 152px);
  height: auto;
}

.guests-couple {
  transform-origin: center;
  animation: guestsPulse 3.2s ease-in-out infinite;
}

.stat-icon {
  width: 34px;
  height: 28px;
  margin-bottom: 0.25rem;
}

.stat-rec-dot {
  animation: recPulse 1.4s ease-in-out infinite;
}

.stat-banner__sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(212, 175, 122, 0.75);
}

.stat-sep__line {
  width: 1px;
  height: 26px;
  background: rgba(212, 175, 122, 0.45);
}

.stat-sep__diamond {
  font-size: 0.8rem;
}

.stat-pb {
  margin-top: 0.75rem;
}

.stat-pb__track {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
}

.stat-pb__seg {
  display: block;
  width: 0;
  background: var(--c, #5A7A9E);
  transition: width 1.05s ease;
}

.stat-pb__seg.is-animated {
  width: var(--target-w, 25%);
}

.stat-pb__labels {
  margin-top: 0.48rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 240, 248, 0.72);
}

@keyframes guestsPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes recPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.farewell-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(100, 140, 180, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 60%, rgba(80, 115, 155, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(90, 125, 165, 0.2) 0%, transparent 50%),
    linear-gradient(175deg, #6b8cae 0%, #7a9dbe 30%, #8aaece 60%, #96b8d4 100%);
}

.letter-section {
  padding: 120px 40px 80px;
}

.letter-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(59, 87, 116, 0.92), rgba(107, 140, 174, 0));
  pointer-events: none;
}

.testimonials-section {
  padding: 80px 40px 120px;
}

.farewell-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.farewell-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
}

.farewell-halo {
  position: absolute;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border-radius: 50%;
  filter: blur(100px);
}

.farewell-halo--tl {
  top: -16%;
  left: -10%;
  background: rgba(255, 240, 220, 0.06);
}

.farewell-halo--tr {
  top: -12%;
  right: -10%;
  background: rgba(180, 210, 240, 0.05);
}

.farewell-halo--bl {
  bottom: -18%;
  left: -8%;
  background: rgba(200, 220, 240, 0.04);
}

.farewell-halo--br {
  bottom: -18%;
  right: -8%;
  background: rgba(255, 230, 200, 0.05);
}

.farewell-petals {
  position: absolute;
  inset: 0;
}

.farewell-petals span {
  position: absolute;
  top: -60px;
  width: 16px;
  height: 24px;
  border-radius: 80% 20% 70% 30%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8), rgba(210, 228, 244, 0.45) 58%, rgba(123, 157, 192, 0.2));
  opacity: 0.12;
  filter: blur(0.7px);
  animation: petalFall linear infinite;
}

.farewell-petals span:nth-child(1) { left: 5%; animation-duration: 31s; animation-delay: -2s; opacity: 0.09; }
.farewell-petals span:nth-child(2) { left: 18%; animation-duration: 24s; animation-delay: -10s; opacity: 0.2; }
.farewell-petals span:nth-child(3) { left: 31%; animation-duration: 34s; animation-delay: -4s; opacity: 0.1; }
.farewell-petals span:nth-child(4) { left: 46%; animation-duration: 27s; animation-delay: -12s; opacity: 0.16; }
.farewell-petals span:nth-child(5) { left: 58%; animation-duration: 22s; animation-delay: -7s; opacity: 0.13; }
.farewell-petals span:nth-child(6) { left: 71%; animation-duration: 35s; animation-delay: -1s; opacity: 0.11; }
.farewell-petals span:nth-child(7) { left: 84%; animation-duration: 28s; animation-delay: -9s; opacity: 0.18; }
.farewell-petals span:nth-child(8) { left: 93%; animation-duration: 20s; animation-delay: -5s; opacity: 0.08; }

.farewell-container,
.testimonials-container {
  position: relative;
  z-index: 1;
}

.letter-paper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  border-radius: 4px;
  padding: 64px 72px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 80px rgba(20, 45, 70, 0.18), 0 4px 16px rgba(20, 45, 70, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.letter-monogram-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Great Vibes", cursive;
  font-size: 200px;
  color: rgba(212, 175, 122, 0.04);
  pointer-events: none;
}

.letter-floral,
.letter-floral-center {
  color: rgba(212, 175, 122, 0.25);
  pointer-events: none;
}

.letter-floral {
  position: absolute;
  width: 180px;
  height: 300px;
  top: 50%;
  transform: translateY(-50%);
}

.letter-floral--left {
  left: -100px;
  animation: sway 8s ease-in-out infinite;
}

.letter-floral--right {
  right: -100px;
  transform: translateY(-50%) scaleX(-1);
  animation: swayMirror 8s ease-in-out infinite 4s;
}

.letter-floral-center {
  position: absolute;
  width: 200px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.letter-floral-center--top {
  top: -34px;
}

.letter-floral-center--bottom {
  bottom: -34px;
  transform: translateX(-50%) rotate(180deg);
}

.letter-paper__kicker {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(212, 175, 122, 0.7);
}

.kicker-line {
  width: 20px;
  height: 1px;
  background: rgba(212, 175, 122, 0.56);
}

.letter-paper__title {
  margin-bottom: 32px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 30px rgba(20, 45, 70, 0.2);
}

.letter-title-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(212, 175, 122, 0.5);
  margin-bottom: 24px;
}

.letter-title-ornament span {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.letter-title-ornament svg {
  width: 12px;
  height: 12px;
}

.letter-text p {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
}

.letter-text p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 8px;
  color: rgba(212, 175, 122, 0.9);
}

.letter-signoff {
  margin-top: 28px;
  text-align: center;
}

.letter-signoff-line {
  width: 80px;
  margin: 0 auto 16px;
  color: rgba(212, 175, 122, 0.3);
}

.letter-signoff-prefix {
  margin-bottom: 6px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.letter-signature {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  text-shadow: 0 2px 20px rgba(212, 175, 122, 0.25);
}

.signature-text {
  background: linear-gradient(135deg, #c8965a, #d4af7a, #e8c87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.letter-signoff-hearts {
  margin-top: 8px;
  display: inline-flex;
  gap: 14px;
  color: rgba(212, 175, 122, 0.7);
}

.letter-signoff-hearts svg {
  width: 8px;
  height: 8px;
}

.letter-seal {
  position: absolute;
  width: 52px;
  height: 52px;
  right: 40px;
  bottom: -26px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.letter-seal text {
  fill: rgba(255, 255, 255, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-title {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 10px;
  color: #1e3a5a;
}

.testimonials-ornament {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d4af7a;
}

.testimonials-ornament span {
  width: 60px;
  height: 1px;
  background: currentColor;
}

.testimonials-ornament svg {
  width: 14px;
  height: 14px;
}

.couple-note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.couple-monogram {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  position: relative;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 122, 0.5);
  box-shadow: 0 0 0 6px rgba(212, 175, 122, 0.08), 0 0 0 12px rgba(212, 175, 122, 0.04), 0 8px 32px rgba(212, 175, 122, 0.15);
  background: rgba(212, 175, 122, 0.08);
  display: grid;
  place-items: center;
}

.couple-monogram::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 122, 0.2);
  animation: rotateBorder 30s linear infinite;
}

.couple-monogram__inner {
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  color: #d4af7a;
}

.couple-monogram__diamond {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(212, 175, 122, 0.5);
  transform: rotate(45deg);
}

.couple-monogram__diamond--n { top: -4px; left: 50%; margin-left: -3px; }
.couple-monogram__diamond--e { right: -4px; top: 50%; margin-top: -3px; }
.couple-monogram__diamond--s { bottom: -4px; left: 50%; margin-left: -3px; }
.couple-monogram__diamond--w { left: -4px; top: 50%; margin-top: -3px; }

.couple-quote-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(20, 45, 70, 0.15);
}

.quote-mark {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  color: rgba(212, 175, 122, 0.2);
  line-height: 0.8;
  pointer-events: none;
}

.quote-mark--open {
  top: -24px;
  left: 32px;
}

.quote-mark--close {
  bottom: -24px;
  right: 32px;
}

.script-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 4vw, 2.375rem);
  line-height: 1.65;
  color: rgba(30, 58, 90, 0.85);
}

.quote-divider {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(212, 175, 122, 0.4);
}

.quote-divider span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.quote-divider i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.polaroids {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.polaroid {
  width: 200px;
  padding: 12px 12px 36px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(20, 45, 70, 0.25);
  transition: transform 0.4s ease;
}

.polaroid--left {
  transform: rotate(-3deg);
}

.polaroid--right {
  transform: rotate(2deg);
}

.polaroid:hover,
.polaroid:focus-within {
  transform: translateY(-8px) rotate(0deg);
}

.polaroid-media {
  width: 176px;
  height: 176px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, #7a9dbe, #8aaece 62%, #d4af7a);
  background-size: cover;
  background-position: center;
}

.polaroid-media.has-image {
  color: transparent;
}

.polaroid-caption {
  margin-top: 10px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 10px;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #2c4a6e 0%, #1e3a5a 50%, #162e4a 100%);
  color: #eef4fb;
  padding: 80px 40px 48px;
}

.footer-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-petals span {
  position: absolute;
  top: -80px;
  width: 14px;
  height: 22px;
  border-radius: 80% 20% 70% 30%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8), rgba(212, 230, 244, 0.38) 58%, rgba(122, 157, 192, 0.16));
  opacity: 0.06;
  animation: petalFall linear infinite;
}

.footer-petals span:nth-child(1) { left: 12%; animation-duration: 30s; animation-delay: -2s; }
.footer-petals span:nth-child(2) { left: 36%; animation-duration: 34s; animation-delay: -10s; }
.footer-petals span:nth-child(3) { left: 63%; animation-duration: 32s; animation-delay: -6s; }
.footer-petals span:nth-child(4) { left: 84%; animation-duration: 35s; animation-delay: -12s; }

.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-monogram {
  margin-bottom: 8px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.25rem, 9vw, 5rem);
  color: rgba(212, 175, 122, 0.85);
  text-shadow: 0 0 60px rgba(212, 175, 122, 0.2);
}

.footer-date {
  margin-bottom: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-ornament {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(212, 175, 122, 0.3);
}

.footer-ornament span {
  width: 80px;
  height: 1px;
  background: currentColor;
}

.footer-ornament svg {
  width: 60px;
  height: 16px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(212, 175, 122, 0.15);
  border-color: rgba(212, 175, 122, 0.65);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-note {
  margin-top: 32px;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.12em;
}
