:root {
  --faq-wine: #b22a1d;
  --faq-wine-dark: #7d1b13;
  --faq-ink: #211e1c;
  --faq-muted: #68615e;
  --faq-line: #e5ded9;
  --faq-soft: #f7f4f2;
  --faq-blush: #f1e4df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--faq-ink); }
.header { z-index: 50; }
.menuBtn { border: 0; background: transparent; cursor: pointer; }
.srOnly { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.faqHero { margin-top: 65px; padding: 64px 0 58px; overflow: hidden; background: radial-gradient(circle at 82% 18%, rgba(178,42,29,.14), transparent 28%), linear-gradient(135deg, #f6f2ef 0%, #fff 58%, #efe0da 100%); border-bottom: 1px solid var(--faq-line); }
.faqHeroInner { max-width: 850px; text-align: center; }
.faqEyebrow { margin-bottom: 13px; color: var(--faq-wine); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.faqHero h1 { margin: 0 0 14px; font-size: clamp(40px, 6vw, 62px); line-height: 1.04; letter-spacing: -.045em; }
.faqHero > .pageWidth > p { margin: 0 auto; color: #554e4a; font-size: 18px; line-height: 1.65; }
.faqSearchBox { position: relative; display: flex; align-items: center; max-width: 720px; height: 64px; margin: 32px auto 10px; padding: 0 55px 0 58px; border: 1px solid rgba(85,65,57,.18); border-radius: 14px; background: #fff; box-shadow: 0 16px 42px rgba(63,38,28,.12); }
.faqSearchBox > svg { position: absolute; left: 22px; width: 23px; height: 23px; fill: none; stroke: var(--faq-wine); stroke-width: 2; stroke-linecap: round; }
.faqSearchBox input { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; color: var(--faq-ink); font: inherit; font-size: 16px; }
.faqSearchBox input::placeholder { color: #908783; }
.faqSearchBox button { position: absolute; right: 15px; display: none; width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--faq-soft); color: #57504d; cursor: pointer; font-size: 24px; line-height: 1; }
.faqSearchBox button.visible { display: block; }
.faqSearchBox:focus-within { border-color: var(--faq-wine); box-shadow: 0 16px 42px rgba(63,38,28,.12), 0 0 0 3px rgba(178,42,29,.12); }
.faqHero .faqSearchHint { color: #7b726e; font-size: 13px; font-weight: 700; }

.faqMain { padding: 42px 0 78px; }
.faqChips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 18px; }
.faqChip { min-height: 42px; padding: 9px 15px; border: 1px solid var(--faq-line); border-radius: 999px; background: #fff; color: #46403d; cursor: pointer; font: inherit; font-size: 14px; font-weight: 700; transition: .18s ease; }
.faqChip span { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-left: 5px; padding: 0 5px; border-radius: 999px; background: var(--faq-soft); font-size: 12px; }
.faqChip:hover { border-color: #c9b6ae; transform: translateY(-1px); }
.faqChip.active { border-color: var(--faq-wine); background: var(--faq-wine); color: #fff; }
.faqChip.active span { background: rgba(255,255,255,.18); }
.faqStatus { margin: 0 0 34px; color: #766e6a; font-size: 13px; font-weight: 700; text-align: center; }

.faqGroups { max-width: 1000px; margin: 0 auto; }
.faqGroup { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 34px; margin-bottom: 54px; scroll-margin-top: 90px; }
.faqGroup[hidden], .faqItem[hidden] { display: none !important; }
.faqGroupTitle { position: sticky; top: 94px; align-self: start; display: flex; align-items: center; gap: 14px; }
.faqGroupIcon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; background: var(--faq-blush); color: var(--faq-wine); }
.faqGroupIcon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.faqGroupTitle p { margin: 0 0 2px; color: #8a817d; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.faqGroupTitle h2 { margin: 0; font-size: 23px; line-height: 1.25; }
.faqList { min-width: 0; border-top: 1px solid var(--faq-line); }
.faqItem { border-bottom: 1px solid var(--faq-line); }
.faqItem summary { position: relative; display: flex; align-items: center; min-height: 70px; padding: 18px 48px 18px 4px; color: #292523; cursor: pointer; font-size: 17px; font-weight: 750; line-height: 1.45; list-style: none; }
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary i { position: absolute; right: 7px; width: 28px; height: 28px; border-radius: 50%; background: var(--faq-soft); }
.faqItem summary i::before, .faqItem summary i::after { content: ""; position: absolute; top: 13px; left: 8px; width: 12px; height: 2px; background: var(--faq-wine); transition: transform .2s ease; }
.faqItem summary i::after { transform: rotate(90deg); }
.faqItem[open] summary { color: var(--faq-wine-dark); }
.faqItem[open] summary i::after { transform: rotate(0); }
.faqItem summary:hover { color: var(--faq-wine); }
.faqAnswer { padding: 0 48px 22px 4px; }
.faqAnswer p { margin: 0; color: #5a5350; font-size: 15.5px; line-height: 1.78; }
.faqAnswer a, .faqSourceNote a { color: var(--faq-wine); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.faqEmpty { max-width: 600px; margin: 30px auto 60px; padding: 42px; border: 1px solid var(--faq-line); border-radius: 18px; background: var(--faq-soft); text-align: center; }
.faqEmpty span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 15px; border-radius: 50%; background: var(--faq-blush); color: var(--faq-wine); font-size: 28px; font-weight: 800; }
.faqEmpty h2 { margin: 0 0 8px; font-size: 25px; }
.faqEmpty p { margin: 0 0 20px; color: var(--faq-muted); }
.faqReset { min-height: 43px; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--faq-wine); color: #fff; cursor: pointer; font: inherit; font-weight: 700; }

.faqSupport { display: flex; align-items: center; justify-content: space-between; gap: 38px; max-width: 1000px; margin: 24px auto 0; padding: 38px 42px; border-radius: 18px; background: #211e1c; color: #fff; }
.faqSupport > div:first-child { max-width: 650px; }
.faqSupportLabel { color: #efaea1; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.faqSupport h2 { margin: 6px 0 9px; color: #fff; font-size: 29px; }
.faqSupport p { margin: 0; color: #e8e1dd; line-height: 1.7; }
.faqSupportActions { display: flex; flex: 0 0 auto; gap: 10px; }
.faqPrimary, .faqSecondary { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.faqPrimary { background: var(--faq-wine); color: #fff; }
.faqSecondary { border-color: #706764; color: #fff; }
.faqSourceNote { max-width: 900px; margin: 20px auto 0; color: #817873; font-size: 12.5px; line-height: 1.65; text-align: center; }

.footer .footLinks dl:first-child { padding-right: 44px; }
.footer .footLinks dl dd { float: none; }
.footer .footLinks dl a { color: #333; }

@media (max-width: 980px) {
  .faqGroup { grid-template-columns: 1fr; gap: 17px; }
  .faqGroupTitle { position: static; }
  .faqSupport { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 768px) {
  .faqHero { padding: 44px 0 42px; }
  .faqHero h1 { font-size: 39px; }
  .faqHero > .pageWidth > p { font-size: 16px; }
  .faqSearchBox { height: 58px; margin-top: 25px; padding-left: 51px; border-radius: 12px; }
  .faqSearchBox > svg { left: 18px; width: 21px; }
  .faqSearchBox input { font-size: 15px; }
  .faqChips { flex-wrap: nowrap; justify-content: flex-start; margin-right: -4%; overflow-x: auto; padding: 2px 4% 9px 0; scrollbar-width: none; }
  .faqChips::-webkit-scrollbar { display: none; }
  .faqChip { flex: 0 0 auto; }
  .faqMain { padding: 32px 0 58px; }
  .faqGroup { margin-bottom: 42px; }
  .faqItem summary { min-height: 66px; padding: 16px 44px 16px 2px; font-size: 16px; }
  .faqAnswer { padding: 0 43px 20px 2px; }
  .faqAnswer p { font-size: 15px; }
  .faqSupport { padding: 30px; }
  .faqSupportActions { width: 100%; flex-wrap: wrap; }
  .faqPrimary, .faqSecondary { flex: 1 1 150px; }
  .footer .footLinks dl { width: 100%; padding: 0 0 25px !important; }
}

@media (max-width: 430px) {
  .faqHero h1 { font-size: 34px; }
  .faqGroupTitle h2 { font-size: 21px; }
  .faqSupport { padding: 25px; }
  .faqSupport h2 { font-size: 25px; }
}

@media print {
  .header, .footer, .faqSearchBox, .faqChips, .faqStatus, .faqSupport, .faqSourceNote { display: none !important; }
  .faqHero { margin: 0; padding: 0 0 25px; background: #fff; }
  .faqGroup { display: block; }
  .faqGroupTitle { margin-bottom: 15px; }
  .faqItem:not([open]) .faqAnswer { display: block; }
}
