.photo-note {
  color: var(--muted);
  font-size: 12px;
  margin: 16px 2px 0;
}

.booking-section {
  max-width: 1144px;
  margin: 0 auto 100px;
  padding: 68px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #17356f, #2854a2);
  color: white;
}

.booking-intro > p:not(.eyebrow) { color: #dce6f7; line-height: 1.65; }
.booking-intro h2 { font-size: 44px; line-height: 1.08; letter-spacing: -1.4px; margin: 0; }
.booking-policy { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: 6px; }
.booking-policy span { font-size: 12px; color: #c7d6ed; margin-top: 8px; }
.booking-policy strong { font-size: 18px; }
.booking-form { background: white; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: 0 24px 70px rgba(7,18,44,.25); }
.booking-form fieldset { border: 0; padding: 0; margin: 0; }
.booking-form legend { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.field-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.field-options label { cursor: pointer; }
.field-options input { position: absolute; opacity: 0; pointer-events: none; }
.field-options span { min-height: 70px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; justify-content: center; font-weight: 750; }
.field-options small { font-size: 11px; font-weight: 550; color: var(--muted); margin-top: 5px; }
.field-options input:checked + span { border-color: var(--blue); background: #edf3ff; box-shadow: inset 0 0 0 1px var(--blue); color: var(--blue); }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.booking-row label { font-size: 12px; font-weight: 750; color: #434b58; }
.booking-row input, .booking-row select { width: 100%; height: 50px; margin-top: 7px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); font: inherit; font-size: 14px; }
.booking-row input:focus, .booking-row select:focus { outline: 2px solid #a9c3f5; border-color: var(--blue); }
.booking-summary { margin-top: 20px; padding: 16px; border-radius: 14px; background: #f0f4fb; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.booking-summary span { font-size: 13px; color: var(--muted); }
.booking-summary strong { color: var(--blue); }
.booking-submit { border: 0; width: 100%; margin-top: 14px; cursor: pointer; }
.form-note { font-size: 11px; line-height: 1.5; color: var(--muted); text-align: center; margin: 12px 0 0; }

@media (max-width: 900px) {
  .booking-section { grid-template-columns: 1fr; margin: 0 16px 70px; padding: 42px 28px; gap: 35px; }
  .booking-intro h2 { font-size: 36px; }
}

@media (max-width: 600px) {
  .booking-section { padding: 34px 20px; border-radius: 22px; }
  .booking-form { padding: 20px; }
  .field-options, .booking-row { grid-template-columns: 1fr; }
  .booking-intro h2 { font-size: 32px; }
}
