/* ============================================================
   FAMOUS PIGEON — design system
   Sky blue / white / black. Oversized editorial typography,
   mono registers, motion-led layouts.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/plex-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/plex-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --sky: #78CCF5;
  --pale: #DDF4FF;
  --white: #FFFFFF;
  --ink: #080808;
  --grey: #6E7378;
  --font-d: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-m: 'Plex Mono', 'SFMono-Regular', Menlo, monospace;
  --gutter: clamp(20px, 4vw, 64px);
  --head-h: 76px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overscroll-behavior-x: none; }
body {
  font-family: var(--font-d);
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--sky); color: var(--ink); }

h1, h2, h3 { font-weight: 800; line-height: 0.9; letter-spacing: -0.02em; }

.mono-label {
  font-family: var(--font-m);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
.page-title {
  font-stretch: 118%;
  font-weight: 830;
  font-size: clamp(44px, 7.2vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

/* reveal masks */
[data-reveal] { display: block; }
.js [data-reveal] { opacity: 0; transform: translateY(34px); }
.js .no-motion [data-reveal],
.no-motion [data-reveal] { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: transform .3s var(--ease-out), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--sky); color: var(--ink); border-color: var(--sky); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); }
.btn-sky { background: var(--sky); color: var(--ink); border-color: var(--sky); }
.btn-sky:hover { background: var(--white); border-color: var(--white); }
.btn-big { font-size: 18px; padding: 18px 38px; }

/* ---------- header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  mix-blend-mode: difference;
  color: var(--white);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word { font-weight: 830; font-stretch: 118%; letter-spacing: 0.02em; font-size: 15px; }
.head-nav { display: flex; gap: clamp(16px, 2.4vw, 38px); }
.head-nav a {
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.head-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: currentColor;
  transition: right .3s var(--ease-out);
}
.head-nav a:hover::after, .head-nav a[aria-current]::after { right: 0; }
.head-right { display: flex; align-items: center; gap: 16px; }
/* ghost pill: inverts cleanly under the header's difference blend */
.site-head .head-cta { border-color: var(--white); background: transparent; color: var(--white); }
.site-head .head-cta:hover { background: var(--white); color: var(--ink); }
.menu-btn {
  width: 44px; height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.menu-btn span { width: 26px; height: 2.5px; background: currentColor; transition: transform .35s var(--ease-out); }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4.75px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4.75px) rotate(-45deg); }

