.faq-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: white;
}
.faq-hero-copy {
  padding: 72px 40px 52px max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.faq-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0;
  font-size: 1.18rem;
  line-height: 1.55;
}
.faq-hero-image {
  min-height: 590px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
}
.faq-hero-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 542px;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--image-shadow);
}

.faq-section {
  padding: 60px max(24px, calc((100vw - var(--max)) / 2)) 68px;
  background: var(--soft);
}
.faq-section-heading { margin-bottom: 30px; text-align: center; }
.faq-section-heading h2 {
  margin: 4px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
}
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 16px rgba(0,0,0,.07);
}
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-question:hover { color: var(--red); }
.faq-question:focus-visible { outline: 3px solid rgba(200,16,25,.32); outline-offset: -3px; }
.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}
.faq-answer p { margin: 18px 0 0; color: #333; line-height: 1.7; }

.faq-final-cta {
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: linear-gradient(120deg, #c81019, #9b0710);
  color: white;
}
.faq-final-cta h2 { margin: 4px 0 12px; font-size: 2.4rem; }
.faq-final-cta p:last-child { max-width: 760px; margin: 0; line-height: 1.6; }
.faq-cta-actions { display: flex; flex-direction: column; gap: 12px; }

@media (prefers-reduced-motion: reduce) {
  .faq-toggle::before,
  .faq-toggle::after { transition: none; }
}

@media (max-width: 950px) {
  .faq-hero { grid-template-columns: 1fr; }
  .faq-hero-copy { order: 2; padding: 56px 28px 44px; }
  .faq-hero-image { order: 1; min-height: 430px; padding: 20px; }
  .faq-hero-image img { max-height: 390px; }
  .faq-final-cta { grid-template-columns: 1fr; }
  .faq-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .faq-hero-image { min-height: 340px; padding: 16px; }
  .faq-hero-image img { max-height: 308px; }
  .faq-hero h1 { font-size: 2.65rem; }
  .faq-section { padding: 48px 24px; }
  .faq-section-heading h2 { font-size: 2.1rem; }
  .faq-question { padding: 17px 18px; }
  .faq-answer { padding: 0 18px 19px; }
  .faq-final-cta h2 { font-size: 2.1rem; }
  .faq-cta-actions { display: grid; }
}
