/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: "Abril Fatface";
  src: url("../assets/fonts/abril-fatface-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("../assets/fonts/fragment-mono-400-normal-1.woff2") format("woff2"),
       url("../assets/fonts/fragment-mono-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-900-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Display";
  src: url("../assets/fonts/inter-display-600-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-display-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("../assets/fonts/inter-display-700-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-display-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("../assets/fonts/inter-display-900-normal-1.woff2") format("woff2"),
       url("../assets/fonts/inter-display-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Tokens & reset
   ========================================================================== */

:root {
  /* palette */
  --c-paper: #EAEEF4;
  --c-ink:   #0A0A0A;
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-red:   #E52521;
  --c-red-deep: #C8191E;
  --c-muted: #8A8A8A;
  --c-muted-dim: #B5B5B5;
  --c-hairline: rgba(255, 255, 255, 0.08);
  --c-hairline-ink: rgba(0, 0, 0, 0.08);
  --c-paper-alt: #DCE1EA;

  /* type families */
  --f-display: "Abril Fatface", "Times New Roman", serif;
  --f-sans: "Inter", system-ui, -apple-system, sans-serif;
  --f-display-sans: "Inter Display", "Inter", system-ui, sans-serif;
  --f-mono: "Fragment Mono", ui-monospace, monospace;

  /* type scale */
  --ty-wordmark:   clamp(88px, 18vw, 270px);
  --ty-display-lg: clamp(56px, 10vw, 140px);
  --ty-display-md: clamp(48px, 7vw, 100px);
  --ty-h1:         clamp(44px, 8vw, 112px);
  --ty-h2:         clamp(28px, 4.2vw, 54px);
  --ty-lead:       clamp(18px, 2.2vw, 28px);
  --ty-body:       13px;
  --ty-label:      11px;

  /* spacing scale */
  --sp-x:             clamp(20px, 4vw, 80px);
  --sp-block:         clamp(24px, 3vw, 48px);
  --sp-section-tight: clamp(48px, 7vw, 100px);
  --sp-section:       clamp(80px, 11vw, 160px);

  /* layout */
  --container-max: 1440px;
  --header-h: 60px;

  /* motion */
  --dur-fast: 200ms;
  --dur-base: 320ms;
  --dur-slow: 820ms;
  --e-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --e-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
section[id] { scroll-margin-top: var(--header-h); }

body {
  font-family: var(--f-sans);
  background-color: var(--c-paper);
  color: var(--c-ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

main { display: block; }

/* ==========================================================================
   Loader
   ========================================================================== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 36px);
  background: var(--c-black);
  transition: opacity 520ms var(--e-out);
}
.loader[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.loader__mark {
  width: clamp(260px, 46vw, 560px);
  height: auto;
  overflow: visible;
  opacity: 0;
  transition: opacity 200ms var(--e-out);
}
.loader[data-ready="true"] .loader__mark { opacity: 1; }

.loader__text {
  font-family: var(--f-display);
  font-size: 180px;
  letter-spacing: -0.02em;
  fill: transparent;
  stroke: var(--c-red);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  vector-effect: non-scaling-stroke;
}
.loader[data-ready="true"] .loader__text {
  animation: loader-draw 1600ms var(--e-in-out) forwards;
}
@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .loader[data-ready="true"] .loader__text {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
   Site header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 40px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    transform var(--dur-base) var(--e-out),
    background-color var(--dur-base) var(--e-out),
    border-color var(--dur-base) var(--e-out);
  will-change: transform;
}
.site-header[data-hidden="true"] { transform: translateY(-100%); }
.site-header[data-solid="true"] {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: var(--c-hairline);
}

.site-header__logo {
  font-family: var(--f-display-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--c-red);
  transition: opacity var(--dur-fast) var(--e-out);
}
.site-header__logo:hover,
.site-header__logo:focus-visible { opacity: 0.75; }
.site-header__logo:active { opacity: 0.55; }

.site-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
}
.site-nav__link {
  position: relative;
  font-family: var(--f-display-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-red);
  padding: 8px 2px;
  transition: opacity var(--dur-fast) var(--e-out);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--e-out);
}
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform-origin: left;
  transform: scaleX(1);
}
.site-nav__link:active { opacity: 0.7; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-black);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 22vw, 340px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  z-index: 1;
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  opacity: 0;
  animation: portrait-snap 6s steps(1, end) infinite;
}
.hero__photo img:nth-child(1) { animation-delay:  0s;   }
.hero__photo img:nth-child(2) { animation-delay:  1.5s; }
.hero__photo img:nth-child(3) { animation-delay:  3s;   }
.hero__photo img:nth-child(4) { animation-delay:  4.5s; }

@keyframes portrait-snap {
  0%     { opacity: 1; }
  25%    { opacity: 1; }
  25.01% { opacity: 0; }
  100%   { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo img { animation: none; }
  .hero__photo img:nth-child(1) { opacity: 1; }
}
.hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--c-red);
  font-size: var(--ty-wordmark);
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0;
  mix-blend-mode: normal;
  white-space: nowrap;
}
.hero__sig {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: var(--ty-label);
  letter-spacing: 0.04em;
  color: var(--c-red);
  z-index: 2;
}
.hero__sig sup { font-size: 8px; }

/* ==========================================================================
   Studio (DEFINE + BUILD VALUE)
   ========================================================================== */

.studio {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--sp-section-tight) var(--sp-x) 0;
}

.studio__define {
  position: relative;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(12px, 3vw, 40px);
  border-top: 1px solid var(--c-hairline);
  border-bottom: 1px solid var(--c-hairline);
  margin-bottom: var(--sp-section-tight);
}
.studio__define::before,
.studio__define::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: var(--c-red);
}
.studio__define::before { top: -12px; }
.studio__define::after  { bottom: -12px; }

.studio__define-heading {
  font-family: var(--f-display-sans);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-size: var(--ty-h1);
  margin-bottom: var(--sp-block);
}
.studio__define-line { display: block; }
.studio__define-line--accent {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--c-red);
  letter-spacing: -0.02em;
  line-height: 1;
}

.studio__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 40px);
  max-width: 560px;
  margin: 0 auto clamp(24px, 2.5vw, 36px);
  padding: 0;
  font-family: var(--f-mono);
  font-size: var(--ty-label);
  letter-spacing: 0.2em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.studio__meta li {
  position: relative;
}
.studio__meta li + li::before {
  content: "·";
  position: absolute;
  left: calc(-1 * clamp(10px, 1.75vw, 20px));
  top: 50%;
  transform: translateY(-55%);
  color: var(--c-red);
  font-size: 16px;
}

.studio__tagline {
  font-family: var(--f-display-sans);
  font-weight: 700;
  font-size: var(--ty-lead);
  letter-spacing: 0.01em;
  max-width: 560px;
  margin: 0 auto;
  color: var(--c-white);
}

.studio__build {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--sp-block);
  padding-bottom: var(--sp-section-tight);
  align-items: stretch;
}
.studio__build-photo {
  background: var(--c-red);
  aspect-ratio: 3 / 4.4;
  overflow: hidden;
  align-self: stretch;
}
.studio__build-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.05) saturate(0.7);
}
.studio__build-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(12px, 1.5vw, 24px) 0 clamp(12px, 1.5vw, 24px) 0;
  min-height: 100%;
}
.studio__build-heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--c-white);
  text-align: left;
  white-space: nowrap;
  margin-bottom: clamp(24px, 3vw, 48px);
}
.studio__build-text {
  max-width: 340px;
  margin-left: auto;
  font-family: var(--f-sans);
  font-size: var(--ty-body);
  line-height: 1.55;
  color: var(--c-muted);
  text-align: right;
}