/* ---------- menu overlay ---------- */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--head-h) var(--gutter) 40px;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .6s var(--ease-out), visibility 0s .6s;
}
.menu.open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .6s var(--ease-out); }
.menu-links { display: flex; flex-direction: column; gap: 4px; }
.menu-links a {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 830;
  font-stretch: 118%;
  text-transform: uppercase;
  line-height: 1.06;
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: fit-content;
  transition: color .25s;
}
.menu-links a em { font-family: var(--font-m); font-style: normal; font-size: 14px; color: var(--sky); }
.menu-links a:hover { color: var(--sky); }
.menu-links .menu-start {
  font-size: 20px;
  margin-top: 34px;
  border: 1.5px solid var(--sky);
  color: var(--sky);
  border-radius: 999px;
  padding: 14px 30px;
  text-transform: none;
  font-stretch: 100%;
}
.menu-links .menu-start:hover { background: var(--sky); color: var(--ink); }
.menu-foot { position: absolute; bottom: 28px; left: var(--gutter); right: var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; color: var(--grey); }
.menu-foot-pigeon { width: 44px; height: 44px; }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader.done { display: none; }
.loader-stage { position: relative; width: min(640px, 86vw); height: 300px; }
.loader-feet { position: absolute; inset: 0; }
.loader-feet .fp-foot { position: absolute; width: 26px; height: 26px; opacity: 0; }
.loader-pigeon { position: absolute; left: 50%; top: 8px; width: 150px; transform: translateX(-50%); }
.loader-word { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; overflow: hidden; }
.loader-title {
  display: block;
  font-weight: 830;
  font-stretch: 118%;
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: 0.01em;
}
.loader-micro { display: block; margin-top: 10px; color: rgba(8, 8, 8, .66); }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--head-h) + 3vh) 0 0;
  position: relative;
  overflow: clip;
}
.hero-kicker { padding: 0 var(--gutter); color: var(--grey); margin-bottom: 4vh; }
.hero-title {
  font-size: clamp(64px, 16.4vw, 300px);
  font-stretch: 121%;
  font-weight: 850;
  line-height: 0.84;
  text-transform: uppercase;
  padding: 0 var(--gutter);
  user-select: none;
}
.hero-word { display: block; will-change: transform; }
.w-famous { color: var(--ink); }
.hero-line { display: block; position: relative; width: fit-content; }
.w-pigeon {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}
.hero-pigeon {
  position: absolute;
  right: -0.12em;
  top: 0;
  width: 0.62em;
  transform: translateY(-72%);
  pointer-events: none;
}
.hero-under {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 5vh var(--gutter) 4vh;
}
.hero-tag { font-size: clamp(19px, 2vw, 27px); font-weight: 700; letter-spacing: -0.01em; max-width: 560px; line-height: 1.25; }
.hero-support { margin-top: 10px; color: var(--grey); max-width: 480px; font-size: 16px; }
.hero-ctas { display: flex; gap: 14px; }
.hero-ticker {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 12px 0;
  background: var(--pale);
}
.ticker-track { display: flex; white-space: nowrap; width: max-content; }
.ticker-track span {
  font-family: var(--font-m);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------- manifesto ---------- */
.manifesto {
  padding: 18vh var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 6vh;
  background: var(--white);
}
.mani-line {
  font-size: clamp(30px, 5.4vw, 84px);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 15em;
}
.mani-line:nth-child(2) { align-self: flex-end; text-align: right; }
.mani-quiet { color: var(--grey); font-weight: 500; font-stretch: 84%; }
.mani-accent { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.mani-steal .mani-accent { position: relative; }
.mani-close { align-self: center; background: var(--ink); color: var(--white); padding: 0.35em 0.5em; }
.mani-walker { height: 90px; position: relative; }
.mani-walker .fp-pigeon { position: absolute; width: 110px; left: 0; top: 0; }

/* ---------- work ---------- */
.work { background: var(--white); }
.work-head {
  padding: 12vh var(--gutter) 8vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.work-note { color: var(--grey); }

/* scene */
.scene {
  position: relative;
  padding: 11vh var(--gutter) 12vh;
  background: var(--p-bg);
  color: var(--p-ink);
  overflow: clip;
}
.scene-ghost {
  position: absolute;
  top: 2vh;
  right: -1vw;
  font-weight: 850;
  font-stretch: 125%;
  font-size: clamp(180px, 34vw, 560px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--p-ink) 22%, transparent);
  pointer-events: none;
  user-select: none;
}
.scene-top {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 6vh;
  position: relative;
  z-index: 2;
}
.scene-num {
  font-family: var(--font-m);
  font-size: 15px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 8px 14px;
}
.scene-name {
  font-size: clamp(42px, 6.6vw, 108px);
  font-stretch: 116%;
  text-transform: uppercase;
  line-height: .9;
}
.scene-cat { margin-top: 12px; opacity: .62; }
.scene-city { margin-left: auto; text-align: right; }

.city-scene { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.city-skyline { width: clamp(150px, 16vw, 260px); height: 52px; color: currentColor; opacity: .8; }
.city-chip {
  border: 1.5px solid currentColor;
  padding: 7px 12px;
  border-radius: 4px;
  display: inline-block;
}

.scene-stage { position: relative; z-index: 2; display: grid; gap: 4vw; }
.scene-desc { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; max-width: 30em; opacity: .88; }
.scene-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.scene .btn { border-color: currentColor; color: inherit; background: transparent; }
.scene .btn:hover { background: var(--p-ink); color: var(--p-bg); border-color: var(--p-ink); }
.scene .btn-primary { background: var(--p-ink); color: var(--p-bg); border-color: var(--p-ink); }
.scene .btn-primary:hover { background: var(--p-accent); border-color: var(--p-accent); color: var(--p-ink); }
.scene[data-mode="dark"] .btn-primary:hover { color: var(--p-bg); }

/* layout A — mock left, copy right */
.scene--center .scene-stage { grid-template-columns: 1.35fr 1fr; align-items: center; }
.scene--center .scene-mocks { position: relative; }
.scene--center .mock-browser { width: 100%; }
.scene--center .mock-phone { position: absolute; width: clamp(120px, 12vw, 190px); right: -4%; bottom: -8%; }

/* layout B — horizontal track */
.scene--track .scene-stage { grid-template-columns: 1fr; }
.scene-trackrow {
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
  align-items: stretch;
  width: max-content;
  will-change: transform;
}
.scene-trackrow .mock-browser { width: clamp(420px, 44vw, 720px); flex: none; }
.scene-trackrow .mock-phone { width: clamp(130px, 13vw, 200px); flex: none; align-self: center; }
.track-type {
  flex: none;
  align-self: center;
  font-weight: 850;
  font-stretch: 122%;
  text-transform: uppercase;
  font-size: clamp(60px, 8vw, 130px);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
  white-space: nowrap;
  padding: 0 .2em;
}
.track-swatch { flex: none; width: clamp(90px, 9vw, 150px); border-radius: 10px; border: 1.5px solid color-mix(in srgb, currentColor 30%, transparent); display:flex; align-items:flex-end; padding: 12px; }
.track-swatch .mono-label { opacity: .8; font-size: 10px; }
.scene--track .scene-under { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-top: 5vh; }

/* layout C — copy left, stack right */
.scene--split .scene-stage { grid-template-columns: 1fr 1.25fr; align-items: center; }
.scene--split .scene-mocks { position: relative; }
.scene--split .mock-browser { width: 94%; margin-left: auto; }
.scene--split .mock-phone { position: absolute; width: clamp(120px, 11vw, 180px); left: -2%; bottom: -10%; }

/* pigeon cameo in scenes */
.scene-cameo { position: absolute; z-index: 3; width: clamp(90px, 9vw, 150px); pointer-events: none; }
.scene--peek .scene-cameo { right: 6%; bottom: 100%; }
.scene-cameo-wrap { position: absolute; inset: auto 0 0 0; }

/* ---------- metro divider ---------- */
.metro {
  background: var(--ink);
  color: var(--white);
  padding: 46px var(--gutter);
  position: relative;
  overflow: hidden;
}
.metro-line { position: relative; height: 2px; background: color-mix(in srgb, var(--white) 30%, transparent); }
.metro-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sky);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--sky) 25%, transparent);
}
.metro-stations { display: flex; justify-content: space-between; margin-top: 18px; }
.metro-station { font-family: var(--font-m); font-size: 11px; letter-spacing: .18em; color: color-mix(in srgb, var(--white) 55%, transparent); position: relative; }
.metro-station::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
}
.metro-station.active { color: var(--sky); }

