/* ═══════════════════════════════════════════════════════
   LAUNCH EVENT, Pre-Launch Landing Page
   Stil: Höchstleister-Designsprache mit hell/dunkel-Wechsel
   ═══════════════════════════════════════════════════════ */

.phone-scroll {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Bleed-Hero: kein Top-Padding hier, Clearance lebt auf .le-hero__inner */
  padding: 0 0 var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: rgba(184,148,79,0.4) transparent;
}
.phone-scroll::-webkit-scrollbar { width: 4px; }
.phone-scroll::-webkit-scrollbar-track { background: transparent; }
.phone-scroll::-webkit-scrollbar-thumb { background: rgba(184,148,79,0.4); border-radius: 2px; }

.le-page + footer,
.phone-scroll > footer {
  background: var(--le-ink-deep);
}

/* ─── Page Wrapper mit lokalen Tokens ─── */
.le-page {
  --le-paper: #FAF7F0;
  --le-ink-paper: #17191A;
  --le-ink-60: rgba(23, 25, 26, 0.62);
  --le-ink-deep: #0E1011;
  --le-ink-warm: #1F2422;
  --le-cream: var(--c-white);
  --le-cream-60: rgba(255, 255, 255, 0.62);
  --le-line: rgba(184, 148, 79, 0.28);
  --le-line-soft: rgba(184, 148, 79, 0.14);
  --le-gold-deep: #7A6341;

  font-family: var(--font-body);
  color: var(--le-cream);
  font-size: 0.88rem;
  line-height: 1.6;
}

.le-page h1, .le-page h2, .le-page h3, .le-page h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.le-page em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}

.le-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-block;
}
.le-label--light { color: var(--le-gold-deep); }

.le-section-lead {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1.18;
  margin: var(--space-md) 0 var(--space-xl);
  font-weight: 300;
}
.le-section-lead em { color: var(--c-gold); font-style: italic; font-weight: 400; }

/* ─── HERO ─── */
.le-hero {
  position: relative;
  padding: 0 24px 32px;
  overflow: hidden;
  background: var(--le-ink-deep);
}
.le-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/mp-lounge-and-work.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.85);
  z-index: 0;
}
.le-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,16,17,0.4) 0%, rgba(14,16,17,0.05) 30%, rgba(14,16,17,0.55) 65%, rgba(14,16,17,0.95) 100%),
    radial-gradient(circle at 30% 25%, rgba(184,148,79,0.1), transparent 50%);
}
.le-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-clearance);
  text-align: center;
}
.le-hero__brand {
  padding: 0 0 28px;
}
.le-hero__logo {
  width: clamp(95px, 28vw, 140px);
  height: auto;
  display: inline-block;
}
.le-hero__date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--le-line);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.le-hero__date-badge svg {
  width: 14px; height: 14px;
  stroke: var(--c-gold);
  stroke-width: 1.6;
  fill: none;
}
.le-hero__title {
  color: var(--c-white);
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 300;
}
.le-hero__title em {
  display: block;
  font-size: 2rem;
  color: var(--c-gold);
  margin-top: 6px;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 400;
}
.le-hero__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto 16px;
}

/* Stacked CTA, Hauptzeile + kleine Subzeile (für den Voucher-Hinweis) */
.le-btn-primary--stacked {
  flex-direction: column;
  gap: 3px;
  padding: 14px 24px;
  min-height: auto;
  line-height: 1.3;
}
.le-btn-primary__main {
  font-size: 0.92rem;
  font-weight: 500;
}
.le-btn-primary__sub {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.88;
}

.le-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  background: var(--c-gold);
  color: var(--c-dark);
  border: none;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  min-height: 52px;
}
.le-btn-primary:hover { background: var(--c-gold-light); }
.le-btn-primary svg {
  width: 16px; height: 16px;
  stroke: var(--c-dark);
  stroke-width: 1.8;
  fill: none;
}

.le-hero__quickrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.le-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-white);
  padding: 13px 10px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
}
.le-btn-ghost svg {
  width: 14px; height: 14px;
  stroke: var(--c-gold);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

/* ─── TEASER (hell) ─── */
.le-teaser {
  background: var(--le-paper);
  color: var(--le-ink-paper);
  padding: 64px var(--space-md) 56px;
}
.le-teaser__body {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--le-ink-paper);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.le-teaser__body em {
  font-style: italic;
  color: var(--le-gold-deep);
  font-weight: 400;
}
.le-teaser__body + .le-teaser__body {
  margin-top: 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--le-ink-60);
  line-height: 1.6;
  font-weight: 300;
}
.le-teaser__cta {
  margin-top: var(--space-xl);
}
.le-teaser .le-section-lead { color: var(--le-ink-paper); }
.le-teaser .le-section-lead em { color: var(--le-gold-deep); }

