:root {
  --ink: #090807;
  --charcoal: #171310;
  --charcoal-2: #211a16;
  --paper: #e7cea0;
  --paper-dim: #bda780;
  --white: #f5f1e9;
  --blood: #ab3028;
  --blood-bright: #d44739;
  --rust: #794633;
  --portal: #62d4ef;
  --pink: #efacc7;

  --max: 1280px;
  --pad: clamp(22px, 5vw, 72px);
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  font-synthesis: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(171,48,40,.09), transparent 30rem),
    var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .045;
  background-image:
    repeating-radial-gradient(circle at 20% 30%,
      rgba(255,255,255,.9) 0 1px,
      transparent 1px 4px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--blood-bright);
  color: white;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 38px;
  transition:
    background .3s ease,
    border-color .3s ease,
    height .3s ease;
  border-bottom: 1px solid transparent;
}

.topbar.scrolled {
  height: 68px;
  background: rgba(9,8,7,.91);
  backdrop-filter: blur(14px);
  border-color: rgba(231,206,160,.14);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: .78;
  transform: rotate(-1deg);
  min-width: 95px;
}

.brand-main {
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: .06em;
}

.brand-sub {
  margin-top: 7px;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: .42em;
  color: var(--paper);
}

.nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .13em;
  opacity: .77;
  transition: opacity .2s, color .2s;
}

.nav a:hover {
  opacity: 1;
  color: var(--paper);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.portal-button,
.language-current {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(0,0,0,.2);
  height: 36px;
  padding: 0 13px;
  font: 800 9px/1 var(--sans);
  letter-spacing: .13em;
  cursor: pointer;
}

.portal-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.noise-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blood-bright);
  box-shadow: 0 0 13px rgba(212,71,57,.8);
}

.language {
  position: relative;
}

.language-current {
  width: 46px;
}

.language-menu {
  position: absolute;
  top: 43px;
  right: 0;
  width: 58px;
  display: none;
  background: var(--ink);
  border: 1px solid rgba(231,206,160,.23);
}

.language.open .language-menu {
  display: block;
}

.language-menu a {
  display: block;
  padding: 9px 12px;
  text-align: center;
  font-weight: 900;
  font-size: 10px;
  text-decoration: none;
}

.language-menu a:hover {
  background: var(--blood);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #111;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -5;
}

.hero-art {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  filter: brightness(.72) saturate(.82) contrast(1.08);
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(4,4,4,.82) 0%,
      rgba(6,6,6,.70) 25%,
      rgba(7,7,7,.34) 46%,
      rgba(6,6,6,.20) 66%,
      rgba(3,3,3,.37) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4,4,4,.96) 0%,
      rgba(5,5,5,.54) 31%,
      rgba(5,5,5,.12) 66%
    ),
    linear-gradient(
      180deg,
      rgba(3,3,3,.62) 0%,
      transparent 32%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .11;
  background:
    repeating-linear-gradient(
      93deg,
      transparent 0 9px,
      rgba(255,255,255,.08) 10px,
      transparent 11px 18px
    );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.portal-pulse {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 45%;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.portal-pulse-one {
  background:
    radial-gradient(circle,
      rgba(116,220,255,.14) 0,
      rgba(116,220,255,.06) 27%,
      transparent 65%);
  animation: portalPulse 4.2s ease-in-out infinite;
}

.portal-pulse-two {
  background:
    radial-gradient(circle,
      rgba(255,74,45,.12) 0,
      transparent 62%);
  animation: portalPulse 5.6s ease-in-out infinite reverse;
}

@keyframes portalPulse {
  0%, 100% {
    opacity: .55;
    transform: translate(-50%, -50%) scale(.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-content {
  width: min(840px, calc(100% - 2 * var(--pad)));
  margin-left: var(--pad);
  padding: 170px 0 88px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .26em;
  color: var(--paper);
}

.hero h1,
.section h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .86;
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px, 8.2vw, 148px);
  text-shadow: 0 5px 35px rgba(0,0,0,.45);
}

.hero h1 span {
  display: block;
}

.accent {
  color: var(--blood-bright);
}

.hero-lead {
  width: min(660px, 100%);
  margin: 27px 0 0;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 700;
  text-shadow: 0 2px 15px black;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: .13em;
  transition:
    transform .18s ease,
    background .18s ease,
    color .18s ease;
}

.button:hover {
  transform: translateY(-2px) rotate(-.4deg);
}

.button-primary {
  background: var(--blood-bright);
  color: white;
}

.button-primary:hover {
  background: #eb5142;
}

.button-ghost {
  border-color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(5px);
}

.button-ghost:hover {
  background: white;
  color: var(--ink);
}

.since {
  margin: 22px 0 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .24em;
  opacity: .62;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 42px;
  width: 34px;
  height: 55px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  width: 4px;
  height: 9px;
  background: white;
  border-radius: 4px;
  left: 14px;
  top: 10px;
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(23px); opacity: 0; }
}

.section {
  position: relative;
  padding: clamp(85px, 11vw, 160px) var(--pad);
}

.section-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.manifesto {
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0,
      rgba(171,48,40,.16),
      transparent 38rem),
    var(--ink);
}

.manifesto-inner {
  text-align: center;
}

.manifesto h2 {
  font-size: clamp(77px, 14vw, 220px);
}

.manifesto-copy {
  margin: 34px auto 0;
  max-width: 700px;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(245,241,233,.77);
}

.rule-line {
  width: 1px;
  height: 70px;
  background: var(--blood-bright);
  margin: 45px auto;
}

.big-rule {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 6.2vw, 94px);
  line-height: .92;
}

