/* Old Sorcery — Electronic Press Kit (RITUAL OVERKILL EDITION) */

/* Caslon Antique — body + headings (UI stays Outfit) */
@font-face {
  font-family: "Caslon Antique";
  src: url("../assets/fonts/CaslonAntique-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caslon Antique";
  src: url("../assets/fonts/CaslonAntique-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Caslon Antique";
  src: url("../assets/fonts/CaslonAntique-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caslon Antique";
  src: url("../assets/fonts/CaslonAntique-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --void: #050403;
  --ink: #0c0a08;
  --bone: #efe8da;
  --bone-dim: #c4bbaa;
  --muted: #7a7368;
  --gold: #d4b04e;
  --gold-soft: #e8d08a;
  --gold-hot: #ffe7a0;
  --ember: #c45a28;
  --blood: #6a2030;
  --arcane: #6b4a9a;
  --line: rgba(212, 176, 78, 0.28);
  --card: rgba(14, 11, 9, 0.78);
  --font-display: "Caslon Antique", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Caslon Antique", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --max: 72rem;
  --pad: clamp(1.1rem, 3.5vw, 2rem);
  --glow-gold: 0 0 24px rgba(212, 176, 78, 0.45), 0 0 60px rgba(212, 176, 78, 0.18);
  --glow-ember: 0 0 30px rgba(196, 90, 40, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  overflow-x: clip;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  width: 100%;
  position: relative;
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  /* Caslon Antique reads a touch small — keep line-height open */
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.bio-copy,
.hero__lede,
.section-head > p,
.music-note,
.card li {
  font-family: var(--font-body);
}
img { max-width: 100%; display: block; height: auto; }
iframe { max-width: 100%; }
a { color: var(--gold-soft); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: #f0e0a8; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap {
  width: 100%;
  max-width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  padding-left: max(var(--pad), env(safe-area-inset-left, 0px));
  padding-right: max(var(--pad), env(safe-area-inset-right, 0px));
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Nav */
.epk-nav {
  position: sticky; top: 0; z-index: 40;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(7,6,5,.92);
  border-bottom: 1px solid var(--line);
}
.epk-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .7rem 0;
  position: relative;
}
.epk-brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--bone); font-family: var(--font-display);
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 3.5rem);
}
.epk-brand__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .15rem .45rem;
  min-width: 0;
  line-height: 1.2;
}
.epk-brand__name {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: .06em;
  text-transform: none;
  font-weight: 700;
  white-space: nowrap;
}
.epk-brand__sep {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  color: var(--gold);
  opacity: .85;
}
.epk-brand__kit {
  font-size: clamp(.78rem, 1.7vw, .95rem);
  letter-spacing: .04em;
  text-transform: none;
  color: var(--bone-dim);
  white-space: nowrap;
}
.epk-brand img {
  width: clamp(42px, 5.5vw, 52px);
  height: clamp(42px, 5.5vw, 52px);
  object-fit: contain;
  flex-shrink: 0;
}

.epk-nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border-radius: .4rem;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.epk-nav__toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--bone);
  transition: transform .2s, opacity .2s;
}
.epk-nav.is-open .epk-nav__toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.epk-nav.is-open .epk-nav__toggle span:nth-child(2) { opacity: 0; }
.epk-nav.is-open .epk-nav__toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.epk-nav__panel {
  display: flex; align-items: center; gap: .9rem 1.1rem;
}
.epk-nav__links {
  display: flex; flex-wrap: wrap; gap: .35rem .9rem;
  font-family: var(--font-ui); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.epk-nav__links a {
  color: var(--bone-dim);
  padding: .35rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.epk-nav__links a:hover { color: var(--gold); }
.epk-nav__cta {
  font-family: var(--font-ui); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--void) !important;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: .7rem 1rem; border-radius: 999px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}
.epk-nav__cta:hover { opacity: .92; color: var(--void) !important; }

@media (max-width: 860px) {
  .epk-brand {
    gap: .65rem;
    max-width: calc(100% - 3.25rem);
  }
  .epk-brand img {
    width: 44px;
    height: 44px;
  }
  .epk-brand__name {
    font-size: 1.05rem;
  }
  .epk-brand__kit {
    font-size: .8rem;
    white-space: normal; /* allow wrap on narrow phones */
  }
  .epk-nav__toggle { display: inline-flex; }
  .epk-nav__panel {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 1px);
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: .85rem var(--pad) 1rem;
    background: rgba(7,6,5,.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
  }
  .epk-nav.is-open .epk-nav__panel { display: flex; }
  .epk-nav__links {
    flex-direction: column;
    gap: 0;
  }
  .epk-nav__links a {
    min-height: 48px;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    letter-spacing: .14em;
  }
  .epk-nav__cta {
    width: 100%;
    margin-top: .4rem;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid; place-items: end stretch;
  /* clip only media; content logo must not be cut by overflow:hidden */
  overflow: visible;
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.42) contrast(1.08) saturate(.9);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,6,5,.35) 0%, rgba(7,6,5,.15) 35%, rgba(7,6,5,.92) 100%),
    linear-gradient(90deg, rgba(7,6,5,.65) 0%, transparent 45%);
}
.hero__content {
  position: relative; z-index: 2;
  /* ONLY vertical — this node is also .wrap; never set left/right or shorthand
     padding that would wipe the shared horizontal gutter */
  padding-top: clamp(2rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: min(40rem, 100%);
  min-width: 0;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .85rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: .06em;
  margin: 0 0 1rem;
  text-shadow: 0 8px 40px rgba(0,0,0,.55);
}
.hero__logo {
  margin: 0 0 1.15rem;
  /* never use vw here — overflows past padded wrap */
  max-width: min(28rem, 100%);
  width: 100%;
  min-width: 0;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  /* soft rounded black plate; glow kept via filter + outer pool */
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.55));
}
.hero__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}
/* Feather the hard black edge into the hero */
.hero__logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 22px 10px rgba(5, 4, 3, 0.55),
    inset 0 0 48px 22px rgba(5, 4, 3, 0.4),
    inset 0 0 80px 36px rgba(5, 4, 3, 0.28);
}
.hero__lede {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--bone-dim);
  margin: 0 0 1.5rem;
  max-width: 34rem;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-bottom: 1.75rem;
}
.pill {
  font-family: var(--font-ui); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--bone-dim);
  border: 1px solid var(--line); padding: .4rem .7rem; border-radius: 999px;
  background: rgba(0,0,0,.25);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 500;
  padding: .85rem 1.25rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--bone);
  background: rgba(14,12,10,.55);
}
.btn:hover { border-color: rgba(201,168,76,.55); color: var(--gold-soft); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--void); border-color: transparent; font-weight: 600;
}
.btn--gold:hover { color: var(--void); opacity: .93; }

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative; z-index: 1;
}
.section--tight { padding-top: 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: .08em;
  margin: 0 0 .6rem;
}
.section-head p { margin: 0; color: var(--bone-dim); font-size: 1.15rem; }

