:root {
  color-scheme: light;
  --ink: #251514;
  --muted: #765e56;
  --paper: #fff7e9;
  --paper-deep: #f7e3c7;
  --plum: #6e3154;
  --plum-dark: #3d2438;
  --green: #3c6146;
  --gold: #e5ad3d;
  --line: rgba(64, 34, 29, 0.18);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

.company-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 6vw, 88px);
  color: var(--paper);
}

.company-wordmark {
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
}

.company-header nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}

.company-header nav a {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.company-hero {
  display: grid;
  min-height: min(780px, 90svh);
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 50px;
  padding: 130px clamp(24px, 8vw, 130px) 90px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(110, 49, 84, 0.92), rgba(61, 36, 56, 0.98)),
    var(--plum-dark);
}

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

.company-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-hero h1 {
  margin: 0;
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
}

.company-hero-copy > p:last-child {
  max-width: 680px;
  margin: 36px 0 0;
  color: rgba(255, 247, 233, 0.8);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
}

.company-mark {
  display: grid;
  width: min(30vw, 340px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 247, 233, 0.28);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 247, 233, 0.08);
  box-shadow: 0 28px 80px rgba(24, 10, 20, 0.3);
  font-size: clamp(100px, 15vw, 190px);
  font-weight: 950;
}

.company-section {
  padding: clamp(72px, 10vw, 145px) clamp(24px, 8vw, 130px);
}

.company-section h2 {
  margin: 0;
  color: var(--plum-dark);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.company-details {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
}

.company-facts {
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts span {
  color: var(--muted);
  font-size: 14px;
}

.company-facts strong {
  font-size: 17px;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 150px);
  color: var(--paper);
  background: var(--plum-dark);
}

.services-section h2 {
  max-width: 680px;
  color: var(--paper);
}

.services-copy {
  align-self: end;
  padding-bottom: 6px;
}

.services-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 247, 233, 0.76);
  font-size: 19px;
  line-height: 1.7;
}

.services-copy a {
  color: var(--gold);
  font-weight: 850;
}

.game-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
  background: var(--paper-deep);
}

.game-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.game-art div {
  position: absolute;
  width: min(38vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 173, 61, 0.46), rgba(229, 173, 61, 0.08) 62%, transparent 72%);
}

.game-art img {
  position: relative;
  width: min(35vw, 360px);
  height: auto;
  filter: drop-shadow(0 26px 22px rgba(65, 29, 17, 0.25));
}

.game-copy > p:not(.company-kicker) {
  max-width: 620px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.game-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.game-links a {
  color: var(--plum);
  font-weight: 850;
}

.contact-band {
  color: var(--paper);
  background: var(--green);
}

.contact-band h2 {
  color: var(--paper);
}

.contact-band > a {
  display: inline-block;
  margin-top: 30px;
  color: var(--paper);
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 850;
  text-decoration-thickness: 2px;
}

.company-footer,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 8vw, 130px);
  color: var(--paper);
  background: #1f1218;
  font-size: 13px;
}

.company-footer p,
.site-footer p {
  margin: 0;
}

.document-page {
  min-height: 100vh;
  background: var(--paper);
}

.document-page .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 6vw, 88px);
  color: var(--paper);
  background: var(--plum-dark);
}

.document-page .wordmark {
  font-weight: 900;
  text-decoration: none;
}

.document-page .header-links {
  display: flex;
  gap: 24px;
}

.document-page .header-links a {
  font-size: 14px;
  font-weight: 750;
}

.document-main {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.document-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 52px;
}

.document-hero img {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 15px 16px rgba(85, 39, 18, 0.2));
}

.document-hero h1,
.policy-title h1 {
  margin: 0;
  color: var(--plum-dark);
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.document-hero p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.document-section,
.policy-copy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.document-section h2,
.policy-copy h2 {
  margin: 0 0 16px;
  color: var(--plum-dark);
  font-size: 25px;
}

.document-section p,
.document-section li,
.policy-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.document-section ul {
  padding-left: 22px;
}

.contact-link {
  color: var(--plum);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
}

.text-link,
.policy-copy a {
  color: var(--plum);
  font-weight: 750;
}

.policy-title {
  padding-bottom: 48px;
  border-bottom: 2px solid var(--plum);
}

.policy-title > p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.policy-copy h3 {
  margin: 22px 0 8px;
  color: var(--green);
  font-size: 18px;
}

.site-footer div {
  display: flex;
  gap: 24px;
}

@media (max-width: 760px) {
  .company-header nav {
    gap: 16px;
  }

  .company-header nav a:first-child {
    display: none;
  }

  .company-hero {
    min-height: 760px;
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .company-mark {
    width: 180px;
    font-size: 100px;
  }

  .company-details,
  .services-section,
  .game-feature {
    grid-template-columns: 1fr;
  }

  .game-art {
    min-height: 290px;
  }

  .game-art div,
  .game-art img {
    width: min(75vw, 300px);
  }

  .company-facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .company-header {
    padding: 22px 18px;
  }

  .company-header nav a:not(:last-child) {
    display: none;
  }

  .company-header nav a {
    font-size: 13px;
  }

  .company-hero,
  .company-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .company-hero h1 {
    font-size: 58px;
  }

  .document-main {
    width: min(100% - 32px, 940px);
    padding: 48px 0 72px;
  }

  .document-hero {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
  }

  .document-hero img {
    width: 82px;
    height: 82px;
  }

  .document-hero h1,
  .policy-title h1 {
    font-size: 42px;
  }

  .company-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