/* ---------- interludes (services woven into work) ---------- */
.interlude {
  background: var(--pale);
  padding: 13vh var(--gutter);
  position: relative;
  overflow: clip;
}
.interlude[data-tone="dark"] { background: var(--ink); color: var(--white); }
.interlude-kicker { color: inherit; opacity: .55; }
.interlude-title {
  font-size: clamp(52px, 9.5vw, 160px);
  font-stretch: 122%;
  text-transform: uppercase;
  line-height: .9;
  margin: 18px 0 10px;
}
.interlude-note { font-size: clamp(17px, 1.6vw, 23px); opacity: .72; max-width: 30em; }
.interlude-thumbs {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  margin-top: 6vh;
  align-items: flex-end;
}
.interlude-thumb { flex: 1 1 0; min-width: 0; transition: transform .45s var(--ease-out); }
.interlude-thumb:hover { transform: translateY(-10px) rotate(-1.2deg); }
.interlude-thumb .mock-browser { width: 100%; }
.interlude-thumb .thumb-label { margin-top: 12px; opacity: .6; }
.interlude-motion-demo { display: flex; gap: 26px; align-items: center; margin-top: 6vh; flex-wrap: wrap; }
.motion-chip {
  border: 1.5px solid currentColor;
  border-radius: 14px;
  padding: 22px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.motion-chip .fp-pigeon { width: 92px; }
.motion-chip .fp-foot { width: 26px; height: 26px; }
.motion-bar { height: 5px; width: 100%; background: color-mix(in srgb, currentColor 18%, transparent); border-radius: 3px; overflow: hidden; }
.motion-bar i { display: block; height: 100%; width: 40%; background: var(--sky); border-radius: 3px; }

/* ---------- services index ---------- */
.services { background: var(--ink); color: var(--white); padding: 15vh 0 12vh; }
.services-head { padding: 0 var(--gutter) 7vh; }
.services-head .mono-label { color: var(--sky); }
.services-sub { margin-top: 22px; color: color-mix(in srgb, var(--white) 60%, transparent); font-size: clamp(16px, 1.5vw, 21px); }
.services-list { list-style: none; }
.service-row {
  border-top: 1px solid color-mix(in srgb, var(--white) 18%, transparent);
  position: relative;
  overflow: hidden;
}
.service-row:last-child { border-bottom: 1px solid color-mix(in srgb, var(--white) 18%, transparent); }
.service-row a {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 3vh var(--gutter);
  font-size: clamp(30px, 5vw, 74px);
  font-weight: 820;
  font-stretch: 116%;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--white) 65%, transparent);
  transition: color .35s var(--ease-out), -webkit-text-stroke-color .35s, padding-left .35s var(--ease-out);
}
.service-row em { font-family: var(--font-m); font-style: normal; font-size: 13px; -webkit-text-stroke: 0; color: var(--sky); }
.service-row a:hover { color: var(--sky); -webkit-text-stroke-color: transparent; padding-left: calc(var(--gutter) + 1.2vw); }