/* ==========================================================================
   Legacy marquee (thin red band)
   ========================================================================== */

.legacy-marquee {
  background: var(--c-red);
  color: var(--c-black);
  overflow: hidden;
  padding: 22px 0;
}
.legacy-marquee__track {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  white-space: nowrap;
  animation: marquee-x 22s linear infinite;
  width: max-content;
}
.legacy-marquee__track span {
  font-family: var(--f-display);
  font-size: var(--ty-display-lg);
  line-height: 1;
  letter-spacing: -0.01em;
}

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

/* ==========================================================================
   Featured grid
   ========================================================================== */

.featured {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--sp-section) clamp(16px, 3vw, 40px);
}
.featured__title {
  text-align: center;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--ty-display-lg);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-section-tight);
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
}
.featured__card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.featured__card--wide { grid-column: span 1; }

.featured__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 18px;
}
.featured__media img,
.featured__media video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--e-out), filter 400ms var(--e-out);
}
.featured__media:hover img,
.featured__media:focus-visible img,
.featured__media:hover video,
.featured__media:focus-visible video {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.featured__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.featured__name {
  font-family: var(--f-display-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.featured__year {
  font-family: var(--f-mono);
  font-size: var(--ty-label);
  color: var(--c-muted);
}
.featured__desc {
  font-family: var(--f-mono);
  font-size: var(--ty-label);
  line-height: 1.5;
  color: var(--c-muted);
}

/* second row: 3 columns */
.featured__grid > .featured__card:nth-child(n+3) {
  grid-column: span 2 / auto;
}
@media (min-width: 768px) {
  .featured__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .featured__card--wide { grid-column: span 3; }
  .featured__grid > .featured__card:nth-child(n+3) {
    grid-column: span 2;
  }
}

/* ==========================================================================
   Services (Our Craft) — sticky photo on right
   ========================================================================== */

.services {
  position: relative;
  background: var(--c-paper);
  color: var(--c-ink);
}
.services__stack {
  position: relative;
  z-index: 2;
  width: 50%;
}
@media (max-width: 900px) {
  .services__stack { width: 100%; }
}

.services__tile {
  min-height: 100svh;
  padding: var(--sp-section-tight) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.services__tile--intro {
  background: var(--c-black);
  color: var(--c-white);
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding-top: var(--sp-section-tight);
}
.services__tile--strategy   { background: var(--c-paper); color: var(--c-ink); }
.services__tile--guidelines { background: #B5161B; color: var(--c-white); }
.services__tile--direction  { background: var(--c-paper); color: var(--c-ink); }

.services__intro-heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--ty-display-lg);
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-block);
}
.services__intro-copy {
  max-width: 380px;
  font-size: var(--ty-body);
  line-height: 1.55;
  color: var(--c-muted);
}

.services__tile-heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--ty-display-md);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: clamp(14px, 1.5vw, 22px);
}
.services__tile-copy {
  max-width: 380px;
  font-size: var(--ty-body);
  line-height: 1.55;
  opacity: 0.92;
}

