
:root {
  --ink: #070707;
  --ink-soft: #0e0e0f;
  --paper: #efe8da;
  --paper-muted: #bcb4a6;
  --blood: #c6171d;
  --blood-bright: #ed1c24;
  --discord: #5865f2;
  --steel: #89929e;
  --line: rgba(239, 232, 218, 0.16);
  --line-strong: rgba(239, 232, 218, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --max: 1240px;
  --header-h: 78px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(198, 23, 29, 0.09), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0b0b0c 46%, #050505 100%);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: #fff; background: var(--blood); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: top 180ms ease;
}
.skip-link:focus { top: 16px; }

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #050505;
  pointer-events: none;
  animation: intro-away 1.35s cubic-bezier(.7,0,.2,1) forwards;
}
.site-intro::before,
.site-intro::after {
  content: "";
  position: absolute;
  width: min(620px, 86vw);
  height: 6px;
  background: var(--blood);
  transform: scaleX(0) skewX(-24deg);
  animation: intro-slash 780ms 120ms cubic-bezier(.2,.9,.2,1) forwards;
}
.site-intro::before { margin-top: -142px; transform-origin: left; }
.site-intro::after { margin-top: 142px; transform-origin: right; }
.intro-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 20px;
}
.intro-mark {
  width: clamp(70px, 9vw, 96px);
  height: auto;
  border: 1px solid rgba(239,232,218,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(14px) scale(.94);
  animation: intro-mark 720ms 120ms ease forwards;
}
.intro-word {
  position: relative;
  z-index: 1;
  font: 900 clamp(3.4rem, 12vw, 9rem)/.8 Georgia, "Times New Roman", serif;
  letter-spacing: .12em;
  text-indent: .12em;
  color: var(--paper);
  opacity: 0;
  transform: translateY(18px);
  animation: intro-word 760ms 180ms ease forwards;
}
@keyframes intro-slash { to { transform: scaleX(1) skewX(-24deg); } }
@keyframes intro-mark { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes intro-word { to { opacity: 1; transform: translateY(0); } }
@keyframes intro-away { 0%,72% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; } }

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1800;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, #7b0d10, var(--blood-bright));
  box-shadow: 0 0 16px rgba(237, 28, 36, .7);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 23, 29, .08), rgba(198, 23, 29, 0) 68%);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 300ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5,5,5,.88), rgba(5,5,5,.42), transparent);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7,7,7,.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .18em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(239,232,218,.28);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-name { font-size: .84rem; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav > a {
  position: relative;
  color: rgba(239,232,218,.72);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blood);
  transition: right 180ms ease;
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav > a.active { color: var(--paper); }
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.active::after { right: 0; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(237,28,36,.75);
  background: rgba(198,23,29,.16);
  color: #fff !important;
}
.nav-cta:hover { background: var(--blood); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media,
.hero-media img,
.hero-shade,
.hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -4; }
.hero-media img {
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.035) translateY(var(--hero-shift, 0px));
  animation: hero-breathe 20s ease-in-out infinite alternate;
}
@keyframes hero-breathe { to { transform: scale(1.09) translateY(var(--hero-shift, 0px)); } }
.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.48) 34%, rgba(0,0,0,.12) 63%, rgba(0,0,0,.48) 100%),
    linear-gradient(0deg, #070707 0%, rgba(7,7,7,.76) 17%, transparent 50%, rgba(0,0,0,.2) 100%);
}
.hero-grain,
.grain-layer {
  z-index: -2;
  opacity: .18;
  background-image: url("images/grain.png");
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 100px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 48px;
  align-items: end;
}
.hero-copy { max-width: 700px; }
.eyebrow {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 46px; height: 2px; background: var(--blood-bright); }
.hero h1 {
  margin: 0;
  font: 900 clamp(5rem, 13vw, 10.5rem)/.78 Georgia, "Times New Roman", serif;
  letter-spacing: -.07em;
  text-shadow: 0 14px 55px rgba(0,0,0,.5);
}
.hero h1 span { color: var(--blood-bright); }
.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(239,232,218,.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid var(--line-strong);
  background: rgba(6,6,6,.62);
  color: var(--paper);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button.primary { border-color: var(--blood); background: var(--blood); color: #fff; }
.button.primary:hover,
.button.primary:focus-visible { background: #e31b23; border-color: #e31b23; color: #fff; }
.button.community {
  border-color: rgba(88,101,242,.8);
  background: rgba(88,101,242,.15);
}
.button.community:hover,
.button.community:focus-visible {
  border-color: var(--discord);
  background: var(--discord);
  color: #fff;
}
.button .arrow { font-size: 1rem; transition: transform 180ms ease; }
.button:hover .arrow { transform: translateX(4px); }
.hero-meta {
  margin: 42px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  list-style: none;
}
.hero-meta li { display: grid; gap: 2px; }
.hero-meta strong { color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-meta span { color: rgba(239,232,218,.55); font-size: .82rem; }
.hero-side {
  justify-self: end;
  padding-bottom: 9px;
  writing-mode: vertical-rl;
  color: rgba(239,232,218,.5);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(239,232,218,.54);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue::after { content: ""; width: 52px; height: 1px; background: currentColor; animation: cue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes cue { 50% { transform: scaleX(.3); opacity: .35; } }

.section { position: relative; padding: clamp(92px, 11vw, 154px) 0; }
.section-shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--blood-bright);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-label::before { content: attr(data-index); color: rgba(239,232,218,.45); }
.section-label::after { content: ""; width: 54px; height: 1px; background: rgba(237,28,36,.7); }
.display-title {
  max-width: 900px;
  margin: 0;
  font: 700 clamp(2.8rem, 6.4vw, 6.4rem)/.95 Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
}
.display-title em { color: var(--blood-bright); font-style: normal; }
.section-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.vision { overflow: hidden; }
.vision::before {
  content: "VITAL";
  position: absolute;
  right: -2vw;
  top: 4vw;
  color: rgba(239,232,218,.022);
  font: 900 min(20vw, 280px)/1 Georgia, serif;
  letter-spacing: .08em;
  pointer-events: none;
}
.vision-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: center;
}
.portrait-frame {
  position: relative;
  max-width: 530px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  background: #0a0a0b;
  box-shadow: var(--shadow);
}
.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border-color: var(--blood);
  pointer-events: none;
}
.portrait-frame::before { inset: -9px auto auto -9px; border-left: 2px solid; border-top: 2px solid; }
.portrait-frame::after { inset: auto -9px -9px auto; border-right: 2px solid; border-bottom: 2px solid; }
.portrait-frame img { width: 100%; aspect-ratio: 1.02; object-fit: cover; object-position: center 34%; filter: saturate(.78) contrast(1.06); }
.image-note {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 9px 12px;
  background: rgba(4,4,4,.78);
  border-left: 2px solid var(--blood);
  color: rgba(239,232,218,.86);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); border: 1px solid var(--line); }
.pillar { min-height: 210px; padding: 28px; background: #0a0a0b; }
.pillar b { display: block; margin-bottom: 28px; color: rgba(239,232,218,.28); font: 700 1.7rem/1 Georgia, serif; }
.pillar h3 { margin: 0 0 10px; font-size: 1rem; letter-spacing: .04em; }
.pillar p { margin: 0; color: var(--paper-muted); font-size: .91rem; }

.identity {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(198,23,29,.08), transparent 42%),
    radial-gradient(circle at 78% 35%, rgba(239,232,218,.055), transparent 26rem),
    #080809;
}
.identity::before {
  content: "";
  position: absolute;
  left: -9vw;
  top: 20%;
  width: 48vw;
  height: 9px;
  background: var(--blood);
  opacity: .65;
  transform: rotate(-8deg) skewX(-28deg);
  box-shadow: 0 34px 0 rgba(198,23,29,.22);
  pointer-events: none;
}
.identity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.identity-features {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.identity-features article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.identity-features article > span {
  color: var(--blood-bright);
  font: 700 1.05rem/1.3 Georgia, serif;
  letter-spacing: .08em;
}
.identity-features h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
  letter-spacing: .025em;
}
.identity-features p {
  margin: 0;
  color: var(--paper-muted);
  font-size: .92rem;
}
.identity-seal {
  position: relative;
  min-height: 570px;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(239,232,218,.055), transparent 46%),
    rgba(4,4,5,.82);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.identity-seal::before {
  content: "血";
  position: absolute;
  right: -18px;
  top: -32px;
  z-index: -1;
  color: rgba(239,232,218,.035);
  font: 700 19rem/1 Georgia, serif;
}
.identity-seal::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(239,232,218,.08);
  pointer-events: none;
}
.identity-seal img {
  width: min(290px, 78%);
  height: auto;
  border: 1px solid rgba(239,232,218,.24);
  box-shadow: 0 26px 70px rgba(0,0,0,.58);
  transform: rotate(-1.5deg);
}
.seal-slash {
  position: absolute;
  left: -15%;
  top: 30%;
  z-index: -2;
  width: 130%;
  height: 54px;
  background: var(--blood);
  opacity: .85;
  transform: rotate(-9deg) skewX(-24deg);
}
.seal-copy {
  max-width: 330px;
  text-align: center;
}
.seal-copy small {
  display: block;
  margin-bottom: 11px;
  color: var(--blood-bright);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.seal-copy strong {
  display: block;
  font: 700 clamp(1.7rem, 3vw, 2.55rem)/1.05 Georgia, serif;
}
.seal-copy p {
  margin: 16px 0 0;
  color: var(--paper-muted);
  font-size: .9rem;
}

.combat-section { padding: 0; background: #030303; }
.combat-stage { position: relative; min-height: min(900px, 100svh); display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.combat-stage picture,
.combat-stage picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.combat-stage picture { z-index: -3; }
.combat-stage picture img { object-fit: cover; object-position: center; }
.combat-stage::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,4,4,.92) 0%, rgba(4,4,4,.64) 36%, rgba(4,4,4,.08) 72%), linear-gradient(0deg, #050505 0%, transparent 48%, rgba(0,0,0,.25)); }
.combat-panel { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 120px 0 92px; }
.combat-copy { max-width: 650px; padding: 36px; border: 1px solid rgba(239,232,218,.2); background: rgba(8,8,8,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.combat-copy .display-title { font-size: clamp(2.6rem, 5.4vw, 5.3rem); }
.combat-principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.combat-principles span { padding: 8px 11px; border: 1px solid var(--line); color: rgba(239,232,218,.72); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.world { overflow: hidden; }
.world-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 56px); align-items: center; }
.world-copy { padding-right: 5vw; }
.world-images { position: relative; min-height: 680px; }
.world-image { position: absolute; overflow: hidden; border: 1px solid var(--line); background: #090909; box-shadow: var(--shadow); }
.world-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.8,.2,1); }
.world-image:hover img { transform: scale(1.035); }
.world-image.one { inset: 0 15% 26% 0; }
.world-image.two { inset: 44% 0 0 28%; border-color: rgba(198,23,29,.55); }
.world-image .image-note { left: 20px; bottom: 20px; }
.world-brush { position: absolute; right: -20%; top: 8%; width: 60%; height: 28%; background: var(--blood); opacity: .75; transform: rotate(-5deg) skewX(-18deg); filter: blur(.2px); z-index: -1; }

.gallery-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 48px; }
.gallery-head .section-copy { max-width: 410px; margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 14px; }
.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  border: 1px solid var(--line);
  background: #090909;
  color: inherit;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
}
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 300ms ease; }
.gallery-item::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 52%); opacity: .68; transition: opacity 250ms ease; }
.gallery-item::after { content: "+"; position: absolute; z-index: 2; right: 18px; top: 14px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.38); background: rgba(0,0,0,.32); color: #fff; font-size: 1.1rem; opacity: 0; transform: scale(.8); transition: opacity 200ms ease, transform 200ms ease; }
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1.05) contrast(1.03); }
.gallery-item:hover::before { opacity: .9; }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; transform: scale(1); }
.gallery-caption { position: absolute; z-index: 2; left: 18px; right: 60px; bottom: 16px; }
.gallery-caption b { display: block; font-size: .87rem; letter-spacing: .03em; }
.gallery-caption small { color: rgba(239,232,218,.58); font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure { margin: 0; max-width: min(1500px, 94vw); max-height: 90vh; display: grid; gap: 12px; justify-items: center; }
.lightbox-figure img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 25px 100px rgba(0,0,0,.8); }
.lightbox-figure figcaption { color: rgba(239,232,218,.7); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.lightbox-close,
.lightbox-nav { position: absolute; border: 1px solid var(--line-strong); background: rgba(5,5,5,.7); color: var(--paper); cursor: pointer; }
.lightbox-close { right: 24px; top: 22px; width: 48px; height: 48px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; width: 50px; height: 64px; transform: translateY(-50%); font-size: 1.5rem; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--paper); color: var(--ink); }

