/* ---- page: faq ---- */
/* Scoped to faq.html. Reuses shared components from main.css wherever possible
   (.faq accordion, .band-sage, .btn, .leaf-divider). */

/* ===== SPLIT HERO: copy left, house-exterior photo right (bleeds to edges) === */
.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: var(--linen);
  overflow: hidden;
}
.faq-hero-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 104px) clamp(28px, 4vw, 56px)
           clamp(48px, 7vw, 104px)
           max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  max-width: 620px;
}
.faq-hero-copy .eyebrow { display: block; margin-bottom: 18px; }
.faq-hero-copy h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
.faq-hero-copy .hero-sub {
  margin-top: 22px;
  font-size: 1.0625rem;
  color: var(--body);
  max-width: 42ch;
}
.faq-hero-copy .btn { margin-top: 30px; }
.faq-hero-photo { position: relative; min-height: clamp(340px, 46vw, 600px); }
.faq-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .faq-hero { grid-template-columns: 1fr; }
  .faq-hero-copy {
    padding: clamp(40px, 9vw, 64px) var(--gutter) clamp(30px, 6vw, 44px);
    max-width: none;
    order: 1;
  }
  .faq-hero-photo { order: 2; min-height: 0; aspect-ratio: 4 / 3; }
}

/* ===== CENTERED STATEMENT + leaf rule divider ===== */
.faq-statement { text-align: center; }
.faq-statement .stmt {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.28;
  color: var(--ink);
  max-width: 22ch;
  margin-inline: auto;
}
.leaf-rule {
  display: flex; align-items: center; justify-content: center;
  max-width: 720px; margin: clamp(26px, 4vw, 40px) auto 0;
}
.leaf-rule::before, .leaf-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.leaf-rule .leaf-divider { margin: 0 18px; flex: none; }
.leaf-rule.is-short { max-width: 320px; }

/* ===== ACCORDION GROUPS (reuse shared .faq / .faq-item) ===== */
.faq-group + .faq-group { margin-top: clamp(48px, 6vw, 72px); }
.faq-group-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: clamp(20px, 3vw, 34px);
}

/* ===== FOR PARENTS: photo left + sage panel right ===== */
.parents-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
}
.parents-split .ps-photo { position: relative; min-height: clamp(320px, 36vw, 470px); }
.parents-split .ps-photo img { width: 100%; height: 100%; object-fit: cover; }
.parents-split .ps-panel {
  background: var(--sage);
  color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 5vw, 76px) clamp(28px, 4vw, 60px);
}
.parents-split .ps-panel h2 { color: var(--ivory); margin-bottom: 20px; }
.parents-split .ps-panel p { color: rgba(251, 248, 241, .92); max-width: 34ch; }
.parents-split .ps-panel p + p { margin-top: 1em; }
@media (max-width: 860px) {
  .parents-split { grid-template-columns: 1fr; }
  .parents-split .ps-photo { min-height: 0; aspect-ratio: 16 / 10; }
}

/* ===== FULL-BLEED WRITING PHOTO BAND ===== */
.writing-band img {
  width: 100%; height: clamp(220px, 28vw, 380px); object-fit: cover;
}

/* ===== CLOSING CTA ===== */
.faq-cta { text-align: center; background: var(--linen); }
.faq-cta h2 { margin-bottom: 0; }
.faq-cta .cta-sub { margin-top: clamp(20px, 3vw, 30px); color: var(--body); }
.faq-cta .btn { margin-top: 26px; }
