/* faq.css — page-specific styles */

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--forest);
  padding: 96px 24px 56px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(176,141,87,0.18) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  
  
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 1;
  
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,239,228,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  
  
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  
  
}

.hero-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border: 0.5px solid rgba(176,141,87,0.45);
  border-radius: 20px;
  color: var(--gold-lt);
  background: rgba(176,141,87,0.08);
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px auto 0;
  
  
}

/* ── FILTER NAV ──────────────────────────────────── */
.filter-wrap {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(249,245,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.filter-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.filter-btn:hover { color: var(--bark); }
.filter-btn.active { color: var(--bark); border-bottom-color: var(--gold); }

/* ── MAIN CONTENT ──────────────────────────────── */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

/* ── SECTION ──────────────────────────────────── */
.faq-section { margin-bottom: 64px; }

.faq-section.visible {
  opacity: 1;
  transform: none;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.section-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--bark);
  letter-spacing: -0.01em;
}

.section-count {
  font-size: 12px;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-left: auto;
  flex-shrink: 0;
}

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

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--bark);
  line-height: 1.45;
  transition: color 0.2s;
}

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

.faq-q.open { color: var(--gold); }

.faq-q-text { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before { width: 10px; height: 1px; top: 9px; left: 5px; }
.faq-icon::after  { width: 1px; height: 10px; top: 5px; left: 9px; }

.faq-q.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 2000px; }

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-.faq-answer-body p + p { margin-top: 12px; }

.faq-answer-body ul {
  margin: 10px 0 0 16px;
  list-style: none;
}

.faq-answer-body ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 14px;
}

.faq-answer-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.faq-answer-body strong {
  font-weight: 500;
  color: var(--bark);
}

.faq-answer-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.faq-answer-body a:hover { border-color: var(--gold); }

/* ── HIGHLIGHT CALLOUTS ──────────────────────────── */
.callout {
  display: flex;
  gap: 12px;
  background: var(--parchment);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.6;
}

.callout-icon { flex-shrink: 0; font-size: 14px; }

/* ── STATS ROW ──────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin: 32px 0 48px;
}

.stat-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── CTA BAND ──────────────────────────────────── */
.cta-band {
  background: var(--bark);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(176,141,87,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,239,228,0.6);
  margin-bottom: 28px;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.cta-primary:hover { background: var(--gold-lt); }

.cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: none;
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.5px solid rgba(245,239,228,0.35);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.cta-secondary:hover { border-color: rgba(245,239,228,0.7); }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 600px) {
  .faq-answer-.cta-band { padding: 36px 24px; }
  .hero { padding: 64px 20px 56px; }
}
@media (max-width: 860px) {
  .hero { padding: 80px 20px 40px; }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
}
@media (max-width: 580px) {
  .hero { padding: 76px 16px 32px; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14px; }
}

.faq-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.faq-trust-item { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); }
.faq-trust-sep  { font-size: 10px; color: rgba(255,255,255,0.2); }