/* Section intros: one line on desktop when space allows; wraps cleanly on mobile */
.section-head--oneline {
  max-width: 40rem;
}
.lede-oneline {
  max-width: 100%;
  text-wrap: pretty;
}
@media (min-width: 1100px) {
  .section-head--oneline {
    max-width: min(56rem, 100%);
  }
  .section-head--oneline .lede-oneline {
    white-space: nowrap;
  }
}
@media (max-width: 1099px) {
  .section-head--oneline .lede-oneline {
    white-space: normal;
    line-height: 1.55;
  }
}

.ornament {
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted); font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; font-family: var(--font-ui);
  margin: 0 0 1.25rem;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  max-width: 5rem;
}
.ornament::before { max-width: 2.5rem; }

/* Facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: -2.5rem;
  position: relative; z-index: 3;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.8);
}
@media (min-width: 800px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}
.fact {
  background: var(--ink);
  padding: 1.25rem 1.15rem;
}
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .25rem;
}
.fact span {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* Bio */
.bio-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .bio-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
}
.portrait {
  position: relative;
  border: 1px solid var(--line);
  border-radius: .35rem;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.9);
}
.portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05);
}
.portrait__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  font-family: var(--font-ui); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone-dim);
}
.portrait__cap strong { display: block; color: var(--gold); margin-bottom: .2rem; }
.bio-copy p { margin: 0 0 1rem; color: var(--bone-dim); }
.bio-copy p:last-child { margin-bottom: 0; }
.bio-copy em { color: var(--bone); font-style: italic; }

