/* ============================================================
   TRASTEVERE SPALATO — booking & payment funnel styles
   Inherits CSS vars from style.css
   ============================================================ */

.booking-body {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  background: var(--gold-faded);
  color: var(--ink);
  padding: .85rem var(--gutter);
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: sticky;
  top: 0;
  z-index: 220;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  align-items: center;
}
.demo-banner a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-banner-strong {
  background: var(--bordeaux-adriatic);
  color: var(--paper);
}
.demo-banner-strong a { color: var(--paper); }

.booking-nav {
  position: sticky;
  top: 50px;  /* below demo banner */
  z-index: 210;
}
@media (max-width: 640px) {
  .booking-nav { top: 70px; }
}

/* ---------- MAIN LAYOUT ---------- */
.booking-main {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  min-height: 80vh;
}
.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.booking-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.booking-header .section-title {
  margin: 1rem auto 1rem;
  max-width: 16ch;
}
.booking-header .section-title em {
  font-style: italic;
  color: var(--blue-dalmatia);
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
}
.booking-header .lead {
  margin: 0 auto;
  max-width: 56ch;
}

/* ---------- STEPPER ---------- */
.stepper {
  list-style: none;
  padding: 0;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  max-width: 760px;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 18px;
  height: 1px;
  background: rgba(14, 26, 36, 0.15);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(14, 26, 36, 0.18);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: all 350ms cubic-bezier(.16, 1, .3, 1);
}
.step-label {
  font-size: .75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.3;
}
.step.is-active .step-num {
  background: var(--blue-dalmatia);
  border-color: var(--blue-dalmatia);
  color: var(--paper);
  transform: scale(1.08);
  box-shadow: 0 6px 18px -4px rgba(14, 59, 92, 0.45);
}
.step.is-active .step-label {
  color: var(--ink);
}
.step.is-done .step-num {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}
@media (max-width: 640px) {
  .stepper { gap: .25rem; }
  .step-label { font-size: .65rem; letter-spacing: .08em; }
  .step-num { width: 32px; height: 32px; font-size: .9rem; }
  .stepper::before { top: 16px; }
}

/* ---------- BOOKING GRID (form + recap) ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 980px) {
  .booking-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
    gap: 3rem;
  }
}

/* ---------- FORM ---------- */
.booking-form {
  background: #FFFDF7;
  border: 1px solid rgba(14, 26, 36, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 18px 48px -22px rgba(14, 26, 36, 0.12);
}
.form-step { display: none; }
.form-step.is-active { display: block; animation: stepFade 450ms cubic-bezier(.16, 1, .3, 1); }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form-step-sub {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

/* ---------- FIELDS ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-field.guests-field { gap: .5rem; }
.form-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(14, 26, 36, 0.18);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-dalmatia);
  box-shadow: 0 0 0 3px rgba(14, 59, 92, 0.12);
  background: #FFFDF7;
}
.form-hint {
  font-size: .8125rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: .25rem 0 0;
}
.form-hint a { color: var(--blue-dalmatia); border-bottom: 1px solid currentColor; }
.form-hint-soft { font-style: italic; font-family: var(--font-editorial); font-size: .9375rem; }

/* ---------- GUESTS COUNTER ---------- */
.guests-counter {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .5rem;
  border: 1px solid rgba(14, 26, 36, 0.18);
  border-radius: 999px;
  background: var(--paper);
  width: fit-content;
}
.guests-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(14, 26, 36, 0.18);
  background: #FFFDF7;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, transform 200ms, border-color 200ms;
  display: inline-flex; align-items: center; justify-content: center;
}
.guests-btn:hover { background: var(--blue-dalmatia); color: var(--paper); border-color: var(--blue-dalmatia); }
.guests-btn:disabled { opacity: .35; cursor: not-allowed; }
.guests-counter output {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  min-width: 36px;
  text-align: center;
  color: var(--ink);
}

/* ---------- RADIO CARDS ---------- */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: .25rem;
}
@media (min-width: 640px) {
  .radio-cards { grid-template-columns: repeat(3, 1fr); }
}
.radio-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(14, 26, 36, 0.15);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 250ms, background 250ms, transform 250ms, box-shadow 250ms;
  position: relative;
}
.radio-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 26, 36, 0.3);
  margin: 0;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}
