/* =========================
BOOKING
========================= */
.booking {
  background: var(--sand-alt);
  padding: clamp(52px, 8vw, 96px) 0;
}

/* ── SPLIT LAYOUT ── */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: start;
}

.booking-left {
  padding-right: 8px;
}

.booking-right {
  padding-left: 8px;
}

/* ── VERTICAL DIVIDER ── */
.booking-vdivider {
  background: var(--gold-16);
  align-self: stretch;
}

/* ── LEFT COLUMN ── */
.booking-left .eyebrow {
  margin-bottom: 16px;
}

.booking-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 28px;
  text-align: left;
}

.booking-manifesto {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 2.1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.booking-manifesto p {
  margin-bottom: 16px;
}

.booking-manifesto p:last-child {
  margin-bottom: 0;
}

.booking-closing {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 24px;
  margin-bottom: 0;
}

/* ── RIGHT COLUMN ── */
.booking-data {
  margin-bottom: 24px;
}

.booking-data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--gold-16);
}

.booking-data-row:first-child {
  border-top: 1px solid var(--gold-16);
}

.booking-data-key {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-data-val {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 400;
}

.booking-cancel {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: var(--gray-text);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding-left: 18px;
  position: relative;
}

.booking-cancel::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

/* ── CTA ── */
.cta-reserva-directa {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

/* ── LICENSE ── */
.booking-license {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.3);
  margin-bottom: 0;
  padding-left: 18px;
  position: relative;
}

.booking-license::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

/* ── PLATFORMS ROW ── */
.booking-platforms {
  margin-top: 52px;
  text-align: center;
  position: relative;
}

.booking-platforms::before {
  content: "· · ·";
  display: block;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  opacity: 0.45;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.booking-platforms span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted);
  margin-right: 10px;
}

.booking-platforms a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.booking-platforms a:hover {
  color: var(--ink);
}

.booking-platforms-sep {
  font-style: normal;
  color: var(--gold-soft);
  opacity: 0.5;
  margin: 0 6px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 720px) {
  .booking-split {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .booking-vdivider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .booking-left {
    padding-right: 0;
  }

  .booking-right {
    padding-left: 0;
  }

  .booking-left h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .cta-reserva-directa {
    width: 100%;
  }

  .booking-platforms {
    margin-top: 36px;
  }
}
