@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --ink: #111111;
  --graphite: #2f2f2f;
  --muted: #5f5f5f;
  --line: #e4e4e4;
  --line-strong: #cfcfcf;
  --accent-pink: #fa3c7b;
  --accent-cyan: #05b3d0;
  --accent-yellow: #fccf0b;
  --accent-yellow-2: #fcd10a;
  --accent-purple: #7b3ec9;
  --accent-lime: #c0de22;
  --accent: var(--accent-pink);
  --accent-2: var(--accent-lime);
  --violet-deep: var(--accent-purple);
  --sand: #f7f7f7;
  --dark: #0e0e0e;
  --milk: #ffffff;
  --font-main: "Geist", sans-serif;
  --font-mono: "Geist Mono", monospace;
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(250, 60, 123, 0.035), transparent 32%),
    linear-gradient(315deg, rgba(5, 179, 208, 0.03), transparent 44%),
    linear-gradient(90deg, rgba(47, 47, 47, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 47, 47, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: var(--font-main);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--milk);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(17, 17, 17, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(250, 247, 240, 0.72) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.34;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 74, 26, 0.16), rgba(201, 255, 46, 0.1) 42%, transparent 66%);
  transition: opacity 0.4s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: var(--accent);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(20px, 4vw, 58px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(243, 239, 230, 0.97), rgba(243, 239, 230, 0.74), rgba(243, 239, 230, 0));
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(250, 247, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 52;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-name {
  font-size: 14px;
  font-weight: 760;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  color: rgba(17, 17, 17, 0.64);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent-2);
  transition: transform 0.3s var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 52;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(42deg);
}

.nav-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-42deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 122px clamp(20px, 4vw, 58px) 54px;
}

.hero-fullscreen {
  align-items: center;
  min-height: 100svh;
  color: var(--milk);
}

.hero-fullscreen::before {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px clamp(20px, 4vw, 58px) 34px auto;
  z-index: -1;
  width: min(42vw, 620px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 240, 0.5);
}

.hero-video,
.hero-shade {
  position: absolute;
  width: min(46vw, 720px);
  height: min(72vh, 720px);
  right: clamp(20px, 4vw, 58px);
  bottom: 54px;
  border-radius: var(--radius);
}

.hero-fullscreen .hero-video,
.hero-fullscreen .hero-shade {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.05);
}

.hero-fullscreen .hero-video {
  filter: saturate(1.04) contrast(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.08), rgba(17, 17, 17, 0.24)),
    linear-gradient(90deg, rgba(243, 239, 230, 0.04), rgba(243, 239, 230, 0.44));
  border: 1px solid var(--line);
}

.hero-fullscreen .hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.78), rgba(14, 14, 14, 0.22) 54%, rgba(14, 14, 14, 0.66)),
    linear-gradient(180deg, rgba(14, 14, 14, 0.22), rgba(14, 14, 14, 0.72));
  border: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.hero-fullscreen-grid {
  display: block;
}

.hero-copy {
  max-width: 900px;
}

.hero-fullscreen .hero-copy {
  max-width: 1040px;
}

.hero-fullscreen .eyebrow {
  color: var(--accent-2);
}

.hero-fullscreen .hero-lead {
  color: rgba(243, 239, 230, 0.84);
}

.hero-subline {
  margin-top: 18px;
  color: var(--accent);
  font-size: clamp(28px, 4vw, 62px);
  line-height: 1;
  font-weight: 850;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
.brand-card strong {
  font-family: var(--font-main);
  letter-spacing: 0;
}

h1 {
  max-width: 1060px;
  font-size: clamp(56px, 9.6vw, 138px);
  line-height: 0.9;
  font-weight: 860;
}

.hero-lead,
.page-hero-copy p,
.contact-copy p {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.36;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(250, 247, 240, 0.74);
  font-family: var(--font-main);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.button-primary {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--milk);
  font-weight: 780;
}

.button-primary:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--accent-cyan);
  background: color-mix(in srgb, var(--accent-cyan) 12%, var(--bg-soft));
}

.signal-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 70px rgba(14, 14, 14, 0.08);
}

.signal-panel div {
  position: relative;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.signal-panel div:last-child {
  border-bottom: 0;
}

.signal-panel div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.28s var(--ease);
}

.signal-panel div:hover::before {
  width: 5px;
}

.signal-panel span,
.focus-card span,
.timeline-item span,
.stack-item span,
.case-row span,
.brand-card span,
.brief-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

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

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 32px;
  writing-mode: vertical-rl;
  color: rgba(17, 17, 17, 0.5);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 10px;
  background: linear-gradient(var(--accent-2), transparent);
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 58px);
}

.barev-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.barev-copy {
  max-width: 920px;
}

.barev-copy h2,
.professional-copy h2,
.approach-content h2,
.cases-section .section-head h2,
.web-showcase-copy h2 {
  font-size: clamp(36px, 5.1vw, 78px);
  line-height: 0.96;
  font-weight: 850;
}

.barev-copy p:not(.eyebrow),
.professional-copy p,
.cases-section .section-head p,
.web-showcase-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
}

.barev-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(14, 14, 14, 0.14);
}

.barev-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
}

.professional-view-section,
.cases-section,
.web-showcase-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.professional-view-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid var(--line-strong);
  background: var(--dark);
  color: var(--milk);
}

.professional-view-section,
.approach-section,
.cases-section,
.marquee-section {
  overflow-x: clip;
}

.professional-view-grid {
  display: contents;
}

.barev-section > *,
.professional-view-grid > *,
.approach-content > *,
.web-showcase-section > * {
  min-width: 0;
}

.professional-video {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 239, 230, 0.16);
  border-radius: var(--radius);
  background: var(--dark);
}

.professional-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-copy {
  position: sticky;
  top: 96px;
  grid-column: 1;
  grid-row: 1;
  max-width: 900px;
  padding-top: 0;
}

.professional-copy .eyebrow {
  margin-bottom: 12px;
}

.professional-copy h2 {
  max-width: 880px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.03;
}

.professional-copy p {
  max-width: 840px;
  margin-top: 14px;
  color: rgba(243, 239, 230, 0.76);
  font-size: clamp(15px, 1.18vw, 18px);
}

.professional-view-section > .horizontal-gallery {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  grid-auto-columns: initial;
  gap: 14px;
  max-height: none;
  margin-top: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  overscroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.professional-view-section > .horizontal-gallery::-webkit-scrollbar {
  display: none;
}

.professional-view-section > .horizontal-gallery::-webkit-scrollbar-thumb {
  background: transparent;
}

.professional-view-section > .horizontal-gallery figure {
  height: auto;
  aspect-ratio: 1086 / 1448;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
}

.professional-view-section > .horizontal-gallery figure:nth-child(n + 7) {
  display: none;
}

.professional-view-section > .horizontal-gallery {
  overflow: visible;
}

.horizontal-gallery {
  display: grid;
  max-width: 100%;
  min-width: 0;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 4.35));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 72px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding-bottom: 2px;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

