.booking-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://staging.bioscope.us/wp-content/uploads/2026/04/98A1002Jab-scaled.jpg');
  background-size: cover;
  background-position: center 32%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.booking-hero:hover .booking-hero-bg {
  transform: scale(1);
}

.booking-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5, 3, 2, 0.42) 0%, rgba(5, 3, 2, 0.2) 50%, rgba(5, 3, 2, 0.78) 100%);
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  transform: translateY(clamp(28px, 6vh, 68px));
  animation: heroFadeIn 1.6s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 300;
  line-height: 0.9;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.booking-page {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 36%, var(--bg) 100%);
  padding: 100px 56px 100px;
  border-bottom: 1px solid var(--border-soft);
}

.booking-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.booking-form-block {
  background: color-mix(in srgb, var(--white) 84%, transparent);
  border: 1px solid var(--border-soft);
  padding: 48px 52px 42px;
  box-shadow: 0 18px 60px rgba(28, 24, 18, 0.05);
  margin-bottom: 62px;
}

.booking-heading {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
}

.booking-form {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.field {
  position: relative;
}

.field.full,
.booking-actions.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 6px 0 8px;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  font-size: 18px;
  color: var(--ink);
  cursor: text;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.25s;
}

.booking-form textarea {
  min-height: 96px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--ink-muted);
}

.booking-form select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% + 2px), calc(100% - 9px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.booking-submit {
  border: 1px solid rgba(176, 141, 87, 0.55);
  background: transparent;
  color: var(--gold);
  padding: 12px 34px;
  font-size: 11px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}

.booking-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-form option {
  color: #1c1812;
  background: #faf8f4;
}

.field.invalid label {
  color: #a14a3b;
}

.booking-form input.field-error,
.booking-form textarea.field-error,
.booking-form select.field-error {
  border-color: #a14a3b;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.captcha-wrap {
  display: flex;
  justify-content: center;
  margin: 0;
}

.captcha-wrap.invalid {
  outline: 1px solid #a14a3b;
  outline-offset: 8px;
}

.form-feedback {
  min-height: 18px;
  margin-top: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-feedback.error {
  color: #a14a3b;
}

.form-feedback.success {
  color: var(--gold);
}

html.dark .booking-form input,
html.dark .booking-form select,
html.dark .booking-form textarea {
  color: var(--ink);
}

html.dark .booking-form input::placeholder,
html.dark .booking-form textarea::placeholder,
html.dark .field label,
html.dark .booking-lead {
  color: #b9b1a5;
}

html.dark .booking-form select {
  background-image: linear-gradient(45deg, transparent 50%, #b9b1a5 50%), linear-gradient(135deg, #b9b1a5 50%, transparent 50%);
}

html.dark .booking-form option {
  background: #1e1c18;
  color: #f0ebe3;
}

@media (prefers-color-scheme: dark) {
  html:not(.light) .booking-form input,
  html:not(.light) .booking-form select,
  html:not(.light) .booking-form textarea {
    color: var(--ink);
  }

  html:not(.light) .booking-form input::placeholder,
  html:not(.light) .booking-form textarea::placeholder,
  html:not(.light) .field label,
  html:not(.light) .booking-lead {
    color: #b9b1a5;
  }

  html:not(.light) .booking-form select {
    background-image: linear-gradient(45deg, transparent 50%, #b9b1a5 50%), linear-gradient(135deg, #b9b1a5 50%, transparent 50%);
  }

  html:not(.light) .booking-form option {
    background: #1e1c18;
    color: #f0ebe3;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: stretch;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 42px 36px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 10px;
}

.contact-info h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
}

.contact-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
}

.contact-item p,
.contact-item a {
  color: var(--ink-muted);
  text-decoration: none;
  line-height: 1.5;
  font-size: 15px;
}

.contact-item a:hover {
  color: var(--gold);
}

.map-wrap {
  border: 1px solid var(--border-soft);
  overflow: hidden;
  min-height: 360px;
  background: var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .booking-hero {
    height: 60vh;
    min-height: 380px;
  }

  .booking-hero-content {
    transform: translateY(clamp(18px, 4vh, 44px));
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 80px);
  }

  .booking-page {
    padding: 88px 24px 70px;
  }

  .booking-form-block {
    padding: 34px 22px;
    margin-bottom: 30px;
  }

  .booking-heading {
    font-size: clamp(32px, 10.5vw, 48px);
    margin-bottom: 10px;
  }

  .booking-lead {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.7;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .captcha-wrap {
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 32px 24px;
  }

  .contact-tag {
    font-size: 26px;
  }

  .map-wrap {
    min-height: 300px;
  }

  .theme-toggle {
    top: 80px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(38px, 13vw, 60px);
  }

  .contact-item p,
  .contact-item a {
    font-size: 14px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .booking-submit {
    width: 100%;
  }
}
