/* ==========================================================================
   WotLK Remix – fan site
   Styled after World of Warcraft: Wrath of the Lich King
   ========================================================================== */

/* ---------- Fonts (self-hosted, SIL Open Font License) -------------------- */
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens -------------------------------------------------- */
:root {
  --c-bg: #03080f;
  --c-bg-2: #071321;
  --c-bg-3: #0b1b2d;
  --c-ink: #d3e1ec;
  --c-ink-dim: #93a9ba;
  --c-ink-mute: #6c8193;
  --c-white: #f4fbff;
  --c-frost: #9fdcff;
  --c-frost-strong: #4fc3ff;
  --c-frost-deep: #1f6fb8;
  --c-gold: #ffd100;
  --c-gold-soft: #e6c375;
  --c-bronze: #9c7431;
  --c-line: rgba(140, 200, 255, 0.2);
  --c-line-gold: rgba(230, 195, 117, 0.45);
  --c-legendary: #ff8000;

  --f-display: "Cinzel", "Trajan Pro", "Times New Roman", Georgia, serif;
  --f-body: "Open Sans", "Segoe UI", Roboto, Arial, sans-serif;

  --header-h: 64px;
  --radius: 4px;
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.6);
  --glow-frost: 0 0 32px rgba(79, 195, 255, 0.28);
}