.credits { padding-top: 0; }
.cta-card {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  box-shadow: var(--shadow);
}
.cta-card picture,
.cta-card picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-card picture { z-index: -3; }
.cta-card picture img { object-fit: cover; object-position: center 58%; }
.cta-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.18)), linear-gradient(0deg, rgba(0,0,0,.88), transparent 65%); }
.cta-content { max-width: 770px; padding: clamp(36px, 6vw, 76px); }
.cta-content h2 { margin: 0; font: 700 clamp(3.2rem, 7vw, 7rem)/.88 Georgia, serif; letter-spacing: -.05em; }
.cta-content h2 span { color: var(--blood-bright); }
.cta-content p { max-width: 610px; margin: 26px 0 0; color: rgba(239,232,218,.74); font-size: 1.03rem; }
.creator-credit { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 32px; color: rgba(239,232,218,.6); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.creator-credit strong { color: var(--paper); }

.site-footer { padding: 36px 0 46px; border-top: 1px solid var(--line); }
.footer-shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end; }
.footer-brand { display: grid; gap: 12px; }
.footer-lockup { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.footer-lockup img { width: 34px; height: 34px; border: 1px solid var(--line-strong); }
.footer-brand b { font: 800 1.25rem/1 Georgia, serif; letter-spacing: .15em; }
.footer-brand p { max-width: 730px; margin: 0; color: rgba(239,232,218,.45); font-size: .75rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: rgba(239,232,218,.65); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--blood-bright); outline-offset: 4px; }

