.booking-wrap * {
  box-sizing: border-box;
}

/* ===== BOOKING: RESPONSIVE PAGE HERO ===== */
/* ===== BOOKING: RESPONSIVE PAGE HERO ===== */
.page-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);

  /* Mobile Default aspect-ratio */
  aspect-ratio: 4 / 3;
  min-height: 380px !important;

  /* Crucial Fix: Establishes this element as a container context for cqw child elements */
  container-type: inline-size;
}

/* Desktop Transition */
@media screen and (min-width: 768px) {
  .page-hero {
    aspect-ratio: 2 / 1;
    min-height: auto;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.40) 0%,
      rgba(15, 23, 42, 0.65) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  width: 100%;
  max-width: 800px;
}

/* ===== NEW FLUID CONTAINER TEXT OVERRIDES ===== */
.page-hero-content h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 700;
  margin: 0 auto 12px auto;
  line-height: 1.1;
  letter-spacing: 3.5px;
  /* Scales perfectly between a floor of 32px and a ceiling of 56px based on container width */
  font-size: clamp(32px, 8.5cqw, 70px);
  color: var(--gold);
}

.page-hero-eyebrow {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;

  /* Scales cleanly between 11px and 14px */
  font-size: clamp(11px, 2.2cqw, 14px);
}

.page-hero-content p:not(.page-hero-eyebrow) {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 3.5px;
  /* Scales smoothly between 14px and 18px */
  font-size: clamp(12px, 3cqw, 18px);
}

/* ===== BOOKING: LAYOUT ===== */
.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .booking-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== BOOKING: NOTICE BANNER ===== */
.notice-banner {
  background: #fffbeb;
  border: 1px solid #d97706;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.notice-text strong {
  display: block;
  font-size: 0.95rem;
  color: #92400e;
  margin-bottom: 4px;
}

.notice-text p {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.55;
}

/* ===== BOOKING: FORM CARD ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-card-header {
  background: var(--navy);
  padding: 26px 28px;
}

.form-card-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.form-card-header p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  margin-top: 6px;
}

.form-body {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.6px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.field label .req {
  color: #c53030;
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 130, 10, 0.14);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.10);
}

.field-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0 24px;
}

.form-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lettering);
  margin-bottom: 18px;
}

/* ===== BOOKING: SUBMIT BUTTON ===== */
.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 15px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: 8px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.btn-submit:hover {
  background: var(--amber-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 130, 10, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== BOOKING: FEEDBACK ===== */
.form-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-feedback.success {
  display: block;
  background: var(--success-bg);
  border: 1px solid #9ae6b4;
  color: var(--success);
}

.form-feedback.error {
  display: block;
  background: var(--error-bg);
  border: 1px solid #feb2b2;
  color: var(--error);
}

.form-feedback strong {
  display: block;
  margin-bottom: 4px;
}

/* ===== BOOKING: SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.info-card-header {
  background: var(--navy);
  padding: 18px 20px;
}

.info-card-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.info-card-body {
  padding: 20px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list li:first-child {
  padding-top: 0;
}

.info-list .ico {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  margin-top: 1px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row .ico {
  width: 36px;
  height: 36px;
  background: var(--amber-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-row .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.contact-row a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.contact-row a:hover {
  color: var(--amber);
}

.address-block {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.7;
  padding-top: 4px;
}

.address-block strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
  margin-top: 14px;
}

.address-block strong:first-child {
  margin-top: 0;
}

@media screen and (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  a.email-form {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 400px) {
  a.email-form {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 360px) {
  a.email-form {
    font-size: 10px !important;
  }
}