/* ---- RESERVATION PAGE — Military theme ---- */

[hidden] {
  display: none !important;
}

.reservation-page {
  min-height: 100vh;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}

.booking-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(43, 58, 28, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(197, 160, 89, 0.08) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.015) 12px,
      rgba(255, 255, 255, 0.015) 13px
    ),
    var(--olive-900);
}

.booking {
  max-width: 520px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 16px + env(safe-area-inset-top, 0px)) 16px 32px;
}

.booking__intro {
  text-align: center;
  margin-bottom: 20px;
}

.booking__intro-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.booking__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 11vw, 3.2rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.booking__intro p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* Main card */

.booking__card {
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius-lg);
  padding: 20px 18px 24px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 16px 48px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.booking__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), transparent);
}

/* Progress */

.booking__progress {
  margin-bottom: 24px;
}

.booking__progress-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 3px;
  margin-bottom: 14px;
  overflow: hidden;
}

.booking__progress-bar {
  height: 100%;
  width: var(--progress, 25%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}

.booking__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  list-style: none;
}

.booking__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}

.booking__step.is-active { color: var(--cream); }
.booking__step.is-done { color: var(--gold); }

/* Panels */

/* Form */

.booking__form {
  position: relative;
}

.booking__honeypot,
.booking__honeypot[hidden] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.booking__panel {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: none;
}

.booking__panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.panel-head {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.panel-head__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.booking__panel-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.form-block {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey-light);
  font-size: 0.72rem;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--grey-light);
  margin-top: 6px;
  line-height: 1.45;
}

.form-hint--block {
  margin-top: 0;
  margin-bottom: 12px;
}

.form-error {
  font-size: 0.8rem;
  color: #ff8a8a;
  margin-top: 8px;
}

.form-error--center {
  text-align: center;
  margin-top: 16px;
}

.field-input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.field-input--area {
  min-height: 100px;
  resize: vertical;
}

.field-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.field-input.is-invalid,
.mil-cal.is-invalid {
  border-color: #e05a5a;
  box-shadow: 0 0 0 2px rgba(224, 90, 90, 0.2);
}

/* ---- MILITARY CALENDAR ---- */

.mil-cal {
  background:
    linear-gradient(160deg, rgba(43, 58, 28, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mil-cal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.mil-cal__month {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.mil-cal__nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mil-cal__nav:active {
  transform: scale(0.92);
  background: rgba(255, 184, 0, 0.15);
}

.mil-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 8px 4px;
  gap: 2px;
}

.mil-cal__weekdays span {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey-light);
  text-transform: uppercase;
}

.mil-cal__weekdays span:last-child {
  color: var(--gold);
}

.mil-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 4px 8px 12px;
}

.mil-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: default;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mil-cal__day--empty {
  visibility: hidden;
}

.mil-cal__day--sunday {
  color: rgba(229, 225, 201, 0.45);
  border-color: rgba(197, 160, 89, 0.12);
  background: rgba(197, 160, 89, 0.05);
}

.mil-cal__day--open {
  color: var(--cream);
  border-color: rgba(255, 184, 0, 0.25);
  background: rgba(255, 184, 0, 0.08);
  cursor: pointer;
}

.mil-cal__day--open:hover,
.mil-cal__day--open:focus-visible {
  background: rgba(255, 184, 0, 0.18);
  border-color: var(--gold-bright);
  outline: none;
}

.mil-cal__day--selected {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
  color: var(--black) !important;
  border-color: var(--gold-bright) !important;
  box-shadow: 0 0 14px rgba(255, 184, 0, 0.45);
  font-weight: 800;
}

.mil-cal__day--today:not(.mil-cal__day--selected) {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.mil-cal__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.mil-cal__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--grey-light);
  letter-spacing: 0.04em;
}

.mil-cal__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mil-cal__dot--open {
  background: rgba(255, 184, 0, 0.5);
  border: 1px solid var(--gold-bright);
}

.mil-cal__picked {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 12px;
  background: rgba(197, 160, 89, 0.1);
  border-left: 3px solid var(--gold-bright);
  border-radius: 0 6px 6px 0;
}

.mil-cal__picked.is-set {
  color: var(--gold-bright);
}

/* ---- SQUAD PICKER ---- */

.squad {
  background:
    linear-gradient(135deg, rgba(26, 34, 24, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.squad::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 184, 0, 0.03) 2px,
      rgba(255, 184, 0, 0.03) 4px
    );
  pointer-events: none;
}

.squad__hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px 16px;
  border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
  position: relative;
}

.squad__stat {
  flex-shrink: 0;
}

.squad__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.squad__value {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(255, 184, 0, 0.35);
  letter-spacing: 0.04em;
}

.squad__roster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  flex: 1;
  max-width: 55%;
}

.squad__operator {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 4px;
  color: var(--gold-bright);
  animation: operatorIn 0.25s ease both;
}