/* Discography */
.disc-list {
  display: grid;
  gap: .75rem;
}
.disc-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: var(--card);
  transition: border-color .2s, transform .2s;
}
.disc-item:hover {
  border-color: rgba(201,168,76,.45);
  transform: translateY(-1px);
}
.disc-item img {
  width: 4.5rem; height: 4.5rem;
  object-fit: cover; border-radius: .2rem;
  background: #1a1510;
}
.disc-item h3 {
  margin: 0 0 .2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--bone);
}
.disc-item p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.disc-year {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .disc-item { grid-template-columns: 3.6rem 1fr; }
  .disc-item img { width: 3.6rem; height: 3.6rem; }
  .disc-year { grid-column: 2; justify-self: start; margin-top: -.35rem; }
}

/* Music embeds */
.players {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .players { grid-template-columns: 1fr 1fr; }
}
.player-card {
  border: 1px solid var(--line);
  border-radius: .6rem;
  overflow: hidden;
  background: var(--card);
}
.player-card__head {
  padding: .9rem 1.1rem .35rem;
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.player-card iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 120px;
}
.player-card--tall iframe { min-height: 470px; }
.music-note {
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .03em;
}

/* Gallery — fills area, 5 cells, no empty tracks
   All images: object-fit contain (full art visible). Dark cell bg. */
.gallery {
  display: grid;
  width: 100%;
  gap: .65rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "a a"
    "b c"
    "d e";
}
.gallery .g {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: .35rem;
  overflow: hidden;
  background: #050403;
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1;
}
.gallery .g img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .45s ease, filter .35s;
  filter: brightness(.95) contrast(1.04);
}
.gallery .g:hover img {
  transform: scale(1.03);
  filter: brightness(1.04) contrast(1.08);
}
.gallery .g--e img {
  filter: drop-shadow(0 0 14px rgba(212,176,78,.3));
}
.gallery .g--e:hover img {
  filter: drop-shadow(0 0 22px rgba(212,176,78,.45)) brightness(1.05);
}
.gallery .g--a { grid-area: a; aspect-ratio: 4 / 5; }
.gallery .g--b { grid-area: b; }
.gallery .g--c { grid-area: c; }
.gallery .g--d { grid-area: d; }
.gallery .g--e { grid-area: e; }

/* PC: left tall portrait spans 2 rows, right 2×2 fills remainder — no holes */
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "a b c"
      "a d e";
    gap: .85rem;
    /* fixed board height so both rows share space evenly */
    height: min(68vh, 38rem);
    aspect-ratio: unset;
  }
  .gallery .g {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
  }
  .gallery .g--a {
    /* portrait live — slightly taller cell already via 2-row span */
  }
}
@media (min-width: 1100px) {
  .gallery {
    height: min(72vh, 42rem);
    gap: 1rem;
  }
}

