@view-transition { navigation: auto; }

:root {
  --black: #050505;
  --ink: #151515;
  --white: #ffffff;
  --paper: #f5f4f1;
  --line: rgba(20, 20, 20, 0.16);
  --muted: #666666;
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --header-h: 96px;
  --gutter: clamp(22px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.is-loading,
body.menu-open { overflow: hidden; }
body.is-leaving {
  opacity: 0;
  transition: opacity .2s ease;
}
main,
section,
header,
footer,
nav,
div,
article,
figure { min-width: 0; }
img,
video,
picture,
canvas,
svg {
  display: block;
  max-width: 100%;
}
img,
video { height: auto; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--black); }

.shell,
.shell-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell { max-width: 1376px; }
.shell-wide { max-width: 1640px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-170%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 600;
}
h1,
h2,
h3,
blockquote {
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  transition: opacity .55s var(--ease), visibility .55s;
}
.site-loader[hidden],
body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  width: 62px;
  height: 186px;
  position: relative;
  transform-style: preserve-3d;
  animation: mira-loader 2.3s linear infinite;
}
.loader-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  backface-visibility: hidden;
}
.loader-face img { width: 70%; height: 88%; object-fit: contain; }
.loader-front { background: var(--white); }
.loader-back { background: #080808; transform: rotateY(180deg) translateZ(8px); }
.loader-edge { position: absolute; background: #d9d9d9; }
.loader-edge-left,
.loader-edge-right { top: 4px; width: 8px; height: calc(100% - 8px); }
.loader-edge-left { left: 0; transform-origin: left; transform: rotateY(90deg); }
.loader-edge-right { right: 0; transform-origin: right; transform: rotateY(-90deg); }
.loader-edge-top,
.loader-edge-bottom { left: 4px; width: calc(100% - 8px); height: 8px; }
.loader-edge-top { top: 0; transform-origin: top; transform: rotateX(-90deg); }
.loader-edge-bottom { bottom: 0; transform-origin: bottom; transform: rotateX(90deg); }
.loader-caption {
  position: absolute;
  bottom: 7vh;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .62;
}
@keyframes mira-loader {
  0% { transform: rotateX(0) rotateY(0); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(180deg) rotateX(-180deg); }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: height .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.site-header-over-media:not(.is-scrolled) {
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .08) 65%, transparent);
  backdrop-filter: none;
  border-color: transparent;
}
.site-header.is-scrolled {
  height: 78px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-color: rgba(0, 0, 0, .08);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  position: relative;
  width: 30px;
  height: 72px;
  display: block;
  justify-self: start;
}
.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease;
}
.brand-logo-dark { opacity: 1; }
.brand-logo-light { opacity: 0; }
.site-header-over-media:not(.is-scrolled) .brand-logo-dark { opacity: 0; }
.site-header-over-media:not(.is-scrolled) .brand-logo-light { opacity: 1; }
.brand-fallback { display: none; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.desktop-nav a {
  position: relative;
  padding: 10px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.header-action .icon { width: 17px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-icon-close { display: none; }
.menu-button[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-button[aria-expanded="true"] .menu-icon-close { display: block; }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 490;
  overflow-y: auto;
  background: var(--white);
  color: var(--ink);
  padding: 8vh var(--gutter) 6vh;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu nav { display: grid; gap: 12px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(42px, 12vw, 72px);
  line-height: 1.02;
}
.mobile-menu-contact {
  margin-top: 9vh;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
}
.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

/* Cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--white);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255, 255, 255, .72);
  mix-blend-mode: difference;
  display: grid;
  place-items: center;
  transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s ease;
}
.cursor-ring span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
}
.cursor-active .cursor-ring {
  width: 66px;
  height: 66px;
  margin: -33px 0 0 -33px;
  background: var(--white);
  color: var(--black);
}
.cursor-active .cursor-ring.has-label { mix-blend-mode: normal; }
.cursor-active .cursor-ring.has-label span { opacity: 1; }

/* Shared controls */
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .25s var(--ease);
}
.button .icon { width: 17px; }
.button-light { color: var(--black); background: var(--white); }
.button-light:hover { color: var(--white); background: transparent; border-color: rgba(255,255,255,.65); }
.button-dark { color: var(--white); background: var(--black); border-color: var(--black); }
.button-dark:hover { color: var(--black); background: transparent; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}
.text-link .icon { width: 17px; transition: transform .3s var(--ease); }
.text-link:hover .icon { transform: translateX(5px); }
.text-link-light { color: var(--white); }

/* Media */
.media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ecebe7;
}
.media-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease, transform .9s var(--ease);
}
.media-frame.is-loaded > img,
.media-frame:not(.is-placeholder) > img { opacity: 1; }
.media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #e7e5e0, #f7f6f3);
  color: #8a8882;
}
.media-placeholder::before {
  content: "MIRA";
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: -.08em;
  color: rgba(0,0,0,.05);
}
.media-placeholder span {
  position: relative;
  z-index: 1;
  padding: 20px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
}
.media-frame:not(.is-placeholder) > .media-placeholder { display: none; }
.media-frame.is-placeholder > img,
.is-broken { display: none !important; }

