/* =================================================================
   K-Well — FAQ page
   ================================================================= */

/* ---------- Page shell ---------- */
.faq-page { background: var(--kw-paper); }

/* ---------- Reveal: no-op now (was a fade-in that caused flicker bugs).
   Content is always visible; interaction animations carry the page. */
.reveal { opacity: 1; }

/* =================================================================
   Hero
   ================================================================= */
.faq-hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--kw-paper-cream) 0%, var(--kw-paper) 100%);
}
.faq-hero__paper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(14, 79, 142, 0.06), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(20, 17, 13, 0.04), transparent 60%);
  pointer-events: none;
}
.faq-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}
.faq-hero__copy { max-width: 640px; }
.faq-hero__h {
  margin-top: 22px;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.028em;
}
.faq-hero__h .italic-serif { color: var(--kw-blue); }

.faq-hero__lead {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.65;
  max-width: 56ch;
}
.faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--kw-stone);
  text-transform: uppercase;
}
.faq-hero__meta strong { color: var(--kw-ink); font-weight: 700; }
.faq-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--kw-ink);
  color: var(--kw-paper);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
}
.faq-hero__meta-pill strong { color: var(--kw-paper); }
.faq-hero__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--kw-bone);
}

/* Big brush 問 character */
.faq-hero__brush {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-hero__brush-ring {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(20, 17, 13, 0.12);
  background: radial-gradient(circle at 35% 30%, rgba(14, 79, 142, 0.10) 0%, transparent 60%);
  animation: kwFaqGlow 6s ease-in-out infinite alternate;
}
.faq-hero__brush-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(20, 17, 13, 0.08);
  animation: kwFaqSpin 60s linear infinite;
}
.faq-hero__brush-char {
  position: relative;
  font-family: var(--kw-font-brush);
  font-size: 240px;
  line-height: 1;
  color: var(--kw-ink);
  transform: rotate(-3deg);
  transition: transform 1200ms var(--kw-ease);
}
.faq-hero__brush:hover .faq-hero__brush-char {
  transform: rotate(-1deg) scale(1.02);
}
.faq-hero__brush-char::after {
  content: "問";
  position: absolute;
  left: 6px; top: 5px;
  color: var(--kw-blue);
  opacity: .14;
  z-index: -1;
}

@keyframes kwFaqBrushIn {
  /* legacy keyframes — not used anymore but kept harmless */
  from { opacity: 1; }
  to { opacity: 1; }
}
@keyframes kwFaqGlow {
  0%   { opacity: .55; transform: scale(.96); }
  100% { opacity: 1;   transform: scale(1.04); }
}
@keyframes kwFaqSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll cue */
.faq-hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--kw-stone);
}
.faq-hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--kw-stone) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.faq-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -20px; left: 0;
  width: 1px;
  height: 20px;
  background: var(--kw-ink);
  animation: kwFaqScrollDot 2.4s var(--kw-ease) infinite;
}
@keyframes kwFaqScrollDot {
  0%   { top: -20px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 56px; opacity: 0; }
}

/* =================================================================
   FAQ list + sticky ToC grid
   ================================================================= */