/* ---------- Base ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(31, 111, 184, 0.12), transparent 70%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 50%, var(--c-bg) 100%);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-frost);
  text-decoration-color: rgba(159, 220, 255, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--c-white);
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

strong {
  color: var(--c-white);
  font-weight: 600;
}

em {
  color: var(--c-frost);
  font-style: normal;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd {
  margin: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--c-gold);
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ---------- Typography ----------------------------------------------------- */
.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--c-gold-soft);
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ice-text,
.section-title,
.hero__title {
  background: linear-gradient(180deg, #ffffff 0%, #d9f1ff 40%, #8cc4ee 75%, #5a93c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 0 22px rgba(79, 170, 255, 0.35));
}

.section {
  position: relative;
  padding-block: clamp(56px, 7vw, 96px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.section-head__crest {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 10px rgba(79, 195, 255, 0.55)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
}

.section-title {
  font-size: clamp(1.9rem, 2.4vw + 1.1rem, 3rem);
  letter-spacing: 0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: min(360px, 80%);
  height: 12px;
  margin: 16px auto 0;
  background:
    linear-gradient(45deg, transparent 42%, var(--c-gold-soft) 42% 58%, transparent 58%) center / 12px 12px no-repeat,
    linear-gradient(-45deg, transparent 42%, var(--c-gold-soft) 42% 58%, transparent 58%) center / 12px 12px no-repeat,
    linear-gradient(90deg, transparent, var(--c-line-gold) 30%, var(--c-gold-soft) 48%, transparent 48% 52%, var(--c-gold-soft) 52%, var(--c-line-gold) 70%, transparent) center / 100% 1px no-repeat;
}

.section-intro {
  margin: 20px auto 0;
  color: var(--c-ink-dim);
  font-size: 1.05rem;
}

.subsection-title {
  margin: clamp(48px, 6vw, 72px) 0 24px;
  color: var(--c-gold-soft);
  font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem);
  text-align: center;
  text-shadow: 0 2px 0 #000, 0 0 18px rgba(255, 209, 0, 0.15);
}

.subsection-title--left {
  margin: 0 0 20px;
  text-align: left;
}

/* ---------- Frames (steel frame from the original 2008 Wrath website) ------ */
.frame {
  position: relative;
  border: 16px solid transparent;
  border-image: url("../img/ui/steel-panel.png") 16 / 16px round;
  background: #10283a url("../img/ui/steel-panel-interior.jpg") repeat;
  background-clip: padding-box;
  box-shadow: var(--shadow-deep);
}

.frame--compact {
  padding: 8px 10px;
}

.frame--glow {
  box-shadow: var(--shadow-deep), 0 0 56px rgba(79, 195, 255, 0.2);
}

/* ---------- Buttons -------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--frost {
  border-color: #9fdcff;
  background: linear-gradient(180deg, #3e97e0 0%, #1d62ad 48%, #0f3f7a 52%, #154f93 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 12px rgba(160, 225, 255, 0.35),
    0 0 0 1px #02101f,
    0 0 24px rgba(79, 195, 255, 0.45);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.btn--frost:hover {
  color: #fff;
  filter: brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 0 14px rgba(160, 225, 255, 0.45),
    0 0 0 1px #02101f,
    0 0 36px rgba(79, 195, 255, 0.7);
}

.btn--steel {
  border-color: rgba(230, 195, 117, 0.7);
  background: linear-gradient(180deg, #2a3440 0%, #151c25 50%, #0c1118 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px #000;
  color: var(--c-gold-soft);
  text-shadow: 0 1px 2px #000;
}

.btn--steel:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border: 1px solid rgba(79, 195, 255, 0.6);
  border-radius: 2px;
  background: rgba(31, 111, 184, 0.35);
  color: var(--c-frost);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}

.site-header__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  padding-inline: clamp(12px, 3vw, 32px);
  border-style: solid;
  border-width: 6px 0 12px;
  border-image: url("../img/ui/nav-bar-tile.png") 6 0 12 fill / 6px 0 12px round stretch;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.site-header__icicles {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-h) - 3px);
  left: 0;
  right: 0;
  height: 40px;
  background:
    url("../img/ui/icicles-cluster.png") no-repeat 9% 0,
    url("../img/ui/icicles-cluster.png") no-repeat 46% 0,
    url("../img/ui/icicles-cluster.png") no-repeat 88% 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand__icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(79, 195, 255, 0.55));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  color: var(--c-white);
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 0 #000, 0 0 12px rgba(79, 195, 255, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 8px 14px;
  white-space: nowrap;
  color: #f3e3b3;
  font-family: var(--f-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: 0 2px 0 #000, 0 0 6px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--c-gold-soft);
  box-shadow: 0 0 0 1px #000;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  text-shadow: 0 2px 0 #000, 0 0 14px rgba(120, 210, 255, 0.95);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(230, 195, 117, 0.6);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--c-gold-soft);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(680px, 100svh);
  padding-block: calc(var(--header-h) + 48px) 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero__art,
.hero__art img,
.hero__snow,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art {
  z-index: -3;
}

.hero__art img {
  object-fit: cover;
  object-position: 28% 30%;
  animation: hero-drift 40s ease-in-out infinite alternate;
}

.hero__snow {
  z-index: -1;
  pointer-events: none;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.55) 0%, rgba(3, 8, 15, 0) 22%, rgba(3, 8, 15, 0) 62%, var(--c-bg) 100%),
    linear-gradient(90deg, rgba(3, 8, 15, 0) 25%, rgba(3, 8, 15, 0.45) 55%, rgba(3, 8, 15, 0.82) 100%);
}

.hero__inner {
  display: grid;
  justify-items: end;
  gap: 28px;
}

.hero__content {
  width: min(100%, 580px);
  text-align: center;
}

.hero__title {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 3vw + 1.3rem, 3.8rem);
  letter-spacing: 0.02em;
}

.hero__lede {
  max-width: 34em;
  margin: 0 auto 28px;
  color: #dcebf5;
  font-size: clamp(1.02rem, 0.3vw + 0.95rem, 1.18rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 88px;
  width: 36px;
  height: 36px;
  transform: translateX(-50%);
}

.hero__scroll span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 4px auto 0;
  border-right: 2px solid var(--c-frost);
  border-bottom: 2px solid var(--c-frost);
  filter: drop-shadow(0 0 6px rgba(79, 195, 255, 0.9));
  transform: rotate(45deg);
  animation: scroll-hint 2.2s ease-in-out infinite;
}

/* Logo composition: official WotLK logo + "Remix" wordmark in the style of the Remix logos */
.remix-logo {
  position: relative;
  container-type: inline-size;
  width: min(100%, 520px);
  margin: 0 auto 22px;
}

.remix-logo__wow {
  width: 100%;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.8));
}

