/* ============================================================
   Speakeasy Vaporium — FAQ Accordion
   Minimalist, native <details> accordion, gold-on-charcoal.
   Inherits site palette: --gold, --charcoal, --cream, --smoke.
   ============================================================ */

.sv-faq {
  max-width: 860px;
  margin: 80px auto;
  padding: 0 24px;
  font-family: 'Lora', Georgia, serif;
  color: var(--cream, #F5F0E8);
}

.sv-faq__eyebrow {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold, #C9A96E);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.sv-faq__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
  color: var(--cream, #F5F0E8);
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.sv-faq__rule {
  width: 60px;
  height: 1px;
  background: var(--gold, #C9A96E);
  margin: 18px auto 48px;
  opacity: 0.7;
}

.sv-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sv-faq__item {
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.sv-faq__item:last-child {
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.sv-faq__item[open] {
  background: rgba(201, 169, 110, 0.035);
}

.sv-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 24px 52px 24px 4px;
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: var(--cream, #F5F0E8);
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-tap-highlight-color: transparent;
}

.sv-faq__q::-webkit-details-marker { display: none; }
.sv-faq__q::marker { content: ''; }

.sv-faq__q:hover,
.sv-faq__item[open] > .sv-faq__q {
  color: var(--gold-light, #DFC397);
}

.sv-faq__q::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-right: 1px solid var(--gold, #C9A96E);
  border-bottom: 1px solid var(--gold, #C9A96E);
  transform: rotate(45deg);
  transform-origin: 60% 60%;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sv-faq__item[open] > .sv-faq__q::after {
  transform: rotate(-135deg);
}

.sv-faq__a {
  padding: 0 52px 28px 4px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream-dark, #E8DFD0);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  animation: sv-faq-fade 0.4s ease-out;
}

@keyframes sv-faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Keyboard focus */
.sv-faq__q:focus-visible {
  outline: none;
  color: var(--gold-light, #DFC397);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.35);
}

@media (max-width: 600px) {
  .sv-faq { margin: 56px auto; padding: 0 18px; }
  .sv-faq__rule { margin: 16px auto 36px; }
  .sv-faq__q { padding: 20px 44px 20px 2px; }
  .sv-faq__a { padding: 0 44px 24px 2px; font-size: 0.95rem; }
}
