/* ─── FAQ / LEAD NURTURING ─── */
.faq {
  background: var(--white);
  padding: 96px 80px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--text);
}

/* Defensive resets against the WIP global theme
   (Plus Jakarta Sans body + hard h2/h3/p rules with negative letter-spacing). */
.faq h2,
.faq h3,
.faq h4,
.faq p,
.faq div,
.faq span,
.faq strong,
.faq a {
  letter-spacing: normal;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* ─── Header (label + title + sub) ─── */
.faq .section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}

.faq .section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal);
  display: block;
  flex-shrink: 0;
}

.faq .section-title,
.faq .section-title p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  color: var(--navy);
  padding: 0;
  text-transform: none;
}

.faq .section-title {
  margin: 0 0 20px 0;
}

.faq .section-title p {
  margin: 0;
}

.faq .section-title em,
.faq .section-title i,
.faq .section-title p em,
.faq .section-title p i {
  color: var(--teal);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: inherit;
  text-transform: none;
  background: transparent;
}

.faq .section-sub,
.faq .section-sub p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: normal;
  color: var(--gray-500);
  max-width: 560px;
  padding: 0;
}

.faq .section-sub {
  margin: 0 0 40px 0;
}

.faq .section-sub p {
  margin: 0 0 8px 0;
}

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

.faq .section-sub em,
.faq .section-sub i {
  color: var(--teal);
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
}

/* ─── FAQ list ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--navy);
  transition: color 0.2s;
}

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

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

.faq .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.2s;
  padding: 0;
}

.faq-item.open .faq-toggle {
  background: var(--teal);
  color: var(--white);
}

.faq .faq-a {
  max-height: 0;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: normal;
  color: var(--gray-500);
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq .faq-a p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: normal;
  color: var(--gray-500);
  margin: 0 0 12px 0;
}

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

.faq-item.open .faq-a {
  max-height: min(1200px, 85vh);
  padding-bottom: 20px;
}

/* ─── Sidebar ─── */
.faq-aside {
  min-width: 0;
}

.faq-sidebar {
  background: var(--navy);
  border-radius: 6px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: start;
  position: sticky;
  top: 100px;
}

.faq-sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq .faq-sidebar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--white);
  margin: 0;
  padding: 0;
  text-transform: none;
}

.faq .faq-sidebar p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 0;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq .contact-opt {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 16px;
  text-decoration: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: normal;
  transition: border-color 0.2s, background 0.2s;
}

.faq .contact-opt:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.faq .contact-opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.faq .contact-opt-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
}

.faq .contact-opt:hover .contact-opt-icon {
  background: rgba(201, 168, 76, 0.22);
}

.faq .contact-opt-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.faq .contact-opt-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: normal;
  color: var(--white);
}

.faq .contact-opt-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.75);
}

.faq .contact-address {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0 0 0;
  border: none;
  background: transparent;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .faq {
    padding: 72px 40px;
  }

  .faq-inner {
    gap: 48px;
  }

  .faq .section-title,
  .faq .section-title p {
    font-size: clamp(32px, 4.2vw, 42px);
  }

  .faq .section-sub,
  .faq .section-sub p {
    font-size: 16px;
  }

  .faq-sidebar {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 56px 24px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-main {
    order: 2;
  }

  .faq-aside {
    order: 1;
  }

  .faq-sidebar {
    position: relative;
    top: auto;
    padding: 32px 24px;
  }

  .faq .faq-q {
    padding: 16px 0;
    font-size: 14px;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 48px 16px;
  }

  .faq .faq-sidebar h3 {
    font-size: 22px;
  }
}