.faq-list-section {
  padding: 40px 0 140px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

/* ---------- ToC ---------- */
.faq-toc {
  position: sticky;
  top: 130px;
}
.faq-toc__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-toc__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 2px;
}
.faq-toc__btn {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--kw-bone);
  color: var(--kw-stone);
  font-family: var(--kw-font-ui);
  font-size: 13.5px;
  line-height: 1.45;
  transition: color var(--kw-dur) var(--kw-ease);
  position: relative;
}
.faq-toc__btn:hover { color: var(--kw-ink); }
.faq-toc__btn::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  width: 10px;
  height: 1px;
  background: var(--kw-blue);
  transition: transform var(--kw-dur) var(--kw-ease);
}
.faq-toc__btn--active::before { transform: translateY(-50%) scaleX(1); }
.faq-toc__btn--active {
  color: var(--kw-ink);
  font-weight: 600;
}
.faq-toc__num {
  font-family: var(--kw-font-serif);
  font-weight: 700;
  color: var(--kw-blue);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.faq-toc__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-toc__rule {
  height: 1px;
  background: var(--kw-bone);
  margin: 8px 0 4px;
}
.faq-toc__note {
  font-size: 13px;
  color: var(--kw-stone);
  line-height: 1.55;
  margin: 0;
}
.faq-toc__link {
  color: var(--kw-ink);
  border-bottom: 1px solid var(--kw-ink);
  padding-bottom: 1px;
  transition: color var(--kw-dur) var(--kw-ease), border-color var(--kw-dur) var(--kw-ease);
}
.faq-toc__link:hover { color: var(--kw-blue); border-color: var(--kw-blue); }

/* =================================================================
   FAQ items — accordion
   ================================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  position: relative;
  border-top: 1px solid var(--kw-bone);
  scroll-margin-top: 120px;
}
.faq-item:last-child { border-bottom: 1px solid var(--kw-bone); }

.faq-item__head {
  display: grid;
  grid-template-columns: 88px 1fr 60px;
  gap: 28px;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 38px 0;
  background: transparent;
  cursor: pointer;
  transition: background var(--kw-dur) var(--kw-ease);
}
.faq-item__head:hover { background: rgba(20, 17, 13, 0.025); }

.faq-item__num {
  font-family: var(--kw-font-brush);
  font-size: 76px;
  line-height: .9;
  color: var(--kw-ink);
  transition: color var(--kw-dur) var(--kw-ease), transform var(--kw-dur) var(--kw-ease);
  padding-top: 2px;
  display: inline-block;
}
.faq-item--open .faq-item__num {
  color: var(--kw-blue);
  transform: rotate(-4deg) translateX(-2px);
}

.faq-item__head-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.faq-item__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--kw-stone);
}
.faq-item__num-label {
  margin-left: 8px;
  color: var(--kw-wash);
  font-weight: 500;
}
.faq-item__q {
  font-family: var(--kw-font-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--kw-ink);
  transition: color var(--kw-dur) var(--kw-ease);
}
.faq-item--open .faq-item__q { color: var(--kw-ink); }
.faq-item__short {
  font-size: 15px;
  color: var(--kw-stone);
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
  font-style: italic;
  font-family: var(--kw-font-serif);
  opacity: .82;
}

/* + / × icon */
.faq-item__plus {
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: 6px;
  margin-left: auto;
  border: 1px solid var(--kw-bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--kw-dur) var(--kw-ease), border-color var(--kw-dur) var(--kw-ease), transform var(--kw-dur) var(--kw-ease);
}
.faq-item__head:hover .faq-item__plus {
  border-color: var(--kw-ink);
  background: var(--kw-paper-cream);
}
.faq-item__plus-bar {
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: var(--kw-ink);
  border-radius: 1px;
  transition: transform var(--kw-dur) var(--kw-ease), background var(--kw-dur) var(--kw-ease);
}
.faq-item__plus-bar--v {
  transform: rotate(90deg);
}
.faq-item--open .faq-item__plus {
  background: var(--kw-ink);
  border-color: var(--kw-ink);
  transform: rotate(45deg);
}
.faq-item--open .faq-item__plus-bar { background: var(--kw-paper); }

/* Animated expand using grid-template-rows */
.faq-item__body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item--open .faq-item__body-wrap {
  grid-template-rows: 1fr;
}
.faq-item__body {
  overflow: hidden;
  min-height: 0;
}
.faq-item__rule {
  height: 1px;
  background: var(--kw-bone);
  margin: 0 0 36px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 800ms var(--kw-ease) 80ms;
}
.faq-item--open .faq-item__rule { transform: scaleX(1); }

.faq-item__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 64ch;
  padding: 0 0 48px 116px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 540ms var(--kw-ease) 180ms, transform 540ms var(--kw-ease) 180ms;
}
.faq-item--open .faq-item__content {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraphs inside FAQ body */
.faq-p {
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
  color: var(--kw-charcoal);
}
.faq-p--lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--kw-ink);
  font-family: var(--kw-font-serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.faq-p--lead::first-letter {
  font-size: 1.1em;
  font-weight: 700;
}

.faq-subhead {
  font-family: var(--kw-font-serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 14px 0 -8px;
  color: var(--kw-ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.faq-subhead::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--kw-blue);
  flex-shrink: 0;
}

.faq-ol {
  list-style: none;
  padding: 24px 28px;
  margin: 4px 0;
  background: var(--kw-paper-cream);
  border: 1px solid var(--kw-bone);
  border-radius: var(--kw-radius-md);
  display: grid;
  gap: 14px;
}
.faq-ol li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--kw-ink);
}
.faq-ol__bullet {
  font-family: var(--kw-font-serif);
  font-size: 20px;
  color: var(--kw-blue);
  line-height: 1;
  padding-top: 1px;
}