.horizontal-gallery::-webkit-scrollbar {
  display: none;
}

.horizontal-gallery figure {
  position: relative;
  aspect-ratio: 1086 / 1448;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.08);
}

.horizontal-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.approach-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--milk);
}

.approach-bg-video,
.approach-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.approach-bg-video {
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.approach-overlay {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.88), rgba(14, 14, 14, 0.48)),
    linear-gradient(180deg, rgba(14, 14, 14, 0.18), rgba(14, 14, 14, 0.86));
}

.approach-content,
.approach-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.approach-content {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.approach-content .eyebrow {
  grid-column: 1 / -1;
  color: var(--accent-2);
}

.approach-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: approach;
  border-top: 1px solid rgba(243, 239, 230, 0.2);
}

.approach-steps li {
  counter-increment: approach;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.2);
  color: rgba(243, 239, 230, 0.84);
  font-size: clamp(17px, 1.4vw, 21px);
}

.approach-steps li::before {
  content: counter(approach, decimal-leading-zero);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
}

.approach-gallery {
  margin-top: clamp(42px, 7vw, 96px);
}

.cases-section .section-head {
  max-width: 1120px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.case-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.case-filters button:hover,
.case-filters button.is-active {
  border-color: var(--accent-pink);
  background: var(--accent-pink);
  color: var(--ink);
  transform: translateY(-1px);
}

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

.case-preview-card {
  --case-accent: var(--accent-pink);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.9)),
    var(--bg-soft);
  transition: transform 0.28s var(--ease), background 0.28s ease, border-color 0.28s ease;
}

.case-preview-card:hover {
  transform: translateY(-6px);
  background: var(--dark);
  border-color: var(--case-accent);
  color: var(--milk);
}

.case-preview-card:nth-child(1) { --case-accent: var(--accent-cyan); }
.case-preview-card:nth-child(2) { --case-accent: var(--accent-purple); }
.case-preview-card:nth-child(3) { --case-accent: var(--accent-lime); }
.case-preview-card:nth-child(4) { --case-accent: var(--accent-yellow); }

.case-preview-card.is-hidden {
  display: none;
}

.case-preview-card span {
  margin-bottom: 18px;
  color: var(--case-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-preview-card h3 {
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
}

.case-preview-card p {
  margin-top: 16px;
  color: var(--muted);
}

.case-preview-card:hover p {
  color: rgba(243, 239, 230, 0.74);
}

.web-showcase-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 6vw, 92px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.web-showcase-hero {
  min-height: min(78vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(34px, 5vw, 86px);
}

.web-showcase-copy {
  position: relative;
  top: auto;
  min-height: 0;
  max-width: 780px;
}

.web-showcase-copy h2 {
  font-size: clamp(42px, 4.9vw, 72px);
}

.web-showcase-copy .button {
  width: fit-content;
  margin-top: 34px;
}

.web-showcase-videos {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.web-showcase-media {
  width: min(100%, 600px);
  justify-self: end;
  display: grid;
  gap: 16px;
  margin-top: clamp(12px, 2vw, 28px);
}

.web-showcase-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.web-showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
}

.web-feature-project,
.web-case-row {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.web-feature-copy h3,
.web-showcase-media h3,
.web-video-stack h3 {
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.98;
}

.web-feature-copy p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

.web-project-ando {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  min-height: min(72vh, 720px);
  padding-bottom: clamp(12px, 2vw, 26px);
  border-bottom: 0;
}

.web-project-ando .web-feature-copy {
  grid-column: 1;
  align-self: center;
}

.web-project-ando .ando-product-gallery {
  grid-column: 1 / -1;
  margin-top: clamp(16px, 2vw, 30px);
}

.web-feature-video {
  grid-column: 2;
  align-self: center;
}

.web-video-stack {
  display: grid;
  gap: 14px;
}

.web-project-video {
  position: relative;
  display: block;
  aspect-ratio: 20 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
}

.web-project-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ando-product-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 24vw);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.ando-product-gallery::-webkit-scrollbar {
  display: none;
}

.ando-product-gallery figure,
.web-case-photo {
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ando-product-gallery figure {
  aspect-ratio: 4 / 5;
}

.ando-product-gallery img,
.web-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.web-case-row {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr) minmax(300px, 0.72fr);
  align-items: center;
  padding: clamp(28px, 4vw, 54px) 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.web-case-copy {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.web-case-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

.web-case-copy span {
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.web-case-photo {
  aspect-ratio: 4 / 3;
  padding: 0;
}

.web-product-panel {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--milk);
}

.web-product-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.web-product-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(14, 14, 14, 0.78));
}

.web-product-panel span {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  font-weight: 850;
}

.intro-mosaic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.72fr) minmax(250px, 0.58fr);
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  align-items: stretch;
}

.intro-mosaic-copy {
  grid-row: span 2;
  min-height: 0;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(250, 247, 240, 0.96), rgba(235, 228, 216, 0.82)),
    var(--bg-soft);
}

.intro-mosaic-copy h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
  font-weight: 850;
}

.intro-mosaic-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
}

.intro-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
}

.intro-photo-large {
  grid-row: span 2;
  min-height: 0;
}

.intro-photo-small {
  min-height: 0;
}

.intro-photo img,
.poster-card img,
.case-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.intro-photo:hover img,
.poster-card:hover img,
.case-gallery figure:hover img {
  transform: scale(1.035);
  filter: grayscale(0.3) contrast(1.02);
}

.intro-photo-large img {
  object-position: center 18%;
}

.intro-photo-small img {
  object-position: center 16%;
}

.intro-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--bg-soft);
}

.intro-note span,
.design-principles span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-note p {
  margin-top: 42px;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.16;
  font-weight: 780;
}

.intro-facts {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line-strong);
  overflow: hidden;
}

.intro-facts div {
  min-height: 148px;
  padding: clamp(18px, 2.2vw, 28px);
  background: rgba(250, 247, 240, 0.78);
}

.intro-facts strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2.7vw, 38px);
  line-height: 1;
}

.intro-facts span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.82fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.section-kicker {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.split-copy h2,
.section-head h2,
.wide-statement p,
.image-statement h2,
.bio-copy h2,
.method-copy h2,
.case-flow h2,
.contact-copy h1 {
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 0.99;
  font-weight: 850;
}

.split-copy p,
.bio-copy p,
.method-copy p,
.case-row p,
.brief-card p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.split-media {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(14, 14, 14, 0.08);
}

.frame-section {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 112px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding-top: 0;
}

.frame-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(14, 14, 14, 0.12);
}

