/* ============================================
   FAQ PAGE
============================================ */
.faq-section {
  background:
    radial-gradient(40% 60% at 75% 40%, rgba(201,150,42,0.06) 0%, rgba(201,150,42,0) 60%),
    radial-gradient(60% 80% at 20% 50%, rgba(180,60,0,0.14) 0%, rgba(180,60,0,0) 70%),
    #0E0600;
  padding: 90px 0 100px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}

/* Sidebar + accordion layout */
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Sidebar ── */
.faq-sidebar { position: sticky; top: 130px; }

.faq-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 18px;
}
.faq-tag-line {
  width: 24px; height: 1px;
  background: linear-gradient(90deg, #C9962A, #E7AD3F);
}

.faq-sidebar-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: #F0D5A0;
  margin-bottom: 18px;
}
.faq-sidebar-heading em {
  font-style: italic;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-sidebar-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: rgba(239,227,206,0.48);
  margin-bottom: 28px;
}

/* Quick contact links in sidebar */
.faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(239,227,206,0.5);
  text-decoration: none;
  transition: color .2s;
}
.faq-contact-item:hover { color: #E7AD3F; }
.faq-ci-icon {
  width: 16px; height: 16px;
  color: rgba(201,150,42,0.55);
  flex-shrink: 0;
  display: flex;
}
.faq-ci-icon svg { width: 100%; height: 100%; }

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  background: transparent;
  border: 1px solid rgba(201,150,42,0.4);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9962A;
  text-decoration: none;
  transition: all .25s;
}
.faq-contact-btn:hover {
  background: rgba(201,150,42,0.08);
  border-color: #E7AD3F;
  color: #E7AD3F;
}

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

.faq-item {
  border-bottom: 0.5px solid rgba(201,150,42,0.15);
}
.faq-item:first-child { border-top: 0.5px solid rgba(201,150,42,0.15); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: rgba(201,150,42,0.03); }
.faq-question[aria-expanded="true"] { background: rgba(201,150,42,0.04); }

.faq-question > span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #EFE3CE;
  transition: color .25s;
}
.faq-question:hover > span:first-child,
.faq-question[aria-expanded="true"] > span:first-child {
  color: #E7AD3F;
}

/* Animated chevron */
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(201,150,42,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,150,42,0.8);
  transition: transform .3s ease, border-color .25s, background .25s;
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(201,150,42,0.55);
  background: rgba(201,150,42,0.08);
  color: #E7AD3F;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 600px; }

.faq-answer p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 27px;
  color: rgba(239,227,206,0.8);
  padding: 0 0 24px 0;
}

/* Contact info inside last FAQ */
.faq-contacts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-bottom: 24px;
}
.faq-contact-person {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-contact-person strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  color: #EFE3CE;
}
.faq-contact-person a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(239,227,206,0.55);
  text-decoration: none;
  transition: color .2s;
}
.faq-contact-person a:hover { color: #E7AD3F; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .faq-layout { gap: 50px; }
  .faq-sidebar-heading { font-size: 32px; line-height: 40px; }
}
@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
  .faq-sidebar-heading { font-size: 28px; line-height: 36px; }
  .faq-contact-links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 500px) {
  .faq-question > span:first-child { font-size: 17px; line-height: 23px; }
  .faq-contacts { flex-direction: column; gap: 20px; }
  .faq-section { padding: 60px 0 70px; }
}
