/* ============================================================
   RABBI JACOB — LA COMÉDIE MUSICALE
   Rotary Antananarivo Mahasina · Soirée Caritative 2026
   ============================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1e3a6e;
  --navy-dark: #0f1e40;
  --blue: #2d5fa8;
  --blue-mid: #3a7bd5;
  --gold: #d4990a;
  --gold-lt: #f0b429;
  --gold-pale: #fff8e6;
  --sky-top: #a8c8e0;
  --sky-mid: #c8dff0;
  --sky-bot: #eef6fb;
  --white: #ffffff;
  --off-white: #f7fafc;
  --grey-lt: #f0f4f8;
  --grey-bd: #dde3ed;
  --text: #1a2a4a;
  --text-mid: #3d5a80;
  --text-lt: #6b7fa0;
  --success: #1a7a4a;
  --success-bg: #e6f7ef;
}

@font-face {
  font-family: 'AntiqueOliveNord';
  src: url('../assets/Antique Olive Nord D Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.title__rabit,
.title__jacob {
  font-family: 'AntiqueOliveNord', sans-serif;
  font-size: 150px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout helpers --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
}

.container--mid {
  max-width: 920px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--grey-lt);
}

.section--sky {
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 50%, var(--sky-bot) 100%);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 660px;
  line-height: 1.7;
}

.divider {
  width: 52px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-family: inherit;
  line-height: 1;
  text-align: center;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
  display: block;
}

.btn--ghost {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn--ghost:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 58, 110, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav__brand-main {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__brand-sub {
  font-size: 0.6rem;
  color: var(--gold-lt);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--gold-lt);
}

.nav__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav__actions .btn {
  padding: 9px 18px;
  font-size: 0.75rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--sky-top) 0%, var(--sky-mid) 35%, var(--sky-bot) 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 65%);
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__top {
  text-align: center;
  margin-bottom: 60px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.65;
  margin-bottom: 24px;
}

.hero__hat {
  font-size: 4.5rem;
  line-height: 1;
  animation: float 4s ease-in-out infinite;
  margin-bottom: -120px;
}

.hero__hat img {
  width: 100%;
  height: 350px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero__title {
  font-weight: 900;
  color: var(--navy);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.hero__title-rabbi {
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  display: block;
}

.hero__title-jacob {
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  display: block;
}

.hero__logo-img {
  width: clamp(260px, 55vw, 540px);
  height: auto;
  display: block;
  margin: 0 auto 4px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

.hero__title-sub {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 6px;
  text-shadow: none;
}

.hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin: 20px 0 0;
  opacity: 0.85;
}

/* Event meta badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(30, 58, 110, 0.18);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---- Two paths ---- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.path-card {
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.path-card--public {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(30, 58, 110, 0.35);
}

.path-card--sponsor {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--grey-bd);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.path-card__icon {
  font-size: 2.4rem;
}

.path-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.path-card--public .path-card__tag {
  color: var(--gold-lt);
}

.path-card--sponsor .path-card__tag {
  color: var(--gold);
}

.path-card__title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.path-card--public .path-card__title {
  color: var(--white);
}

.path-card--sponsor .path-card__title {
  color: var(--navy);
}

.path-card__desc {
  font-size: 0.87rem;
  line-height: 1.6;
  flex: 1;
}

.path-card--public .path-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.path-card--sponsor .path-card__desc {
  color: var(--text-mid);
}

.path-card__deco {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   SECTION: ACHAT DE BILLETS (wizard)
   ============================================================ */
.wizard {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(30, 58, 110, 0.12);
  overflow: hidden;
  margin-top: 40px;
}

/* Step nav */
.wizard__nav {
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 0 32px;
}

.wizard__step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  cursor: default;
  flex-shrink: 0;
}

.wizard__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  flex-shrink: 0;
}

.wizard__step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
  white-space: nowrap;
}