.frame-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
}

.frame-copy {
  position: relative;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 74, 26, 0.1), rgba(250, 247, 240, 0.9) 44%),
    var(--bg-soft);
}

.frame-copy::before,
.frame-copy::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--accent);
  pointer-events: none;
}

.frame-copy::before {
  top: 22px;
  left: 22px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.frame-copy::after {
  right: 22px;
  bottom: 22px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.frame-copy h2 {
  font-size: clamp(34px, 5.2vw, 74px);
  line-height: 0.99;
  font-weight: 850;
}

.frame-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
}

.split-media img,
.method-visual img,
.page-hero-media img,
.contact-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.split-media:hover img,
.method-visual:hover img,
.page-hero-media:hover img,
.contact-media:hover img {
  transform: scale(1.035);
  filter: grayscale(0.75) contrast(1.02);
}

.dark-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--dark);
  color: var(--bg-soft);
}

.band-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  opacity: 0.12;
  color: transparent;
  -webkit-text-stroke: 1px var(--bg-soft);
  font-size: 15vw;
  font-weight: 850;
  white-space: nowrap;
  animation: drift 26s linear infinite;
}

.wide-statement {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cards-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.section-head {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 76px);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.focus-card {
  --tile-accent: var(--accent-cyan);
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-rows: 28px minmax(78px, auto) 1fr;
  align-content: start;
  row-gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.28s var(--ease), background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--tile-accent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.focus-card:hover {
  transform: translateY(-8px);
  background: var(--bg-soft);
  border-color: var(--tile-accent);
  box-shadow: 0 22px 58px rgba(14, 14, 14, 0.08);
}

.focus-card:hover::before {
  transform: scaleX(1);
}

.focus-card span {
  margin-bottom: 0;
  align-self: start;
}

.focus-card h3,
.timeline-item h3,
.case-row h3,
.brief-card h2 {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

.focus-card p,
.timeline-item p,
.stack-item p,
.brand-card span {
  margin-top: 18px;
  color: var(--muted);
}

.focus-card p {
  margin-top: 0;
}

.expertise-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
}

.expertise-tile {
  --tile-accent: var(--accent-cyan);
  min-height: 270px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.expertise-tile:nth-child(1) { --tile-accent: var(--accent-pink); }
.expertise-tile:nth-child(2) { --tile-accent: var(--accent-cyan); }
.expertise-tile:nth-child(3) { --tile-accent: var(--accent-yellow); }
.expertise-tile:nth-child(4) { --tile-accent: var(--accent-purple); }
.expertise-tile:nth-child(5) { --tile-accent: var(--accent-lime); }
.expertise-tile:nth-child(6) { --tile-accent: var(--accent-yellow-2); }

.expertise-tile span {
  color: var(--tile-accent);
}

.expertise-tile.is-wide {
  grid-column: span 1;
}

.expertise-tile.is-tall {
  grid-column: span 1;
  grid-row: span 1;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--tile-accent) 16%, transparent), rgba(255, 255, 255, 0.94)),
    var(--bg-soft);
}

.expertise-tile.is-accent {
  grid-column: span 1;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--tile-accent) 86%, #ffffff), color-mix(in srgb, var(--tile-accent) 28%, #ffffff)),
    var(--tile-accent);
}

.expertise-tile.is-accent span,
.expertise-tile.is-accent p {
  color: rgba(17, 17, 17, 0.72);
}

.focus-grid .parallax-layer,
.intro-mosaic-section .parallax-layer {
  --reveal-y: 0px !important;
  --parallax-y: 0px !important;
  transform: none !important;
}

.design-system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  background: var(--dark);
  color: var(--milk);
}

.design-copy {
  position: sticky;
  top: 96px;
}

.design-copy h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 850;
}

.design-copy p {
  margin-top: 24px;
  color: rgba(243, 239, 230, 0.76);
  font-size: clamp(17px, 1.6vw, 22px);
}

.design-motion-video {
  width: 100%;
  margin-top: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(243, 239, 230, 0.16);
  background: rgba(243, 239, 230, 0.04);
}

.design-motion-video video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.poster-card {
  position: relative;
  grid-column: span 1;
  grid-row: auto;
  aspect-ratio: 1086 / 1448;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 239, 230, 0.18);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 24px 70px rgba(14, 14, 14, 0.12);
}

.poster-card-large {
  grid-column: span 1;
  grid-row: auto;
}

.poster-card-wide {
  grid-column: span 1;
  grid-row: auto;
}

.poster-card-offset {
  transform: none;
}

.poster-card img {
  object-fit: contain;
  filter: none;
}

.poster-card:hover img {
  filter: none;
}

.design-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(12px, 3vw, 34px);
  padding: 1px;
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.18);
  overflow: hidden;
}

.design-principles article {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto minmax(76px, auto) 1fr;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(243, 239, 230, 0.06);
}

.design-principles h3 {
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.05;
}

.design-principles p {
  color: rgba(243, 239, 230, 0.72);
}

.fixed-bg {
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bg-soft);
}

.fixed-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(1) contrast(1.06);
}

.fixed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.9), rgba(14, 14, 14, 0.34), rgba(14, 14, 14, 0.72));
}

.image-statement-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.image-statement .button {
  margin-top: 34px;
}

.marquee-section {
  padding-block: 36px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

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

.marquee div {
  display: flex;
  gap: clamp(28px, 5vw, 72px);
  padding-right: clamp(28px, 5vw, 72px);
}

.marquee span {
  color: rgba(17, 17, 17, 0.74);
  font-size: clamp(22px, 3.3vw, 52px);
  font-weight: 850;
  white-space: nowrap;
}

.web-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.web-preview-head h2,
.web-hero-copy h1,
.project-catalog-head h2,
.project-index-head h2,
.case-copy h2 {
  font-size: clamp(36px, 6vw, 86px);
  line-height: 0.98;
  font-weight: 850;
}

.web-preview-head p,
.project-catalog-head p,
.case-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
}

.web-preview-head .button {
  margin-top: 34px;
}

.web-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line-strong);
  overflow: hidden;
}

.web-mini-card {
  position: relative;
  aspect-ratio: 10 / 16;
  min-height: 0;
  overflow: hidden;
  background: var(--dark);
}

.web-mini-card video,
.project-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) saturate(1.08) contrast(1.02);
}

.project-card video {
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.case-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.web-mini-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14, 14, 14, 0.76));
}

.web-mini-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--bg);
  font-weight: 820;
}

.web-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(30px, 7vw, 110px);
  align-items: center;
  padding: 116px clamp(20px, 4vw, 58px) 58px;
  overflow: hidden;
}

.web-hero-copy p {
  max-width: 780px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.36;
}

.web-hero-media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(14, 14, 14, 0.12);
}

