/* ============================================================
   Singdia — FAQ (block 11)
   ============================================================ */

.faq {
  position: relative;
  padding: 110px 0 130px;
  background: var(--cream);
  overflow: hidden;
}
.faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.faq__bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.12) 0%, transparent 70%);
  filter: blur(60px);
}

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq__head {
  text-align: center;
  margin-bottom: 56px;
}
.faq__head .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.faq__head .eyebrow::before { display: none; }
.faq__head .eyebrow::after {
  content: '';
  width: 18px; height: 1px;
  background: var(--saffron);
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.faq__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--maroon);
}

/* List */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(107, 18, 49, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.faq__item.is-open {
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: 0 20px 40px -24px rgba(74, 8, 32, 0.22);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.faq__q:hover { color: var(--maroon); }

.faq__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.12);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s ease;
}
.faq__item.is-open .faq__icon {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: #fff;
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
}
.faq__a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.faq__a-inner p { margin: 0 0 10px; }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* Bottom contact line */
.faq__contact {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.faq__contact a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: rgba(107,18,49,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.faq__contact a:hover {
  text-decoration-color: var(--maroon);
}

/* Mobile */
@media (max-width: 640px) {
  .faq { padding: 72px 0 88px; }
  .faq__inner { padding: 0 18px; }
  .faq__head { margin-bottom: 36px; }
  .faq__q {
    padding: 18px 20px;
    font-size: 16.5px;
    gap: 14px;
  }
  .faq__a-inner { padding: 0 20px 20px; font-size: 14.5px; }
  .faq__icon { width: 28px; height: 28px; }
}
