:root {
  --bg: #151514;
  --bg-soft: #1c1b19;
  --ink: #f2eadb;
  --muted: #b7ad9b;
  --faint: #7f776a;
  --line: rgba(242, 234, 219, 0.16);
  --accent: #dba155;
  --panel: rgba(255, 255, 255, 0.025);
  --content: 1080px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -12rem, rgba(219, 161, 85, 0.075), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.center {
  text-align: center;
}

.content {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(21, 21, 20, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2rem), 1280px);
  min-height: 180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  grid-column: 1;
  justify-self: start;
}

.brand-art {
  width: min(760px, 68vw);
  max-height: 150px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 2.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3.6rem, 10vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.15rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-copy {
  margin: 0 auto;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.button {
  min-width: 220px;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

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

.button.secondary {
  background: transparent;
}

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

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

.button.disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.working-title {
  margin: 0.9rem 0 0;
  color: var(--faint);
  font-size: 0.75rem;
}

.media-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(219, 161, 85, 0.05), transparent 45%),
    var(--bg-soft);
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 3rem;
}

.landscape {
  aspect-ratio: 16 / 9;
  margin: 0 auto 2rem;
}

.square {
  aspect-ratio: 4 / 3;
}

.feature-copy,
.studio-line,
.about-copy {
  max-width: 640px;
  margin-inline: auto;
}

.feature-copy {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.dev-card {
  color: inherit;
  text-decoration: none;
}

.dev-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dev-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
}

.dev-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(15, 15, 14, 0.82);
  color: var(--ink);
  font-size: 1.15rem;
}

.dev-card:hover .media-placeholder,
.dev-card:focus-visible .media-placeholder {
  border-color: var(--accent);
}

.studio-line {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.about-copy {
  margin-top: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 3.5rem 0 3rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

.social-links a,
.social-links span {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

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

.pending {
  opacity: 0.55;
}

.email {
  margin: 1.8rem 0 0;
}

.email a {
  text-underline-offset: 0.2em;
}

.copyright {
  margin: 1.5rem 0 0;
  color: var(--faint);
  font-size: 0.75rem;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 0.8rem 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand,
  .site-nav {
    grid-column: 1;
  }

  .site-nav {
    justify-self: center;
  }

  .brand-art {
    width: min(340px, 82vw);
    max-height: 66px;
  }

  .dev-grid {
    grid-template-columns: 1fr;
  }
}
