/* =========================================================
   ENCORE — Global Styles
   Cloudflare Pages build. Standalone. Full modern CSS.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --c-navy:   #140A28;
  --c-forest: #1A0F2E;
  --c-plum:   #FF3D6B;
  --c-cream:  #FBF3E3;
  --c-gold:   #FFC26F;
  --c-white:  #FFFFFF;

  /* Neutrals */
  --c-ink:      #1B1220;
  --c-ink-2:    #4A3D52;
  --c-ink-3:    #8B7F92;
  --c-line:     #E9DFC8;
  --c-bg-soft:  #F5EAD1;

  /* States */
  --c-focus:  #6D8DFF;
  --c-error:  #C2185B;
  --c-ok:     #2E7D5B;

  /* Typography */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing (4px scale) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(20, 10, 40, 0.06), 0 2px 8px rgba(20, 10, 40, 0.04);
  --sh-2: 0 4px 20px rgba(20, 10, 40, 0.08), 0 12px 40px rgba(20, 10, 40, 0.06);
  --sh-3: 0 10px 40px rgba(20, 10, 40, 0.12), 0 30px 80px rgba(20, 10, 40, 0.10);

  /* Motion */
  --t-fast: 140ms cubic-bezier(0.2, 0.9, 0.3, 1);
  --t-med:  260ms cubic-bezier(0.2, 0.9, 0.3, 1);
  --t-slow: 520ms cubic-bezier(0.2, 0.9, 0.3, 1);

  /* Layout */
  --wrap: 1180px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

a {
  color: var(--c-plum);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--c-navy);
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  padding: var(--s-3) var(--s-5);
  background: var(--c-navy);
  color: var(--c-cream);
  border-radius: var(--r-sm);
  z-index: 100;
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: var(--s-4);
  color: var(--c-cream);
}

/* Focus rings (WCAG 2.2 AA) */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  margin: 0 0 var(--s-4);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { margin: 0 0 var(--s-4); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-plum);
  margin: 0 0 var(--s-3);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--c-ink-2);
}

em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.section {
  padding: var(--s-9) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform var(--t-fast),
    background var(--t-med),
    color var(--t-med),
    box-shadow var(--t-med);
  min-height: 48px;                   /* WCAG 2.5.5 target size */
  min-width: 48px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background: var(--c-navy);
  color: var(--c-cream);
  box-shadow: var(--sh-2);
}

.btn--primary:hover {
  background: var(--c-plum);
  color: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: var(--sh-3);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-navy);
  box-shadow: var(--sh-2);
}

.btn--gold:hover {
  background: var(--c-plum);
  color: var(--c-cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid var(--c-navy);
}

.btn--ghost:hover {
  background: var(--c-navy);
  color: var(--c-cream);
}

.btn--text {
  background: transparent;
  color: var(--c-ink-2);
  padding: var(--s-3) var(--s-4);
  min-height: 44px;
}

.btn--text:hover {
  color: var(--c-plum);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 243, 227, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) 0;
}

.nav__brand {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-navy);
  text-decoration: none;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.nav__brand small {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-ink-3);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--c-navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--s-2) 0;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--c-plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  background: var(--c-navy);
  color: var(--c-cream);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--t-fast);
}

.nav__cta:hover {
  background: var(--c-plum);
  color: var(--c-cream);
}

/* Mobile menu (native <details>) */
.nav__menu {
  display: none;
}

@media (max-width: 780px) {
  .nav__links.nav__links--desktop { display: none; }
  .nav__menu {
    display: block;
    position: relative;
  }
  .nav__menu > summary {
    list-style: none;
    padding: var(--s-3);
    cursor: pointer;
    border-radius: var(--r-sm);
    min-height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__menu > summary::-webkit-details-marker { display: none; }
  .nav__menu > summary svg {
    width: 26px;
    height: 26px;
    color: var(--c-navy);
  }
  .nav__menu > summary .nav__icon-close { display: none; }
  .nav__menu[open] > summary .nav__icon-open { display: none; }
  .nav__menu[open] > summary .nav__icon-close { display: block; }
  .nav__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--c-cream);
    box-shadow: var(--sh-3);
    border-radius: var(--r-lg);
    padding: var(--s-4);
    min-width: 220px;
  }
  .nav__panel .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__panel .nav__link,
  .nav__panel .nav__cta {
    display: block;
    padding: var(--s-4);
    text-align: left;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--s-10) 0 var(--s-9);
  position: relative;
  overflow: hidden;
}

.mega {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  margin: 0 0 var(--s-6);
}

.mega em {
  color: var(--c-plum);
  font-weight: 500;
}

/* ---------- Package cards ---------- */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-8);
}

