@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/PlusJakartaSans.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  --paper: #fff;
  --ink: #101010;
  --muted: #585858;
  --line: #deded7;
  --panel: #f5f5ef;
  --accent: #f2e600;
  --accent-ink: #101010;
  --soft: #fffddc;
  color-scheme: light;
}
:root[data-theme="default-dark"] {
  --paper: #101010;
  --ink: #f5f5f5;
  --muted: #b8b8b8;
  --line: #3b3b32;
  --panel: #1b1b18;
  --soft: #282714;
  color-scheme: dark;
}
:root[data-theme="modern-light"] {
  --paper: #f8f7f2;
  --ink: #202a23;
  --muted: #62695f;
  --line: #dedfd4;
  --panel: #edf2dc;
  --accent: #c8e762;
  --soft: #ece4f1;
}
:root[data-theme="modern-dark"] {
  --paper: #141a16;
  --ink: #edf2e8;
  --muted: #adb8a8;
  --line: #354236;
  --panel: #1b221d;
  --accent: #c8e762;
  --soft: #2b1d3a;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
select {
  font: inherit;
  color: inherit;
  touch-action: manipulation;
}
a,
button,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
p {
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.13;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 700;
  max-width: 850px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 650;
  text-wrap: balance;
}
h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
svg {
  display: block;
}
button {
  cursor: pointer;
}
.wrap {
  max-width: 1248px;
  margin: auto;
  padding-inline: 40px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: var(--accent);
  color: #101010;
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.header-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 38px;
  height: 38px;
}
.brand-name {
  font-weight: 800;
  letter-spacing: -1.2px;
  font-size: 23px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}
.desktop-nav {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 13px;
  font-weight: 650;
}
.desktop-nav a {
  text-decoration: none;
}
.desktop-nav a:hover {
  text-decoration: underline;
}
.header-tools {
  display: flex;
  gap: 12px;
  align-items: center;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.icon-button svg {
  width: 20px;
  height: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.button:hover {
  box-shadow: 3px 3px 0 var(--ink);
}
.button .arrow {
  font-size: 23px;
  line-height: 1;
  flex-shrink: 0;
}
.text-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--ink);
}
.hero {
  padding-block: 88px 60px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--accent);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 585px;
  font-size: 16px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 50% 50% 8px 8px;
  overflow: hidden;
}
.hero-visual:before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 20px 20px;
}
.structure {
  position: relative;
  width: 88%;
  height: auto;
  color: var(--ink);
}
.structure .solid {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.5;
}
.structure .accent {
  fill: var(--accent);
  stroke: var(--ink);
  stroke-width: 1.5;
}
.structure .wire {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}
.structure .small {
  fill: var(--line);
}
.location {
  border-block: 1px solid var(--line);
  padding-block: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}
.location span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.location svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.section {
  padding-block: 84px;
}
.section-heading {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.section-number {
  padding-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.service {
  padding: 32px 32px 32px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.service:nth-child(even) {
  padding-inline: 32px 0;
  border-inline-start: 1px solid var(--line);
}
.service-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ink);
}
.service-icon svg {
  width: 21px;
  height: 21px;
}
.service p {
  font-size: 14px;
  margin-top: 14px;
  max-width: 440px;
}
.work-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
.work-card h2 {
  margin-block: 18px;
}
.work-card p {
  font-size: 14px;
  max-width: 570px;
}
.work-card .text-link {
  margin-top: 28px;
}
.game-art {
  background: var(--accent);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 24px;
  color: var(--accent-ink);
  transform: rotate(3deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.game-art-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}
.game-art-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 26px;
  direction: ltr;
}
.game-art-grid span {
  aspect-ratio: 1;
  border: 1.5px solid #101010;
  border-radius: 6px;
  background: #fff9c9;
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 700;
}
.game-art-grid span:nth-child(3n) {
  background: #101010;
  color: #f2e600;
}
.game-art-grid span:nth-child(7n) {
  background: transparent;
  border-style: dashed;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.step b {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 22px;
}
.step p {
  font-size: 14px;
  margin-top: 14px;
}
.contact-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
}
.contact-section h2 {
  margin-bottom: 22px;
}
.contact-section p {
  font-size: 14px;
}
.contact-section .button {
  margin-block: 26px 12px;
  overflow-wrap: anywhere;
  max-width: 100%;
  direction: ltr;
}
.contact-section .contact-hint {
  font-size: 11px;
  max-width: 480px;
}
.brief {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
  align-self: start;
}
.brief h3 {
  font-size: 17px;
}
.brief ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 13px;
  color: var(--ink);
}
.brief li {
  padding-inline-start: 5px;
  margin-top: 13px;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 32px 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}
.footer-top p {
  font-size: 12px;
}
.footer details {
  max-width: 820px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.footer summary {
  cursor: pointer;
  line-height: 2;
}
.footer details p {
  margin-top: 12px;
}
.bottom-nav {
  display: none;
}
.language-area {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.language-area summary {
  font-weight: 650;
  font-size: 12px;
  cursor: pointer;
  line-height: 2;
}
.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.languages a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
}
.languages a[aria-current] {
  background: var(--accent);
  color: var(--accent-ink);
}
dialog {
  width: min(460px, calc(100% - 32px));
  max-height: 85dvh;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
}
dialog::backdrop {
  background: #0009;
}
dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
dialog h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
}
dialog label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
dialog select {
  width: 100%;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}
