:root {
  color-scheme: dark;
  --ink: #0a0e0c;
  --panel: #111914;
  --panel-soft: #172019;
  --gold: #c5a15a;
  --gold-bright: #e2c77d;
  --parchment: #e8dfc8;
  --muted: #a9aa9d;
  --line: rgba(197, 161, 90, 0.28);
  --green: #4f7a51;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--parchment);
  font-family: Georgia, "Times New Roman", serif;
  background:
    linear-gradient(rgba(197, 161, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 161, 90, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(66, 103, 69, 0.24), transparent 34rem),
    radial-gradient(circle at 15% 85%, rgba(98, 72, 34, 0.18), transparent 30rem),
    #0a0e0c;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    repeating-radial-gradient(
      circle at 70% 35%,
      transparent 0 70px,
      rgba(197, 161, 90, 0.025) 71px 72px
    );
  mask-image: linear-gradient(90deg, transparent, black 45%, black);
}

.landing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5.5rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--parchment);
  font-size: clamp(4.3rem, 9vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.55);
}

h1 span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.46em;
  letter-spacing: 0.22em;
  line-height: 1.2;
}

.description {
  max-width: 35rem;
  margin: clamp(2rem, 5vh, 3.5rem) 0 0;
  color: #c5c2b5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-width: 10.5rem;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary {
  color: #11140e;
  background: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(197, 161, 90, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0d995;
}

.button-secondary {
  color: var(--gold-bright);
  background: rgba(10, 14, 12, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}

.status span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #82a866;
  box-shadow: 0 0 0 4px rgba(130, 168, 102, 0.1), 0 0 14px rgba(130, 168, 102, 0.4);
}

.key-art {
  position: relative;
  width: min(100%, 760px);
  justify-self: end;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 199, 125, 0.38);
  background: var(--panel);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.58),
    0 0 0 10px rgba(197, 161, 90, 0.035);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-caption {
  margin: 1.1rem 0 0;
  color: rgba(226, 199, 125, 0.72);
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-align: right;
}

@media (max-width: 900px) {
  .landing-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem clamp(1.3rem, 6vw, 3rem);
  }

  .hero-copy {
    max-width: 680px;
  }

  .key-art {
    width: min(100%, 680px);
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .landing-shell {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(3.7rem, 21vw, 5.4rem);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .image-caption {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