.radio-card input[type="radio"]:checked {
  border-color: var(--blue-dalmatia);
  background: var(--blue-dalmatia);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.radio-card:has(input[type="radio"]:checked) {
  border-color: var(--blue-dalmatia);
  background: #FFFDF7;
  box-shadow: 0 6px 18px -8px rgba(14, 59, 92, 0.3);
  transform: translateY(-1px);
}
.radio-card-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  flex: 1;
}
.radio-card-body strong {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
}
.radio-card-body span {
  font-size: .8125rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Payment method cards layout */
.radio-cards-pay { grid-template-columns: 1fr; }
@media (min-width: 640px) { .radio-cards-pay { grid-template-columns: repeat(3, 1fr); } }
.card-method-icon {
  width: 32px; height: 22px;
  flex-shrink: 0;
  color: var(--ink-soft);
}
.apple-icon {
  display: inline-block;
  width: 32px; height: 22px;
  background: var(--ink);
  border-radius: 4px;
  position: relative;
}
.apple-icon::after {
  content: 'Pay';
  position: absolute;
  inset: 0;
  color: var(--paper);
  font-size: .65rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}

/* ---------- DISH LIST ---------- */
.dish-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.dish-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border: 1px solid rgba(14, 26, 36, 0.1);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 200ms, box-shadow 200ms;
}
.dish-row[data-active="1"] {
  border-color: var(--blue-dalmatia);
  background: #FFFDF7;
  box-shadow: 0 4px 14px -6px rgba(14, 59, 92, 0.2);
}
.dish-row img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.dish-row-name {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .15rem;
  line-height: 1.3;
}
.dish-row-name em { font-style: italic; color: var(--gold-faded); }
.dish-row-desc {
  font-size: .8125rem;
  color: var(--ink-soft);
  line-height: 1.35;
  margin: 0;
}
.dish-row-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--bordeaux-adriatic);
  white-space: nowrap;
}
.qty-counter {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.qty-counter button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(14, 26, 36, 0.2);
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-counter button:hover {
  background: var(--blue-dalmatia);
  color: var(--paper);
  border-color: var(--blue-dalmatia);
}
.qty-counter button:disabled { opacity: .35; cursor: not-allowed; }
.qty-output {
  font-family: var(--font-display);
  font-size: 1rem;
  min-width: 22px;
  text-align: center;
  color: var(--ink);
}
@media (max-width: 640px) {
  .dish-row {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: .5rem .85rem;
  }
  .dish-row img { grid-row: 1 / 3; }
  .dish-row-price { grid-column: 2; grid-row: 2; justify-self: end; }
  .qty-counter { grid-column: 1 / 3; justify-content: flex-end; padding-top: .25rem; border-top: 1px dashed rgba(14, 26, 36, 0.08); }
}

/* ---------- CHECKBOX ---------- */
.form-check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 1rem 0;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  accent-color: var(--blue-dalmatia);
  flex-shrink: 0;
}
.form-check a { color: var(--blue-dalmatia); border-bottom: 1px solid currentColor; }

/* ---------- ACTIONS ---------- */
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.form-actions-split {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-actions .cta-link {
  color: var(--ink-soft);
  border-bottom-color: rgba(14, 26, 36, 0.2);
  font-size: .875rem;
  letter-spacing: .02em;
  text-transform: none;
}
.form-actions .cta-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- PAYMENT SUMMARY INLINE ---------- */
.payment-summary-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(184, 146, 76, 0.08);
  border: 1px solid rgba(184, 146, 76, 0.25);
  border-radius: 8px;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .payment-summary-inline { grid-template-columns: 1fr 1.4fr; align-items: center; }
}
.payment-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: .35rem;
}
.payment-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.payment-policy {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.payment-policy strong { display: block; color: var(--ink); font-weight: 500; margin-bottom: .25rem; }

/* ---------- DEMO DISCLAIMER ---------- */
.demo-disclaimer {
  margin-top: 1rem;
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--bordeaux-adriatic);
  font-family: var(--font-editorial);
  font-style: italic;
  text-align: center;
}

