/* booking.css */

/* ── Topbar ───────────────────────────────────────── */

.booking-topbar {
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-yellow-300);
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-semibold);
}

.booking-back:hover,
.booking-back:focus-visible {
  color: var(--color-text);
}

/* ── Main ─────────────────────────────────────────── */

.booking {
  padding-block: var(--space-12);
  background-color: var(--color-white);
  min-height: 80vh;
}

.booking__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* ── Copy ─────────────────────────────────────────── */

.booking__copy {
  display: flex;
  flex-direction: column;
}

.booking__copy > * + * {
  margin-top: var(--space-6);
}

.booking__eyebrow + .booking__title {
  margin-top: var(--space-3);
}

.booking__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking__title {
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.025em;
  font-size: var(--text-3xl);
  line-height: var(--leading-display);
  color: var(--color-text);
}

.booking__lead {
  font-size: var(--text-lg);
  line-height: var(--leading-lead);
  color: var(--color-text-muted);
}

.booking__checklist-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking__checklist-label {
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

/* ── Embed ────────────────────────────────────────── */

.booking__embed {
  width: 100%;
}

.booking__iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 3px solid var(--color-yellow-300);
  border-radius: var(--radius-md);
}

/* ── Desktop ──────────────────────────────────────── */

@media (min-width: 1024px) {
  .booking {
    padding-block: var(--space-16);
  }

  .booking__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-16);
  }

  .booking__copy {
    flex: 1;
    position: sticky;
    top: var(--space-8);
  }

  .booking__embed {
    flex: 1;
  }

  .booking__iframe {
    min-height: 720px;
  }
}

/* ── Directions ───────────────────────────────────── */

.booking-directions {
  padding-block: var(--space-12);
}

.booking-directions__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.booking-directions__map-link {
  font-weight: var(--font-weight-semibold);
}

.booking-directions__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.booking-directions__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text-muted);
}

.booking-directions__text {
  font-style: normal;
}

.booking-directions__icon {
  flex-shrink: 0;
  color: var(--color-text);
  margin-top: 2px;
}

/* ── Legal footer ─────────────────────────────────── */

.booking-legal {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  background-color: var(--color-yellow-300);
}

.booking-legal .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.booking-legal__copyright {
  color: var(--color-text-muted);
}

.booking-legal__nav {
  display: flex;
  gap: var(--space-6);
}

.booking-legal__link {
  color: var(--color-text-muted);
}

.booking-legal__link:hover,
.booking-legal__link:focus-visible {
  color: var(--color-text);
}
