/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

:root {
  --deep: #080412;
  --dark: #110820;
  --purple: #3b0764;
  --mid: #6d28d9;
  --light: #a78bfa;
  --lavender: #ddd6fe;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #faf5ff;
  --pink: #b5347a;
  --pink-light: #e065b8;
  --amber: #c2691a;

  --font-cinzel: 'Cinzel', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-playfair: 'Playfair Display', serif;
  --font-dancing: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  background: transparent;
  color: var(--cream);
  font-family: var(--font-cormorant), serif;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.star {
  position: absolute; border-radius: 50%;
  background: var(--lavender);
  animation: twinkle var(--d, 3s) ease-in-out infinite;
  opacity: 0;
}
@keyframes twinkle {
  0%,100% { opacity: 0; transform: scale(.5); }
  50% { opacity: .9; transform: scale(1.3); }
}

/* ─── Hero ─────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
  padding: 0 1.5rem 5rem;
  overflow: hidden;
}

/* String lights */
.lights-row {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 72px; pointer-events: none;
}
.lights-string {
  position: absolute;
  top: 0; left: -2%; right: -2%;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(201,168,76,.35) 15%, rgba(201,168,76,.45) 50%, rgba(201,168,76,.35) 85%, transparent 100%);
}
.light-bulb {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.light-cord {
  width: 1px;
  background: rgba(201,168,76,.4);
}
.light-globe {
  width: 11px; height: 14px;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  animation: bulb-glow var(--d, 2.4s) ease-in-out infinite;
}
@keyframes bulb-glow {
  0%,100% { opacity: .65; box-shadow: 0 0 5px rgba(249,168,37,.55), 0 0 10px rgba(249,168,37,.25); }
  50%      { opacity: 1;   box-shadow: 0 0 9px rgba(249,168,37,.9),  0 0 20px rgba(249,168,37,.45); }
}

/* Brand */
.brand-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 5.5rem; margin-bottom: .2rem;
  animation: fadeDown .9s ease both;
}
.brand-script {
  font-family: var(--font-dancing), cursive;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: .03em;
  filter: drop-shadow(0 0 18px rgba(232,201,106,.28));
}
.brand-bold {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(3.8rem, 13vw, 9.5rem);
  font-weight: 700;
  line-height: .88;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 50%, #a0702a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .1em;
  text-transform: uppercase;
  filter: drop-shadow(0 0 22px rgba(201,168,76,.2));
}
.vous-propose {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(.75rem, 1.8vw, 1rem);
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-top: .8rem; margin-bottom: 1.8rem;
  animation: fadeDown .9s .12s ease both;
}

/* Ribbon */
.ribbon-wrap {
  width: min(520px, 90vw);
  margin: 0 auto 1.4rem;
  animation: fadeDown .9s .22s ease both;
  position: relative;
}
.ribbon {
  background: linear-gradient(100deg, #7c1d5e 0%, #c84b8a 35%, #e065b8 55%, #c84b8a 75%, #7c1d5e 100%);
  color: #fff;
  font-family: var(--font-cinzel), serif;
  font-size: clamp(1rem, 2.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: .8rem 3rem;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0,0,0,.45);
  clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
  box-shadow: 0 0 30px rgba(200,75,138,.35);
}

/* Location */
.lieu {
  font-family: var(--font-playfair), serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: var(--lavender);
  margin-bottom: 1.8rem;
  animation: fadeDown .9s .32s ease both;
}

/* Big discovery tagline */
.big-tagline {
  margin: 0 0 1.4rem;
  text-align: center;
  line-height: 1.15;
  animation: fadeUp .9s .4s ease both;
}
.venez {
  font-family: var(--font-dancing), cursive;
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--pink-light);
  font-weight: 700;
  line-height: 1;
  display: inline;
}
.decouvrir {
  font-family: var(--font-cormorant), serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #fff;
  display: inline;
  padding-left: .4rem;
}
.notre {
  font-family: var(--font-cormorant), serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--lavender);
  display: inline;
  padding-right: .3rem;
}
.nouveau {
  font-family: var(--font-cormorant), serif;
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 4rem);
  color: var(--pink-light);
  display: inline;
}
.rayon {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  display: inline;
  padding-left: .2rem;
}

/* Tagline */
.sens-tagline {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 2.2rem;
  animation: fadeUp .9s .5s ease both;
}

/* Dividers */
.hr {
  display: flex; align-items: center; gap: 1rem;
  max-width: 380px; margin: 0 auto;
}
.hr::before, .hr::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.hr span { color: var(--gold); font-size: 1.1rem; }

/* Event info */
.event-info-row {
  display: flex; align-items: center;
  gap: 1.8rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: .8rem;
  animation: fadeUp .9s .58s ease both;
}
.event-pill {
  background: rgba(59,7,100,.55);
  border: 1px solid rgba(201,168,76,.38);
  border-radius: 12px;
  padding: 1rem 2rem;
  text-align: center;
}
.event-date {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.event-time { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--lavender); margin-top: .3rem; font-family: var(--font-cinzel), serif; }
.price-badge {
  width: 96px; height: 96px;
  background: radial-gradient(circle at 40% 35%, #7c3aed, #3b0764);
  border: 2px solid rgba(201,168,76,.5);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(109,40,217,.55), 0 0 40px rgba(109,40,217,.2);
  flex-shrink: 0;
}
.price-num {
  font-family: var(--font-cinzel), serif;
  font-size: 1.65rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.price-num sup { font-size: .7rem; vertical-align: super; }
.price-for, .price-per {
  font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lavender);
  line-height: 1.4;
}
.reservation-note {
  font-family: var(--font-cormorant), serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(221,214,254,.45);
  margin-bottom: 1.5rem;
  animation: fadeUp .9s .64s ease both;
}

/* Countdown */
.countdown {
  display: flex; gap: 1rem;
  margin: 2rem auto 0;
  animation: fadeUp .9s .7s ease both;
}
.cd-item {
  background: rgba(109,40,217,.12);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  min-width: 78px;
  text-align: center;
}
.cd-num {
  font-family: var(--font-cinzel), serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block; line-height: 1;
}
.cd-lbl {
  font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lavender);
  margin-top: .4rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold); opacity: .5; font-size: 1.6rem;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(9px); }
}

