/* ── BOOKING PAGE ───────────────────────────────────────────── */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 48px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

/* ── INFO CARD ───────────────────────────────────────────────── */
.booking-info {
  background: var(--white);
  border: 1px solid var(--warm);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(44,32,24,0.06);
  position: sticky;
  top: 92px;
}

.booking-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 10px;
  margin-top: 28px;
}
.booking-info h3:first-child { margin-top: 0; }

.booking-info > p,
.booking-info p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 0;
}

.booking-info a { color: var(--rose); transition: opacity .2s; }
.booking-info a:hover { opacity: .75; }

.booking-info-note {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid var(--warm);
  font-size: 0.80rem !important;
  color: var(--taupe);
}

/* ── HOURS TABLE ─────────────────────────────────────────────── */
.booking-hours { margin-top: 10px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--taupe); }
.hours-row span:last-child {
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.03em;
}
.hours-row.closed span:last-child { color: var(--sand); font-weight: 400; }

/* ── MAP PLACEHOLDER ─────────────────────────────────────────── */
.booking-map {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--warm);
  background: var(--warm);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FORM CARD ───────────────────────────────────────────────── */
.booking-form-card {
  background: var(--white);
  border: 1px solid var(--warm);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(44,32,24,0.06);
}

.booking-form-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 28px;
}

/* ── FORM FIELDS ─────────────────────────────────────────────── */
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--espresso);
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 96px; }

.form-note {
  font-size: 0.78rem;
  color: var(--sand);
  margin-top: -6px;
}

.form-submit { width: 100%; justify-content: center; border-radius: 14px; }

/* ── SUCCESS STATE ───────────────────────────────────────────── */
.booking-success {
  display: none;
  background: #F0F8F0;
  border: 1px solid #B5D9B5;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  margin-top: 20px;
}
.booking-success.show { display: block; }
.booking-success h4 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: #2E7D32;
  margin-bottom: 8px;
}
.booking-success p { font-size: 0.85rem; color: #4CAF50; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .booking-info { position: static; }
}
@media (max-width: 600px) {
  .booking-info,
  .booking-form-card { padding: 32px 24px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
}