/* Home hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video,
.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}
.hero-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 70% 30%, #343434 0, #111 34%, #050505 74%);
}
.hero-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 11.9%, rgba(255,255,255,.035) 12%);
}
.hero-placeholder span {
  font-family: var(--serif);
  font-size: clamp(120px, 24vw, 420px);
  letter-spacing: -.08em;
  opacity: .15;
}
.hero-placeholder small {
  position: absolute;
  bottom: 13%;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 12vh);
  padding-bottom: 7vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-kicker {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-title,
.page-hero h1,
.contact-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-title {
  max-width: 1080px;
  font-size: clamp(58px, 6vw, 112px);
  line-height: .98;
}
.hero-title > span,
[data-split-lines] > span { display: block; }
.hero-bottom {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 1fr);
  align-items: end;
  gap: 56px;
}
.hero-bottom > p {
  margin: 0;
  max-width: 570px;
  font-size: 17px;
  line-height: 1.6;
}
.hero-bottom .button-row { justify-content: flex-end; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 7vh;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-line { width: 50px; height: 1px; background: currentColor; overflow: hidden; }
.scroll-line::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: currentColor;
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  from { transform: translateX(-120%); }
  to { transform: translateX(220%); }
}

/* Home content */
.intro-section { padding: 120px 0; background: var(--white); }
.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: stretch;
}
.philosophy-copy { align-self: center; padding-block: 34px; }
.display-copy {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 74px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.04em;
}
.intro-body {
  margin: 34px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  color: #4b4b4b;
}
.philosophy-media,
.philosophy-media .media-frame { min-height: 680px; }
.philosophy-media img { object-position: center center; }

.quote-panel {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.quote-panel-media { position: absolute; inset: 0; }
.quote-panel-media .media-frame,
.quote-panel-media img { width: 100%; height: 100%; }
.quote-panel-media img { object-fit: cover; }
.quote-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.28) 72%);
}
.quote-panel-content {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}
.quote-panel blockquote {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 98px);
  line-height: 1;
  letter-spacing: -.05em;
}
.quote-panel-content > p:last-child {
  margin: 38px 0 0;
  max-width: 560px;
  font-size: 17px;
  color: rgba(255,255,255,.76);
}

.section-heading {
  margin-bottom: 66px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading h2 {
  margin: 0;
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.045em;
}
.reel-section { padding: 120px 0; background: var(--white); overflow: hidden; }
.reel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 22vw);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  scroll-snap-align: start;
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; background: #1a1a1a; }
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.32), transparent 34%);
  pointer-events: none;
}
.reel-play {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}
.reel-play .icon { width: 17px; height: 17px; margin-left: 2px; }

.runway-section { padding: 125px 0; background: var(--white); }
.runway-heading {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(120px, .65fr) minmax(0, 2.35fr);
  gap: 64px;
}
.runway-heading h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.05em;
}
.runway-stories { display: grid; gap: 120px; }
.runway-story {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 66px;
}
.runway-story-reverse { grid-template-columns: minmax(0, 1.6fr) minmax(220px, .72fr); }
.runway-story-reverse .runway-copy { order: 2; }
.runway-story-reverse .runway-image { order: 1; }
.runway-copy span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.runway-copy h3 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.5vw, 58px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.04em;
}
.runway-copy p { max-width: 390px; margin: 0; color: var(--muted); }
.runway-image { aspect-ratio: 16 / 10; }
.runway-image img { transition: transform 1s var(--ease); }
.runway-story:hover .runway-image img { transform: scale(1.03); }

