/* ── Hero ───────────────────────────────────────── */
.faq-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 72% 50%, rgba(36,82,68,.45) 0%, transparent 68%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(15,125,180,.1) 0%, transparent 65%),
    var(--cream);
  padding: 100px 24px 90px;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%234dae8c' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--heading);
}

.faq-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.faq-hero__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-hero__body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
}

.faq-hero__body strong { color: var(--heading); }

.faq-hero__btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/* ── FAQ section ────────────────────────────────── */
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 35% at 50% 28%, rgba(15,125,180,.22) 0%, transparent 70%),
    radial-gradient(ellipse 80% 35% at 50% 74%, rgba(15,125,180,.22) 0%, transparent 70%),
    linear-gradient(to bottom,
      #060d08 0%,
      #04090e 20%,
      #03080d 40%,
      #03080d 60%,
      #04090e 80%,
      #040a0f 100%
    );
  padding: 90px 24px 100px;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%234dae8c' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0,0,0,.25),
    0 16px 40px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .2s, box-shadow .3s;
}

.faq-item[open] {
  border-color: rgba(201,168,76,.6);
  box-shadow:
    0 8px 24px rgba(0,0,0,.3),
    0 24px 56px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--heading);
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(180deg);
}

.faq-item__q:hover { color: var(--gold-light); }

.faq-item__a {
  padding: 4px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.faq-item__a p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.78;
}

.faq-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.faq-item__list li {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.faq-item__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
}

.faq-item__list strong { color: var(--heading); }

.faq-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,.4);
  text-underline-offset: 2px;
  transition: color .2s;
}
.faq-link:hover { color: var(--gold-light); }

/* ── Nav active ─────────────────────────────────── */
.nav__link--active {
  background: rgba(77,174,140,.15);
  color: var(--heading);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  .faq-hero { padding: 72px 20px 70px; }
  .faq-section { padding: 70px 20px 80px; }
  .faq-item__q { padding: 18px 20px; font-size: .98rem; }
  .faq-item__a { padding: 4px 20px 20px; }
}

@media (max-width: 768px) {
  .header__toggle { display: flex; }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11,20,16,.97);
    border-bottom: 1px solid rgba(77,174,140,.12);
    padding: 16px 24px 24px;
  }
  .header__nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 10px 16px; }
}