.remix-logo__remix {
  position: absolute;
  right: -4%;
  top: 52%;
  font-family: var(--f-display);
  font-size: 11cqi;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #e4fdff 25%, #7ee8ff 52%, #2f9bff 78%, #1a5fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.3cqi #041a3a;
  transform: rotate(-8deg);
  transform-origin: right center;
  filter:
    drop-shadow(0 0.35cqi 0 #020b1c)
    drop-shadow(0 0 0.6cqi rgba(0, 12, 34, 0.95))
    drop-shadow(0 0 2.4cqi rgba(70, 200, 255, 0.95));
}

/* Status plate */
.status-plate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 580px);
  border: 16px solid transparent;
  border-image: url("../img/ui/steel-panel.png") 16 / 16px round;
  background: #10283a url("../img/ui/steel-panel-interior.jpg") repeat;
  background-clip: padding-box;
  box-shadow: var(--shadow-deep), var(--glow-frost);
}

.status-plate__item {
  padding: 4px 8px;
  text-align: center;
}

.status-plate__item + .status-plate__item {
  border-left: 1px solid var(--c-line);
}

.status-plate dt {
  color: var(--c-ink-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-plate dd {
  color: var(--c-gold);
  font-family: var(--f-display);
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.3rem);
  font-weight: 700;
  text-shadow: 0 2px 0 #000;
  white-space: nowrap;
}

/* ==========================================================================
   Progress strip
   ========================================================================== */
.progress-strip {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 12px 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 27, 45, 0.92), rgba(4, 10, 18, 0.96));
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.progress-track::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-soft) 0%, var(--c-gold-soft) 33.3%, var(--c-frost-strong) 33.3%, rgba(79, 195, 255, 0.15) 50%, rgba(140, 200, 255, 0.12) 100%);
}

.progress-track__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.progress-track__gem {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
  border: 2px solid #4a5b6a;
  background: #0b141e;
  box-shadow: 0 0 0 2px #000;
  transform: rotate(45deg);
}

.progress-track__label {
  color: var(--c-ink-dim);
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.progress-track__meta {
  color: var(--c-ink-mute);
  font-size: 0.75rem;
}

.progress-track__step.is-done .progress-track__gem {
  border-color: #fff1b8;
  background: radial-gradient(circle at 35% 35%, #fff6c9, var(--c-gold) 45%, #8a5a00);
  box-shadow: 0 0 0 2px #000, 0 0 14px rgba(255, 209, 0, 0.7);
}

.progress-track__step.is-done .progress-track__label {
  color: var(--c-gold);
}

.progress-track__step.is-current .progress-track__gem {
  border-color: #dff6ff;
  background: radial-gradient(circle at 35% 35%, #ffffff, var(--c-frost-strong) 45%, #0b3a73);
  box-shadow: 0 0 0 2px #000, 0 0 16px rgba(79, 195, 255, 0.9);
  animation: gem-pulse 2.4s ease-in-out infinite;
}

.progress-track__step.is-current .progress-track__label {
  color: var(--c-frost);
}

/* ==========================================================================
   Announcement
   ========================================================================== */
.announcement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.announcement__article {
  padding: 0 clamp(4px, 1.5vw, 18px) 6px;
}

.announcement__figure {
  margin: 0 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 0 1px rgba(159, 220, 255, 0.25), 0 10px 24px rgba(0, 0, 0, 0.55);
}

.announcement__figure img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center 30%;
}

.announcement__aside {
  display: grid;
  gap: 24px;
}

.prose {
  font-size: 1.04rem;
}

.prose__lead {
  color: #e6f0f7;
  font-size: 1.12rem;
}

.quote {
  position: relative;
  margin: 28px 0;
  padding: 20px 22px 18px 74px;
  border-left: 3px solid var(--c-gold-soft);
  background:
    url("../img/ui/quote.gif") no-repeat 18px 20px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
}

.quote p {
  margin-bottom: 0.6em;
}

.quote p:first-child {
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: clamp(1.08rem, 0.5vw + 0.95rem, 1.3rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 0 18px rgba(79, 195, 255, 0.35);
}

.quote footer {
  color: var(--c-ink-mute);
  font-size: 0.85rem;
}

.quote cite {
  font-style: normal;
}

.note__label {
  margin: 0 0 6px;
  color: var(--c-gold-soft);
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note__title {
  margin-bottom: 10px;
  color: var(--c-white);
  font-size: 1.3rem;
  text-shadow: 0 2px 0 #000;
}

.note p {
  font-size: 0.95rem;
}

.note__disclaimer {
  margin: 0;
  color: #ffb266;
  font-size: 0.85rem;
  font-style: italic;
}

.sources__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-top: 1px solid var(--c-line);
  font-size: 0.92rem;
  line-height: 1.4;
}

.sources__list li:first-child {
  border-top: 0;
}

.sources__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 7px;
  height: 7px;
  background: var(--c-frost-strong);
  box-shadow: 0 0 8px rgba(79, 195, 255, 0.8);
  transform: rotate(45deg);
}

/* ==========================================================================
   Fact check (styled after the WotLK achievement frame)
   ========================================================================== */
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.facts__column:first-child {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.facts__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--c-ink-dim);
  font-size: 1.25rem;
  text-shadow: 0 2px 0 #000;
}

.facts__heading--done {
  color: var(--c-gold);
}

.facts__count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding-inline: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 0.8rem;
}

