.page-faq {
  --faq-bg-card: #FBF7ED;
  --faq-line: rgba(10, 22, 40, 0.12);
  --faq-gold-soft: rgba(200, 164, 78, 0.16);
  --faq-red-soft: rgba(216, 76, 60, 0.12);
  --faq-radius: 18px;
  --faq-radius-lg: 28px;
  background: var(--deep);
  color: var(--cream);
}

.page-faq .faq-crumb {
  padding-top: 28px;
}

.page-faq .faq-crumb .breadcrumb__link {
  color: rgba(245, 239, 224, 0.75);
}

.page-faq .faq-crumb .breadcrumb__link:hover {
  color: var(--gold);
}

.page-faq .faq-crumb .breadcrumb__current {
  color: var(--gold);
}

.page-faq .faq-hero {
  position: relative;
  padding: 24px 0 56px;
  background:
    radial-gradient(ellipse at 12% 18%, var(--faq-gold-soft), transparent 46%),
    radial-gradient(ellipse at 92% 88%, rgba(216, 76, 60, 0.14), transparent 50%),
    linear-gradient(135deg, var(--deep) 0%, var(--mid) 100%);
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
}

.page-faq .faq-hero__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-faq .faq-hero .section-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-faq .faq-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 900;
  color: var(--cream);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.page-faq .faq-hero__lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}

.page-faq .faq-hero__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 239, 224, 0.82);
  max-width: 34em;
  margin: 0 0 18px;
}

.page-faq .faq-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-faq .faq-hero__visual {
  position: relative;
  border-radius: var(--faq-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 164, 78, 0.32);
  aspect-ratio: 12 / 5;
}

.page-faq .faq-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-faq .faq-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 20px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.12);
}

.page-faq .faq-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.page-faq .faq-stats__num {
  font-family: var(--font-data);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.page-faq .faq-stats__label {
  font-size: 0.9rem;
  color: rgba(245, 239, 224, 0.8);
}

.page-faq .faq-stats__divider {
  width: 1px;
  height: 18px;
  background: rgba(245, 239, 224, 0.25);
  margin: 0 6px;
}

.page-faq .faq-stats__tip {
  font-size: 0.82rem;
  color: rgba(245, 239, 224, 0.55);
}

.page-faq .faq-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.page-faq .faq-filter__btn {
  flex: 0 0 auto;
  border: 1px solid rgba(245, 239, 224, 0.2);
  background: rgba(245, 239, 224, 0.06);
  color: rgba(245, 239, 224, 0.75);
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-faq .faq-filter__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-faq .faq-filter__btn[data-active] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}

.page-faq .faq-layout {
  display: grid;
  gap: 32px;
  padding: 40px 0 64px;
}

.page-faq .faq-sidebar__inner {
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(245, 239, 224, 0.12);
  border-radius: var(--faq-radius);
  padding: 18px 20px;
  overflow-x: auto;
}

.page-faq .faq-sidebar__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.page-faq .faq-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.page-faq .faq-sidebar__link {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  color: rgba(245, 239, 224, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-faq .faq-sidebar__link:hover {
  background: rgba(200, 164, 78, 0.12);
  color: var(--gold);
  border-color: rgba(200, 164, 78, 0.2);
}

.page-faq .faq-sidebar__cta {
  display: none;
  margin-top: 4px;
}

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

.page-faq .faq-section {
  margin-bottom: 48px;
  scroll-margin-top: 72px;
}

.page-faq .faq-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.page-faq .faq-section__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 164, 78, 0.4), transparent);
}

.page-faq .faq-item {
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(2, 8, 18, 0.14);
  overflow: hidden;
  border: 1px solid var(--faq-line);
  transition: box-shadow 0.2s ease;
}

.page-faq .faq-item[open] {
  box-shadow: 0 6px 20px rgba(2, 8, 18, 0.22);
}

.page-faq .faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink);
  list-style: none;
  user-select: none;
}

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

.page-faq .faq-item__summary:hover {
  background: var(--faq-gold-soft);
}

.page-faq .faq-item__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--faq-gold-soft);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-faq .faq-item__icon::before,
.page-faq .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border-radius: 2px;
}

.page-faq .faq-item__icon::before {
  width: 12px;
  height: 2px;
}

.page-faq .faq-item__icon::after {
  width: 2px;
  height: 12px;
}

.page-faq .faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--faq-red-soft);
}

.page-faq .faq-item__answer {
  padding: 0 18px 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(17, 29, 51, 0.86);
  border-top: 1px dashed var(--faq-line);
}

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

.page-faq .faq-item__answer a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.page-faq .faq-contact {
  background: var(--cream);
  color: var(--ink);
  border-radius: 32px 32px 0 0;
  padding: 56px 0;
}

.page-faq .faq-contact__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-faq .faq-contact__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 1;
}

.page-faq .faq-contact__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-faq .faq-contact__body {
  color: var(--ink);
}

.page-faq .faq-contact__body .section-eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-faq .faq-contact__body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.page-faq .faq-contact__body > p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(17, 29, 51, 0.8);
  max-width: 34em;
}

.page-faq .faq-contact__email {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--sand);
  border: 1px dashed var(--gold);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 8px 0 16px;
}

.page-faq .faq-contact__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
  color: rgba(17, 29, 51, 0.68);
  margin-bottom: 20px;
}

.page-faq .faq-contact__meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .page-faq .faq-hero__inner {
    grid-template-columns: 1fr 1.1fr;
  }

  .page-faq .faq-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-faq .faq-contact__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-faq .faq-contact__meta {
    flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 960px) {
  .page-faq .faq-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 44px;
  }

  .page-faq .faq-sidebar__inner {
    position: sticky;
    top: 96px;
    overflow: visible;
  }

  .page-faq .faq-sidebar__list {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .page-faq .faq-sidebar__cta {
    display: inline-flex;
  }
}