/* Sources collapsible */
.faq-sources {
  margin-top: 36px;
  padding: 0;
  border-top: 1px dashed var(--kw-bone);
  padding-top: 24px;
}
.faq-sources summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--kw-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--kw-stone);
  transition: color var(--kw-dur) var(--kw-ease);
}
.faq-sources summary::-webkit-details-marker { display: none; }
.faq-sources summary::before {
  content: "+";
  display: inline-flex;
  width: 18px;
  height: 18px;
  border: 1px solid var(--kw-bone);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  transition: transform var(--kw-dur) var(--kw-ease), background var(--kw-dur) var(--kw-ease), color var(--kw-dur) var(--kw-ease);
}
.faq-sources[open] summary::before {
  content: "−";
  background: var(--kw-ink);
  color: var(--kw-paper);
  border-color: var(--kw-ink);
}
.faq-sources summary:hover { color: var(--kw-ink); }
.faq-sources__count {
  font-family: var(--kw-font-serif);
  font-size: 12px;
  color: var(--kw-wash);
  letter-spacing: 0;
  text-transform: none;
}
.faq-sources__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-family: var(--kw-font-serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--kw-stone);
  counter-reset: src;
}
.faq-sources__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
}
.faq-sources__list li::before {
  counter-increment: src;
  content: counter(src, decimal-leading-zero);
  font-family: var(--kw-font-ui);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--kw-blue);
  padding-top: 4px;
}

/* =================================================================
   Closing CTA
   ================================================================= */
.faq-cta {
  background: var(--kw-ink);
  color: var(--kw-paper);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: "問";
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: var(--kw-font-brush);
  font-size: 520px;
  line-height: 1;
  color: rgba(243, 239, 231, 0.04);
  pointer-events: none;
}
.faq-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.faq-cta__h {
  margin-top: 22px;
  color: var(--kw-paper);
  font-size: clamp(34px, 4vw, 56px);
}
.faq-cta__h .italic-serif { color: rgba(243, 239, 231, 0.65); }
.faq-cta__p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(243, 239, 231, 0.7);
  max-width: 52ch;
}
.faq-cta__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.faq-cta__right .btn {
  width: 100%;
  justify-content: center;
}
.faq-cta .btn--light { background: var(--kw-paper); color: var(--kw-ink); }
.faq-cta .btn--light:hover { background: var(--kw-blue); color: var(--kw-paper); }
.faq-cta__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(243, 239, 231, 0.55);
  text-align: center;
}

/* =================================================================
   Korean — when html[data-kw-lang="ko"] is set, swap the brush char
   to a Korean glyph "문" to match the language toggle.
   ================================================================= */
html[data-kw-lang="ko"] .faq-hero__brush-char {
  font-size: 200px;
}
html[data-kw-lang="ko"] .faq-hero__brush-char::after {
  font-size: 200px;
}
html[data-kw-lang="ko"] .faq-cta::before {
  content: "문";
}

/* =================================================================
   Entrance animations — flashy but professional
   Gated under .kw-faq-anim on <html> so JS-failure leaves content visible.
   ================================================================= */