.wizard__step--active .wizard__step-num {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.wizard__step--active .wizard__step-label {
  color: var(--white);
}

.wizard__step--done .wizard__step-num {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.wizard__step--done .wizard__step-label {
  color: rgba(255, 255, 255, 0.6);
}

.wizard__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 16px;
}

/* Panels */
.wizard__panel {
  padding: 40px 40px 36px;
  display: none;
}

.wizard__panel--active {
  display: block;
}

/* Step footer */
.wizard__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-bd);
  gap: 12px;
}

.wizard__total {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.wizard__total strong {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 900;
}

.wizard__total span {
  font-size: 0.72rem;
  display: block;
  margin-top: 1px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Date cards */
.date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.date-card {
  border: 2px solid var(--grey-bd);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
}

.date-card:hover {
  border-color: var(--blue-mid);
  background: var(--white);
}

.date-card.is-selected {
  border-color: #1a7a4a;
  border-width: 3px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26, 122, 74, 0.25);
}

.date-card__day {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  transition: color 0.2s;
}

.date-card.is-selected .date-card__day {
  color: var(--gold-lt);
}

.date-card__month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 4px;
  transition: color 0.2s;
}

.date-card.is-selected .date-card__month {
  color: rgba(255, 255, 255, 0.7);
}

.date-card__note {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 8px;
  transition: color 0.2s;
}

.date-card.is-selected .date-card__note {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Bandeau de statut pleine largeur en tête de carte ---- */
.date-card__soldout-badge,
.date-card__available-badge {
  display: block;
  /* déborde sur les bords pour couvrir le padding de la carte */
  margin: -20px -16px 16px;
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px 12px 0 0;
}

.date-card__soldout-badge {
  background: #c0392b;
  color: #fff;
}

.date-card__available-badge {
  background: #1a7a4a;
  color: #fff;
}

/* ---- Carte "Complet" : très clairement désactivée ---- */
.date-card--soldout {
  cursor: not-allowed;
  background: #e8e8e8;
  border-color: #c8c8c8;
  pointer-events: none;
}

.date-card--soldout .date-card__day {
  color: #aaa !important;
  text-decoration: line-through;
  text-decoration-color: #c0392b;
  text-decoration-thickness: 2px;
}

.date-card--soldout .date-card__month,
.date-card--soldout .date-card__note {
  color: #bbb !important;
}

/* Single ticket price info block */
.ticket-price-info {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--navy);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.ticket-price-info__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ticket-price-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.ticket-price-info__price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.ticket-price-info__price span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

.ticket-price-info__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
}

/* Ticket category cards */
.ticket-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.ticket-cat {
  border: 2px solid var(--grey-bd);
  border-radius: 14px;
  padding: 20px 20px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticket-cat:hover {
  border-color: var(--blue-mid);
  background: var(--white);
}

.ticket-cat.is-selected {
  border-color: var(--navy);
  background: var(--gold-pale);
}

.ticket-cat__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ticket-cat__name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticket-cat__price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  margin-top: 2px;
}

.ticket-cat__price-unit {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-lt);
}

.ticket-cat__desc {
  font-size: 0.77rem;
  color: var(--text-mid);
  margin-top: 3px;
}

/* Quantity selector */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grey-lt);
  border-radius: 12px;
  padding: 16px 20px;
}

.qty-row__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.qty-row__sub {
  font-size: 0.75rem;
  color: var(--text-lt);
  margin-top: 2px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--grey-bd);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.15s;
  font-family: inherit;
}

.qty-btn:hover {
  background: var(--grey-lt);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.qty-display {
  width: 44px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  border-left: 1px solid var(--grey-bd);
  border-right: 1px solid var(--grey-bd);
  line-height: 40px;
}

/* Order summary (step 3) */
.order-summary {
  background: var(--grey-lt);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 28px;
}

.order-summary__title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-bd);
  font-size: 0.88rem;
  color: var(--text);
}

.order-line:last-child {
  border-bottom: none;
}

.order-line--total {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
  border-top: 2px solid var(--navy);
  padding-top: 12px;
  border-bottom: none;
}

.order-line__label {
  font-weight: 600;
}