.games {
  background:
    linear-gradient(135deg, rgba(231,206,160,.025), transparent 50%),
    var(--charcoal);
  border-top: 1px solid rgba(231,206,160,.12);
  border-bottom: 1px solid rgba(231,206,160,.12);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(55px, 8vw, 112px);
}

.section-heading > p:last-child {
  max-width: 620px;
  color: rgba(245,241,233,.65);
  font-size: 17px;
}

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

.game-card {
  position: relative;
  min-height: 590px;
  padding: clamp(28px, 4vw, 55px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(231,206,160,.17);
  background: #16120f;
  transition:
    transform .3s ease,
    border-color .3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231,206,160,.4);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .75;
}

.game-milk::before {
  background:
    radial-gradient(circle at 20% 18%,
      rgba(239,172,199,.38),
      transparent 16rem),
    radial-gradient(circle at 84% 23%,
      rgba(98,212,239,.19),
      transparent 19rem),
    linear-gradient(145deg, #342823, #111);
}

.game-brain::before {
  background:
    radial-gradient(circle at 78% 17%,
      rgba(171,48,40,.54),
      transparent 17rem),
    linear-gradient(145deg, #221716, #090909);
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,.2) 35%,
      rgba(0,0,0,.91) 100%);
}

.game-no {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 25px;
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 900;
  color: var(--paper);
}

.game-content {
  position: relative;
  z-index: 3;
  max-width: 530px;
}

.game-status {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.game-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 120px);
  line-height: .83;
}

.game-tagline {
  margin: 17px 0 12px;
  font-weight: 900;
  font-size: 16px;
}

.game-description {
  color: rgba(245,241,233,.67);
  max-width: 490px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.game-meta span {
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.game-link {
  display: inline-block;
  margin-top: 25px;
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.game-card small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.36);
}

.story {
  background:
    linear-gradient(
      100deg,
      rgba(171,48,40,.07),
      transparent 40%),
    var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: clamp(50px, 9vw, 130px);
}

.story-title h2 {
  font-size: clamp(54px, 7vw, 106px);
}

.story-copy {
  padding-top: 33px;
  font-family: var(--serif);
  color: rgba(245,241,233,.73);
  font-size: clamp(17px, 1.35vw, 20px);
}

.story-copy p {
  margin: 0 0 24px;
}

.story-highlight {
  color: var(--white);
  font-weight: bold;
}

.ethics-strip {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: clamp(75px, 10vw, 130px) auto 0;
  padding: 28px 0;
  border-top: 1px solid rgba(231,206,160,.24);
  border-bottom: 1px solid rgba(231,206,160,.24);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.ethics-label,
.ethics-strip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 62px);
  line-height: .86;
}

.ethics-strip strong {
  color: var(--blood-bright);
}

.ethics-strip p {
  margin: 0;
  color: rgba(245,241,233,.63);
}

.brands {
  overflow: hidden;
  background: #140d0b;
}

