/* =============================================================
   Marion & Antony — Editorial Wedding v4
   Direction : pierre + olivier + lumière dorée du Béarn
   + Effets éditoriaux type basketrunning.fr (marquees, section nums)
   Typos : Fraunces (variable) + Inter
   ============================================================= */

:root {
  /* Palette */
  --c-bg:         #f4ede0;
  --c-bg-warm:    #ebe1cf;
  --c-cream:      #faf5e9;
  --c-stone:      #c9a07a;
  --c-stone-dark: #7d5a3c;
  --c-olive:      #5a6b3f;
  --c-gold:       #b8924d;
  --c-ink:        #1f1814;
  --c-ink-soft:   #5a4d3e;
  --c-line:       rgba(31, 24, 20, 0.12);
  --c-line-light: rgba(31, 24, 20, 0.06);
  --c-error:      #b85650;

  --ff-display: 'Fraunces', 'Times New Roman', serif;
  --ff-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);

  --maxw: 1440px;
}

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============== Typo utilities ============== */
.caps {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.caps--gold { color: var(--c-gold); }

/* ============== Section numbers (basketrunning style) ============== */
.section-num {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  padding: 24px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  padding-left: 40px;
  background: var(--c-bg);
}
.section-num--light {
  background: transparent;
  border-color: rgba(244, 237, 224, 0.2);
  color: var(--c-gold);
  margin-bottom: 40px;
}
@media (max-width: 640px) { .section-num { padding-left: 20px; font-size: 0.64rem; } }

/* ============== Grain ============== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============== Loader ============== */
.loader {
  position: fixed; inset: 0;
  background: var(--c-ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity .8s var(--ease), visibility .8s;
}
body:not(.is-loading) .loader { opacity: 0; visibility: hidden; }
.loader__mark {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--c-cream);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  display: flex;
  gap: 0.3em;
  align-items: baseline;
}
.loader__mark span {
  opacity: 0;
  animation: loader-in 1s var(--ease) forwards;
}
.loader__mark span:nth-child(2) { animation-delay: .25s; }
.loader__mark span:nth-child(3) { animation-delay: .5s; }
.loader__amp {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
}
@keyframes loader-in { to { opacity: 1; } }
.loader__progress {
  width: 240px; height: 1px;
  background: rgba(244, 237, 224, 0.15);
}
.loader__bar {
  width: 0; height: 100%;
  background: var(--c-gold);
  animation: loader-bar 1.8s var(--ease-quart) forwards;
}
@keyframes loader-bar { to { width: 100%; } }

/* ============== Nav ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s, padding .4s, color .4s, border-color .4s;
  color: var(--c-cream);
  mix-blend-mode: difference;
}
.nav.is-scrolled {
  mix-blend-mode: normal;
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__amp {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 72, 'SOFT' 100, 'wght' 400;
}
.nav__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav__sep { opacity: 0.4; }
.nav__cta {
  border: 1px solid currentColor;
  padding: 8px 16px;
  transition: background .3s, color .3s;
  font-weight: 600;
}
.nav__cta:hover { background: currentColor; color: var(--c-bg); }
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 12px 20px; }
  .nav__meta > span:first-child, .nav__sep { display: none; }
}

/* ============== TICKERS / MARQUEES (style basketrunning) ============== */
.ticker {
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
}
.ticker--top {
  background: var(--c-ink);
  border-color: rgba(244, 237, 224, 0.15);
  color: var(--c-cream);
  position: relative;
  z-index: 99;
}
.ticker--alt {
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: rgba(244, 237, 224, 0.15);
  padding: 22px 0;
}
.ticker--accent {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: transparent;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker 50s linear infinite;
  will-change: transform;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 72, 'wght' 400;
}
.ticker--accent .ticker__track {
  font-weight: 600;
  font-variation-settings: 'opsz' 72, 'wght' 600;
}
.ticker__track > span { flex-shrink: 0; }
.ticker__star {
  color: var(--c-gold);
  font-size: 0.7em;
}
.ticker--accent .ticker__star { color: var(--c-ink); }
.ticker__dot {
  color: var(--c-gold);
  font-size: 0.4em;
  vertical-align: middle;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 40px 40px;
  color: var(--c-cream);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: ken-burns 18s var(--ease) both;
}
@keyframes ken-burns {
  0% { transform: scale(1.15) translate(0, 0); }
  100% { transform: scale(1.02) translate(-2%, -1%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 24, 20, 0.5) 0%, rgba(31, 24, 20, 0.15) 35%, rgba(31, 24, 20, 0.1) 55%, rgba(31, 24, 20, 0.75) 100%);
}
.hero__top, .hero__bottom, .hero__content { position: relative; z-index: 1; }
.hero__top, .hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.hero__top .caps, .hero__bottom .caps { color: rgba(244, 245, 233, 0.7); }

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2vh;
  max-width: 100%;
}
.hero__overline {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: var(--c-gold);
  margin: 0 0 24px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 17vw, 15rem);
  line-height: 0.88;
  margin: 0 0 40px;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.line { display: block; overflow: hidden; line-height: 0.88; }