.designer-section { padding: 125px 0; background: var(--paper); }
.designer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(60px, 7vw, 120px);
}
.designer-portrait,
.designer-portrait .media-frame { min-height: 700px; }
.designer-copy h2 {
  margin: 0 0 30px;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(43px, 4vw, 65px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.05em;
}
.designer-copy p { max-width: 600px; margin: 0 0 22px; color: #555; }
.designer-copy .button { margin-top: 24px; }

.closing-cta { padding: 130px 0; color: var(--white); background: var(--black); }
.closing-cta-inner h2 {
  margin: 0;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.7vw, 92px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.055em;
}
.closing-cta .button-row { margin-top: 54px; justify-content: flex-start; }

/* About */
.page-hero { padding-top: var(--header-h); }
.page-hero-split {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--paper);
}
.page-hero-copy {
  padding: 13vh max(var(--gutter), 6vw) 9vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 4.8vw, 88px);
  line-height: 1.04;
}
.page-hero-intro {
  margin: 34px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: #4d4d4d;
}
.page-hero-image,
.page-hero-image .media-frame { min-height: calc(88svh - var(--header-h)); }
.page-hero-image img { object-position: center top; }

.about-belief { padding: 125px 0; }
.about-belief-grid {
  display: grid;
  grid-template-columns: minmax(130px, .72fr) minmax(0, 2.4fr);
  gap: 68px;
}
.two-column-copy {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.two-column-copy p { margin: 0; color: #555; }

.manifesto-panel {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.manifesto-word {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: min(25vw, 390px);
  letter-spacing: -.1em;
  color: rgba(255,255,255,.025);
  white-space: nowrap;
}
.manifesto-content { position: relative; z-index: 1; text-align: center; }
.manifesto-content blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.stages-section { padding: 125px 0; background: var(--paper); }
.stages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8vw;
}
.stages-copy h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.05em;
}
.stages-copy p { max-width: 580px; color: #555; }
.stage-list { margin: 0; padding: 0; list-style: none; }
.stage-list li {
  min-height: 120px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
}
.stage-list li:last-child { border-bottom: 1px solid var(--line); }
.stage-list span { font-size: 10px; letter-spacing: .16em; }
.stage-list strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 40px);
  line-height: 1.15;
  font-weight: 400;
}

.editorial-grid-section { padding: 125px 0; }
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  grid-template-rows: repeat(2, minmax(300px, 500px));
  gap: 18px;
}
.editorial-large { grid-row: 1 / 3; }
.editorial-grid .media-frame { height: 100%; }

.worlds-section { padding: 125px 0; background: var(--white); }
.worlds-list { border-top: 1px solid var(--line); }
.world-row {
  display: grid;
  grid-template-columns: 70px minmax(240px, 1fr) minmax(260px, 1fr);
  gap: 44px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.world-row > span { font-size: 10px; letter-spacing: .16em; }
.world-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 2.8vw, 46px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.04em;
}
.world-row p { margin: 0; color: #555; }

.studio-promise { padding: 135px 0; background: var(--paper); }
.studio-promise-inner { text-align: center; }
.studio-promise h2 {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.055em;
}
.studio-promise p:not(.eyebrow) { margin: 42px auto 0; max-width: 680px; color: #555; }
.studio-promise .button { margin-top: 38px; }

/* Contact */
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 86px) 0 96px;
  color: var(--white);
  background: var(--black);
}
.contact-hero-media,
.contact-hero-shade { position: absolute; inset: 0; }
.contact-hero-media { z-index: 0; background: var(--black); }
.contact-hero-media .media-frame,
.contact-hero-media .contact-hero-image,
.contact-hero-media img,
.contact-hero-media .media-placeholder { width: 100%; height: 100%; }
.contact-hero-media img {
  object-fit: cover;
  object-position: center 42%;
  opacity: .42;
  filter: grayscale(18%) contrast(1.08);
}
.contact-hero-media .media-placeholder { opacity: .14; }
.contact-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.64) 48%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.72));
}
.contact-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 76px;
  align-items: end;
}
.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 6.8vw, 112px);
  line-height: 1.01;
}
.contact-hero-copy {
  margin: 0 0 12px;
  max-width: 480px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.65;
}
.contact-actions-section { padding: 0 0 82px; background: var(--black); color: var(--white); }
.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}
.contact-action {
  min-height: 150px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: color .3s ease, background .3s ease;
}
.contact-action:hover { color: var(--black); background: var(--white); }
.contact-action-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.contact-action small,
.contact-action strong { display: block; }
.contact-action small {
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
}
.contact-action strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.15;
  font-weight: 400;
}