/* ── Hero eyebrow: fade in + dash draws across ──────────────────── */
.kw-faq-anim .faq-hero .eyebrow {
  opacity: 0;
  animation: kwFaqFadeIn 700ms var(--kw-ease) 120ms forwards;
}
.kw-faq-anim .faq-hero .eyebrow::before {
  width: 0;
  animation: kwFaqEyebrowDraw 700ms cubic-bezier(.6,.2,.2,1) 280ms forwards;
}
@keyframes kwFaqEyebrowDraw { to { width: 28px; } }

/* ── Hero H1 "Questions, considered." — clip-path wipe + tiny scale ── */
.kw-faq-anim .faq-hero__h {
  clip-path: inset(-0.25em 100% -0.25em -0.1em);
  transform: translateY(8px);
  animation: kwFaqHeadingReveal 1300ms cubic-bezier(.2,.7,.18,1) 320ms forwards;
}
@keyframes kwFaqHeadingReveal {
  to {
    clip-path: inset(-0.25em -0.1em -0.25em -0.1em);
    transform: translateY(0);
  }
}

/* "considered." gets a drawing brush-underline that fires after the wipe */
.faq-hero__h .italic-serif { position: relative; display: inline-block; }
.kw-faq-anim .faq-hero__h .italic-serif::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.04em;
  bottom: -0.04em;
  height: 0.045em;
  background: currentColor;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .9;
  animation: kwFaqUnderline 1100ms cubic-bezier(.2,.7,.18,1) 1500ms forwards;
}
@keyframes kwFaqUnderline { to { transform: scaleX(1); } }

/* ── Hero lead paragraph: gentle rise ──────────────────────────── */
.kw-faq-anim .faq-hero__lead {
  opacity: 0;
  transform: translateY(14px);
  animation: kwFaqRiseFade 900ms var(--kw-ease) 1000ms forwards;
}
@keyframes kwFaqRiseFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero meta row: staggered children ─────────────────────────── */
.kw-faq-anim .faq-hero__meta > * {
  opacity: 0;
  transform: translateY(8px);
  animation: kwFaqRiseFade 700ms var(--kw-ease) forwards;
}
.kw-faq-anim .faq-hero__meta > *:nth-child(1) { animation-delay: 1300ms; }
.kw-faq-anim .faq-hero__meta > *:nth-child(2) { animation-delay: 1380ms; }
.kw-faq-anim .faq-hero__meta > *:nth-child(3) { animation-delay: 1460ms; }
.kw-faq-anim .faq-hero__meta > *:nth-child(4) { animation-delay: 1540ms; }
.kw-faq-anim .faq-hero__meta > *:nth-child(5) { animation-delay: 1620ms; }

/* ── Hero brush 問: fade-in + faint pulse on first paint ───────── */
.kw-faq-anim .faq-hero__brush {
  opacity: 0;
  transform: scale(.94);
  animation: kwFaqBrushFloat 1400ms cubic-bezier(.2,.7,.18,1) 600ms forwards;
}
@keyframes kwFaqBrushFloat {
  to { opacity: 1; transform: scale(1); }
}

/* ── CTA H2: matching wipe + underline on "questions" ──────────── */
.kw-faq-anim .faq-cta__h {
  clip-path: inset(-0.25em 100% -0.25em -0.1em);
  animation: kwFaqHeadingReveal 1300ms cubic-bezier(.2,.7,.18,1) 100ms forwards;
}
.faq-cta__h .italic-serif { position: relative; display: inline-block; }
.kw-faq-anim .faq-cta__h .italic-serif::after {
  content: "";
  position: absolute;
  left: 0; right: 0.04em;
  bottom: -0.04em;
  height: 0.045em;
  background: currentColor;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .85;
  animation: kwFaqUnderline 1100ms cubic-bezier(.2,.7,.18,1) 1200ms forwards;
}

/* ── FAQ section text reveal as user scrolls in (lightweight) ──── */
.kw-faq-anim .faq-item__q {
  background: linear-gradient(180deg, currentColor, currentColor) left bottom / 0 1.5px no-repeat;
  transition: background-size 600ms cubic-bezier(.2,.7,.18,1);
}
.kw-faq-anim .faq-item__head:hover .faq-item__q {
  background-size: 100% 1.5px;
}

