:root {
  --ink: #0f0e0e;
  --ink-soft: rgba(15, 14, 14, 0.6);
  --white: #f6f8fb;
  --muted: #8c8d92;
  --silver: #d1d2d8;
  --paper: #f5f5f5;
  --footer: #171614;
  --stories: #1f1f1f;
  --page: 1280px;
  --gap: 10px;
  --radius: 8px;
  --font-ui: "Geist", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Tilt Warp", "Arial Narrow", sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --ease: cubic-bezier(0, 0, 0.58, 1);
  --grain: url("../assets/ed5b3d31828c41c6b40cd0ce216d9cf6052ef2d8.png");
  --paper-tex: url("../assets/aca0cf5e16dde9722dea1a92e8c1a240b58f1e6a.png");
  --btn-tex: url("../assets/f5defbf95e8cade70cb3b5c3b8f9798395aa3548.png");
  --stories-tex: url("../assets/11466f1494d41fd1e5f9f4cb3cd214c87377807c.png");
  --subscribe: url("../assets/be7dd7b62c4d18bacfd6a2f4467d5ec7928c4c27.png");
}

/* Dark scheme only on page chrome — NOT on the cookie banner.
   Safari resolves fixed light UI against an ancestor dark color-scheme and can
   paint near-white text on the white bar while buttons (own colors) stay visible. */
body > *:not(.cookie) {
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--ink);
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 1280px 600px;
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" 1, "ss03" 1;
}

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

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

button, a, .pill { -webkit-tap-highlight-color: transparent; }

/* Custom cursor — original PNGs at Figma 100×115; JS positions hotspot (CSS url() rejects 200×230). */
@media (hover: hover) and (pointer: fine) {
  html.has-site-cursor,
  html.has-site-cursor * {
    cursor: none !important;
  }
}

.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100px;
  height: 115px;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
}

.site-cursor.is-active { opacity: 1; }

.site-cursor__img {
  display: block;
  width: 100px;
  height: 115px;
  max-width: none;
}

.site-cursor__img[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus,
.skip:focus-visible {
  top: 12px;
}

main,
.subscribe,
.footer,
.marquee-lg {
  width: min(var(--page), 100%);
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ticker */

.ticker {
  overflow: hidden;
  width: 100%;
  max-width: none;
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.004em;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker p {
  margin: 0;
  padding-right: 0.6em;
  white-space: nowrap;
}

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

/* Navigation */

.nav {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: 62px;
  margin: 0 0 -62px;
  padding: 10px 20px 0;
}

.brand {
  width: 44px;
  height: 44px;
  position: relative;
  flex: 0 0 44px;
  transform-origin: center center;
}

.brand__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand__mark {
  position: absolute;
  left: 1px;
  top: 7px;
  width: 42px;
  height: 31px;
  object-fit: contain;
  pointer-events: none;
}

.nav__links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav__spacer { width: 44px; flex: 0 0 44px; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 12px;
  border-radius: 999px;
  color: var(--ink);
  background-position: center;
  background-size: cover;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.pill--home { background-image: url("../assets/92a1120141b92c72786d4b185ac41753a296b4f3.png"); }
.pill--works { background-image: url("../assets/65ef4a44b152b784faa567a136963cdd1ade4f4b.png"); }
.pill--about { background-image: url("../assets/843b176146046c2666e8fef3acda5e3f28a99eb4.png"); }

.pill:hover { filter: brightness(1.08); transform: translateY(-1px); }

.page { position: relative; }

/* Hero */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 1260px;
  height: 800px;
  margin: 0 auto;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}

.hero__media {
  width: 1256px;
  height: 539px;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  background: transparent;
  background-color: transparent;
}

.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1260px;
  height: 195.99px;
  padding: 0 20px 20px;
  flex-shrink: 0;
}

.hero__union {
  width: 1240px;
  height: 175.99px;
  max-width: none;
  flex-shrink: 0;
}

.hero__scale { display: contents; }

.hero__glyphs { display: none; }

/* Cards */

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: 10px 10px 0;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 700px;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  color: #f6f8fb;
  box-sizing: border-box;
}

.card__media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transition:
    left 0.3s var(--ease),
    top 0.3s var(--ease),
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    filter 0.3s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.card:hover .card__media {
  left: -20px;
  top: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  filter: blur(10px);
}

.card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 80px;
  padding: 12px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 6px;
  z-index: 2;
}

