/* ════════════════════════════════════════════════════════════════════════
   FAQ section (#faq) — accordion list with FAQPage schema baked into the
   markup. Styled to match the rest of the homepage's editorial palette.
   ════════════════════════════════════════════════════════════════════════ */
.faq { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  transition: padding 0.25s var(--ease);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.35;
  padding-right: 0.4rem;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--ink);
  color: #fbf4e4;
  border-color: var(--ink);
  transform: rotate(180deg);
}
.faq__item summary:hover { color: var(--gold-deep, #b08e4a); }

.faq__a {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 68ch;
  animation: faqIn 0.32s var(--ease);
}
.faq__a > div { padding-right: 2.2rem; }

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .faq__a { animation: none; } }

@media (max-width: 540px) {
  .faq__item summary { font-size: 1.05rem; gap: 0.9rem; }
  .faq__item summary::after { width: 28px; height: 28px; font-size: 1.05rem; }
  .faq__a { font-size: 0.95rem; }
}