/* Booking / tech */
.cards-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .cards-2 { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.card {
  border: 1px solid var(--line);
  border-radius: .6rem;
  padding: 1.4rem 1.35rem;
  background: var(--card);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .08em;
  font-weight: 500;
  margin: 0 0 .85rem;
  color: var(--gold);
}
.card ul {
  margin: 0; padding: 0; list-style: none;
}
.card li {
  position: relative;
  display: block;
  padding: .5rem 0 .5rem 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 1.02rem;
  color: var(--bone-dim);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card li:last-child { border-bottom: 0; }
/* Star stays on first line; long labels wrap under text, not under the star column */
.card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.72em;
  color: var(--gold);
  font-size: .7rem;
  line-height: 1;
  transform: translateY(-50%);
}
.card a { word-break: break-word; overflow-wrap: anywhere; }

/* Quote */
.quote {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.quote blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--bone);
  line-height: 1.45;
}
.quote cite {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* Links row */
.link-row {
  display: flex; flex-wrap: wrap; gap: .65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Footer */
.epk-foot {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  text-align: center;
  position: relative; z-index: 1;
}
.epk-foot p {
  margin: 0 0 .4rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}
.epk-foot .credit {
  text-transform: none;
  letter-spacing: .03em;
  color: #5a544c;
  margin-top: .8rem;
}
.epk-foot .credit a { color: #6e675c; }

/* Lightbox-ish: native details for print note */
.print-hint {
  display: none;
}
@media print {
  .epk-nav, .bg-grain, .player-card, .print-hint { display: none !important; }
  body { background: #fff; color: #111; }
  a { color: #000; }
}

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

/* ═══════════════════════════════════════════
   RITUAL OVERKILL — FX LAYERS & ANIMATIONS
   Dial back later. Intentional excess.
   ═══════════════════════════════════════════ */

/* Layer stack */
.fx-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(212,176,78,.16), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 20%, rgba(107,74,154,.14), transparent 52%),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(196,90,40,.14), transparent 48%),
    radial-gradient(ellipse 40% 30% at 70% 90%, rgba(106,32,48,.12), transparent 50%),
    var(--void);
  animation: void-breathe 14s ease-in-out infinite alternate;
}
.bg-grain::after {
  content: "";
  position: absolute; inset: 0;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.45s steps(2) infinite;
}
@keyframes void-breathe {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.15) brightness(1.06); }
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.fx-aurora {
  position: absolute; inset: -20%;
  background:
    conic-gradient(from 120deg at 50% 40%,
      transparent 0deg,
      rgba(212,176,78,.06) 40deg,
      transparent 90deg,
      rgba(107,74,154,.08) 160deg,
      transparent 220deg,
      rgba(196,90,40,.07) 280deg,
      transparent 360deg);
  animation: aurora-spin 48s linear infinite;
  filter: blur(40px);
  opacity: .85;
}
@keyframes aurora-spin {
  to { transform: rotate(360deg); }
}

.fx-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, transparent 35%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 18%, transparent 82%, rgba(0,0,0,.5) 100%);
  box-shadow: inset 0 0 120px 40px rgba(0,0,0,.55);
}

.fx-scanlines {
  position: absolute; inset: 0;
  opacity: .07;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.35) 2px,
    rgba(0,0,0,.35) 3px
  );
  mix-blend-mode: multiply;
}