dialog .languages {
  margin-top: 24px;
}
dialog .language-label {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink);
}
.not-found {
  min-height: 65vh;
  padding-block: 90px;
}
.not-found .button {
  margin-top: 30px;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 110px 80px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    padding-inline: 28px;
  }
  .hero {
    gap: 30px;
    padding-top: 65px;
  }
  .desktop-nav {
    gap: 16px;
  }
  .header-tools > .button {
    display: none;
  }
  .work-card {
    gap: 35px;
    padding: 32px;
  }
  .contact-section {
    gap: 35px;
  }
  .steps {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 28px;
  }
  .wrap {
    padding-inline: 22px;
  }
  .header-inner {
    min-height: 82px;
  }
  .desktop-nav {
    display: none;
  }
  .brand-name {
    font-size: 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 46px 38px;
    gap: 38px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-visual {
    aspect-ratio: 1.65;
    border-radius: 90px 90px 8px 8px;
    max-width: 430px;
    width: 100%;
    justify-self: center;
  }
  .structure {
    max-height: 270px;
    width: 75%;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .location {
    font-size: 10px;
  }
  .location > span:last-child {
    display: none;
  }
  .section {
    padding-block: 52px;
  }
  .section-heading {
    gap: 16px;
    margin-bottom: 26px;
  }
  .section-number {
    padding-top: 5px;
    font-size: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service,
  .service:nth-child(even) {
    padding: 25px 0;
    border-inline-start: 0;
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }
  .service-icon {
    width: 36px;
    height: 36px;
  }
  .service h3 {
    font-size: 19px;
  }
  .work-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 36px;
  }
  .game-art {
    max-width: 290px;
    width: 100%;
    justify-self: center;
    margin-bottom: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step b {
    margin-bottom: 12px;
  }
  .step h3 {
    font-size: 20px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .brief {
    padding: 24px;
  }
  .footer {
    padding-bottom: calc(105px + env(safe-area-inset-bottom));
  }
  .footer-top {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-top p {
    width: 100%;
  }
  .bottom-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    z-index: 5;
  }
  .bottom-nav a {
    min-height: 43px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 650;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
  }
  .bottom-nav svg {
    width: 18px;
    height: 18px;
  }
  .bottom-nav a:last-child {
    background: var(--accent);
    color: var(--accent-ink);
    border-radius: 6px;
  }
  dialog {
    position: fixed;
    inset: auto 0 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 26px 24px calc(28px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    max-height: 90dvh;
  }
  dialog:before {
    content: "";
    display: block;
    width: 38px;
    height: 4px;
    margin: -12px auto 24px;
    border-radius: 3px;
    background: var(--line);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Project enquiry page */
.enquiry-page {
  padding-block: 40px 80px;
}
.back-link {
  font-size: 12px;
  margin-bottom: 44px;
}
.enquiry-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.enquiry-intro h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  margin-block: 22px;
}
.enquiry-intro > p:not(.eyebrow) {
  font-size: 15px;
}
.enquiry-intro .brief {
  margin-top: 34px;
}
.enquiry-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  min-width: 0;
}
.enquiry-panel fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.required-note {
  font-size: 11px;
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  min-width: 0;
  line-height: 1.6;
}
.form-field.full {
  grid-column: 1/-1;
}
.form-field small {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}
.form-field textarea {
  resize: vertical;
  min-height: 170px;
}
.form-field input[type="email"] {
  direction: ltr;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.field-hint {
  font-size: 11px;
  margin-block: 12px 24px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.7;
}
.consent input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin: 2px 0 0;
  accent-color: var(--ink);
}
.form-privacy {
  font-size: 11px;
  margin-block: 18px 24px;
}
.form-submit {
  width: 100%;
}
fieldset:disabled .form-submit {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}
.form-feedback {
  font-size: 13px;
  margin-top: 16px;
  color: var(--ink);
}
.form-feedback:not(:empty) {
  padding: 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
}
.form-success h2 {
  font-size: 32px;
  margin-block: 24px 18px;
}
.form-success p {
  font-size: 14px;
}
.form-success .button {
  margin-top: 28px;
}
.success-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 26px;
}
.form-notice {
  padding: 14px;
  border: 1px solid var(--ink);
  margin-bottom: 22px;
  font-size: 13px;
}
.sr-only,
.enquiry-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1000px) {
  .enquiry-layout {
    gap: 32px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .enquiry-panel {
    padding: 24px;
  }
}
@media (max-width: 700px) {
  .enquiry-page {
    padding-block: 28px 52px;
  }
  .back-link {
    margin-bottom: 30px;
  }
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .enquiry-intro .brief {
    display: none;
  }
  .enquiry-panel {
    padding: 22px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .enquiry-intro h1 {
    font-size: 40px;
  }
  .form-success h2 {
    font-size: 28px;
  }
}