.line__inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.line__inner.amp em {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
  display: inline-block;
  font-size: 0.7em;
}
.hero__amp-line .line__inner { padding-left: 0.4em; }

.hero__caption {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 720px;
  flex-wrap: wrap;
  margin: 0;
}
.hero__date {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-variation-settings: 'opsz' 72, 'wght' 300;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.02em;
}
.hero__day em {
  font-style: italic;
  color: var(--c-gold);
  font-size: 2.2em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
}
.hero__sep {
  font-size: 1.4rem;
  color: var(--c-gold);
  margin: 0;
  align-self: center;
}
.hero__where {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 8px 0 0;
  line-height: 1.6;
  color: rgba(244, 245, 233, 0.85);
}
@media (max-width: 640px) {
  .hero { padding: 80px 20px 24px; }
  .hero__title { margin-bottom: 24px; }
  .hero__caption { gap: 16px; }
  .hero__sep { display: none; }
}

.hero__scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  transition: color .3s, border-color .3s;
}
.hero__scroll-cta:hover { color: var(--c-gold); }
.hero__scroll-cta svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============== COUNTDOWN ============== */
.cd {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.cd > .section-num {
  background: var(--c-ink);
  border-color: rgba(244, 237, 224, 0.15);
  color: var(--c-gold);
}
.cd__inner {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.cd__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 146, 77, 0.15), transparent 60%);
  pointer-events: none;
}
.cd__big {
  position: relative;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin: 0 0 48px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-variation-settings: 'opsz' 144, 'wght' 300;
}
.cd__big-num {
  font-size: 1.8em;
  font-weight: 200;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'wght' 200;
  font-feature-settings: 'tnum';
  letter-spacing: -0.04em;
}
.cd__row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(8px, 2vw, 24px);
  flex-wrap: wrap;
  position: relative;
}
.cd__unit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cd__unit span {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 0.9;
  color: var(--c-cream);
  font-variation-settings: 'opsz' 144, 'wght' 200;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
}
.cd__unit small {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.5);
}
.cd__sep {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--c-gold);
  font-weight: 200;
  align-self: flex-start;
  margin-top: 0.2em;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
@media (max-width: 640px) { .cd__sep { display: none; } }
.cd__tag {
  position: relative;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  margin: 48px 0 0;
  font-variation-settings: 'opsz' 72, 'wght' 300;
}
.cd__tag em {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 72, 'SOFT' 100, 'wght' 400;
}

/* ============== Section : STORY ============== */
.story { padding: 100px 40px 140px; background: var(--c-bg); }
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .story { padding: 60px 24px 100px; }
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
}

.story__title, .program__title, .infos__title, .aerial__title, .rsvp__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  margin: 0 0 40px;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'wght' 300;
}
.story__title em, .program__title em, .infos__title em, .aerial__title em, .rsvp__title em {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
}

.story__body { max-width: 480px; }
.story__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-ink-soft);
  margin-bottom: 1.2em;
}
.story__body strong { color: var(--c-ink); font-weight: 500; }

.story__meta {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 140px;
  padding: 8px 32px 8px 0;
  position: relative;
}
.stat + .stat {
  border-left: 1px solid var(--c-line);
  padding-left: 32px;
}
.stat__bullet {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.stat strong {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--c-ink);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: 'tnum';
}
.stat__label {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: 12px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .stat + .stat { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid var(--c-line); margin-top: 20px; }
  .stat { padding-right: 0; }
}

