:root {
  --wine:       #670036;
  --wine-dark:  #4d0028;
  --wine-deep:  #2e0018;
  --pink:       #e0257a;
  --cream:      #fdf6f0;
  --blush:      #ecc5c8;
  --peach:      #f5ddd0;
  --ink:        #2e0018;
  --white:      #fffdfb;
  --gold:       #c9a84c;
  --gold-light: #f5e9c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* Layered skin-tone / pink-wax CSS background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #f5ddd0;
  background-image:
    radial-gradient(ellipse 70% 60% at 28% 45%, rgba(240,194,175,.80) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 78% 18%, rgba(220,140,155,.55) 0%, transparent 55%),
    radial-gradient(ellipse 38% 38% at 88% 68%, rgba(224,37,122,.20) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 12% 82%, rgba(245,210,200,.65) 0%, transparent 60%),
    radial-gradient(ellipse 85% 85% at 50% 50%, rgba(241,218,208,.92) 0%, transparent 80%),
    var(--hero-photo, linear-gradient(135deg, #f5ddd0 0%, #f0ceca 35%, #e8c0c5 65%, #f2d5d0 100%));
  background-size: auto, auto, auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* When a custom photo is loaded, soften gradients slightly so photo shows through */
.hero-bg.has-photo {
  background-image:
    radial-gradient(ellipse 70% 60% at 28% 45%, rgba(240,194,175,.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 78% 18%, rgba(220,140,155,.38) 0%, transparent 55%),
    radial-gradient(ellipse 38% 38% at 88% 68%, rgba(224,37,122,.14) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 12% 82%, rgba(245,210,200,.45) 0%, transparent 60%),
    radial-gradient(ellipse 85% 85% at 50% 50%, rgba(241,218,208,.62) 0%, transparent 80%),
    var(--hero-photo);
}

/* Wax drip highlight — top right */
.hero-bg::before {
  content: "";
  position: absolute;
  top: -8%; right: 8%;
  width: clamp(80px, 12vw, 160px);
  height: clamp(220px, 40vh, 500px);
  background: linear-gradient(180deg, rgba(224,37,122,.50) 0%, rgba(224,37,122,.22) 60%, transparent 100%);
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
  filter: blur(20px);
}

/* Warm glow — lower left */
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 10%; left: -5%;
  width: clamp(160px, 30vw, 400px);
  height: clamp(160px, 30vw, 400px);
  background: radial-gradient(circle, rgba(240,190,170,.50) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(32px);
}

/* ── Two-column grid ── */
.content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: clamp(28px, 5vw, 76px);
  padding-bottom: clamp(130px, 16vw, 180px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

/* ── Left: frosted cream overlay ── */
.copy {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(253,246,240,.55);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
}

/* ── Typography ── */
.eyebrow {
  margin: 0 0 22px;
  color: var(--wine-dark);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: clamp(.72rem, 1.2vw, .88rem);
  font-weight: 600;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--wine);
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9.5vw, 8.8rem);
  line-height: .78;
  letter-spacing: -.065em;
  font-weight: 700;
}

h1 .title-main { display: block; }

h1 .script-title {
  display: block;
  margin-top: .14em;
  font-family: 'Great Vibes', "Brush Script MT", cursive;
  font-size: .60em;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .9;
  color: var(--pink);
}

/* ── Depilève badge ── */
.dep-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(14px, 2vw, 22px);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(201,168,76,.10);
  border: 1px solid rgba(201,168,76,.45);
  width: fit-content;
}
.dep-logo-pill {
  background: var(--pink);
  border-radius: 999px;
  padding: 2px 9px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -.01em;
}
.dep-badge-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a6615;
}

/* ── Date + info card ── */
.details {
  margin-top: clamp(28px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: flex-start;
}

.date {
  color: var(--wine-dark);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: .02em;
}

.info-card {
  min-width: min(100%, 260px);
  padding: 16px 20px;
  border: 1.5px solid rgba(201,168,76,.40);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
  box-shadow: 0 8px 24px rgba(74,25,42,.10), inset 0 0 0 1px rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  color: var(--wine-dark);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
}
.contact-row:first-child { margin-top: 0; }

.icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--wine);
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(103,0,54,.22);
}

