/* MiraChlor — Schedule page (extracted from src-html/schedule.html) */

/* PAGE HEADER */
.page-header {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  padding: 72px 0 56px; border-bottom: 1px solid var(--line); text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 24px;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.eyebrow .pipe { opacity: 0.4; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 auto 20px; color: var(--ink); max-width: 880px;
}
.page-header h1 em { font-style: italic; color: var(--navy); }
.page-header p.lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-mute);
  margin: 0 auto; max-width: 620px;
}

/* BOOKING CARD */
.booking-section { background: var(--paper); padding: 64px 0 80px; }
.booking-card {
  position: relative;
  background: radial-gradient(circle at 20% 0%, var(--navy-soft) 0%, var(--navy) 40%, var(--navy-deep) 100%);
  border-radius: 12px; overflow: hidden; color: var(--white);
  box-shadow: 0 24px 60px -20px rgba(0, 30, 80, 0.30);
}
.booking-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); }
.booking-grid { display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch; }
.booking-form-pane { padding: 56px 56px 48px; }
.booking-image-pane {
  position: relative; background: var(--navy-deep); display: block;
  padding: 0; overflow: hidden; min-height: 540px;
}
.booking-image-pane img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 1;
}
.booking-image-pane::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,38,77,0.18) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.22) 100%);
  z-index: 2; pointer-events: none;
}
.booking-image-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(8px);
  padding: 12px 16px; border-radius: 4px; border-left: 3px solid var(--orange);
  font-size: 11px; line-height: 1.5;
}

.form-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px;
}
.form-eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.booking-form-pane h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.015em;
  margin: 0 0 12px; color: var(--white);
}
.booking-form-pane h2 em { font-style: italic; color: #ffb380; }
.booking-form-pane .form-sub {
  color: rgba(255, 255, 255, 0.7); font-size: 14.5px; line-height: 1.55;
  margin: 0 0 32px; max-width: 460px;
}

form.booking-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.65);
}
.field label .req { color: var(--orange); margin-left: 4px; }
.field input, .field select, .field textarea {
  background: var(--white); border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 4px; padding: 14px 16px; font: inherit; font-size: 15px;
  color: var(--ink); width: 100%; transition: box-shadow 0.15s; font-family: var(--font-sans);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa4b4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.45);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form .btn-submit {
  margin-top: 12px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px 28px; border-radius: 4px; border: none;
  font-weight: 600; font-size: 14px; font-family: var(--font-sans);
  text-decoration: none; transition: background 0.15s, transform 0.15s;
  cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
}
.booking-form .btn-submit:hover { background: var(--orange-deep); transform: translateY(-1px); }
.booking-form .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.booking-form .btn-submit svg { width: 14px; height: 14px; }

.form-footnote {
  margin-top: 22px; font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55); line-height: 1.55;
}
.form-footnote a { color: #ffb380; text-decoration: none; }
.form-footnote a:hover { color: var(--orange); }

.form-error {
  margin-top: 14px; padding: 12px 16px; border-radius: 4px;
  background: rgba(239, 68, 68, 0.12); border-left: 3px solid #ef4444;
  color: #fecaca; font-size: 13px;
}

.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--orange); border-radius: 4px;
  padding: 14px 20px; font-size: 13.5px; color: var(--ink);
  box-shadow: 0 16px 32px -12px rgba(0, 30, 80, 0.20);
  transform: translateY(40px); opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none; z-index: 60; max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong {
  display: block; font-weight: 600; color: var(--navy);
  margin-bottom: 4px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* TRUST STRIP */
.trust-strip { background: var(--navy); color: rgba(255, 255, 255, 0.85); padding: 28px 0; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.trust-item svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--orange); }
.trust-item strong { display: block; font-weight: 600; color: var(--white); font-size: 13px; letter-spacing: 0.02em; }
.trust-item span { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-form-pane { padding: 40px 32px 36px; }
  .booking-image-pane { min-height: 320px; padding: 0; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .page-header { padding: 56px 0 44px; }
  .booking-section { padding: 40px 0 56px; }
  .booking-form-pane { padding: 32px 22px 28px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