.fx-runes {
  position: absolute; inset: 0;
  opacity: .045;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(212,176,78,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 32%, rgba(212,176,78,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 72%, rgba(232,208,138,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 78%, rgba(196,90,40,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 12%, rgba(212,176,78,.5) 0 1px, transparent 2px);
  background-size: 100% 100%;
  animation: runes-drift 22s ease-in-out infinite alternate;
}
@keyframes runes-drift {
  from { transform: translateY(0) scale(1); opacity: .04; }
  to { transform: translateY(-18px) scale(1.04); opacity: .08; }
}

.fx-embers {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Nav amp */
.epk-nav {
  background: rgba(5,4,3,.78);
  border-bottom-color: transparent;
  transition: box-shadow .4s, background .4s, border-color .4s;
}
.epk-nav::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,78,.55), transparent);
  opacity: .6;
}
.epk-nav.is-scrolled {
  background: rgba(5,4,3,.94);
  box-shadow: 0 12px 40px rgba(0,0,0,.55), 0 0 40px rgba(212,176,78,.08);
  border-bottom-color: var(--line);
}
.epk-brand img {
  filter: drop-shadow(0 0 10px rgba(212,176,78,.5));
  transition: filter .3s, transform .4s;
}
.epk-brand:hover img {
  filter: drop-shadow(0 0 18px rgba(212,176,78,.9));
  transform: rotate(-6deg) scale(1.06);
}
.epk-brand:hover .epk-brand__name { color: var(--gold-soft); }
.epk-brand:hover .epk-brand__kit { color: var(--bone); }
.epk-nav__links a {
  position: relative;
}
.epk-nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.epk-nav__links a:hover::after { transform: scaleX(1); }
.epk-nav__cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212,176,78,.35), 0 8px 24px rgba(0,0,0,.35);
  animation: cta-pulse 3.2s ease-in-out infinite;
}
.epk-nav__cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(212,176,78,.3), 0 8px 24px rgba(0,0,0,.35); }
  50% { box-shadow: 0 0 36px rgba(212,176,78,.55), 0 8px 28px rgba(0,0,0,.4); }
}
@keyframes sheen {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Hero amp */
.hero {
  min-height: min(88vh, 900px);
  isolation: isolate;
  /* keep overflow visible so logo/drop-shadow aren't clipped */
  overflow: visible;
}
.hero__media img {
  filter: brightness(.38) contrast(1.15) saturate(.85);
  animation: ken-burns 28s ease-in-out infinite alternate;
  transform-origin: 55% 40%;
}
@keyframes ken-burns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.18) translate(-2%, 1.5%); }
}
.hero__media::after {
  background:
    radial-gradient(ellipse 50% 40% at 70% 35%, rgba(212,176,78,.12), transparent 60%),
    linear-gradient(180deg, rgba(5,4,3,.5) 0%, rgba(5,4,3,.15) 35%, rgba(5,4,3,.95) 100%),
    linear-gradient(90deg, rgba(5,4,3,.75) 0%, transparent 50%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  opacity: .55;
  pointer-events: none;
  z-index: 1;
}
.hero__orb--a {
  width: min(42vw, 380px); height: min(42vw, 380px);
  top: 8%; right: 8%;
  background: radial-gradient(circle, rgba(212,176,78,.55), transparent 70%);
  animation: orb-float 11s ease-in-out infinite;
}
.hero__orb--b {
  width: min(30vw, 260px); height: min(30vw, 260px);
  bottom: 18%; left: 12%;
  background: radial-gradient(circle, rgba(107,74,154,.5), transparent 70%);
  animation: orb-float 15s ease-in-out infinite reverse;
}
.hero__orb--c {
  width: min(22vw, 180px); height: min(22vw, 180px);
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(196,90,40,.4), transparent 70%);
  animation: orb-float 9s ease-in-out infinite 1s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .45; }
  50% { transform: translate(18px, -24px) scale(1.12); opacity: .7; }
}
.hero__sigil {
  position: absolute;
  inset: 10% 20% 25% 35%;
  border: 1px solid rgba(212,176,78,.12);
  border-radius: 50%;
  z-index: 1;
  animation: sigil-spin 60s linear infinite;
  box-shadow:
    inset 0 0 40px rgba(212,176,78,.06),
    0 0 60px rgba(212,176,78,.05);
}
.hero__sigil::before,
.hero__sigil::after {
  content: "";
  position: absolute; inset: 12%;
  border: 1px dashed rgba(212,176,78,.1);
  border-radius: 50%;
}
.hero__sigil::after {
  inset: 24%;
  border-style: solid;
  border-color: rgba(212,176,78,.08);
  animation: sigil-spin 40s linear infinite reverse;
}
@keyframes sigil-spin {
  to { transform: rotate(360deg); }
}