.order-line__amount {
  font-weight: 700;
  color: var(--navy);
}

/* Payment form */
.payment-methods {
  margin-bottom: 24px;
}

.payment-method-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--grey-bd);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  background: var(--white);
}

.payment-option.is-selected {
  border-color: var(--navy);
  background: var(--off-white);
}

.payment-option__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--grey-bd);
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
}

.payment-option.is-selected .payment-option__radio {
  border-color: var(--navy);
  background: var(--navy);
}

.payment-option.is-selected .payment-option__radio::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.payment-option__icon {
  font-size: 1.4rem;
}

.payment-option__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.payment-option__note {
  font-size: 0.75rem;
  color: var(--text-lt);
}

.payment-note {
  background: #e8f4fd;
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ============================================================
   FORM FIELDS (shared)
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--grey-bd);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
}

.form-field--check label,
.form-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: normal;
  color: var(--text-mid);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.success-box {
  text-align: center;
  padding: 48px 40px;
}

.success-box__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.success-box__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-box__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.success-ref {
  display: inline-block;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

/* ============================================================
   SECTION: LA CAUSE
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.stat-card--pink {
  background: #f7d6e8;
}

.stat-card--amber {
  background: #fde9b8;
}

.stat-card--blue {
  background: #d0e7f9;
}

.stat-card__number {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.stat-card--pink .stat-card__number {
  color: #b5205e;
}

.stat-card--amber .stat-card__number {
  color: #8a5700;
}

.stat-card--blue .stat-card__number {
  color: var(--blue);
}

.stat-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-box {
  margin-top: 44px;
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-box::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  right: 28px;
  font-size: 9rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.testimonial-box__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.testimonial-box__author {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.bullet-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}

.bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ============================================================
   SECTION: LE SPECTACLE
   ============================================================ */
.show-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.show-visual {
  background: linear-gradient(160deg, var(--sky-mid) 0%, var(--sky-bot) 100%);
  border-radius: 20px;
  padding: 10px;
  text-align: center;
}

.show-visual__hat {
  font-size: 4.5rem;
  margin-bottom: -8px;
}

.show-visual__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 0.95;
}

.show-visual__sub {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 8px;
  font-weight: 600;
}

.show-visual__shoes {
  font-size: 3rem;
  margin-top: 14px;
  display: flex;
  justify-content: space-around;
}

.show-visual img {
  border-radius: 10px;
}

.show-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.show-info-card {
  background: var(--grey-lt);
  border-radius: 10px;
  padding: 16px;
  border-left: 4px solid var(--gold);
}

.show-info-card__label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.show-info-card__value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}

/* ============================================================
   SECTION: SPONSORING
   ============================================================ */

/* Sponsor date notice */
.sponsor-date-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8e6;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
}

.sponsor-date-notice__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.sponsor-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.tier-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-card {
  border-radius: 14px;
  border: 2px solid var(--grey-bd);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.tier-card:hover {
  box-shadow: 0 8px 28px rgba(30, 58, 110, 0.12);
}

.tier-card.is-selected {
  box-shadow: 0 8px 32px rgba(30, 58, 110, 0.2);
}

.tier-card--gold.is-selected {
  border-color: #c9960a;
}

.tier-card--silver.is-selected {
  border-color: #5a7fa8;
}

.tier-card--bronze.is-selected {
  border-color: #b07040;
}

.tier-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
}