.web-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.development-page {
  background:
    linear-gradient(90deg, rgba(47, 47, 47, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 47, 47, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.development-hero {
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding-top: 118px;
}

.development-hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
}

.development-hero h1 {
  max-width: 1120px;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.94;
}

.development-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
}

.development-feed-section {
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  border-top: 1px solid var(--line-strong);
}

.development-feed-head {
  max-width: 980px;
}

.development-feed-head h2 {
  max-width: 860px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1;
}

.development-feed {
  display: grid;
  gap: clamp(44px, 7vw, 106px);
}

.dev-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
  padding-top: clamp(34px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.dev-post-info {
  position: sticky;
  top: 104px;
}

.dev-post-info span {
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dev-post-info h3 {
  margin-top: 18px;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
}

.dev-post-info p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.42;
}

.dev-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.dev-post-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 780;
  text-transform: uppercase;
}

.dev-post-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dev-post-link:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.development-cta h2 {
  max-width: 860px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.dev-post-media {
  display: grid;
  gap: 14px;
}

.dev-media-button {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--dark);
  cursor: zoom-in;
}

.dev-media-primary {
  aspect-ratio: 20 / 9;
}

.dev-media-button img,
.dev-media-button video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.dev-media-button video {
  object-fit: contain;
}

.dev-media-button:hover img,
.dev-media-button:hover video {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.04);
}

.dev-media-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dev-media-gallery .dev-media-button {
  aspect-ratio: 4 / 3;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(14, 14, 14, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.media-modal-stage {
  width: min(1180px, 100%);
  max-height: 78vh;
  display: grid;
  place-items: center;
}

.media-modal-stage img,
.media-modal-stage video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  background: var(--dark);
}

.media-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--milk);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.media-modal-title {
  max-width: min(1180px, 100%);
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.project-case-page {
  background:
    linear-gradient(90deg, rgba(47, 47, 47, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 47, 47, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.project-case-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(34px, 5vw, 86px);
  padding-top: 118px;
}

.project-case-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1;
}

.project-case-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
}

.project-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.project-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-case-media {
  display: grid;
  gap: 12px;
  align-self: center;
}

.ando-hero-media {
  align-self: end;
}

.ando-hero-media figcaption {
  display: none;
}

.project-case-main-media {
  aspect-ratio: 20 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.project-case-main-media.is-image {
  aspect-ratio: 4 / 3;
  background: transparent;
}

.project-case-main-media video,
.project-case-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-case-main-media.is-image img {
  object-fit: contain;
}

.judo-main-media {
  aspect-ratio: 16 / 9;
}

.fashion-main-media {
  aspect-ratio: 16 / 9;
}

.ando-main-media {
  aspect-ratio: 20 / 9;
  background: transparent;
}

.ando-main-media video {
  object-fit: contain;
}

.fashion-main-media video {
  object-fit: contain;
}

.project-case-media figcaption {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 740;
  text-transform: uppercase;
}

.project-case-summary {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 6vw, 110px);
  border-top: 1px solid var(--line-strong);
}

.project-case-summary h2,
.project-case-gallery h2,
.project-case-faq h2,
.related-projects h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
}

.project-case-text {
  display: grid;
  gap: 28px;
}

.project-case-text article {
  display: grid;
  grid-template-columns: minmax(70px, 0.25fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.project-case-text span {
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
}

.project-case-text h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.project-case-text p,
.project-case-faq p,
.related-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
}

.project-case-gallery,
.project-case-faq,
.related-projects {
  border-top: 1px solid var(--line-strong);
}

.project-case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.project-case-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.project-case-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-case-gallery-grid figure:nth-child(1) {
  grid-column: span 2;
}

.fashion-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  align-items: stretch;
}

.fashion-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.fashion-gallery-grid .is-wide {
  grid-column: auto;
  aspect-ratio: 16 / 9;
}

.fashion-gallery-grid .is-square {
  grid-column: auto;
  aspect-ratio: 16 / 9;
}

.fashion-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ando-gallery-section h2 {
  max-width: 980px;
}

.ando-gallery-block {
  margin-top: clamp(44px, 7vw, 92px);
}

.ando-gallery-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 64px);
  align-items: start;
  margin-bottom: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.ando-gallery-copy span {
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ando-gallery-copy h3 {
  grid-column: 2;
  max-width: 760px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.ando-gallery-copy p {
  grid-column: 2;
  max-width: 840px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
}

.ando-project-gallery-grid {
  margin-top: 22px;
}

.ando-project-gallery-grid figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ando-project-gallery-grid img {
  display: block;
  height: auto;
  object-fit: contain;
}

.ando-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(160px, 18vw, 300px);
  grid-auto-flow: dense;
  gap: 10px;
  background: var(--dark);
  padding: 10px;
}

.ando-gallery-mosaic figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.ando-gallery-mosaic img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ando-gallery-mosaic--identity figure:nth-child(1),
.ando-gallery-mosaic--digital figure:nth-child(2),
.ando-gallery-mosaic--interface figure:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.ando-gallery-mosaic--identity figure:nth-child(2),
.ando-gallery-mosaic--digital figure:nth-child(1),
.ando-gallery-mosaic--interface figure:nth-child(2),
.ando-gallery-mosaic--extension figure:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.judo-gallery-grid {
  --judo-gallery-gap: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--judo-gallery-gap);
  align-items: flex-start;
}

.judo-gallery-grid figure {
  flex: 0 0 calc((100% - var(--judo-gallery-gap)) * 9 / 25);
  aspect-ratio: 1 / 1;
}

.judo-gallery-grid figure:nth-child(4n + 1),
.judo-gallery-grid figure:nth-child(4n) {
  flex-basis: calc((100% - var(--judo-gallery-gap)) * 16 / 25);
  aspect-ratio: 16 / 9;
}

.project-case-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 86px);
}

.project-faq-list {
  display: grid;
  gap: 0;
}

.project-faq-list details {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.project-faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 780;
  list-style: none;
}

.project-faq-list summary::-webkit-details-marker {
  display: none;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.related-card {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  background: var(--card);
  color: var(--ink);
}

.related-card span {
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.related-card h3 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.related-card:hover {
  background: var(--dark);
  color: var(--paper);
}

.related-card:hover p {
  color: rgba(243, 239, 230, 0.72);
}

.home-faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 5vw, 92px);
  border-top: 1px solid var(--line-strong);
}

.home-faq-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.home-faq-copy h2 {
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.98;
}

.home-faq-list {
  display: grid;
}

.home-faq-list details {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.home-faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 32px);
  font-weight: 820;
  list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list p {
  max-width: 780px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
}

.project-catalog-section,
.project-index-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.project-catalog-head,
.project-index-head {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 76px);
}

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

.project-card {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--bg);
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(14, 14, 14, 0.16);
}

