.reserva {
  background: var(--black-2);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,.05), transparent 45%);
}

.reserva-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.reserva-info h2 { margin-bottom: 20px; }
.reserva-info p {
  color: var(--cream-dim);
  margin-bottom: 32px;
  line-height: 1.8;
}

.reserva-horarios {
  list-style: none;
  border-top: 1px solid var(--line);
}
.reserva-horarios li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.reserva-horarios li span:first-child { color: var(--cream); }
.reserva-horarios li span:last-child { color: var(--cream-dim); }
.reserva-horarios li.is-closed span:last-child { color: var(--wine-soft); font-style: italic; }

.reserva-whats {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--cream-dim);
}
.reserva-whats a { color: var(--cream); border-bottom: 1px solid var(--cream); }

/* ===== Booking card ===== */
.booking-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}

/* Step indicator: numbered circles with connecting line */
.booking-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.booking-steps span {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.booking-steps span::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.booking-steps span:first-child::before { display: none; }
.booking-steps span.is-done::before { background: var(--cream); }

.booking-steps em {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--cream-dim);
  background: var(--black);
  transition: all .3s ease;
}
.booking-steps span.is-active em {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
  font-weight: 600;
}
.booking-steps span.is-done em {
  border-color: var(--cream-dim);
  color: var(--cream);
}

.booking-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-label .selected-summary {
  color: var(--cream-dim);
  text-transform: none;
  letter-spacing: normal;
  font-size: 13px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.booking-label .selected-summary:hover { color: var(--cream); border-color: var(--cream); }

/* Calendar */
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-head strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  text-transform: capitalize;
}
.calendar-nav { display: flex; gap: 8px; }
.calendar-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.calendar-nav button:hover:not(:disabled) { border-color: var(--cream); background: var(--cream); color: var(--black); }
.calendar-nav button:disabled { opacity: .25; cursor: not-allowed; }

.calendar-weekdays, .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  text-transform: uppercase;
  padding-bottom: 10px;
}
.calendar-grid { margin-bottom: 32px; }

.day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--cream);
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all .2s ease;
  position: relative;
}
.day-cell.is-empty { visibility: hidden; }
.day-cell.is-disabled {
  color: rgba(246,245,242,.2);
  cursor: not-allowed;
}
.day-cell.is-selectable { cursor: pointer; }
.day-cell.is-selectable:hover { border-color: var(--cream-dim); }
.day-cell.is-today::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--cream);
}
.day-cell.is-selected {
  background: var(--cream);
  color: var(--black);
  font-weight: 600;
}
.day-cell.is-selected.is-today::after { background: var(--black); }

/* Time slots */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.time-slot {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 6px;
  font-size: 13px;
  text-align: center;
  transition: all .2s ease;
}
.time-slot:hover { border-color: var(--cream); }
.time-slot.is-selected {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
  font-weight: 600;
}
.time-empty {
  grid-column: 1 / -1;
  color: var(--cream-dim);
  font-size: 13px;
  text-align: center;
  padding: 24px 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

/* Party size stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.stepper button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.1rem;
  color: var(--cream);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.stepper button:hover { border-color: var(--cream); background: var(--cream); color: var(--black); }
.stepper-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  min-width: 90px;
  text-align: center;
}
.stepper-value span { font-size: 13px; color: var(--cream-dim); display: block; font-family: var(--sans); }

/* Form fields */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cream);
}
.field textarea { resize: vertical; min-height: 70px; }

.booking-summary {
  background: var(--black-2);
  border-left: 2px solid var(--cream);
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.9;
}
.booking-summary strong { color: var(--cream); }

.booking-note {
  font-size: 12px;
  color: var(--cream-dim);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .reserva-inner { grid-template-columns: 1fr; gap: 48px; }
  .booking-card { padding: 30px 24px; }
}
@media (max-width: 480px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}
