.fq-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--theme-accent);
  opacity: 0.65;
  margin: 0 auto 20px;
}

.fq-hero {
  background: var(--theme-surface-card);
  padding: 168px 7vw 88px;
  text-align: center;
}

.fq-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 22px;
}

.fq-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--theme-secondary);
  margin: 0;
}

.fq-hero-title em {
  display: block;
  font-style: italic;
  color: var(--theme-primary);
  margin-top: 6px;
}

.fq-hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.62;
  color: rgba(42, 33, 24, 0.72);
  max-width: 560px;
  margin: 26px auto 0;
}

.fq-main {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 7vw;
}

.fq-group + .fq-group { margin-top: clamp(44px, 6vw, 72px); }

.fq-group-title {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 148, 90, 0.35);
}

.fq-item {
  border-bottom: 1px solid rgba(42, 33, 24, 0.14);
}

.fq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 25px 2px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  color: var(--theme-secondary);
  transition: color 0.25s ease;
}

.fq-item summary::-webkit-details-marker { display: none; }
.fq-item summary:hover { color: var(--theme-primary); }

.fq-icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.fq-icon::before,
.fq-icon::after {
  content: "";
  position: absolute;
  background: var(--theme-accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fq-icon::before { left: 0; top: 6.25px; width: 14px; height: 1.5px; }
.fq-icon::after  { left: 6.25px; top: 0; width: 1.5px; height: 14px; }

.fq-item[open] .fq-icon::after { transform: rotate(90deg); opacity: 0; }

.fq-answer {
  padding: 0 2px 26px;
  max-width: 660px;
}

.fq-answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.16rem;
  line-height: 1.64;
  color: rgba(42, 33, 24, 0.74);
  margin: 0;
}

.fq-answer p + p { margin-top: 12px; }

.fq-answer a {
  color: var(--theme-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 148, 90, 0.55);
  transition: color 0.25s ease;
}

.fq-answer a:hover { color: var(--theme-primary); }

.fq-support {
  background: var(--theme-primary);
  padding: clamp(60px, 7vw, 92px) 7vw;
  text-align: center;
}

.fq-support-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.6);
  margin: 0 0 16px;
}

.fq-support-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--theme-bg);
  margin: 0 0 14px;
}

.fq-support-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(248, 244, 238, 0.72);
  max-width: 460px;
  margin: 0 auto 32px;
}

.fq-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 38px;
  background: var(--theme-bg);
  color: var(--theme-secondary);
  border: 1px solid var(--theme-bg);
  transition: background 0.3s ease, color 0.3s ease;
}

.fq-btn:hover { background: transparent; color: var(--theme-bg); }

@media (max-width: 880px) {
  .fq-hero { padding: 138px 7vw 70px; }
}