.project-card.is-large {
  grid-column: span 1;
  grid-row: span 1;
}

.project-card.is-wide {
  grid-column: span 1;
}

.project-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
}

.project-card-body span,
.case-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card-body h3 {
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1;
}

.project-card-body p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(243, 239, 230, 0.82);
}

.interface-preview {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.85fr;
  gap: 12px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 255, 46, 0.28), transparent 24%),
    linear-gradient(135deg, var(--violet-deep), var(--dark));
}

.interface-preview div,
.interface-preview span {
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.18);
  border: 1px solid rgba(243, 239, 230, 0.18);
}

.interface-preview span {
  min-height: 110px;
}

.project-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line-strong);
  overflow: hidden;
}

.project-index a {
  min-height: 130px;
  padding: 20px;
  background: rgba(250, 247, 240, 0.78);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 820;
  transition: background 0.25s ease, color 0.25s ease;
}

.project-index a:hover {
  background: var(--dark);
  color: var(--bg);
}

.project-index span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.project-index a:hover span {
  color: rgba(243, 239, 230, 0.72);
}

.web-case {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  width: min(1380px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.web-case.is-reversed .case-media {
  order: 2;
}

.case-media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 24px 70px rgba(14, 14, 14, 0.1);
}

.case-copy {
  max-width: 760px;
}

.case-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 3vw, 34px);
}

.case-gallery figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.case-gallery img {
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.case-gallery figure.is-tall {
  aspect-ratio: 4 / 5;
}

.case-gallery figure.is-contain img {
  object-fit: contain;
  padding: 20px;
  background: var(--bg-soft);
}

.interface-gallery figure {
  background: var(--dark);
}

.interface-shot {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  grid-template-rows: 0.24fr repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 255, 46, 0.28), transparent 24%),
    linear-gradient(135deg, var(--dark), #242424);
}

.interface-shot span,
.interface-shot strong,
.interface-shot em,
.interface-shot i {
  display: block;
  border: 1px solid rgba(243, 239, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.12);
}

.interface-shot span {
  grid-row: 1 / -1;
}

.interface-shot strong {
  grid-column: 2;
}

.interface-shot em,
.interface-shot i {
  grid-column: 2;
}

.interface-shot.is-feed {
  grid-template-columns: 1fr;
}

.interface-shot.is-feed span {
  grid-row: auto;
  min-height: 38px;
}

.interface-shot.is-profile {
  grid-template-columns: 0.52fr 1fr;
}

.case-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

.interface-case {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.interface-board {
  display: grid;
  grid-template-columns: 0.24fr 1fr 0.42fr;
  gap: 14px;
  width: 100%;
  height: 100%;
}

.interface-sidebar,
.interface-feed,
.interface-panel {
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.14);
  border: 1px solid rgba(243, 239, 230, 0.18);
}

.interface-feed {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.interface-feed span {
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.18);
}

.page-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  padding: 116px clamp(20px, 4vw, 58px) 58px;
  overflow: hidden;
}

.compact-hero {
  grid-template-columns: 0.95fr 1.05fr;
}

.page-hero-media {
  position: relative;
  height: min(74vh, 780px);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
}

.wide-media {
  height: min(58vh, 620px);
}

.page-hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 82px);
  line-height: 1.02;
}

.biography-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(34px, 7vw, 120px);
  width: min(1380px, 100%);
  margin: 0 auto;
}

.bio-facts {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.bio-facts div {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.bio-facts div:last-child {
  border-bottom: 0;
}

.bio-facts strong {
  display: block;
  color: var(--accent);
  font-size: 52px;
  line-height: 1;
}

.bio-facts span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.timeline-section,
.expertise-stack,
.case-flow,
.contact-brief {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.timeline-item {
  min-height: 320px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  background: rgba(250, 247, 240, 0.72);
}

.timeline-item:last-child {
  border-right: 0;
}

.quote-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--bg-soft);
}

.quote-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  opacity: 0.62;
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.58);
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 850;
}

.expertise-stack {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.stack-item {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.stack-item:last-child {
  border-bottom: 0;
}

.stack-item h2 {
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.02;
}

.stack-item h3 {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.02;
}

.home-expertise-detail {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  border-top: 1px solid var(--line-strong);
}

.home-expertise-head {
  width: min(1120px, 100%);
}

.home-expertise-head h2 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.92;
}

.home-expertise-head p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
}

.home-expertise-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-method-section {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  border-top: 1px solid var(--line-strong);
}

.home-method-section .method-copy h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.96;
}

.home-cta-section {
  min-height: 54vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  background: var(--dark);
  color: var(--milk);
}

.home-cta-copy h2 {
  max-width: 1040px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.94;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.home-cta-section .button-secondary {
  color: var(--milk);
  border-color: rgba(250, 247, 240, 0.34);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.method-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.clean-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.clean-list strong {
  color: var(--ink);
}

.projects-hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: 1fr;
  background:
    linear-gradient(90deg, rgba(243, 239, 230, 0.95) 0%, rgba(243, 239, 230, 0.82) 48%, rgba(243, 239, 230, 0.5) 100%),
    url("assets/img/projects-papers-hero.jpg") center / cover;
}

.projects-hero .page-hero-copy h1 {
  max-width: 1040px;
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 1.04;
}

.brand-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  padding: 1px;
}

.brand-card {
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 32px);
  background: var(--bg-soft);
  border-radius: 0;
  transition: background 0.28s ease, transform 0.28s var(--ease), color 0.28s ease;
}

.brand-card:hover {
  transform: scale(0.985);
  background: var(--dark);
  color: var(--bg-soft);
}

.brand-card:hover span {
  color: rgba(243, 239, 230, 0.68);
}

.brand-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
}

.case-row {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(20px, 4vw, 70px);
  padding: clamp(28px, 4vw, 58px) 0;
  border-top: 1px solid var(--line-strong);
}

.case-row:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.case-row p {
  margin-top: 0;
}

.contact-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(28px, 6vw, 110px);
  align-items: center;
  padding: 116px clamp(20px, 4vw, 58px) 58px;
}

.contact-media {
  position: relative;
  height: min(76vh, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  padding: 1px;
}

.brief-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--bg-soft);
}