.card h2,
.card h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #f6f8fb;
}

.card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #f6f8fb;
}

.view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: #fff var(--btn-tex) repeat;
  background-size: 420px auto;
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.016em;
}

.view-all:hover {
  background-color: #f7add0;
  background-image: url("../assets/92a1120141b92c72786d4b185ac41753a296b4f3.png");
  filter: none;
}

/* Experience */

.experience {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1260px;
  height: 608px;
  margin: 10px;
  padding: 60px 10px;
  gap: 80px;
  border-radius: 8px;
  background-color: var(--paper);
  background-image: var(--paper-tex);
  background-repeat: repeat;
  background-size: 1280px 600px;
  color: #0f0e0e;
}

.experience h2 {
  width: 800px;
  height: 128px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 160px;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: #0f0e0e;
}

.sheet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 1240px;
  height: 280px;
}

.sheet p { margin: 0; }

.sheet__labels {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 16px;
  width: 1240px;
  height: 28px;
}

.sheet__head {
  opacity: 0.6;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #0f0e0e;
}

.sheet__labels .sheet__head:first-child,
.sheet__labels .sheet__end {
  width: 524px;
  height: 28px;
  flex-grow: 1;
}

.sheet__labels .sheet__head:nth-child(2) {
  width: 160px;
  height: 28px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sheet__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 1240px;
  height: 240px;
}

.sheet__row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px 0;
  gap: 16px;
  width: 1232px;
  height: 60px;
  border-width: 1px 0;
  border-style: dashed;
  border-color: #555659;
}

.sheet__cell {
  height: 28px;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #0f0e0e;
}

.sheet__row .sheet__cell:first-child,
.sheet__row .sheet__end {
  width: 520px;
  flex-grow: 1;
}

.sheet__row .sheet__cell:nth-child(2) {
  width: 160px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sheet__end { text-align: right; }

/* Subscribe */

.subscribe {
  width: 1200px;
  padding: 0;
}

.subscribe__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 40px;
  width: 1200px;
  height: 464px;
  background: var(--subscribe);
  color: #0f0e0e;
}

.holes {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  padding: 50px 20px;
  gap: 142px;
  width: 64px;
  height: 464px;
}

.subscribe__card > .holes:first-child { border-right: 1.5px dashed #0f0e0e; }
.subscribe__card > .holes:last-child { border-left: 1.5px dashed #0f0e0e; }

.holes__set { display: contents; }

.holes span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0f0e0e;
  border: 1px solid #0f0e0e;
}

.subscribe__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  gap: 32px;
  width: 992px;
  height: 216px;
}

.subscribe__copy > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 992px;
  height: 116px;
}

.subscribe h2 {
  width: 992px;
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  text-align: center;
  letter-spacing: -0.02em;
  color: #0f0e0e;
}

.subscribe__copy p {
  width: 992px;
  margin: 0;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.02em;
  color: #0f0e0e;
}

.connect {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0 24px;
  width: 127px;
  height: 68px;
  background: #0f0e0e;
  color: #f6f8fb;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" on, "ss03" on;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.connect span {
  display: block;
  width: 79px;
  height: 28px;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #f6f8fb;
  text-align: center;
}

.connect:hover { transform: translateY(-1px); filter: brightness(1.2); }

/* Footer */

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 20px 20px;
  background: var(--footer);
  color: var(--white);
}

.footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 200px;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.footer__name span { display: block; }

