.page-faq {
  background: var(--cream);
}

.page-faq .faq-outer {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 var(--gutter) 72px;
  overflow-x: hidden;
}

.page-faq .faq-hero {
  position: relative;
  margin-inline: calc(-1 * var(--gutter));
  padding: 24px var(--gutter) 42px;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 4px solid var(--orange);
  overflow: hidden;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(198, 255, 0, 0.06) 16px 18px),
    radial-gradient(circle at 82% 18%, rgba(255, 107, 0, 0.22) 0 140px, transparent 42%);
}

.page-faq .faq-hero .breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  font-size: 13px;
  opacity: 0.72;
}

.page-faq .faq-hero .breadcrumb a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-faq .faq-hero .breadcrumb a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.page-faq .faq-hero .breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

.page-faq .faq-hero .breadcrumb span[aria-current="page"] {
  color: var(--cream);
}

.page-faq .faq-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-faq .faq-hero__copy {
  max-width: 640px;
}

.page-faq .faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acid);
}

.page-faq .faq-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  display: inline-block;
}

.page-faq .faq-hero__title {
  margin: 16px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.98;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-faq .faq-hero__lead {
  color: var(--cream);
  opacity: 0.82;
  font-size: 16px;
  line-height: 1.75;
  max-width: 54ch;
}

.page-faq .faq-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-faq .faq-hero__stat {
  min-width: 96px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--orange);
}

.page-faq .faq-hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--acid);
}

.page-faq .faq-hero__stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--cream);
  opacity: 0.75;
}

.page-faq .faq-hero__figure {
  margin: 0;
  border: 3px solid var(--sand);
  box-shadow: var(--shadow);
  background: var(--ink);
  overflow: hidden;
}

.page-faq .faq-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.page-faq .faq-side__sticky {
  position: relative;
}

.page-faq .faq-side__box {
  padding: 20px;
  background: var(--white);
  border: 3px solid var(--sand);
  box-shadow: var(--shadow);
}

.page-faq .faq-side__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-faq .faq-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-faq .faq-side__list::-webkit-scrollbar {
  display: none;
}

.page-faq .faq-side__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 12px;
  background: var(--cream);
  border: 2px solid var(--sand);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-faq .faq-side__list a:hover {
  border-color: var(--orange);
  background: var(--white);
}

.page-faq .faq-side__list a span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  color: var(--orange);
}

.page-faq .faq-side__btn {
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.page-faq .faq-main {
  min-width: 0;
}

.page-faq .faq-section {
  position: relative;
  margin-bottom: 56px;
}

.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--sand);
  padding-bottom: 16px;
}

.page-faq .faq-section__no {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--orange);
  min-width: 62px;
}

.page-faq .faq-section__heading h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.4px;
}

.page-faq .faq-section__heading p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

.page-faq .faq-stack {
  display: grid;
  gap: 14px;
}

.page-faq .faq-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-faq .faq-section__figure {
  margin: 0;
  border: 3px solid var(--sand);
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
}

.page-faq .faq-section__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-faq .faq-section__figure figcaption {
  padding: 10px 12px;
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.08em;
}

.page-faq .faq-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.page-faq .faq-section__more:hover {
  color: var(--orange);
}

.page-faq .faq-item {
  background: var(--white);
  border: 3px solid var(--sand);
  box-shadow: 6px 6px 0 rgba(10, 30, 60, 0.1);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-faq .faq-item[open] {
  border-left-color: var(--acid);
  box-shadow: 8px 8px 0 rgba(10, 30, 60, 0.14);
}

.page-faq .faq-item__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.page-faq .faq-item__summary::-webkit-details-marker {
  display: none;
}

.page-faq .faq-item__summary::marker {
  content: "";
}

.page-faq .faq-item__q {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--orange);
}

.page-faq .faq-item__title {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.page-faq .faq-item__toggle {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
}

.page-faq .faq-item__toggle::before,
.page-faq .faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.page-faq .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-faq .faq-item__answer {
  padding: 0 16px 20px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray);
}

.page-faq .faq-item__answer p {
  margin: 0 0 8px;
}

.page-faq .faq-item__answer p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-item__answer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration-thickness: 2px;
}

.page-faq .faq-section__cta {
  margin-top: 26px;
  padding: 20px 24px;
  background: var(--navy);
  border-left: 6px solid var(--acid);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-faq .faq-section__cta p {
  margin: 0;
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .page-faq .faq-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }

  .page-faq .faq-item__answer {
    padding-left: 58px;
  }

  .page-faq .faq-section__body {
    grid-template-columns: 1fr 240px;
  }

  .page-faq .faq-hero__stats {
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-outer {
    padding-top: 8px;
  }

  .page-faq .faq-hero {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .page-faq .faq-hero__grid {
    gap: 56px;
  }

  .page-faq .faq-layout {
    grid-template-columns: 260px 1fr;
    gap: clamp(32px, 5vw, 72px);
    margin-top: 48px;
  }

  .page-faq .faq-side__sticky {
    position: sticky;
    top: 24px;
  }

  .page-faq .faq-side__list {
    flex-direction: column;
    overflow: visible;
    gap: 2px;
  }

  .page-faq .faq-side__list a {
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--sand);
    border-radius: 0;
    padding: 13px 4px;
    white-space: normal;
  }

  .page-faq .faq-side__list a:hover {
    background: var(--cream);
    border-left-color: var(--orange);
    border-bottom-color: var(--sand);
    padding-left: 10px;
  }

  .page-faq .faq-side__list a span {
    min-width: 28px;
  }

  .page-faq .faq-section {
    margin-bottom: 68px;
  }

  .page-faq .faq-section__head {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .page-faq .faq-section__no {
    font-size: 54px;
  }

  .page-faq .faq-section__heading h2 {
    font-size: 34px;
  }

  .page-faq .faq-section--gift .faq-section__body {
    grid-template-columns: 1fr 280px;
  }
}