/* CTA vers site du domaine */
.story__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: var(--c-ink);
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
  position: relative;
  overflow: hidden;
  min-width: 360px;
}
.story__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  transform: translateX(-101%);
  transition: transform .55s var(--ease);
}
.story__cta:hover { color: var(--c-cream); border-color: var(--c-ink); }
.story__cta:hover::before { transform: translateX(0); }
.story__cta-label { position: relative; display: flex; flex-direction: column; gap: 6px; }
.story__cta-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.story__cta:hover .story__cta-eyebrow { color: var(--c-gold); }
.story__cta-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  font-variation-settings: 'opsz' 72, 'wght' 400;
}
.story__cta-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .4s var(--ease);
}
.story__cta:hover .story__cta-arrow { transform: rotate(-45deg) translate(2px, -2px); }
@media (max-width: 600px) {
  .story__cta { min-width: 0; width: 100%; }
}

.story__figure { margin: 0; position: relative; overflow: hidden; }
.story__figure img {
  width: 100%;
  height: 70vh;
  max-height: 720px;
  object-fit: cover;
  will-change: transform;
}
.story__figure figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--c-cream);
  background: rgba(31, 24, 20, 0.6);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
}

/* ============== AERIAL (vue du ciel) ============== */
.aerial { padding: 100px 40px 140px; background: var(--c-bg-warm); }
.aerial__head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
}
.aerial__sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--c-ink-soft);
  max-width: 600px;
  margin: 0;
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'wght' 300;
}
.aerial__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.aerial__cell {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.aerial__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.aerial__cell:hover img { transform: scale(1.04); }
.aerial__cell--01 { grid-column: span 7; aspect-ratio: 16/10; }
.aerial__cell--02 { grid-column: span 5; aspect-ratio: 16/10; }
.aerial__cell--03 { grid-column: span 12; aspect-ratio: 21/9; }
.aerial__cell figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  background: rgba(31, 24, 20, 0.7);
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.aerial__cell figcaption .caps {
  color: var(--c-gold);
  font-size: 0.7rem;
}
@media (max-width: 900px) {
  .aerial { padding: 60px 24px 100px; }
  .aerial__grid { grid-template-columns: 1fr; gap: 16px; }
  .aerial__cell--01, .aerial__cell--02, .aerial__cell--03 { grid-column: 1 / -1; aspect-ratio: 4/3; }
}

/* ============== PROGRAM / Timeline ============== */
.program { padding: 100px 40px 140px; max-width: var(--maxw); margin: 0 auto; }
.program__head { margin-bottom: 80px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline__item {
  display: grid;
  grid-template-columns: 80px 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--c-line);
  transition: background .4s;
}
.timeline__item:last-child { border-bottom: 1px solid var(--c-line); }
.timeline__item:hover { background: rgba(184, 146, 77, 0.04); }
@media (max-width: 900px) {
  .program { padding: 60px 24px 100px; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 16px; padding: 32px 0; }
  .timeline__time { grid-column: 2; }
  .timeline__body { grid-column: 1 / -1; }
}
.timeline__index {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
  line-height: 1;
}
.timeline__time {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--c-ink);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.timeline__time small {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--c-gold);
}
.timeline__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.timeline__body p {
  margin: 0;
  font-size: 1rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  max-width: 540px;
}

/* ============== INFOS ============== */
.infos { padding: 100px 40px 140px; max-width: var(--maxw); margin: 0 auto; }
.infos__head { margin-bottom: 80px; }
.infos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .infos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .infos__grid { grid-template-columns: 1fr; } .infos { padding: 60px 24px 100px; } }

