.main-nav-faq {
  position: relative;
  padding: 0;
  background: transparent;
  color: rgba(255, 253, 248, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav-faq::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav-faq:hover,
.main-nav-faq:focus-visible,
.main-nav-faq[aria-expanded="true"] {
  color: var(--white);
  outline: none;
}

.main-nav-faq:hover::after,
.main-nav-faq:focus-visible::after,
.main-nav-faq[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.faq-experience-open {
  height: 100dvh;
  overflow: hidden;
}

.faq-experience {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  background: var(--ink);
  color: var(--white);
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.faq-experience::-webkit-scrollbar {
  display: none;
}

.faq-experience::backdrop {
  background: rgba(9, 9, 8, 0.84);
  backdrop-filter: blur(10px);
}

.faq-experience-shell {
  position: relative;
  min-height: 100%;
  isolation: isolate;
}

.faq-experience-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr) 52px;
  min-height: 88px;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(240, 228, 204, 0.16);
  background: rgba(9, 9, 8, 0.76);
  backdrop-filter: blur(20px) saturate(1.1);
}

.faq-experience-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-experience-brand img {
  width: 34px;
  height: 28px;
  object-fit: contain;
}

.faq-experience-heading {
  display: grid;
  gap: 2px;
  text-align: center;
}

.faq-experience-heading p,
.faq-experience-heading h2 {
  margin: 0;
}

.faq-experience-heading p {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.faq-experience-heading h2 {
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0;
}

.faq-experience-count {
  display: grid;
  grid-template-columns: auto minmax(36px, 78px) auto;
  align-items: center;
  justify-content: end;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.faq-experience-count i {
  height: 1px;
  background: rgba(234, 213, 162, 0.32);
}

.faq-experience-close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(240, 228, 204, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.faq-experience-close:hover,
.faq-experience-close:focus-visible {
  border-color: rgba(234, 213, 162, 0.7);
  background: rgba(198, 161, 91, 0.13);
  color: var(--gold-light);
  outline: none;
  transform: rotate(5deg);
}

.faq-experience-scroll {
  position: relative;
  height: 500svh;
  min-height: 3200px;
}

.faq-experience-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(198, 161, 91, 0.045), transparent 28%),
    linear-gradient(180deg, var(--ink-soft), var(--ink));
}

.faq-experience-grid {
  position: absolute;
  inset: 88px 0 0;
  z-index: 0;
  pointer-events: none;
}

.faq-experience-grid::before,
.faq-experience-grid::after,
.faq-experience-grid i {
  position: absolute;
  background: rgba(234, 213, 162, 0.08);
  content: "";
}

.faq-experience-grid::before,
.faq-experience-grid::after {
  top: 0;
  bottom: 0;
  width: 1px;
}

.faq-experience-grid::before { left: 7vw; }
.faq-experience-grid::after { right: 7vw; }
.faq-experience-grid i:nth-child(-n + 3) { top: 0; bottom: 0; width: 1px; }
.faq-experience-grid i:nth-child(1) { left: 29%; }
.faq-experience-grid i:nth-child(2) { left: 50%; }
.faq-experience-grid i:nth-child(3) { left: 71%; }
.faq-experience-grid i:nth-child(n + 4) { right: 0; left: 0; height: 1px; }
.faq-experience-grid i:nth-child(4) { top: 22%; }
.faq-experience-grid i:nth-child(5) { top: 58%; }
.faq-experience-grid i:nth-child(6) { bottom: 9%; }

.faq-experience-shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -24%;
  z-index: 1;
  width: 15vw;
  min-width: 110px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(234, 213, 162, 0.075), transparent);
  transform: skewX(-13deg);
  will-change: transform;
}

.faq-experience-track {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 7vw;
  padding: 112px 9vw 102px;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  will-change: transform;
}

.faq-chapter {
  position: relative;
  display: grid;
  flex: 0 0 min(82vw, 1240px);
  width: min(82vw, 1240px);
  height: min(72svh, 700px);
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.faq-chapter:nth-child(even) {
  grid-template-columns: minmax(0, 1.42fr) minmax(240px, 0.58fr);
}

.faq-chapter:nth-child(even) .faq-person {
  grid-column: 2;
}

.faq-chapter:nth-child(even) .faq-dialogue {
  grid-row: 1;
  grid-column: 1;
}

.faq-person {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 13px;
  margin: 0;
  transform: translateZ(72px);
  transform-style: preserve-3d;
}

.faq-person-frame {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 213, 162, 0.27);
  border-radius: 8px;
  background: var(--ink-raised);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.42);
}