/* Hero eyebrow — midway size (between tiny & previous too-big) */
.hero .eyebrow {
  font-size: clamp(.72rem, 1.6vw, .88rem);
  letter-spacing: .16em;
  color: rgba(196, 178, 130, 0.55);
  text-shadow: none;
  animation: none;
  opacity: 1;
  margin-bottom: .7rem;
}
.hero .eyebrow__spark {
  display: inline;
  animation: none;
  color: rgba(196, 178, 130, 0.5);
  text-shadow: none;
  opacity: 1;
  transform: none;
  font-size: .9em;
}
/* Section eyebrows stay calm too (no global pulse) */
.section .eyebrow {
  animation: none;
  text-shadow: none;
  color: rgba(201, 168, 76, 0.55);
}

.hero__logo {
  position: relative;
  max-width: min(28rem, 100%);
  width: 100%;
  border-radius: 1.65rem;
  overflow: hidden;
  filter:
    drop-shadow(0 0 18px rgba(212,176,78,.55))
    drop-shadow(0 0 48px rgba(212,176,78,.28))
    drop-shadow(0 18px 40px rgba(0,0,0,.7));
  /* soft glow only — no scale in/out */
  animation: logo-breathe 9s ease-in-out infinite;
}
.hero__logo::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: -14%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(212,176,78,.28), transparent 70%);
  filter: blur(12px);
  z-index: -1;
  animation: logo-pool 9s ease-in-out infinite;
  border-radius: 50%;
}
.hero__logo img {
  animation: logo-shimmer-filter 12s ease-in-out infinite;
}
@keyframes logo-breathe {
  0%, 100% {
    transform: none;
    filter:
      drop-shadow(0 0 16px rgba(212,176,78,.42))
      drop-shadow(0 0 36px rgba(212,176,78,.18))
      drop-shadow(0 18px 40px rgba(0,0,0,.7));
  }
  50% {
    transform: none;
    filter:
      drop-shadow(0 0 20px rgba(212,176,78,.52))
      drop-shadow(0 0 44px rgba(212,176,78,.26))
      drop-shadow(0 18px 40px rgba(0,0,0,.7));
  }
}
@keyframes logo-pool {
  0%, 100% { opacity: .42; transform: none; }
  50% { opacity: .58; transform: none; }
}
@keyframes logo-shimmer-filter {
  0%, 100% { filter: brightness(1) contrast(1.04); }
  50% { filter: brightness(1.04) contrast(1.05); }
}

.hero__lede {
  text-shadow: 0 2px 24px rgba(0,0,0,.8);
  position: relative;
}

.pill {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s, box-shadow .3s, color .3s, transform .3s;
  box-shadow: inset 0 0 20px rgba(212,176,78,.04);
}
.pill:hover {
  border-color: rgba(212,176,78,.55);
  color: var(--gold-soft);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: border-color .3s, color .3s, box-shadow .35s, transform .25s, background .3s;
  backdrop-filter: blur(6px);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.12) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .6s ease;
}
.btn:hover {
  border-color: rgba(212,176,78,.65);
  color: var(--gold-hot);
  box-shadow: 0 0 24px rgba(212,176,78,.3);
  transform: translateY(-2px);
}
.btn:hover::after { transform: translateX(130%); }
.btn--gold {
  box-shadow: 0 0 28px rgba(212,176,78,.4), 0 10px 30px rgba(0,0,0,.4);
  animation: gold-btn-glow 3.6s ease-in-out infinite;
}
.btn--gold:hover {
  box-shadow: 0 0 48px rgba(255,231,160,.55), 0 12px 36px rgba(0,0,0,.45);
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
}
@keyframes gold-btn-glow {
  0%, 100% { box-shadow: 0 0 22px rgba(212,176,78,.35), 0 10px 28px rgba(0,0,0,.4); }
  50% { box-shadow: 0 0 40px rgba(255,231,160,.55), 0 12px 32px rgba(0,0,0,.45); }
}