/* Right column — sticky photo emerging per tile */
.services__emerge {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 900px) {
  .services__emerge { display: none; }
}
.services__photo {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  opacity: 0;
  margin-top: -100svh;
  overflow: hidden;
}
.services__photo:first-child { margin-top: 0; }
.services__photo img,
.services__photo video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.services__photo.is-active { opacity: 1; }

/* ==========================================================================
   Main marquee (sticky full-viewport with photo swaps)
   ========================================================================== */

.main-marquee {
  position: relative;
  background: var(--c-paper-alt);
  height: 260svh;
  border-top: 1px solid var(--c-hairline-ink);
  border-bottom: 1px solid var(--c-hairline-ink);
}
.main-marquee__frame {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.main-marquee__band {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  background: var(--c-red);
  color: var(--c-white);
  padding: 18px 0;
  overflow: hidden;
  z-index: 1;
}
.main-marquee__track {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  white-space: nowrap;
  width: max-content;
  animation: marquee-x 18s linear infinite;
}
.main-marquee__track span {
  font-family: var(--f-display);
  font-size: var(--ty-display-md);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* photo wells — horizontal slide rail */
.main-marquee__center,
.main-marquee__sat {
  position: absolute;
  overflow: hidden;
}
.main-marquee__rail {
  display: flex;
  width: calc(100% * var(--count, 1));
  height: 100%;
  transform: translate3d(calc(-100% / var(--count, 1) * var(--idx, 0)), 0, 0);
  transition: transform 820ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.main-marquee__rail > img {
  flex: 0 0 calc(100% / var(--count, 1));
  width: calc(100% / var(--count, 1));
  height: 100%;
  object-fit: cover;
}

.main-marquee__center {
  top: 50%; left: 50%;
  width: clamp(260px, 32vw, 440px);
  aspect-ratio: 4 / 5;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: #d0d4dc;
}

.main-marquee__sat--tr {
  top: 8%;
  right: 6%;
  width: clamp(100px, 11vw, 170px);
  aspect-ratio: 4 / 5;
  z-index: 2;
}
.main-marquee__sat--bl {
  bottom: 8%;
  left: 4%;
  width: clamp(120px, 13vw, 200px);
  aspect-ratio: 4 / 5;
  z-index: 2;
}

.main-marquee__copy {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(20px, 4vw, 60px);
  max-width: 300px;
  font-family: var(--f-sans);
  font-size: var(--ty-body);
  line-height: 1.55;
  color: var(--c-ink);
  z-index: 4;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  background: var(--c-paper);
  color: var(--c-ink);
  padding: var(--sp-section-tight) var(--sp-x);
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-block);
}
.final-cta__heading {
  text-align: center;
  padding-top: clamp(24px, 4vw, 48px);
}
.final-cta__title {
  font-family: var(--f-display-sans);
  font-weight: 900;
  font-size: var(--ty-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: clamp(14px, 1.5vw, 22px);
}
.final-cta__socials {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}
/* socials hover — underline-sweep, single mechanic for mono links */
.final-cta__socials a {
  position: relative;
  padding: 2px 0;
  transition: color var(--dur-fast) var(--e-out);
}
.final-cta__socials a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--e-out);
}
.final-cta__socials a:hover::after,
.final-cta__socials a:focus-visible::after {
  transform-origin: left;
  transform: scaleX(1);
}
.final-cta__socials a:active { color: var(--c-red); }

.final-cta__mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52svh;
}
.final-cta__photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 26vw, 420px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  z-index: 1;
}
.final-cta__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04);
  opacity: 0;
  animation: portrait-snap 6s steps(1, end) infinite;
}
.final-cta__photo img:nth-child(1) { animation-delay:  0s;   }
.final-cta__photo img:nth-child(2) { animation-delay:  1.5s; }
.final-cta__photo img:nth-child(3) { animation-delay:  3s;   }
.final-cta__photo img:nth-child(4) { animation-delay:  4.5s; }
@media (prefers-reduced-motion: reduce) {
  .final-cta__photo img { animation: none; }
  .final-cta__photo img:nth-child(1) { opacity: 1; }
}
.final-cta__wordmark {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--ty-wordmark);
  line-height: 0.85;
  letter-spacing: -0.015em;
  color: var(--c-red);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  mix-blend-mode: normal;
}

