/* ==========================================================================
   BOOK PAGE
   Dark intro, two-column booking section, form card, sidebar with photo
   and info card, fallback contact section, FAQ.
   ========================================================================== */

/* INTRO ---------------------------------------------------------------- */
.intro {
  background: var(--ink);
  color: var(--cream);
  padding: 160px 48px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 168, 107, 0.18), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(92, 42, 47, 0.25), transparent 55%);
  pointer-events: none;
}
.intro-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.intro .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
}
.intro h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.intro h1 em { font-style: italic; color: var(--gold); }
.intro-tagline {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.intro-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(245, 241, 232, 0.04);
  font-size: 13px;
  color: rgba(245, 241, 232, 0.85);
  letter-spacing: 0.04em;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200, 168, 107, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 107, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(200, 168, 107, 0); }
}

/* MAIN GRID ----------------------------------------------------------- */
.booking-section {
  padding: 100px 48px;
  background: var(--cream);
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FORM CARD ---------------------------------------------------------- */
.form-card {
  background: #FFFFFF;
  border: 1px solid var(--line-dark);
  padding: 56px;
  box-shadow: 0 24px 60px rgba(14, 16, 20, 0.06);
}
.form-card-head {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}
.form-card-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.form-card-head p {
  color: var(--muted);
  font-size: 15px;
}
.embed-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-dark);
  font-style: italic;
}

/* FIELDS ------------------------------------------------------------- */
form { display: grid; gap: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.field label .req { color: var(--gold-deep); margin-left: 4px; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  background: #FAFAF7;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A88A4F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* CHIP RADIO --------------------------------------------------------- */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip { cursor: pointer; user-select: none; }
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--line-dark);
  background: #FAFAF7;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 100px;
  transition: all 0.2s;
}
.chip:hover span { border-color: var(--gold-deep); }
.chip input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* SUBMIT ------------------------------------------------------------- */
.submit-row {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.privacy-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.5;
}

/* SIDEBAR ------------------------------------------------------------ */
.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(to top, rgba(14, 16, 20, 0.45) 0%, transparent 50%),
    url('../images/portraits/stephen-scaccia-portrait-teal-wall.jpg');
  background-size: cover;
  background-position: center 25%;
  position: relative;
  overflow: hidden;
}

/* FALLBACK CONTACT ---------------------------------------------------- */
.fallback {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px;
  text-align: center;
}
.fallback-inner { max-width: 720px; margin: 0 auto; }
.fallback .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.fallback h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.1;
}
.fallback h2 em { font-style: italic; color: var(--gold); }
.fallback p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.fallback-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fallback-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border: 1px solid rgba(245, 241, 232, 0.25);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.fallback-link:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 107, 0.08);
  color: var(--gold);
}
.fallback-link strong {
  font-weight: 500;
  margin-right: 4px;
}

/* FAQ section background */
.faq { background: var(--cream-warm); padding: 100px 48px; }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.1;
}
.faq-head h2 em { font-style: italic; color: var(--gold-deep); }
.faq-head p { color: var(--muted); font-size: 16px; }

/* MOBILE ------------------------------------------------------------- */
@media (max-width: 900px) {
  .intro { padding: 130px 24px 80px; }
  .booking-section { padding: 60px 24px; }
  .booking-container { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .sidebar { position: static; }
  .fallback { padding: 60px 24px; }
  .faq { padding: 60px 24px; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .submit-row .btn { justify-content: center; }
}
