/* FAQ uses a stable two-column layout, with only one answer open at a time. */
.matala-page .faq-section { background: var(--matala-white); }
.matala-page .faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.matala-page .faq-intro h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.matala-page .faq-intro > p:last-child { max-width: 360px; margin-top: 20px; color: var(--matala-muted); }
.matala-page .faq-item { border-top: 1px solid var(--matala-sand); }
.matala-page .faq-item:last-child { border-bottom: 1px solid var(--matala-sand); }
.matala-page .faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; color: var(--matala-ink); background: none; cursor: pointer; text-align: left; font: 700 1.03rem 'DM Sans', sans-serif; }
.matala-page .faq-question span { color: var(--matala-orange); font-size: 1.4rem; transition: transform .2s ease; }
.matala-page .faq-item.open .faq-question span { transform: rotate(45deg); }
.matala-page .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.matala-page .faq-answer p { padding: 0 44px 23px 0; color: var(--matala-muted); }

/* The dark closing panel concentrates price, trust, and the enquiry form. */
.matala-page .booking-section { padding: 110px 0; color: #fff; background: var(--matala-ink); }
.matala-page .booking-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.matala-page .award-pill-light { color: var(--matala-ink); }
.matala-page .booking-copy h2 { max-width: 520px; font-size: clamp(2.8rem, 5vw, 5rem); }
.matala-page .booking-copy > p { max-width: 510px; margin-top: 22px; color: rgba(255,255,255,.72); }
.matala-page .booking-price { display: flex; gap: 14px; align-items: center; margin-top: 30px; }
.matala-page .booking-price strong { font: 700 3.2rem 'Playfair Display', serif; }
.matala-page .booking-price span { color: rgba(255,255,255,.65); font-size: .8rem; line-height: 1.35; }
.matala-page .booking-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; font-size: .85rem; }

.matala-page .booking-form { padding: 38px; border-radius: var(--matala-radius); color: var(--matala-ink); background: #fff; box-shadow: var(--matala-shadow); }
.matala-page .booking-form h3 { font-size: 2rem; }
.matala-page .booking-form > p { margin: 7px 0 24px; color: var(--matala-muted); }
.matala-page .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.matala-page .field { margin-bottom: 15px; }
.matala-page .field label { display: block; margin-bottom: 6px; font-size: .78rem; font-weight: 700; }
.matala-page .field label span { color: var(--matala-muted); font-weight: 400; }
.matala-page .field input,
.matala-page .field select,
.matala-page .field textarea { width: 100%; padding: 12px 13px; border: 1px solid #d9dedb; border-radius: 10px; color: var(--matala-ink); background: #fafaf8; font: 400 .92rem 'DM Sans', sans-serif; }
.matala-page .field textarea { resize: vertical; }
.matala-page .field input:focus,
.matala-page .field select:focus,
.matala-page .field textarea:focus { outline: 2px solid rgba(228,91,53,.18); border-color: var(--matala-orange); }
.matala-page .booking-form .button { width: 100%; }
.matala-page .booking-form .form-note { margin: 10px 0 0; text-align: center; font-size: .74rem; }
.matala-page .form-success { display: none; margin-top: 14px; padding: 13px; border-radius: 10px; color: #17603e; background: #e4f5eb; font-size: .85rem; }

/* Live booking total: guests × €75, updated by JavaScript. */
.matala-page .booking-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f3f6ef;
  border: 1px solid #d9e4cf;
}
.matala-page .booking-total .total-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--matala-muted);
}
.matala-page .booking-total .total-detail {
  display: block;
  margin-top: 2px;
  font-size: .88rem;
  color: var(--matala-ink);
}
.matala-page .booking-total .total-amount {
  font: 700 1.85rem 'Playfair Display', serif;
  color: var(--matala-orange);
  white-space: nowrap;
}

/* Tablet layouts keep the visual hierarchy while reducing wide gaps. */
@media (max-width: 960px) {
  .matala-page .hero-grid { gap: 38px; }
  .matala-page .hero-image { height: 560px; }
  .matala-page .section-heading { gap: 40px; }
  .matala-page .faq-layout,
  .matala-page .booking-layout { gap: 48px; }
}

/* Mobile layouts become single-column and preserve comfortable tap targets. */
@media (max-width: 760px) {
  .landing-nav { display: none; }
  .landing-logo img { width: 120px; }
  .landing-book { padding: 9px 14px; font-size: .8rem; }
  .matala-page .shell { width: min(100% - 32px, 620px); }
  .matala-page .section { padding: 76px 0; }
  .matala-page .hero { padding: 125px 0 70px; }
  .matala-page .hero-grid,
  .matala-page .section-heading,
  .matala-page .review-layout,
  .matala-page .faq-layout,
  .matala-page .booking-layout { grid-template-columns: 1fr; }
  .matala-page .hero-grid { gap: 48px; }
  .matala-page .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .matala-page .hero-visual { padding-right: 8px; }
  .matala-page .hero-image { height: 480px; border-radius: 110px 20px 20px 20px; }
  .matala-page .price-card { right: -6px; }
  .matala-page .review-card { right: 18px; }
  .matala-page .proof-grid { grid-template-columns: 1fr 1fr; }
  .matala-page .proof-grid div:nth-child(2) { border-right: 0; }
  .matala-page .proof-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .matala-page .section-heading { gap: 18px; margin-bottom: 38px; }
  .matala-page .experience-grid { grid-template-columns: 1fr; grid-template-rows: 420px 260px 260px; }
  .matala-page .feature-card-large { grid-row: auto; }
  .matala-page .timeline-item { grid-template-columns: 50px 1fr; gap: 12px; }
  .matala-page .timeline-time { grid-column: 2; grid-row: 1; }
  .matala-page .timeline-item > div:last-child { grid-column: 2; }
  .matala-page .review-layout { gap: 30px; }
  .matala-page .facts-grid { grid-template-columns: 1fr 1fr; }
  .matala-page .facts-grid div:nth-child(3n) { border-right: 1px solid var(--matala-sand); }
  .matala-page .facts-grid div:nth-child(2n) { border-right: 0; }
  .matala-page .facts-grid div:nth-child(n+4) { border-bottom: 1px solid var(--matala-sand); }
  .matala-page .facts-grid div:nth-child(n+5) { border-bottom: 0; }
  .matala-page .list-grid { grid-template-columns: 1fr; }
  .matala-page .faq-layout,
  .matala-page .booking-layout { gap: 40px; }
}

@media (max-width: 480px) {
  .matala-page .hero-actions { align-items: flex-start; flex-direction: column; }
  .matala-page .hero-image { height: 410px; }
  .matala-page .review-card { left: 14px; right: auto; }
  .matala-page .proof-grid div { padding: 21px 16px; }
  .matala-page .facts-grid { grid-template-columns: 1fr; }
  .matala-page .facts-grid div { border-right: 0 !important; border-bottom: 1px solid var(--matala-sand) !important; }
  .matala-page .facts-grid div:last-child { border-bottom: 0 !important; }
  .matala-page .field-row { grid-template-columns: 1fr; gap: 0; }
  .matala-page .booking-form { padding: 27px 20px; }
}