/* ─── PROGRAMM / SCHEDULE (dunkel) ─── */
.le-schedule {
  background: var(--le-ink-deep);
  color: var(--c-white);
  padding: 64px var(--space-md) 56px;
  position: relative;
}
.le-schedule::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,79,0.1), transparent 70%);
  pointer-events: none;
}

.le-timeline {
  margin-top: var(--space-md);
  position: relative;
  padding-left: 28px;
}
.le-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--le-line);
}
.le-slot {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--le-line-soft);
}
.le-slot:last-child { border-bottom: none; }
.le-slot::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 2px solid var(--le-ink-deep);
}
.le-slot__time {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-gold);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}
.le-slot__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-white);
  margin: 4px 0 6px;
  line-height: 1.2;
}
.le-slot__desc {
  font-size: 0.82rem;
  color: var(--le-cream-60);
  line-height: 1.55;
  font-weight: 300;
  margin: 0;
}

/* ─── HOSTS (hell) ─── */
.le-hosts {
  background: var(--le-paper);
  color: var(--le-ink-paper);
  padding: 64px var(--space-md) 56px;
}
.le-hosts .le-section-lead { color: var(--le-ink-paper); }
.le-hosts .le-section-lead em { color: var(--le-gold-deep); }

.le-host-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.le-host-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--c-white);
  border: 1px solid var(--le-line-soft);
  border-radius: 16px;
  align-items: center;
}
.le-host-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--le-line-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.le-host-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.le-host-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--le-gold-deep);
  font-style: italic;
  background: rgba(184,148,79,0.08);
}
.le-host-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--le-ink-paper);
  margin: 0 0 4px;
}
.le-host-card__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--le-gold-deep);
  font-weight: 500;
}
.le-host-card__desc {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--le-ink-60);
  line-height: 1.5;
  font-weight: 300;
}

/* ─── QUOTE / SOCIAL PROOF (dunkel mit Hintergrundbild) ─── */
/* ─── BRAND-STATEMENT (Hero-Moment der Seite) ─── */
.le-statement {
  position: relative;
  padding: clamp(72px, 12vw, 110px) 24px clamp(80px, 13vw, 120px);
  background: var(--le-ink-deep);
  overflow: hidden;
  isolation: isolate;
}
.le-statement__bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/Wald-hero-900.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.06);
  transition: transform 18s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -2;
}
@media (min-width: 768px) {
  .le-statement__bg {
    background-image: url('/uploads/Wald-hero-1600.jpg');
  }
}
.le-statement.is-visible .le-statement__bg {
  transform: scale(1);
}
.le-statement__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,12,0.82) 0%, rgba(8,16,12,0.40) 28%, rgba(8,16,12,0.40) 72%, rgba(8,16,12,0.92) 100%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(184,148,79,0.10), transparent 70%);
  z-index: -1;
}
.le-statement__inner {
  position: relative;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.le-statement__intro {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.28rem);
  line-height: 1.45;
  color: rgba(245, 240, 225, 0.82);
  margin: 0;
  letter-spacing: 0.005em;
}

.le-statement__divider {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--c-gold);
  margin: clamp(28px, 5vw, 38px) auto;
  transform-origin: center;
  transform: scaleX(0);
  opacity: 0;
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s,
    opacity 0.6s ease-out 0.5s;
}
.le-statement.is-visible .le-statement__divider {
  transform: scaleX(1);
  opacity: 1;
}

.le-statement__lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.7rem);
  font-weight: 300;
  line-height: 1.2;
  color: rgba(245, 240, 225, 0.78);
  margin: 0 0 14px;
}

.le-statement__main {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--c-gold);
  margin: 0 0 clamp(18px, 3vw, 26px);
  line-height: 0.95;
  text-shadow:
    0 0 38px rgba(184,148,79,0.20),
    0 2px 4px rgba(0,0,0,0.35);
}
.le-statement__main span {
  display: block;
  font-size: clamp(2.2rem, 1.4rem + 4vw, 3.8rem);
}
.le-statement__main span + span {
  margin-top: clamp(2px, 0.5vw, 6px);
}

.le-statement__tail {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.32rem);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(245, 240, 225, 0.78);
  margin: 0;
}

/* Scroll-Reveal: Up-Fade mit Stagger */
.le-statement [data-anim="up"] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.le-statement.is-visible [data-anim="up"] {
  opacity: 1;
  transform: translateY(0);
}
.le-statement.is-visible .le-statement__intro { transition-delay: 0.05s; }
.le-statement.is-visible .le-statement__lead  { transition-delay: 0.7s; }
.le-statement.is-visible .le-statement__main  { transition-delay: 0.9s; }
.le-statement.is-visible .le-statement__tail  { transition-delay: 1.15s; }

