:root {
  --cr-ink: #080707;
  --cr-ink-soft: #12100f;
  --cr-paper: #eee5d1;
  --cr-paper-soft: #cfc2aa;
  --cr-ember: #c83d21;
  --cr-ember-bright: #ed6a32;
  --cr-gold: #c9a365;
  --cr-line: rgba(231, 214, 181, 0.2);
  --cr-serif: "Cinzel", "Palatino Linotype", Georgia, serif;
  --cr-body: "Alegreya Sans", "Segoe UI", sans-serif;
}

body.cr-site-active {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--cr-ink);
}

body.cr-site-active > :not(#cr-site-shell):not(script):not(style):not(link) {
  display: none !important;
}

#cr-site-shell,
#cr-site-shell * {
  box-sizing: border-box;
}

#cr-site-shell[hidden] {
  display: none !important;
}

#cr-site-shell {
  position: relative;
  z-index: 2147483000;
  min-height: 100vh;
  color: var(--cr-paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(152, 52, 24, 0.12), transparent 32rem),
    linear-gradient(180deg, #080707, #100d0c 46%, #080707);
  font-family: var(--cr-body);
  font-size: 17px;
  line-height: 1.6;
  isolation: isolate;
}

#cr-site-shell::before {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cr-ember), var(--cr-gold), transparent);
  pointer-events: none;
}

#cr-site-shell a {
  color: inherit;
  text-decoration: none;
}

#cr-site-shell img {
  display: block;
  max-width: 100%;
}

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

.cr-site-skip {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  color: #fff;
  background: #17110e;
  border: 1px solid var(--cr-gold);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.cr-site-skip:focus {
  transform: translateY(0);
}

.cr-site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 0 3.2vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.74));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.cr-site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  width: max-content;
  letter-spacing: 0.19em;
  line-height: 1;
}

.cr-site-brand > span:last-child {
  display: grid;
  gap: 0.18rem;
}

.cr-site-brand strong,
.cr-site-brand small {
  display: block;
  font-family: var(--cr-serif);
  font-weight: 600;
}

.cr-site-brand strong {
  font-size: 0.98rem;
}

.cr-site-brand small {
  color: var(--cr-gold);
  font-size: 0.58rem;
  letter-spacing: 0.47em;
}

.cr-site-sigil {
  position: relative;
  display: grid;
  width: 39px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(218, 177, 108, 0.58);
  clip-path: polygon(50% 0, 94% 24%, 82% 78%, 50% 100%, 18% 78%, 6% 24%);
  background: linear-gradient(145deg, rgba(221, 157, 70, 0.2), rgba(97, 24, 13, 0.4));
}

.cr-site-sigil::before,
.cr-site-sigil::after,
.cr-site-sigil i {
  position: absolute;
  content: "";
  background: var(--cr-paper);
}

.cr-site-sigil::before {
  width: 17px;
  height: 2px;
  transform: rotate(55deg);
}

.cr-site-sigil::after {
  width: 17px;
  height: 2px;
  transform: rotate(-55deg);
}

.cr-site-sigil i {
  width: 2px;
  height: 21px;
}

.cr-site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.7vw, 3rem);
}

.cr-site-nav a {
  position: relative;
  padding: 0.7rem 0;
  color: rgba(238, 229, 209, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.cr-site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0.35rem;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--cr-ember-bright);
  transition: right 160ms ease, left 160ms ease;
}

.cr-site-nav a:hover,
.cr-site-nav a:focus-visible {
  color: #fff;
}

.cr-site-nav a:hover::after,
.cr-site-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.cr-site-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
}

.cr-site-language select {
  width: 6.6rem;
  min-height: 38px;
  padding: 0 1.7rem 0 0.65rem;
  color: rgba(238, 229, 209, 0.82);
  font: 600 0.7rem var(--cr-body);
  letter-spacing: 0.05em;
  border: 1px solid rgba(232, 211, 173, 0.24);
  border-radius: 0;
  background: #0b0908;
  cursor: pointer;
}