.footer__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 100px;
  width: 140px;
  flex: 0 0 140px;
  color: var(--silver);
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer__links h2 {
  margin: 0;
  padding: 2px 5px;
  border: 1px solid var(--silver);
  border-radius: 999px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__links a {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.004em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__links a:hover { color: var(--white); }

.footer__meta {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: right;
}

.footer__wordmark { display: none; width: 100%; height: auto; }

/* Page headers */

.page-hero {
  margin: 0 10px;
  padding: 180px 0;
  border-radius: var(--radius);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 160px;
  line-height: 0.8;
  letter-spacing: -0.05em;
}

body[data-page="works"] .page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1260px;
  height: 488px;
  margin: 0 10px;
  padding: 180px 0;
  border-radius: 8px;
}

body[data-page="works"] .page-hero h1 {
  width: 1260px;
  height: 128px;
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 160px;
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.05em;
  color: #f6f8fb;
}

body[data-page="about"] .page-hero {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  align-self: stretch;
  width: 1260px;
  height: 388px;
  margin: 0 10px;
  padding: 180px 0 80px;
  border-radius: 8px;
}

body[data-page="about"] .page-hero h1 {
  width: 1260px;
  height: 128px;
  margin: 0;
  flex: none;
  align-self: stretch;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 160px;
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.05em;
  hanging-punctuation: first last;
  color: #f6f8fb;
}

.marquee-lg {
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
}

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

.marquee-lg p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.016em;
  white-space: nowrap;
  padding-right: 0.35em;
}

/* Article */

.article-hero {
  margin: 0 auto;
  width: min(1200px, calc(100% - 20px));
  padding: 180px 0 160px;
  text-align: center;
}

.article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 110px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: baseline;
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.016em;
}

.article-cover {
  margin: 0 10px;
  width: calc(100% - 20px);
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius);
}

.intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 120px 40px;
}

.intro h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.intro p {
  margin: 0;
  max-width: 940px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.article-body {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw) 10px;
  padding: 0 0 120px;
  border-radius: 0;
  background-color: var(--paper);
  background-image: var(--paper-tex);
  background-repeat: repeat;
  background-size: 1280px 600px;
  overflow: hidden;
}

.article-body img {
  width: 100%;
  max-width: none;
  height: auto;
}

.article-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 620px;
  margin: 0 auto;
  padding-top: 16px;
}

.article-end__rule {
  box-sizing: content-box;
  width: 620px;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px dashed #555659;
}

.article-end__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: none;
  padding: 0;
  gap: 16px;
  width: 104px;
  height: 24px;
}

.article-end__icon {
  display: block;
  flex: none;
  width: 24px;
  height: 24px;
}

.stories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  box-sizing: border-box;
  flex: none;
  width: 1260px;
  height: 692px;
  margin: 0 10px;
  padding: 120px 40px;
  gap: 24px;
  border-radius: 8px;
  background: var(--stories-tex) repeat, #1f1f1f;
  background-size: 520px auto, auto;
}

.stories h2 {
  width: 175px;
  height: 34px;
  margin: 0;
  flex: none;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  hanging-punctuation: first last;
  color: #f6f8fb;
}

.stories__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  flex: none;
  flex-grow: 1;
  order: 1;
  width: 981px;
  height: 452px;
  padding: 0;
  gap: 24px;
}

.mini {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  flex: none;
  flex-grow: 1;
  order: 0;
  width: 311px;
  max-width: 311px;
  min-width: 0;
  height: 452px;
  padding: 0;
  gap: 16px;
  color: #f6f8fb;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.mini:nth-child(1) { order: 0; }
.mini:nth-child(2) { order: 1; }
.mini:nth-child(3) { order: 2; }

.mini img {
  display: block;
  box-sizing: border-box;
  flex: none;
  flex-grow: 0;
  order: 0;
  align-self: stretch;
  width: 311px;
  height: 380px;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s var(--ease);
}

.mini:hover img { transform: scale(1.03); }

.mini__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  flex: none;
  flex-grow: 0;
  order: 1;
  align-self: stretch;
  width: 311px;
  max-width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0;
  overflow: hidden;
}

