:root {
  --bg: #050506;
  --bg-soft: #0b0b0d;
  --copper-glow-intensity: 0.08;
  --bg-elevated: #111114;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f5efe7;
  --text-dim: rgba(245, 239, 231, 0.72);
  --text-faint: rgba(245, 239, 231, 0.48);
  --accent: #c79368;
  --accent-strong: #ddb48c;
  --accent-soft: rgba(199, 147, 104, 0.18);
  --shadow-xl: 0 36px 120px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 24px 72px rgba(0, 0, 0, 0.36);
  --radius-xl: 20px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --content-max: 1380px;
  --section-space: clamp(88px, 10vw, 160px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 52% 104%, rgba(199, 147, 104, 0.18), transparent 36%),
    linear-gradient(180deg, #030304 0%, #050506 34%, #080707 68%, #140f0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 80%);
}

body.no-scroll {
  overflow: hidden;
}

a,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

#site-shell,
#footer,
#nav {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(var(--content-max), calc(100% - clamp(28px, 6vw, 88px)));
  margin: 0 auto;
}

::selection {
  background: var(--accent-strong);
  color: #140f0a;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-header h2,
.stats-heading,
.hero-heading,
.modal-header h2,
#contact h2 {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.section-header h2,
.stats-heading,
#contact h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.section-copy,
.stats-sub,
.hero-sub,
.feature p,
.service-card p,
.project-type,
.studio-copy p,
.contact-intro p,
.modal-header p,
.faq-answer-inner p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.section-header--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: end;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.btn-primary {
  color: #1b130d;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(199, 147, 104, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(199, 147, 104, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.full-width {
  width: 100%;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(199, 147, 104, 0.18), transparent 26%),
    rgba(4, 4, 5, 0.98);
  text-align: center;
}

.loader-brand {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.loader-track {
  width: min(360px, 72vw);
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

#loader-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

#loader-percent {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

#nav {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 90;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

#nav.nav--scrolled .nav-inner {
  background: rgba(9, 9, 11, 0.76);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 100;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.nav-mobile-close:hover {
  background: rgba(255,255,255,0.12);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-copy {
  display: grid;
  gap: 3px;
}

.nav-logo-title {
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-logo-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.footer-nav a,
.nav-mobile-shell > a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 231, 0.86);
}

.nav-links a::after,
.footer-nav a::after,
.nav-mobile-shell > a::after,
.founder-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.nav-links a:hover::after,
.footer-nav a:hover::after,
.nav-mobile-shell > a:hover::after,
.founder-links a:hover::after {
  transform: scaleX(1);
}

.nav-right,
.footer-bottom {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.lang-btn {
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--text-faint);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 0.24s ease,
    background 0.32s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.lang-btn.active {
  color: #1b130d;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 26px rgba(199, 147, 104, 0.22);
  transform: translateY(0);
}

.lang-btn:not(.active):hover,
.lang-btn:not(.active):focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  white-space: nowrap;
}

.nav-hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-hamburger span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  margin-left: -8px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-hamburger span:first-child {
  top: 19px;
}

.nav-hamburger span:last-child {
  top: 27px;
}

.nav-hamburger.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-hamburger.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 147, 104, 0.2), transparent 24%),
    rgba(5, 5, 6, 0.97);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-shell {
  display: grid;
  place-content: center;
  gap: 18px;
  min-height: 100%;
  width: min(420px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.nav-mobile-shell > a {
  justify-self: stretch;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1rem, 3vw, 1.3rem);
  letter-spacing: 0.14em;
}

.nav-mobile-shell > a::after {
  display: none;
}

.nav-mobile-bottom {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 12px;
}

.lang-switch--mobile {
  justify-self: center;
}

#hero,
#scroll-story,
#stats,
#services,
#info-combined,
#projects,
#studio,
#contact {
  padding: var(--section-space) 0;
}

#hero {
  min-height: 100svh;
  padding-top: 126px;
  overflow: clip;
}

#hero::before,
#hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#hero::before {
  top: 12%;
  right: -10%;
  width: min(54vw, 860px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(199, 147, 104, 0.18), transparent 62%);
  filter: blur(28px);
}

#hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 24vh;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  min-height: calc(100svh - 160px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-heading {
  margin: 18px 0 18px;
  font-size: clamp(3.8rem, 6.2vw, 7.2rem);
}

.hero-sub {
  max-width: 58ch;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-line {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-primary {
  will-change: transform;
}

.hero-visual {
  position: relative;
  min-height: 60vh;
  will-change: transform;
}

.hero-visual-frame {
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.hero-glow {
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 50%;
  background: radial-gradient(circle, rgba(199, 147, 104, 0.2), transparent 68%);
  filter: blur(26px);
  z-index: 0;
}

.hero-poster {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

#scroll-story {
  padding-top: clamp(56px, 8vw, 96px);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
}

.story-text-col {
  display: grid;
  gap: clamp(6vh, 10vh, 14vh);
  padding-right: clamp(8px, 2vw, 28px);
}

.feature {
  position: relative;
  min-height: 44vh;
  display: grid;
  align-content: center;
  gap: 14px;
  padding-left: clamp(86px, 9vw, 124px);
}

.feature-bg-num {
  position: absolute;
  top: 50%;
  left: clamp(-36px, -3vw, -14px);
  transform: translateY(-50%);
  font-family: "Clash Display", sans-serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.11);
}

.feature h2 {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.feature p {
  max-width: 56ch;
}

.story-canvas-col {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  width: calc(100% + clamp(140px, 12vw, 240px));
  margin-left: clamp(28px, 3vw, 64px);
  margin-right: calc(-1 * clamp(168px, 14vw, 304px));
}

.sticky-visual {
  position: relative;
  top: 0;
  height: 100svh;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg);
  border: none;
  box-shadow: none;
}

.sticky-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.99) 0%, rgba(5, 5, 6, 0.88) 10%, rgba(5, 5, 6, 0.44) 22%, rgba(5, 5, 6, 0.06) 40%),
    linear-gradient(270deg, rgba(5, 5, 6, 0.99) 0%, rgba(5, 5, 6, 0.88) 10%, rgba(5, 5, 6, 0.44) 22%, rgba(5, 5, 6, 0.06) 40%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.34) 18%, rgba(5, 5, 6, 0.08) 34%, rgba(5, 5, 6, 0.08) 66%, rgba(5, 5, 6, 0.38) 84%, rgba(5, 5, 6, 0.94) 100%),
    radial-gradient(circle at 64% 52%, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.18) 78%, rgba(0, 0, 0, 0.34) 100%);
}

.sticky-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  z-index: 11;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.22) 22%, rgba(5, 5, 6, 0.72) 70%, #050506 100%);
}

@media (min-width: 1121px) {
  .sticky-visual::after {
    height: 38%;
    background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.12) 28%, rgba(5, 5, 6, 0.5) 64%, rgba(5, 5, 6, 0.94) 86%, #050506 100%);
  }
}

.canvas-glow,
#dark-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.canvas-glow {
  background:
    radial-gradient(circle at 44% 20%, rgba(200, 155, 123, 0.08), transparent 24%),
    radial-gradient(circle at 76% 18%, rgba(200, 155, 123, 0.035), transparent 28%);
  z-index: 1;
}

#dark-overlay {
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(circle at 58% 50%, rgba(5, 5, 6, 0) 44%, rgba(5, 5, 6, 0.14) 72%, rgba(5, 5, 6, 0.34) 100%);
}

#product-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
}

#stats {
  padding-top: clamp(40px, 7vw, 80px);
  perspective: 1200px;
}

.stats-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.stat-number,
.stat-suffix {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--accent-strong);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.marquee-wrap {
  overflow: clip;
  padding: 16px 0 0;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-text {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.16);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 147, 104, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 11, 0.92);
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 147, 104, 0.28);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.service-card--wide-left {
  grid-column: span 7;
}

.service-card--wide-right {
  grid-column: span 5;
}

.service-card--wide-mid-left {
  grid-column: span 5;
}

.service-card--wide-mid-right {
  grid-column: span 7;
}

.service-card-media {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.02);
}

