/* FAQ helper page: a question-led editorial board derived from the homepage palette. */
:root {
  --faq-ink: #080808;
  --faq-muted: #4e4c51;
  --faq-paper: #fffdfb;
  --faq-pink: #fa7da9;
  --faq-lilac: #9168f3;
  --faq-cyan: #64c9ef;
  --faq-line: rgba(8, 8, 8, .8);
}

html { scroll-behavior: smooth; }
body.faq-page {
  min-width: 320px;
  background: var(--faq-paper);
  color: var(--faq-ink);
  font-family: Arial, Helvetica, sans-serif;
}

/* The copied homepage navigation is an opaque, in-flow helper surface. */
.faq-shell-header {
  position: relative;
  z-index: 20;
  min-height: 134px;
  background: #fff;
  border-bottom: 1px solid var(--faq-line);
}
.faq-shell-header [data-homepage-region-content] {
  min-height: 0;
  overflow: visible;
  background: #fff;
  background-image: none;
}
.faq-shell-header .hero-nav {
  min-height: 134px;
  padding: 22px clamp(24px, 7vw, 112px);
  background: #fff;
}
.faq-shell-header .brand {
  flex: 0 0 auto;
  width: 150px;
  height: 76px;
  background: #fff;
  border: 1px solid var(--faq-ink);
}
.faq-shell-header .nav-panel { align-items: center; }
.faq-shell-header .nav-panel a,
.faq-shell-header .phone,
.faq-shell-header .faq-search-trigger {
  color: var(--faq-ink);
  font: inherit;
  font-size: 17px;
}
.faq-shell-header .nav-panel a,
.faq-shell-header .phone { text-decoration: none; }
.faq-shell-header .nav-panel a:hover,
.faq-shell-header .phone:hover { text-decoration: underline; text-underline-offset: 4px; }
.faq-shell-header .phone { border-left-color: var(--faq-cyan); }
.faq-shell-header .faq-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--faq-ink);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.faq-shell-header .faq-search-trigger:hover,
.faq-shell-header .faq-search-trigger:focus-visible { background: #f4efff; }
.faq-search-trigger__icon {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.faq-search-trigger__icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
}
.faq-search-panel {
  border-top: 1px solid rgba(8, 8, 8, .18);
  background: #f4efff;
  padding: 0 clamp(24px, 7vw, 112px) 26px;
  animation: faq-search-drop 180ms ease-out;
}
.faq-search-panel[hidden] { display: none; }
.faq-search-panel__form { max-width: 1050px; margin: 0 auto; padding-top: 22px; }
.faq-search-panel__form > label {
  display: block;
  margin-bottom: 9px;
  color: var(--faq-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.faq-search-panel__input-row { display: flex; gap: 10px; }
.faq-search-panel input {
  min-width: 0;
  flex: 1 1 auto;
  border: 1px solid var(--faq-ink);
  border-radius: 999px;
  background: #fff;
  color: var(--faq-ink);
  font: inherit;
  font-size: 17px;
  padding: 14px 18px;
}
.faq-search-panel button { font: inherit; cursor: pointer; }
.faq-search-panel__submit,
.faq-search-panel__clear,
.faq-search-panel__close {
  border: 1px solid var(--faq-ink);
  border-radius: 999px;
  padding: 0 19px;
}
.faq-search-panel__submit { background: var(--faq-ink); color: #fff; }
.faq-search-panel__clear { background: #fff; color: var(--faq-ink); }
.faq-search-panel__close { background: transparent; color: var(--faq-ink); }
.faq-search-panel button:hover,
.faq-search-panel button:focus-visible { box-shadow: 0 0 0 3px rgba(100, 201, 239, .6); }
.faq-search-panel__status { margin: 14px 0 0; color: var(--faq-muted); font-size: 14px; }
.faq-search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.faq-search-results li { min-width: 0; }
.faq-search-results li[hidden] { display: none; }
.faq-search-results a {
  display: block;
  height: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(8, 8, 8, .65);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--faq-ink);
  text-decoration: none;
}
.faq-search-results a:hover,
.faq-search-results a:focus-visible { background: #fff; transform: translateY(-2px); }
.faq-search-results a > span { display: block; margin-top: 5px; color: var(--faq-muted); font-size: 13px; line-height: 1.3; }

.faq-main { background: var(--faq-paper); }
.faq-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: clamp(30px, 7vw, 120px);
  align-items: end;
  min-height: 610px;
  padding: clamp(70px, 9vw, 145px) max(24px, calc((100% - 1520px) / 2)) clamp(65px, 8vw, 130px);
  background:
    radial-gradient(circle at 76% 22%, rgba(100, 201, 239, .22), transparent 26%),
    linear-gradient(112deg, #fff 0%, #fff9fb 47%, #f4efff 100%);
}
.faq-hero__copy { position: relative; z-index: 1; max-width: 780px; }
.faq-eyebrow,
.faq-section__number {
  margin: 0 0 22px;
  color: var(--faq-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.faq-hero h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 148px);
  font-weight: 700;
  letter-spacing: -.085em;
  line-height: .86;
}
.faq-hero h1 em { color: var(--faq-pink); font-style: normal; }
.faq-hero__intro {
  max-width: 590px;
  margin: clamp(36px, 5vw, 72px) 0 28px;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.3;
}
.faq-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--faq-ink);
  color: var(--faq-ink);
  font-size: 17px;
  font-weight: 700;
  padding: 8px 0;
  text-decoration: none;
}
.faq-hero__link span { color: var(--faq-lilac); font-size: 26px; line-height: .7; }
.faq-hero__link:hover { color: var(--faq-lilac); }
.faq-hero__art {
  align-self: stretch;
  min-height: 390px;
  border: 2px solid var(--faq-cyan);
  border-radius: 48% 48% 14px 14px / 27% 27% 14px 14px;
  background: url("../assets/figma/rectangle-11-6-566.webp") center / cover no-repeat;
}
.faq-hero__index {
  position: absolute;
  right: max(24px, calc((100% - 1520px) / 2));
  bottom: 38px;
  display: flex;
  gap: 13px;
  align-items: end;
  color: var(--faq-muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}
.faq-hero__index span:first-child { color: var(--faq-lilac); font-size: 30px; font-weight: 700; }

.faq-section {
  display: grid;
  grid-template-columns: minmax(230px, 30%) minmax(0, 1fr);
  gap: clamp(30px, 8vw, 150px);
  padding: clamp(70px, 9vw, 140px) max(24px, calc((100% - 1320px) / 2));
  border-top: 1px solid var(--faq-line);
}
.faq-section--start { background: #fff; }
.faq-section--mint { background: #eafff2; }
.faq-section--lilac { background: #f0eaff; }
.faq-section--sky { background: #eaf9ff; }
.faq-section--peach { background: #fff0e8; }
.faq-section--cream { background: #fffde8; }
.faq-section__heading h2,
.faq-contact h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(37px, 4.3vw, 70px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
}
.faq-section__body { max-width: 790px; }
.faq-section__lead {
  max-width: 620px;
  margin: 0 0 44px;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.22;
}
.faq-accordion { border-top: 1px solid var(--faq-line); }
.faq-accordion details { border-bottom: 1px solid var(--faq-line); }
.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 17px 0;
  cursor: pointer;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  list-style: none;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary b {
  flex: 0 0 36px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--faq-ink);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.faq-accordion details[open] summary b { transform: rotate(45deg); background: #fff; }
.faq-accordion summary:focus-visible { outline: 3px solid var(--faq-cyan); outline-offset: 4px; }
.faq-accordion details p {
  max-width: 650px;
  margin: -2px 58px 28px 0;
  color: var(--faq-muted);
  font-size: 17px;
  line-height: 1.5;
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 30%);
  gap: 40px;
  padding: clamp(70px, 9vw, 140px) max(24px, calc((100% - 1320px) / 2));
  background: #080808;
  color: #fff;
}
.faq-contact__panel { max-width: 760px; }
.faq-contact .faq-section__number { color: #b8e9f8; }
.faq-contact h2 { max-width: 600px; color: #fff; font-size: clamp(52px, 7vw, 112px); }
.faq-contact__panel > p:not(.faq-section__number) { max-width: 560px; margin: 34px 0 38px; color: #e6e1e4; font-size: 20px; line-height: 1.35; }
.faq-contact__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.faq-contact__button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 14px 20px 14px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.faq-contact__button span { color: #b8e9f8; font-size: 24px; }
.faq-contact__button:hover { background: #fff; color: #080808; }
.faq-contact__phone { color: #fff; font-size: 17px; text-underline-offset: 4px; }
.faq-contact__note { align-self: end; color: #fa7da9; font-size: clamp(28px, 3vw, 50px); font-weight: 700; letter-spacing: -.06em; line-height: .93; }

/* Keep the copied footer's column ownership while making every destination a link. */
[data-homepage-region="15-site-footer"] .site-footer__topics { gap: 24px; }
[data-homepage-region="15-site-footer"] .site-footer__topics .site-footer__topic {
  display: block;
  color: inherit;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}
[data-homepage-region="15-site-footer"] .site-footer__topics .site-footer__topic:hover,
[data-homepage-region="15-site-footer"] .site-footer__topics .site-footer__topic:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
[data-homepage-region="15-site-footer"] .site-footer__legal { position: relative; }
[data-homepage-region="15-site-footer"] .site-footer__cookie-settings {
  margin-top: 22px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  padding: 0 0 3px;
}
[data-homepage-region="15-site-footer"] .site-footer__cookie-settings:hover { color: var(--faq-lilac); }

.faq-consent-preferences {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 8, 8, .58);
}
.faq-consent-preferences[hidden] { display: none; }
.faq-consent-preferences__panel { position: relative; width: min(100%, 560px); padding: clamp(26px, 5vw, 48px); background: #fff; color: var(--faq-ink); box-shadow: 0 18px 60px rgba(0, 0, 0, .25); }
.faq-consent-preferences__heading { padding-right: 34px; }
.faq-consent-preferences h2 { margin: 0; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.07em; line-height: .95; }
.faq-consent-preferences__panel > p { margin: 24px 0; color: var(--faq-muted); line-height: 1.4; }
.faq-consent-preferences__close { position: absolute; top: 20px; right: 20px; border: 0; background: transparent; color: var(--faq-ink); cursor: pointer; font-size: 28px; line-height: 1; }
.faq-consent-preferences__choice { display: flex; align-items: flex-start; gap: 12px; padding: 16px 0; border-top: 1px solid rgba(8, 8, 8, .25); cursor: pointer; }
.faq-consent-preferences__choice input { accent-color: var(--faq-lilac); margin-top: 3px; }
.faq-consent-preferences__choice span { display: grid; gap: 4px; }
.faq-consent-preferences__choice small { color: var(--faq-muted); line-height: 1.35; }
.faq-consent-preferences__save { width: 100%; margin-top: 20px; border: 1px solid var(--faq-ink); border-radius: 999px; background: var(--faq-ink); color: #fff; cursor: pointer; font: inherit; font-weight: 700; padding: 14px 20px; }
.faq-consent-preferences__save:hover { background: var(--faq-lilac); border-color: var(--faq-lilac); }

@keyframes faq-search-drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1200px) {
  .faq-shell-header .hero-nav { padding-inline: 5vw; }
  .faq-shell-header .nav-panel { gap: 20px; }
  .faq-shell-header .nav-panel a,
  .faq-shell-header .phone,
  .faq-shell-header .faq-search-trigger { font-size: 15px; }
  .faq-shell-header .phone { margin-left: 18px; padding-left: 22px; }
  .faq-hero { grid-template-columns: minmax(0, 1fr) minmax(220px, 35%); }
  .faq-section { gap: 50px; }
}

@media (max-width: 760px) {
  .faq-shell-header { min-height: 0; }
  .faq-shell-header .hero-nav { min-height: 92px; flex-wrap: wrap; gap: 14px; padding: 16px 20px; }
  .faq-shell-header .brand { width: 140px; height: 60px; }
  .faq-shell-header .nav-toggle { display: block; }
  .faq-shell-header .nav-panel { flex-basis: 100%; order: 5; gap: 16px; padding: 18px; background: #f4efff; }
  .faq-shell-header .faq-search-trigger { margin-left: auto; }
  .faq-shell-header .phone { order: 6; width: 100%; margin: 0; padding: 12px 0 0; border-left: 0; border-top: 1px solid var(--faq-cyan); }
  .faq-search-panel { padding-inline: 20px; }
  .faq-search-panel__input-row { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-search-panel input { grid-column: 1 / -1; width: 100%; }
  .faq-search-panel__submit,
  .faq-search-panel__clear,
  .faq-search-panel__close { min-height: 45px; }
  .faq-search-results { grid-template-columns: 1fr; }
  .faq-hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; gap: 40px; padding: 70px 20px 100px; }
  .faq-hero h1 { font-size: clamp(62px, 19vw, 108px); }
  .faq-hero__intro { font-size: 18px; }
  .faq-hero__art { min-height: 310px; width: min(100%, 440px); align-self: center; }
  .faq-hero__index { right: 20px; bottom: 38px; }
  .faq-section { display: block; padding: 64px 20px 72px; }
  .faq-section__heading { margin-bottom: 38px; }
  .faq-section__heading h2 { max-width: 520px; font-size: clamp(42px, 12vw, 66px); }
  .faq-section__lead { margin-bottom: 30px; font-size: 19px; }
  .faq-accordion summary { min-height: 68px; font-size: 18px; }
  .faq-accordion details p { margin-right: 0; font-size: 16px; }
  .faq-contact { display: block; padding: 68px 20px 76px; }
  .faq-contact h2 { font-size: clamp(54px, 17vw, 92px); }
  .faq-contact__note { margin-top: 70px; }
  [data-homepage-region="15-site-footer"] .site-footer__cookie-settings { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .faq-search-panel { animation: none; }
  .faq-search-results a { transition: none; }
}