/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
  background: var(--c-paper);
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: clamp(18px, 2vw, 28px) var(--sp-x);
  font-family: var(--f-display-sans);
  font-weight: 700;
  font-size: var(--ty-label);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--c-hairline-ink);
}
.site-footer__link {
  position: relative;
  padding: 2px 0;
  color: var(--c-ink);
  transition: color var(--dur-fast) var(--e-out);
}
.site-footer__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--e-out);
}
.site-footer__link:hover::after,
.site-footer__link:focus-visible::after {
  transform-origin: left;
  transform: scaleX(1);
}
.site-footer__link:active { color: var(--c-red); }

/* ==========================================================================
   Reveal utility (used by JS IntersectionObserver)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--e-out),
    transform 820ms var(--e-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero intro — title + sig fade/rise after loader */
.hero-intro {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 720ms var(--e-out),
    transform 820ms var(--e-out);
  transition-delay: calc(var(--i, 0) * 120ms + 120ms);
}
.hero-intro.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro { opacity: 1; transform: none; transition: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .legacy-marquee__track,
  .main-marquee__track { animation: none; }
}

/* ==========================================================================
   Breakpoints — mobile-first refinements
   ========================================================================== */

@media (max-width: 900px) {
  .studio__build {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 32px);
  }
  .studio__build-copy {
    padding: 28px 0 0;
    text-align: center;
  }
  .studio__build-heading {
    text-align: center;
    font-size: clamp(44px, 11vw, 76px);
    white-space: normal;
    margin-bottom: clamp(20px, 3vw, 32px);
  }
  .studio__build-text {
    margin: 0 auto;
    text-align: center;
    max-width: min(520px, 100%);
  }

  /* Main marquee — on narrow screens stack vertically; satellites
     dropped so the body copy never collides with an image */
  .main-marquee { height: auto; }
  .main-marquee__frame {
    position: relative;
    height: auto;
    padding: 72px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    overflow: visible;
  }
  .main-marquee__sat { display: none; }
  .main-marquee__center {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: min(82vw, 360px);
    order: 1;
  }
  .main-marquee__band {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    order: 2;
  }
  .main-marquee__copy {
    position: relative;
    right: auto; bottom: auto;
    max-width: min(520px, 100%);
    margin: 0;
    padding: 0 var(--sp-x);
    text-align: center;
    font-size: var(--ty-body);
    order: 3;
  }
}

@media (max-width: 560px) {
  .site-nav { gap: 14px; }
  .site-nav__link { font-size: 11px; letter-spacing: 0.08em; }
  .site-header__logo { font-size: 14px; }

  .hero__photo { width: 45vw; }
  .hero__sig { bottom: 4vh; font-size: 10px; }

  .studio { padding-left: clamp(20px, 6vw, 40px); padding-right: clamp(20px, 6vw, 40px); }
  .studio__meta { padding: 0 8px; font-size: 10px; gap: 24px; }
  .studio__build-text { padding: 0 clamp(4px, 2vw, 12px); }

  .featured__grid { gap: 12px; }

  .site-footer { justify-content: center; text-align: center; font-size: 10px; }
}

.services__tile--guidelines .services__tile-copy { opacity: 1; }
