@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght,SOFT,WONK@9..144,500,30,1;9..144,600,30,1;9..144,700,30,1&display=swap');

:root {
  --gold: #efc666;
  --serif: 'Fraunces',Georgia,serif;
  --muted: #5c6b5d;
  --green: #214d3c;
  --sans: 'DM Sans',Arial,sans-serif;
  --cream: #fff8e7;
  --line: #d9dcc6;
  --dark: #17382d;
  --ink: #243b31;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font: 16px / 1.65 var(--sans);
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: 4px;
  -webkit-tap-highlight-color: transparent;
}

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

h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(38px, 4.4vw, 67px);
  letter-spacing: -2px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1.5px;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  font-size: 30px;
  letter-spacing: -0.7px;
}

p {
  margin: 0;
}

:focus-visible {
  outline: rgb(167, 101, 21) solid 3px;
  outline-offset: 5px;
}

section {
  scroll-margin-top: 90px;
}

.wrap {
  margin: auto;
  width: min(1180px, 100% - 80px);
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 7px;
  box-shadow: rgb(21, 55, 41) 0 3px 0;
  color: var(--cream);
  gap: 12px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 49px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s;
}

.btn:hover {
  background: rgb(50, 99, 77);
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  box-shadow: none;
  color: var(--green);
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: rgb(185, 149, 69) 0 3px 0;
  color: var(--dark);
}