/* ---------- stages ---------- */
.stages { background: var(--sky); position: relative; }
.stages-pin {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: clip;
}
.stage-phrase {
  position: absolute;
  font-size: clamp(44px, 8.6vw, 150px);
  font-weight: 850;
  font-stretch: 118%;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  opacity: 0;
}
.stage-famous { color: var(--white); -webkit-text-stroke: 2.5px var(--ink); }
.stage-visual { position: absolute; bottom: 12vh; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.stage-tick { width: 42px; height: 5px; background: color-mix(in srgb, var(--ink) 25%, transparent); border-radius: 3px; transition: background .3s; }
.stage-tick.on { background: var(--ink); }
.stage-walker { position: absolute; left: 0; bottom: 18vh; width: 130px; }

/* ---------- studio note (home) ---------- */
.studio-note {
  background: var(--white);
  padding: 18vh var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6vw;
  align-items: center;
}
.studio-headline {
  font-size: clamp(38px, 5.6vw, 92px);
  font-stretch: 114%;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.studio-accent { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.studio-copy p { font-size: clamp(16px, 1.45vw, 21px); color: #333; margin-bottom: 20px; max-width: 34em; }
.studio-copy .btn { margin-top: 8px; }

/* ---------- process ---------- */
.process { background: var(--pale); padding: 14vh 0 0; overflow: clip; }
.process-head { padding: 0 var(--gutter) 7vh; }
.process-track-wrap { position: relative; }
.process-track {
  display: flex;
  gap: clamp(18px, 2.5vw, 40px);
  padding: 0 var(--gutter) 12vh;
  width: max-content;
  will-change: transform;
}
.step {
  width: clamp(280px, 30vw, 460px);
  border: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 44px);
  min-height: clamp(300px, 36vh, 420px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.step-num { font-family: var(--font-m); font-size: 14px; letter-spacing: .16em; color: var(--grey); }
.step h3 { font-size: clamp(30px, 3.4vw, 54px); font-stretch: 114%; text-transform: uppercase; margin: auto 0 18px; }
.step p { color: #333; font-size: 16px; max-width: 26em; }
.step-last { background: var(--ink); color: var(--white); border-color: var(--ink); }
.step-last p { color: color-mix(in srgb, var(--white) 75%, transparent); }
.step-pigeon { position: absolute; right: 20px; top: 18px; width: 84px; }

/* ---------- finale ---------- */
.finale {
  background: var(--ink);
  color: var(--white);
  padding: 16vh var(--gutter) 14vh;
  text-align: center;
  position: relative;
  overflow: clip;
}
.finale-carpet { position: relative; height: clamp(190px, 30vh, 300px); margin-bottom: 6vh; }
.carpet {
  position: absolute;
  left: 50%; bottom: 0;
  width: min(520px, 74vw); height: 100%;
  transform: translateX(-50%);
  background: var(--sky);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0% 100%);
}
.spot {
  position: absolute;
  bottom: 0;
  width: 300px; height: 120%;
  background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--white) 14%, transparent) 100%);
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.spot-a { left: 8%; transform: rotate(14deg); }
.spot-b { right: 8%; transform: rotate(-14deg); }
.finale-flash { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--white); opacity: 0; }
.f1 { left: 16%; top: 26%; } .f2 { right: 14%; top: 38%; } .f3 { left: 30%; top: 60%; }
.finale-pigeon { position: absolute; left: 50%; bottom: 6px; width: clamp(120px, 14vw, 190px); transform: translateX(-54%); }
.finale-title { font-size: clamp(42px, 7.4vw, 128px); font-stretch: 118%; line-height: .94; letter-spacing: -0.02em; }
.finale-accent { color: var(--sky); }
.finale-sub { margin: 4vh auto; max-width: 34em; color: color-mix(in srgb, var(--white) 66%, transparent); font-size: clamp(16px, 1.5vw, 21px); }
.finale .btn-sky { border-color: var(--sky); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--white); padding: 10vh var(--gutter) 30px; border-top: 1px solid #1c1c1c; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 9vh; }
.foot-mark { width: 54px; height: 54px; display: block; margin-bottom: 18px; }
.foot-name { font-weight: 830; font-stretch: 120%; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: .01em; }
.foot-tag { color: color-mix(in srgb, var(--white) 60%, transparent); margin-top: 10px; max-width: 30em; }
.foot-links { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 12px 44px; align-content: start; }
.foot-links a { font-weight: 600; font-size: 16px; opacity: .85; transition: opacity .25s, color .25s; }
.foot-links a:hover { opacity: 1; color: var(--sky); }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid #1c1c1c; padding-top: 24px;
  color: color-mix(in srgb, var(--white) 45%, transparent);
}

/* ---------- cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (hover: none) { .cursor-dot { display: none; } }

/* ---------- mockups ---------- */
.mock-browser {
  background: var(--m-bg);
  color: var(--m-ink);
  border-radius: 14px;
  border: 1.5px solid color-mix(in srgb, var(--m-ink) 85%, transparent);
  box-shadow: 0 30px 60px -30px rgba(8, 8, 8, .35);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  display: flex;
  flex-direction: column;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--m-ink) 18%, transparent);
  background: color-mix(in srgb, var(--m-ink) 5%, var(--m-bg));
  flex: none;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: color-mix(in srgb, var(--m-ink) 30%, transparent); }
.mock-url {
  font-family: var(--font-m);
  font-size: 10.5px;
  letter-spacing: .06em;
  border: 1px solid color-mix(in srgb, var(--m-ink) 22%, transparent);
  border-radius: 999px;
  padding: 3px 12px;
  opacity: .75;
}
.mock-body { flex: 1; min-height: 0; padding: 5%; position: relative; overflow: hidden; }

