:root {
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --ink: #181a19;
  --muted: #6d736f;
  --gold: #f1ad31;
  --gold-soft: #ffdfa0;
  --green: #6d8d80;
  --line: rgba(24, 26, 25, .10);
  --shadow: 0 24px 70px rgba(29, 27, 22, .08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --shell: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, rgba(241, 173, 49, .08), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 760;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 7px 20px rgba(34, 31, 25, .08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  transition: color .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  min-height: min(770px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(300px, .87fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
  padding-block: clamp(76px, 9vw, 124px) 64px;
}

.eyebrow {
  margin: 0 0 13px;
  color: #966a1d;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.8rem, 7.6vw, 7rem);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(24, 26, 25, .12);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, .5);
}

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

.hero-art {
  margin: 0;
  display: grid;
  place-items: center;
}

.hero-art img {
  width: min(480px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.banner-wrap {
  padding-bottom: 20px;
}

.banner-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.section {
  padding-block: clamp(88px, 10vw, 132px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.body-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
}

.body-copy p {
  margin: 0 0 1.3em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}

.status {
  flex: none;
  padding: 8px 13px;
  border: 1px solid #e3c687;
  border-radius: 999px;
  background: #fff6df;
  color: #815b16;
  font-size: .84rem;
  font-weight: 760;
}

.game-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.game-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eee9df;
}

.game-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.18), transparent 42%);
  pointer-events: none;
}

.sun {
  position: absolute;
  width: min(310px, 68%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  opacity: .95;
}

.game-visual img {
  position: relative;
  z-index: 1;
  width: min(340px, 75%);
  border-radius: 28px;
  mix-blend-mode: multiply;
}

.game-copy {
  align-self: center;
  padding: clamp(36px, 5vw, 62px);
}

.game-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf1ee;
  color: #435149;
  font-size: .83rem;
  font-weight: 750;
}

.contact-section {
  padding-block: 44px clamp(90px, 9vw, 120px);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: #202321;
  color: white;
  box-shadow: 0 24px 70px rgba(25, 27, 25, .14);
}

.contact-card p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 0;
  color: #c7ceca;
}

.contact-card .eyebrow {
  color: var(--gold-soft);
}

.contact-actions {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.text-link {
  color: #d8dedb;
  text-decoration: none;
  font-weight: 700;
}

.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

/* Tablet */
@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 82px;
  }

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

  .hero-art img {
    width: min(440px, 82vw);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .body-copy {
    max-width: 760px;
  }

  .game-card {
    grid-template-columns: 1fr;
  }

  .game-visual {
    min-height: 390px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Large phones / small tablets */
@media (max-width: 680px) {
  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: .88rem;
  }

  .hero {
    padding-block: 62px 48px;
    gap: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .banner-image,
  .game-card,
  .contact-card {
    border-radius: var(--radius-md);
  }

  .section {
    padding-block: 84px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-visual {
    min-height: 330px;
  }

  .game-copy {
    padding: 34px 26px 38px;
  }

  .contact-card {
    padding: 34px 26px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

/* Phones */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 72px;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    font-size: .93rem;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.95rem, 14.8vw, 4rem);
  }

  .lead {
    font-size: 1rem;
  }

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

  .actions .button {
    width: 100%;
  }

  .hero-art img {
    width: min(350px, 94vw);
    border-radius: 28px;
  }

  .banner-image {
    border-radius: 20px;
  }

  .game-visual {
    min-height: 285px;
  }

  .sun {
    width: 230px;
  }

  .footer {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
