/* ══════════════════════════════════════════════
   FAQ PAGE — Styles
   ══════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────── */
.faq-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(30,30,40,0.7) 0%, transparent 50%);
  pointer-events: none;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.faq-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.faq-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.faq-hero p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
}
.faq-hero p a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.3s ease;
}
.faq-hero p a:hover { border-color: var(--gold); }

.faq-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}


/* ── FAQ Section ─────────────────────────────── */
.faq-section {
  background: var(--warm-white);
  padding: 80px 24px 100px;
}

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

/* ── Category ────────────────────────────────── */
.faq-category {
  margin-bottom: 56px;
}

.faq-category-label {
  margin-bottom: 8px;
}

/* ── Accordion item ──────────────────────────── */
.faq-list {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.faq-question:hover span,
.faq-item.open .faq-question span {
  color: #0a0a0e;
}

/* Plus / minus icon */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon span {
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.faq-icon span:nth-child(1) {
  /* horizontal bar */
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon span:nth-child(2) {
  /* vertical bar */
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Rotate vertical bar to 0 when open (becomes minus) */
.faq-item.open .faq-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #444;
  padding-bottom: 22px;
}

.faq-answer p a {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.faq-answer p a:hover {
  color: #0a0a0e;
  border-color: var(--gold);
}


/* ── CTA at bottom ───────────────────────────── */
.faq-cta {
  margin-top: 24px;
  padding-top: 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.faq-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.faq-cta p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.faq-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
  transition: color 0.3s ease;
}
.faq-cta-phone svg {
  width: 16px; height: 16px;
  color: var(--gold);
}
.faq-cta-phone:hover { color: var(--gold); }

/* ── Active nav link ─────────────────────────── */
.nav-active {
  color: var(--champagne) !important;
}
.nav-active::after {
  width: 100% !important;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 600px) {
  .faq-hero h1 { font-size: 32px; }
  .faq-question span { font-size: 17px; }
  .faq-cta-actions { flex-direction: column; gap: 16px; }
}