.info {
  padding: 40px 32px;
  background: var(--c-cream);
  border: 1px solid var(--c-line-light);
  transition: transform .6s var(--ease), border-color .4s;
  position: relative;
}
.info:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold);
}
.info__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.info h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--c-ink);
}
.info p {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.link-arrow span { transition: transform .3s; }
.link-arrow:hover span { transform: translateX(4px); }

/* ============== RSVP ============== */
.rsvp {
  padding: 100px 40px 140px;
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-cream);
}
.rsvp__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.7);
  z-index: 0;
}
.rsvp::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,24,20,0.4) 0%, rgba(31,24,20,0.92) 100%);
}
.rsvp__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.rsvp__title { text-align: center; color: var(--c-cream); }
.rsvp__sub {
  text-align: center;
  font-size: 1rem;
  color: rgba(244, 237, 224, 0.8);
  margin-bottom: 64px;
}

.form { display: flex; flex-direction: column; gap: 24px; }
.fs {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(244, 237, 224, 0.1);
  padding: 32px;
  margin: 0;
  transition: border-color .4s;
}
.fs:focus-within { border-color: rgba(184, 146, 77, 0.5); }
.fs legend {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-cream);
  padding: 0 8px;
  margin-left: -8px;
}
.fs__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold);
  font-variation-settings: 'opsz' 72, 'SOFT' 100, 'wght' 300;
}

.fs__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .fs__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field > span {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(244, 237, 224, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hint {
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.6);
  margin-bottom: 12px;
}
.field input, .field textarea {
  font-family: var(--ff-sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(244, 237, 224, 0.15);
  background: rgba(31, 24, 20, 0.4);
  color: var(--c-cream);
  transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(31, 24, 20, 0.7);
}
.field textarea { resize: vertical; min-height: 80px; }

.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
@media (max-width: 640px) { .radio-group { grid-template-columns: 1fr; } }
.rad { position: relative; }
.rad input { position: absolute; opacity: 0; pointer-events: none; }
.rad__inner {
  display: block;
  background: rgba(31, 24, 20, 0.4);
  border: 1px solid rgba(244, 237, 224, 0.15);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.rad__inner strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.rad__inner small { font-size: 0.78rem; color: rgba(244, 237, 224, 0.6); }
.rad input:checked + .rad__inner {
  border-color: var(--c-gold);
  background: rgba(184, 146, 77, 0.1);
}
.rad input:checked + .rad__inner strong { color: var(--c-gold); }

.check { display: flex; align-items: center; gap: 12px; padding: 6px 0; cursor: pointer; font-size: 0.95rem; }
.check input { width: 18px; height: 18px; accent-color: var(--c-gold); }
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 4px 16px;
  margin: 12px 0 20px;
}

.enfants { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 12px; }
.enfants .row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 8px;
  align-items: center;
}
.enfants input {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  padding: 10px 14px;
  border: 1px solid rgba(244, 237, 224, 0.15);
  background: rgba(31, 24, 20, 0.4);
  color: var(--c-cream);
}
.enfants button {
  background: transparent;
  border: 1px solid rgba(244, 237, 224, 0.15);
  color: var(--c-error);
  padding: 8px 14px;
  font-size: 1.1rem;
}
.btn-ghost {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(244, 237, 224, 0.2);
  color: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s;
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }

.form__conditional[hidden] { display: none !important; }

.form__submit { text-align: center; margin-top: 32px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  color: var(--c-ink);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease);
}
.btn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-cream);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn-cta > * { position: relative; z-index: 1; }
.btn-cta:hover::before { transform: translateY(0); }
.btn-cta svg { transition: transform .4s var(--ease); }
.btn-cta:hover svg { transform: translateX(4px); }
.btn-cta:disabled { opacity: 0.5; pointer-events: none; }

.form__feedback {
  margin-top: 24px;
  font-size: 0.95rem;
  min-height: 1.5em;
  font-family: var(--ff-display);
  font-style: italic;
  text-align: center;
}
.form__feedback.is-success { color: #c8e0b0; }
.form__feedback.is-error { color: #f0a59f; }

/* ============== FOOTER ============== */
.footer {
  text-align: center;
  padding: 100px 24px 60px;
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-line);
}
.footer__big {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 11vw, 8rem);
  font-weight: 200;
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'wght' 200;
}
.footer__amp {
  font-style: italic;
  color: var(--c-gold);
  font-size: 0.6em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 300;
}
.footer .caps { margin-bottom: 12px; }
.footer__contact { font-size: 0.9rem; color: var(--c-ink-soft); }
.footer__contact a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

/* ============== Reveal helpers ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
