/* ═══════════════════════════════════════════════════════════════
   18b · FAQ
   Editorial 2-column accordion · large clickable rows
   ═══════════════════════════════════════════════════════════════ */

.faq {
  padding: 110px 0;
  background: var(--paper);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq__aside {
  position: sticky;
  top: 140px;
}
.faq__aside .eyebrow { margin-bottom: 22px; }
.faq__aside__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin: 0 0 22px;
}
.faq__aside__title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.faq__aside__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 30px;
}

.faq__contact-card {
  margin-top: 36px;
  padding: 26px;
  background: var(--bone);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-500);
}
.faq__contact-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-800);
  margin: 0 0 6px;
}
.faq__contact-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.55;
}
.faq__contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.faq__contact-card__btn:hover { background: #128c4f; gap: 12px; }

/* ─── Accordion list ─── */
.faq__list { display: flex; flex-direction: column; }

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

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy-800);
  text-align: left;
  border: 0;
  background: none;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-item__btn:hover { color: var(--amber-500); }

.faq-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  background: var(--paper);
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq-item__icon::before { width: 12px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 12px; }

.faq-item.is-open .faq-item__icon {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-item__icon::after {
  transform: scaleY(0);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.is-open .faq-item__body { max-height: 400px; }

.faq-item__body__inner {
  padding: 0 60px 26px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-item__body__inner p { margin: 0 0 12px; }
.faq-item__body__inner p:last-child { margin-bottom: 0; }
.faq-item__body__inner a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold-500);
}