.contact-main-section { padding: 125px 0; }
.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(64px, 8vw, 130px);
}
.contact-expectations h2 {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(43px, 4vw, 64px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.05em;
}
.contact-expectations ol { margin: 0; padding: 0; list-style: none; }
.contact-expectations li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.contact-expectations li:last-child { border-bottom: 1px solid var(--line); }
.contact-expectations li > span { font-size: 10px; letter-spacing: .15em; }
.contact-expectations h3 { margin: 0 0 8px; font-size: 16px; }
.contact-expectations li p { margin: 0; color: var(--muted); }
.contact-form-wrap { padding: clamp(32px, 5vw, 72px); background: var(--paper); }
.form-notice { margin-bottom: 30px; padding: 14px 16px; border: 1px solid var(--line); font-size: 14px; }
.form-notice.success { border-color: #2b6a45; color: #2b6a45; }
.form-notice.error { border-color: #8b2e2e; color: #8b2e2e; }
.honeypot,
.honeypot * {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  max-width: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}
.field { display: grid; gap: 10px; }
.field-full { grid-column: 1 / -1; }
.field > span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #9d9b94;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--black); }
.field textarea { resize: vertical; min-height: 125px; }
.contact-form .button { margin-top: 34px; }
.form-note { margin: 16px 0 0; font-size: 12px; color: var(--muted); }
.contact-closing { padding: 130px 0; color: var(--white); background: var(--black); }
.contact-closing-inner { text-align: center; }
.contact-closing blockquote {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.6vw, 90px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

/* 404 */
.error-page {
  min-height: 75svh;
  padding: calc(var(--header-h) + 14vh) var(--gutter) 14vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.error-page h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 160px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.06em;
}
.error-page > p:not(.eyebrow) { margin: 40px 0; color: var(--muted); }
.error-page .button { align-self: flex-start; }

/* Footer */
.site-footer { color: var(--white); background: var(--black); border-top: 1px solid rgba(255,255,255,.14); }
.footer-top {
  padding-block: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
  gap: 92px;
}
.footer-statement h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.1vw, 66px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.05em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-content: end;
}
.footer-links > div { display: grid; gap: 10px; }
.footer-label { margin: 0 0 10px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.82); }
.footer-links a:hover { color: var(--white); }
.footer-social-link { display: inline-flex; align-items: center; gap: 9px; }
.footer-social-link .icon { width: 15px; height: 15px; }
.footer-bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }

/* Progressive animation state. Content remains visible if JS fails. */
.reveal,
.reveal-line > span,
[data-split-lines] { will-change: auto; }

/* Tablet */
@media (max-width: 1100px) {
  :root { --gutter: clamp(20px, 3.8vw, 42px); }
  .philosophy-layout { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: 52px; }
  .philosophy-media,
  .philosophy-media .media-frame { min-height: 600px; }
  .designer-portrait,
  .designer-portrait .media-frame { min-height: 640px; }
  .contact-main-grid { gap: 64px; }
}

/* Navigation and stacked tablet layout */
@media (max-width: 920px) {
  :root { --header-h: 82px; --gutter: 24px; }
  .desktop-nav,
  .header-action { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-flex; justify-self: end; }
  .brand { width: 25px; height: 60px; }
  .site-header,
  .site-header-over-media:not(.is-scrolled) {
    color: var(--ink);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    border-color: rgba(0,0,0,.06);
  }
  .site-header-over-media .brand-logo-dark { opacity: 1; }
  .site-header-over-media .brand-logo-light { opacity: 0; }
  .site-header.is-scrolled { height: var(--header-h); }
  .mobile-menu { inset: var(--header-h) 0 0; }

  body.page-home .hero {
    margin-top: var(--header-h);
    min-height: calc(100svh - var(--header-h));
  }
  body.page-home .hero-content {
    min-height: calc(100svh - var(--header-h));
    padding-top: 12vh;
    padding-bottom: 54px;
  }
  .hero-title { max-width: 790px; font-size: clamp(54px, 9vw, 82px); }
  .hero-bottom { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .hero-bottom .button-row { justify-content: flex-start; }
  .scroll-cue { display: none; }

  .philosophy-layout,
  .runway-heading,
  .runway-story,
  .runway-story-reverse,
  .designer-grid,
  .page-hero-split,
  .about-belief-grid,
  .stages-grid,
  .contact-hero-grid,
  .contact-main-grid,
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
  .philosophy-layout { gap: 48px; }
  .philosophy-copy { padding: 0; }
  .philosophy-media,
  .philosophy-media .media-frame { min-height: 68svh; }

  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .runway-heading { gap: 28px; margin-bottom: 60px; }
  .runway-stories { gap: 86px; }
  .runway-story,
  .runway-story-reverse { gap: 30px; }
  .runway-story .runway-copy,
  .runway-story-reverse .runway-copy { order: 1; }
  .runway-story .runway-image,
  .runway-story-reverse .runway-image { order: 2; }
  .designer-grid { gap: 62px; }

  .page-hero { padding-top: var(--header-h); }
  .page-hero-split { min-height: auto; }
  .page-hero-copy { padding: 10vh var(--gutter) 8vh; }
  .page-hero h1 { max-width: 760px; font-size: clamp(54px, 10vw, 78px); line-height: 1; }
  .page-hero-image,
  .page-hero-image .media-frame { min-height: 68svh; }

  .about-belief-grid { gap: 30px; }
  .stages-grid { gap: 64px; }
  .world-row { grid-template-columns: 54px minmax(0, 1fr); gap: 24px; }
  .world-row p { grid-column: 2; }

  .contact-hero { padding: calc(var(--header-h) + 70px) 0 72px; }
  .contact-hero-grid { min-height: auto; gap: 34px; }
  .contact-hero h1 { max-width: 760px; font-size: clamp(60px, 11vw, 88px); }
  .contact-hero-copy { max-width: 620px; }
  .contact-action-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-main-grid { gap: 64px; }

  .footer-top { gap: 68px; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --header-h: 78px; --gutter: 18px; }
  body { font-size: 15px; }
  .brand { width: 23px; height: 56px; }
  .mobile-menu { padding-top: 7vh; }

  body.page-home .hero { min-height: calc(100svh - var(--header-h)); }
  body.page-home .hero-content {
    min-height: calc(100svh - var(--header-h));
    padding-top: 11vh;
    padding-bottom: 42px;
  }
  .hero-title,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 1.04;
    letter-spacing: -.035em;
  }
  .hero-kicker { margin-bottom: 16px; }
  .hero-bottom { margin-top: 22px; gap: 20px; }
  .hero-bottom > p { font-size: 15px; }
  .button-row { width: 100%; gap: 14px; align-items: flex-start; }
  .button-row .button { width: 100%; }
  .button { min-height: 50px; padding-inline: 17px; gap: 18px; }

  .intro-section,
  .reel-section,
  .runway-section,
  .designer-section,
  .about-belief,
  .stages-section,
  .editorial-grid-section,
  .worlds-section,
  .contact-main-section { padding-block: 76px; }

  .display-copy,
  .section-heading h2,
  .runway-heading h2,
  .designer-copy h2,
  .stages-copy h2,
  .contact-expectations h2 {
    font-size: clamp(36px, 10.8vw, 48px);
    line-height: 1.07;
    letter-spacing: -.035em;
  }
  .intro-body { margin-top: 26px; font-size: 16px; }
  .philosophy-layout { gap: 36px; }
  .philosophy-media,
  .philosophy-media .media-frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .quote-panel { min-height: 74svh; }
  .quote-panel-content { padding-block: 70px; }
  .quote-panel blockquote,
  .manifesto-content blockquote,
  .contact-closing blockquote {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.05;
  }
  .quote-panel-content > p:last-child { font-size: 16px; }

  .section-heading { margin-bottom: 42px; }
  .reel-track { grid-auto-columns: min(78vw, 300px); gap: 14px; }
  .reel-play { right: 14px; bottom: 14px; width: 38px; height: 38px; }

  .runway-stories { gap: 70px; }
  .runway-copy h3 { font-size: clamp(34px, 9.8vw, 43px); }
  .runway-image { aspect-ratio: 4 / 5; }

  .designer-portrait,
  .designer-portrait .media-frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .closing-cta,
  .studio-promise,
  .contact-closing { padding-block: 90px; }
  .closing-cta-inner h2,
  .studio-promise h2 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.04;
  }
  .closing-cta .button-row { margin-top: 42px; }

  .page-hero-copy { padding: 8vh var(--gutter) 6vh; }
  .page-hero-intro { margin-top: 24px; font-size: 16px; }
  .page-hero-image,
  .page-hero-image .media-frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .two-column-copy { grid-template-columns: minmax(0, 1fr); gap: 22px; margin-top: 34px; }
  .manifesto-panel { min-height: 420px; }
  .manifesto-word { font-size: 42vw; }
  .stage-list li { min-height: 94px; grid-template-columns: 44px minmax(0, 1fr); }
  .stage-list strong { font-size: clamp(24px, 7.5vw, 31px); }
  .editorial-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 14px;
  }
  .editorial-large { grid-row: auto; }
  .editorial-grid > * { aspect-ratio: 4 / 5; }
  .world-row { grid-template-columns: 38px minmax(0, 1fr); gap: 16px; padding: 30px 0; }
  .world-row h3 { font-size: clamp(29px, 8vw, 36px); }

  .contact-hero { padding: calc(var(--header-h) + 48px) 0 54px; }
  .contact-hero-grid { gap: 26px; }
  .contact-hero-media img { object-position: 58% center; opacity: .34; }
  .contact-hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.86)); }
  .contact-action { min-height: 126px; padding: 22px 18px; grid-template-columns: auto minmax(0, 1fr); }
  .contact-action > .icon:last-child { display: none; }
  .contact-action strong { font-size: 25px; }
  .contact-expectations h2 { margin-bottom: 34px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .field-full { grid-column: auto; }

  .footer-top { padding-block: 70px; gap: 56px; }
  .footer-statement h2 { font-size: clamp(36px, 10vw, 46px); line-height: 1.06; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }

  .cursor-dot,
  .cursor-ring { display: none; }
}