.gallery-page {
  background:
    linear-gradient(90deg, rgba(47, 47, 47, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 47, 47, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.gallery-header .gallery-discuss-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.gallery-header .gallery-discuss-link:hover {
  border-color: var(--accent-lime);
  background: var(--accent-lime);
  color: var(--ink);
}

.gallery-hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding-top: 118px;
}

.gallery-hero-copy {
  width: min(1180px, 100%);
}

.gallery-hero h1 {
  max-width: 1120px;
  font-size: clamp(50px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
}

.visual-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  padding-top: 0;
}

.visual-poster {
  position: relative;
  aspect-ratio: 1086 / 1448;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.visual-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.visual-poster figcaption {
  position: absolute;
  inset: auto 0 0;
  min-height: 34%;
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 2.2vw, 30px);
  color: var(--milk);
  background: linear-gradient(180deg, transparent, rgba(14, 14, 14, 0.82));
  font-size: clamp(22px, 2.8vw, 44px);
  font-weight: 850;
  line-height: 0.96;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.visual-poster:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.visual-poster:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg-soft);
}

.site-footer a {
  color: var(--ink);
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand p {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 850;
}

.footer-brand span {
  max-width: 460px;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-contacts a {
  color: var(--ink);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-socials a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-socials a:hover {
  border-color: var(--accent-lime);
  background: var(--accent-lime);
}

.reveal {
  opacity: 0;
  --reveal-y: 18px;
  --parallax-y: 0px;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.parallax-layer {
  will-change: transform;
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
}

.parallax-layer.is-parallax-active.is-visible {
  transition: opacity 0.75s var(--ease);
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

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

@media (max-width: 1080px) {
  .professional-view-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-grid,
  .barev-section,
  .professional-view-grid,
  .approach-content,
  .intro-mosaic-section,
  .web-preview-section,
  .web-showcase-hero,
  .web-showcase-section,
  .web-hero,
  .web-case,
  .page-hero,
  .compact-hero,
  .biography-grid,
  .method-section,
  .home-method-section,
  .home-cta-section,
  .home-faq-section,
  .dev-post,
  .project-case-hero,
  .project-case-summary,
  .project-case-faq,
  .frame-section,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero-video,
  .hero-shade {
    width: auto;
    left: clamp(20px, 4vw, 58px);
    right: clamp(20px, 4vw, 58px);
    top: 92px;
    bottom: auto;
    height: 42vh;
  }

  .hero-grid {
    padding-top: 42vh;
  }

  .hero-fullscreen .hero-grid {
    padding-top: 0;
  }

  .professional-video {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    height: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .professional-view-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 28px);
    width: 100%;
    min-width: 0;
  }

  .professional-copy,
  .professional-view-section > .horizontal-gallery {
    grid-column: auto;
  }

  .professional-copy {
    position: static;
    width: 100%;
    max-width: none;
  }

  .professional-view-section > .horizontal-gallery {
    grid-row: auto;
    max-height: none;
    overflow-y: visible;
  }

  .signal-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .intro-mosaic-copy,
  .intro-photo-large,
  .intro-facts {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-media,
  .frame-media,
  .method-visual,
  .page-hero-media,
  .contact-media {
    min-height: 420px;
    height: 58vh;
  }

  .focus-grid,
  .expertise-mosaic,
  .case-preview-grid,
  .project-index,
  .brand-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-tile.is-wide,
  .expertise-tile.is-tall,
  .expertise-tile.is-accent {
    grid-column: span 1;
    grid-row: span 1;
  }

  .design-system-section {
    grid-template-columns: 1fr;
  }

  .design-copy {
    position: static;
  }

  .web-showcase-copy {
    position: static;
    min-height: auto;
  }

  .web-showcase-media {
    justify-self: stretch;
    width: min(100%, 760px);
    margin-top: 0;
  }

  .dev-post-info {
    position: static;
  }

  .dev-post-info h3 {
    max-width: 780px;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .home-faq-copy {
    position: static;
  }

  .poster-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .poster-card-large,
  .poster-card-wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .poster-card-offset {
    transform: none;
  }

  .design-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-preview-grid,
  .project-catalog {
    grid-template-columns: 1fr 1fr;
  }

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

  .project-case-gallery-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-case-gallery-grid figure:nth-child(1) {
    grid-column: span 1;
  }

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

  .web-case-row {
    grid-template-columns: 1fr;
  }

  .web-project-ando {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .web-project-ando .web-feature-copy,
  .web-feature-video,
  .web-project-ando .ando-product-gallery {
    grid-column: 1;
  }

  .horizontal-gallery {
    grid-auto-columns: minmax(240px, calc((100% - 24px) / 2.55));
  }

  .web-product-panel {
    min-height: 56vh;
  }

  .project-card.is-large,
  .project-card.is-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .web-case.is-reversed .case-media {
    order: 0;
  }

  .web-hero-media,
  .case-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .stack-item,
  .case-row,
  .contact-brief,
  .case-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 51;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 22px;
    padding: 92px 24px 34px;
    background: rgba(243, 239, 230, 0.98);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    font-size: 30px;
    font-weight: 850;
    text-transform: none;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .brand-name {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero,
  .page-hero,
  .contact-hero {
    min-height: 100svh;
    padding-top: 96px;
  }

  .hero::before,
  .hero-video,
  .hero-shade {
    height: 34vh;
  }

  .hero-grid {
    padding-top: 34vh;
  }

  .signal-panel {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .focus-grid,
  .expertise-mosaic,
  .web-preview-grid,
  .case-preview-grid,
  .project-catalog,
  .project-index,
  .timeline,
  .brand-matrix,
  .intro-facts,
  .design-principles {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    min-height: 72vh;
  }

  .development-hero {
    min-height: 78vh;
  }

  .gallery-hero h1,
  .development-hero h1 {
    font-size: clamp(42px, 12.4vw, 60px);
  }

  .page-hero-copy h1,
  .projects-hero .page-hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 1.04;
  }

  .visual-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-case-gallery-grid,
  .fashion-gallery-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .fashion-gallery-grid .is-wide,
  .fashion-gallery-grid .is-square {
    grid-column: auto;
  }

  .ando-gallery-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .ando-gallery-copy h3,
  .ando-gallery-copy p {
    grid-column: auto;
  }

  .ando-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    background: transparent;
  }

  .ando-gallery-mosaic figure,
  .ando-gallery-mosaic--identity figure:nth-child(1),
  .ando-gallery-mosaic--identity figure:nth-child(2),
  .ando-gallery-mosaic--digital figure:nth-child(1),
  .ando-gallery-mosaic--digital figure:nth-child(2),
  .ando-gallery-mosaic--interface figure:nth-child(1),
  .ando-gallery-mosaic--interface figure:nth-child(2),
  .ando-gallery-mosaic--extension figure:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .ando-gallery-mosaic img {
    position: static;
    height: auto;
    object-fit: contain;
  }

  .judo-gallery-grid figure {
    flex-basis: 100%;
    aspect-ratio: 1 / 1;
  }

  .judo-gallery-grid figure:nth-child(4n + 1),
  .judo-gallery-grid figure:nth-child(4n) {
    flex-basis: 100%;
    aspect-ratio: 16 / 9;
  }

  .project-case-copy h1 {
    font-size: clamp(38px, 12vw, 62px);
    line-height: 1.03;
  }

  .project-case-text article {
    grid-template-columns: 1fr;
  }

  .visual-poster figcaption {
    opacity: 1;
    transform: none;
  }

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

  .dev-post-info h3 {
    font-size: clamp(38px, 12vw, 64px);
  }

  .media-modal {
    padding: 16px;
  }

  .intro-mosaic-section {
    gap: 10px;
  }

  .barev-copy h2,
  .professional-copy h2,
  .approach-content h2,
  .cases-section .section-head h2,
  .web-showcase-copy h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .professional-video {
    width: min(100%, 320px);
    justify-self: center;
    min-height: 0;
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .professional-copy h2 {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .professional-view-section > .horizontal-gallery {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72vw);
    grid-auto-rows: auto;
    gap: 12px;
    width: 100%;
    min-width: 0;
    margin-top: 2px;
    padding-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .professional-view-section > .horizontal-gallery figure {
    width: auto;
    min-height: 0;
    aspect-ratio: 1086 / 1448;
    scroll-snap-align: start;
  }

  .horizontal-gallery {
    grid-auto-columns: minmax(245px, 82vw);
  }

  .ando-product-gallery {
    grid-auto-columns: minmax(220px, 72vw);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-contacts,
  .footer-socials {
    justify-items: start;
    justify-content: flex-start;
  }

  .approach-section {
    min-height: auto;
  }

  .approach-content {
    display: block;
  }

  .approach-content h2 {
    margin-bottom: 28px;
  }

  .approach-steps li {
    grid-template-columns: 38px 1fr;
  }

  .case-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .case-filters button {
    flex: 0 0 auto;
  }

  .case-preview-card {
    min-height: 240px;
  }

  .web-product-panel {
    min-height: 360px;
  }

  .intro-photo,
  .intro-note {
    min-height: 260px;
  }

  .poster-wall {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .poster-card,
  .poster-card-large,
  .poster-card-wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .focus-card,
  .timeline-item,
  .brand-card {
    min-height: 220px;
  }

  .web-mini-card {
    min-height: 0;
  }

  .web-hero-media,
  .case-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-index a {
    min-height: 104px;
  }

  .frame-copy {
    padding: 34px 22px;
  }

  .frame-copy::before,
  .frame-copy::after {
    width: 28px;
    height: 28px;
  }

  .fixed-bg-image {
    background-attachment: scroll;
  }

  .page-hero-media,
  .contact-media {
    order: 2;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-contacts {
    justify-content: flex-start;
    flex-direction: column;
  }
}

/* Unified heading scale across pages. */
body h1,
body .hero h1,
body .page-hero-copy h1,
body .projects-hero .page-hero-copy h1,
body .web-hero-copy h1,
body .development-hero h1,
body .gallery-hero h1,
body .contact-copy h1,
body .project-case-copy h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

body h2,
body .split-copy h2,
body .barev-copy h2,
body .professional-copy h2,
body .approach-content h2,
body .cases-section .section-head h2,
body .web-showcase-copy h2,
body .intro-mosaic-copy h2,
body .section-head h2,
body .image-statement h2,
body .bio-copy h2,
body .method-copy h2,
body .case-flow h2,
body .frame-copy h2,
body .design-copy h2,
body .web-preview-head h2,
body .project-catalog-head h2,
body .project-index-head h2,
body .case-copy h2,
body .development-feed-head h2,
body .development-cta h2,
body .project-case-summary h2,
body .project-case-gallery h2,
body .project-case-faq h2,
body .related-projects h2,
body .home-faq-copy h2,
body .home-expertise-head h2,
body .home-method-section .method-copy h2,
body .home-cta-copy h2,
body .stack-item h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

body h3,
body .case-preview-card h3,
body .web-feature-copy h3,
body .web-showcase-media h3,
body .web-video-stack h3,
body .focus-card h3,
body .timeline-item h3,
body .case-row h3,
body .design-principles h3,
body .project-card-body h3,
body .project-case-text h3,
body .related-card h3,
body .dev-post-info h3,
body .stack-item h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

body .projects-hero {
  background-position: center;
}

.swag-page {
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(192, 222, 34, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(250, 60, 123, 0.05), transparent 42%),
    linear-gradient(90deg, rgba(47, 47, 47, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 47, 47, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.swag-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(92px, 10vh, 130px) clamp(20px, 4vw, 58px) clamp(58px, 8vh, 96px);
  overflow: hidden;
}

.shapegrid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
  opacity: 0.86;
}

.swag-hero-copy,
.swag-hero-gallery {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.swag-hero .reveal {
  opacity: 1;
  --reveal-y: 0px;
}

.swag-hero h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.swag-hero .text-type__cursor {
  display: none;
}

.text-type {
  display: inline-block;
  white-space: pre-wrap;
}

.text-type__cursor {
  margin-left: 0.25rem;
  display: inline-block;
  opacity: 1;
  color: var(--accent-pink);
  animation: cursorBlink 0.9s steps(2, start) infinite;
}

.text-type__cursor--hidden {
  display: none;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

.swag-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 26px;
  color: var(--graphite);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.34;
}

.swag-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.circular-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.circular-gallery:active {
  cursor: grabbing;
}

.circular-gallery:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.circular-gallery-track {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
  min-width: max-content;
  padding: 8px 0;
}

.circular-gallery figure {
  position: relative;
  flex: 0 0 clamp(210px, 22vw, 340px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.14);
}

.swag-loop-gallery .circular-gallery-track {
  padding-bottom: 8px;
}

.swag-loop-gallery figure {
  flex-basis: clamp(210px, 21vw, 340px);
}

.circular-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  transition: transform 0.7s var(--ease);
}

.circular-gallery figure:hover img {
  transform: scale(1.06) rotate(0.6deg);
}

.circular-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.swag-principle {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.swag-principle-lead h2,
.swag-loop-copy h2,
.swag-method-copy h2 {
  max-width: 760px;
}

.swag-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.swag-principle-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.swag-principle-grid article:last-child {
  border-right: 0;
}

.swag-principle-grid span,
.swag-case-copy span,
.swag-method-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-pink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.swag-principle-grid h3 {
  margin-bottom: 16px;
}

.swag-principle-grid p,
.swag-case-copy p,
.swag-loop-copy p,
.swag-method-steps p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.42;
}

.swag-cases {
  display: grid;
  gap: clamp(54px, 8vw, 110px);
}

.swag-page .section-head h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
}

.swag-dome-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: 0;
  padding-top: clamp(82px, 10vw, 140px);
  padding-bottom: clamp(82px, 10vw, 140px);
  color: var(--milk);
  background:
    radial-gradient(circle at 70% 40%, rgba(192, 222, 34, 0.18), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(250, 60, 123, 0.2), transparent 25%),
    var(--dark);
  overflow: hidden;
}

.swag-dome-copy {
  position: relative;
  z-index: 2;
}

.swag-dome-copy .eyebrow,
.swag-arc-head .eyebrow {
  color: var(--accent-lime);
}

.swag-dome-copy h2,
.swag-arc-head h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
}

.swag-dome-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.38;
}

.dome-gallery {
  position: relative;
  min-height: auto;
  perspective: none;
  cursor: default;
  overflow: visible;
  touch-action: pan-y;
}

.dome-gallery:active {
  cursor: default;
}

.dome-gallery:focus-visible,
.arc-gallery:focus-visible {
  outline: 2px solid var(--accent-lime);
  outline-offset: 4px;
}

.dome-gallery::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.dome-gallery::before {
  inset: -8%;
  border: 1px solid rgba(250, 247, 240, 0.1);
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 247, 240, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
}

.dome-gallery-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}

.dome-gallery figure {
  position: relative;
  width: auto;
  min-height: clamp(150px, 10vw, 190px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.dome-gallery figure:hover {
  z-index: 3;
  transform: translateY(-8px) scale(1.025);
  filter: saturate(1.08);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.36);
}

.dome-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.dome-gallery figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.dome-gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--milk);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.swag-arc-section {
  color: var(--ink);
  background: var(--milk);
  overflow: hidden;
}

.swag-arc-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(26px, 4vw, 58px);
}

.swag-arc-head .eyebrow {
  color: var(--accent-pink);
}

.arc-gallery {
  position: relative;
  height: clamp(360px, 38vw, 520px);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  --arc-progress: 0px;
}

.arc-gallery:active {
  cursor: grabbing;
}

.arc-gallery-track {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  min-width: max-content;
  transform: translate(calc(-50% + var(--arc-progress)), -50%);
  will-change: transform;
}

.arc-gallery figure {
  position: relative;
  flex: 0 0 clamp(210px, 21vw, 330px);
  margin: 0;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.28s var(--ease), filter 0.28s var(--ease);
}

.arc-gallery figure:hover {
  z-index: 5;
  transform: translateY(-14px) scale(1.025);
}

.arc-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.16);
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.arc-gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.arc-gallery figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.swag-case {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.swag-case-reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
}

.swag-case-reverse .swag-case-copy {
  order: 2;
}

.swag-case-copy h3 {
  max-width: 620px;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.06;
}

.swag-case-copy p {
  max-width: 680px;
  margin-top: 22px;
}

.swag-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.swag-tags em {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--milk);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.swag-case-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.swag-case-reverse .swag-case-gallery {
  grid-template-columns: 0.82fr 1.08fr;
}

.swag-case-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.swag-case-gallery img:hover {
  transform: translateY(-8px) scale(1.02);
  filter: saturate(1.08);
}

.swag-case-gallery img:nth-child(2) {
  transform: translateY(clamp(18px, 4vw, 56px));
}

.swag-case-gallery img:nth-child(2):hover {
  transform: translateY(clamp(10px, 2vw, 34px)) scale(1.02);
}

.swag-loop-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: clamp(72px, 10vw, 140px);
  color: var(--milk);
  background: var(--dark);
}

.swag-kids-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(252, 207, 11, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(5, 179, 208, 0.12), transparent 38%),
    var(--milk);
  overflow: hidden;
}

.swag-kids-copy h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
}

.swag-kids-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.42;
}

.swag-kids-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(150px, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
  align-items: stretch;
}

.swag-kids-gallery figure {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.swag-kids-gallery .is-large {
  grid-row: span 2;
  min-height: 390px;
}

.swag-kids-gallery figure:nth-child(3) {
  transform: none;
}

.swag-kids-gallery figure:nth-child(4) {
  transform: none;
}

.swag-kids-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.swag-kids-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent-yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.swag-kids-gallery figure:hover {
  z-index: 2;
  transform: translateY(-8px) scale(1.018);
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.18);
}

.swag-kids-gallery figure:hover img {
  transform: scale(1.06) rotate(-0.5deg);
  filter: saturate(1.1);
}

.swag-loop-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.swag-loop-section .eyebrow {
  color: var(--accent-lime);
}

.swag-method {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 80px);
}

.swag-method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.swag-method-steps article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.swag-cta {
  background: var(--accent-lime);
}

.swag-cta .button-primary {
  background: var(--dark);
}

body .swag-hero h1 {
  font-size: clamp(38px, 4.2vw, 68px);
}

body .swag-principle-lead h2,
body .swag-loop-copy h2,
body .swag-method-copy h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: clamp(14px, 1.8vw, 26px);
  }

  .swag-hero,
  .swag-principle,
  .swag-dome-section,
  .swag-kids-section,
  .swag-loop-section,
  .swag-method {
    grid-template-columns: 1fr;
  }

  .swag-case,
  .swag-case-reverse {
    grid-template-columns: 1fr;
  }

  .swag-case-reverse .swag-case-copy {
    order: 0;
  }
}