.mock-phone {
  background: var(--m-bg);
  color: var(--m-ink);
  border-radius: 26px;
  border: 2px solid var(--m-ink);
  box-shadow: 0 24px 44px -22px rgba(8, 8, 8, .4);
  aspect-ratio: 9 / 18.5;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mock-phone .mock-body { padding: 16% 9% 12%; }
.mock-notch { flex: none; width: 38%; height: 12px; background: var(--m-ink); border-radius: 0 0 10px 10px; margin: 0 auto; }
.mock-home { flex: none; width: 34%; height: 4px; border-radius: 3px; background: color-mix(in srgb, var(--m-ink) 35%, transparent); margin: 0 auto 8px; }

/* mock abstract UI atoms */
.mb { height: 100%; display: flex; flex-direction: column; gap: 8%; }
.mb-topline, .mb-masthead { display: flex; align-items: center; gap: 10px; flex: none; }
.mb-word { font-weight: 830; font-stretch: 116%; font-size: clamp(11px, 1.1vw, 16px); letter-spacing: .02em; text-transform: uppercase; }
.mb-masthead .mb-word { font-size: clamp(14px, 1.5vw, 22px); }
.mb-stamp { margin-left: auto; font-family: var(--font-m); font-size: 9px; letter-spacing: .2em; border: 1px solid currentColor; padding: 2px 7px; border-radius: 3px; opacity: .7; }
.mb-dot-nav { margin-left: auto; display: flex; gap: 4px; }
.mb-dot-nav i { width: 5px; height: 5px; background: currentColor; border-radius: 50%; opacity: .6; }
.mb-tag { font-family: var(--font-m); font-size: 8.5px; letter-spacing: .16em; opacity: .65; }
.mb-tag.accent, .mb-pill.accent { color: var(--m-accent); opacity: 1; }
.mb-rule { display: block; height: 5px; border-radius: 3px; background: color-mix(in srgb, currentColor 22%, transparent); width: 100%; }
.mb-rule.w30 { width: 30%; } .mb-rule.w40 { width: 40%; } .mb-rule.w50 { width: 50%; }
.mb-rule.w60 { width: 60%; } .mb-rule.w70 { width: 70%; } .mb-rule.w80 { width: 80%; } .mb-rule.w90 { width: 90%; }
.mb-head-bar { display: block; height: 14px; background: currentColor; opacity: .9; border-radius: 2px; }
.mb-head-bar.w70 { width: 70%; } .mb-head-bar.w90 { width: 90%; }
.mb-chip { display: block; width: 26%; height: 9px; border-radius: 999px; background: var(--m-accent); }
.mb-pill { display: inline-block; width: 54px; height: 14px; border-radius: 999px; border: 1.2px solid currentColor; opacity: .7; }
.mb-pill.accent { background: var(--m-accent); border-color: var(--m-accent); }
.mb-baseline { margin-top: auto; display: flex; gap: 14px; align-items: center; flex: none; }

.mb-deck { flex: 1; position: relative; min-height: 0; }
.mb-card {
  position: absolute;
  width: 46%; height: 74%;
  background: color-mix(in srgb, var(--m-ink) 4%, #fff);
  border: 1.2px solid color-mix(in srgb, var(--m-ink) 30%, transparent);
  border-radius: 8px;
  padding: 6% 5%;
  display: flex; flex-direction: column; gap: 9px;
  box-shadow: 0 10px 22px -12px rgba(8,8,8,.3);
}
.mb-card.c1 { left: 6%; top: 12%; transform: rotate(-7deg); }
.mb-card.c2 { left: 29%; top: 4%; transform: rotate(-1deg); }
.mb-card.c3 { left: 53%; top: 10%; transform: rotate(6deg); }

.mb-cols { flex: 1; display: flex; gap: 5%; min-height: 0; }
.mb-col { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.mb-col.slim { flex: .7; }
.mb-block { width: 100%; flex: 1; min-height: 24px; background: color-mix(in srgb, currentColor 14%, transparent); border-radius: 4px; }
.mb-index-row { display: block; height: 9px; border-bottom: 1px solid color-mix(in srgb, currentColor 30%, transparent); }
.mb-index-row.accent { border-color: var(--m-accent); }
.mb-ticker { flex: none; overflow: hidden; border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); padding-top: 6px; }
.mb-ticker span { display: inline-block; white-space: nowrap; font-family: var(--font-m); font-size: 8.5px; letter-spacing: .3em; color: var(--m-accent); animation: mbticker 9s linear infinite; }
@keyframes mbticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.mb-grid2 { flex: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 5%; min-height: 0; }
.mb-panel { border: 1px solid color-mix(in srgb, currentColor 25%, transparent); border-radius: 6px; padding: 6%; display: flex; flex-direction: column; gap: 10px; }
.mb-chart { width: 100%; flex: 1; min-height: 30px; }
.mb-panel.rows { justify-content: center; }
.mb-num-row { display: block; height: 7px; background: color-mix(in srgb, currentColor 20%, transparent); border-radius: 2px; }
.mb-num-row.accent { background: var(--m-accent); }

.mb-cardrow { flex: 1; display: flex; gap: 5%; align-items: center; min-height: 0; }
.mb-profile {
  flex: 1; height: 86%;
  border: 1.2px solid color-mix(in srgb, currentColor 25%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 55%, transparent);
  padding: 7% 6%;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.mb-profile.lift { height: 100%; box-shadow: 0 14px 26px -14px rgba(8,8,8,.3); }
.mb-ava { width: 32%; aspect-ratio: 1; border-radius: 50%; background: color-mix(in srgb, currentColor 22%, transparent); margin-bottom: 4px; }
.mb-ava.accent { background: var(--m-accent); }

.mb-table { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.mb-trow { display: flex; align-items: center; gap: 12px; padding: 7px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 25%, transparent); }
.mb-trow i.n { font-family: var(--font-m); font-style: normal; font-size: 9px; letter-spacing: .1em; opacity: .7; width: 22px; }
.mb-trow b { display: block; height: 8px; background: color-mix(in srgb, currentColor 55%, transparent); border-radius: 2px; }
.mb-trow b.w35 { width: 35%; } .mb-trow b.w40 { width: 40%; } .mb-trow b.w50 { width: 50%; } .mb-trow b.w55 { width: 55%; }
.mb-trow em { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: color-mix(in srgb, currentColor 40%, transparent); }
.mb-trow.accent b, .mb-trow.accent em { background: var(--m-accent); }

.mb-split { flex: 1; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6%; min-height: 0; }
.mb-portrait { border-radius: 8px; background: color-mix(in srgb, currentColor 12%, transparent); position: relative; overflow: hidden; }
.mb-silhouette {
  position: absolute; left: 50%; bottom: 0;
  width: 70%; aspect-ratio: 1 / 1.35;
  transform: translateX(-50%);
  background: currentColor;
  border-radius: 46% 46% 0 0 / 60% 60% 0 0;
  opacity: .82;
}
.mb-silhouette::before {
  content: '';
  position: absolute; top: -34%; left: 50%;
  width: 58%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: inherit;
  border-radius: 50%;
}
.mb-statements { display: flex; flex-direction: column; gap: 10px; justify-content: center; }

/* ---------- work page: hall ---------- */
.hall-head { padding: calc(var(--head-h) + 8vh) var(--gutter) 5vh; }
.page-title { margin: 14px 0 26px; }
.hall-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.hall-filter {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background .25s, color .25s, transform .25s var(--ease-out);
}
.hall-filter:hover { transform: translateY(-2px); }
.hall-filter.active { background: var(--ink); color: var(--white); }

.hall { display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: 4vw; padding: 4vh var(--gutter) 10vh; align-items: start; }
.hall-index { position: sticky; top: calc(var(--head-h) + 3vh); display: flex; flex-direction: column; }
.hall-index-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  color: color-mix(in srgb, var(--ink) 42%, transparent);
  transition: color .3s, padding-left .3s var(--ease-out);
  text-align: left;
  width: 100%;
}
.hall-index-item em { font-family: var(--font-m); font-style: normal; font-size: 11px; letter-spacing: .12em; }
.hall-index-item strong { font-weight: 800; font-stretch: 112%; font-size: clamp(19px, 1.8vw, 27px); text-transform: uppercase; line-height: 1; }
.hall-index-item span { margin-left: auto; font-family: var(--font-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.hall-index-item:hover, .hall-index-item.active { color: var(--ink); padding-left: 8px; }

.hall-entry { margin-bottom: 9vh; scroll-margin-top: calc(var(--head-h) + 2vh); }
.hall-entry .mock-browser { width: 100%; }
.hall-entry-frame {
  position: relative;
  padding: clamp(18px, 3vw, 46px);
  border-radius: 20px;
  background: var(--p-bg);
  color: var(--p-ink);
  overflow: hidden;
}
.hall-entry-num {
  position: absolute;
  top: 6px; right: 14px;
  font-weight: 850; font-stretch: 125%;
  font-size: clamp(70px, 9vw, 150px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px color-mix(in srgb, var(--p-ink) 28%, transparent);
}
.hall-entry-meta { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin: 26px 0 10px; }
.hall-entry-meta h2 { font-size: clamp(30px, 3.4vw, 54px); font-stretch: 114%; text-transform: uppercase; }
.hall-entry-meta .mono-label { opacity: .6; }
.hall-entry-desc { color: #333; max-width: 42em; margin-bottom: 8px; }
.hall-entry-services { font-family: var(--font-m); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); margin-bottom: 20px; }
.hall-entry-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hall-outro { text-align: center; padding: 10vh var(--gutter) 16vh; position: relative; }
.hall-outro .finale-title { color: var(--ink); margin-bottom: 5vh; }
.hall-outro .finale-accent { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hall-outro-pigeon { width: 130px; margin: 0 auto 3vh; }

/* ---------- case page ---------- */
.case-hero {
  padding: calc(var(--head-h) + 9vh) var(--gutter) 9vh;
  background: var(--p-bg);
  color: var(--p-ink);
  position: relative;
  overflow: clip;
}
.case-kicker { display: flex; gap: 20px; align-items: center; opacity: .65; }
.case-title {
  font-size: clamp(52px, 11vw, 200px);
  font-stretch: 118%;
  text-transform: uppercase;
  line-height: .88;
  margin: 4vh 0;
  overflow-wrap: anywhere;
}
.case-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; border-top: 1.5px solid color-mix(in srgb, var(--p-ink) 30%, transparent); padding-top: 30px; max-width: 1100px; }
.case-meta .mono-label { opacity: .55; display: block; margin-bottom: 8px; }
.case-meta p { font-weight: 600; font-size: 15.5px; }
.case-meta a { text-decoration: underline; text-underline-offset: 3px; }
.case-context { font-size: clamp(20px, 2.3vw, 34px); font-weight: 650; line-height: 1.3; letter-spacing: -0.01em; max-width: 26em; margin-top: 8vh; }

.case-section { padding: 11vh var(--gutter); }
.case-section .mono-label { color: var(--grey); display: block; margin-bottom: 22px; }
.case-section-grid { display: grid; grid-template-columns: minmax(260px, 1fr) 1.6fr; gap: 5vw; align-items: start; }
.case-section h2 { font-size: clamp(30px, 3.6vw, 58px); font-stretch: 114%; text-transform: uppercase; margin-bottom: 20px; }
.case-section .case-text p { font-size: clamp(16px, 1.4vw, 20px); color: #2c2c2c; max-width: 36em; }
.case-section--tinted { background: var(--p-bg); color: var(--p-ink); }
.case-section--tinted .case-text p { color: inherit; opacity: .85; }
.case-section--tinted .mono-label { color: inherit; opacity: .55; }
.case-desktop .mock-browser { width: min(1080px, 100%); margin: 0 auto; }
.case-mobile-row { display: flex; gap: clamp(16px, 3vw, 44px); justify-content: center; align-items: flex-end; flex-wrap: wrap; }
.case-mobile-row .mock-phone { width: clamp(150px, 17vw, 230px); }
.case-mobile-row .mock-phone:nth-child(2) { margin-bottom: 34px; }

.case-type-specimen {
  background: var(--p-bg);
  color: var(--p-ink);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-type-specimen .spec-aa { font-size: clamp(90px, 13vw, 220px); font-stretch: 120%; font-weight: 850; line-height: .9; }
.case-type-specimen .spec-name { font-size: clamp(24px, 3vw, 44px); font-weight: 800; font-stretch: 112%; text-transform: uppercase; }
.case-type-specimen .spec-mono { font-family: var(--font-m); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }

.case-palette { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.case-swatch { border-radius: 12px; aspect-ratio: 1.6; border: 1.5px solid color-mix(in srgb, var(--ink) 16%, transparent); padding: 14px; display: flex; flex-direction: column; justify-content: flex-end; }
.case-swatch .mono-label { margin: 0 0 4px; }
.case-swatch .hex { font-family: var(--font-m); font-size: 11px; opacity: .7; }

.case-motion-row { display: flex; gap: 16px; flex-wrap: wrap; }
.case-motion-tag { border: 1.5px solid var(--ink); border-radius: 999px; padding: 10px 20px; font-weight: 650; font-size: 14.5px; }
.case-details-list { list-style: none; columns: 2; gap: 4vw; max-width: 900px; }
.case-details-list li {
  break-inside: avoid;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  font-weight: 650;
  font-size: clamp(16px, 1.5vw, 21px);
  display: flex; gap: 14px; align-items: baseline;
}
.case-details-list li em { font-family: var(--font-m); font-style: normal; font-size: 11px; color: var(--grey); }

.case-visit { text-align: center; padding: 13vh var(--gutter); background: var(--p-bg); color: var(--p-ink); }
.case-visit .btn { border-color: currentColor; color: inherit; }
.case-visit .btn:hover { background: var(--p-ink); color: var(--p-bg); }
.case-visit h2 { font-size: clamp(30px, 4.5vw, 72px); font-stretch: 116%; text-transform: uppercase; margin-bottom: 4vh; }
.case-next { display: flex; justify-content: space-between; gap: 16px; padding: 6vh var(--gutter); border-top: 1.5px solid var(--ink); background: var(--white); flex-wrap: wrap; }
.case-next a { font-weight: 800; font-stretch: 114%; font-size: clamp(19px, 2.2vw, 32px); text-transform: uppercase; display: flex; gap: 14px; align-items: baseline; }
.case-next a em { font-family: var(--font-m); font-style: normal; font-size: 11px; letter-spacing: .14em; color: var(--grey); }
.case-next a:hover { color: color-mix(in srgb, var(--ink) 60%, var(--sky)); }

/* ---------- studio page ---------- */
.studio-hero { padding: calc(var(--head-h) + 9vh) var(--gutter) 6vh; position: relative; overflow: clip; min-height: 62svh; }
.studio-hero-pigeon { position: absolute; right: 6vw; bottom: 4vh; width: clamp(150px, 19vw, 300px); }
.studio-trail { position: absolute; inset: 0; pointer-events: none; }
.studio-trail .fp-foot { position: absolute; width: 22px; height: 22px; opacity: .25; }
.studio-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6vw; padding: 8vh var(--gutter); }
.studio-body .lede { font-size: clamp(22px, 2.6vw, 40px); font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; margin-bottom: 4vh; }
.studio-body p { font-size: clamp(16px, 1.4vw, 20px); color: #2e2e2e; margin-bottom: 18px; max-width: 34em; }
.studio-kicker { font-weight: 800; font-stretch: 112%; font-size: clamp(19px, 1.8vw, 26px) !important; color: var(--ink) !important; }
.studio-facts { display: flex; flex-direction: column; gap: 26px; }
.fact { border-top: 1.5px solid var(--ink); padding-top: 16px; }
.fact .mono-label { color: var(--grey); display: block; margin-bottom: 8px; }
.fact p { font-weight: 650; font-size: 16.5px; }
.studio-motto { background: var(--sky); padding: 15vh var(--gutter); }
.studio-motto-line { font-size: clamp(38px, 6.4vw, 108px); font-stretch: 118%; line-height: .96; text-transform: uppercase; }
.studio-services { padding: 13vh var(--gutter) 16vh; }
.studio-service-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 4vh 0 7vh; }
.studio-service-grid li {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 22px;
  font-weight: 750;
  font-size: clamp(16px, 1.5vw, 22px);
  display: flex;
  align-items: flex-end;
  min-height: 120px;
  transition: background .3s, color .3s, transform .3s var(--ease-out);
}
.studio-service-grid li:hover { background: var(--ink); color: var(--white); transform: translateY(-4px); }

/* ---------- contact page ---------- */
.contact-hero { padding: calc(var(--head-h) + 9vh) var(--gutter) 4vh; position: relative; overflow: clip; }
.contact-pigeon { position: absolute; right: 7vw; bottom: -10px; width: clamp(120px, 15vw, 220px); }
.contact-wrap { padding: 5vh var(--gutter) 15vh; max-width: 1100px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-family: var(--font-m); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 17px;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  background: transparent;
  padding: 10px 2px;
  border-radius: 0;
  color: var(--ink);
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; border: 1.5px solid var(--ink); border-radius: 12px; padding: 14px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); background: color-mix(in srgb, var(--pale) 45%, transparent); }
.field input.error, .field textarea.error { border-color: #E0341B; }
.contact-submit-row { flex-direction: row; align-items: center; gap: 26px; flex-wrap: wrap; }
.contact-alt a { text-decoration: underline; text-underline-offset: 3px; }
.contact-confirm { text-align: center; padding: 8vh 0; }
.contact-confirm h2 { font-size: clamp(36px, 5.5vw, 84px); font-stretch: 116%; text-transform: uppercase; margin: 3vh 0 14px; }
.contact-confirm p { color: var(--grey); font-size: clamp(16px, 1.6vw, 22px); margin-bottom: 5vh; }
.confirm-pigeon { width: 150px; margin: 0 auto; }

/* reduced-motion / no-JS fallback: tracks scroll natively */
.no-motion .scene-trackrow,
html:not(.js) .scene-trackrow {
  width: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.no-motion .process-track,
html:not(.js) .process-track {
  width: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.no-motion .process-track .step,
html:not(.js) .process-track .step { flex: none; }

/* ---------- noscript ---------- */
.noscript-list { padding: 6vh var(--gutter); font-family: var(--font-m); font-size: 14px; line-height: 2; list-style: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .studio-note { grid-template-columns: 1fr; gap: 6vh; }
  .case-section-grid { grid-template-columns: 1fr; gap: 4vh; }
  .hall { grid-template-columns: 1fr; }
  .hall-index { display: none; }
}
@media (max-width: 820px) {
  :root { --head-h: 64px; }
  .head-nav, .site-head .head-cta { display: none; }
  .menu-btn { display: flex; }
  .brand-word { display: none; }
  .hero-title { font-size: clamp(64px, 19.5vw, 160px); }
  .hero-pigeon { width: .58em; }
  .scene--center .scene-stage,
  .scene--split .scene-stage { grid-template-columns: 1fr; }
  .scene--center .mock-phone { right: 2%; bottom: -6%; width: 110px; }
  .scene--split .mock-phone { left: 2%; }
  .scene--split .mock-browser { width: 100%; }
  .scene-city { margin-left: 0; text-align: left; }
  .city-scene { align-items: flex-start; }
  .scene-trackrow { width: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .scene-trackrow > * { scroll-snap-align: start; }
  .scene-trackrow .mock-browser { width: 82vw; }
  .interlude-thumbs { flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .interlude-thumb { flex: 0 0 72vw; scroll-snap-align: start; }
  .process-track { width: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .step { width: 80vw; scroll-snap-align: start; flex: none; }
  .studio-body { grid-template-columns: 1fr; }
  .studio-service-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .case-details-list { columns: 1; }
  .foot-links { grid-template-columns: 1fr 1fr; }
  .stage-walker { bottom: 12vh; width: 90px; }
  .finale-pigeon { width: 110px; }
  .studio-hero-pigeon { position: static; margin-top: 4vh; }
  .contact-pigeon { display: none; }
}
@media (max-width: 480px) {
  .studio-service-grid { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .loader { display: none; }
  .cursor-dot { display: none; }
}