@media (max-width: 390px) {
  :root { --gutter: 16px; }
  .hero-title,
  .page-hero h1,
  .contact-hero h1 { font-size: clamp(39px, 11.8vw, 48px); }
  .display-copy,
  .section-heading h2,
  .runway-heading h2,
  .designer-copy h2,
  .stages-copy h2,
  .contact-expectations h2 { font-size: clamp(33px, 10vw, 41px); }
  .button { padding-inline: 15px; letter-spacing: .1em; }
  .footer-links { grid-template-columns: minmax(0, 1fr); }
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

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

/* v2.2 mobile header scroll-state correction */
@media (max-width: 920px) {
  /* The menu is a viewport overlay, not a child of the filtered header. */
  .mobile-menu {
    inset: 0;
    z-index: 480;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    padding: calc(var(--header-h) + 56px) var(--gutter) max(40px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #050505;
    color: #fff;
    transform: translateY(-100%);
  }
  .mobile-menu.is-open {
    transform: translateY(0);
  }
  .mobile-menu nav {
    gap: 4px;
  }
  .mobile-menu nav a {
    display: block;
    padding: 8px 0;
    color: #fff;
    font-size: clamp(52px, 15vw, 78px);
    line-height: .98;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .mobile-menu nav a[aria-current="page"] {
    color: rgba(255,255,255,.52);
  }
  .mobile-menu-contact {
    margin-top: 56px;
    border-color: rgba(255,255,255,.18);
  }
  .mobile-menu-contact a {
    color: rgba(255,255,255,.84);
  }

  /* Home landing state: transparent over the hero with white controls. */
  body.page-home .site-header:not(.is-scrolled) {
    color: #fff;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
  }
  body.page-home .site-header:not(.is-scrolled) .brand-logo-dark { opacity: 0; }
  body.page-home .site-header:not(.is-scrolled) .brand-logo-light { opacity: 1; }
  body.page-home .site-header:not(.is-scrolled) .menu-button { color: #fff; }

  /* As soon as the page moves, restore a clean white navigation bar. */
  body.page-home .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(0,0,0,.08);
  }
  body.page-home .site-header.is-scrolled .brand-logo-dark { opacity: 1; }
  body.page-home .site-header.is-scrolled .brand-logo-light { opacity: 0; }
  body.page-home .site-header.is-scrolled .menu-button { color: var(--ink); }

  body.page-home .hero {
    margin-top: 0;
    min-height: 100svh;
  }
  body.page-home .hero-content {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 11vh);
  }

  /* While open, keep the header above the full-screen menu. */
  body.menu-open .site-header {
    z-index: 500;
    color: #fff !important;
    background: #050505 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(255,255,255,.12) !important;
  }
  body.menu-open .brand-logo-dark { opacity: 0 !important; }
  body.menu-open .brand-logo-light { opacity: 1 !important; }
  body.menu-open .menu-button { color: #fff !important; }
  body.menu-open .mobile-menu { visibility: visible; }
}