/* ─── About ────────────────────────────────── */
.about {
  position: relative; z-index: 1;
  padding: 7rem 1.5rem;
}
.about-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.section-title {
  font-family: var(--font-cinzel), serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  margin: 1.5rem 0 1rem;
}
.section-body {
  color: var(--lavender);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
em.hi { color: #fff; font-style: italic; }

/* ─── Form ──────────────────────────────────── */
.form-wrap {
  position: relative; z-index: 1;
  padding: 5rem 1.5rem 7rem;
  background: linear-gradient(to bottom, transparent, rgba(59,7,100,.18), transparent);
}
.form-inner { max-width: 680px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 3rem; }
.form-intro p { color: var(--lavender); font-size: 1.05rem; }
.form-intro strong { color: var(--gold-light); }

.person-card {
  background: rgba(109,40,217,.07);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 14px;
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 1.8rem;
  position: relative; overflow: hidden;
}
.person-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.person-label {
  font-family: var(--font-cinzel), serif;
  font-size: .8rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.person-label::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,.25); }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.grid1 { margin-bottom: 1.1rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--lavender);
  margin-bottom: .4rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  background: rgba(210,170,255,.18);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 7px;
  padding: .8rem 1rem;
  color: #fff;
  font-family: var(--font-cormorant), serif;
  font-size: 1rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.field input::placeholder { color: rgba(221,214,254,.4); }
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,.1);
}
.field input.err { border-color: #f87171; }
.ferr { color: #f87171; font-size: .78rem; margin-top: .3rem; display: none; }
.ferr.show { display: block; }

.check-row {
  display: flex; align-items: flex-start; gap: .75rem;
  margin: 1.5rem 0 .5rem;
}
.check-row input[type="checkbox"] {
  width: 17px; height: 17px; margin-top: 4px;
  accent-color: var(--mid); cursor: pointer; flex-shrink: 0;
}
.check-row label {
  font-size: .92rem; letter-spacing: .02em;
  text-transform: none; color: var(--lavender);
  cursor: pointer; line-height: 1.5;
}

.btn-validate {
  display: block; width: 100%;
  padding: 1.15rem 2rem;
  background: linear-gradient(140deg, #3b0764, #6d28d9);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light);
  font-family: var(--font-cinzel), serif;
  font-size: .88rem; letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer; margin-top: 2rem;
  transition: box-shadow .35s, transform .25s;
  position: relative; overflow: hidden;
}
.btn-validate::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(201,168,76,.1), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-validate:hover::before { opacity: 1; }
.btn-validate:hover {
  box-shadow: 0 0 35px rgba(109,40,217,.45), 0 0 70px rgba(201,168,76,.08);
  transform: translateY(-2px);
}
.btn-validate:active { transform: translateY(0); }
.btn-validate:disabled { opacity: 0.45; pointer-events: none; }

.payment-panel {
  display: none; margin-top: 3rem; text-align: center;
  padding: 3rem 2rem;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 14px;
}
.payment-panel.show { display: block; animation: fadeUp .6s ease; }
.pay-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pay-title { font-family: var(--font-cinzel), serif; font-size: 1.4rem; color: var(--gold); margin-bottom: .5rem; }
.pay-amount { font-family: var(--font-playfair), serif; font-size: 3.5rem; color: #fff; margin: 1rem 0 .25rem; }
.pay-desc { color: var(--lavender); font-style: italic; margin-bottom: 2.5rem; }
.btn-stripe {
  display: inline-block; padding: 1.1rem 3.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 7px; color: var(--deep);
  font-family: var(--font-cinzel), serif;
  font-size: .88rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none;
  transition: box-shadow .3s, transform .25s; cursor: pointer;
}
.btn-stripe:hover { box-shadow: 0 0 35px rgba(201,168,76,.45); transform: translateY(-2px); }
.pay-secure { color: rgba(221,214,254,.35); font-size: .8rem; margin-top: 1.5rem; }

/* ─── Footer ────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,.1);
}
.footer-brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; margin-bottom: .6rem;
}
.footer-script {
  font-family: var(--font-dancing), cursive;
  font-size: 1.4rem; color: var(--gold); opacity: .7; line-height: 1.1;
}
.footer-bold {
  font-family: var(--font-cinzel), serif;
  font-size: 1.15rem; color: var(--gold); opacity: .7;
  letter-spacing: .15em; text-transform: uppercase; line-height: 1;
}
footer p { color: rgba(221,214,254,.35); font-size: .88rem; }

/* ─── Animations ────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 560px) {
  .grid2 { grid-template-columns: 1fr; }
  .countdown { gap: .55rem; }
  .cd-item { padding: .75rem .9rem; min-width: 65px; }
  .cd-num { font-size: 1.7rem; }
  .person-card { padding: 1.5rem 1.2rem; }
  .event-info-row { gap: 1.2rem; }
  .price-badge { width: 80px; height: 80px; }
  .price-num { font-size: 1.3rem; }
}