.mini h3 {
  box-sizing: border-box;
  flex: none;
  flex-grow: 0;
  order: 0;
  align-self: stretch;
  width: 311px;
  max-width: 100%;
  min-width: 0;
  height: 28px;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  hanging-punctuation: first last;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #f6f8fb;
  white-space: nowrap;
  overflow: hidden;
}

.mini__meta {
  box-sizing: border-box;
  flex: none;
  flex-grow: 0;
  order: 1;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 28px;
  overflow: hidden;
}

.mini__meta-line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  flex: none;
  width: max-content;
  max-width: none;
  height: 28px;
  margin: 0;
  padding: 0;
  gap: 4px;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  hanging-punctuation: first last;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #8c8d92;
  white-space: nowrap;
}

.mini__meta-line span {
  flex: none;
  flex-grow: 0;
  height: 28px;
  white-space: nowrap;
}

/* About */

.portraits {
  overflow: hidden;
  padding: 16px 0;
}

.portraits__track {
  display: flex;
  gap: 29px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.portraits img {
  width: 285px;
  height: 285px;
  object-fit: cover;
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 120px 50px;
}

.split h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.split p {
  margin: 0;
  max-width: 940px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 10px 120px;
  align-items: stretch;
}

.contact img {
  width: 100%;
  height: 100%;
  min-height: 623px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex: none;
  flex-grow: 1;
  order: 1;
  width: 625px;
  height: 623px;
  padding: 0;
}

.contact__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  flex: none;
  flex-grow: 0;
  order: 0;
  width: 400px;
  max-width: 400px;
  height: 226px;
  padding: 0;
  gap: 24px;
}

.contact h2 {
  width: 400px;
  height: 34px;
  margin: 0;
  flex: none;
  align-self: stretch;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  hanging-punctuation: first last;
  color: #f6f8fb;
}

.contact p {
  width: 400px;
  height: 168px;
  margin: 0;
  flex: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  hanging-punctuation: first last;
  font-feature-settings: "ss01" on, "ss03" on;
  color: #f6f8fb;
}

.contact p span { width: 100%; min-width: 0; }

.contact a { text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track,
  .marquee-lg__track,
  .portraits__track { animation: none; }
  .card__media,
  .mini img,
  .pill,
  .connect { transition: none; }
}