.cr-site-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0.25rem 1.65rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff !important;
  font: 700 0.77rem var(--cr-serif);
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgba(255, 151, 91, 0.48);
  background: linear-gradient(135deg, #8f2417, #cf4524 58%, #9b2817);
  box-shadow: 0 13px 34px rgba(105, 21, 11, 0.35), inset 0 0 0 1px rgba(255, 225, 184, 0.09);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cr-site-button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.cr-site-button:hover,
.cr-site-button:focus-visible {
  border-color: rgba(255, 202, 143, 0.86);
  box-shadow: 0 16px 42px rgba(158, 40, 19, 0.42), inset 0 0 0 1px rgba(255, 225, 184, 0.17);
  transform: translateY(-2px);
}

.cr-site-button:hover::after,
.cr-site-button:focus-visible::after {
  transform: translateX(120%);
}

.cr-site-button-small {
  min-height: 40px;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 0.65rem;
}

.cr-site-button-quiet {
  color: var(--cr-paper) !important;
  border-color: rgba(222, 204, 171, 0.35);
  background: rgba(8, 7, 7, 0.46);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cr-site-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 8.5rem max(6vw, 2rem) 5rem;
  border-bottom: 1px solid var(--cr-line);
}

.cr-site-hero-art,
.cr-site-hero-glow {
  position: absolute;
  inset: 0;
}

.cr-site-hero-art {
  z-index: -3;
  background-image: url('/realm-art/infernal-citadel.webp');
  background-position: center center;
  background-size: cover;
  transform: scale(1.018);
  animation: cr-site-hero-settle 7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.cr-site-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.95) 0%, rgba(5, 4, 4, 0.83) 27%, rgba(5, 4, 4, 0.2) 61%, rgba(4, 3, 3, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, transparent 30%, transparent 67%, #080707 100%);
}

.cr-site-hero-glow {
  z-index: -1;
  background: radial-gradient(circle at 22% 50%, rgba(154, 37, 16, 0.24), transparent 25rem);
  mix-blend-mode: screen;
}

.cr-site-hero-content {
  width: min(680px, 54vw);
  padding-top: 2rem;
  animation: cr-site-rise 900ms 160ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cr-site-kicker {
  display: flex;
  margin: 0 0 1rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--cr-gold);
  font: 700 0.72rem var(--cr-serif);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cr-site-kicker::before {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.cr-site-hero h1 {
  display: grid;
  width: min-content;
  margin: 0;
  color: #f5ead2;
  font-family: var(--cr-serif);
  font-weight: 500;
  line-height: 0.78;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.72);
}

.cr-site-hero h1 span {
  font-size: clamp(4.2rem, 9.2vw, 9.5rem);
  letter-spacing: -0.055em;
}

.cr-site-hero h1 small {
  justify-self: end;
  margin-top: 0.7em;
  color: #d6b57d;
  font-size: clamp(1rem, 1.9vw, 1.65rem);
  letter-spacing: 0.65em;
}

.cr-site-tagline {
  margin: 2.4rem 0 0.65rem;
  color: #fff7e7;
  font: italic 500 clamp(1.55rem, 2.5vw, 2.2rem) "Alegreya", Georgia, serif;
}

.cr-site-hero-body {
  max-width: 580px;
  margin: 0;
  color: rgba(238, 229, 209, 0.8);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.cr-site-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cr-site-meta {
  margin: 1.45rem 0 0;
  color: rgba(224, 206, 172, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cr-site-scroll {
  position: absolute;
  bottom: 2.3rem;
  left: 50%;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(238, 229, 209, 0.32);
  border-radius: 999px;
  transform: translateX(-50%);
}

.cr-site-scroll span {
  width: 3px;
  height: 8px;
  margin-top: 9px;
  border-radius: 3px;
  background: var(--cr-paper);
  animation: cr-site-scroll 1.8s infinite;
}

.cr-site-section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) max(5vw, 1.5rem);
}

.cr-site-world {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
  min-height: 760px;
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 15% 45%, rgba(124, 39, 20, 0.13), transparent 36rem),
    #0c0a09;
}

.cr-site-world::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: repeating-linear-gradient(125deg, transparent 0 31px, rgba(255, 255, 255, 0.04) 32px);
  pointer-events: none;
}

.cr-site-world-art {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.cr-site-world-art::before {
  position: absolute;
  inset: 8% 9% -5% -5%;
  content: "";
  border: 1px solid rgba(208, 162, 94, 0.22);
}

.cr-site-world-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 214, 181, 0.17);
  background:
    linear-gradient(180deg, transparent 54%, rgba(4, 3, 3, 0.84)),
    url('/realm-art/infernal-citadel.webp') 69% center / auto 100% no-repeat;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  clip-path: polygon(0 5%, 94% 0, 100% 92%, 8% 100%);
}

.cr-site-world-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.cr-site-world-copy h2,
.cr-site-section-heading h2,
.cr-site-community-copy h2 {
  margin: 0;
  color: #f2e5cd;
  font: 500 clamp(2.7rem, 5.6vw, 5.8rem)/1.03 var(--cr-serif);
  letter-spacing: -0.045em;
}