.faq-person-frame::before,
.faq-person-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.faq-person-frame::before {
  border: 8px solid rgba(9, 9, 8, 0.24);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.08);
}

.faq-person-frame::after {
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.03) 45%, rgba(9, 9, 8, 0.44)),
    linear-gradient(115deg, rgba(198, 161, 91, 0.12), transparent 28%);
}

.faq-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-chapter.is-active .faq-person img {
  filter: saturate(0.94) contrast(1.04) brightness(1);
  transform: scale(1.015);
}

.faq-person figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-person figcaption span {
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.faq-dialogue {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(18px, 2.2vh, 28px);
  padding: clamp(28px, 4.2vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(234, 213, 162, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(132deg, rgba(255, 253, 248, 0.115), rgba(255, 253, 248, 0.035) 42%, rgba(198, 161, 91, 0.07)),
    rgba(24, 22, 18, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.14),
    inset 0 -1px 0 rgba(198, 161, 91, 0.09),
    0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(1.12);
  transform: translateZ(118px);
  transform-style: preserve-3d;
}

.faq-dialogue::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -48%;
  width: 27%;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.17), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-16deg) translate3d(0, 0, 0);
}

.faq-chapter.is-active .faq-dialogue::before {
  animation: faq-glass-shine 4.8s 700ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes faq-glass-shine {
  0%, 68% { opacity: 0; transform: skewX(-16deg) translate3d(0, 0, 0); }
  75% { opacity: 0.55; }
  90%, 100% { opacity: 0; transform: skewX(-16deg) translate3d(720%, 0, 0); }
}

.faq-dialogue::after {
  position: absolute;
  top: 34%;
  left: -11px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid rgba(234, 213, 162, 0.23);
  border-left: 1px solid rgba(234, 213, 162, 0.23);
  background: rgba(29, 27, 23, 0.86);
  content: "";
  transform: rotate(45deg);
}

.faq-chapter:nth-child(even) .faq-dialogue::after {
  right: -11px;
  left: auto;
  border: 0;
  border-top: 1px solid rgba(234, 213, 162, 0.23);
  border-right: 1px solid rgba(234, 213, 162, 0.23);
}

.faq-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-speaker::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.faq-dialogue h3 {
  max-width: 21ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 3.55vw, 4.2rem);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.faq-answer {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 228, 204, 0.18);
}

.faq-answer > span {
  padding-top: 3px;
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-answer p {
  max-width: 61ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  line-height: 1.72;
}

.faq-experience-controls {
  position: fixed;
  right: var(--page-pad);
  bottom: 24px;
  left: var(--page-pad);
  z-index: 6;
  display: grid;
  grid-template-columns: 48px minmax(160px, 420px) 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  pointer-events: none;
}

.faq-experience-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(234, 213, 162, 0.28);
  border-radius: 50%;
  background: rgba(17, 16, 14, 0.72);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1.05rem;
  pointer-events: auto;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-experience-controls button:hover,
.faq-experience-controls button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  outline: none;
  transform: scale(1.04);
}

.faq-experience-controls button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.faq-experience-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(240, 228, 204, 0.17);
}

.faq-experience-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
}

.faq-experience-hint {
  position: fixed;
  right: var(--page-pad);
  bottom: 38px;
  z-index: 5;
  margin: 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .main-nav-faq {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    text-align: left;
  }

  .main-nav-faq::after { display: none; }

  .faq-experience-header {
    grid-template-columns: 1fr auto 52px;
    gap: 16px;
  }

  .faq-experience-brand { display: none; }
  .faq-experience-heading { justify-self: start; text-align: left; }
  .faq-chapter { flex-basis: 86vw; width: 86vw; gap: 40px; }
  .faq-dialogue h3 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
  .faq-experience-hint { display: none; }
}