.achievements {
  display: grid;
  gap: 10px;
}

.achievement {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 10px 52px 10px 10px;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 6px 14px rgba(0, 0, 0, 0.45);
}

.achievement__icon {
  width: 56px;
  height: 56px;
  border-radius: 3px;
}

.achievement__title {
  margin: 0 0 2px;
  font-weight: 700;
  line-height: 1.3;
}

.achievement__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.achievement::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 26px;
  height: 30px;
  transform: translateY(-50%);
  clip-path: polygon(50% 0, 100% 14%, 100% 55%, 50% 100%, 0 55%, 0 14%);
}

.achievement.is-earned {
  background:
    linear-gradient(90deg, rgba(255, 209, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #3a2e17 0%, #211a0d 55%, #150f07 100%);
  border-color: #8a6a2a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 230, 160, 0.25), 0 6px 14px rgba(0, 0, 0, 0.45);
}

.achievement.is-earned .achievement__icon {
  box-shadow: 0 0 0 2px #000, 0 0 0 3px #c9a44c, 0 0 12px rgba(255, 209, 0, 0.35);
}

.achievement.is-earned .achievement__title {
  color: var(--c-gold);
  text-shadow: 0 1px 0 #000;
}

.achievement.is-earned .achievement__desc {
  color: #e6dcc3;
}

.achievement.is-earned::after {
  background:
    linear-gradient(135deg, transparent 40%, #fff 40% 52%, transparent 52%) 50% 55% / 12px 12px no-repeat,
    linear-gradient(45deg, transparent 38%, #fff 38% 52%, transparent 52%) 38% 62% / 8px 8px no-repeat,
    linear-gradient(180deg, #ffe27a, #c28a14 60%, #6e4700);
  filter: drop-shadow(0 0 6px rgba(255, 209, 0, 0.6));
}

.achievement.is-locked {
  background: linear-gradient(180deg, #1b2027 0%, #11151a 60%, #0b0e12 100%);
  border-color: #2f3842;
}

.achievement.is-locked .achievement__icon {
  box-shadow: 0 0 0 2px #000, 0 0 0 3px #4b5560;
  filter: grayscale(1) brightness(0.55);
}

.achievement.is-locked .achievement__title {
  color: #b3bcc5;
}

.achievement.is-locked .achievement__desc {
  color: var(--c-ink-mute);
}

.achievement.is-locked::after {
  background:
    radial-gradient(circle at 50% 62%, #0b0e12 18%, transparent 19%),
    linear-gradient(180deg, #56616c, #2b333b);
}

/* ==========================================================================
   Remix explained
   ========================================================================== */
.section--remix {
  background: radial-gradient(ellipse 70% 45% at 50% 40%, rgba(79, 195, 255, 0.07), transparent 100%);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  position: relative;
  padding: 26px 20px 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 36, 58, 0.85), rgba(6, 14, 24, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.feature::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold-soft), transparent);
}

.feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #000, 0 0 0 4px #b58b3c, 0 0 18px rgba(79, 195, 255, 0.35);
}

.feature__title {
  margin-bottom: 8px;
  color: var(--c-white);
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--c-ink-dim);
  font-size: 0.93rem;
}

.chronicle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.chronicle__entry,
.chronicle__card {
  height: 100%;
}

.chronicle__media {
  position: relative;
  container-type: inline-size;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px rgba(159, 220, 255, 0.2);
}

.chronicle__art {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.72);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.chronicle__card:hover .chronicle__art {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.8);
}

.chronicle__logo {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 72%;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8));
}

.chronicle__media .remix-logo--small {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 70%;
  margin: 0;
  transform: translateX(-50%);
}

.chronicle__era {
  margin: 0 0 10px;
  color: var(--c-gold-soft);
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stats div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--c-line);
  font-size: 0.9rem;
  line-height: 1.4;
}