.package {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-1);
  border: 1px solid var(--c-line);
  transition:
    transform var(--t-med),
    box-shadow var(--t-med),
    border-color var(--t-med);
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: var(--pkg-color, var(--c-plum));
}

.package__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--pkg-color, var(--c-navy));
  color: var(--c-cream);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-5);
}

.package__icon svg {
  width: 26px;
  height: 26px;
}

.package__title {
  color: var(--c-navy);
  margin-bottom: var(--s-3);
}

.package__desc {
  color: var(--c-ink-2);
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-navy);
  color: var(--c-cream);
  padding: var(--s-9) 0 var(--s-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}

@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

.footer__brand {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-cream);
  margin-bottom: var(--s-3);
}

.footer__tag {
  color: rgba(251, 243, 227, 0.7);
  max-width: 360px;
}

.footer h4 {
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-4);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer a {
  color: rgba(251, 243, 227, 0.8);
}

.footer a:hover { color: var(--c-gold); }

.footer__bottom {
  border-top: 1px solid rgba(251, 243, 227, 0.15);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: 0.85rem;
  color: rgba(251, 243, 227, 0.5);
}

@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; }
}

/* =========================================================
   BOOKING WIZARD (TurboTax-style)
   ========================================================= */

.book-page {
  min-height: 100vh;
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
}

/* Wizard header */
.book-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-4) 0;
  position: sticky;
  top: 0;
  z-index: 30;
}

.book-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.book-header__brand {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-navy);
  text-decoration: none;
  font-weight: 500;
}

.book-header__exit {
  color: var(--c-ink-2);
  font-size: 0.9rem;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-sm);
}

.book-header__exit:hover {
  color: var(--c-navy);
  background: var(--c-bg-soft);
}

/* Progress rail */
.progress {
  background: var(--c-white);
  padding: var(--s-5) 0 var(--s-6);
  border-bottom: 1px solid var(--c-line);
}

.progress__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.progress__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  position: relative;
  z-index: 2;
}

.progress__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink-3);
  transition:
    background var(--t-med),
    border-color var(--t-med),
    color var(--t-med),
    transform var(--t-med);
}

.progress__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* Connector lines */
.progress__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: var(--c-line);
  z-index: -1;
  transition: background var(--t-med);
}

/* Active + complete states */
.progress__step[data-state="complete"] .progress__dot {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-cream);
}

.progress__step[data-state="complete"] .progress__label {
  color: var(--c-navy);
}

.progress__step[data-state="complete"]::after {
  background: var(--c-navy);
}

.progress__step[data-state="current"] .progress__dot {
  background: var(--c-plum);
  border-color: var(--c-plum);
  color: var(--c-cream);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(255, 61, 107, 0.15);
}

.progress__step[data-state="current"] .progress__label {
  color: var(--c-plum);
  font-weight: 600;
}

@media (max-width: 640px) {
  .progress__label { display: none; }
  .progress__dot { width: 28px; height: 28px; }
  .progress__step:not(:last-child)::after { top: 13px; }
}

/* Wizard main layout */
.wizard {
  flex: 1;
  padding: var(--s-8) 0 var(--s-9);
}

.wizard__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-8);
  align-items: start;
}

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

.wizard__main {
  min-width: 0;
}

.wizard__eyebrow {
  color: var(--c-plum);
}

.wizard__title {
  margin-bottom: var(--s-3);
}

.wizard__intro {
  color: var(--c-ink-2);
  font-size: 1.1rem;
  margin-bottom: var(--s-7);
  max-width: 60ch;
}

/* Step transitions — only current step is visible */
.step {
  display: none;
  animation: stepIn var(--t-slow) both;
}

.step[data-active="true"] {
  display: block;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Option cards (step 1: location, step 2: tier) */
.options {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}

.options--2col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.options--3col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.option {
  position: relative;
  display: block;
  background: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  cursor: pointer;
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}

.option:hover {
  border-color: var(--c-plum);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}

.option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option input[type="radio"]:focus-visible + .option__body {
  outline: 3px solid var(--c-focus);
  outline-offset: 6px;
  border-radius: var(--r-md);
}

.option__check {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--c-line);
  background: var(--c-white);
  display: grid;
  place-items: center;
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}

.option__check svg {
  width: 14px;
  height: 14px;
  color: var(--c-cream);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity var(--t-fast),
    transform var(--t-fast);
}

.option input[type="radio"]:checked ~ .option__check {
  background: var(--c-navy);
  border-color: var(--c-navy);
}

.option input[type="radio"]:checked ~ .option__check svg {
  opacity: 1;
  transform: scale(1);
}

.option:has(input[type="radio"]:checked) {
  border-color: var(--c-navy);
  background: linear-gradient(180deg, var(--c-white), var(--c-bg-soft));
  box-shadow: var(--sh-2);
}

.option__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-bg-soft);
  color: var(--c-navy);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
}