.tier-card--gold .tier-card__header {
  background: linear-gradient(90deg, #7c5c00, #c9960a);
}

.tier-card--silver .tier-card__header {
  background: linear-gradient(90deg, #3d5a80, #5a7fa8);
}

.tier-card--bronze .tier-card__header {
  background: linear-gradient(90deg, #6b3a1f, #b07040);
}

.tier-card__medal {
  font-size: 1.8rem;
}
.tier-medal--gold  { color: #d4a017; }
.tier-medal--silver { color: #a0a0a8; }
.tier-medal--bronze { color: #a0522d; }

.tier-card__hd-text {
  flex: 1;
}

.tier-card__hd-level {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tier-card__hd-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.tier-card__select-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  flex-shrink: 0;
  transition: all 0.15s;
  position: relative;
}

.tier-card.is-selected .tier-card__select-dot {
  background: var(--white);
  border-color: var(--white);
}

.tier-card.is-selected .tier-card__select-dot::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--navy);
}

.tier-card__body {
  padding: 16px 20px;
  background: var(--white);
  display: none;
}

.tier-card.is-selected .tier-card__body {
  display: block;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--grey-lt);
}

.tier-feature:last-child {
  border-bottom: none;
}

.tier-feature__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-card--gold .tier-feature__check {
  background: #c9960a;
}

.tier-card--silver .tier-feature__check {
  background: #5a7fa8;
}

.tier-card--bronze .tier-feature__check {
  background: #b07040;
}

/* Sponsor form panel */
.sponsor-form-panel {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--grey-bd);
  padding: 32px 28px;
  position: sticky;
  top: 90px;
}

.sponsor-form-panel__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.sponsor-form-panel__sub {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.sponsor-selected-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.sponsor-selected-tier__icon {
  font-size: 1.4rem;
}

.sponsor-selected-tier__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.sponsor-selected-tier__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}

.sponsor-offline-note {
  background: var(--grey-lt);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.76rem;
  color: var(--text-lt);
  line-height: 1.55;
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip {
  background: var(--navy);
  padding: 36px 0;
}

.info-strip__inner {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.info-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item__label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}

.info-item__value {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #ffffff;
  color: var(--text-mid);
  border-top: 1px solid var(--grey-bd);
  padding: 48px 24px 32px;
}

.footer__main {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 24px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo img {
  width: 300px;
  height: auto;
}

.footer__info {
  flex: 1;
}

.footer__rotary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__rotary-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer__rotary-club {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 600;
}

.footer__copy {
  font-size: 0.72rem;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--grey-bd);
  color: var(--text-lt);
}

/* ============================================================
   HAMBURGER — mobile uniquement
   ============================================================ */
.nav__hamburger {
  display: none;
  /* affiché seulement via media query */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin-left: 12px;
  transition: background 0.2s;
}

.nav__hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav__hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav__hamburger.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MENU MOBILE — caché par défaut, visible via .is-open
   ============================================================ */
.nav__mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: #0d1b38;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile-menu.is-open {
  max-height: 400px;
}

.nav__mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.01em;
  text-transform: none;
  /* typographie française — pas de caps forcés */
  transition: background 0.15s, color 0.15s;
}

.nav__mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-lt);
}

.nav__mobile-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 4px 0;
}

.nav__mobile-cta {
  display: block;
  margin: 10px 20px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.nav__mobile-cta:last-child {
  margin-bottom: 16px;
}

.nav__mobile-cta:hover {
  opacity: 0.88;
}

.nav__mobile-cta--gold {
  background: var(--gold);
  color: var(--navy);
}

.nav__mobile-cta--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .sponsor-layout {
    grid-template-columns: 1fr;
  }

  .sponsor-form-panel {
    position: static;
  }

  .show-split {
    grid-template-columns: 1fr;
  }

  .paths {
    grid-template-columns: 1fr;
  }

  /* Desktop nav éléments : masqués */
  .nav__links,
  .nav__actions {
    display: none !important;
  }

  /* Hamburger : visible */
  .nav__hamburger {
    display: flex !important;
  }
}

@media (max-width: 700px) {
  .date-grid {
    grid-template-columns: 1fr;
  }

  .ticket-cats {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wizard__panel {
    padding: 24px 20px;
  }

  .wizard__nav {
    padding: 0 16px;
    overflow-x: auto;
  }

  .wizard__step-label {
    display: none;
  }

  .info-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 20px;
  }

  .title__rabit,
  .title__jacob {
    font-family: 'AntiqueOliveNord', sans-serif;
    font-size: 50px;
  }
}

@media (max-width: 600px) {
  .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

.footer__rotary img {
  height: 100px;
  object-fit: cover;
}