@media (max-width: 1279px) {
  .experience h2,
  .page-hero h1 { font-size: 140px; }

  .view-all {
    min-height: 0;
    padding: 24px;
    font-size: 64px;
  }

  .marquee-lg p { font-size: 64px; }

  .article-hero h1 { font-size: 80px; }
  .article-meta { font-size: 64px; gap: 16px; }

  .hero {
    width: 780px;
    height: 800px;
  }

  .hero__media {
    width: 1255px;
    height: 539px;
  }

  .hero__logo {
    width: 780px;
    height: 128.29px;
    padding: 0 20px 20px;
  }

  .hero__union {
    width: 763px;
    height: 108.29px;
  }

  .card { height: 500px; min-width: 0; }
  .card__body { height: auto; min-height: 80px; }

  .footer__links a { font-size: 18px; }

  .footer {
    flex-direction: column;
    align-items: stretch;
    gap: 80px;
    padding: 80px 20px 20px;
  }
  .footer__name { display: none; }
  .footer__wordmark { display: block; max-width: 763px; }
  .footer__side {
    width: 100%;
    flex-basis: auto;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .portraits img { width: 249px; height: 249px; }
  .portraits__track { gap: 26px; }

  .split { grid-template-columns: 200px 1fr; }
  .contact img { min-height: 397px; }

  .marquee-lg { padding: 80px 0; }
}

@media (min-width: 800px) and (max-width: 1279px) {
  .article-cover {
    display: block;
    width: 800px;
    height: 472px;
    margin: 0 auto;
    border-radius: 8px;
    flex: none;
    order: 1;
    flex-grow: 0;
    object-fit: cover;
  }

  .subscribe {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    padding: 100px 40px 80px;
    width: 800px;
    height: 540px;
  }

  .subscribe__card {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 40px;
    width: 720px;
    max-width: 1400px;
    height: 360px;
  }

  .holes {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    width: 64px;
    height: 360px;
    flex: none;
    align-self: stretch;
  }

  .holes__set {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    box-sizing: border-box;
    flex: none;
    width: 64px;
    height: 360px;
    padding: 1px 20px;
    gap: 142px;
  }

  .subscribe__card > .holes:first-child {
    border-right: 1.5px dashed #0f0e0e;
    border-bottom: 0;
    order: 0;
  }

  .subscribe__card > .holes:last-child {
    border-left: 1.5px dashed #0f0e0e;
    border-top: 0;
    order: 2;
  }

  .holes span {
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    flex: none;
  }

  .subscribe__copy {
    flex-grow: 1;
    padding: 0;
    gap: 32px;
    width: 512px;
    height: 257px;
  }

  .subscribe__copy > div {
    width: 512px;
    height: 157px;
  }

  .subscribe h2 {
    width: 512px;
    height: 116px;
    font-size: 64px;
    line-height: 0.9;
  }

  .subscribe__copy p {
    width: 512px;
    height: 25px;
    font-size: 18px;
    line-height: 1.4;
    font-feature-settings: "ss01" on, "ss03" on;
  }

  .experience {
    width: 780px;
    height: 655px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 10px;
    gap: 80px;
  }
  .experience h2 {
    width: 760px;
    max-width: 760px;
    height: 112px;
    font-size: 140px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }
  .sheet {
    width: 760px;
    height: 343px;
    gap: 12px;
  }
  .sheet__labels,
  .sheet__list { width: 760px; }
  .sheet__labels { height: 28px; gap: 16px; }
  .sheet__labels .sheet__head:first-child,
  .sheet__labels .sheet__end {
    width: 284px;
    flex-grow: 1;
  }
  .sheet__labels .sheet__head:nth-child(2) {
    width: 160px;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .sheet__list { height: 303px; }
  .sheet__row {
    align-items: center;
    width: 760px;
    height: auto;
    gap: 16px;
  }
  .sheet__row .sheet__cell:first-child,
  .sheet__row .sheet__end {
    width: 284px;
    height: auto;
    min-height: 28px;
    flex-grow: 1;
  }
  .sheet__row .sheet__cell:nth-child(2) {
    width: 160px;
    height: 28px;
    flex-grow: 0;
    flex-shrink: 0;
  }

  body[data-page="works"] .page-hero {
    width: 780px;
    height: 472px;
    margin-left: auto;
    margin-right: auto;
    padding: 180px 0;
  }

  body[data-page="works"] .page-hero h1 {
    width: 780px;
    height: 112px;
    font-size: 140px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }

  body[data-page="about"] .page-hero {
    width: 780px;
    height: 372px;
    margin-left: auto;
    margin-right: auto;
    padding: 180px 0 80px;
  }

  body[data-page="about"] .page-hero h1 {
    width: 780px;
    height: 112px;
    font-size: 140px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }

  .contact__copy {
    width: 385px;
    height: 397px;
    align-self: stretch;
  }

  .contact__text {
    width: 240px;
    max-width: 240px;
    height: 310px;
  }

  .contact h2 {
    width: 240px;
    height: 34px;
    font-size: 24px;
  }

  .contact p {
    width: 240px;
    height: 252px;
  }

  .stories {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 780px;
    height: 610px;
    margin-left: auto;
    margin-right: auto;
    padding: 120px 40px;
    gap: 24px;
  }

  .stories h2 {
    width: 175px;
    height: 34px;
    font-size: 24px;
  }

  .stories__list {
    flex-direction: row;
    align-items: flex-start;
    align-self: stretch;
    flex-grow: 0;
    order: 1;
    width: 700px;
    height: 312px;
    padding: 0;
    gap: 24px;
  }

  .mini {
    width: 217.33px;
    max-width: 217.33px;
    height: 312px;
    flex-grow: 1;
  }

  .mini img {
    width: 217.33px;
    height: 240px;
  }

  .mini__content {
    width: 217.33px;
    height: 56px;
  }

  .mini h3 {
    width: 217.33px;
    height: 28px;
    font-size: 20px;
  }

  .mini__meta {
    height: 28px;
  }

  .mini__meta-line {
    height: 28px;
    font-size: 20px;
  }

  .mini__meta-line span {
    height: 28px;
  }
}

@media (max-width: 799px) {
  body { font-size: 18px; }

  .ticker { height: 60px; font-size: 18px; }

  .brand, .nav__spacer { display: none; }

  .nav {
    width: 100%;
    max-width: none;
    height: 51px;
    margin: 0 0 -51px;
    padding: 10px 0 0;
    justify-content: center;
  }

  .pill { height: 41px; padding: 8px 12px; font-size: 18px; }

  .hero {
    width: 100%;
    height: calc(753px * 100cqi / 355px);
    margin: 0 auto;
    gap: calc(52px * 100cqi / 355px);
    container-type: inline-size;
  }

  .hero__media {
    width: calc(753px * 100cqi / 355px);
    height: calc(415px * 100cqi / 355px);
    flex-shrink: 0;
  }

  .hero__logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    height: calc(191.4px * 100cqi / 355px);
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero__scale {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 355px;
    height: 191.4px;
    padding: 0 10px 10px;
    transform: scale(calc(100cqi / 355px));
    transform-origin: center center;
  }

  .hero__union {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero__glyphs {
    display: block;
    position: relative;
    width: 355px;
    height: 181.4px;
    flex-shrink: 0;
  }

  .hero__glyph {
    position: absolute;
    overflow: hidden;
    background-image: url("../assets/3d359793a1abae52b12c8c97e4dc6739dbe92146.svg");
    background-repeat: no-repeat;
    background-size: 609.02px 86.33px;
  }

  .hero__glyph--z { left: 0; top: 0; width: 56.35px; height: 78.9px; background-position: 0 -5.8px; }
  .hero__glyph--a1 { left: 57.69px; top: 17.29px; width: 62.51px; height: 63.24px; background-position: -57.69px -23.09px; }
  .hero__glyph--r { left: 128.35px; top: 17.46px; width: 37.18px; height: 61.45px; background-position: -128.34px -23.25px; }
  .hero__glyph--a2 { left: 165.72px; top: 17.29px; width: 62.51px; height: 63.24px; background-position: -165.71px -23.09px; }
  .hero__glyph--s { left: 0.43px; top: 100.06px; width: 54.72px; height: 80.34px; background-position: -254.48px -4.98px; }
  .hero__glyph--c { left: 56.67px; top: 118.4px; width: 46.59px; height: 62.64px; background-position: -310.72px -23.33px; }
  .hero__glyph--h { left: 111.11px; top: 95.07px; width: 57.05px; height: 84.71px; background-position: -365.15px 0; }
  .hero__glyph--u { left: 174.51px; top: 119.78px; width: 57.05px; height: 61.61px; background-position: -428.54px -24.71px; }
  .hero__glyph--l { left: 240.24px; top: 95.07px; width: 19.17px; height: 84.71px; background-position: -494.27px 0; }
  .hero__glyph--t { left: 265.01px; top: 103.77px; width: 39.5px; height: 76px; background-position: -519.03px -8.7px; }
  .hero__glyph--z2 { left: 307.37px; top: 119.78px; width: 47.64px; height: 59.99px; background-position: -561.39px -24.71px; }

  .cards,
  .intro,
  .split,
  .contact { grid-template-columns: 1fr; }

  .card { height: 460px; }
  .card__body { height: auto; min-height: 80px; }

  .view-all {
    min-height: 0;
    font-size: 40px;
    padding: 16px 24px;
  }

  .experience {
    width: 355px;
    height: 479px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 10px;
    gap: 80px;
  }
  .experience h2 {
    width: 335px;
    max-width: 360px;
    height: 51px;
    margin: 0;
    font-size: 64px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }
  .sheet {
    width: 335px;
    height: 268px;
    gap: 12px;
    overflow-x: scroll;
    font-size: 18px;
    letter-spacing: -0.02em;
  }
  .sheet__labels {
    width: 335px;
    height: 28px;
    padding: 0 10px 0 0;
    gap: 16px;
  }
  .sheet__labels .sheet__head:first-child {
    width: 149px;
    flex-grow: 1;
  }
  .sheet__labels .sheet__head:nth-child(2) {
    width: 160px;
    flex: 0 0 160px;
    text-align: right;
  }
  .sheet__labels .sheet__end { display: none; }
  .sheet__list {
    width: 335px;
    height: 228px;
  }
  .sheet__row {
    align-items: flex-start;
    width: 335px;
    height: 57px;
    gap: 16px;
  }
  .sheet__row .sheet__end { display: none; }
  .sheet__row .sheet__cell:first-child,
  .sheet__row .sheet__cell:nth-child(2) {
    width: 159.5px;
    height: 25px;
    flex-grow: 1;
    font-size: 18px;
  }
  .sheet__row .sheet__cell:nth-child(2) { text-align: right; }

  .page-hero { padding: 140px 0; }
  .page-hero h1 { font-size: 64px; }

  body[data-page="works"] .page-hero {
    width: 355px;
    height: 331px;
    margin-left: auto;
    margin-right: auto;
    padding: 140px 0;
  }

  body[data-page="works"] .page-hero h1 {
    width: 355px;
    height: 51px;
    font-size: 64px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }

  body[data-page="about"] .page-hero {
    width: 355px;
    height: 255px;
    margin-left: auto;
    margin-right: auto;
    padding: 140px 0 64px;
  }

  body[data-page="about"] .page-hero h1 {
    width: 355px;
    height: 51px;
    font-size: 64px;
    line-height: 0.8;
    letter-spacing: -0.04em;
  }

  .article-hero { padding: 140px 0 100px; }
  .article-hero h1 { font-size: 40px; }
  .article-end,
  .article-end__rule { width: 353px; }
  .article-meta { font-size: 40px; gap: 8px; }
  .article-cover {
    display: block;
    width: 100vw;
    max-width: none;
    height: calc(100vw * 206 / 375);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    flex: none;
    order: 1;
    flex-grow: 0;
    object-fit: cover;
    object-position: center;
  }

  .intro, .split { padding: 64px 20px; gap: 24px; }
  .intro p, .split p, .intro h2, .split h2 { font-size: 18px; }

  .stories {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    width: 355px;
    height: 1386px;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 10px;
    gap: 24px;
  }

  .stories h2 {
    width: 175px;
    height: 28px;
    font-size: 20px;
  }

  .stories__list {
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    flex-grow: 0;
    order: 1;
    width: 335px;
    height: 1206px;
    padding: 0;
    gap: 24px;
  }

  .mini {
    align-self: stretch;
    flex-grow: 0;
    width: 335px;
    max-width: 335px;
    height: 386px;
  }

  .mini img {
    width: 335px;
    height: 320px;
  }

  .mini__content {
    width: 335px;
    height: 50px;
  }

  .mini h3 {
    width: 335px;
    height: 25px;
    font-size: 18px;
  }

  .mini__meta {
    height: 25px;
  }

  .mini__meta-line {
    height: 25px;
    font-size: 18px;
  }

  .mini__meta-line span {
    height: 25px;
  }

  .marquee-lg { padding: 64px 0; }
  .marquee-lg p { font-size: 40px; }

  .subscribe {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    padding: 100px 40px 40px;
    width: 375px;
    height: 634px;
  }
  .subscribe__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 64px;
    width: 295px;
    max-width: 1400px;
    height: 494px;
  }
  .holes {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 0;
    width: 295px;
    height: 52px;
  }
  .subscribe__card > .holes:first-child {
    border-right: 0;
    border-bottom: 1.5px dashed #0f0e0e;
  }
  .subscribe__card > .holes:last-child {
    border-left: 0;
    border-top: 1.5px dashed #0f0e0e;
  }
  .holes span {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    flex: none;
  }
  .subscribe__copy {
    padding: 0 40px;
    width: 295px;
    height: 262px;
  }
  .subscribe__copy > div {
    width: 215px;
    height: 174px;
  }
  .subscribe h2 {
    width: 215px;
    height: 108px;
    font-size: 40px;
    line-height: 0.9;
  }
  .subscribe__copy p {
    width: 215px;
    height: 50px;
    font-size: 18px;
    line-height: 1.4;
    font-feature-settings: "ss01" on, "ss03" on;
  }
  .connect {
    padding: 0 16px;
    width: 103px;
    height: 56px;
    font-size: 18px;
    line-height: 1.4;
    font-feature-settings: "ss01" on, "ss03" on;
  }
  .connect span {
    width: auto;
    height: auto;
    font-size: 18px;
  }

  .footer {
    gap: 80px;
    padding: 40px 20px 20px;
  }
  .footer__wordmark { max-width: 335px; }
  .footer__side {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }
  .footer__links, .footer__meta { align-items: flex-start; text-align: left; }
  .footer__links a { font-weight: 400; font-size: 18px; }
  .footer__meta { font-size: 14px; }

  .portraits {
    overflow: hidden;
    height: 215px;
    padding: 0;
  }
  .portraits__track {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    flex: none;
    flex-grow: 0;
    width: max-content;
    height: 215px;
    padding: 20px 36px 20px 0;
    gap: 18px;
  }
  .portraits img {
    width: 96px;
    height: 175px;
    flex: none;
    flex-grow: 0;
    max-width: none;
    object-fit: cover;
  }
  .portraits img:nth-child(6) { margin-right: 18px; }

  .contact { padding: 0 10px 80px; }
  .contact img { min-height: 440px; height: 440px; }
  .contact__copy {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-grow: 0;
    width: 355px;
    height: 282px;
    padding: 0 40px;
  }
  .contact__text {
    flex-grow: 1;
    width: 275px;
    max-width: 400px;
    height: 282px;
  }
  .contact h2 {
    width: 275px;
    height: 34px;
    font-size: 20px;
  }
  .contact p {
    width: 275px;
    height: 224px;
  }
}

/* Cookie consent — home page */

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 40;
  color-scheme: light;
  -webkit-forced-color-adjust: none;
  forced-color-adjust: none;
  background: #ffffff;
  color: #555659;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: normal;
}

.cookie[hidden] { display: none !important; }

.cookie__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.cookie__panel[hidden] { display: none !important; }

/* Do not use min-width:0 here — Safari can collapse this flex/grid item to 0
   while the button group still lays out, which hides the notice but keeps buttons. */
.cookie__copy {
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 760px;
  color: #555659;
}

.cookie__text {
  margin: 0;
  color: #555659;
  -webkit-text-fill-color: #555659;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: normal;
}

.cookie__choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 760px;
}

.cookie__option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f0e0e;
  -webkit-text-fill-color: #0f0e0e;
  font-weight: 600;
}

.cookie__option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0f0e0e;
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #0f0e0e;
  border-radius: 999px;
  background: #ffffff;
  color: #0f0e0e;
  -webkit-text-fill-color: #0f0e0e;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01" on, "ss03" on;
}

.cookie__btn--primary {
  background: #0f0e0e;
  color: #f6f8fb;
  -webkit-text-fill-color: #f6f8fb;
}

@media (max-width: 799px) {
  .cookie__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .cookie__copy,
  .cookie__choice {
    flex-basis: auto;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .cookie__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie__btn { flex: 1 1 auto; }
}
