.home-faq {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 24px clamp(82px, 9vw, 128px);
  overflow: hidden;
  border-top: 1px solid #262626;
  background:
    radial-gradient(circle at 50% 0, rgba(89, 31, 22, .10), transparent 42%),
    #050505;
  color: #f2f2f2;
}

.home-faq::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  pointer-events: none;
  opacity: .32;
}

.home-faq-inner {
  position: relative;
  width: min(1050px, 100%);
  margin: 0 auto;
}

.home-faq-head {
  margin-bottom: 38px;
  text-align: center;
}

.home-faq-kicker {
  display: block;
  margin-bottom: 10px;
  color: #bd4742;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.home-faq-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.home-faq-divider {
  width: 68px;
  height: 2px;
  margin: 20px auto 0;
  display: block;
  background: linear-gradient(90deg, transparent, #9f1f1b, transparent);
}

.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-item {
  border: 1px solid #303338;
  background: #0f1113;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.home-faq-item:hover,
.home-faq-item.is-open {
  border-color: #555a60;
  background: #121416;
}

.home-faq-question {
  width: 100%;
  min-height: 66px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: #f0f1f2;
  font: 800 15px/1.25 var(--font-heading, Georgia, serif);
  letter-spacing: .025em;
  text-align: left;
  cursor: pointer;
}

.home-faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #5a3030;
  background: #15100f;
  box-shadow: inset 0 0 0 3px #090909;
}

.home-faq-icon::before,
.home-faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #d43a32;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.home-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.home-faq-item.is-open .home-faq-icon::after { transform: translate(-50%, -50%) rotate(0); }

.home-faq-label {
  color: #8f969d;
  font: 800 10px/1 var(--font-ui, sans-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
}

.home-faq-answer > div {
  padding: 0 70px 22px;
  border-top: 1px solid #24282c;
}

.home-faq-answer p {
  max-width: 780px;
  margin: 18px 0 0;
  color: #9da3aa;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .home-faq { padding: 62px 12px 76px; }
  .home-faq-question { min-height: 62px; padding: 0 14px; grid-template-columns: 30px minmax(0, 1fr); gap: 11px; font-size: 14px; }
  .home-faq-label { display: none; }
  .home-faq-answer > div { padding: 0 55px 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq-answer,
  .home-faq-icon::after { transition: none; }
}

/* WoW Start FAQ treatment, adapted to the TuWoW homepage. */
.home-faq {
  padding: clamp(72px, 8vw, 112px) 24px clamp(84px, 9vw, 126px);
  border-top: 1px solid #24201c;
  background:
    linear-gradient(180deg, rgba(5,5,5,.18), rgba(5,5,5,.42)),
    url("../images/wow-faq-pane-dirt-dark.jpg") center top / 512px 512px repeat;
}

.home-faq::before {
  background:
    radial-gradient(ellipse at 50% 0, rgba(117,83,47,.12), transparent 55%),
    linear-gradient(90deg, rgba(0,0,0,.3), transparent 18%, transparent 82%, rgba(0,0,0,.3));
  opacity: 1;
}

.home-faq-inner { width: min(1160px, 100%); }
.home-faq-head { margin-bottom: 44px; }

.home-faq-head h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  text-transform: none;
  text-shadow: 0 3px 10px #000;
}

.home-faq-kicker {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4d6b3;
  font-size: 15px;
  letter-spacing: .02em;
}

.home-faq-kicker::before,
.home-faq-kicker::after {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, transparent, #625b51);
  content: "";
}

.home-faq-kicker::after { background: linear-gradient(90deg, #625b51, transparent); }
.home-faq-divider { display: none; }
.home-faq-list { gap: 16px; }

.home-faq-item {
  position: relative;
  margin-inline: 6px;
  border: 1px solid #68645d;
  border-radius: 5px;
  background: #080706;
  box-shadow:
    0 0 0 3px #111,
    0 0 0 5px #49463f,
    0 0 0 6px #080808,
    0 7px 15px rgba(0,0,0,.68),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.home-faq-item::before {
  position: absolute;
  inset: 7px;
  border: 1px solid #4b3025;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(72,35,21,.72), rgba(35,17,12,.94)),
    url("../images/wow-faq-pane-dirt-dark.jpg") center / 420px 420px repeat;
  content: "";
  pointer-events: none;
  transition: border-color 160ms ease, filter 160ms ease;
}

.home-faq-item:hover,
.home-faq-item.is-open {
  border-color: #898279;
  background: #080706;
}

.home-faq-item:hover::before,
.home-faq-item.is-open::before {
  border-color: #76513c;
  filter: brightness(1.08);
}

.home-faq-question {
  position: relative;
  z-index: 1;
  min-height: 72px;
  padding: 0 24px;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 14px;
  color: #f3eee7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.home-faq-question:focus-visible { outline: 2px solid #d49b2d; outline-offset: 7px; }

.home-faq-icon {
  width: 25px;
  height: 25px;
  border: 1px solid #8f887b;
  border-radius: 3px;
  background: linear-gradient(180deg, #45150d, #160907);
  box-shadow: 0 0 0 2px #070707, inset 0 0 0 2px #46150d, 0 1px 4px #000;
}

.home-faq-icon::before,
.home-faq-icon::after {
  width: 11px;
  height: 2px;
  background: #f1aa00;
  box-shadow: 0 0 4px rgba(230,48,20,.9);
}

.home-faq-question > span:nth-child(2) { text-shadow: 0 2px 3px #000; }
.home-faq-item.is-open .home-faq-question > span:nth-child(2) { color: #f0b500; }

.home-faq-label {
  color: #ded6cc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.home-faq-answer {
  position: relative;
  z-index: 1;
}

.home-faq-answer > div {
  margin: 0 8px 8px;
  padding: 3px 64px 23px;
  border-top: 1px solid rgba(134,92,64,.42);
  background: rgba(10,7,6,.44);
}

.home-faq-answer p {
  color: #c8bfb3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .home-faq { padding-inline: 14px; }
  .home-faq-kicker { gap: 9px; font-size: 12px; }
  .home-faq-item { margin-inline: 5px; }
  .home-faq-question { min-height: 66px; padding: 0 17px; grid-template-columns: 27px minmax(0,1fr); font-size: 15px; }
  .home-faq-answer > div { margin-inline: 8px; padding: 3px 51px 19px; }
}

.home-faq::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: clamp(14px, 1.35vw, 22px);
  background: url("../images/divider_stone_top.webp") center / 100% 100% no-repeat;
  pointer-events: none;
}

.home-faq-refined::after {
  display: none;
}

/* Cinematic TuWoW treatment: original art, framed controls, clear interaction states. */
.home-faq-cinematic {
  min-height: 0;
  padding: clamp(58px, 6vw, 78px) 24px clamp(64px, 6vw, 82px);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.66) 0%, rgba(3, 3, 3, 0.72) 55%, rgba(3, 3, 3, 0.82) 100%),
    url("../images/home-faq-map-background-v1.webp") center / cover no-repeat,
    #050403;
}

.home-faq-cinematic::before {
  z-index: 0;
  background:
    radial-gradient(ellipse 48% 38% at 50% 18%, rgba(176, 139, 66, 0.06), transparent 76%),
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(1, 1, 1, 0.34), transparent 31%, transparent 69%, rgba(1, 1, 1, 0.34));
  opacity: 1;
}

.home-faq-cinematic .home-faq-inner {
  z-index: 1;
  width: min(790px, 100%);
}

.home-faq-cinematic .home-faq-head {
  margin-bottom: 46px;
}

.home-faq-cinematic .home-faq-head h2 {
  color: #f4efe5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 3px 4px #000, 0 0 24px rgba(0, 0, 0, 0.9);
}

.home-faq-cinematic .home-faq-kicker {
  width: min(650px, 100%);
  margin-top: 18px;
  color: #cdbd9d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 5px #000;
}

.home-faq-cinematic .home-faq-kicker::before,
.home-faq-cinematic .home-faq-kicker::after {
  background: linear-gradient(90deg, transparent, rgba(190, 147, 78, 0.72));
}

.home-faq-cinematic .home-faq-kicker::after {
  background: linear-gradient(90deg, rgba(190, 147, 78, 0.72), transparent);
}

.home-faq-cinematic .home-faq-list {
  gap: 14px;
}

.home-faq-cinematic .home-faq-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 121, 127, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(219, 225, 230, 0.055), transparent 42%),
    linear-gradient(90deg, rgba(75, 80, 85, 0.13), transparent 32%, transparent 68%, rgba(75, 80, 85, 0.13)),
    rgba(7, 7, 7, 0.82);
  box-shadow:
    0 0 0 1px #030303,
    0 0 0 2px rgba(70, 73, 77, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(239, 244, 247, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-faq-cinematic .home-faq-item::before {
  content: none;
}

.home-faq-cinematic .home-faq-item:hover {
  border-color: rgba(190, 196, 201, 0.94);
  background:
    linear-gradient(180deg, rgba(225, 231, 235, 0.075), transparent 48%),
    rgba(10, 10, 10, 0.91);
  box-shadow:
    0 0 0 1px #050505,
    0 0 0 2px rgba(117, 122, 127, 0.58),
    0 10px 28px rgba(0, 0, 0, 0.58),
    inset 3px 0 0 rgba(151, 156, 161, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateX(3px);
}

.home-faq-cinematic .home-faq-item.is-open {
  border-color: #aeb4ba;
  background: rgba(8, 7, 6, 0.94);
  box-shadow:
    0 0 0 1px #090909,
    0 0 0 2px rgba(112, 118, 124, 0.72),
    0 12px 34px rgba(0, 0, 0, 0.64),
    inset 3px 0 0 #8f211a,
    inset 0 1px 0 rgba(244, 248, 250, 0.16);
  transform: none;
}

.home-faq-cinematic .home-faq-question {
  min-height: 78px;
  padding: 0 24px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 16px;
  color: #eee8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.home-faq-cinematic .home-faq-question:hover {
  color: #fff7e9;
}

.home-faq-cinematic .home-faq-question:focus-visible {
  outline: 2px solid #d2a553;
  outline-offset: -5px;
}

.home-faq-cinematic .home-faq-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #92989e;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(243, 248, 251, 0.22), transparent 32%),
    linear-gradient(180deg, #4a4e52, #17191b 58%, #0b0c0d);
  box-shadow:
    0 0 0 3px #080706,
    0 0 0 4px rgba(105, 111, 117, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 10px rgba(0, 0, 0, 0.72);
}

.home-faq-cinematic .home-faq-icon::before,
.home-faq-cinematic .home-faq-icon::after {
  width: 13px;
  height: 2px;
  background: #e1e5e8;
  box-shadow: 0 1px 0 #111, 0 0 5px rgba(214, 222, 228, 0.42);
}

.home-faq-cinematic .home-faq-item.is-open .home-faq-icon {
  border-color: #d2d7db;
  box-shadow:
    0 0 0 3px #080706,
    0 0 0 4px #747a80,
    0 0 16px rgba(184, 193, 201, 0.28),
    inset 0 0 10px rgba(143, 33, 26, 0.32);
}

.home-faq-cinematic .home-faq-label {
  padding: 8px 11px 7px;
  border: 1px solid rgba(119, 125, 131, 0.82);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(225, 230, 234, 0.11), rgba(29, 31, 33, 0.1)),
    rgba(12, 13, 14, 0.82);
  color: #c8cdd1;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.home-faq-cinematic .home-faq-item:hover .home-faq-label,
.home-faq-cinematic .home-faq-item.is-open .home-faq-label {
  border-color: #c0c6cb;
  background:
    linear-gradient(180deg, rgba(231, 236, 240, 0.15), rgba(52, 55, 58, 0.08)),
    rgba(28, 29, 31, 0.9);
  color: #f0f3f5;
}

.home-faq-cinematic .home-faq-answer > div {
  margin: 0 18px 12px 80px;
  padding: 18px 18px 22px 0;
  border-top: 1px solid rgba(140, 146, 151, 0.38);
  background: transparent;
}

.home-faq-cinematic .home-faq-answer p {
  max-width: 720px;
  margin: 0;
  color: #bdb4a7;
  font-size: 0.94rem;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .home-faq-cinematic {
    min-height: 0;
    padding: 76px 14px 96px;
    background-size: cover;
    background-position: center;
  }

  .home-faq-cinematic .home-faq-head { margin-bottom: 34px; }
  .home-faq-cinematic .home-faq-head h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .home-faq-cinematic .home-faq-kicker { font-size: 0.7rem; letter-spacing: 0.1em; }
  .home-faq-cinematic .home-faq-question { min-height: 70px; padding: 0 16px; grid-template-columns: 35px minmax(0, 1fr); gap: 13px; font-size: 0.96rem; }
  .home-faq-cinematic .home-faq-label { display: none; }
  .home-faq-cinematic .home-faq-icon { width: 30px; height: 30px; }
  .home-faq-cinematic .home-faq-answer > div { margin: 0 15px 10px 64px; padding: 15px 10px 18px 0; }
  .home-faq-cinematic .home-faq-answer p { font-size: 0.88rem; line-height: 1.65; }
}

/* Minimal treatment shared with the leaderboard tables. */
.home-faq-minimal .home-faq-list {
  gap: 10px;
}

.home-faq-minimal .home-faq-item,
.home-faq-minimal .home-faq-item:hover,
.home-faq-minimal .home-faq-item.is-open {
  border: 1px solid #363636;
  border-radius: 1px;
  background: #0d0d0d;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  transform: none;
}

.home-faq-minimal .home-faq-item:hover {
  border-color: #464646;
  background: #15130f;
  box-shadow: inset 3px 0 0 #8c211a, 0 6px 18px rgba(0, 0, 0, 0.34);
}

.home-faq-minimal .home-faq-item.is-open {
  border-color: #4a4640;
  background: #11100e;
  box-shadow: inset 3px 0 0 #8c211a, 0 8px 22px rgba(0, 0, 0, 0.4);
}

.home-faq-minimal .home-faq-question {
  min-height: 68px;
  padding: 0 20px;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  color: #e3e1dd;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.home-faq-minimal .home-faq-question:hover {
  color: #f2f2f2;
}

.home-faq-minimal .home-faq-icon,
.home-faq-minimal .home-faq-item.is-open .home-faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid #4b4b4b;
  border-radius: 2px;
  background: #191919;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-faq-minimal .home-faq-icon::before,
.home-faq-minimal .home-faq-icon::after {
  width: 10px;
  height: 1px;
  background: #b9b9b9;
  box-shadow: none;
}

.home-faq-minimal .home-faq-kicker {
  color: #b8b8b8;
}

.home-faq-minimal .home-faq-kicker::before,
.home-faq-minimal .home-faq-kicker::after {
  background: linear-gradient(90deg, transparent, rgba(151, 151, 151, 0.58));
}

.home-faq-minimal .home-faq-kicker::after {
  background: linear-gradient(90deg, rgba(151, 151, 151, 0.58), transparent);
}

.home-faq-minimal .home-faq-label,
.home-faq-minimal .home-faq-item:hover .home-faq-label,
.home-faq-minimal .home-faq-item.is-open .home-faq-label {
  padding: 7px 9px 6px;
  border: 1px solid #3b3b3b;
  border-radius: 1px;
  background: #191919;
  color: #aaa59d;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  box-shadow: none;
}

.home-faq-minimal .home-faq-item:hover .home-faq-label,
.home-faq-minimal .home-faq-item.is-open .home-faq-label {
  border-color: #53504b;
  color: #d5d1ca;
}

.home-faq-minimal .home-faq-answer > div {
  margin: 0 18px 10px 64px;
  padding: 15px 14px 18px 0;
  border-top: 1px solid #262626;
}

.home-faq-minimal .home-faq-answer p {
  color: #aaa59d;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .home-faq-minimal .home-faq-question {
    min-height: 64px;
    padding: 0 14px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    font-size: 0.9rem;
  }

  .home-faq-minimal .home-faq-answer > div {
    margin-left: 54px;
  }
}

/* Clean table-style layout shared with the modern leaderboard interface. */
.home-faq-clean .home-faq-head {
  margin-bottom: 32px;
}

.home-faq-clean .home-faq-head h2 {
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.82);
}

.home-faq-clean .home-faq-kicker {
  margin-top: 14px;
  color: #9b9b9b;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.home-faq-clean .home-faq-kicker::before,
.home-faq-clean .home-faq-kicker::after {
  background: linear-gradient(90deg, transparent, #393939);
}

.home-faq-clean .home-faq-kicker::after {
  background: linear-gradient(90deg, #393939, transparent);
}

.home-faq-clean .home-faq-list {
  display: block;
  overflow: hidden;
  border: 1px solid #363636;
  border-radius: 2px;
  background: #0d0d0d;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.home-faq-clean .home-faq-item,
.home-faq-clean .home-faq-item:hover,
.home-faq-clean .home-faq-item.is-open {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #282828;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.home-faq-clean .home-faq-item:last-child {
  border-bottom: 0;
}

.home-faq-clean .home-faq-item:hover {
  background: #131313;
  box-shadow: inset 2px 0 0 #555;
}

.home-faq-clean .home-faq-item.is-open {
  background: #151313;
  box-shadow: inset 3px 0 0 #8c211a;
}

.home-faq-clean .home-faq-question {
  min-height: 66px;
  padding: 0 22px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 15px;
  color: #dedede;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-faq-clean .home-faq-question:hover {
  color: #f2f2f2;
}

.home-faq-clean .home-faq-question:focus-visible {
  outline: 1px solid #777;
  outline-offset: -4px;
}

.home-faq-clean .home-faq-icon,
.home-faq-clean .home-faq-item.is-open .home-faq-icon {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq-clean .home-faq-icon::before,
.home-faq-clean .home-faq-icon::after {
  width: 12px;
  height: 1px;
  background: #a9a9a9;
  box-shadow: none;
}

.home-faq-clean .home-faq-item.is-open .home-faq-icon::before,
.home-faq-clean .home-faq-item.is-open .home-faq-icon::after {
  background: #d4d4d4;
}

.home-faq-clean .home-faq-answer > div {
  margin: 0 22px 0 55px;
  padding: 15px 16px 20px 0;
  border-top: 1px solid #282828;
}

.home-faq-clean .home-faq-answer p {
  max-width: 760px;
  color: #9f9f9f;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .home-faq-clean .home-faq-head { margin-bottom: 26px; }
  .home-faq-clean .home-faq-head h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .home-faq-clean .home-faq-question { min-height: 62px; padding: 0 16px; gap: 12px; font-size: 0.88rem; }
  .home-faq-clean .home-faq-answer > div { margin-left: 46px; padding-right: 6px; }
}

/* Refined FAQ composition inspired by the site's editorial fantasy styling. */
.home-faq-refined .home-faq-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 27px;
  text-align: center;
}

.home-faq-refined .home-faq-eyebrow {
  color: #c2a35e;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.home-faq-refined .home-faq-title-row {
  display: grid;
  grid-template-columns: minmax(54px, 120px) auto minmax(54px, 120px);
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.home-faq-refined .home-faq-title-row > span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #806a38);
}

.home-faq-refined .home-faq-title-row > span:last-child {
  background: linear-gradient(90deg, #806a38, transparent);
}

.home-faq-refined .home-faq-head h2 {
  margin: 0;
  color: #ead9aa;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2.45rem, 4.4vw, 3.55rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.92;
  background: linear-gradient(180deg, #fff5d6 5%, #e3c878 52%, #b89347 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.home-faq-refined .home-faq-subtitle {
  margin: 12px 0 0;
  color: #8f8d8a;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

.home-faq-refined .home-faq-list {
  display: grid;
  gap: 7px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq-refined .home-faq-item,
.home-faq-refined .home-faq-item:hover,
.home-faq-refined .home-faq-item.is-open {
  margin: 0;
  overflow: hidden;
  border: 1px solid #353535;
  border-radius: 2px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-faq-refined .home-faq-item:hover {
  border-color: #4b4847;
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.home-faq-refined .home-faq-item.is-open {
  border-color: #5e302d;
  background: rgba(18, 15, 15, 0.97);
  box-shadow: inset 3px 0 0 #84251f, 0 12px 32px rgba(0, 0, 0, 0.34);
}

.home-faq-refined .home-faq-question {
  min-height: 54px;
  padding: 0 20px;
  grid-template-columns: 9px minmax(0, 1fr) 18px;
  gap: 16px;
  color: #dedddb;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(0.86rem, 1.15vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.home-faq-refined .home-faq-question::after {
  content: "+";
  color: #b99a55;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.home-faq-refined .home-faq-item.is-open .home-faq-question::after {
  content: "×";
  color: #d0b56d;
}

.home-faq-refined .home-faq-icon,
.home-faq-refined .home-faq-item.is-open .home-faq-icon {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 0;
  background: #a8883f;
  box-shadow: 0 0 10px rgba(168, 136, 63, 0.22);
  transform: rotate(45deg);
}

.home-faq-refined .home-faq-icon::before,
.home-faq-refined .home-faq-icon::after {
  display: none;
}

.home-faq-refined .home-faq-item.is-open .home-faq-icon {
  background: #9d3932;
}

.home-faq-refined .home-faq-answer > div {
  margin: 0 20px 0 45px;
  padding: 13px 16px 17px 0;
  border-top: 1px solid #2d2b2b;
}

.home-faq-refined .home-faq-answer p {
  max-width: 900px;
  color: #a9a6a2;
  font-family: var(--font-ui, Arial, Helvetica, sans-serif);
  font-size: 0.9rem;
  line-height: 1.72;
}

@media (max-width: 760px) {
  .home-faq-refined .home-faq-head { margin-bottom: 24px; }
  .home-faq-refined .home-faq-title-row { grid-template-columns: 54px auto 54px; gap: 13px; }
  .home-faq-refined .home-faq-head h2 { font-size: clamp(2.5rem, 14vw, 3.4rem); }
  .home-faq-refined .home-faq-subtitle { max-width: 290px; font-size: 0.82rem; }
  .home-faq-refined .home-faq-list { gap: 8px; }
  .home-faq-refined .home-faq-question { min-height: 56px; padding: 0 16px; grid-template-columns: 7px minmax(0, 1fr) 16px; gap: 12px; font-size: 0.8rem; }
  .home-faq-refined .home-faq-answer > div { margin: 0 16px 0 35px; padding: 14px 8px 18px 0; }
}

/* Blend the FAQ map into the shared footer as one continuous composition. */
.home-faq-cinematic.home-faq-refined {
  --home-footer-blend-depth: clamp(96px, 7.5vw, 124px);
  padding-bottom: clamp(104px, 8vw, 132px);
}

.home-faq-refined::after {
  z-index: 0;
  height: var(--home-footer-blend-depth, clamp(96px, 7.5vw, 124px));
  display: block;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 6, 6, 0.5) 50%,
    #060606 100%
  );
}

.home-page + .site-footer::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(96px, 7.5vw, 124px);
  background: linear-gradient(
    180deg,
    #060606 0%,
    rgba(6, 6, 6, 0.5) 50%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
}
