/* ============================================================
   FAQ page — self-contained styles.
   Deliberately avoids the generic .section / .hero classes so the
   page-wide `section.section div { margin: 50px }` rule can't bleed
   into the answers. On-brand: ecru accent, platinum rules, calm
   Scandinavian spacing.
   ============================================================ */

/* The theme forces `display:flex` on every `main div`, `section`, `ul`…
   Reset our containers back to block so content stacks normally. */
.faq,
.faq-hero,
.faq-list,
.faq-answer,
.faq-answer ul {
  display: block;
}

.faq {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

/* ---------- Hero ---------- */
.faq-hero {
  text-align: center;
  padding: 80px 0 52px;
}

.faq-eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-500);
}

.faq-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.faq-hero h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 28px auto 0;
  background: var(--ecru);
  border-radius: 2px;
}

.faq-hero .faq-intro {
  margin: 26px auto 0;
  max-width: 540px;
  font-size: 19px;
  line-height: 30px;
  color: var(--primary-600);
}

/* ---------- Accordion ---------- */
.faq-list {
  border-top: 1px solid var(--platinum);
}

.faq-item {
  border-bottom: 1px solid var(--platinum);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 4px;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--primary-600);
}

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

.faq-item summary h2 {
  margin: 0;
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

/* chevron toggle, rotates on open */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-right: 2px solid var(--ecru);
  border-bottom: 2px solid var(--ecru);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

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

/* ---------- Answer ---------- */
.faq-answer {
  padding: 2px 4px 30px;
  max-width: 740px;
  font-size: 18px;
  line-height: 29px;
  color: var(--primary-600);
}

.faq-item[open] .faq-answer {
  animation: faqReveal 0.28s ease both;
}

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

.faq-answer > :first-child { margin-top: 0; }
.faq-answer > :last-child  { margin-bottom: 0; }

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer a {
  color: var(--raisin-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ecru);
}

.faq-answer strong {
  color: var(--raisin-black);
  font-weight: 600;
}

.faq-answer h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--raisin-black);
}

.faq-answer ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 14px;
}

.faq-answer li {
  margin: 7px 0;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .faq {
    padding: 0 18px 64px;
  }

  .faq-hero {
    padding: 48px 0 36px;
  }

  .faq-eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .faq-hero h1 {
    font-size: 34px;
  }

  .faq-hero h1::after {
    margin-top: 20px;
  }

  .faq-hero .faq-intro {
    font-size: 17px;
    line-height: 27px;
    margin-top: 20px;
  }

  .faq-item summary {
    padding: 20px 2px;
    gap: 18px;
  }

  .faq-item summary h2 {
    font-size: 17px;
    line-height: 25px;
  }

  .faq-answer {
    font-size: 16.5px;
    line-height: 27px;
    padding-bottom: 24px;
  }

  .faq-dining {
    margin-top: 48px;
  }

  .faq-dining-inner {
    padding: 40px 24px;
  }

  .faq-dining h2 {
    font-size: 26px;
  }

  .faq-dining p {
    font-size: 16.5px;
    line-height: 27px;
  }
}