.service-card-body {
  display: grid;
  gap: 10px;
}

.service-num,
.step-num {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-strong);
}

.service-card h3,
.step-body h3,
.project-name,
.founder-info h3 {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.info-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.info-col {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 10, 0.92);
  box-shadow: var(--shadow-lg);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 20px;
}

.process-rail {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.38);
}

.process-progress-fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: top center;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 24px rgba(199, 147, 104, 0.32);
}

.process-steps {
  display: grid;
  gap: 28px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 12px;
  opacity: 0.6;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateX(4px);
}

.step-body {
  display: grid;
  gap: 10px;
}

.step-body p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}

.faq-icon {
  font-family: "Clash Display", sans-serif;
  font-size: 1.6rem;
  color: var(--accent-strong);
  transition: transform 0.28s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 22px 22px;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.filter-btn.active {
  color: #1b130d;
  border-color: transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 10, 0.96);
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.project-card.is-hidden {
  display: none;
}

.project-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card--invert-logo .project-thumb img {
  filter: invert(1);
  mix-blend-mode: screen;
}

.project-card--logo .project-thumb {
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(7, 7, 8, 0.98));
}

.project-card--logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.project-card--dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 7, 8, 0.98);
}

.project-info {
  display: grid;
  gap: 6px;
  padding: 2px 4px 0;
}

.project-type {
  font-size: 0.86rem;
}

.project-card--featured-mobile {
  background: linear-gradient(145deg, rgba(221, 180, 140, 0.22), rgba(199, 147, 104, 0.16));
  border-color: rgba(221, 180, 140, 0.48);
}

.project-card--featured-mobile .project-thumb {
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.14), transparent 30%),
    rgba(17, 12, 8, 0.7);
}

/* ── Project overlay ─────────────────────────────────────── */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 24px;
  text-align: center;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-cats {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.project-overlay-cta {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}

.project-overlay-cta:hover {
  background: var(--accent);
  color: #050506;
}

.project-overlay-cta--disabled {
  color: var(--text-dim);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Statement section ───────────────────────────────────── */
#statement {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-space) var(--section-px, clamp(20px, 5vw, 80px));
  overflow: hidden;
}

.statement-label {
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
}

.statement-text {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2.8rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  justify-content: center;
}

.s-word {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

.statement-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
}

/* ── Lead modal ──────────────────────────────────────────── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lead-modal-content {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  width: min(92vw, 520px);
  max-height: 90vh;
  overflow-y: auto;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.18s;
}

.lead-modal-close:hover { color: var(--text); }

.lead-modal-header {
  margin-bottom: 28px;
}

.lead-modal-header h2 {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  margin: 8px 0;
}

.lead-modal-header p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form .form-group input,
.lead-form .form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.18s;
  resize: none;
}

.lead-form .form-group input:focus,
.lead-form .form-group textarea:focus {
  border-color: var(--accent);
}

.lead-form-submit {
  width: 100%;
  margin-top: 4px;
}

.lead-form-or {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 2px 0;
}

.lead-form-call {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.lead-form-call:hover { text-decoration: underline; }

/* ── Lightbox ────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

#lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.92);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 960px);
  max-height: 90vh;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── Back-to-top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s, transform 0.24s, background 0.18s;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent);
  color: #050506;
}

@media (min-width: 1680px) {
  .projects-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .story-canvas-col {
    width: calc(100% + ((100vw - var(--content-max)) / 2) + clamp(132px, 6vw, 220px));
    margin-left: clamp(32px, 3vw, 72px);
    margin-right: calc(((100vw - var(--content-max)) / -2) - clamp(132px, 6vw, 220px));
  }
}

.studio-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.studio-copy-col {
  max-width: 560px;
}

.studio-copy {
  display: grid;
  gap: 22px;
}

.premium-quote {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--accent-strong);
}

.studio-founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.founder-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 10, 0.94);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-image {
  overflow: hidden;
  background: #131316;
}

.founder-image img {
  width: 100%;
  aspect-ratio: 700 / 954;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.34s ease;
}

.founder-card:hover .founder-image img {
  transform: scale(1.02);
}

.founder-info {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.founder-role,
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.founder-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-shell {
  display: grid;
  gap: 32px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(199, 147, 104, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 11, 0.96);
  box-shadow: var(--shadow-xl);
}

.contact-intro {
  max-width: 760px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-item {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-item strong {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

#footer {
  padding: 18px 0 36px;
  background: #050506;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 24px 40px;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Clash Display", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-brand span,
.footer-copy {
  color: var(--text-faint);
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.footer-bottom {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.76);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 32px));
  margin: min(10vh, 88px) auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 147, 104, 0.16), transparent 32%),
    rgba(10, 10, 12, 0.98);
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.4rem;
}

.modal-header {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

@media (max-width: 1120px) {
  .section-header--split,
  .hero-grid,
  .stats-shell,
  .info-shell,
  .studio-shell {
    grid-template-columns: 1fr;
  }

  /* Story layout on tablet/mobile: canvas as full-bleed centerpiece */
  .story-shell {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
  }

  .story-canvas-col {
    order: 1;
    position: sticky;
    top: 0;
    height: 100svh;
    width: calc(100% + clamp(28px, 6vw, 88px));
    max-width: none;
    margin-left: calc(-1 * clamp(14px, 3vw, 44px));
    margin-right: calc(-1 * clamp(14px, 3vw, 44px));
    z-index: 0;
  }

  .sticky-visual {
    position: relative;
    top: 0;
    height: 100svh;
    border-radius: 0;
    border: none;
    background: var(--bg);
    box-shadow: none;
    overflow: hidden;
  }

  .story-text-col {
    order: 2;
    position: relative;
    z-index: 2;
    margin-top: calc(-100svh);
    padding-top: clamp(80px, 12vh, 140px);
    padding-left: 0;
  }

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

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

  .service-card,
  .service-card--wide-left,
  .service-card--wide-right,
  .service-card--wide-mid-left,
  .service-card--wide-mid-right {
    grid-column: span 3;
  }

  .studio-copy-col {
    max-width: none;
  }
}

