  /* =========================================================
     ELIZABETH FAQ
     Component-scoped styles for layout, disclosure items,
     and the open/close-all control.
  ========================================================== */
  .eg-faq {
    padding-block: clamp(4rem, 8vw, 7rem);
  }

  .eg-faq .container {
    width: min(100% - 2rem, 80rem);
    margin-inline: auto;
  }

  /* Intro */
  .eg-faq__intro {
    max-width: 48rem;
    margin: 0 auto clamp(1.25rem, 3vw, 2rem);
    text-align: center;
  }

  .eg-faq__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
  }

  .eg-faq__title {
    margin: 0 0 1rem;
  }

  .eg-faq__lede {
    margin: 0 auto;
    max-width: 42rem;
  }

  /* Controls */
  .eg-faq__controls {
    display: flex;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  }

  .eg-faq__toggle-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.95rem 1.35rem;
    border: 1px solid rgba(246, 222, 209, 0.32);
    border-radius: 999px;
    background: #e8ddd4;
    color: #1f2a2f;
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease,
      transform 0.2s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.14);
  }

  .eg-faq__toggle-all::before {
    content: "\F64D";
    font-family: "bootstrap-icons";
    font-size: 0.95rem;
    line-height: 1;
    color: currentColor;
    pointer-events: none;
  }

  .eg-faq__toggle-all.is-open::before {
    content: "\F62A";
  }

  .eg-faq__toggle-all > * {
    pointer-events: none;
  }

  .eg-faq__toggle-all:hover {
    background: #f3e8e0;
    border-color: rgba(246, 222, 209, 0.52);
    color: #162126;
    transform: translateY(-1px);
  }

  .eg-faq__toggle-all:focus-visible {
    outline: 2px solid #f1c2aa;
    outline-offset: 3px;
  }

  .eg-faq__toggle-all span {
    color: inherit;
  }

  /* FAQ list */
  .eg-faq__list {
    max-width: 52rem;
    margin: 0 auto;
  }

  .eg-faq__item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .eg-faq__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .eg-faq__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.2rem 0;
    cursor: pointer;
  }

  .eg-faq__question::-webkit-details-marker {
    display: none;
  }

  .eg-faq__question span {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.38;
    color: var(--heading-color);
  }

  .eg-faq__icon {
    flex: 0 0 auto;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--heading-color);
    transition: transform 0.25s ease;
  }

  .eg-faq__item[open] .eg-faq__icon {
    transform: rotate(180deg);
  }

  .eg-faq__question:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 0.3rem;
    border-radius: 0.25rem;
  }

  .eg-faq__answer {
    max-width: 44rem;
    padding: 0 0 1.35rem;
  }

  .eg-faq__answer p {
    margin: 0;
    line-height: 1.75;
  }

  .eg-faq__answer a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
    word-break: break-word;
  }

  @media (max-width: 767.98px) {
    .eg-faq .container {
      width: min(100% - 1.25rem, 80rem);
    }

    .eg-faq__question {
      align-items: flex-start;
      padding: 1rem 0;
    }

    .eg-faq__question span {
      font-size: 1rem;
    }

    .eg-faq__answer {
      padding-bottom: 1.1rem;
    }

    .eg-faq__toggle-all {
      width: 100%;
      max-width: 22rem;
    }
  }

.eg-faq {
  background: #071715;
}

.eg-faq__title,
.eg-faq__question span,
.eg-faq__icon {
  color: #eee7dc;
}

.eg-faq__lede,
.eg-faq__answer p,
.eg-faq__answer a {
  color: #ddd3c6;
}

.eg-faq__item {
  border-top: 1px solid rgba(232, 221, 212, 0.12);
}

.eg-faq__item:last-child {
  border-bottom: 1px solid rgba(232, 221, 212, 0.12);
}

.eg-faq {
  background:
    radial-gradient(circle at top center, rgba(108, 146, 150, 0.08), transparent 42%),
    #071715;
}

  /* =========================================================
     FAQ SECTION — background + spacing
  ========================================================== */
  #elizabeth-faq.eg-faq.section {
    margin-bottom: 0;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background: #071715;
  }

  #footer.footer {
    margin-top: 0;
  }

  main {
    background: #071715;
  }

  /* =========================================================
     FAQ TOGGLE BUTTON — full clickable pill fix
  ========================================================== */
  .eg-faq__controls {
    display: flex;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  }

  .eg-faq__toggle-all {
    position: relative;
    z-index: 2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: auto;
    min-width: 16rem;
    min-height: 3.25rem;
    padding: 0.95rem 1.35rem;
    border: 1px solid rgba(246, 222, 209, 0.32);
    border-radius: 999px;
    background: #e8ddd4;
    color: #1f2a2f;
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease,
      transform 0.2s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.14);
  }

  .eg-faq__toggle-all::before {
    content: "\F64D";
    font-family: "bootstrap-icons";
    font-size: 0.95rem;
    line-height: 1;
    color: currentColor;
    pointer-events: none;
  }

  .eg-faq__toggle-all.is-open::before {
    content: "\F62A";
  }

  .eg-faq__toggle-all span {
    display: inline-block;
    pointer-events: none;
    color: inherit;
  }

  .eg-faq__toggle-all:hover {
    background: #f3e8e0;
    border-color: rgba(246, 222, 209, 0.52);
    color: #162126;
    transform: translateY(-1px);
  }

  .eg-faq__toggle-all:focus-visible {
    outline: 2px solid #f1c2aa;
    outline-offset: 3px;
  }