.cr-site-world-copy > p:not(.cr-site-kicker),
.cr-site-section-heading > p:not(.cr-site-kicker),
.cr-site-community-copy > p:not(.cr-site-kicker) {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: rgba(238, 229, 209, 0.69);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.cr-site-runes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(360px, 100%);
  margin-top: 3rem;
}

.cr-site-runes span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 166, 97, 0.6));
}

.cr-site-runes span:last-child {
  transform: rotate(180deg);
}

.cr-site-runes i {
  width: 12px;
  height: 12px;
  border: 1px solid var(--cr-gold);
  transform: rotate(45deg);
}

.cr-site-realms {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.96)),
    url('/realm-art/cryptic-realm-storm.webp') center / cover fixed;
}

.cr-site-section-heading {
  width: min(780px, 100%);
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.cr-site-section-heading .cr-site-kicker {
  justify-content: center;
}

.cr-site-section-heading .cr-site-kicker::after {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.cr-site-section-heading > p:not(.cr-site-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.cr-site-realm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1440px, 100%);
  margin: 0 auto;
  gap: 1px;
  background: rgba(219, 198, 159, 0.15);
  border: 1px solid rgba(219, 198, 159, 0.15);
}

.cr-site-realm {
  --cr-realm-accent: 156, 69, 37;
  position: relative;
  display: flex;
  min-height: 340px;
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--cr-realm-accent), 0.22), transparent 55%),
    #100e0d;
  transition: background-color 180ms ease, transform 180ms ease;
}

.cr-site-realm::before {
  position: absolute;
  inset: auto -30% -55% 20%;
  height: 80%;
  content: "";
  border: 1px solid rgba(var(--cr-realm-accent), 0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
  transition: transform 300ms ease;
}

.cr-site-realm:hover {
  z-index: 2;
  background-color: #171311;
  transform: translateY(-3px);
}

.cr-site-realm:hover::before {
  transform: rotate(-8deg) scale(1.08);
}

.cr-site-realm.is-flagship {
  grid-column: span 2;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(12, 8, 7, 0.98), rgba(12, 8, 7, 0.62)),
    url('/realm-art/infernal-citadel.webp') 72% center / cover;
}

.cr-site-realm-ember { --cr-realm-accent: 207, 66, 32; }
.cr-site-realm-gold { --cr-realm-accent: 196, 154, 79; }
.cr-site-realm-forest { --cr-realm-accent: 88, 128, 75; }
.cr-site-realm-steel { --cr-realm-accent: 116, 137, 147; }
.cr-site-realm-violet { --cr-realm-accent: 119, 78, 168; }
.cr-site-realm-cobalt { --cr-realm-accent: 53, 104, 167; }
.cr-site-realm-copper { --cr-realm-accent: 174, 102, 54; }
.cr-site-realm-void { --cr-realm-accent: 100, 57, 121; }

.cr-site-realm-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cr-site-status {
  color: rgb(var(--cr-realm-accent));
  font: 700 0.67rem var(--cr-serif);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cr-site-realm-index {
  color: rgba(238, 229, 209, 0.28);
  font: 500 0.75rem var(--cr-serif);
  letter-spacing: 0.12em;
}

.cr-site-realm h3 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin: auto 0 0;
  color: #f0e4cf;
  font: 500 clamp(1.6rem, 2.5vw, 2.7rem)/1.05 var(--cr-serif);
}

.cr-site-realm p {
  position: relative;
  z-index: 1;
  max-width: 43ch;
  margin: 1rem 0 1.5rem;
  color: rgba(238, 229, 209, 0.63);
  font-size: 0.98rem;
  line-height: 1.5;
}

.cr-site-text-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.3rem;
  color: #e9d8bb !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(var(--cr-realm-accent), 0.7);
}

.cr-site-gallery {
  background: #0b0908;
}

.cr-site-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.72fr);
  width: min(1440px, 100%);
  margin: 0 auto;
  align-items: stretch;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.cr-site-gallery figure {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #15100d;
}

.cr-site-gallery-side {
  margin-top: 8rem !important;
}

.cr-site-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: filter 500ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cr-site-gallery-side img {
  object-position: 67% center;
}

.cr-site-gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(5, 4, 4, 0.92));
  pointer-events: none;
}

.cr-site-gallery figure:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.cr-site-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  bottom: 1.6rem;
  left: 1.7rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.cr-site-gallery figcaption span {
  font: 500 clamp(1.3rem, 2.3vw, 2.2rem) var(--cr-serif);
}

