:root {
  --bg: #f4f0e8;
  --ink: #1d261d;
  --muted: #5f6b5c;
  --canopy: #2f6b45;
  --canopy-deep: #1e4a30;
  --amber: #b57a28;
  --paper: #fffcf7;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --measure: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
}

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

a {
  color: var(--canopy-deep);
}

a:hover {
  color: var(--canopy);
}

/* Header — quiet */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.75rem);
  color: #f7f3ea;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.wordmark img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 2px;
}

.wordmark-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(247, 243, 234, 0.78);
  text-decoration: none;
}

.nav a:hover {
  color: #fff;
}

.btn-play-nav {
  color: #1d261d;
  background: #f7f3ea;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

.btn-play-nav:hover {
  color: #1d261d;
  background: #fff;
}

/* Hero — one composition */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem) clamp(3.5rem, 8vh, 5.5rem);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 28, 22, 0.45) 0%, transparent 32%, rgba(20, 28, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 28, 22, 0.55) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  color: #f7f3ea;
  animation: rise 0.9s ease-out both;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c5e0cb;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero-lede {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.88);
}

.hero-cta {
  margin: 1.75rem 0 0;
}

.btn-primary {
  display: inline-block;
  color: #f7f3ea;
  background: var(--canopy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
}

.btn-primary:hover {
  color: #f7f3ea;
  background: var(--canopy-deep);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections — airy, one job each */
.section {
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 2rem);
}

.section + .section {
  border-top: 1px solid rgba(47, 107, 69, 0.14);
}

.section h2 {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canopy-deep);
  font-weight: 600;
}

.lore-body {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.game-list,
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.game-list li,
.news-list li {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(95, 107, 92, 0.18);
}

.game-list li:last-child,
.news-list li:last-child {
  border-bottom: 1px solid rgba(95, 107, 92, 0.18);
}

.game-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.game-link,
.game-list li > div {
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.game-list h3,
.news-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.game-link:hover h3 {
  color: var(--canopy);
}

.game-list p,
.news-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
}

.status-pill {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canopy-deep);
}

.status-pill.coming {
  color: var(--muted);
}

.news-tag {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canopy);
}

.news-date {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* Footer — minimal */
.site-footer {
  padding: 3rem clamp(1.25rem, 4vw, 2rem) 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(47, 107, 69, 0.14);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--canopy);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 1.25rem;
  }

  .game-list li {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy {
    animation: none;
  }
}
