﻿@font-face {
  font-family: "Juturu";
  src: url("Content/fonts/juturu%20woff%202/Juturu-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Juturu";
  src: url("Content/fonts/juturu%20woff%202/Juturu-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Juturu";
  src: url("Content/fonts/juturu%20woff%202/Juturu-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CS Amador";
  src: url("Content/fonts/cs%20amador/CSAmador-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f6f1e6;
  --ink: #0f0f10;
  --accent: #f94b00;
  --accent-2: #b7dac6;
  --panel: #ffffff;
  --stroke: #101010;
  --muted: #4b4b50;
  --grid: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Juturu", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #f6f1e6 0%, #f7efe0 45%, #e8f1ea 100%);
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  padding-top: var(--nav-h, 0px);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f6f1e6 0%, #f7efe0 45%, #e8f1ea 100%);
  transition: opacity 0.35s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  width: min(440px, 88vw);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: #fff;
  padding: 18px;
}

.loader-title {
  font-family: "CS Amador", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.loader-bar {
  height: 14px;
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--accent);
  animation: loaderSlide 1s linear infinite;
}

@keyframes loaderSlide {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(280%);
  }
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url(\"data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E\");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero {
  min-height: 100vh;
  padding: 8px 6vw 80px;
  position: relative;
  z-index: auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  z-index: -1;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 6vw;
  background: rgba(246, 241, 230, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--ink);
  margin-bottom: 0;
  z-index: 10000;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 36px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 6px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.brand {
  font-family: "CS Amador", sans-serif;
  font-size: 32px;
  letter-spacing: 6px;
  text-transform: uppercase;
  border: none;
  padding: 6px 0;
  box-shadow: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  height: 76px;
  width: auto;
  display: block;
  filter: drop-shadow(4px 4px 0 var(--ink));
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav .cta {
  border: 2px solid var(--ink);
  padding: 8px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--panel);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  margin-left: 8px;
}

.lang-switch a {
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.lang-switch a.is-active {
  background: var(--ink);
  color: #fff;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-family: "CS Amador", sans-serif;
  font-size: clamp(42px, 6vw, 96px);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
}

h2 {
  font-family: "CS Amador", sans-serif;
}

h3 {
  font-family: "Juturu", system-ui, sans-serif;
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

.hero-left p {
  max-width: 560px;
  font-size: 18px;
  margin-bottom: 28px;
  letter-spacing: 0.015em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  text-decoration: none;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: var(--panel);
  color: var(--ink);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-ticker span {
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  display: grid;
  gap: 24px;
}


.poster {
  background: var(--panel);
  border: 3px solid var(--ink);
  padding: 26px;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster:hover {
  transform: rotate(-1deg) translate(-2px, -2px) skewX(-1deg);
  box-shadow: 12px 12px 0 var(--ink);
}

.poster-title {
  font-family: "CS Amador", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.poster-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.poster-tags span {
  border: 2px solid var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.marquee {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: #111;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll 13.33s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 40px;
  padding: 16px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-track span {
  font-family: "CS Amador", sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 90px 6vw;
  position: relative;
  z-index: auto;
  scroll-margin-top: calc(var(--nav-h, 0px) + 12px);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}


.section-head h2 {
  font-family: "CS Amador", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
}

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

.services .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.services .card:nth-child(odd) {
  transform: rotate(-0.6deg);
}

.services .card:nth-child(even) {
  transform: rotate(0.6deg);
}

.services .card:hover {
  transform: translate(-3px, -3px) rotate(0deg);
}

.services .grid-3 {
  align-items: start;
  row-gap: 140px;
}

.services .card {
  position: sticky;
  top: 120px;
}

.services .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services .card {
  aspect-ratio: 5 / 4;
  min-height: 220px;
}

.card {
  border: 3px solid var(--ink);
  background: var(--panel);
  padding: 26px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services .card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--accent);
  background: linear-gradient(140deg, #ffffff 0%, #ffe8dd 100%);
  opacity: 1;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.chip-row span {
  border: 1px solid var(--ink);
  padding: 6px 8px;
  font-size: 11px;
  text-transform: uppercase;
}

.work-grid {
  display: block;
  position: relative;
  padding-bottom: 120px;
}

.work-item {
  border: 3px solid var(--ink);
  background: var(--panel);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  position: sticky;
  top: calc(120px + var(--meta-h, 0px));
  margin-bottom: 32px;
  z-index: 1;
}

.work-item + .work-item {
  margin-top: calc(60px + var(--meta-h, 0px));
}


.work-thumb {
  height: 380px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.work-thumb.alt {
  background: linear-gradient(120deg, #101010, var(--accent));
}

.work-thumb.sharp {
  background: linear-gradient(120deg, var(--accent-2), #101010);
}


.work-tags {
  display: flex;
  gap: 8px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.work-tags span {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 6px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 var(--ink);
}


.thumb-carousel {
  position: absolute;
  inset: 0;
}

.thumb-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  background: #000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.thumb-carousel img.is-active {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 6vw;
}

.lightbox-frame {
  position: relative;
  overflow: visible;
}

.lightbox-image-wrap {
  display: inline-block;
  max-width: 92vw;
  max-height: 80vh;
  background: #000;
  border: 2px solid #000;
  box-shadow: 10px 10px 0 #000;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -26px;
  right: 0;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  width: 26px;
  height: 20px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  z-index: 2;
}

.lightbox-controls {
  position: absolute;
  right: 0;
  bottom: -26px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.lightbox-nav {
  position: static;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  width: 26px;
  height: 20px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
  z-index: 1;
  pointer-events: none;
}

.work-meta {
  background: #fff;
  border-bottom: 3px solid var(--ink);
  padding: 14px 18px 12px;
}

.work-meta h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.work-meta p {
  color: var(--muted);
  font-size: 14px;
}

.work-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.passion-stage {
  position: relative;
  min-height: 62vh;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  background-image: url("Content/Project%20folder/creation/Caroussel/DSC04968.jpg");
  background-size: cover;
  background-position: center;
}

.passion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.passion-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.passion-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.passion-marquee {
  width: 92%;
  overflow: hidden;
  pointer-events: auto;
  padding: 0;
}

.passion-marquee-inner {
  display: flex;
  width: max-content;
  gap: 54px;
  animation: scroll 16s linear infinite;
}

.passion-marquee:hover .passion-marquee-inner {
  animation-play-state: paused;
}

.passion-marquee-track {
  display: flex;
  gap: 54px;
  white-space: nowrap;
  flex-shrink: 0;
}

.passion-marquee-track span {
  font-family: "CS Amador", sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 2.7vw, 38px);
  letter-spacing: 0.06em;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.55);
}

.passion-media-inner {
  gap: 24px;
  animation-duration: 20s;
}

.passion-media-track {
  gap: 24px;
}

.passion-media-track img {
  width: clamp(180px, 18vw, 300px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.7);
}

.passion-stage.is-video-fallback .passion-video {
  opacity: 0;
}

.process-rail {
  border: 3px solid var(--ink);
  background: var(--panel);
  box-shadow: 8px 8px 0 var(--ink);
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 22px 26px;
  border-bottom: 2px solid var(--ink);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "CS Amador", sans-serif;
  font-size: 32px;
}

.impact {
  background: #111;
  color: #fff;
}

.impact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.impact-right {
  display: grid;
  gap: 20px;
}

.stat {
  border: 2px solid #fff;
  padding: 18px;
}

.stat-value {
  font-family: "CS Amador", sans-serif;
  font-size: 34px;
}

.clients {
  background: #fff;
}

.client-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.contact {
  background: transparent;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: #fff;
  padding: 40px;
}

.contact-left h2 {
  font-family: "Juturu", system-ui, sans-serif;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 8px 10px;
  font-weight: 700;
}

.social-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  font-size: 11px;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  min-height: 20px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.form-status.is-loading {
  color: #444;
}

.form-status.is-success {
  color: #0f6c34;
}

.form-status.is-error {
  color: #b42318;
}

.contact-game {
  margin-top: 28px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: #fff;
  padding: 18px;
}

.game-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.game-head h3 {
  font-size: 22px;
  text-transform: uppercase;
}

.game-head p {
  color: var(--muted);
}

.game-score {
  margin-left: auto;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 6px 10px;
  font-weight: 700;
  background: #fff;
}

#motoGame {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--ink);
  background: #fff;
  touch-action: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.game-controls {
  display: none;
}

.game-controls button {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  font: inherit;
  font-weight: 700;
  min-height: 42px;
  min-width: 72px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.game-controls button.is-pressed,
.game-controls button:active {
  box-shadow: 4px 4px 0 var(--accent);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 2px solid var(--ink);
  font-family: inherit;
  font-size: 14px;
}

.footer {
  border-top: 3px solid var(--ink);
  padding: 22px 6vw;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

@media (max-width: 1280px) {
  .hero-main {
    gap: 40px;
  }

  .section {
    padding: 80px 6vw;
  }
}

@media (max-width: 1024px) {
  .hero-main,
  .impact-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }


  .services .card {
    position: static;
    transform: none;
  }

  .services .card + .card {
    margin-top: 0;
  }

  .services .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

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

  .hero-top {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 6vw 12px;
    background: rgba(246, 241, 230, 0.98);
    border-bottom: 3px solid var(--ink);
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 6px;
  }

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .work-item {
    position: sticky;
    top: calc(var(--nav-h, 0px) + 16px);
    z-index: 1;
  }

  .work-item + .work-item {
    margin-top: 140px;
  }

  .work-item:nth-child(1) {
    z-index: 1;
  }
  .work-item:nth-child(2) {
    z-index: 2;
  }
  .work-item:nth-child(3) {
    z-index: 3;
  }
  .work-item:nth-child(4) {
    z-index: 4;
  }

  .work-thumb {
    height: 320px;
  }

  .passion-stage {
    min-height: 52vh;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }
}

@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .services .grid-3 {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }

  .work-thumb {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero-top {
    padding: 6px 4vw;
  }

  .nav {
    padding: 8px 4vw 10px;
  }
}

@media (max-width: 600px) {
  .hero-top {
    padding: 4px 4vw;
  }

  .brand img {
    height: 46px;
  }

  .nav-toggle {
    width: 40px;
    height: 32px;
    padding: 5px 7px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .nav {
    padding: 8px 4vw 10px;
  }

  .grid-3,
  .work-grid,
  .client-row {
    grid-template-columns: 1fr;
  }

  .services .grid-3 {
    grid-template-columns: 1fr;
    row-gap: 120px;
    padding-bottom: 140px;
  }

  .services .card {
    position: sticky;
    top: calc(var(--nav-h, 0px) + 16px);
    transform: none;
  }

  .services .card + .card {
    margin-top: 0;
  }

  .work-thumb {
    height: 280px;
  }

  .game-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .stroke {
    color: var(--ink);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    letter-spacing: 0.035em;
  }

  h1 .stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
    text-stroke: 2px var(--ink);
  }

  .passion-stage {
    min-height: 46vh;
  }

  .passion-marquee {
    width: 95%;
  }

  .passion-marquee-track span {
    font-size: clamp(18px, 6.2vw, 26px);
  }

  .passion-media-track img {
    width: clamp(150px, 42vw, 240px);
  }
}

@media (max-width: 390px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .btn {
    transition: none;
  }
}