/* Facts */
.facts {
  border-color: rgba(212,176,78,.35);
  box-shadow:
    0 28px 70px -28px rgba(0,0,0,.9),
    0 0 0 1px rgba(212,176,78,.12),
    0 0 50px rgba(212,176,78,.1);
  background: linear-gradient(135deg, rgba(212,176,78,.35), rgba(107,74,154,.25), rgba(212,176,78,.35));
}
.fact {
  background: linear-gradient(160deg, rgba(18,14,10,.97), rgba(10,8,6,.98));
  position: relative;
  overflow: hidden;
  transition: background .35s;
}
.fact::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.fact:hover {
  background: linear-gradient(160deg, rgba(28,22,14,.98), rgba(14,11,8,.98));
}
.fact:hover::before { opacity: 1; }
.fact strong {
  text-shadow: 0 0 18px rgba(212,176,78,.4);
}

/* Sections */
.section-head h2 {
  position: relative;
  text-shadow: 0 0 30px rgba(212,176,78,.2);
}
.section-head h2[data-text]::before {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  color: transparent;
  background: linear-gradient(90deg, transparent, rgba(255,231,160,.55), transparent);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-sheen 5s linear infinite;
  pointer-events: none;
  opacity: .7;
}
@keyframes title-sheen {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ornament {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,176,78,.5);
}
.ornament::before, .ornament::after {
  background: linear-gradient(90deg, transparent, rgba(212,176,78,.55), transparent);
  box-shadow: 0 0 8px rgba(212,176,78,.3);
  height: 1px;
}

/* Portrait */
.portrait {
  border-color: rgba(212,176,78,.35);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.95),
    0 0 0 1px rgba(212,176,78,.15),
    0 0 40px rgba(212,176,78,.12);
}
.portrait__frame {
  position: absolute; inset: 8px;
  border: 1px solid rgba(212,176,78,.25);
  border-radius: .2rem;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(212,176,78,.08);
  animation: frame-pulse 4s ease-in-out infinite;
}
.portrait__frame::before,
.portrait__frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  opacity: .7;
}
.portrait__frame::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
  box-shadow: -2px -2px 12px rgba(212,176,78,.4);
}
.portrait__frame::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
  box-shadow: 2px 2px 12px rgba(212,176,78,.4);
}
@keyframes frame-pulse {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; box-shadow: inset 0 0 40px rgba(212,176,78,.15); }
}
.portrait img {
  transition: transform 1.2s ease, filter .6s;
  filter: grayscale(.2) contrast(1.08) brightness(.95);
}
.portrait:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.12) brightness(1.02);
}

/* Disc items */
.disc-item {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .35s, transform .35s, box-shadow .4s, background .35s;
}
.disc-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(212,176,78,.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.disc-item:hover {
  border-color: rgba(212,176,78,.65);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 30px rgba(212,176,78,.18);
  background: rgba(22,18,12,.9);
}
.disc-item:hover::before { transform: translateX(100%); }
.disc-item img {
  transition: transform .5s, box-shadow .4s, filter .4s;
  box-shadow: 0 0 0 1px rgba(212,176,78,.15);
}
.disc-item:hover img {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 20px rgba(212,176,78,.45);
  filter: brightness(1.08) contrast(1.05);
}
.disc-year {
  text-shadow: 0 0 14px rgba(212,176,78,.45);
}

/* Players */
.player-card {
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: border-color .35s, box-shadow .4s, transform .35s;
}
.player-card::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,176,78,.4), transparent 40%, transparent 60%, rgba(107,74,154,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}
.player-card:hover {
  border-color: rgba(212,176,78,.45);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 36px rgba(212,176,78,.12);
  transform: translateY(-3px);
}

/* Gallery hover polish */
.gallery .g {
  transition: border-color .35s, box-shadow .4s, transform .35s;
}
.gallery .g:hover {
  border-color: rgba(212,176,78,.6);
  box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 24px rgba(212,176,78,.18);
  z-index: 2;
}

/* Cards */
.card {
  position: relative;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color .35s, box-shadow .4s, transform .35s;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,78,.7), transparent);
  box-shadow: 0 0 16px rgba(212,176,78,.5);
}
.card:hover {
  border-color: rgba(212,176,78,.55);
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 40px rgba(212,176,78,.12);
  transform: translateY(-4px);
}
.card h3 {
  text-shadow: 0 0 18px rgba(212,176,78,.4);
}
.card li::before {
  text-shadow: 0 0 10px rgba(212,176,78,.55);
  /* no pulse animation — conflicts with first-line alignment on mobile */
  animation: none;
}