@media (max-width: 767px) {
  .faq-experience-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto 46px;
    gap: 10px;
    padding: 0 16px;
  }

  .faq-experience-heading p { font-size: 0.5rem; }
  .faq-experience-heading h2 {
    overflow: hidden;
    max-width: 25ch;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .faq-experience-count {
    grid-template-columns: auto 22px auto;
    gap: 6px;
    font-size: 0.56rem;
  }

  .faq-experience-close { width: 44px; height: 44px; font-size: 1.5rem; }
  .faq-experience-scroll { height: 460svh; min-height: 2700px; }
  .faq-experience-stage { min-height: 560px; }
  .faq-experience-grid { inset: 76px 0 0; }
  .faq-experience-grid i:nth-child(1),
  .faq-experience-grid i:nth-child(3) { display: none; }

  .faq-experience-track {
    gap: 12vw;
    padding: 88px 6vw 86px;
  }

  .faq-chapter,
  .faq-chapter:nth-child(even) {
    flex-basis: 88vw;
    width: 88vw;
    height: calc(100svh - 184px);
    min-height: 540px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 0.82fr) minmax(0, 1.18fr);
    gap: 14px;
  }

  .faq-chapter:nth-child(even) .faq-person,
  .faq-chapter:nth-child(even) .faq-dialogue {
    grid-row: auto;
    grid-column: 1;
  }

  .faq-person {
    height: 100%;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    transform: translateZ(34px);
  }

  .faq-person figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    background: rgba(9, 9, 8, 0.76);
    font-size: 0.48rem;
    backdrop-filter: blur(8px);
  }

  .faq-person img {
    object-position: center 12%;
    transform: scale(1);
    transform-origin: center;
  }

  .faq-chapter.is-active .faq-person img { transform: scale(1.025); }

  .faq-dialogue {
    align-content: start;
    gap: 12px;
    padding: 19px 18px 20px;
    transform: translateZ(56px);
  }

  .faq-dialogue::after { display: none; }
  .faq-speaker { gap: 8px; font-size: 0.5rem; }
  .faq-speaker::before { width: 22px; }

  .faq-dialogue h3 {
    max-width: 21ch;
    font-size: clamp(1.42rem, 6.8vw, 2rem);
    line-height: 1.02;
  }

  .faq-answer {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 12px;
  }

  .faq-answer > span { font-size: 0.49rem; }
  .faq-answer p { font-size: 0.78rem; line-height: 1.5; }

  .faq-experience-controls {
    right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 16px;
    grid-template-columns: 44px minmax(90px, 1fr) 44px;
    gap: 12px;
  }

  .faq-experience-controls button { width: 44px; height: 44px; }
}

@media (max-width: 380px), (max-height: 700px) and (max-width: 767px) {
  .faq-experience-heading h2 { display: none; }
  .faq-chapter,
  .faq-chapter:nth-child(even) {
    height: calc(100svh - 168px);
    min-height: 470px;
    grid-template-rows: minmax(150px, 0.68fr) minmax(0, 1.32fr);
  }
  .faq-dialogue { padding: 15px; gap: 9px; }
  .faq-dialogue h3 { font-size: 1.35rem; }
  .faq-answer p { font-size: 0.72rem; line-height: 1.42; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-experience-scroll {
    height: 100svh;
    min-height: 640px;
  }

  .faq-experience-track {
    right: 0;
    width: auto;
    padding-right: 9vw;
  }

  .faq-chapter {
    position: absolute;
    inset: 112px 9vw 102px;
    width: auto;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transform: none !important;
  }

  .faq-chapter.is-active {
    visibility: visible;
    opacity: 1;
  }

  .faq-chapter.is-active .faq-dialogue::before { animation: none; }
  .faq-experience-shine { display: none; }
}