@media (max-width: 760px) {
  .swag-hero {
    width: 100%;
    min-height: auto;
    padding: 96px 20px 54px;
    gap: 28px;
    overflow-x: hidden;
  }

  .swag-hero h1 {
    width: 100%;
    max-width: min(330px, calc(100vw - 40px));
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .swag-hero .text-type {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .swag-hero-copy > p:not(.eyebrow) {
    width: 100%;
    max-width: min(330px, calc(100vw - 40px));
    font-size: 16px;
    line-height: 1.36;
  }

  .swag-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 40px);
    gap: 10px;
  }

  .swag-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .swag-hero-gallery,
  .circular-gallery {
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .swag-principle-grid,
  .swag-method-steps {
    grid-template-columns: 1fr;
  }

  .swag-principle-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .swag-principle-grid article:last-child {
    border-bottom: 0;
  }

  .swag-case-gallery,
  .swag-case-reverse .swag-case-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .swag-case-gallery img:nth-child(2) {
    transform: translateY(24px);
  }

  .circular-gallery figure {
    flex-basis: min(74vw, 310px);
  }

  .swag-dome-section {
    min-height: 0;
  }

  .dome-gallery {
    overflow: hidden;
  }

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

  .dome-gallery figure:nth-child(1),
  .dome-gallery figure:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .dome-gallery figure:nth-child(n + 9) {
    display: none;
  }

  .swag-arc-head {
    display: block;
  }

  .arc-gallery {
    height: 390px;
  }

  .arc-gallery figure {
    flex-basis: min(70vw, 280px);
  }

  .swag-kids-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .swag-kids-gallery .is-large {
    grid-column: span 2;
    min-height: 330px;
  }

  .swag-kids-gallery figure:nth-child(3),
  .swag-kids-gallery figure:nth-child(4) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-light {
    display: none;
  }
}