/* Link row */
.link-row .btn { min-width: 8rem; }

/* Footer */
.epk-foot {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.45));
}
.epk-foot::before {
  content: "";
  position: absolute; left: 10%; right: 10%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,78,.45), transparent);
  box-shadow: 0 0 20px rgba(212,176,78,.35);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(4px);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0s),
    transform .9s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0s),
    filter .9s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Selection */
::selection {
  background: rgba(212,176,78,.35);
  color: #fff8e8;
}

/* ── Mobile / narrow: no horizontal bleed, full logo visible ── */
@media (max-width: 860px) {
  .hero__sigil { display: none; }
  .fx-aurora {
    opacity: .4;
    filter: blur(40px);
    inset: 0; /* was -20% → caused sideways bleed */
  }
  .hero { min-height: min(78vh, 720px); }
  .bg-grain::after { animation: none; } /* grain-shift translate */
  .hero__media img { animation: none; } /* ken-burns scale/translate */
  .hero__orb { display: none; }
  .hero__logo {
    animation: none;
    max-width: 100%;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.55));
  }
  .hero__logo::after { display: none; }
  .hero__logo img { animation: none; filter: none; }
  .section, .wrap, .facts, .disc-list, .gallery, .cards-2, .players {
    max-width: 100%;
    min-width: 0;
  }
  .disc-item { max-width: 100%; }
  .gallery { width: 100%; height: auto; }
  .gallery .g { max-width: 100%; }
}

@media (max-width: 640px) {
  :root {
    --pad: max(1rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .fx-runes { display: none; }
  .fx-scanlines { opacity: .04; }
  .hero {
    min-height: auto;
    overflow: visible;
  }
  .hero__content {
    padding-top: 3rem;
    padding-bottom: 1.75rem;
    /* horizontal pad comes only from .wrap — same as facts box */
  }
  /* same side inset as rest of page; no negative pull that shifts the gutter */
  .facts {
    margin-top: 0.35rem;
  }
  .hero h1 { font-size: clamp(2rem, 11vw, 2.75rem); word-break: break-word; }
  .hero__logo {
    max-width: 100%;
    width: 100%;
    margin-bottom: .85rem;
  }
  .hero__lede {
    font-size: 1.05rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }
  .hero .eyebrow {
    font-size: .78rem;
    letter-spacing: .12em;
    max-width: 100%;
  }
  .eyebrow {
    max-width: 100%;
  }
  .btn { width: 100%; max-width: 100%; }
  .hero__actions { width: 100%; max-width: 100%; }
  .hero__meta { max-width: 100%; }
  .pill { max-width: 100%; white-space: normal; text-align: center; }
  .facts {
    width: 100%;
    max-width: 100%;
  }
  .fact { padding: 1rem .9rem; }
  .link-row {
    width: 100%;
  }
  .link-row .btn {
    min-width: 0;
    flex: 1 1 calc(50% - .4rem);
  }
  .player-card { max-width: 100%; }
  .player-card iframe { max-width: 100%; }
  .card { max-width: 100%; }
  .card li {
    padding-left: 1.3rem;
    font-size: .98rem;
  }
  .card li::before {
    top: 0.78em;
  }
  /* Reveal shouldn't shift off-canvas */
  .reveal {
    transform: translateY(16px);
    filter: none;
  }
  .reveal.is-in {
    transform: none;
  }
  .gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
    gap: .55rem;
  }
  .gallery .g {
    aspect-ratio: 1;
    height: auto;
  }
  .gallery .g--a {
    aspect-ratio: 4 / 5;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero__media img { animation: none; }
  .fx-embers { display: none; }
}

@media print {
  .fx-root, .hero__orb, .hero__sigil, .portrait__frame { display: none !important; }
}
