/* ── SHARED PAGE HEADER ──────────────────── */
.info-header {
  padding: 140px 48px 80px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.info-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.info-header-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.info-header-title em {
  font-style: italic;
}

.info-header-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}

/* ── FAQ SECTION ─────────────────────────── */
.faq-section {
  background: var(--cream);
  padding: 80px 48px 96px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--deep-brown);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--earth);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--taupe);
  transition: transform 0.35s ease;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-q[aria-expanded="true"] {
  color: var(--earth);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
}

.faq-a p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 22px;
}

/* ── CONTACT CTA ─────────────────────────── */
.faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.faq-contact-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
}

.faq-contact-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--deep-brown);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.faq-contact-link:hover {
  color: var(--earth);
}

/* ── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.drawer-link.active,
.drawer-sub-link.active {
  color: var(--earth);
  font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .info-header { padding: 120px 24px 64px; }
  .faq-section { padding: 64px 24px 80px; }
}

@media (max-width: 480px) {
  .info-header { padding: 110px 16px 52px; }
  .faq-section { padding: 48px 16px 64px; }
  .faq-contact { flex-direction: column; align-items: flex-start; gap: 12px; }
  .faq-q { font-size: 14px; }
}