/* ── Number glyph: subtle ink bleed on item open (additive to existing rotate) ── */
.kw-faq-anim .faq-item--open .faq-item__num {
  animation: kwFaqInkBleed 900ms cubic-bezier(.2,.7,.18,1);
}
@keyframes kwFaqInkBleed {
  0%   { filter: blur(2px); opacity: .4; letter-spacing: 0.04em; }
  60%  { filter: blur(0); opacity: 1; letter-spacing: 0; }
  100% { filter: blur(0); opacity: 1; letter-spacing: 0; }
}

/* ── Shared fade utility ───────────────────────────────────────── */
@keyframes kwFaqFadeIn { to { opacity: 1; } }

/* Reduced-motion: gentle opacity cross-fade only — no movement, no clip
   wipe, no filter. Mirrors the homepage so users with Reduce Motion on
   (e.g. A18 iPhones/Macs) still get a soft fade-in instead of nothing.
   `width: 28px` must NOT live on this shared list — these selectors match
   whole layout blocks (hero headline, lead, meta, CTA) and a blanket width
   collapses them to a sliver. It belongs only on the eyebrow dash, below. */
@media (prefers-reduced-motion: reduce) {
  .kw-faq-anim .faq-hero .eyebrow,
  .kw-faq-anim .faq-hero__h,
  .kw-faq-anim .faq-hero__lead,
  .kw-faq-anim .faq-hero__meta > *,
  .kw-faq-anim .faq-hero__brush,
  .kw-faq-anim .faq-cta__h {
    animation: kwFaqRmFade 600ms cubic-bezier(.2,.7,.18,1) both;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  .kw-faq-anim .faq-hero__h { animation-delay: 80ms; }
  .kw-faq-anim .faq-hero__lead { animation-delay: 200ms; }
  .kw-faq-anim .faq-hero__meta > * { animation-delay: 300ms; }
  /* Decorative bits: just show, no motion. */
  .kw-faq-anim .faq-hero__h .italic-serif::after,
  .kw-faq-anim .faq-cta__h .italic-serif::after,
  .kw-faq-anim .faq-item--open .faq-item__num {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
  /* Eyebrow dash only: restore its drawn-in final width. */
  .kw-faq-anim .faq-hero .eyebrow::before {
    animation: none;
    width: 28px;
  }
}
@keyframes kwFaqRmFade { from { opacity: 0; } to { opacity: 1; } }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1100px) {
  .faq-grid { grid-template-columns: 220px 1fr; gap: 56px; }
  .faq-hero__brush { width: 260px; height: 260px; }
  .faq-hero__brush-char { font-size: 180px; }
}

@media (max-width: 880px) {
  .faq-hero { padding: 130px 0 70px; }
  .faq-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-hero__brush {
    order: -1;
    width: 180px; height: 180px;
    margin-left: -10px;
  }
  .faq-hero__brush-char { font-size: 130px; }
  .faq-hero__scroll { display: none; }

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-toc {
    position: static;
    border: 1px solid var(--kw-bone);
    border-radius: var(--kw-radius-md);
    padding: 22px 22px 18px;
    background: var(--kw-paper-cream);
  }
  .faq-toc__btn { padding: 10px 0; }

  .faq-item__head {
    grid-template-columns: 56px 1fr 40px;
    gap: 18px;
    padding: 28px 0;
  }
  .faq-item__num { font-size: 50px; }
  .faq-item__q { font-size: 22px; }
  .faq-item__short { font-size: 14px; }
  .faq-item__plus { width: 36px; height: 36px; }
  .faq-item__content { padding-left: 74px; }

  .faq-cta__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .faq-item__head {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .faq-item__plus {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
  }
  .faq-item__head-text {
    grid-column: 1 / -1;
    padding-left: 0;
  }
  .faq-item__num {
    grid-row: 1;
    grid-column: 1;
    font-size: 42px;
  }
  .faq-item__content { padding-left: 0; padding-bottom: 36px; }
  .faq-ol { padding: 18px; }
  .faq-cta { padding: 90px 0; }
  .faq-cta::before { font-size: 320px; right: -40px; }
}