.brands-background {
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    repeating-linear-gradient(
      -10deg,
      transparent 0 28px,
      rgba(231,206,160,.025) 29px 30px),
    radial-gradient(circle at 80% 50%,
      rgba(171,48,40,.45),
      transparent 42rem);
}

.brands-inner {
  position: relative;
}

.brands h2 {
  max-width: 1100px;
  font-size: clamp(64px, 9vw, 138px);
}

.brands h2 span {
  display: block;
}

.brands-intro {
  max-width: 700px;
  font-size: clamp(18px, 1.7vw, 24px);
  color: rgba(245,241,233,.69);
  margin: 32px 0 55px;
}

.brand-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(231,206,160,.22);
  border-bottom: 1px solid rgba(231,206,160,.22);
}

.process-card {
  position: relative;
  padding: 34px 26px 35px 0;
  min-height: 185px;
}

.process-card:not(:last-child) {
  border-right: 1px solid rgba(231,206,160,.16);
  margin-right: 25px;
}

.process-card > span {
  color: var(--blood-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.process-card strong {
  display: block;
  margin-top: 23px;
  font-family: var(--display);
  font-size: 35px;
}

.process-card p {
  margin: 7px 0 0;
  color: rgba(245,241,233,.55);
  font-size: 14px;
}

.brand-statement {
  margin: 65px 0 38px;
  font-family: var(--display);
  font-size: clamp(47px, 6.5vw, 100px);
  line-height: .88;
}

.brand-statement p {
  margin: 0;
}

.contact {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.contact .kicker {
  color: var(--blood);
}

.contact h2 {
  font-size: clamp(62px, 9vw, 136px);
}

.contact-inner > p:not(.kicker) {
  font-family: var(--serif);
  font-size: 20px;
}

.contact-email {
  display: inline-block;
  margin-top: 16px;
  color: var(--blood);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.footer {
  padding: 50px var(--pad);
  background: #050504;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr auto;
  gap: 30px;
  align-items: end;
  border-top: 1px solid rgba(231,206,160,.12);
  font-size: 11px;
  color: rgba(245,241,233,.46);
}

.footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 31px;
  color: white;
  line-height: .8;
}

.footer-brand span {
  margin-top: 8px;
  color: var(--paper);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .32em;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {

  .nav {
    display: none;
  }

  .topbar {
    gap: 10px;
  }

  .top-actions {
    margin-left: auto;
  }

  .portal-button span:last-child {
    display: none;
  }

  .portal-button {
    padding: 0 12px;
  }

  .games-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 520px;
  }

  .brand-process {
    grid-template-columns: 1fr 1fr;
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(231,206,160,.16);
  }

  .ethics-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {

  :root {
    --pad: 21px;
  }

  .topbar {
    height: 68px;
  }

  .brand-main {
    font-size: 27px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-art {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    transform: none !important;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg,
        rgba(7,6,5,.96) 0%,
        rgba(7,6,5,.62) 38%,
        rgba(7,6,5,.08) 69%),
      linear-gradient(180deg,
        rgba(0,0,0,.4),
        transparent 25%);
  }

  .portal-pulse {
    width: 92vw;
    top: 36%;
  }

  .hero-content {
    width: calc(100% - 42px);
    margin-left: 21px;
    padding-bottom: 61px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .hero-lead {
    font-size: 14px;
    max-width: 92%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto h2 {
    font-size: clamp(74px, 25vw, 120px);
  }

  .games-grid {
    gap: 13px;
  }

  .game-card {
    min-height: 490px;
  }

  .game-card h3 {
    font-size: 79px;
  }

  .brand-process {
    grid-template-columns: 1fr;
  }

  .process-card {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(231,206,160,.16);
    margin-right: 0 !important;
  }

  .contact-email {
    word-break: break-all;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   RATL V1.1
   ========================================================= */

.hero h1,
.section h2,
.big-rule,
.game-card h3,
.ethics-label,
.ethics-strip strong,
.process-card strong,
.brand-statement,
.contact-email,
.contact h2,
.footer-brand strong {
  font-weight: 400 !important;
}

/* PORTAL CTA */

.portal-button {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  background: rgba(5,5,5,.48);
  height: 36px;
  padding: 0 13px;
  font: 800 9px/1 var(--sans);
  letter-spacing: .13em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.portal-button:hover {
  border-color: rgba(98,212,239,.8);
  background: rgba(10,21,27,.76);
  box-shadow:
    0 0 0 1px rgba(98,212,239,.10),
    0 0 22px rgba(98,212,239,.18);
  transform: translateY(-1px);
}

.portal-button-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--portal);
  box-shadow:
    0 0 7px rgba(98,212,239,.9),
    0 0 15px rgba(98,212,239,.55);
}

.portal-button.opening .portal-button-core {
  animation: portalButtonCore .65s ease-in-out;
}

@keyframes portalButtonCore {
  0%   { transform: scale(1); }
  35%  { transform: scale(2.4); background: #fff; }
  100% { transform: scale(1); }
}

/* HERO PORTAL FX */

.portal-flash {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 50%;
  top: 45%;
  width: min(47vw, 750px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.1);
  opacity: 0;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.95) 0%,
      rgba(112,225,255,.62) 10%,
      rgba(80,175,255,.21) 34%,
      transparent 66%
    );
  mix-blend-mode: screen;
}

.hero.portal-opening .portal-flash {
  animation: portalFlash .85s cubic-bezier(.18,.65,.2,1);
}

@keyframes portalFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.15);
  }
  32% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(.72);
  }
  62% {
    opacity: .8;
    transform: translate(-50%, -50%) scale(1.12);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

.hero-embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-ember {
  position: absolute;
  bottom: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff6a3f;
  box-shadow: 0 0 8px #ff4d28;
  opacity: 0;
  animation: emberRise var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes emberRise {
  0% {
    opacity: 0;
    transform: translate3d(0,0,0) scale(.6);
  }
  12% {
    opacity: .7;
  }
  75% {
    opacity: .35;
  }
  100% {
    opacity: 0;
    transform:
      translate3d(var(--drift), -46vh, 0)
      scale(.15);
  }
}

/* CONTACT - WAR TABLE */

.contact {
  background:
    linear-gradient(
      115deg,
      rgba(231,206,160,1),
      rgba(215,183,126,.96)
    );
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(390px,.8fr);
  gap: clamp(55px,8vw,130px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(65px,8vw,125px);
}

.contact-copy > p:not(.kicker) {
  max-width: 600px;
  font-family: var(--serif);
  font-size: 19px;
}

.war-table-note {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(9,8,7,.25);
}

.war-table-note span {
  display: block;
  color: var(--blood);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.war-table-note strong {
  display: block;
  margin-top: 9px;
  max-width: 450px;
  font-family: var(--display);
  font-size: clamp(25px,2.4vw,38px);
  line-height: 1;
  font-weight: 400;
}

.ratl-form {
  padding: clamp(28px,3.2vw,46px);
  background: rgba(9,8,7,.96);
  color: var(--white);
  border: 1px solid rgba(9,8,7,.9);
  box-shadow: 18px 18px 0 rgba(171,48,40,.23);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(245,241,233,.23);
  border-radius: 0;
  outline: 0;
  padding: 12px 2px 13px;
  background: transparent;
  color: var(--white);
  font: 600 15px/1.4 var(--sans);
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blood-bright);
  box-shadow: 0 1px 0 var(--blood-bright);
}

.form-submit {
  width: 100%;
  min-height: 55px;
  margin-top: 8px;
  border: 0;
  background: var(--blood-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  cursor: pointer;
  font: 900 10px/1 var(--sans);
  letter-spacing: .14em;
  transition:
    background .2s,
    transform .2s;
}

.form-submit:hover {
  background: #ed5546;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.submit-arrow {
  font-size: 21px;
  font-weight: 400;
}

.form-status {
  min-height: 21px;
  margin: 14px 0 0;
  color: var(--paper);
  font-size: 12px;
}

.form-status.success {
  color: #91d9a7;
}

.form-status.error {
  color: #ff7b6d;
}

.ebony-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(231,206,160,.32);
  background: rgba(9,8,7,.88);
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  backdrop-filter: blur(10px);
  transition:
    opacity .25s,
    visibility .25s,
    transform .25s,
    border-color .2s,
    color .2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: white;
  border-color: var(--blood-bright);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ratl-form {
    box-shadow: 10px 10px 0 rgba(171,48,40,.2);
  }
}

@media (max-width: 700px) {
  .portal-flash {
    width: 110vw;
    top: 36%;
  }

  .back-to-top {
    right: 17px;
    bottom: 17px;
    width: 44px;
    height: 44px;
  }
}
