@font-face {
  font-family: 'Malibu Sunday';
  src: url('./fonts/Malibu Sunday Serif.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Visco Doubt';
  src: url('./fonts/Visco Doubt.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Malibu Sunday Script';
  src: url('./fonts/Malibu Sunday Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  box-sizing: border-box;
  background: #551016;
}
.hero-love-pattern {
  --love-step: 150px;
  position: absolute;
  top: 7%;
  left: 50%;
  width: max-content;
  min-width: 190vw;
  z-index: 1;
  transform: translate(-50%, -20px) rotate(-5deg);
  font-family: 'Visco Doubt', cursive;
  font-size: 28px;
  font-weight: bold;
  color: #f5ebdd;
  pointer-events: none;
  animation: hero-love-pattern-reveal 1.35s ease-out both;
  will-change: filter, opacity;
}
.hero-love-row {
  --row-offset: 0px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 12px;
  white-space: nowrap;
  animation: hero-love-row-left 18s linear infinite;
  will-change: transform;
}
.hero-love-row:nth-child(even) {
  --row-offset: 75px;
  animation-name: hero-love-row-right;
}
.hero-tray {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 68.425vw;
  max-width: 430px;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-13deg);
  animation: hero-tray-in 2.5s 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, filter, opacity;
}
.hero-photobooth {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 41.4vw;
  max-width: 237px;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: drop-shadow(10px 14px 21px rgba(0, 0, 0, 0.5));
  animation: hero-photobooth-in 1.2s 2.55s ease-out both;
}
.hero-logo {
  position: absolute;
  bottom: 105px;
  left: 50%;
  width: 362px;
  max-width: 80.71vw;
  z-index: 4;
  transform: translateX(-50%);
  animation: hero-logo-reveal 1.35s 3.15s ease-out both;
  will-change: filter, opacity, transform;
}
.hero-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  max-width: 320px;
  z-index: 4;
  transform: translateX(-50%);
  color: #f5ebdd;
  font-family: 'Malibu Sunday', serif;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  animation: hero-info-reveal 1.35s 3.82s ease-out both;
  will-change: filter, opacity, transform;
}
.hero-info-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  color: #f5ebdd;
  font-family: 'Malibu Sunday', serif;
  font-size: 18px;
  text-decoration: none;
}
.hero-info-arrow {
  display: block;
  width: 24px;
  margin-top: 8px;
  animation: hero-arrow-float 2.2s ease-in-out infinite;
}
@keyframes hero-arrow-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes hero-love-pattern-reveal {
  0% { opacity: 0; filter: blur(18px); }
  100% { opacity: 1; filter: blur(0); }
}
@keyframes hero-love-row-left {
  0% { transform: translate3d(var(--row-offset), 0, 0); }
  100% { transform: translate3d(calc(var(--row-offset) - var(--love-step)), 0, 0); }
}
@keyframes hero-love-row-right {
  0% { transform: translate3d(var(--row-offset), 0, 0); }
  100% { transform: translate3d(calc(var(--row-offset) + var(--love-step)), 0, 0); }
}
@keyframes hero-photobooth-in {
  0% { opacity: 0; transform: translate(-50%, -70%) rotate(-8deg) scale(1.18); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
}
@keyframes hero-tray-in {
  0% { opacity: 0; filter: blur(18px); transform: translate(-50%, -50%) rotate(-58deg) scale(0.98); }
  100% { opacity: 1; filter: blur(0); transform: translate(-50%, -50%) rotate(-13deg) scale(1); }
}
@keyframes hero-tray-in-tablet {
  0% { opacity: 0; filter: blur(18px); transform: translate(-50%, calc(-50% + 70px)) rotate(-58deg) scale(0.98); }
  100% { opacity: 1; filter: blur(0); transform: translate(-50%, calc(-50% + 70px)) rotate(-13deg) scale(1); }
}
@keyframes hero-photobooth-in-tablet {
  0% { opacity: 0; transform: translate(-50%, calc(-70% + 70px)) rotate(-8deg) scale(1.18); }
  100% { opacity: 1; transform: translate(-50%, calc(-50% + 70px)) rotate(-8deg) scale(1); }
}
@keyframes hero-logo-reveal {
  0% { opacity: 0; filter: blur(18px); transform: translateX(-50%); }
  100% { opacity: 1; filter: blur(0); transform: translateX(-50%); }
}
@keyframes hero-info-reveal {
  0% { opacity: 0; filter: blur(18px); transform: translateX(-50%); }
  100% { opacity: 1; filter: blur(0); transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .hero-love-pattern {
    --love-step: 198px;
    min-width: 240vw;
    font-size: 38px;
  }
  .hero-tray {
    width: 78.689vw;
    max-width: 495px;
  }
  .hero-photobooth {
    width: 47.61vw;
    max-width: 273px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-love-pattern {
    min-width: 288vw;
    font-size: 46px;
    transform: translate(-50%, 10px) rotate(-5deg);
  }
  .hero-tray,
  .hero-photobooth {
    top: 33%;
  }
  .hero-tray {
    width: 94.427vw;
    max-width: 594px;
    transform: translate(-50%, calc(-50% + 70px)) rotate(-13deg);
    animation-name: hero-tray-in-tablet;
  }
  .hero-photobooth {
    width: 57.132vw;
    max-width: 328px;
    transform: translate(-50%, calc(-50% + 70px)) rotate(-8deg);
    animation-name: hero-photobooth-in-tablet;
  }
  .hero-logo {
    bottom: 132px;
    width: clamp(445px, 38.76vw, 593px);
    max-width: 59.28vw;
  }
}
@media (min-width: 1200px) {
  .hero-love-pattern {
    min-width: 260vw;
    font-size: 38px;
    transform: translate(-50%, -70px) rotate(-5deg);
  }
  .hero-tray,
  .hero-photobooth {
    top: 33%;
  }
  .hero-tray {
    width: 70.82vw;
    max-width: 446px;
  }
  .hero-photobooth {
    width: 42.849vw;
    max-width: 246px;
  }
  .hero-logo {
    bottom: 117px;
    width: clamp(371px, 32.3vw, 494px);
    max-width: 49.4vw;
  }
}
.mairie-section {
  position: relative;
  min-height: auto;
  overflow: visible;
  z-index: 2;
  background-color: #f9f3df;
  background-image: url('assets/fond-damier-tile.svg');
  background-repeat: repeat;
  background-position: center top;
  background-size: 250px 250px;
}
.mairie-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 7vw, 62px);
  padding: clamp(42px, 10vw, 96px) 20px clamp(64px, 13vw, 120px);
}

.mairie-card {
  --mairie-base-transform: none;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(86vw, 720px);
  aspect-ratio: 720 / 590;
  max-height: calc(100dvh - 72px);
  padding: clamp(34px, 9vw, 76px) clamp(26px, 7vw, 64px);
  color: #541017;
  text-align: center;
  background: #f9f3df;
  border: 2px solid #541017;
  transform: var(--mairie-base-transform);
}

.mairie-card::before {
  content: '';
  position: absolute;
  inset: clamp(8px, 2.4vw, 12px);
  border: 1px solid #541017;
  pointer-events: none;
}
.mairie-card__title {
  margin: 0 0 clamp(36px, 8vw, 70px);
  color: #541017;
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(68px, 17vw, 140px);
  font-weight: normal;
  line-height: 0.78;
}
.mairie-card__details {
  margin: 0;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: normal;
  line-height: 1.16;
}
.mairie-polaroids--top {
  position: relative;
  width: min(92vw, 720px);
  height: clamp(270px, 76vw, 510px);
  margin-bottom: clamp(-18px, -3vw, -8px);
}
.mairie-polaroid {
  --mairie-parallax-y: 0px;
  --mairie-shadow-filter: drop-shadow(14px 18px 14px rgba(26, 26, 26, 0.38));
  display: block;
  height: auto;
  width: min(50.4vw, 297px);
  filter: var(--mairie-shadow-filter);
  pointer-events: none;
  user-select: none;
}
.mairie-polaroid--couple {
  position: absolute;
  top: 0;
  left: 2vw;
  z-index: 2;
  transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(12deg);
}
.mairie-polaroid--proposal {
  position: absolute;
  top: clamp(56px, 14vw, 116px);
  right: 0;
  z-index: 3;
  transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-10deg);
}
.mairie-polaroid--bali {
  position: relative;
  z-index: 20;
  transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(11deg);
}
.mairie-doodle,
.mairie-polaroid-text {
  --mairie-parallax-y: 0px;
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.mairie-doodle {
  --mairie-shadow-filter: var(--henne-shadow-filter);
  filter: var(--mairie-shadow-filter);
}
.mairie-reveal {
  opacity: 0;
  filter: var(--mairie-shadow-filter, none) blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter, transform;
}
.mairie-reveal.is-visible {
  opacity: 1;
  filter: var(--mairie-shadow-filter, none) blur(0);
}
@media (max-width: 767px) {
  .mairie-doodle--flower-hearts { top: 130px; left: 5px; width: clamp(48px, 13.5vw, 78px); z-index: 12; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-5deg); }
  .mairie-polaroid-text--elle { top: 150px; left: 60px; width: clamp(69px, 19.5vw, 115px); z-index: 13; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(12deg); }
  .mairie-doodle--heart { top: 220px; left: 240px; width: clamp(44px, 12vw, 72px); z-index: 14; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-8deg); }
  .mairie-polaroid-text--yes { top: 180px; left: 300px; width: clamp(59px, 17vw, 101px); z-index: 15; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-10deg); }
  .mairie-doodle--star { top: 370px; left: 10px; width: clamp(44px, 12vw, 72px); z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-12deg); }
  .mairie-doodle--bottle { top: 620px; left: 320px; right: auto; width: clamp(47px, 20vw, 97px); z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-15deg); }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mairie-section { height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; background-size: 400px 400px; }
  .mairie-section__inner { display: grid; place-items: center; height: 100%; min-height: 100%; padding: 0 48px; }
  .mairie-card { position: absolute; top: 50%; left: 50%; width: min(72vw, 720px); max-height: calc(100dvh - 112px); transform: translate(-50%, -50%); }
  .mairie-polaroids--top { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; pointer-events: none; }
  .mairie-polaroid { width: min(35vw, 369px); }
  .mairie-polaroid--couple { top: calc(50% - 475px); left: calc(50% - 340px); z-index: 5; transform: translateY(calc(-50% + var(--mairie-parallax-y))) rotate(10deg); }
  .mairie-polaroid--proposal { top: calc(50% - 475px); right: auto; left: calc(50% - 45px); z-index: 6; transform: translateY(calc(-50% + var(--mairie-parallax-y))) rotate(-8deg); }
  .mairie-polaroid--bali { position: absolute; top: auto; bottom: -16px; left: 50%; z-index: 20; transform: translate(-50%, var(--mairie-parallax-y)) rotate(-7deg); }
  .mairie-doodle--flower-hearts { top: 220px; left: 160px; width: 94px; z-index: 12; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-5deg); }
  .mairie-polaroid-text--elle { top: 300px; left: 270px; width: 115px; z-index: 13; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(12deg); }
  .mairie-doodle--heart { top: 300px; left: 570px; width: 72px; z-index: 14; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-8deg); }
  .mairie-polaroid-text--yes { top: 250px; left: 700px; width: 101px; z-index: 15; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-10deg); }
  .mairie-doodle--star { top: 350px; left: 120px; width: 72px; z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-12deg); }
  .mairie-doodle--bottle { top: 64.4dvh; left: 74.4vw; right: auto; width: 97px; z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(16deg); }
}
@media (min-width: 1200px) {
  .mairie-section { height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; background-size: 400px 400px; }
  .mairie-section__inner { display: grid; place-items: center; height: 100%; min-height: 100%; padding: 0 80px; }
  .mairie-card { position: absolute; top: 50%; left: 50%; width: min(72vw, 720px); max-height: calc(100dvh - 112px); transform: translate(-50%, -50%); }
  .mairie-polaroids--top { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; pointer-events: none; }
  .mairie-polaroid { width: 340px; }
  .mairie-polaroid--couple { top: calc(50% - 320px); left: calc(max(28px, calc(50% - 660px)) - 150px); z-index: 2; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(10deg); }
  .mairie-polaroid--proposal { top: calc(50% - 10px); right: auto; left: calc(max(28px, calc(50% - 660px)) - 80px); z-index: 3; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-8deg); }
  .mairie-polaroid--bali { position: absolute; top: 50%; bottom: auto; right: auto; left: calc(50% + 470px); z-index: 20; transform: translateY(calc(-50% + var(--mairie-parallax-y))) rotate(-7deg); }
  .mairie-doodle--flower-hearts { top: 400px; left: 100px; width: 94px; z-index: 12; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-5deg); }
  .mairie-polaroid-text--elle { top: 470px; left: 230px; width: 115px; z-index: 13; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(12deg); }
  .mairie-doodle--heart { top: 800px; left: 300px; width: 72px; z-index: 14; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-8deg); }
  .mairie-polaroid-text--yes { top: 760px; left: 430px; width: 101px; z-index: 15; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-10deg); }
  .mairie-doodle--star { top: 220px; left: 570px; width: 72px; z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(-12deg); }
  .mairie-doodle--bottle { top: 750px; left: 1200px; right: auto; width: 97px; z-index: 16; transform: translate3d(0, var(--mairie-parallax-y), 0) rotate(16deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-love-pattern,
  .hero-love-row,
  .hero-tray,
  .hero-logo,
  .hero-text,
  .hero-photobooth {
    animation: none;
  }
  .hero-love-row:nth-child(even) {
    transform: translateX(75px);
  }
  .mairie-reveal {
    opacity: 1;
    filter: var(--mairie-shadow-filter, none) blur(0);
    transition: none;
  }
  .mairie-polaroid,
  .mairie-doodle,
  .mairie-polaroid-text {
    --mairie-parallax-y: 0px !important;
  }
  .ceremonie-reveal {
    opacity: 1;
    filter: blur(0);
    transition: none;
  }
  .ceremonie-calendar,
  .ceremonie-couple {
    --ceremonie-parallax-y: 0px !important;
  }
}
.ceremonie-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  color: #f9f3df;
  background: #541017;
}
.ceremonie-section__inner {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  padding: clamp(34px, 8vw, 78px) clamp(18px, 5vw, 72px) clamp(44px, 9vw, 88px);
}
.ceremonie-title {
  align-self: flex-start;
  margin: 0 0 clamp(26px, 6vw, 58px);
  color: #f9f3df;
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(68px, 17vw, 140px);
  font-weight: normal;
  line-height: 0.82;
}
.ceremonie-calendar {
  --ceremonie-parallax-y: 0px;
  display: block;
  width: min(100%, 1063px);
  height: auto;
  margin: 15px auto clamp(30px, 6vw, 58px);
  pointer-events: none;
  user-select: none;
}
.ceremonie-details {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88vw, 900px);
  margin: 0;
  transform: translate(-50%, calc(-50% + 15px));
  color: #f9f3df;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: normal;
  line-height: 1.16;
  text-align: center;
}
.ceremonie-couple {
  --ceremonie-parallax-y: 0px;
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: min(72vw, 520px);
  height: auto;
  margin: 0;
  transform: translate(-50%, var(--ceremonie-parallax-y));
  pointer-events: none;
  user-select: none;
}
.ceremonie-reveal {
  opacity: 0;
  filter: blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter, transform;
}
.ceremonie-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}
@media (min-width: 768px) {
  .ceremonie-section__inner {
    padding-right: clamp(48px, 7vw, 110px);
    padding-left: clamp(48px, 7vw, 110px);
  }
  .ceremonie-calendar {
    width: min(86vw, 1063px);
  }
  .ceremonie-couple {
    width: min(44vw, 560px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ceremonie-calendar {
    width: min(67.46vw, 836px);
    margin-top: -30px;
  }
  .ceremonie-details {
    transform: translate(-50%, calc(-50% + 90px));
  }
}
@media (min-width: 1200px) {
  .ceremonie-title {
    align-self: auto;
    position: absolute;
    top: 100px ;
    left: 100px;
    width: min(42vw, 760px);
    transform: none;
    text-align: center;
  }
  .ceremonie-calendar {
    position: absolute;
    top: 250px;
    left: 100px;
    width: min(40vw, 844px);
    margin: 0;
    transform: translateY(var(--ceremonie-parallax-y));
  }
  .ceremonie-details {
    top: 850px;
    left: 100px;
    width: min(42vw, 760px);
    transform: translateY(-50%);
    text-align: center;
  }
  .ceremonie-couple {
    position: absolute;
    right: -50px;
    bottom: -10px;
    left: auto;
    width: min(500vw, 1000px);
    transform: translateY(var(--ceremonie-parallax-y));
  }
}
.celebrate-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 100px 0;
  overflow: visible;
  background-color: #541017;
  background-image: url('assets/fond-rayure.svg');
  background-repeat: repeat;
  background-position: top left;
  background-size: 420px 437px;
}
.celebrate-panel {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: calc(100vh - 200px);
  min-height: calc(100dvh - 200px);
  background: #f9f3df;
}
@media (min-width: 768px) {
  .celebrate-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .celebrate-panel {
    min-height: calc(100vh - 200px);
    min-height: calc(100dvh - 200px);
  }
}

.celebrate-polaroid {
  --celebrate-parallax-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(50.4vw, 297px);
  height: auto;
  transform: translate(-50%, calc(-50% + var(--celebrate-parallax-y)));
  filter: var(--henne-shadow-filter);
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .celebrate-polaroid {
    width: min(35vw, 369px);
  }
}

@media (min-width: 1200px) {
  .celebrate-polaroid {
    width: 340px;
  }
}

.celebrate-text {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.celebrate-text--date {
  top: calc(50% - 250px);
  left: 50%;
  z-index: 4;
  width: min(38vw, 100px);
  transform: translateX(-50%);
}

.celebrate-text--celebrate {
  top: calc(50% - 185px);
  left: 50%;
  z-index: 1;
  width: min(92vw, 430px);
  transform: translateX(-50%);
}

.celebrate-polaroid {
  z-index: 3;
}

.celebrate-text--side {
  top: 50%;
  z-index: 4;
  width: min(28vw, 200px);
  transform: translateY(-50%);
}

.celebrate-text--side-left {
  left: 10px;
}

.celebrate-text--side-right {
  right: 10px;
}

.celebrate-text--with-us {
  bottom: 100px;
  left: 50%;
  z-index: 4;
  width: min(78vw, 340px);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .celebrate-text--date {
    top: calc(50% - 330px);
    width: min(20vw, 190px);
  }

  .celebrate-text--celebrate {
    top: 290px;
    width: min(70vw, 620px);
  }

  .celebrate-text--side {
    width: min(25vw, 250px);
  }

  .celebrate-text--side-left {
    left : 50px;
  }

  .celebrate-text--side-right {
    right: 50px;
  }

  .celebrate-text--with-us {
    top: calc(50% + 270px);
    width: min(52vw, 480px);
  }
}

@media (min-width: 1200px) {
  .celebrate-text--date {
    top: calc(50% - 360px);
    width: 130px;
  }

  .celebrate-text--celebrate {
    top: calc(50% - 290px);
    width: 620px;
  }

  .celebrate-text--side {
    width: 400px;
  }

  .celebrate-text--side-left {
    left: 300px;
  }

  .celebrate-text--side-right {
    right: 300px;
  }

  .celebrate-text--with-us {
    top: calc(50% + 230px);
    width: 460px;
  }
}

.celebrate-photo-reveal {
  opacity: 0;
  filter: drop-shadow(14px 18px 14px rgba(26, 26, 26, 0.32)) blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter, transform;
}

.celebrate-photo-reveal.is-visible {
  opacity: 1;
  filter: drop-shadow(14px 18px 14px rgba(26, 26, 26, 0.32)) blur(0);
}

.celebrate-text-reveal {
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}

.celebrate-text-reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .celebrate-photo-reveal,
  .celebrate-text-reveal {
    opacity: 1;
    transition: none;
  }

  .celebrate-photo-reveal,
  .celebrate-photo-reveal.is-visible {
    filter: drop-shadow(14px 18px 14px rgba(26, 26, 26, 0.32)) blur(0);
  }

  .celebrate-polaroid {
    --celebrate-parallax-y: 0px !important;
  }
}

.infos-section {
  position: relative;
  min-height: 150vh;
  min-height: 150dvh;
  overflow: hidden;
  background: #f9f3df;
}

.infos-section__inner {
  display: flex;
  min-height: 150vh;
  min-height: 150dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding: clamp(80px, 18vw, 150px) 20px;
}

.infos-card {
  position: relative;
  width: min(86vw, 720px);
  aspect-ratio: 720 / 1328;
  background: #f9f3df;
  border: 2px solid #541017;
}

.infos-card::before {
  content: '';
  position: absolute;
  inset: clamp(8px, 2.4vw, 12px);
  border: 1px solid #541017;
  pointer-events: none;
}

.infos-title,
.infos-sticker {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.infos-title {
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(68vw, 430px);
  height: auto;
  transform: translate(-50%, -48%);
}

.infos-sticker {
  z-index: 4;
  --infos-parallax-y: 0px;
  --infos-shadow-filter: drop-shadow(6px 8px 5px rgba(26, 26, 26, 0.22));
  width: clamp(118px, 32vw, 178px);
  height: auto;
  filter: var(--infos-shadow-filter);
  transform: translate3d(0, var(--infos-parallax-y), 0);
  will-change: transform, opacity, filter;
}

.infos-sticker--dog-1 {
  left: clamp(-18px, -3vw, -8px);
  bottom: clamp(-22px, -4vw, -10px);
}

.infos-sticker--dog-2 {
  right: clamp(-18px, -3vw, -8px);
  bottom: clamp(-22px, -4vw, -10px);
}

.infos-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 15vw, 100px) clamp(26px, 7vw, 58px);
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(13px, 3.1vw, 17px);
  line-height: 1.12;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.infos-card__content p {
  margin: 0 0 0.72em;
}

.infos-card__content h3 {
  margin: 1.02em 0 0.44em;
  font-family: 'Malibu Sunday', serif;
  font-size: 1.88em;
  line-height: 1;
  text-align: center;
}

.infos-card__content strong {
  font-weight: 700;
}

.infos-address {
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
}

.infos-link-centered {
  text-align: center;
}

.infos-card__content a {
  color: #541017;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.infos-reveal {
  opacity: 0;
  filter: var(--infos-shadow-filter, none) blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter;
}

.infos-reveal.is-visible {
  opacity: 1;
  filter: var(--infos-shadow-filter, none) blur(0);
}

.infos-stripe-divider {
  height: 100px;
  background-color: #541017;
  background-image: url('assets/fond-rayure.svg');
  background-repeat: repeat;
  background-position: center;
  background-size: 420px 437px;
}

@media (prefers-reduced-motion: reduce) {
  .infos-reveal {
    opacity: 1;
    transition: none;
    filter: var(--infos-shadow-filter, none) blur(0);
  }

  .infos-sticker {
    --infos-parallax-y: 0px !important;
  }
}

@media (min-width: 768px) {
  .infos-section,
  .infos-section__inner {
    min-height: 75vh;
    min-height: 75dvh;
  }

  .infos-section__inner {
    flex-direction: row;
    gap: 120px;
    padding: 0 clamp(48px, 7vw, 110px);
  }

  .infos-card {
    width: min(40vw, 650px);
    aspect-ratio: 720 / 1328;
  }

  .infos-title {
    width: min(24vw, 330px);
  }

  .infos-sticker {
    width: clamp(130px, 14vw, 190px);
  }

  .infos-card__content {
    padding: 58px 34px;
    font-size: clamp(11px, 1.35vw, 15px);
    line-height: 1.08;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .infos-card--come,
  .infos-card--sleep {
    width: min(40vw, 650px);
  }
}

@media (min-width: 1200px) {
  .infos-section,
  .infos-section__inner {
    min-height: 94vh;
    min-height: 94dvh;
  }

  .infos-card {
    width: min(28vw, 560px);
    aspect-ratio: 720 / 996;
  }

  .infos-title {
    width: min(21vw, 370px);
  }

  .infos-sticker {
    width: clamp(150px, 12vw, 220px);
  }

  .infos-card__content {
    padding: 62px 38px;
    font-size: clamp(12px, 0.82vw, 16px);
    line-height: 1.1;
    transform: translateY(-75px);
  }
}

.brunch-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #541017;
}

.brunch-heart-bg {
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: auto;
  height: 67.5%;
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .brunch-heart-bg {
    left: auto;
    right: -100px;
  }
}

.brunch-polaroid {
  position: absolute;
  --brunch-parallax-y: 0px;
  --brunch-shadow-filter: var(--henne-shadow-filter);
  z-index: 2;
  display: block;
  width: min(50.4vw, 297px);
  height: auto;
  filter: var(--brunch-shadow-filter);
  pointer-events: none;
  user-select: none;
}

.brunch-polaroid--femme {
  top: 100px;
  left: 0;
  transform: translate3d(0, var(--brunch-parallax-y), 0) rotate(-10deg);
}

.brunch-polaroid--duo {
  bottom: 15px;
  left: 25px;
  transform: translate3d(0, var(--brunch-parallax-y), 0) rotate(8deg);
}

.brunch-polaroid--man {
  right: 25px;
  bottom: 100px;
  transform: translate3d(0, var(--brunch-parallax-y), 0) rotate(-7deg);
}

@media (min-width: 768px) {
  .brunch-polaroid {
    width: min(35vw, 369px);
  }

  .brunch-polaroid--femme {
    top: 100px;
    left: 50px;
  }

  .brunch-polaroid--duo {
    bottom: 40px;
    left: 170px;
  }

  .brunch-polaroid--man {
    right: 170px;
    bottom: 90px;
  }
}

@media (min-width: 1200px) {
  .brunch-polaroid {
    width: 340px;
  }

  .brunch-polaroid--femme {
    top: 200px;
    left: 120px;
  }

  .brunch-polaroid--duo {
    bottom: 200px;
    left: 170px;
  }

  .brunch-polaroid--man {
    right: 180px;
    bottom: 300px;
  }
}

.brunch-doodle {
  position: absolute;
  --brunch-parallax-y: 0px;
  --brunch-shadow-filter: drop-shadow(5px 7px 4px rgba(26, 26, 26, 0.22));
  z-index: 3;
  display: block;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: auto;
  filter: var(--brunch-shadow-filter);
  pointer-events: none;
  user-select: none;
}

.brunch-doodle--bread {
  width: clamp(62px, 17vw, 96px);
}

.brunch-doodle--butter {
  width: clamp(54px, 15vw, 86px);
}

.brunch-doodle--cheese-platter {
  width: clamp(49px, 13.5vw, 78px);
}

.brunch-doodle--madeleine {
  width: clamp(44px, 12vw, 69px);
}

.brunch-doodle--orange {
  width: clamp(29px, 8vw, 46px);
}

.brunch-doodle--pancake {
  width: clamp(36px, 10vw, 58px);
}

.brunch-doodle--tartine {
  width: clamp(72px, 20vw, 116px);
}

.brunch-doodle--coffee {
  width: clamp(64px, 18vw, 104px);
}

@media (min-width: 768px) {
  .brunch-doodle--bread {
    width: 118px;
  }

  .brunch-doodle--butter {
    width: 104px;
  }

  .brunch-doodle--cheese-platter {
    width: 95px;
  }

  .brunch-doodle--madeleine {
    width: 84px;
  }

  .brunch-doodle--orange {
    width: 56px;
  }

  .brunch-doodle--pancake {
    width: 71px;
  }

  .brunch-doodle--tartine {
    width: 142px;
  }

  .brunch-doodle--coffee {
    width: 128px;
  }
}

@media (min-width: 1200px) {
  .brunch-doodle--bread {
    width: 126px;
  }

  .brunch-doodle--butter {
    width: 112px;
  }

  .brunch-doodle--cheese-platter {
    width: 101px;
  }

  .brunch-doodle--madeleine {
    width: 90px;
  }

  .brunch-doodle--orange {
    width: 60px;
  }

  .brunch-doodle--pancake {
    width: 76px;
  }

  .brunch-doodle--tartine {
    width: 152px;
  }

  .brunch-doodle--coffee {
    width: 138px;
  }
}

/* Brunch doodle position controls - mobile */
.brunch-doodle--bread {
  left: 220px;
  top: 190px;
}

.brunch-doodle--butter {
  left: 140px;
  top: 290px;
}

.brunch-doodle--cheese-platter {
  left: 275px;
  top: 790px;
}

.brunch-doodle--madeleine {
  left: 75px;
  top: 650px;
}

.brunch-doodle--orange {
  left: 100px;
  top: 550px;
}

.brunch-doodle--pancake {
  left: 75px;
  top: 25px;
}

.brunch-doodle--tartine {
  left: 300px;;
  top: 25px;
}

.brunch-doodle--coffee {
  left: 175px;
  top: 600px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  /* Brunch doodle position controls - tablet */
  .brunch-doodle--bread {
    left: 450px;
    top: 200px;
  }

  .brunch-doodle--butter {
    left: 275px;
    top: 425px;
  }

  .brunch-doodle--cheese-platter {
    left: 600px;
    top: 1200px;
  }

  .brunch-doodle--madeleine {
    left: 250px;
    top: 900px;
  }

  .brunch-doodle--orange {
    left: 150px;
    top: 700px;
  }

  .brunch-doodle--pancake {
    left: 200px;
    top: 50px;
  }

  .brunch-doodle--tartine {
    left: 700px;
    top: 75px;
  }

  .brunch-doodle--coffee {
    left: 450px;
    top: 850px;
  }
}

@media (min-width: 1200px) {
  /* Brunch doodle position controls - desktop */
  .brunch-doodle--bread {
    left: 500px;
    top: 350px;
  }

  .brunch-doodle--butter {
    left: 100px;
    top: 450px;
  }

  .brunch-doodle--cheese-platter {
    left: 1600px;
    top: 700px;
  }

  .brunch-doodle--madeleine {
    left: 150px;
    top: 700px;
  }

  .brunch-doodle--orange {
    left: 1250px;
    top: 200px;
  }

  .brunch-doodle--pancake {
    left: 350px;
    top: 125px;
  }

  .brunch-doodle--tartine {
    left: 750px;
    top: 150px;
  }
}

@media (min-width: 1200px) {
  .brunch-doodle--coffee {
    left: 1350px;
    top: 425px;
  }
}

.brunch-copy {
  position: absolute;
  top: 50%;
  right: clamp(24px, 8vw, 150px);
  z-index: 4;
  width: min(72vw, 470px);
  color: #f9f3df;
  text-align: right;
  transform: translateY(calc(-50% - 50px));
}

.brunch-title {
  margin: 0 0 clamp(28px, 7vw, 58px);
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(76px, 19vw, 140px);
  font-weight: normal;
  line-height: 0.78;
}

.brunch-details {
  margin: 0;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(26px, 6.5vw, 40px);
  font-weight: normal;
  line-height: 1.04;
}

@media (min-width: 768px) {
  .brunch-copy {
    width: min(50vw, 520px);
    right: clamp(70px, 10vw, 150px);
  }

  .brunch-title {
    font-size: clamp(100px, 13vw, 150px);
  }

  .brunch-details {
    font-size: clamp(30px, 3.9vw, 42px);
  }
}

@media (min-width: 1200px) {
  .brunch-copy {
    right: 150px;
    width: 560px;
  }
}

.brunch-details__intro,
.brunch-details__info {
  display: block;
}

.brunch-details__intro {
  font-size: 0.5em;
  margin-bottom: 1.6em;
}

.brunch-details__info {
  font-size: 0.75em;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .brunch-date-line {
    white-space: nowrap;
    font-size: 0.92em;
  }
}

@media (min-width: 1200px) {
  .brunch-copy {
    left: 50%;
    right: auto;
    top: 50%;
    width: 560px;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}

.brunch-doodle {
  transform: translate3d(0, var(--brunch-parallax-y), 0);
  will-change: transform, opacity, filter;
}

.brunch-polaroid {
  will-change: transform, opacity, filter;
}

.brunch-reveal {
  opacity: 0;
  filter: var(--brunch-shadow-filter, none) blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter, transform;
}

.brunch-reveal.is-visible {
  opacity: 1;
  filter: var(--brunch-shadow-filter, none) blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .brunch-reveal {
    opacity: 1;
    transition: none;
    filter: var(--brunch-shadow-filter, none) blur(0);
  }

  .brunch-polaroid,
  .brunch-doodle {
    --brunch-parallax-y: 0px !important;
  }
}

.henne-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f9f3df;
  color: #541017;
  text-align: center;
}

.henne-copy {
  position: relative;
  z-index: 2;
  width: min(86vw, 760px);
}

.henne-bg-flower {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -100px;
  width: auto;
  height: min(82vh, 1240px);
  max-height: none;
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.henne-title {
  margin: 0 0 clamp(34px, 8vw, 70px);
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(76px, 19vw, 140px);
  font-weight: normal;
  line-height: 0.78;
}

.henne-details {
  margin: 0;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: normal;
  line-height: 1.16;
}

@media (min-width: 768px) {
  .henne-copy {
    width: min(70vw, 860px);
  }

  .henne-title {
    font-size: clamp(110px, 13vw, 150px);
  }

  .henne-details {
    font-size: clamp(24px, 3.2vw, 40px);
  }
}

@media (min-width: 1200px) {
  .henne-copy {
    width: 860px;
  }
}

.henne-polaroid {
  --henne-parallax-y: 0px;
  --henne-shadow-filter: drop-shadow(14px 18px 14px rgba(26, 26, 26, 0.32));
  position: absolute;
  z-index: 2;
  display: block;
  width: min(50.4vw, 297px);
  height: auto;
  filter: var(--henne-shadow-filter);
  pointer-events: none;
  user-select: none;
}

.henne-polaroid--desert {
  left: 50px;
  bottom: 50px;
  transform: translate3d(0, var(--henne-parallax-y), 0) rotate(8deg);
}

.henne-polaroid--smile {
  top: 50px;
  right: 50px;
  transform: translate3d(0, var(--henne-parallax-y), 0) rotate(-9deg);
}

@media (min-width: 768px) {
  .henne-polaroid {
    width: min(35vw, 369px);
  }
}

@media (min-width: 1200px) {
  .henne-polaroid {
    width: 340px;
  }
}

.henne-doodle {
  --henne-parallax-y: 0px;
  --henne-shadow-filter: drop-shadow(5px 7px 4px rgba(26, 26, 26, 0.22));
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  filter: var(--henne-shadow-filter);
  pointer-events: none;
  user-select: none;
}

.henne-doodle--eye-1 {
  width: clamp(54px, 15vw, 86px);
}

.henne-doodle--eye-2 {
  width: clamp(54px, 15vw, 86px);
}

.henne-doodle--flower {
  width: clamp(62px, 17vw, 96px);
}

.henne-doodle--grenade {
  width: clamp(56px, 16vw, 90px);
}

.henne-doodle--hat {
  width: clamp(48px, 13.5vw, 78px);
}

.henne-doodle--tapis {
  width: clamp(86px, 24vw, 138px);
}

/* Henne doodle position controls - mobile */
.henne-doodle--eye-1 {
  top: 250px;
  right: 50px;
}

.henne-doodle--eye-2 {
  top: 75px;
  left: 150px;
}

.henne-doodle--flower {
  top: 250px;
  left: 75px;
}

.henne-doodle--grenade {
  bottom: 250px;
  right: 100px;
}

.henne-doodle--hat {
  bottom: 235px;
  left: 150px;
}

.henne-doodle--tapis {
  bottom: 50px;
  left: 300px;
  right: 50px;
}

/* Henne doodle position controls - tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .henne-doodle--eye-1 {
    width: 104px;
    top: 300px;
    right: 50px;
  }

  .henne-doodle--eye-2 {
    width: 104px;
    top: 100px;
    left: 600px;
  }

  .henne-doodle--flower {
    width: 118px;
    top: 300px;
    left: 450px;
  }

  .henne-doodle--grenade {
    width: 110px;
    bottom: 300px;
    right: 100px;
  }

  .henne-doodle--hat {
    width: 96px;
    bottom: 350px;
    left: 215px;
  }

  .henne-doodle--tapis {
    width: 168px;
    bottom: 100px;
    left: 500px;
    right: 0px;
  }
}

/* Henne doodle position controls - desktop */
@media (min-width: 1200px) {
  .henne-doodle--eye-1 {
    width: 112px;
    top: 250px;
    right: 50px;
  }

  .henne-doodle--eye-2 {
    width: 112px;
    top: 100px;
    left: 1400px;
  }

  .henne-doodle--flower {
    width: 126px;
    top: 300px;
    left: 400px;
  }

  .henne-doodle--grenade {
    width: 118px;
    bottom: 300px;
    right: 200px;
  }

  .henne-doodle--hat {
    width: 104px;
    bottom: 330px;
    left: 200px;
  }

  .henne-doodle--tapis {
    width: 180px;
    bottom: 125px;
    left: 1000px;
    right: 0px;
  }
}

.henne-doodle {
  transform: translate3d(0, var(--henne-parallax-y), 0);
  will-change: transform, opacity, filter;
}

.henne-polaroid {
  will-change: transform, opacity, filter;
}

.henne-reveal {
  opacity: 0;
  filter: var(--henne-shadow-filter, none) blur(18px);
  transition: opacity 1.25s ease, filter 1.25s ease;
  will-change: opacity, filter, transform;
}

.henne-reveal.is-visible {
  opacity: 1;
  filter: var(--henne-shadow-filter, none) blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .henne-reveal {
    opacity: 1;
    transition: none;
    filter: var(--henne-shadow-filter, none) blur(0);
  }

  .henne-polaroid,
  .henne-doodle {
    --henne-parallax-y: 0px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .henne-bg-flower {
    top: calc(50% + 100px);
  }
}

@media (min-width: 1200px) {
  .henne-bg-flower {
    top: auto;
    bottom: -100px;
    right: 400px;
    transform: none;
  }
}

.landing-entry-body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: #551016;
  font-family: 'Malibu Sunday', serif;
}

.landing-entry {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #551016;
  color: #f9f3df;
  text-align: center;
}

.landing-entry__content {
  width: min(86vw, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-entry__monogram {
  display: block;
  width: clamp(54px, 16vw, 92px);
  height: auto;
  margin-bottom: clamp(34px, 10vw, 56px);
}

.landing-entry__logo {
  display: block;
  width: min(74vw, 390px);
  height: auto;
}

.landing-entry__actions {
  width: min(78vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: clamp(48px, 13vw, 72px);
}

.landing-entry__cta {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #f9f3df;
  border-radius: 999px;
  padding: 13px 24px 15px;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.landing-entry__cta--outline {
  background: #551016;
  color: #f9f3df;
}

.landing-entry__cta--filled {
  background: #f9f3df;
  color: #551016;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .landing-entry__content {
    width: min(74vw, 720px);
  }

  .landing-entry__monogram {
    width: 108px;
    margin-bottom: 60px;
  }

  .landing-entry__logo {
    width: min(58vw, 500px);
  }

  .landing-entry__actions {
    width: 390px;
    gap: 20px;
    margin-top: 78px;
  }

  .landing-entry__cta {
    min-height: 60px;
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  .landing-entry__content {
    width: min(58vw, 760px);
  }

  .landing-entry__monogram {
    width: 116px;
    margin-bottom: 64px;
  }

  .landing-entry__logo {
    width: min(38vw, 540px);
  }

  .landing-entry__actions {
    width: 420px;
    gap: 22px;
    margin-top: 82px;
  }

  .landing-entry__cta {
    min-height: 62px;
    font-size: 26px;
  }
}

.landing-entry__monogram {
  opacity: 0;
  transform: rotate(15deg) scale(0.96);
  animation: landing-monogram-in 1.25s ease-out 0.2s both;
  will-change: opacity, transform;
}

.landing-entry__logo {
  opacity: 0;
  transform-origin: center;
  animation: landing-logo-blur-in 1.6s ease-out 1.05s both;
  will-change: opacity, transform, filter;
}

.landing-entry__cta {
  opacity: 0;
  transform: translateY(12px);
  animation: landing-cta-in 1s ease-out both;
  will-change: opacity, transform;
}

.landing-entry__cta:nth-child(1) {
  animation-delay: 2.1s;
}

.landing-entry__cta:nth-child(2) {
  animation-delay: 2.28s;
}

@keyframes landing-monogram-in {
  0% {
    opacity: 0;
    transform: rotate(15deg) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes landing-logo-blur-in {
  0% {
    opacity: 0;
    filter: blur(18px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes landing-cta-in {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-entry__monogram,
  .landing-entry__logo,
  .landing-entry__cta {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }
}

/* Desktop proportional placement layer
   Reference canvas: 1920 x 1080 CSS. Keeps the validated desktop composition
   in the same relative place on smaller/larger desktop windows. */
@media (min-width: 1200px) {
  .mairie-polaroid {
    width: 17.708vw;
  }

  .mairie-polaroid--couple {
    top: calc(50% - 29.63vh);
    left: 7.813vw;
  }

  .mairie-polaroid--proposal {
    top: calc(50% - 0.926vh);
    left: 11.458vw;
  }

  .mairie-polaroid--bali {
    left: 74.479vw;
  }

  .mairie-doodle--flower-hearts {
    top: 37.037vh;
    left: 5.208vw;
  }

  .mairie-polaroid-text--elle {
    top: 43.519vh;
    left: 11.979vw;
  }

  .mairie-doodle--heart {
    top: 74.074vh;
    left: 15.625vw;
  }

  .mairie-polaroid-text--yes {
    top: 70.37vh;
    left: 22.396vw;
  }

  .mairie-doodle--star {
    top: 20.37vh;
    left: 29.688vw;
  }

  .mairie-doodle--bottle {
    top: 69.444vh;
    left: 62.5vw;
  }

  .ceremonie-title {
    top: 9.259vh;
    left: 5.208vw;
  }

  .ceremonie-calendar {
    top: 23.148vh;
    left: 5.208vw;
  }

  .ceremonie-details {
    top: 78.704vh;
    left: 5.208vw;
  }

  .ceremonie-couple {
    right: -2.604vw;
    bottom: -0.926vh;
    width: 52.083vw;
  }

  .celebrate-text--date {
    top: calc(50% - 33.333vh);
    width: 6.771vw;
  }

  .celebrate-text--celebrate {
    top: calc(50% - 26.852vh);
    width: 32.292vw;
  }

  .celebrate-text--side {
    width: 20.833vw;
  }

  .celebrate-text--side-left {
    left: 15.625vw;
  }

  .celebrate-text--side-right {
    right: 15.625vw;
  }

  .celebrate-text--with-us {
    top: calc(50% + 21.296vh);
    width: 23.958vw;
  }

  .infos-card__content {
    transform: translateY(-6.944vh);
  }

  .brunch-heart-bg {
    right: -5.208vw;
  }

  .brunch-polaroid {
    width: 17.708vw;
  }

  .brunch-polaroid--femme {
    top: 18.519vh;
    left: 6.25vw;
  }

  .brunch-polaroid--duo {
    bottom: 18.519vh;
    left: 8.854vw;
  }

  .brunch-polaroid--man {
    right: 9.375vw;
    bottom: 27.778vh;
  }

  .brunch-doodle--bread {
    left: 26.042vw;
    top: 32.407vh;
  }

  .brunch-doodle--butter {
    left: 5.208vw;
    top: 41.667vh;
  }

  .brunch-doodle--cheese-platter {
    left: 83.333vw;
    top: 64.815vh;
  }

  .brunch-doodle--madeleine {
    left: 7.813vw;
    top: 64.815vh;
  }

  .brunch-doodle--orange {
    left: 65.104vw;
    top: 18.519vh;
  }

  .brunch-doodle--pancake {
    left: 18.229vw;
    top: 11.574vh;
  }

  .brunch-doodle--tartine {
    left: 39.063vw;
    top: 13.889vh;
  }

  .brunch-doodle--coffee {
    left: 70.313vw;
    top: 39.352vh;
  }

  .henne-polaroid {
    width: 17.708vw;
  }

  .henne-polaroid--desert {
    left: 2.604vw;
    bottom: 4.63vh;
  }

  .henne-polaroid--smile {
    top: 4.63vh;
    right: 2.604vw;
  }

  .henne-doodle--eye-1 {
    width: 5.833vw;
    top: 23.148vh;
    right: 2.604vw;
  }

  .henne-doodle--eye-2 {
    width: 5.833vw;
    top: 9.259vh;
    left: 72.917vw;
  }

  .henne-doodle--flower {
    width: 6.563vw;
    top: 27.778vh;
    left: 20.833vw;
  }

  .henne-doodle--grenade {
    width: 6.146vw;
    bottom: 27.778vh;
    right: 10.417vw;
  }

  .henne-doodle--hat {
    width: 5.417vw;
    bottom: 30.556vh;
    left: 10.417vw;
  }

  .henne-doodle--tapis {
    width: 9.375vw;
    bottom: 11.574vh;
    left: 52.083vw;
  }

  .henne-bg-flower {
    bottom: -9.259vh;
    right: 20.833vw;
  }
}

/* Desktop proportional layer: hero and landing entry */
@media (min-width: 1200px) {
  .hero-tray {
    width: 23.229vw;
    max-width: none;
  }

  .hero-photobooth {
    width: 12.813vw;
    max-width: none;
  }

  .hero-logo {
    bottom: 10.833vh;
    width: 25.729vw;
    max-width: none;
  }

  .landing-entry__monogram {
    width: 6.042vw;
    margin-bottom: 5.926vh;
  }

  .landing-entry__logo {
    width: 28.125vw;
  }

  .landing-entry__actions {
    width: 21.875vw;
    gap: 2.037vh;
    margin-top: 7.593vh;
  }

  .landing-entry__cta {
    min-height: 5.741vh;
    font-size: 1.354vw;
  }
}

/* Small desktop manual corrections from the 1920 reference */
@media (min-width: 1200px) and (max-width: 1919px) {
  .hero-love-row:nth-last-child(-n + 2) {
    display: none;
  }

  .mairie-polaroid--couple {
    left: calc(7.813vw - 85px);
  }

  .mairie-polaroid--proposal {
    left: calc(11.458vw - 100px);
  }

  .mairie-doodle--flower-hearts {
    left: calc(5.208vw - 70px);
  }

  .mairie-polaroid-text--elle {
    top: calc(43.519vh - 15px);
    left: calc(11.979vw - 100px);
  }

  .mairie-doodle--heart {
    left: calc(15.625vw - 100px);
  }

  .mairie-polaroid-text--yes {
    top: calc(70.37vh - 15px);
    left: calc(22.396vw - 115px);
  }

  .mairie-doodle--star {
    left: calc(29.688vw - 80px);
  }

  .mairie-doodle--bottle {
    left: calc(62.5vw + 120px);
  }

  .mairie-polaroid--bali {
    left: calc(74.479vw + 50px);
  }

  .ceremonie-title {
    font-size: clamp(74px, 5.469vw, 105px);
    white-space: nowrap;
  }

  .ceremonie-details {
    font-size: 20px;
  }

  .celebrate-polaroid {
    width: 17.708vw;
  }

  .infos-sticker {
    width: clamp(128px, 10.2vw, 187px);
  }

  .brunch-heart-bg {
    height: 101.25%;
  }

  .brunch-doodle--tartine {
    top: calc(13.889vh - 50px);
    width: 114px;
  }

  .brunch-details {
    font-size: clamp(20px, 1.6vw, 30px);
  }

  .henne-details {
    font-size: clamp(20px, 1.9vw, 30px);
  }
}

/* Mobile manual controls - edit here first
   This layer mirrors the current mobile values so mobile fixes stay isolated. */
@media (max-width: 767px) {
  /* Hero */
  .hero-love-pattern {
    top: 7%;
    transform: translate(-50%, -20px) rotate(-5deg);
    font-size: 28px;
  }

  .hero-tray,
  .hero-photobooth {
    top: 36%;
  }

  .hero-logo {
    bottom: 105px;
    width: 362px;
  }

  .hero-text {
    bottom: 20px;
  }

  /* Mairie */
  .mairie-doodle--flower-hearts {
    top: 130px;
    left: 5px;
  }

  .mairie-polaroid-text--elle {
    top: 150px;
    left: 60px;
  }

  .mairie-doodle--heart {
    top: 220px;
    left: 240px;
  }

  .mairie-polaroid-text--yes {
    top: 180px;
    left: 300px;
  }

  .mairie-doodle--star {
    top: 370px;
    left: 10px;
  }

  .mairie-doodle--bottle {
    top: 620px;
    left: 320px;
  }

  /* Ceremonie religieuse */
  .ceremonie-title {
    font-size: clamp(68px, 17vw, 140px);
  }

  .ceremonie-calendar {
    margin-top: 15px;
    width: min(100%, 1063px);
  }

  .ceremonie-details {
    top: 50%;
    transform: translate(-50%, calc(-50% + 15px));
    font-size: clamp(20px, 5.2vw, 40px);
  }

  .ceremonie-couple {
    bottom: 0;
    width: min(72vw, 520px);
  }

  /* Celebrate */
  .celebrate-polaroid {
    width: min(50.4vw, 297px);
  }

  .celebrate-text--date {
    top: calc(50% - 250px);
  }

  .celebrate-text--celebrate {
    top: calc(50% - 185px);
  }

  .celebrate-text--with-us {
    bottom: 100px;
  }

  /* Informations complementaires */
  .infos-card__content {
    font-size: clamp(13px, 3.1vw, 17px);
  }

  .infos-sticker {
    width: clamp(118px, 32vw, 178px);
  }

  /* Brunch */
  .brunch-heart-bg {
    left: 5px;
    height: 67.5%;
  }

  .brunch-polaroid {
    width: min(50.4vw, 297px);
  }

  .brunch-polaroid--femme {
    top: 100px;
    left: 0;
  }

  .brunch-polaroid--duo {
    bottom: 15px;
    left: 25px;
  }

  .brunch-polaroid--man {
    right: 25px;
    bottom: 100px;
  }

  .brunch-doodle--bread {
    left: 220px;
    top: 190px;
  }

  .brunch-doodle--butter {
    left: 140px;
    top: 290px;
  }

  .brunch-doodle--cheese-platter {
    left: 275px;
    top: 790px;
  }

  .brunch-doodle--madeleine {
    left: 75px;
    top: 650px;
  }

  .brunch-doodle--orange {
    left: 100px;
    top: 550px;
  }

  .brunch-doodle--pancake {
    left: 75px;
    top: 25px;
  }

  .brunch-doodle--tartine {
    left: 300px;
    top: 25px;
  }

  .brunch-doodle--coffee {
    left: 175px;
    top: 600px;
  }

  .brunch-copy {
    right: clamp(24px, 8vw, 150px);
    transform: translateY(calc(-50% - 50px));
  }

  .brunch-details {
    font-size: clamp(26px, 6.5vw, 40px);
  }

  /* Henne */
  .henne-bg-flower {
    top: 50%;
    right: -100px;
  }

  .henne-details {
    font-size: clamp(20px, 5.2vw, 40px);
  }

  .henne-polaroid--desert {
    left: 50px;
    bottom: 50px;
  }

  .henne-polaroid--smile {
    top: 50px;
    right: 50px;
  }

  .henne-doodle--eye-1 {
    top: 250px;
    right: 50px;
  }

  .henne-doodle--eye-2 {
    top: 75px;
    left: 150px;
  }

  .henne-doodle--flower {
    top: 250px;
    left: 75px;
  }

  .henne-doodle--grenade {
    bottom: 250px;
    right: 100px;
  }

  .henne-doodle--hat {
    bottom: 235px;
    left: 150px;
  }

  .henne-doodle--tapis {
    bottom: 50px;
    left: 300px;
    right: 50px;
  }
}

/* Mobile manual corrections - pass 1 */
@media (max-width: 767px) {
  /* Mairie */
  .mairie-card__details {
    font-size: clamp(12.5px, 3.25vw, 25px);
  }

  .mairie-polaroid-text--elle {
    top: 180px;
  }

  .mairie-polaroid-text--yes {
    top: 225px;
  }

  .mairie-doodle--star {
    top: 405px;
  }

  .mairie-doodle--bottle {
    top: 740px;
    left: 420px;
  }

  /* Ceremonie religieuse */
  .ceremonie-calendar {
    margin-top: -10px;
  }

  .ceremonie-details {
    font-size: clamp(12.5px, 3.25vw, 25px);
  }

  .ceremonie-couple {
    width: min(61.2vw, 442px);
  }

  /* Celebrate */
  .celebrate-polaroid {
    top: calc(50% + 50px);
  }

  .celebrate-text--with-us {
    bottom: 50px;
  }

  /* Informations complementaires */
  .infos-sticker--dog-2 {
    bottom: calc(clamp(-22px, -4vw, -10px) - 50px);
  }

  /* Brunch */
  .brunch-details {
    font-size: clamp(16.25px, 4.063vw, 25px);
  }

  .brunch-date-line {
    white-space: nowrap;
  }

  .brunch-doodle--madeleine {
    left: 25px;
    top: 725px;
  }

  .brunch-doodle--cheese-platter {
    left: 350px;
    top: 740px;
  }

  .brunch-doodle--coffee {
    top: 550px;
  }

  .brunch-doodle--butter {
    left: 40px;
    top: 310px;
  }

  .brunch-doodle--bread {
    top: 140px;
  }

  /* Henne */
  .henne-details {
    font-size: clamp(12.5px, 3.25vw, 25px);
  }

  .henne-doodle--eye-1,
  .henne-doodle--eye-2 {
    width: clamp(46px, 12.75vw, 73px);
  }

  .henne-doodle--flower {
    width: clamp(53px, 14.45vw, 82px);
  }

  .henne-doodle--grenade {
    width: clamp(48px, 13.6vw, 77px);
  }

  .henne-doodle--hat {
    width: clamp(41px, 11.5vw, 66px);
  }

  .henne-doodle--tapis {
    width: clamp(73px, 20.4vw, 117px);
  }
}

/* Mobile manual corrections - pass 2 */
@media (max-width: 767px) {
  .ceremonie-details {
    transform: translate(-50%, calc(-50% + 40px));
  }

  .ceremonie-couple {
    width: min(67.32vw, 486px);
  }

  .brunch-polaroid {
    width: min(50.4vw, 297px);
  }

  .henne-doodle--hat {
    bottom: 245px;
    left: 175px;
  }
}

/* Mobile manual corrections - pass 3 */
@media (max-width: 767px) {
  .henne-doodle--hat {
    bottom: 260px;
    left: 165px;
  }

  .brunch-polaroid--femme {
    top: 75px;
  }

  .brunch-copy {
    transform: translateY(calc(-50% - 75px));
  }

  .brunch-doodle--bread {
    top: 115px;
  }

  .brunch-doodle--pancake {
    top: 0;
  }

  .brunch-doodle--tartine {
    top: 0;
  }
}

/* Tablet manual controls - edit here first
   This layer mirrors the current tablet values so tablet fixes stay isolated. */
@media (min-width: 768px) and (max-width: 1199px) {
  /* Hero */
  .hero-love-pattern {
    min-width: 288vw;
    font-size: 46px;
    transform: translate(-50%, 10px) rotate(-5deg);
  }

  .hero-tray,
  .hero-photobooth {
    top: 33%;
  }

  .hero-tray {
    width: 94.427vw;
    max-width: 594px;
    transform: translate(-50%, calc(-50% + 70px)) rotate(-13deg);
  }

  .hero-photobooth {
    width: 57.132vw;
    max-width: 328px;
    transform: translate(-50%, calc(-50% + 70px)) rotate(-8deg);
  }

  .hero-logo {
    bottom: 132px;
    width: clamp(445px, 38.76vw, 593px);
    max-width: 59.28vw;
  }

  /* Mairie */
  .mairie-section {
    height: 100dvh;
    min-height: 100dvh;
    background-size: 400px 400px;
  }

  .mairie-section__inner {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 100%;
    padding: 0 48px;
  }

  .mairie-card {
    top: 50%;
    left: 50%;
    width: min(72vw, 720px);
    max-height: calc(100dvh - 112px);
    transform: translate(-50%, -50%);
  }

  .mairie-polaroid {
    width: min(35vw, 369px);
  }

  .mairie-polaroid--couple {
    top: calc(50% - 475px);
    left: calc(50% - 340px);
  }

  .mairie-polaroid--proposal {
    top: calc(50% - 475px);
    left: calc(50% - 45px);
    right: auto;
  }

  .mairie-polaroid--bali {
    bottom: -16px;
    left: 50%;
  }

  .mairie-doodle--flower-hearts {
    top: 220px;
    left: 160px;
    width: 94px;
  }

  .mairie-polaroid-text--elle {
    top: 300px;
    left: 270px;
    width: 115px;
  }

  .mairie-doodle--heart {
    top: 300px;
    left: 570px;
    width: 72px;
  }

  .mairie-polaroid-text--yes {
    top: 250px;
    left: 700px;
    width: 101px;
  }

  .mairie-doodle--star {
    top: 350px;
    left: 120px;
    width: 72px;
  }

  .mairie-doodle--bottle {
    top: 64.4dvh;
    left: 74.4vw;
    width: 97px;
  }

  /* Ceremonie religieuse */
  .ceremonie-calendar {
    width: min(67.46vw, 836px);
    margin-top: -30px;
  }

  .ceremonie-details {
    transform: translate(-50%, calc(-50% + 90px));
  }

  /* Celebrate */
  .celebrate-polaroid {
    width: min(35vw, 369px);
  }

  .celebrate-text--date {
    top: calc(50% - 330px);
    width: min(20vw, 190px);
  }

  .celebrate-text--celebrate {
    top: 290px;
    width: min(70vw, 620px);
  }

  .celebrate-text--side {
    width: min(25vw, 250px);
  }

  .celebrate-text--side-left {
    left: 50px;
  }

  .celebrate-text--side-right {
    right: 50px;
  }

  .celebrate-text--with-us {
    top: calc(50% + 270px);
    width: min(52vw, 480px);
  }

  /* Informations complementaires */
  .infos-section,
  .infos-section__inner {
    min-height: 75dvh;
  }

  .infos-section__inner {
    gap: 120px;
    padding: 0 clamp(48px, 7vw, 110px);
  }

  .infos-card {
    width: min(40vw, 650px);
    aspect-ratio: 720 / 1328;
  }

  .infos-title {
    width: min(24vw, 330px);
  }

  .infos-sticker {
    width: clamp(130px, 14vw, 190px);
  }

  .infos-card__content {
    padding: 58px 34px;
    font-size: clamp(11px, 1.35vw, 15px);
    line-height: 1.08;
  }

  /* Brunch */
  .brunch-heart-bg {
    right: -100px;
  }

  .brunch-polaroid {
    width: min(35vw, 369px);
  }

  .brunch-polaroid--femme {
    top: 100px;
    left: 50px;
  }

  .brunch-polaroid--duo {
    bottom: 40px;
    left: 170px;
  }

  .brunch-polaroid--man {
    right: 170px;
    bottom: 90px;
  }

  .brunch-doodle--bread {
    left: 450px;
    top: 200px;
  }

  .brunch-doodle--butter {
    left: 275px;
    top: 425px;
  }

  .brunch-doodle--cheese-platter {
    left: 600px;
    top: 1200px;
  }

  .brunch-doodle--madeleine {
    left: 250px;
    top: 900px;
  }

  .brunch-doodle--orange {
    left: 150px;
    top: 700px;
  }

  .brunch-doodle--pancake {
    left: 200px;
    top: 50px;
  }

  .brunch-doodle--tartine {
    left: 700px;
    top: 75px;
  }

  .brunch-doodle--coffee {
    left: 450px;
    top: 850px;
  }

  .brunch-date-line {
    white-space: nowrap;
    font-size: 0.92em;
  }

  /* Henne */
  .henne-bg-flower {
    top: calc(50% + 100px);
  }

  .henne-doodle--eye-1 {
    width: 104px;
    top: 300px;
    right: 50px;
  }

  .henne-doodle--eye-2 {
    width: 104px;
    top: 100px;
    left: 600px;
  }

  .henne-doodle--flower {
    width: 118px;
    top: 300px;
    left: 450px;
  }

  .henne-doodle--grenade {
    width: 110px;
    bottom: 300px;
    right: 100px;
  }

  .henne-doodle--hat {
    width: 96px;
    bottom: 350px;
    left: 215px;
  }

  .henne-doodle--tapis {
    width: 168px;
    bottom: 100px;
    left: 500px;
    right: 0;
  }
}

/* Tablet manual corrections - pass 1 */
@media (min-width: 768px) and (max-width: 1199px) {
  .infos-title--come {
    transform: translate(-50%, calc(-48% - 20px));
  }

  .infos-card--come .infos-card__content {
    transform: translateY(10px);
  }

  .brunch-details__intro {
    font-size: 0.525em;
  }
}

/* RSVP base styles */
.rsvp-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #541017;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
}

.rsvp-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(28px, 7vw, 80px) 18px;
  background-color: #541017;
  background-image: url('assets/fond-rayure.svg');
  background-repeat: repeat;
  background-size: 420px 437px;
}

.rsvp-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.rsvp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(26px, 7vw, 58px);
  color: #f9f3df;
  text-align: center;
}

.rsvp-monogram {
  width: clamp(52px, 15vw, 96px);
  height: auto;
  margin-bottom: clamp(24px, 6vw, 42px);
}

.rsvp-logo {
  width: min(78vw, 440px);
  height: auto;
  margin-bottom: clamp(34px, 8vw, 58px);
}

.rsvp-kicker {
  margin: 0 0 10px;
  font-size: clamp(18px, 5vw, 26px);
  line-height: 1;
}

.rsvp-title {
  margin: 0;
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(64px, 17vw, 138px);
  font-weight: normal;
  line-height: 0.78;
}

.rsvp-intro {
  width: min(100%, 650px);
  margin: clamp(26px, 7vw, 46px) auto 0;
  font-size: clamp(17px, 4.3vw, 25px);
  line-height: 1.18;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 5vw, 34px);
}

.rsvp-card,
.rsvp-success {
  position: relative;
  border: 2px solid #541017;
  outline: 1px solid #541017;
  outline-offset: -12px;
  background: #f9f3df;
  padding: clamp(34px, 8vw, 58px) clamp(24px, 6vw, 52px);
}

.rsvp-card-title,
.rsvp-success h2 {
  margin: 0 0 clamp(20px, 5vw, 34px);
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(54px, 14vw, 98px);
  font-weight: normal;
  line-height: 0.82;
  text-align: center;
}

.rsvp-question {
  margin: 0 0 16px;
  font-size: clamp(21px, 5.4vw, 34px);
  line-height: 1.06;
  text-align: center;
}

.rsvp-grid {
  display: grid;
  gap: 16px;
}

.rsvp-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(18px, 4.4vw, 25px);
  line-height: 1.05;
}

.rsvp-field input,
.rsvp-field textarea {
  width: 100%;
  border: 1.5px solid #541017;
  border-radius: 0;
  background: rgba(249, 243, 223, 0.62);
  color: #541017;
  font: inherit;
  line-height: 1.15;
  padding: 13px 14px;
  appearance: none;
}

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

.rsvp-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.rsvp-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1.5px solid #541017;
  color: #541017;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1;
  cursor: pointer;
}

.rsvp-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rsvp-choice:has(input:checked) {
  background: #541017;
  color: #f9f3df;
}

.rsvp-conditional {
  margin-top: clamp(22px, 5vw, 34px);
}

.rsvp-number-field {
  width: min(100%, 360px);
  margin: 0 auto clamp(20px, 5vw, 32px);
  text-align: center;
}

.rsvp-guests {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rsvp-guest {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(84, 16, 23, 0.34);
  padding: 18px;
}

.rsvp-guest legend {
  padding: 0 8px;
  font-size: clamp(17px, 4.2vw, 24px);
}

.rsvp-error,
.rsvp-form-error {
  min-height: 1.1em;
  color: #8b1420;
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.1;
}

.rsvp-submit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0 0;
}

.rsvp-submit,
.rsvp-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1.5px solid #f9f3df;
  border-radius: 999px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 15px 30px;
  cursor: pointer;
}

.rsvp-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.rsvp-success {
  color: #541017;
  text-align: center;
}

.rsvp-success p {
  margin: 0 auto clamp(24px, 6vw, 42px);
  width: min(100%, 560px);
  font-size: clamp(19px, 4.7vw, 28px);
  line-height: 1.14;
}

.rsvp-success .rsvp-info-link {
  border-color: #541017;
}

.rsvp-hidden-field,
[hidden] {
  display: none !important;
}

@media (min-width: 768px) {
  .rsvp-page {
    padding-right: clamp(54px, 7vw, 110px);
    padding-left: clamp(54px, 7vw, 110px);
  }

  .rsvp-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rsvp-card,
  .rsvp-success {
    outline-offset: -16px;
  }
}

@media (min-width: 1200px) {
  .rsvp-shell {
    width: min(72vw, 1040px);
  }

  .rsvp-logo {
    width: 420px;
  }

  .rsvp-card,
  .rsvp-success {
    padding: 62px 70px;
  }
}

/* RSVP complete mobile - screen 1 personal information */
@media (max-width: 767px) {
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal {
    background: #541017;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-page {
    min-height: 100dvh;
    padding: 34px 24px 44px;
    background: #541017;
    background-image: none;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-shell {
    min-height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-header {
    margin: 0 0 22px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-monogram {
    width: 82px;
    margin: 0 auto 28px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-logo,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-kicker,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-title,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-intro,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-events,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-notes,
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-submit-area {
    display: none;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-form {
    flex: 1;
    justify-content: flex-start;
    gap: 0;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-card-title {
    margin: 0 0 34px;
    color: #f9f3df;
    font-family: 'Visco Doubt', cursive;
    font-size: clamp(72px, 23vw, 100pt);
    font-weight: normal;
    line-height: 0.85;
    text-align: center;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-field {
    gap: 0;
    color: transparent;
    font-size: 0;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-field input {
    min-height: 62px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(30px, 9.3vw, 40pt);
    line-height: 1;
    text-align: left;
    padding: 10px 24px 14px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-field input::placeholder {
    color: #541017;
    opacity: 1;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-error {
    display: block;
    min-height: 18px;
    margin: 6px 24px 0;
    color: #f9f3df;
    font-size: 14px;
    line-height: 1;
  }

  .rsvp-next-area {
    display: none;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-next-area {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-next {
    min-width: 218px;
    min-height: 66px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(44px, 13.9vw, 60pt);
    line-height: 1;
    padding: 4px 34px 12px;
  }
}


/* RSVP complete mobile - screen 1 sizing pass 2 */
@media (max-width: 767px) {
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-card-title {
    margin-bottom: 26px;
    font-size: clamp(36px, 11.5vw, 50pt);
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-grid {
    gap: 14px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-field input {
    min-height: 31px;
    font-size: clamp(15px, 4.65vw, 20pt);
    padding: 6px 18px 8px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-next-area {
    margin-top: 32px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-next {
    width: min(78vw, 360px);
    min-height: 54px;
    font-size: clamp(18px, 4.9vw, 24px);
    padding: 13px 24px 15px;
  }
}


/* RSVP complete mobile - screen 1 sizing pass 3 */
@media (max-width: 767px) {
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-monogram {
    width: 123px;
  }

  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-field input {
    font-size: clamp(11.25px, 3.49vw, 15pt);
  }
}


/* RSVP complete mobile - screen 1 title line fix */
@media (max-width: 767px) {
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-card-title {
    font-size: clamp(28px, 8.4vw, 38pt);
    white-space: nowrap;
  }
}


/* RSVP complete mobile - screen 1 fields vertical position */
@media (max-width: 767px) {
  .rsvp-body[data-rsvp-code="fmjs10"].rsvp-step-personal .rsvp-contact .rsvp-grid {
    margin-top: 50px;
  }
}


/* RSVP all versions mobile - screen 1 */
@media (max-width: 767px) {
  .rsvp-body.rsvp-step-personal {
    background: #541017;
  }

  .rsvp-body.rsvp-step-personal .rsvp-page {
    min-height: 100dvh;
    padding: 34px 24px 44px;
    background: #541017;
    background-image: none;
  }

  .rsvp-body.rsvp-step-personal .rsvp-shell {
    min-height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
  }

  .rsvp-body.rsvp-step-personal .rsvp-header {
    margin: 0 0 22px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-monogram {
    width: 123px;
    margin: 0 auto 28px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-logo,
  .rsvp-body.rsvp-step-personal .rsvp-kicker,
  .rsvp-body.rsvp-step-personal .rsvp-title,
  .rsvp-body.rsvp-step-personal .rsvp-intro,
  .rsvp-body.rsvp-step-personal .rsvp-events,
  .rsvp-body.rsvp-step-personal .rsvp-notes,
  .rsvp-body.rsvp-step-personal .rsvp-submit-area {
    display: none;
  }

  .rsvp-body.rsvp-step-personal .rsvp-form {
    flex: 1;
    justify-content: flex-start;
    gap: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-card-title {
    margin: 0 0 26px;
    color: #f9f3df;
    font-family: 'Visco Doubt', cursive;
    font-size: clamp(28px, 8.4vw, 38pt);
    font-weight: normal;
    line-height: 0.85;
    text-align: center;
    white-space: nowrap;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 50px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field {
    gap: 0;
    color: transparent;
    font-size: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field input {
    min-height: 31px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(11.25px, 3.49vw, 15pt);
    line-height: 1;
    text-align: left;
    padding: 6px 18px 8px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field input::placeholder {
    color: #541017;
    opacity: 1;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-error {
    display: block;
    min-height: 18px;
    margin: 6px 24px 0;
    color: #f9f3df;
    font-size: 14px;
    line-height: 1;
  }

  .rsvp-next-area {
    display: none;
  }

  .rsvp-body.rsvp-step-personal .rsvp-next-area {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-next {
    width: min(78vw, 360px);
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(18px, 4.9vw, 24px);
    line-height: 1;
    padding: 13px 24px 15px;
  }
}


/* RSVP all versions tablet/desktop - screen 1 */
@media (min-width: 768px) {
  .rsvp-body.rsvp-step-personal {
    background: #541017;
  }

  .rsvp-body.rsvp-step-personal .rsvp-page {
    min-height: 100dvh;
    padding: clamp(54px, 7vw, 86px) clamp(54px, 8vw, 140px);
    background: #541017;
    background-image: none;
  }

  .rsvp-body.rsvp-step-personal .rsvp-shell {
    min-height: calc(100dvh - 108px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: min(100%, 980px);
  }

  .rsvp-body.rsvp-step-personal .rsvp-header {
    margin: 0 0 34px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-monogram {
    width: clamp(118px, 10vw, 160px);
    margin: 0 auto 42px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-logo,
  .rsvp-body.rsvp-step-personal .rsvp-kicker,
  .rsvp-body.rsvp-step-personal .rsvp-title,
  .rsvp-body.rsvp-step-personal .rsvp-intro,
  .rsvp-body.rsvp-step-personal .rsvp-events,
  .rsvp-body.rsvp-step-personal .rsvp-notes,
  .rsvp-body.rsvp-step-personal .rsvp-submit-area {
    display: none;
  }

  .rsvp-body.rsvp-step-personal .rsvp-form {
    flex: 1;
    justify-content: flex-start;
    gap: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-card-title {
    margin: 0 0 44px;
    color: #f9f3df;
    font-family: 'Visco Doubt', cursive;
    font-size: clamp(56px, 7vw, 90px);
    font-weight: normal;
    line-height: 0.86;
    text-align: center;
    white-space: nowrap;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 50px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field {
    gap: 0;
    color: transparent;
    font-size: 0;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field input {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1;
    text-align: left;
    padding: 10px 24px 14px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field input::placeholder {
    color: #541017;
    opacity: 1;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-error {
    display: block;
    min-height: 18px;
    margin: 6px 24px 0;
    color: #f9f3df;
    font-size: 14px;
    line-height: 1;
  }

  .rsvp-body.rsvp-step-personal .rsvp-next-area {
    display: flex;
    justify-content: center;
    margin-top: 46px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-next {
    width: min(42vw, 420px);
    min-height: 62px;
    border: 0;
    border-radius: 999px;
    background: #f9f3df;
    color: #541017;
    font-family: 'Malibu Sunday', serif;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1;
    padding: 14px 28px 17px;
  }
}


/* RSVP tablet/desktop - field width pass 1 */
@media (min-width: 768px) {
  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-grid,
  .rsvp-body.rsvp-step-personal .rsvp-next-area {
    width: 90%;
    align-self: center;
  }
}


/* RSVP tablet/desktop - field thickness pass 1 */
@media (min-width: 768px) {
  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-grid,
  .rsvp-body.rsvp-step-personal .rsvp-next-area {
    width: auto;
    align-self: stretch;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-field input {
    min-height: 49px;
    padding-top: 8px;
    padding-bottom: 12px;
  }
}


/* RSVP tablet/desktop - screen 1 no-scroll pass */
@media (min-width: 768px) {
  .rsvp-body.rsvp-step-personal .rsvp-page {
    padding-top: clamp(30px, 4vw, 54px);
    padding-bottom: clamp(28px, 4vw, 52px);
  }

  .rsvp-body.rsvp-step-personal .rsvp-shell {
    min-height: calc(100dvh - 82px);
  }

  .rsvp-body.rsvp-step-personal .rsvp-header {
    margin-bottom: 18px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-monogram {
    margin-bottom: 28px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-card-title {
    margin-bottom: 28px;
    font-size: clamp(42px, 5.25vw, 68px);
  }

  .rsvp-body.rsvp-step-personal .rsvp-contact .rsvp-grid {
    margin-top: 24px;
    gap: 18px 28px;
  }

  .rsvp-body.rsvp-step-personal .rsvp-next-area {
    margin-top: 28px;
  }
}


/* RSVP all versions - screen 2 mairie */
.rsvp-step-actions {
  display: none;
}

.rsvp-body.rsvp-step-mairie {
  background: #541017;
}

.rsvp-body.rsvp-step-mairie .rsvp-page {
  min-height: 100dvh;
  padding: 34px 24px 44px;
  background: #541017;
  background-image: none;
}

.rsvp-body.rsvp-step-mairie .rsvp-shell {
  min-height: calc(100dvh - 78px);
  display: flex;
  flex-direction: column;
}

.rsvp-body.rsvp-step-mairie .rsvp-header {
  margin: 0 0 22px;
}

.rsvp-body.rsvp-step-mairie .rsvp-monogram {
  width: 123px;
  margin: 0 auto 28px;
}

.rsvp-body.rsvp-step-mairie .rsvp-logo,
.rsvp-body.rsvp-step-mairie .rsvp-kicker,
.rsvp-body.rsvp-step-mairie .rsvp-title,
.rsvp-body.rsvp-step-mairie .rsvp-intro,
.rsvp-body.rsvp-step-mairie .rsvp-contact,
.rsvp-body.rsvp-step-mairie .rsvp-notes,
.rsvp-body.rsvp-step-mairie .rsvp-submit-area,
.rsvp-body.rsvp-step-mairie .rsvp-event:not([data-rsvp-event="mairie"]) {
  display: none;
}

.rsvp-body.rsvp-step-mairie .rsvp-events {
  display: block;
}

.rsvp-body.rsvp-step-mairie .rsvp-event[data-rsvp-event="mairie"] {
  display: flex;
  flex-direction: column;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  color: #f9f3df;
}

.rsvp-body.rsvp-step-mairie .rsvp-event[data-rsvp-event="mairie"] .rsvp-card-title {
  margin: 0 0 42px;
  color: #f9f3df;
  font-family: 'Visco Doubt', cursive;
  font-size: clamp(44px, 13vw, 58px);
  font-weight: normal;
  line-height: 0.88;
  text-align: center;
}

.rsvp-body.rsvp-step-mairie .rsvp-question {
  margin: 0 0 18px;
  color: #f9f3df;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1;
  text-align: center;
}

.rsvp-body.rsvp-step-mairie .rsvp-choices {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 22px;
}

.rsvp-body.rsvp-step-mairie .rsvp-choice {
  min-height: auto;
  border: 0;
  color: #f9f3df;
  background: transparent;
  font-size: clamp(22px, 6vw, 30px);
  gap: 9px;
}

.rsvp-body.rsvp-step-mairie .rsvp-choice input {
  position: static;
  width: 18px;
  height: 18px;
  opacity: 1;
  pointer-events: auto;
  appearance: none;
  border: 1.5px solid #f9f3df;
  border-radius: 50%;
  background: transparent;
}

.rsvp-body.rsvp-step-mairie .rsvp-choice input:checked {
  box-shadow: inset 0 0 0 4px #541017;
  background: #f9f3df;
}

.rsvp-body.rsvp-step-mairie .rsvp-choice:has(input:checked) {
  color: #f9f3df;
  background: transparent;
}

.rsvp-body.rsvp-step-mairie .rsvp-companion-intro {
  margin-top: 10px;
  margin-bottom: 18px;
}

.rsvp-body.rsvp-step-mairie .rsvp-number-field,
.rsvp-body.rsvp-step-mairie .rsvp-guest legend {
  display: none;
}

.rsvp-body.rsvp-step-mairie .rsvp-guest {
  border: 0;
  padding: 0;
}

.rsvp-body.rsvp-step-mairie .rsvp-guest .rsvp-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rsvp-body.rsvp-step-mairie .rsvp-field {
  gap: 0;
  color: transparent;
  font-size: 0;
}

.rsvp-body.rsvp-step-mairie .rsvp-field input {
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(11.25px, 3.49vw, 15pt);
  line-height: 1;
  text-align: left;
  padding: 6px 18px 8px;
}

.rsvp-body.rsvp-step-mairie .rsvp-field input::placeholder {
  color: #541017;
  opacity: 1;
}

.rsvp-body.rsvp-step-mairie .rsvp-error {
  display: block;
  min-height: 18px;
  margin: 6px 24px 0;
  color: #f9f3df;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.rsvp-body.rsvp-step-mairie .rsvp-step-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.rsvp-body.rsvp-step-mairie .rsvp-event-next,
.rsvp-body.rsvp-step-mairie .rsvp-event-back {
  width: min(78vw, 360px);
  min-height: 54px;
  border-radius: 999px;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1;
  padding: 13px 24px 15px;
}

.rsvp-body.rsvp-step-mairie .rsvp-event-next {
  border: 0;
  background: #f9f3df;
  color: #541017;
}

.rsvp-body.rsvp-step-mairie .rsvp-event-back {
  border: 1.5px solid #f9f3df;
  background: #541017;
  color: #f9f3df;
}

@media (min-width: 768px) {
  .rsvp-body.rsvp-step-mairie .rsvp-page {
    padding: 46px 40px 50px;
  }

  .rsvp-body.rsvp-step-mairie .rsvp-monogram {
    width: 138px;
    margin-bottom: 32px;
  }

  .rsvp-body.rsvp-step-mairie .rsvp-event[data-rsvp-event="mairie"] {
    width: min(760px, 78vw);
    margin: 0 auto;
  }

  .rsvp-body.rsvp-step-mairie .rsvp-event[data-rsvp-event="mairie"] .rsvp-card-title {
    font-size: clamp(56px, 7vw, 86px);
  }

  .rsvp-body.rsvp-step-mairie .rsvp-question {
    font-size: clamp(28px, 3.4vw, 40px);
  }

  .rsvp-body.rsvp-step-mairie .rsvp-guest .rsvp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* RSVP all versions - screens 3 to 5 */
.rsvp-body.rsvp-step-ceremonie,
.rsvp-body.rsvp-step-brunch,
.rsvp-body.rsvp-step-henne {
  background: #541017;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-page,
.rsvp-body.rsvp-step-brunch .rsvp-page,
.rsvp-body.rsvp-step-henne .rsvp-page {
  min-height: 100dvh;
  padding: 34px 24px 44px;
  background: #541017;
  background-image: none;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-shell,
.rsvp-body.rsvp-step-brunch .rsvp-shell,
.rsvp-body.rsvp-step-henne .rsvp-shell {
  min-height: calc(100dvh - 78px);
  display: flex;
  flex-direction: column;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-header,
.rsvp-body.rsvp-step-brunch .rsvp-header,
.rsvp-body.rsvp-step-henne .rsvp-header {
  margin: 0 0 22px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-monogram,
.rsvp-body.rsvp-step-brunch .rsvp-monogram,
.rsvp-body.rsvp-step-henne .rsvp-monogram {
  width: 123px;
  margin: 0 auto 28px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-logo,
.rsvp-body.rsvp-step-ceremonie .rsvp-kicker,
.rsvp-body.rsvp-step-ceremonie .rsvp-title,
.rsvp-body.rsvp-step-ceremonie .rsvp-intro,
.rsvp-body.rsvp-step-ceremonie .rsvp-contact,
.rsvp-body.rsvp-step-ceremonie .rsvp-notes,
.rsvp-body.rsvp-step-ceremonie .rsvp-submit-area,
.rsvp-body.rsvp-step-ceremonie .rsvp-event:not([data-rsvp-event="ceremonie_religieuse"]),
.rsvp-body.rsvp-step-brunch .rsvp-logo,
.rsvp-body.rsvp-step-brunch .rsvp-kicker,
.rsvp-body.rsvp-step-brunch .rsvp-title,
.rsvp-body.rsvp-step-brunch .rsvp-intro,
.rsvp-body.rsvp-step-brunch .rsvp-contact,
.rsvp-body.rsvp-step-brunch .rsvp-notes,
.rsvp-body.rsvp-step-brunch .rsvp-submit-area,
.rsvp-body.rsvp-step-brunch .rsvp-event:not([data-rsvp-event="brunch"]),
.rsvp-body.rsvp-step-henne .rsvp-logo,
.rsvp-body.rsvp-step-henne .rsvp-kicker,
.rsvp-body.rsvp-step-henne .rsvp-title,
.rsvp-body.rsvp-step-henne .rsvp-intro,
.rsvp-body.rsvp-step-henne .rsvp-contact,
.rsvp-body.rsvp-step-henne .rsvp-notes,
.rsvp-body.rsvp-step-henne .rsvp-submit-area,
.rsvp-body.rsvp-step-henne .rsvp-event:not([data-rsvp-event="henne"]) {
  display: none;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-events,
.rsvp-body.rsvp-step-brunch .rsvp-events,
.rsvp-body.rsvp-step-henne .rsvp-events {
  display: block;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-event[data-rsvp-event="ceremonie_religieuse"],
.rsvp-body.rsvp-step-brunch .rsvp-event[data-rsvp-event="brunch"],
.rsvp-body.rsvp-step-henne .rsvp-event[data-rsvp-event="henne"] {
  display: flex;
  flex-direction: column;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  color: #f9f3df;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-card-title,
.rsvp-body.rsvp-step-brunch .rsvp-card-title,
.rsvp-body.rsvp-step-henne .rsvp-card-title {
  margin: 0 0 42px;
  color: #f9f3df;
  font-family: 'Visco Doubt', cursive;
  font-size: clamp(38px, 10.8vw, 50px);
  font-weight: normal;
  line-height: 0.88;
  text-align: center;
}

.rsvp-body.rsvp-step-brunch .rsvp-card-title,
.rsvp-body.rsvp-step-henne .rsvp-card-title {
  font-size: clamp(44px, 13vw, 58px);
}

.rsvp-body.rsvp-step-ceremonie .rsvp-question,
.rsvp-body.rsvp-step-brunch .rsvp-question,
.rsvp-body.rsvp-step-henne .rsvp-question {
  margin: 0 0 18px;
  color: #f9f3df;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1;
  text-align: center;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-choices,
.rsvp-body.rsvp-step-brunch .rsvp-choices,
.rsvp-body.rsvp-step-henne .rsvp-choices {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 22px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-choice,
.rsvp-body.rsvp-step-brunch .rsvp-choice,
.rsvp-body.rsvp-step-henne .rsvp-choice {
  min-height: auto;
  border: 0;
  color: #f9f3df;
  background: transparent;
  font-size: clamp(22px, 6vw, 30px);
  gap: 9px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-choice input,
.rsvp-body.rsvp-step-brunch .rsvp-choice input,
.rsvp-body.rsvp-step-henne .rsvp-choice input {
  position: static;
  width: 18px;
  height: 18px;
  opacity: 1;
  pointer-events: auto;
  appearance: none;
  border: 1.5px solid #f9f3df;
  border-radius: 50%;
  background: transparent;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-choice input:checked,
.rsvp-body.rsvp-step-brunch .rsvp-choice input:checked,
.rsvp-body.rsvp-step-henne .rsvp-choice input:checked {
  box-shadow: inset 0 0 0 4px #541017;
  background: #f9f3df;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-choice:has(input:checked),
.rsvp-body.rsvp-step-brunch .rsvp-choice:has(input:checked),
.rsvp-body.rsvp-step-henne .rsvp-choice:has(input:checked) {
  color: #f9f3df;
  background: transparent;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-companion-intro,
.rsvp-body.rsvp-step-brunch .rsvp-companion-intro,
.rsvp-body.rsvp-step-henne .rsvp-companion-intro {
  margin-top: 10px;
  margin-bottom: 18px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-number-field,
.rsvp-body.rsvp-step-ceremonie .rsvp-guest legend,
.rsvp-body.rsvp-step-brunch .rsvp-number-field,
.rsvp-body.rsvp-step-brunch .rsvp-guest legend,
.rsvp-body.rsvp-step-henne .rsvp-number-field,
.rsvp-body.rsvp-step-henne .rsvp-guest legend {
  display: none;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-guest,
.rsvp-body.rsvp-step-brunch .rsvp-guest,
.rsvp-body.rsvp-step-henne .rsvp-guest {
  border: 0;
  padding: 0;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-guest .rsvp-grid,
.rsvp-body.rsvp-step-brunch .rsvp-guest .rsvp-grid,
.rsvp-body.rsvp-step-henne .rsvp-guest .rsvp-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-field,
.rsvp-body.rsvp-step-brunch .rsvp-field,
.rsvp-body.rsvp-step-henne .rsvp-field {
  gap: 0;
  color: transparent;
  font-size: 0;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-field input,
.rsvp-body.rsvp-step-brunch .rsvp-field input,
.rsvp-body.rsvp-step-henne .rsvp-field input {
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(11.25px, 3.49vw, 15pt);
  line-height: 1;
  text-align: left;
  padding: 6px 18px 8px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-field input::placeholder,
.rsvp-body.rsvp-step-brunch .rsvp-field input::placeholder,
.rsvp-body.rsvp-step-henne .rsvp-field input::placeholder {
  color: #541017;
  opacity: 1;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-error,
.rsvp-body.rsvp-step-brunch .rsvp-error,
.rsvp-body.rsvp-step-henne .rsvp-error {
  display: block;
  min-height: 18px;
  margin: 6px 24px 0;
  color: #f9f3df;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-step-actions,
.rsvp-body.rsvp-step-brunch .rsvp-step-actions,
.rsvp-body.rsvp-step-henne .rsvp-step-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-event-next,
.rsvp-body.rsvp-step-ceremonie .rsvp-event-back,
.rsvp-body.rsvp-step-brunch .rsvp-event-next,
.rsvp-body.rsvp-step-brunch .rsvp-event-back,
.rsvp-body.rsvp-step-henne .rsvp-event-next,
.rsvp-body.rsvp-step-henne .rsvp-event-back {
  width: min(78vw, 360px);
  min-height: 54px;
  border-radius: 999px;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1;
  padding: 13px 24px 15px;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-event-next,
.rsvp-body.rsvp-step-brunch .rsvp-event-next,
.rsvp-body.rsvp-step-henne .rsvp-event-next {
  border: 0;
  background: #f9f3df;
  color: #541017;
}

.rsvp-body.rsvp-step-ceremonie .rsvp-event-back,
.rsvp-body.rsvp-step-brunch .rsvp-event-back,
.rsvp-body.rsvp-step-henne .rsvp-event-back {
  border: 1.5px solid #f9f3df;
  background: #541017;
  color: #f9f3df;
}

@media (min-width: 768px) {
  .rsvp-body.rsvp-step-ceremonie .rsvp-page,
  .rsvp-body.rsvp-step-brunch .rsvp-page,
  .rsvp-body.rsvp-step-henne .rsvp-page {
    padding: 46px 40px 50px;
  }

  .rsvp-body.rsvp-step-ceremonie .rsvp-monogram,
  .rsvp-body.rsvp-step-brunch .rsvp-monogram,
  .rsvp-body.rsvp-step-henne .rsvp-monogram {
    width: 138px;
    margin-bottom: 32px;
  }

  .rsvp-body.rsvp-step-ceremonie .rsvp-event[data-rsvp-event="ceremonie_religieuse"],
  .rsvp-body.rsvp-step-brunch .rsvp-event[data-rsvp-event="brunch"],
  .rsvp-body.rsvp-step-henne .rsvp-event[data-rsvp-event="henne"] {
    width: min(760px, 78vw);
    margin: 0 auto;
  }

  .rsvp-body.rsvp-step-ceremonie .rsvp-card-title,
  .rsvp-body.rsvp-step-brunch .rsvp-card-title,
  .rsvp-body.rsvp-step-henne .rsvp-card-title {
    font-size: clamp(52px, 6vw, 78px);
  }

  .rsvp-body.rsvp-step-brunch .rsvp-card-title,
  .rsvp-body.rsvp-step-henne .rsvp-card-title {
    font-size: clamp(56px, 7vw, 86px);
  }

  .rsvp-body.rsvp-step-ceremonie .rsvp-question,
  .rsvp-body.rsvp-step-brunch .rsvp-question,
  .rsvp-body.rsvp-step-henne .rsvp-question {
    font-size: clamp(28px, 3.4vw, 40px);
  }

  .rsvp-body.rsvp-step-ceremonie .rsvp-guest .rsvp-grid,
  .rsvp-body.rsvp-step-brunch .rsvp-guest .rsvp-grid,
  .rsvp-body.rsvp-step-henne .rsvp-guest .rsvp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* RSVP details step - answered event screens */
.rsvp-body.rsvp-step-details .rsvp-events {
  display: none;
}


/* RSVP message step */
.rsvp-body.rsvp-step-details {
  background: #541017;
}

.rsvp-body.rsvp-step-details .rsvp-page {
  min-height: 100dvh;
  padding: 34px 24px 44px;
  background: #541017;
  background-image: none;
}

.rsvp-body.rsvp-step-details .rsvp-shell {
  min-height: calc(100dvh - 78px);
  display: flex;
  flex-direction: column;
}

.rsvp-body.rsvp-step-details .rsvp-header {
  margin: 0 0 22px;
}

.rsvp-body.rsvp-step-details .rsvp-monogram {
  width: 123px;
  margin: 0 auto 28px;
}

.rsvp-body.rsvp-step-details .rsvp-logo,
.rsvp-body.rsvp-step-details .rsvp-kicker,
.rsvp-body.rsvp-step-details .rsvp-title,
.rsvp-body.rsvp-step-details .rsvp-intro,
.rsvp-body.rsvp-step-details .rsvp-contact {
  display: none;
}

.rsvp-body.rsvp-step-details .rsvp-notes {
  display: flex;
  flex-direction: column;
  width: min(92vw, 720px);
  margin: 0 auto;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  color: #f9f3df;
}

.rsvp-body.rsvp-step-details .rsvp-notes .rsvp-card-title {
  margin: 0 0 34px;
  color: #f9f3df;
  font-family: 'Visco Doubt', cursive;
  font-size: clamp(34px, 9.2vw, 48px);
  font-weight: normal;
  line-height: 0.92;
  text-align: center;
}

.rsvp-body.rsvp-step-details .rsvp-message-field {
  gap: 0;
  color: transparent;
  font-size: 0;
}

.rsvp-body.rsvp-step-details .rsvp-message-field textarea {
  width: 100%;
  min-height: 124px;
  border: 0;
  border-radius: 24px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(16px, 4.2vw, 21px);
  line-height: 1.15;
  text-align: center;
  padding: 22px 24px;
  resize: vertical;
}

.rsvp-body.rsvp-step-details .rsvp-message-field textarea::placeholder {
  color: #541017;
  opacity: 1;
}

.rsvp-body.rsvp-step-details .rsvp-submit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.rsvp-body.rsvp-step-details .rsvp-submit,
.rsvp-body.rsvp-step-details .rsvp-details-back {
  width: min(78vw, 360px);
  min-height: 54px;
  border-radius: 999px;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1;
  padding: 13px 24px 15px;
}

.rsvp-body.rsvp-step-details .rsvp-submit {
  border: 0;
  background: #f9f3df;
  color: #541017;
}

.rsvp-body.rsvp-step-details .rsvp-details-back {
  border: 1.5px solid #f9f3df;
  background: #541017;
  color: #f9f3df;
}

@media (min-width: 768px) {
  .rsvp-body.rsvp-step-details .rsvp-page {
    padding: 46px 40px 50px;
  }

  .rsvp-body.rsvp-step-details .rsvp-monogram {
    width: 138px;
    margin-bottom: 32px;
  }

  .rsvp-body.rsvp-step-details .rsvp-notes {
    width: min(78vw, 860px);
  }

  .rsvp-body.rsvp-step-details .rsvp-notes .rsvp-card-title {
    font-size: clamp(48px, 5.5vw, 76px);
  }

  .rsvp-body.rsvp-step-details .rsvp-message-field textarea {
    min-height: 156px;
    font-size: clamp(20px, 2vw, 26px);
  }
}


/* RSVP success screen */
.rsvp-success[hidden] {
  display: none;
}

.rsvp-body:has(.rsvp-success:not([hidden])) {
  background: #541017;
}

.rsvp-body:has(.rsvp-success:not([hidden])) .rsvp-page {
  min-height: 100dvh;
  padding: 34px 24px 44px;
  background: #541017;
  background-image: none;
}

.rsvp-body:has(.rsvp-success:not([hidden])) .rsvp-shell {
  min-height: calc(100dvh - 78px);
  display: flex;
  flex-direction: column;
}

.rsvp-success:not([hidden]) {
  display: flex;
  flex: 1;
  width: min(92vw, 720px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f9f3df;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rsvp-success::before {
  content: "";
  display: block;
  width: 123px;
  aspect-ratio: 1;
  margin: 0 auto 32px;
  background: url("assets/logo-monogramme-loading-page-cream.svg") center / contain no-repeat;
}

.rsvp-success h2 {
  margin: 0 0 28px;
  color: #f9f3df;
  font-family: 'Visco Doubt', cursive;
  font-size: clamp(54px, 16vw, 76px);
  font-weight: normal;
  line-height: 0.9;
}

.rsvp-success p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #f9f3df;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(24px, 6.4vw, 34px);
  line-height: 1.05;
}

.rsvp-success .rsvp-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(78vw, 360px);
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(18px, 4.9vw, 24px);
  line-height: 1;
  text-decoration: none;
  padding: 13px 24px 15px;
}

@media (min-width: 768px) {
  .rsvp-body:has(.rsvp-success:not([hidden])) .rsvp-page {
    padding: 46px 40px 50px;
  }

  .rsvp-success::before {
    width: 138px;
    margin-bottom: 36px;
  }

  .rsvp-success h2 {
    font-size: clamp(72px, 7vw, 104px);
  }

  .rsvp-success p {
    font-size: clamp(30px, 3vw, 42px);
  }
}


/* Mobile polaroid size harmonization */
@media (max-width: 767px) {
  .mairie-polaroid,
  .celebrate-polaroid,
  .brunch-polaroid,
  .henne-polaroid {
    width: min(42.84vw, 252.45px) !important;
  }
}


/* Final RSVP CTA section */
.final-rsvp-section {
  min-height: 58vh;
  min-height: 58dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 14vw, 150px) 24px;
  background: #541017;
  color: #f9f3df;
  text-align: center;
}

.final-rsvp-section__inner {
  width: min(88vw, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-rsvp-section__title {
  margin: 0 0 clamp(38px, 8vw, 72px);
  color: #f9f3df;
  font-family: 'Malibu Sunday Script', cursive;
  font-size: clamp(58px, 15vw, 126px);
  font-weight: normal;
  line-height: 0.82;
}

.final-rsvp-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(78vw, 390px);
  min-height: 56px;
  border: 1.5px solid #f9f3df;
  border-radius: 999px;
  background: #f9f3df;
  color: #541017;
  font-family: 'Malibu Sunday', serif;
  font-size: clamp(19px, 5vw, 26px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 14px 26px 16px;
}

@media (min-width: 768px) {
  .final-rsvp-section {
    min-height: 64vh;
    min-height: 64dvh;
  }

  .final-rsvp-section__title {
    font-size: clamp(86px, 9vw, 152px);
  }

  .final-rsvp-section__button {
    width: 430px;
    min-height: 62px;
    font-size: 27px;
  }
}


/* Final RSVP CTA button sizing */
.final-rsvp-section__button {
  width: min(39vw, 195px);
  min-height: 28px;
  font-size: clamp(9.5px, 2.5vw, 13px);
  padding: 7px 13px 8px;
}

@media (min-width: 768px) {
  .final-rsvp-section__button {
    width: 215px;
    min-height: 31px;
    font-size: 13.5px;
  }
}


/* Final RSVP CTA button sizing plus 25 */
.final-rsvp-section__button {
  width: min(48.75vw, 243.75px);
  min-height: 35px;
  font-size: clamp(11.875px, 3.125vw, 16.25px);
  padding: 8.75px 16.25px 10px;
}

@media (min-width: 768px) {
  .final-rsvp-section__button {
    width: 268.75px;
    min-height: 38.75px;
    font-size: 16.875px;
  }
}


/* RSVP success monogram dedupe */
.rsvp-success::before {
  display: none;
}


/* Mobile ceremonie height plus 100 */
@media (max-width: 767px) {
  .ceremonie-section,
  .ceremonie-section__inner {
    min-height: calc(100vh + 100px);
    min-height: calc(100dvh + 100px);
  }
}


/* Real phone mobile tuning */
@media (max-width: 767px) {
  .hero-love-row:nth-last-child(-n + 3) {
    display: none;
  }

  .hero-logo {
    width: 271.5px !important;
    max-width: 60.5vw !important;
  }

  .mairie-card__details {
    font-size: calc(clamp(12.5px, 3.25vw, 25px) + 3px) !important;
  }

  .ceremonie-details {
    font-size: calc(clamp(12.5px, 3.25vw, 25px) + 3px) !important;
  }

  .brunch-details {
    font-size: calc(clamp(26px, 6.5vw, 40px) + 3px) !important;
  }

  .henne-details {
    font-size: calc(clamp(20px, 5.2vw, 40px) + 3px) !important;
  }

  .infos-card__content {
    font-size: calc(clamp(13px, 3.1vw, 17px) + 3px) !important;
  }

  .ceremonie-couple {
    width: min(84.15vw, 607.5px) !important;
  }

  .mairie-polaroid,
  .celebrate-polaroid,
  .brunch-polaroid,
  .henne-polaroid {
    width: min(53.55vw, 315.56px) !important;
  }

  .mairie-doodle--bottle {
    left: calc(74.4vw - 100px) !important;
  }

  .ceremonie-section,
  .ceremonie-section__inner {
    min-height: calc(100vh + 50px) !important;
    min-height: calc(100dvh + 50px) !important;
  }

  .henne-doodle--grenade {
    bottom: 275px !important;
  }

  .henne-doodle--hat {
    bottom: 235px !important;
  }
}