.stats dt {
  color: var(--c-ink-mute);
}

.stats dd {
  color: var(--c-white);
  font-weight: 600;
}

.stats dd.is-unknown {
  color: var(--c-ink-mute);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   Northrend
   ========================================================================== */
.section--northrend {
  overflow: hidden;
  isolation: isolate;
}

.section__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.section__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
}

.zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(20, 44, 70, 0.9), rgba(6, 14, 24, 0.85));
  box-shadow: inset 0 0 0 1px rgba(159, 220, 255, 0.14), 0 8px 18px rgba(0, 0, 0, 0.4);
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-shadow: 0 2px 0 #000;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.zone:hover {
  box-shadow: inset 0 0 0 1px rgba(159, 220, 255, 0.4), 0 0 24px rgba(79, 195, 255, 0.25);
  transform: translateY(-2px);
}

.zone img {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #000, 0 0 0 2px #6f8aa3;
}

.northrend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: clamp(40px, 6vw, 64px);
}

.raids,
.dungeons {
  padding: 10px clamp(6px, 1.4vw, 16px);
}

.raid-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.raid-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-gold-soft), rgba(79, 195, 255, 0.6));
}

.raid-timeline__patch {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.raid-timeline__version {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--c-gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #25384d, #070d14 70%);
  box-shadow: 0 0 0 2px #000, 0 0 14px rgba(255, 209, 0, 0.2);
  color: var(--c-gold);
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 900;
  text-shadow: 0 2px 0 #000;
}

.raid-timeline__version--long {
  font-size: 0.82rem;
}

.raid-timeline__raids {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.raid-timeline__raids li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
  font-weight: 600;
}

.raid-timeline__raids img {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #000, 0 0 0 2px #7b5ea8;
}

.raids__note {
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  color: #ffc58a;
}

.raids__note strong {
  color: var(--c-legendary);
}

.dungeon-list {
  columns: 1;
  column-gap: 20px;
}

.dungeon-list li {
  position: relative;
  padding: 5px 0 5px 20px;
  break-inside: avoid;
  color: var(--c-ink);
  font-size: 0.93rem;
  line-height: 1.35;
}

.dungeon-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--c-frost);
  transform: rotate(45deg);
}

