@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #06070b;
  --bg-elev: #0f1320;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(245, 241, 232, 0.17);
  --text: #f4f0e6;
  --muted: #b9b4a9;
  --accent: #e7b06d;
  --accent-soft: #f7d3a6;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(2, 4, 10, 0.52);
  --hero-bg-image: url("/assets/images/hero-key-art.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 95% -8%, rgba(231, 176, 109, 0.15), transparent 64%),
    radial-gradient(900px 600px at -10% 20%, rgba(92, 112, 168, 0.2), transparent 60%),
    linear-gradient(160deg, #05060a 0%, #0b1019 62%, #0f1523 100%);
  min-height: 100vh;
  line-height: 1.5;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  z-index: -1;
}

main {
  padding-top: 5.8rem;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0.85rem;
  backdrop-filter: blur(9px);
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  width: min(98vw, 1600px);
  margin: 0 auto;
  padding: 0.55rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.55) 0%, rgba(10, 13, 20, 0.2) 100%);
}

.logo {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 99px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-btn.active {
  background: rgba(242, 166, 90, 0.16);
  color: var(--text);
}

.hero {
  width: 100%;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.35rem) 0 clamp(2.2rem, 6vw, 4.2rem);
  min-height: 100svh;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(100deg, rgba(6, 8, 14, 0.56) 0%, rgba(6, 8, 14, 0.36) 42%, rgba(6, 8, 14, 0.16) 100%),
    var(--hero-bg-image) 82% center/cover no-repeat,
    #0a0c12;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero > * {
  width: min(94vw, var(--max));
  margin-left: clamp(1rem, 4.5vw, 5rem);
  margin-right: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.1rem, 8.2vw, 7.2rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  max-width: 12ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.hero-copy {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(130deg, #f0b06d, #ffd4aa);
  color: #181008;
}

.btn-ghost {
  border-color: var(--panel-border);
  color: var(--text);
  background: rgba(7, 9, 14, 0.55);
}

.hero-platforms {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.platform-label {
  color: var(--accent-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-right: 0.2rem;
}

.store-pill {
  text-decoration: none;
  border: 1px solid rgba(247, 211, 166, 0.35);
  background: rgba(11, 14, 22, 0.62);
  color: var(--text);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-size: 0.84rem;
}

.store-pill.is-soon {
  opacity: 0.82;
}

.section {
  width: 100%;
  margin: 0;
  padding: 4rem 0;
}

.section > * {
  width: min(94vw, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 1.3rem;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
}

.service-grid,
.work-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  padding: 1.25rem;
}

.panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 211, 166, 0.35);
}

.work-media {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-meta {
  padding: 1rem;
}

.work-meta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.work-meta p {
  color: var(--muted);
  margin: 0;
}

.about-copy {
  margin: 0 auto;
  padding: 0;
  max-width: 74ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  text-align: center;
}

#about .section-head {
  text-align: center;
}

.contact-form {
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 860px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 202, 150, 0.6);
  outline-offset: 1px;
}

.contact-address {
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.contact-address strong {
  font-size: 0.9rem;
  color: var(--accent-soft);
}

.contact-address p {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.form-note {
  min-height: 1.2rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 2.4rem 0 2.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .service-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    top: 0.5rem;
  }

  .hero {
    min-height: 88svh;
    background-position: 75% center;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0.55rem 0.65rem;
    width: 100vw;
  }

  .logo-image {
    width: 72px;
    height: 72px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 14px;
    border: 1px solid var(--panel-border);
    background: #0e111a;
  }

  .site-nav.open {
    display: flex;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
    background-position: 72% center;
    background-size: cover;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-copy {
    font-size: 0.97rem;
  }

  .hero-platforms {
    gap: 0.45rem;
  }

  .store-pill {
    font-size: 0.78rem;
  }
}