@media (max-width: 1120px) {
  :root { --header-h: 70px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    min-height: calc(100svh - var(--header-h));
    padding: 54px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: rgba(5,5,5,.98);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(.6,0,.2,1);
  }
  .nav-open .primary-nav { transform: translateX(0); }
  .primary-nav > a { font-size: .96rem; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 12px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .vision-grid,
  .identity-grid,
  .world-grid { grid-template-columns: 1fr; }
  .vision-copy { order: -1; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 0; }
  .identity-seal { min-height: 520px; max-width: 720px; width: 100%; margin: 0 auto; }
  .world-copy { padding-right: 0; }
  .world-images { min-height: 650px; margin-top: 24px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
  .gallery-head { align-items: start; flex-direction: column; }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero-inner,
  .section-shell,
  .combat-panel,
  .footer-shell { width: min(100% - 28px, var(--max)); }
  .brand-name { font-size: .76rem; }
  .brand-mark { width: 39px; height: 39px; }
  .hero { min-height: 820px; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, #070707 0%, rgba(7,7,7,.84) 31%, rgba(0,0,0,.16) 68%, rgba(0,0,0,.42) 100%); }
  .hero-inner { padding-bottom: 56px; }
  .hero h1 { font-size: clamp(4.4rem, 25vw, 7rem); }
  .hero-lede { font-size: .98rem; }
  .hero-actions .button,
  .cta-actions .button { width: 100%; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 0; }
  .display-title { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .portrait-frame { padding: 10px; }
  .identity-features article { grid-template-columns: 40px 1fr; gap: 14px; }
  .identity-seal { min-height: 480px; padding: 28px 20px; }
  .identity-seal img { width: min(240px, 74%); }
  .combat-stage { min-height: 760px; }
  .combat-stage picture img { object-position: 42% center; }
  .combat-stage::before { background: linear-gradient(0deg, rgba(4,4,4,.96) 0%, rgba(4,4,4,.68) 51%, rgba(4,4,4,.08) 100%); }
  .combat-copy { padding: 26px 22px; }
  .world-images { min-height: 500px; }
  .world-image.one { inset: 0 5% 31% 0; }
  .world-image.two { inset: 48% 0 0 18%; }
  .gallery-grid { grid-auto-rows: 130px; gap: 10px; }
  .gallery-item,
  .gallery-item.wide { grid-column: span 12; grid-row: span 2; }
  .gallery-item.tall { grid-row: span 3; }
  .lightbox { padding: 14px; }
  .lightbox-nav { top: auto; bottom: 18px; width: 52px; height: 48px; transform: none; }
  .lightbox-prev { left: calc(50% - 60px); }
  .lightbox-next { right: calc(50% - 60px); }
  .lightbox-close { right: 14px; top: 14px; }
  .cta-card { min-height: 650px; }
  .cta-card picture img { object-position: 62% center; }
  .cta-content { padding: 34px 22px 46px; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

.error-page{min-height:100svh;display:grid;place-items:center;padding:30px;background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.4)),url('/assets/images/vital-hero-1672.webp') center/cover}.error-page>div{max-width:760px;text-align:center}.error-page .eyebrow{justify-content:center}.error-page h1{margin:0;font:700 clamp(3rem,9vw,7rem)/.9 Georgia,serif}.error-page p:not(.eyebrow){color:var(--paper-muted);font-size:1.05rem}.error-page .button{margin-top:20px}

.error-mark{width:76px;height:76px;margin:0 auto 22px;border:1px solid var(--line-strong);box-shadow:0 16px 50px rgba(0,0,0,.5)}