.contact-row a { color: inherit; text-decoration: none; white-space: nowrap; }

/* ── What you'll learn ── */
.learn {
  margin-top: clamp(18px, 2.8vw, 32px);
}
.learn-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 10px;
}
.learn-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(.82rem, 1.2vw, .93rem);
  color: var(--wine-dark);
  line-height: 1.45;
}
.learn-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Seats urgency ── */
.seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: clamp(14px, 2.2vw, 24px);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(103,0,54,.08);
  border: 1px solid rgba(103,0,54,.20);
  font-size: .8rem;
  font-weight: 700;
  color: var(--wine);
  width: fit-content;
}

/* ── CTA card (right form panel) ── */
.cta-card {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 420px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(77,0,40,.97), rgba(46,0,24,.99));
  box-shadow: 0 24px 60px rgba(46,0,24,.35);
}

.mini-line {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .75;
}

.cta-card h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
}

.form-lede { margin: 0 0 22px; line-height: 1.55; opacity: .88; font-size: .92rem; }

.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block;
  margin-bottom: 6px;
  font-size: .83rem;
  letter-spacing: .04em;
  opacity: .92;
}
.field em { font-style: normal; opacity: .68; }

.field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder { color: rgba(255,255,255,.48); }
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.18);
}

.field .error {
  display: none;
  margin-top: 6px;
  color: #ffd9e6;
  font-size: .82rem;
}
.field.invalid input { border-color: #ff9cc0; background: rgba(255,60,120,.14); }
.field.invalid .error { display: block; }

/* Gold reserve button */
.button {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--wine-deep);
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.4); }
.button:disabled { opacity: .75; cursor: default; transform: none; }

.button .spinner {
  display: none;
  width: 20px; height: 20px;
  border: 3px solid var(--wine-deep);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.button.loading .btn-label { display: none; }
.button.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.privacy { margin: 14px 0 0; font-size: .78rem; line-height: 1.5; opacity: .68; }

/* Thank-you state */
.thanks { text-align: left; }
.thanks-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 1.7rem;
  font-weight: 800;
}
.thanks-name { margin: 0 0 6px; font-weight: 700; opacity: .95; }
.thanks-step { margin: 8px 0 0; line-height: 1.55; opacity: .92; }

.bank-box {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}
.bank-title { margin: 0 0 8px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; opacity: .78; }
.bank-details { margin: 0; line-height: 1.6; font-size: .95rem; }

.button.whatsapp {
  margin: 6px 0 0;
  background: #25D366;
  color: #063d1d;
}

/* Error banner */
.form-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,60,120,.18);
  border: 1px solid #ff9cc0;
  color: #ffe3ec;
  line-height: 1.5;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  max-width: 90vw;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--wine-dark);
  color: var(--white);
  font-size: .92rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 50;
}

/* ── Brand footer strip ── */
.brand {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(28px, 5vw, 76px);
  background: rgba(46,0,24,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.18);
}

.qb-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201,168,76,.45);
  border-radius: 50% 50% 44% 44%;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,.90);
}

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  line-height: 1;
}
.brand-name small {
  display: block;
  margin-top: 3px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: .52rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.brand-divider {
  width: 1px; height: 30px;
  background: rgba(201,168,76,.22);
  flex-shrink: 0;
}

.dep-wordmark {
  font-family: 'Inter', Arial, sans-serif;
  font-size: .88rem;
  font-weight: 800;
  font-style: italic;
  color: var(--pink);
  background: #fff;
  border-radius: 8px;
  padding: 3px 10px;
  letter-spacing: -.02em;
  line-height: 1.4;
}
.dep-wordmark sup { font-size: .5rem; vertical-align: super; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .content {
    grid-template-columns: 1fr;
    align-content: center;
    padding-bottom: 100px;
  }
  .copy { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(253,246,240,.70); }
  .cta-card { justify-self: start; width: min(100%, 500px); }
  h1 { font-size: clamp(4rem, 16vw, 7rem); }
}
@media (max-width: 520px) {
  .content { padding: 28px 20px 100px; }
  .eyebrow { letter-spacing: .2em; }
  .details { margin-top: 28px; }
  .info-card { width: 100%; }
}
