/* FAQ page — Figma desktop 137:2177, mobile 588:1789 (402×2470) */

.faq-page.site-main {
  margin: 0;
  padding: 0;
  max-width: none;
}

.silver-faq-page .header__bar {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.faq-page-layout {
  --faq-inset: var(--silver-inset-x);
  --faq-gold: #f0d29f;

  width: 100%;
  background: #fff;
}

/* —— Hero (718px) —— */
.faq-hero {
  position: relative;
  width: 100%;
  min-height: 718px;
  overflow: hidden;
  background: #121211;
}

.faq-hero__media {
  position: absolute;
  inset: 0;
}

.faq-hero__media,
.faq-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.faq-hero__image {
  object-fit: cover;
  object-position: center 48%;
}

.faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.faq-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 0 10%;
  text-align: center;
}

.faq-hero__eyebrow {
  margin: 0 0 24px;
  font-family: var(--font-konnect);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.faq-hero__title {
  margin: 0 0 28px;
  font-family: var(--font-konnect);
  font-size: 112px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
}

.faq-hero__title-accent {
  color: var(--faq-gold);
}

.faq-hero__description {
  max-width: 728px;
  margin: 0;
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: #fff;
}

/* —— Main: accordions —— */
.faq-main {
  padding: 164px var(--faq-inset) 96px;
}

.faq-main__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq-content {
  min-width: 0;
}

.faq-accordion__item {
  border-bottom: 1.35px solid rgba(0, 0, 0, 0.1);
}

.faq-accordion__heading {
  margin: 0;
}

.faq-accordion__trigger {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 0;
  border: 0;
  background: transparent;
  color: #121211;
  text-align: start;
  cursor: pointer;
}

.faq-accordion__trigger:focus-visible {
  outline: 2px solid var(--faq-gold);
  outline-offset: 4px;
}

.faq-accordion__question {
  flex: 1;
  min-width: 0;
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-accordion__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #121211;
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon-v {
  opacity: 0;
}

.faq-accordion__icon-v {
  transition: opacity 0.2s ease;
}

.faq-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion__panel.is-open {
  grid-template-rows: 1fr;
}

.faq-accordion__panel[hidden] {
  display: none;
}

.faq-accordion__answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 32px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.faq-accordion__panel.is-open .faq-accordion__answer {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .faq-accordion__panel,
  .faq-accordion__answer,
  .faq-accordion__icon-v {
    transition: none;
  }
}

.faq-accordion__answer p {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-konnect);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: #121211;
}

/* —— Bottom banner (479px image band) —— */
.faq-banner {
  position: relative;
  width: 100%;
  min-height: 479px;
  overflow: hidden;
  background: #ececeb;
}

.faq-banner__media {
  position: absolute;
  inset: 0;
}

.faq-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.faq-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.88) 55%,
    rgba(255, 255, 255, 0.94) 100%
  );
}

.faq-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 72px var(--faq-inset) 80px;
  text-align: center;
}

.faq-banner__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-konnect);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: #121211;
}

.faq-banner__title {
  margin: 0 0 20px;
  font-family: var(--font-konnect);
  font-size: 71px;
  font-weight: 700;
  line-height: 1.08;
  color: #121211;
}

.faq-banner__title-accent {
  color: #121211;
}

.faq-banner__text {
  max-width: 816px;
  margin: 0 0 36px;
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: #121211;
}

.faq-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 56px;
  padding: 14px 36px;
  background: var(--faq-gold);
  color: #121211;
  font-family: var(--font-konnect);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.faq-banner__button:hover {
  opacity: 0.92;
}

/* —— Mobile Figma 588:1789 (402×2470) —— */
@media (max-width: 992px) {
  /* Hero band 389px (588:1807) */
  .faq-hero {
    min-height: min(96.8vw, 389px);
  }

  .faq-hero__image {
    object-position: center 48%;
  }

  .faq-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 18, 17, 0.35) 0%,
      rgba(18, 18, 17, 0.55) 45%,
      rgba(18, 18, 17, 0.72) 100%
    );
  }

  .faq-hero__content {
    justify-content: flex-end;
    padding: 72px var(--faq-inset) 32px;
  }

  .faq-hero__eyebrow {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 300;
  }

  .faq-hero__title {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.05;
  }

  .faq-hero__description {
    max-width: 332px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;
  }

  /* Main — single column, 359px content @ x26 */
  .faq-main {
    padding: 36px var(--faq-inset) 40px;
  }

  .faq-main__inner {
    max-width: none;
  }

  .faq-accordion__item {
    border-bottom-width: 1px;
  }

  .faq-accordion__trigger {
    gap: 12px;
    min-height: 49px;
    padding: 16px 0;
  }

  .faq-accordion__question {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
  }

  .faq-accordion__icon {
    width: 18px;
    height: 18px;
  }

  .faq-accordion__icon-svg {
    width: 18px;
    height: 18px;
  }

  .faq-accordion__answer {
    padding: 0 0 16px;
  }

  .faq-accordion__answer p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
  }

  /* Bottom band 202px (588:1922) */
  .faq-banner {
    min-height: min(50.25vw, 202px);
  }

  .faq-banner__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.92) 100%
    );
  }

  .faq-banner__content {
    padding: 44px var(--faq-inset) 40px;
  }

  .faq-banner__eyebrow {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 300;
  }

  .faq-banner__title {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
  }

  .faq-banner__text {
    max-width: 296px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;
  }

  .faq-banner__button {
    width: auto;
    min-width: 140px;
    min-height: 40px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 500;
  }
}

@media (max-width: 430px) {
  .faq-page-layout {  }

  .faq-hero__description,
  .faq-banner__text {
    max-width: 100%;
  }
}