/* Reduced-Motion-Respekt */
@media (prefers-reduced-motion: reduce) {
  .le-statement [data-anim="up"],
  .le-statement__divider,
  .le-statement__bg {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── ANMELDEFORMULAR (hell) ─── */
.le-form-section {
  background: var(--le-paper);
  color: var(--le-ink-paper);
  padding: 64px var(--space-md) 56px;
}
.le-form-section .le-section-lead { color: var(--le-ink-paper); }
.le-form-section .le-section-lead em { color: var(--le-gold-deep); }
.le-form__sub {
  margin-top: -28px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--le-ink-60);
  line-height: 1.5;
}
.le-form__price {
  margin: 0 0 var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--le-gold-deep);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.le-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.le-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.le-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--le-gold-deep);
}
.le-field input,
.le-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--le-line);
  border-radius: 12px;
  background: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--le-ink-paper);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  box-sizing: border-box;
}
.le-field input::placeholder {
  color: rgba(23,25,26,0.35);
}
.le-field input:focus,
.le-field select:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(184,148,79,0.1);
}

/* Custom select arrow */
.le-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A6341' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* ─── Checkbox Card (Begleitung) ─── */
.le-checkbox-card {
  position: relative;
  border: 1.5px solid var(--le-line);
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.le-checkbox-card:hover {
  border-color: rgba(184,148,79,0.5);
}
.le-checkbox-card--active {
  border-color: var(--c-gold);
  background:
    linear-gradient(180deg, rgba(184,148,79,0.06) 0%, rgba(184,148,79,0) 60%),
    var(--c-white);
  box-shadow: 0 0 0 1px rgba(184,148,79,0.15);
}

.le-checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.le-checkbox-card:has(input[type="checkbox"]:focus-visible) .le-checkbox-card__check {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}
.le-checkbox-card__check {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--le-line);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  background: var(--c-white);
}
.le-checkbox-card--active .le-checkbox-card__check {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.le-checkbox-card__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-white);
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.le-checkbox-card--active .le-checkbox-card__check svg {
  opacity: 1;
  transform: scale(1);
}
.le-checkbox-card__content {
  flex: 1;
}
.le-checkbox-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--le-ink-paper);
  line-height: 1.3;
}
.le-checkbox-card__hint {
  font-size: 0.75rem;
  color: var(--le-ink-60);
  margin-top: 2px;
  font-weight: 300;
}

/* ─── Guest Fields (slide reveal) ─── */
.le-guest-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.le-guest-fields--visible {
  max-height: 480px;
  opacity: 1;
}
.le-guest-fields__note {
  margin: 10px 0 0;
  padding: 0 2px;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--le-ink-60);
  letter-spacing: 0.01em;
}
.le-guest-fields__inner {
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-top: 1px solid var(--le-line-soft);
  margin-top: var(--space-md);
}
.le-guest-fields .le-label {
  margin-bottom: 8px;
}

/* ─── Validation ─── */
.le-field input:invalid.le-touched,
.le-field select:invalid.le-touched {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.le-checkbox-card:has(input:invalid.le-touched) {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.le-field__error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
  min-height: 1em;
  font-weight: 500;
}
.le-field__error:empty {
  display: none;
}
.le-form__hint {
  font-size: 0.75rem;
  color: var(--le-ink-60);
  margin: 0 0 12px;
}
.le-form-live {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 12px;
  min-height: 1em;
  font-weight: 500;
}
.le-form-live:empty {
  display: none;
}

/* ─── Submit ─── */
.le-form .le-btn-primary {
  margin-top: 8px;
}

/* ─── Success State ─── */
.le-form-success {
  text-align: center;
  padding: 40px 0;
}
.le-form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,148,79,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.le-form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-gold);
  stroke-width: 2;
  fill: none;
}
.le-form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--le-ink-paper);
  margin: 0 0 8px;
}
.le-form-success p {
  font-size: 0.88rem;
  color: var(--le-ink-60);
  line-height: 1.5;
}

/* ─── STICKY CTA BAR ─── */
.le-sticky-cta {
  position: fixed;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
  pointer-events: none;
}
.le-sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.le-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  background: rgba(14,16,17,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--le-line);
  border-radius: 999px;
  margin: 0 auto;
}
.le-sticky-cta__date {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  white-space: nowrap;
  font-weight: 500;
}
.le-sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold);
  color: var(--c-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  transition: background 0.25s ease;
}
.le-sticky-cta__btn:hover { background: var(--c-gold-light); }

/* ─── Reduced-Motion (WCAG 2.3.3) ─── */
@media (prefers-reduced-motion: reduce) {
  .le-btn-primary,
  .le-btn-ghost,
  .le-checkbox-card,
  .le-checkbox-card__check,
  .le-checkbox-card__check svg,
  .le-guest-fields,
  .le-sticky-cta,
  .footer-nav a,
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