@media (max-width: 880px) {
  #nav {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    justify-self: end;
    align-self: center;
    width: 26px;
    height: 22px;
    margin-right: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-hamburger span {
    width: 18px;
    margin-left: -9px;
  }

  .nav-hamburger span:first-child {
    top: 7px;
  }

  .nav-hamburger span:last-child {
    top: 15px;
  }

  .contact-grid,
  .studio-founders,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-poster {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: clip;
  }

  #footer .footer-bottom,
  #footer .footer-copy,
  #footer .footer-lang {
    display: none !important;
  }

  .sticky-visual::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.78) 24%, rgba(5, 5, 6, 0) 50%, rgba(5, 5, 6, 0.78) 76%, rgba(5, 5, 6, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, 0.72) 0%, rgba(5, 5, 6, 0.18) 18%, rgba(5, 5, 6, 0.18) 82%, rgba(5, 5, 6, 0.72) 100%);
  }

  #dark-overlay {
    background:
      radial-gradient(circle at 50% 52%, rgba(5, 5, 6, 0) 40%, rgba(5, 5, 6, 0.08) 68%, rgba(5, 5, 6, 0.22) 100%);
  }

  #hero {
    padding-top: 112px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-heading {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-poster { aspect-ratio: 4 / 5; }

  .story-text-col {
    gap: 18vh;
  }

  .feature {
    min-height: auto;
    padding-left: 18px;
  }

  .feature-bg-num {
    left: 0;
    font-size: 2.8rem;
    top: -2px;
    transform: none;
  }

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

  .service-card,
  .service-card--wide-left,
  .service-card--wide-right,
  .service-card--wide-mid-left,
  .service-card--wide-mid-right {
    grid-column: auto;
  }

  .projects-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

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

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

  .project-thumb {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .project-card--featured-mobile {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
      rgba(8, 8, 10, 0.96);
    border-color: var(--line);
  }

  .project-card--featured-mobile .project-thumb {
    min-height: 0;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  }

  .process-layout {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-ghost {
    width: 100%;
  }

  .contact-item {
    min-height: auto;
  }
}
