/* ── FAQ PAGE ──────────────────────────────────────────────── */

.faq-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── Hero ── */
.faq-hero {
  background: var(--cream);
  border-bottom: 1px solid rgba(44,24,16,0.08);
  padding: 72px 32px 56px;
  text-align: center;
}

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

.faq-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.faq-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--mahogany);
  line-height: 1.15;
  margin-bottom: 20px;
}

.faq-hero-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 20px;
  opacity: 0.6;
}

.faq-hero-sub {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Main FAQ Section ── */
.faq-section {
  padding: 64px 32px 80px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── Category Headers ── */
.faq-category-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196,149,106,0.3);
  letter-spacing: 0.01em;
}

/* ── Accordion Item ── */
.faq-item {
  border-bottom: 1px solid rgba(44,24,16,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--mahogany);
}

/* Plus / minus icon via CSS */
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  position: relative;
  transition: background 0.15s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brass);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s, transform 0.2s;
}

.faq-icon::before {
  width: 8px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 8px;
}

/* When expanded, hide the vertical bar (turns + into −) */
.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(196,149,106,0.12);
}

/* ── Answer Panel ── */
.faq-answer {
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

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

.faq-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-list li {
  font-size: 15px;
  color: var(--ink-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.faq-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--brass);
}

.faq-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brass);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.faq-link:hover {
  opacity: 0.7;
}

.faq-link-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Placeholder note — visible in view for operator review, not prominent */
.faq-todo-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--brass);
  background: rgba(196,149,106,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  font-style: normal;
}

/* ── Bottom CTA ── */
.faq-cta-section {
  background: var(--mahogany);
  padding: 72px 32px;
  text-align: center;
}

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

.faq-cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.faq-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.faq-cta-sub {
  font-size: 15px;
  color: rgba(245,239,230,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

.faq-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brass);
  color: var(--mahogany);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
}

.faq-cta-primary:hover {
  opacity: 0.88;
}

.faq-cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(196,149,106,0.4);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.faq-cta-secondary:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* ── Footer ── */
.faq-footer {
  background: var(--mahogany-light);
  padding: 32px;
}

.faq-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.faq-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.faq-footer-sep {
  color: var(--brass);
  opacity: 0.5;
}

.faq-footer-address {
  font-size: 12px;
  color: rgba(245,239,230,0.5);
}

.faq-footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: rgba(245,239,230,0.45);
}

.faq-footer-meta a {
  color: rgba(245,239,230,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.faq-footer-meta a:hover {
  color: var(--brass);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .faq-hero {
    padding: 56px 20px 40px;
  }

  .faq-section {
    padding: 48px 20px 64px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-cta-section {
    padding: 56px 20px;
  }

  .faq-footer {
    padding: 28px 20px;
  }
}