/* ---------- RECAP (right column) ---------- */
.booking-recap {
  position: relative;
}
@media (min-width: 980px) {
  .booking-recap {
    position: sticky;
    top: 130px;
    align-self: start;
  }
}
.recap-inner {
  background: var(--paper-deep);
  color: var(--paper);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px -20px rgba(11, 31, 45, 0.4);
  overflow: hidden;
}
.recap-hero-img {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  display: block;
  height: 140px;
  object-fit: cover;
}
.recap-eyebrow {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-faded);
  margin: 0 0 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.recap-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold-faded);
}
.recap-list,
.recap-dishes ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.recap-list li,
.recap-dishes li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .875rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}
.recap-list li:last-child,
.recap-dishes li:last-child { border-bottom: 0; padding-bottom: 0; }
.recap-key {
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.6);
}
.recap-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--paper);
  text-align: right;
}
.recap-totals {
  margin: 1rem 0 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 146, 76, 0.3);
}
.recap-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .9375rem;
  color: rgba(244, 237, 224, 0.85);
  margin-bottom: .65rem;
}
.recap-line.recap-total {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(184, 146, 76, 0.4);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--paper);
}
.recap-line.recap-total span:last-child { color: var(--gold-faded); }
.recap-savings {
  font-size: .75rem;
  color: var(--olive);
  margin: .65rem 0 0;
  font-style: italic;
  font-family: var(--font-editorial);
  letter-spacing: .01em;
}
.recap-trust {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.recap-trust p {
  font-size: .8125rem;
  color: rgba(244, 237, 224, 0.7);
  margin: 0;
  line-height: 1.4;
}
.recap-trust strong {
  display: block;
  color: var(--paper);
  font-weight: 500;
  font-size: .875rem;
  margin-bottom: .15rem;
}
.recap-dishes {
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
}

/* ---------- CARD VISUAL (Stripe-like) ---------- */
.card-pay-section { margin-top: 1.5rem; }
.card-visual {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 2rem;
  perspective: 1000px;
}
.card-face {
  background: linear-gradient(135deg, #0E3B5C 0%, #1F4E6B 60%, #0B1F2D 100%);
  color: var(--paper);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.35rem;
  aspect-ratio: 1.586 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 20px 50px -16px rgba(14, 59, 92, 0.55),
    inset 0 1px 0 rgba(244, 237, 224, 0.15);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.card-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184, 146, 76, 0.18), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 50px, rgba(244, 237, 224, 0.03) 50px, rgba(244, 237, 224, 0.03) 51px);
  pointer-events: none;
}
.card-face > * { position: relative; z-index: 1; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-bank {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(244, 237, 224, 0.85);
}
.card-bank::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-faded);
  margin-top: .35rem;
}
.card-brand {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: .75rem;
  letter-spacing: .15em;
  font-weight: 500;
  color: var(--gold-faded);
}
.card-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #C9A95D 0%, #B8924C 50%, #8A6B33 100%);
  border-radius: 5px;
  position: relative;
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 1px;
  padding: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 245, 200, 0.25);
}
.card-chip span {
  background: rgba(0,0,0,0.15);
  border-radius: 1px;
}
.card-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: .12em;
  color: var(--paper);
  font-weight: 500;
  transition: color 200ms;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-mini-label {
  display: block;
  font-size: .625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
  margin-bottom: .25rem;
}
.card-holder-display,
.card-expiry-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  letter-spacing: .08em;
  color: var(--paper);
  text-transform: uppercase;
}

/* When card focused / valid */
.card-visual[data-filled="1"] .card-face { transform: rotateY(-2deg) translateY(-2px); }

/* ---------- SUCCESS MODAL ---------- */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 45, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalIn 400ms ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.success-card {
  background: #FFFDF7;
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(11, 31, 45, 0.5);
  animation: cardIn 600ms cubic-bezier(.16, 1, .3, 1);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.success-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
}
.success-icon svg {
  width: 100%; height: 100%;
  animation: scaleIn 500ms cubic-bezier(.16, 1, .3, 1);
}
.check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 700ms 200ms cubic-bezier(.65, 0, .35, 1) forwards;
}
@keyframes scaleIn {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.success-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.success-card > p {
  font-family: var(--font-editorial);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.success-recap {
  list-style: none;
  padding: 1.25rem;
  margin: 0 0 1.5rem;
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.success-recap li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
}
.success-recap li strong {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.success-recap li span {
  font-family: var(--font-display);
  color: var(--ink);
}
.success-confirm {
  font-size: .875rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 1.5rem;
}
.success-card .cta-primary { width: 100%; justify-content: center; }

/* ---------- FOOTER booking ---------- */
.footer-booking { padding: 2rem 0; }
.footer-booking .footer-bottom {
  border: 0;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .form-step.is-active,
  .success-modal,
  .success-card,
  .success-icon svg { animation: none !important; }
  .check-path { stroke-dashoffset: 0; }
  .card-face { transition: none; }
}
