/* ================================================================
   book.css — Booking page
   ================================================================ */

.book-hero {
  background-image: url('https://static.wixstatic.com/media/78b7b5_01321d4de0c94efa9c0e62fa2d46e98d~mv2.jpg/v1/fit/w_960,h_959,q_90,enc_avif,quality_auto/78b7b5_01321d4de0c94efa9c0e62fa2d46e98d~mv2.jpg');
}

/* ─── Widget Section ─────────────────────────────────── */
.book-widget-section { background: var(--white); }
.book-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.book-main {}
.book-main-header .eyebrow { margin-bottom: 18px; }
.book-main-header h2 { margin-bottom: 20px; }
.book-main-header p {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Hospitable widget container */
.hospitable-widget-container {
  margin-bottom: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  border-top: 4px solid var(--terra);
}
.widget-placeholder {
  padding: 48px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.widget-icon {
  width: 48px; height: 48px;
  color: var(--terra);
  margin-bottom: 20px;
}
.widget-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}
.widget-note {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 8px;
}
.widget-sub {
  font-size: 13px;
  color: var(--dusk);
  margin-bottom: 28px;
}

/* ─── Sidebar ─────────────────────────────────────────── */
.book-sidebar { position: sticky; top: 104px; }
.book-summary-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.book-summary-img {
  height: 200px;
  overflow: hidden;
}
.book-summary-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.book-summary-body { padding: 24px; }
.book-summary-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.book-summary-sub {
  font-size: 13px;
  color: var(--dusk);
  margin-bottom: 20px;
}
.book-summary-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.book-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.book-stat-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
}
.book-stat-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--dusk);
}

.book-direct-note {
  background: var(--terra-pale);
  border: 1px solid rgba(196,98,45,0.2);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}
.book-direct-note-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.book-direct-note p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}
.book-direct-note strong { color: var(--terra); }

/* ─── FAQ ─────────────────────────────────────────────── */
.book-faq { background: var(--cream); }
.faq-header { margin-bottom: 48px; }
.faq-header .eyebrow { margin-bottom: 18px; }

.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.faq-icon {
  width: 20px; height: 20px;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  line-height: 1.78;
  color: var(--mid);
  padding-bottom: 24px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── Contact Fallback ───────────────────────────────── */
.book-contact-fallback {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.book-contact-inner {
  text-align: center;
}
.book-contact-inner .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.book-contact-inner h3 { margin-bottom: 16px; }
.book-contact-inner p {
  font-size: 15.5px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.book-contact-options {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .book-layout { grid-template-columns: 1fr; }
  .book-sidebar { position: static; }
}
@media (max-width: 768px) {
  .widget-placeholder { padding: 32px 24px; }
}