.squad__operator svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.squad__operator--extra {
  width: auto;
  min-width: 28px;
  padding: 0 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.squad__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  position: relative;
}

.squad__btn {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(197, 160, 89, 0.35);
  border-radius: 8px;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.squad__btn svg {
  width: 22px;
  height: 22px;
}

.squad__btn--plus {
  border-color: var(--gold-bright);
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold-bright);
}

.squad__btn:active {
  transform: scale(0.9);
  background: rgba(255, 184, 0, 0.2);
}

.squad__hint {
  flex: 1;
  text-align: center;
}

.squad__hint strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 2px;
}

.squad__hint span {
  font-size: 0.72rem;
  color: var(--grey-light);
}

@keyframes operatorIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- RADIO GRID (experience) ---- */

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.radio-card__desc {
  font-size: 0.72rem;
  color: var(--grey-light);
  line-height: 1.3;
}

.radio-card:has(input:checked) {
  border-color: var(--gold-bright);
  background: rgba(255, 184, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.2);
}

.radio-card:has(input:checked) .radio-card__title {
  color: var(--gold-bright);
}

.radio-grid.is-invalid .radio-card {
  border-color: rgba(224, 90, 90, 0.4);
}

/* ---- GEAR CARDS (image cards) ---- */

.gear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gear-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.gear-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.gear-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.gear-card__sprite {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: transform 0.35s ease;
}

.gear-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s ease;
}

.gear-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(26, 34, 24, 0.08) 100%);
  pointer-events: none;
}

.gear-card__check {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.gear-card__check::after {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 800;
  color: transparent;
  transition: color var(--transition);
}

.gear-card:has(input:checked) .gear-card__check {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.gear-card:has(input:checked) .gear-card__check::after {
  color: var(--black);
}

.gear-card:has(input:checked) {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gear-card:has(input:checked) .gear-card__sprite {
  transform: scale(1.06);
}

.gear-card:has(input:checked) .gear-card__media img {
  transform: scale(1.06);
}

.gear-card:active:not(.gear-card--locked) {
  transform: scale(0.98);
}

.gear-card__body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gear-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.gear-card__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.gear-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 184, 0, 0.9);
  color: var(--black);
  border-radius: 3px;
}

.gear-card--featured {
  grid-column: 1 / -1;
}

.gear-card--featured .gear-card__media {
  aspect-ratio: 21 / 9;
}

.gear-card--locked {
  cursor: default;
  border-color: rgba(255, 184, 0, 0.35);
}

.gear-card--locked .gear-card__badge {
  background: rgba(197, 160, 89, 0.95);
}

.gear-grid.is-invalid .gear-card {
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---- CHECK CARDS (terms inline) ---- */

.check-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.check-card input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold-bright);
}

.check-card__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
}

.check-card:has(input:checked) {
  border-color: rgba(255, 184, 0, 0.4);
  background: rgba(255, 184, 0, 0.08);
}

.check-card--featured:has(input:checked) {
  border-color: var(--gold-bright);
  background: rgba(255, 184, 0, 0.12);
}

.check-card--inline {
  margin-top: 4px;
  width: 100%;
}

/* ---- SUMMARY ---- */

.booking__summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.booking__summary div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: var(--radius);
}

.booking__summary dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  padding-top: 2px;
}

.booking__summary dd {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

/* ---- FINAL STEP ACTIONS ---- */

.booking__final-bar {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.btn-mission--inline {
  min-height: 50px;
  padding: 10px 14px;
}

.btn-mission--inline .btn-mission__icon {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
}

.btn-mission--inline .btn-mission__text strong {
  font-size: 0.78rem;
}

/* ---- SUBMIT BUTTON ---- */

.btn-mission {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow:
    0 6px 24px rgba(255, 184, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn-mission:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-mission:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-mission__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  color: var(--black);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-mission__text {
  text-align: left;
}

.btn-mission__text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.btn-mission__text small {
  display: block;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

/* ---- NAV (steps 1–4 only) ---- */

.booking__nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.booking__panel[data-panel="5"].is-active ~ .booking__nav {
  display: none !important;
}

.btn-nav {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn-nav--ghost {
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: transparent;
  color: var(--cream);
}

.btn-nav--ghost:active {
  background: rgba(197, 160, 89, 0.1);
  transform: scale(0.97);
}

.btn-nav--next {
  border: none;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-bright);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.btn-nav--next:active {
  background: rgba(255, 184, 0, 0.2);
  transform: scale(0.97);
}

/* Success */

.booking__success {
  text-align: center;
  padding: 32px 0 16px;
  animation: fadeUp 0.5s ease both;
}

.booking__success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.35);
}

.booking__success h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.booking__success p {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.55;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .gear-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gear-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .booking {
    max-width: 580px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking__card {
    padding: 24px 28px 28px;
  }

  .check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .squad__operator {
    animation: none;
  }
}