/* ==========================================================================
   Coming soon
   ========================================================================== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid #000;
  border-radius: 3px;
  background: linear-gradient(180deg, #141b23, #0a0f15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.4);
}

.roadmap__item img {
  width: 56px;
  height: 56px;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #000, 0 0 0 3px #4b5560;
  filter: saturate(0.5) brightness(0.8);
}

.roadmap__item h3 {
  margin-bottom: 4px;
  color: var(--c-white);
  font-size: 1.05rem;
}

.roadmap__item p {
  margin-bottom: 10px;
  color: var(--c-ink-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.roadmap__state {
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid #4b5560;
  border-radius: 2px;
  color: var(--c-ink-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap__state--soon {
  border-color: rgba(79, 195, 255, 0.6);
  background: rgba(31, 111, 184, 0.3);
  color: var(--c-frost);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  margin-top: 40px;
  padding-bottom: 32px;
  border-style: solid;
  border-width: 6px 0 0;
  border-image: url("../img/ui/nav-bar-tile.png") 6 0 0 / 6px 0 0 round;
  background: linear-gradient(180deg, #08131f, #03070c);
}

.site-footer__icicles {
  height: 34px;
  background:
    url("../img/ui/icicles-cluster.png") no-repeat 22% -4px,
    url("../img/ui/icicles-cluster.png") no-repeat 71% -4px;
  opacity: 0.8;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-block: 12px 32px;
}

.site-footer__brand p {
  max-width: 34em;
  margin-top: 14px;
  color: var(--c-ink-dim);
  font-size: 0.93rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__heading {
  margin: 0 0 6px;
  color: var(--c-gold-soft);
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__nav a {
  width: fit-content;
  color: var(--c-ink);
  font-size: 0.93rem;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--c-frost);
}

.site-footer__legal {
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-mute);
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer__legal p {
  margin-bottom: 0.6em;
}

/* ==========================================================================
   Subpages (legal notice, privacy policy, 404)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + 72px) 48px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.page-hero__art {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 2.4vw + 1.2rem, 3rem);
}

.page-hero--error {
  display: flex;
  align-items: center;
  min-height: 100svh;
}

.section--flush-top {
  padding-top: 0;
}

.site-footer__nav a[aria-current="page"] {
  color: var(--c-frost);
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px clamp(8px, 2vw, 24px);
}

.legal h2 {
  margin: 32px 0 10px;
  color: var(--c-gold-soft);
  font-size: 1.25rem;
}

.legal h2:first-child {
  margin-top: 8px;
}

.legal h3 {
  margin: 20px 0 6px;
  color: var(--c-white);
  font-size: 1.02rem;
}

.legal ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
  list-style: square;
}

.legal address {
  margin-bottom: 1em;
  font-style: normal;
}

.placeholder {
  padding: 0 4px;
  border-radius: 2px;
  background: rgba(255, 128, 0, 0.18);
  color: #ffb266;
}

.page-actions {
  margin-top: 28px;
  text-align: center;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes scroll-hint {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(6px) rotate(45deg);
  }
}

@keyframes gem-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px #000, 0 0 10px rgba(79, 195, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 2px #000, 0 0 22px rgba(79, 195, 255, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px clamp(16px, 4vw, 32px) 20px;
    border-bottom: 1px solid var(--c-line-gold);
    background: linear-gradient(180deg, rgba(8, 20, 34, 0.98), rgba(3, 8, 15, 0.98));
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6);
  }

  .site-nav:not(.is-open) {
    display: none;
  }

  .site-nav a {
    padding: 12px 4px;
    border-top: 1px solid var(--c-line);
    font-size: 0.95rem;
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .site-nav a + a::before {
    display: none;
  }
}

@media (max-width: 1000px) {
  .announcement,
  .northrend-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .announcement__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chronicle {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-inline: auto;
  }

  .zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dungeon-list {
    columns: 2;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: flex-end;
  }

  .hero__art img {
    object-position: 32% 20%;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(3, 8, 15, 0.5) 0%, rgba(3, 8, 15, 0.1) 25%, rgba(3, 8, 15, 0.7) 55%, var(--c-bg) 100%);
  }

  .hero__inner {
    justify-items: center;
  }

  .facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .facts__column:first-child {
    position: static;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 58px;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .hero {
    padding-bottom: 104px;
  }

  .hero__scroll {
    display: none;
  }

  .hero .remix-logo {
    width: 86%;
    margin-bottom: 28px;
  }

  .remix-logo__remix {
    right: -8%;
  }

  .status-plate {
    grid-template-columns: minmax(0, 1fr);
  }

  .status-plate__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 4px;
    text-align: left;
  }

  .status-plate__item + .status-plate__item {
    border-top: 1px solid var(--c-line);
    border-left: 0;
  }

  .progress-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .progress-track::before {
    display: none;
  }

  .announcement__aside,
  .features,
  .roadmap,
  .zones {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote {
    padding: 64px 16px 14px;
    background-position: 14px 16px, 0 0;
  }

  .achievement {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding-right: 44px;
  }

  .achievement__icon {
    width: 44px;
    height: 44px;
  }

  .achievement::after {
    right: 10px;
    width: 22px;
    height: 26px;
  }

  .stats div {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .dungeon-list {
    columns: 1;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