.option__icon svg { width: 22px; height: 22px; }

.option__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-navy);
  margin: 0 0 var(--s-2);
  letter-spacing: -0.01em;
}

.option__desc {
  color: var(--c-ink-2);
  font-size: 0.95rem;
  margin: 0 0 var(--s-3);
  line-height: 1.5;
}

.option__meta {
  font-size: 0.82rem;
  color: var(--c-ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Tier-specific */
.option--tier {
  padding-top: var(--s-6);
}

.option--tier .option__price {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--c-navy);
  line-height: 1;
  margin: var(--s-2) 0 var(--s-3);
  letter-spacing: -0.02em;
}

.option--tier .option__price small {
  font-size: 0.95rem;
  color: var(--c-ink-3);
  font-weight: 400;
  font-family: var(--f-body);
  margin-left: 4px;
}

.option--tier .option__features {
  list-style: none;
  margin: var(--s-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.option--tier .option__features li {
  font-size: 0.9rem;
  color: var(--c-ink);
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  line-height: 1.4;
}

.option--tier .option__features li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--c-plum);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23FBF3E3' stroke-width='3'><path d='M5 10.5l3 3 7-7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.option--tier.option--popular::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: var(--s-6);
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Form fields (step 3) */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field--full { grid-column: 1 / -1; }

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

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: 0.02em;
}

.field label .field__hint {
  font-weight: 400;
  color: var(--c-ink-3);
  margin-left: var(--s-2);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: var(--s-4);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-white);
  color: var(--c-ink);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 4px rgba(255, 61, 107, 0.15);
}

.field[data-error="true"] input,
.field[data-error="true"] select,
.field[data-error="true"] textarea {
  border-color: var(--c-error);
  box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.12);
}

.field__error {
  font-size: 0.82rem;
  color: var(--c-error);
  display: none;
}

.field[data-error="true"] .field__error {
  display: block;
}

/* Review summary (step 4) */
.review {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-6);
}

.review__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line);
}

.review__row:last-child { border-bottom: 0; }

.review__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 120px;
}

.review__value {
  flex: 1;
  color: var(--c-ink);
  font-weight: 500;
}

.review__edit {
  font-size: 0.85rem;
  color: var(--c-plum);
  font-weight: 600;
}

.disclaimer {
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  font-size: 0.9rem;
  color: var(--c-ink-2);
  margin-bottom: var(--s-6);
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}

.disclaimer svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--c-navy);
  margin-top: 1px;
}

/* Submit error banner (shows on Step 4 if /api/book fails) */
.submit-error {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: #FDECEE;
  border: 1px solid #F4B5BD;
  border-radius: var(--r-md);
  color: #8B1D2A;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Submit button loading state */
[data-nav="submit"][aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
}

/* Nav (Back / Continue at bottom of each step) */
.step__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
  margin-top: var(--s-6);
}

.step__nav .btn--text {
  visibility: visible;
}

.step__nav .btn--text[hidden] {
  visibility: hidden;
}

/* ---------- Sticky summary card (desktop) ---------- */
.summary {
  position: sticky;
  top: 140px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-1);
}

.summary h4 {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-ink-3);
  margin: 0 0 var(--s-4);
}

.summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-3) 0;
  font-size: 0.95rem;
}

.summary__row .summary__key {
  color: var(--c-ink-2);
}

.summary__row .summary__val {
  color: var(--c-navy);
  font-weight: 600;
  text-align: right;
}

.summary__row .summary__val--empty {
  color: var(--c-ink-3);
  font-weight: 400;
  font-style: italic;
}

.summary__total {
  border-top: 1.5px solid var(--c-line);
  padding-top: var(--s-4);
  margin-top: var(--s-3);
  font-family: var(--f-display);
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--c-navy);
}

.summary__total small {
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: var(--c-ink-3);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .summary {
    position: static;
    margin-top: var(--s-6);
  }
}

/* ---------- Success screen ---------- */
.success {
  text-align: center;
  padding: var(--s-9) 0;
  max-width: 620px;
  margin: 0 auto;
}

.success__badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-plum), var(--c-gold));
  color: var(--c-cream);
  display: grid;
  place-items: center;
  margin: 0 auto var(--s-6);
  box-shadow: var(--sh-3);
  animation: badgePop 700ms cubic-bezier(0.2, 1.3, 0.4, 1) both;
}

.success__badge svg {
  width: 40px;
  height: 40px;
}

@keyframes badgePop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

.success__list {
  list-style: none;
  margin: var(--s-7) 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
  text-align: left;
}

.success__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4);
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
}

.success__list .success__num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.success__list strong {
  display: block;
  color: var(--c-navy);
  margin-bottom: 2px;
}

.success__list span {
  font-size: 0.9rem;
  color: var(--c-ink-2);
}