.skip {
  background: var(--cream);
  left: 16px;
  padding: 12px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.site-header {
  background: var(--cream);
  border-bottom: 0;
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 0;
}

.header-inner {
  align-items: center;
  gap: 24px;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.brand {
  align-items: center;
  gap: 10px;
  display: flex;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.nav > a:hover {
  text-decoration: underline;
}

.hero {
  background: rgb(109, 121, 68);
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  padding: 55px 0;
  position: relative;
}

.hero-art {
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero::after {
  background: linear-gradient(90deg, rgba(52, 66, 45, 0.314), transparent 70%);
  inset: 0;
  content: "";
  position: absolute;
  z-index: 1;
}

.hero .wrap {
  align-items: center;
  display: flex;
  position: relative;
  z-index: 2;
}

.hero-panel {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.467);
  border-radius: 10px 10px 48px;
  box-shadow: rgba(38, 61, 41, 0.16) 8px 8px 0;
  padding: 29px 35px 33px;
  transform: rotate(-1deg);
  width: 530px;
}

.hero-panel > * {
  transform: rotate(1deg);
}

.hero-logo {
  height: 132px;
  margin: -15px 0 12px -8px;
  object-fit: contain;
  width: 205px;
}

.hero h1 {
  font-size: clamp(36px, 3.7vw, 51px);
  letter-spacing: -1.8px;
}

.hero-description {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
  max-width: 355px;
}

.hero-actions {
  gap: 9px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
}

.awards {
  background: var(--cream);
  border-color: currentcolor rgb(197, 178, 139);
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 32px 0;
  border-top-style: none;
  border-top-width: 0;
}

.award-grid {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.award {
  align-items: center;
  gap: 18px;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.award small {
  color: rgb(53, 82, 61);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.award strong {
  display: block;
  font: 600 23px / 1.15 var(--serif);
  margin-bottom: 5px;
}

.award span:last-child {
  color: rgb(67, 83, 66);
  font-size: 11px;
}

.section-pad {
  padding: 95px 0;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 34px 0;
}

.footer-inner {
  align-items: center;
  gap: 30px;
  display: flex;
  justify-content: space-between;
}

.footer-inner small {
  font-size: 11px;
  opacity: 0.7;
  margin-left: auto;
  text-align: right;
}

.video-frame {
  background: var(--green);
  border: 8px solid var(--cream);
  border-radius: 15px;
  box-shadow: rgba(41, 69, 45, 0.075) 0 12px 35px;
  margin: auto;
  max-width: 1000px;
  overflow: hidden;
}

video {
  aspect-ratio: 16 / 9;
  background: rgb(16, 38, 29);
  display: block;
  object-fit: contain;
  width: 100%;
}

.gameplay-section.section-pad {
  background: var(--cream);
  border-bottom: 0;
  border-top: 0;
  padding: 48px 0 60px;
}

.feature {
  align-items: center;
  gap: 48px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  margin-top: 44px;
}

.feature:nth-of-type(2n) .feature-art {
  order: 2;
  transform: rotate(1deg);
}

.feature-art {
  position: relative;
  transform: rotate(-1deg);
}

.feature-art img {
  aspect-ratio: 16 / 9;
  border: 7px solid var(--cream);
  border-radius: 10px;
  box-shadow: rgba(36, 59, 49, 0.063) 0 10px 20px;
  height: auto;
  object-fit: cover;
  width: 100%;
  max-height: 310px;
}

.feature-copy {
  padding: 0;
}

.feature-copy h2 {
  font-size: 34px;
  max-width: 440px;
}

.feature-copy p {
  color: rgb(79, 98, 85);
  font-size: 14px;
  margin-top: 15px;
  max-width: 465px;
  line-height: 1.75;
}

.gallery-heading {
  align-items: end;
  gap: 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.team-section {
  background: var(--cream);
  border-top: 0;
  border-bottom: 0;
}

.team-grid {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.portrait {
  place-items: center;
  background: none;
  border: 0;
  border-radius: 0;
  display: grid;
  height: 140px;
  margin: 0 auto 23px;
  overflow: visible;
  width: 140px;
}

.portrait img {
  height: 140px;
  object-fit: contain;
  width: 140px;
  image-rendering: auto;
}

.team-card h3 {
  font-size: 21px;
  letter-spacing: -0.4px;
}

.team-card p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 9px;
}

.closing {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}

.closing-inner {
  padding: 30px 0;
  position: relative;
  align-items: center;
  gap: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.closing .btn {
  position: relative;
  z-index: 1;
}

.social-links {
  gap: 22px;
  display: flex;
  font-size: 12px;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  align-items: center;
  gap: 9px;
  display: inline-flex;
  min-height: 44px;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-brand img {
  height: 62px;
  object-fit: contain;
  width: 76px;
}

.press-hero {
  background: var(--cream);
  border-bottom: 0;
  padding: 30px 0 40px;
  border-top: 0;
}

.press-hero .wrap {
  position: relative;
}

.press-hero h1 {
  font-size: clamp(42px, 5vw, 67px);
  max-width: 750px;
}

.press-hero p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 25px;
}

.press-hero .btn {
  margin-top: 24px;
  flex-wrap: wrap;
}

.file-size {
  border-left: 1px solid rgba(255, 255, 255, 0.333);
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  padding-left: 5px;
}

.press-overview {
  gap: 90px;
  display: grid;
  grid-template-columns: 340px 1fr;
}

.facts {
  align-self: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 29px;
}

.facts h2 {
  font-size: 32px;
}

.facts dl {
  margin: 25px 0;
}

.facts dt {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 21px;
  text-transform: uppercase;
}

.facts dd {
  font-size: 14px;
  margin: 5px 0 0;
}

.facts dd a {
  overflow-wrap: anywhere;
}

.text-link {
  font-size: 12px;
  font-weight: 700;
}

.press-story > p {
  color: var(--muted);
  margin-top: 0;
}

.press-story ul {
  color: rgb(77, 97, 84);
  font-size: 14px;
  padding-left: 19px;
}

.press-story li {
  margin-bottom: 13px;
  padding-left: 4px;
}

.press-story .btn {
  margin-top: 18px;
}

.press-assets {
  background: var(--cream);
  border-bottom: 0;
  border-top: 0;
}

.logo-downloads {
  gap: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.logo-download {
  background: var(--cream);
  border: 1px solid rgb(213, 217, 194);
  border-radius: 9px;
  overflow: hidden;
  text-decoration: none;
}

.logo-download > div {
  place-items: center;
  background-color: rgb(227, 232, 211);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  display: grid;
  height: 245px;
}

.logo-download img {
  max-height: 190px;
  max-width: 70%;
  object-fit: contain;
}

.logo-download span {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 16px 20px;
}

.press-screens span {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 13px;
  gap: 12px;
}

.logo-download b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.press-screens b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.press-screens-heading {
  margin-top: 75px;
}

.press-screens {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.press-screens a {
  background: var(--cream);
  border: 1px solid rgb(213, 217, 194);
  border-radius: 7px;
  overflow: hidden;
  text-decoration: none;
}

.press-screens img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.press-contact {
  text-align: center;
  background: var(--green);
  color: var(--cream);
}

.press-contact p {
  color: var(--cream);
  font-size: 15px;
  margin: 0;
}

.press-contact .btn {
  font-size: 12px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

a[aria-current="page"] {
  text-decoration: underline !important;
}

.press-hero .download-note {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 15px;
}

.press-button {
  background: var(--cream) !important;
  min-width: 100px;
}

.hero-actions .btn {
  background: var(--cream);
  font-size: 12px;
  min-height: 45px;
  padding: 11px 16px;
}

.award-logo {
  border-radius: 5px;
  flex-shrink: 0;
  height: 84px;
  object-fit: contain;
  width: 84px;
}

.trailer-section.section-pad {
  padding: 48px 0;
}

.feature:first-of-type {
  margin-top: 0;
}

.hero-actions .btn.gold {
  background: var(--gold);
}

.social-links svg {
  height: 23px;
  width: 23px;
}

.closing :focus-visible {
  outline-color: var(--gold);
}

.useful-links {
  gap: 7px;
  display: flex;
  flex-direction: column;
}

.press-contact.section-pad {
  padding: 32px 0;
}

.press-contact .wrap {
  align-items: center;
  gap: 35px;
  display: flex;
  justify-content: center;
}

.press-story .press-story-heading {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.12;
  margin-bottom: 16px;
  margin-top: 35px;
  text-transform: none;
}

.press-story .press-story-heading:first-child {
  margin-top: 0;
}

.press-contact :focus-visible {
  outline-color: var(--gold);
}

@media (max-width: 1000px) {
  .feature {
    gap: 30px;
  }

  .press-overview {
    gap: 40px;
    grid-template-columns: 300px 1fr;
  }

  .press-hero h1 {
    font-size: 53px;
    max-width: 580px;
  }

  .award {
    gap: 12px;
  }

  .award-logo {
    height: 66px;
    width: 66px;
  }

  .award strong {
    font-size: 19px;
  }

  .feature-copy h2 {
    font-size: 29px;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .hero-panel {
    width: 470px;
  }

  .section-pad {
    padding: 65px 0;
  }
}

@media (max-width: 760px) {
  .press-overview {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .facts {
    width: 100%;
  }

  .feature-copy h2 {
    font-size: 27px;
  }

  .feature-copy p {
    font-size: 13px;
  }

  .team-grid {
    gap: 40px 20px;
    grid-template-columns: 1fr 1fr;
  }

  .press-screens {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-heading {
    align-items: start;
  }

  .logo-download > div {
    height: 190px;
  }

  .award-grid {
    gap: 15px;
  }

  .award {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .award strong {
    font-size: 18px;
  }

  .award span:last-child {
    font-size: 10px;
  }
}

@media (max-width: 650px) {
  .video-frame {
    border-radius: 8px;
    border-width: 4px;
  }

  .feature {
    gap: 26px;
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .feature:nth-of-type(2n) .feature-art {
    order: 0;
  }

  .feature-copy h2 {
    font-size: 30px;
  }

  .feature-copy p {
    font-size: 14px;
  }

  .feature-art img {
    max-height: none;
  }

  .gallery-heading {
    display: block;
  }

  .team-card h3 {
    font-size: 19px;
  }

  .portrait {
    height: 124px;
    width: 124px;
  }

  .portrait img {
    height: 124px;
    width: 124px;
  }

  .team-card p {
    font-size: 11px;
  }

  .closing-inner {
    padding: 27px 0;
    gap: 20px;
    flex-direction: column;
  }

  .social-links {
    gap: 14px 22px;
    justify-content: center;
  }

  .press-hero h1 {
    font-size: 43px;
  }

  .press-hero p {
    font-size: 14px;
  }

  .press-hero p br {
    display: none;
  }

  .logo-downloads {
    grid-template-columns: 1fr;
  }

  .press-screens {
    gap: 12px;
  }

  .press-screens span {
    font-size: 10px;
    padding: 10px;
  }

  .press-screens b {
    font-size: 9px;
  }

  .press-screens-heading {
    margin-top: 45px;
  }

  .facts {
    padding: 24px;
  }

  .site-header {
    height: auto;
    min-height: 119px;
  }

  .brand {
    font-size: 21px;
  }

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

  .nav {
    align-items: stretch;
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    left: 0;
    padding: 0;
    position: static;
    right: 0;
    top: 72px;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 170px 0 30px;
  }

  .hero-art {
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(52, 66, 45, 0.314), transparent 70%);
  }

  .hero-panel {
    border-radius: 8px 8px 32px;
    padding: 23px;
    transform: none;
    width: 100%;
  }

  .hero-panel > * {
    transform: none;
  }

  .hero-logo {
    height: 99px;
    width: 166px;
  }

  .hero h1 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }

  .hero-actions {
    gap: 7px;
  }

  .hero-actions .btn {
    font-size: 11px;
    padding: 9px 12px;
    min-height: 41px;
  }

  .award-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .award {
    justify-content: flex-start;
    margin: auto;
    width: min(100%, 300px);
    gap: 19px;
    flex-direction: row;
    text-align: left;
  }

  .award strong {
    font-size: 22px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .wrap {
    width: calc(100% - 36px);
  }

  .header-inner {
    gap: 10px;
    flex-direction: column;
    padding: 11px 0 13px;
  }

  .nav .btn {
    font-size: 12px;
    min-height: 40px;
    padding: 8px 17px;
  }

  .nav .press-button {
    min-width: 94px;
  }

  html {
    scroll-padding-top: 140px;
  }

  section {
    scroll-margin-top: 140px;
  }

  .hero-description {
    font-size: 14px;
  }

  .award-logo {
    height: 70px;
    width: 70px;
  }

  .award small {
    margin-bottom: 4px;
  }

  .award span:last-child {
    font-size: 11px;
  }

  .trailer-section.section-pad {
    padding: 32px 0;
  }

  .gameplay-section.section-pad {
    padding: 32px 0 43px;
  }

  .press-contact .wrap {
    gap: 18px;
    flex-direction: column;
  }

  .press-contact.section-pad {
    padding: 28px 0;
  }

  .footer-inner small {
    margin-left: 0;
    text-align: center;
  }
}

@media (min-width: 1600px) {
  .hero-art {
    object-position: center 55%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