.cr-site-gallery figcaption small {
  color: var(--cr-gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cr-site-community {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 7rem max(6vw, 2rem);
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--cr-line);
  border-bottom: 1px solid var(--cr-line);
}

.cr-site-community-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.9), rgba(8, 7, 7, 0.65), rgba(8, 7, 7, 0.9)),
    linear-gradient(180deg, #090807 0%, transparent 30%, transparent 66%, #090807 100%),
    url('/realm-art/cryptic-realm-storm.webp') center 53% / cover;
  filter: saturate(0.64);
  transform: scale(1.03);
}

.cr-site-community::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle, rgba(158, 51, 26, 0.2), transparent 34rem);
}

.cr-site-community-copy {
  width: min(790px, 100%);
}

.cr-site-community-copy .cr-site-kicker {
  justify-content: center;
}

.cr-site-community-copy .cr-site-kicker::after {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.cr-site-community-copy > p:not(.cr-site-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.cr-site-community-copy .cr-site-hero-actions {
  justify-content: center;
}

.cr-site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 230px;
  padding: 3.2rem max(5vw, 1.5rem);
  align-items: center;
  gap: 2rem;
  background: #070606;
}

.cr-site-footer p {
  margin: 0;
  color: rgba(238, 229, 209, 0.57);
  text-align: center;
}

.cr-site-footer nav {
  display: flex;
  justify-self: end;
  gap: 1.3rem;
}

.cr-site-footer nav a {
  color: rgba(238, 229, 209, 0.64);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cr-site-footer > small {
  grid-column: 1 / -1;
  color: rgba(238, 229, 209, 0.33);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.cr-site-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cr-site-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#cr-site-shell :focus-visible {
  outline: 2px solid #ffc778;
  outline-offset: 4px;
}

@keyframes cr-site-hero-settle {
  from { transform: scale(1.07); }
  to { transform: scale(1.018); }
}

@keyframes cr-site-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cr-site-scroll {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(18px); }
}

@media (max-width: 1120px) {
  .cr-site-header {
    grid-template-columns: auto 1fr auto;
  }

  .cr-site-nav {
    gap: 1.15rem;
  }

  .cr-site-nav a {
    font-size: 0.63rem;
  }

  .cr-site-realm-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .cr-site-header {
    min-height: 72px;
    padding: 0 1.1rem;
  }

  .cr-site-nav {
    display: none;
  }

  .cr-site-header-actions {
    grid-column: 3;
  }

  .cr-site-brand strong {
    font-size: 0.8rem;
  }

  .cr-site-sigil {
    width: 33px;
    height: 39px;
  }

  .cr-site-hero {
    min-height: 880px;
    padding: 8.5rem 1.5rem 5rem;
    align-items: end;
  }

  .cr-site-hero-art {
    background-position: 65% center;
  }

  .cr-site-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 3, 3, 0.34), rgba(4, 3, 3, 0.22) 30%, rgba(4, 3, 3, 0.94) 70%, #080707 100%),
      linear-gradient(90deg, rgba(4, 3, 3, 0.68), transparent 70%);
  }

  .cr-site-hero-content {
    width: 100%;
  }

  .cr-site-hero h1 span {
    font-size: clamp(3.45rem, 16vw, 6rem);
  }

  .cr-site-scroll {
    display: none;
  }

  .cr-site-world {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 4rem;
  }

  .cr-site-world-art {
    width: min(88vw, 580px);
    justify-self: center;
  }

  .cr-site-world-copy {
    max-width: 650px;
  }

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

  .cr-site-realm.is-flagship {
    grid-column: span 2;
  }

  .cr-site-gallery-grid {
    grid-template-columns: 1fr;
  }

  .cr-site-gallery-side {
    margin-top: 0 !important;
  }

  .cr-site-gallery figure {
    min-height: 440px;
  }

  .cr-site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cr-site-footer nav {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .cr-site-brand > span:last-child {
    display: none;
  }

  .cr-site-button-small {
    min-height: 38px;
    padding: 0.2rem 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .cr-site-language select {
    width: 6.4rem;
    padding-left: 0.4rem;
    font-size: 0.62rem;
  }

  .cr-site-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cr-site-hero-actions .cr-site-button {
    width: 100%;
  }

  .cr-site-meta {
    line-height: 1.8;
  }

  .cr-site-realm-grid {
    grid-template-columns: 1fr;
  }

  .cr-site-realm.is-flagship {
    grid-column: auto;
  }

  .cr-site-realm {
    min-height: 320px;
  }

  .cr-site-gallery figure {
    min-height: 350px;
  }

  .cr-site-gallery figcaption {
    align-items: start;
    flex-direction: column;
  }

  .cr-site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cr-site-shell *,
  #cr-site-shell *::before,
  #cr-site-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .cr-site-reveal {
    opacity: 1;
    transform: none;
  }
}
