:root {
  --ink: #0b0b0b;
  --paper: #f2f0e9;
  --red: #df4641;
  --yellow: #f6ae17;
  --pink: #bd3e98;
  --blue: #279cbc;
  --muted: #92908a;
  --line: rgba(242, 240, 233, .2);
  --pad: clamp(22px, 5vw, 78px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
button { font: inherit; }
::selection { background: var(--yellow); color: #111; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 30px;
  align-items: center;
  background: rgba(11, 11, 11, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.logo { width: max-content; }
.logo img { width: 62px; height: 58px; object-fit: contain; }
.topbar nav { display: flex; gap: 28px; font: 500 11px "DM Mono", monospace; text-transform: uppercase; }
.topbar nav a { position: relative; }
.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: .25s;
}
.topbar nav a:hover::after { width: 100%; }
.lang-switch { display: flex; gap: 7px; font: 500 11px "DM Mono", monospace; }
.lang-switch a, .lang-switch span {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
}
.lang-switch a:hover { border-color: var(--yellow); color: var(--yellow); }
.lang-switch [aria-current="page"] { color: #111; background: var(--yellow); border-color: var(--yellow); }
.back {
  padding: 12px 16px;
  color: #111;
  background: var(--paper);
  font: 700 11px "DM Mono", monospace;
  text-transform: uppercase;
}
.back b { margin-left: 16px; color: var(--pink); }
.menu { display: none; border: 0; background: none; color: white; }

.hero {
  min-height: 100svh;
  padding: 145px var(--pad) 70px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 5vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
}
.hero::before {
  content: "P";
  position: absolute;
  right: -1vw;
  top: 5vh;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  font-size: min(65vw, 920px);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 2; min-width: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: #aaa;
  font: 500 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow i { width: 34px; height: 2px; background: var(--yellow); }
.hero h1 {
  margin: 48px 0 30px;
  font-size: clamp(70px, 8vw, 138px);
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 em {
  display: block;
  margin: 18px 0 0 11vw;
  color: var(--yellow);
  font-family: "Instrument Serif", serif;
  font-size: .54em;
  font-weight: 400;
  letter-spacing: -.03em;
  text-transform: none;
}
.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #bbb;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 42px; }
.primary {
  padding: 17px 21px;
  color: #111;
  background: var(--yellow);
  font: 700 11px "DM Mono", monospace;
  text-transform: uppercase;
}
.primary span { margin-left: 24px; color: var(--pink); }
.text-link { font: 500 11px "DM Mono", monospace; text-transform: uppercase; border-bottom: 1px solid #666; padding-bottom: 5px; }
.hero-frame {
  position: relative;
  height: min(72vh, 780px);
  margin-left: auto;
  isolation: isolate;
}
.hero-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -17px 17px 17px -17px;
  border: 2px solid var(--blue);
}
.hero-frame img { height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(.78) contrast(1.04); }
.hero-stamp {
  position: absolute;
  right: -32px;
  bottom: 38px;
  padding: 15px 18px;
  color: #fff;
  background: var(--red);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.coordinates {
  position: absolute;
  right: 0;
  top: -36px;
  color: #777;
  font: 400 9px "DM Mono", monospace;
}
.color-code { position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; height: 10px; }
.color-code i:nth-child(1) { background: var(--red); }
.color-code i:nth-child(2) { background: var(--yellow); }
.color-code i:nth-child(3) { background: var(--pink); }
.color-code i:nth-child(4) { background: var(--blue); }

.ticker { height: 64px; display: flex; overflow: hidden; align-items: center; color: #111; background: var(--yellow); transform: rotate(-1deg); width: 102%; margin-left: -1%; }
.ticker div { display: flex; align-items: center; white-space: nowrap; animation: ticker 27s linear infinite; }
.ticker span { margin: 0 28px; font-size: 14px; font-weight: 800; }
.ticker b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-100%); } }

.section-kicker { display: flex; align-items: center; gap: 18px; color: #777; font: 500 11px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .11em; }
.section-kicker span { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.section-kicker.light { color: #999; }

.manifest { padding: 135px var(--pad); color: #111; background: var(--paper); }
.manifest h2 {
  max-width: 1500px;
  margin: 75px 0 100px;
  font-size: clamp(54px, 8vw, 126px);
  line-height: .9;
  letter-spacing: -.075em;
}
.manifest h2 em { color: var(--red); font-family: "Instrument Serif", serif; font-weight: 400; }
.manifest-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; padding-top: 36px; border-top: 1px solid #bbb; }
.manifest-quote { margin: 0; color: var(--pink); font-family: "Instrument Serif", serif; font-size: clamp(30px, 3vw, 48px); line-height: 1.12; }
.manifest-bio { margin: 0; font-size: 18px; line-height: 1.68; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid #bbb; }
.fact { min-height: 190px; padding: 26px 24px; border-right: 1px solid #bbb; }
.fact:first-child { padding-left: 0; }
.fact strong { display: block; color: var(--blue); font-size: clamp(40px, 5vw, 72px); letter-spacing: -.06em; }
.fact span { font: 500 11px "DM Mono", monospace; text-transform: uppercase; }

.domains { padding: 135px var(--pad); }
.domains-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.domains h2, .timeline h2, .music-copy h2, .screen h2, .education h2, .contact h2 {
  margin: 58px 0 0;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
}
.domains h2 em, .timeline h2 em, .music-copy h2 em, .education h2 em {
  color: var(--yellow);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.domains-head > p { color: #aaa; font-size: 17px; line-height: 1.65; }
.domain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 95px; background: var(--line); border: 1px solid var(--line); }
.domain {
  min-height: 350px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.domain::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 190px; height: 190px; border: 1px solid var(--domain); border-radius: 50%; transition: .5s; }
.domain:hover::after { transform: scale(1.35); background: var(--domain); opacity: .18; }
.domain > b { color: var(--domain); font: 500 12px "DM Mono", monospace; }
.domain h3 { margin: 75px 0 20px; font-size: clamp(31px, 3.4vw, 52px); letter-spacing: -.05em; }
.domain p { max-width: 580px; margin: 0; color: #999; font-size: 15px; line-height: 1.6; }

.timeline { padding: 135px var(--pad); color: #111; background: #dedbd2; }
.timeline h2 em { color: var(--pink); }
.timeline-list { margin-top: 95px; border-top: 1px solid #999; }
.timeline-item {
  display: grid;
  grid-template-columns: 150px .85fr 1.15fr;
  gap: 4vw;
  padding: 34px 0;
  border-bottom: 1px solid #aaa;
  align-items: start;
}
.timeline-item > b { color: var(--pink); font: 500 12px "DM Mono", monospace; }
.timeline-item h3 { margin: 0; font-size: clamp(25px, 3vw, 42px); letter-spacing: -.04em; }
.timeline-item p { max-width: 670px; margin: 0; color: #5f5d58; line-height: 1.65; }
.experience-photo {
  margin: 20px 0 55px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  color: #111;
  background: var(--yellow);
}
.experience-photo img { min-height: 480px; height: 100%; object-fit: cover; }
.experience-photo figcaption { padding: clamp(35px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.experience-photo figcaption > b { font: 500 11px "DM Mono", monospace; letter-spacing: .08em; }
.experience-photo h3 { margin: 65px 0 22px; font-size: clamp(38px, 5vw, 70px); line-height: .9; letter-spacing: -.065em; }
.experience-photo h3 em { color: var(--pink); font-family: "Instrument Serif", serif; font-weight: 400; }
.experience-photo p { margin: 0; max-width: 580px; line-height: 1.65; }
.project-moment {
  margin: 80px 0 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  color: #fff;
  background: var(--red);
}
.project-moment img {
  min-height: 620px;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.project-moment figcaption {
  padding: clamp(38px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-moment figcaption > b {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-moment h3 {
  margin: 75px 0 25px;
  font-size: clamp(43px, 6vw, 88px);
  line-height: .88;
  letter-spacing: -.07em;
}
.project-moment h3 em {
  color: var(--yellow);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.project-moment p { max-width: 620px; margin: 0; line-height: 1.65; }
.project-people {
  margin-top: 55px;
  padding-top: 24px;
  display: grid;
  gap: 11px;
  border-top: 1px solid rgba(255,255,255,.45);
  font: 500 11px "DM Mono", monospace;
  text-transform: uppercase;
}
.project-people span::before { content: "↗"; margin-right: 12px; color: var(--yellow); }

.music { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 900px; background: #121212; }
.music-image { position: relative; min-height: 780px; }
.music-image img { height: 100%; object-fit: cover; }
.music-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 72%, #121212); }
.music-image span { position: absolute; z-index: 2; left: 25px; bottom: 25px; padding: 10px 12px; background: var(--blue); font: 500 10px "DM Mono", monospace; text-transform: uppercase; }
.music-copy { padding: 120px 7vw; align-self: center; }
.music-copy > p { margin-top: 50px; color: #aaa; font-size: 17px; line-height: 1.7; }
.music-list { margin-top: 45px; border-top: 1px solid var(--line); }
.music-list span { display: flex; justify-content: space-between; gap: 25px; padding: 17px 0; color: #aaa; border-bottom: 1px solid var(--line); font: 500 11px "DM Mono", monospace; text-transform: uppercase; }
.music-list b { color: var(--yellow); }
.mandolin-feature {
  grid-column: 1 / -1;
  margin: 0;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  color: #111;
  background: var(--yellow);
}
.mandolin-feature img {
  width: 100%;
  min-height: 560px;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mandolin-feature > div {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--yellow);
}
.mandolin-feature b {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .07em;
}
.mandolin-feature h3 {
  margin: 65px 0 25px;
  font-size: clamp(45px, 6vw, 92px);
  line-height: .86;
  letter-spacing: -.07em;
}
.mandolin-feature h3 em {
  color: var(--pink);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.mandolin-feature p {
  max-width: 540px;
  margin: 0;
  line-height: 1.65;
}

.archive {
  padding: 135px var(--pad);
  color: #111;
  background: var(--paper);
}
.archive-head {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: end;
}
.archive h2 {
  margin: 58px 0 0;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
}
.archive h2 em {
  color: var(--red);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.archive-head > p {
  margin: 0;
  color: #65635d;
  font-size: 17px;
  line-height: 1.68;
}
.archive-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.archive-card {
  grid-column: span 6;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.archive-card--portrait { grid-column: span 5; }
.archive-card--narrow { grid-column: span 5; }
.archive-card--graduate { grid-column: span 7; }
.archive-card--wide { grid-column: span 8; }
.archive-card--compact { grid-column: span 4; }
.archive-card--full { grid-column: 1 / -1; }
.archive-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.archive-card--portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 20%;
}
.archive-card--graduate img {
  aspect-ratio: 7 / 5;
  object-position: center 38%;
}
.archive-card--compact img { aspect-ratio: 5 / 4; }
.archive-card:hover img { transform: scale(1.025); filter: saturate(1.08); }
.archive-card figcaption {
  flex: 1;
  padding: clamp(24px, 3vw, 42px);
  border-top: 7px solid var(--card-accent, var(--yellow));
}
.archive-card:nth-child(4n + 1) { --card-accent: var(--yellow); }
.archive-card:nth-child(4n + 2) { --card-accent: var(--blue); }
.archive-card:nth-child(4n + 3) { --card-accent: var(--red); }
.archive-card:nth-child(4n + 4) { --card-accent: var(--pink); }
.archive-card b {
  color: var(--card-accent);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .06em;
}
.archive-card h3 {
  margin: 20px 0 13px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: .98;
  letter-spacing: -.05em;
}
.archive-card p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.62;
}
.encounters {
  margin-top: 110px;
  padding-top: 34px;
  border-top: 1px solid #aaa;
}
.encounters-title {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 5vw;
  align-items: start;
}
.encounters-title span {
  color: var(--pink);
  font: 500 11px "DM Mono", monospace;
}
.encounters-title h3 {
  margin: 0;
  font-size: clamp(35px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.06em;
}
.encounters-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.encounter {
  min-width: 0;
  margin: 0;
  background: #dedbd2;
}
.encounter img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.82);
}
.encounter:nth-child(2) img { object-position: center 28%; }
.encounter figcaption {
  min-height: 78px;
  padding: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.screen { padding: 135px var(--pad); color: #fff; background: var(--pink); overflow: hidden; position: relative; }
.screen::before { content: "ACTION"; position: absolute; right: -1vw; top: 3vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12); font-size: 20vw; font-weight: 900; }
.screen .section-kicker { color: rgba(255,255,255,.75); position: relative; z-index: 1; }
.screen h2 { max-width: 1120px; position: relative; z-index: 1; }
.screen h2 em { color: var(--yellow); font-family: "Instrument Serif", serif; font-weight: 400; }
.screen-intro { max-width: 720px; margin: 42px 0 80px auto; font-size: 17px; line-height: 1.65; position: relative; z-index: 1; }
.film-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1; }
.film-card { min-width: 0; color: #fff; background: #111; }
.film-card img { aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.7) contrast(1.08); }
.film-copy { min-height: 145px; padding: 23px; }
.film-copy b { color: var(--yellow); font: 500 10px "DM Mono", monospace; text-transform: uppercase; }
.film-copy h3 { margin: 15px 0 0; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.035em; }
.film-copy p { margin: 12px 0 0; color: #aaa; font-size: 13px; line-height: 1.5; }
.video-stage { margin-top: 18px; display: grid; grid-template-columns: .6fr 1.4fr; background: var(--yellow); color: #111; position: relative; z-index: 1; }
.video-copy { padding: clamp(30px, 5vw, 72px); display: flex; flex-direction: column; justify-content: space-between; }
.video-copy b { font: 500 11px "DM Mono", monospace; text-transform: uppercase; }
.video-copy h3 { margin: 60px 0 20px; font-size: clamp(44px, 6vw, 92px); line-height: .86; letter-spacing: -.07em; }
.video-copy p { margin: 0; line-height: 1.6; }
.video-wrap { min-height: 520px; position: relative; background: #050505; display: grid; place-items: center; overflow: hidden; }
.video-wrap video { width: 100%; height: 100%; max-height: 700px; object-fit: contain; }
.video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(39,156,188,.85), transparent 24%),
    radial-gradient(circle at 25% 80%, rgba(223,70,65,.85), transparent 27%),
    #0b0b0b;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity .45s, visibility .45s;
}
.video-cover::before, .video-cover::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.video-cover::after { width: 390px; height: 390px; }
.video-cover span { width: 110px; height: 110px; display: grid; place-items: center; color: #111; background: var(--yellow); border-radius: 50%; font: 800 12px "DM Mono", monospace; }
.video-wrap.playing .video-cover { opacity: 0; visibility: hidden; }

.education { padding: 135px var(--pad); color: #111; background: var(--paper); }
.education h2 em { color: var(--blue); }
.education-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 90px; }
.degree { min-width: 0; color: #fff; background: #111; position: relative; overflow: hidden; }
.degree:nth-child(2) { background: var(--blue); }
.degree-copy { min-height: 390px; padding: 38px; }
.degree-copy > span { font: 500 11px "DM Mono", monospace; }
.degree h3 { margin: 85px 0 18px; font-size: clamp(35px, 4vw, 62px); line-height: .93; letter-spacing: -.055em; }
.degree p { max-width: 520px; margin: 0; color: #aaa; line-height: 1.6; }
.degree:nth-child(2) p { color: rgba(255,255,255,.75); }
.degree-photo {
  width: calc(100% - 76px);
  max-width: 520px;
  height: 310px;
  margin: 0 auto 38px;
  padding: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border-top: 7px solid var(--yellow);
}
.degree:nth-child(2) .degree-photo {
  border-color: #fff;
  background: rgba(0,0,0,.12);
}
.degree-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.motto { max-width: 1150px; margin: 90px auto 0; text-align: center; font-family: "Instrument Serif", serif; font-size: clamp(37px, 5vw, 74px); line-height: 1.08; }
.motto::before { content: "“"; color: var(--red); }
.motto::after { content: "”"; color: var(--red); }

.runner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  color: #fff;
  background: var(--red);
}
.runner-photo {
  min-height: 760px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.runner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 38%);
  pointer-events: none;
}
.runner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.runner-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 26px;
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .08em;
}
.runner-copy {
  padding: clamp(75px, 8vw, 135px) clamp(38px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.runner .section-kicker,
.contact .section-kicker {
  color: #fff;
  font-weight: 700;
}
.runner .section-kicker span,
.contact .section-kicker span {
  color: #111;
  background: var(--yellow);
  border-color: var(--yellow);
}
.runner h2 {
  margin: 58px 0 0;
  font-size: clamp(50px, 6.4vw, 104px);
  line-height: .9;
  letter-spacing: -.07em;
}
.runner h2 em {
  color: var(--yellow);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.runner-copy > p {
  max-width: 660px;
  margin: 55px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.72;
}
.runner-principle {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.42);
  color: var(--yellow);
  font: 500 12px/1.6 "DM Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact { padding: 130px var(--pad) 48px; color: #fff; background: var(--pink); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 50vw; height: 50vw; right: -15vw; top: -18vw; border: 1px solid rgba(255,255,255,.2); border-radius: 45% 55% 63% 37%; animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact h2 { position: relative; z-index: 1; }
.contact h2 em { color: var(--yellow); font-family: "Instrument Serif", serif; font-weight: 400; }
.contact-mail { margin-top: 90px; padding: 25px 0; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.5); font-size: clamp(26px, 5vw, 72px); letter-spacing: -.05em; position: relative; z-index: 1; }
.contact-mail b { width: 76px; height: 76px; display: grid; place-items: center; color: #111; background: var(--yellow); border-radius: 50%; font-size: 30px; }
.contact-meta { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; font: 500 12px "DM Mono", monospace; position: relative; z-index: 1; }
.contact-meta span { text-align: right; }

footer { min-height: 195px; padding: 62px var(--pad) 30px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; color: #777; background: var(--ink); font: 400 11px "DM Mono", monospace; }
footer a:first-child { color: #fff; font: 800 16px Inter, sans-serif; }
footer p { margin: 0; line-height: 1.6; }
footer a:last-child { color: #fff; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .topbar { grid-template-columns: 1fr auto auto auto; gap: 18px; }
  .topbar nav { gap: 16px; }
  .hero { grid-template-columns: 1fr .7fr; }
  .hero h1 { font-size: clamp(58px, 8vw, 92px); }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact { border-bottom: 1px solid #bbb; }
  .film-grid { grid-template-columns: 1fr 1fr; }
  .video-stage { grid-template-columns: 1fr; }
  .video-wrap { min-height: 480px; }
}

@media (max-width: 760px) {
  .topbar { height: 72px; padding: 0 20px; grid-template-columns: 1fr auto auto; gap: 10px; }
  .topbar nav, .back { display: none; }
  .menu { display: block; width: 42px; height: 38px; position: relative; }
  .menu span { position: absolute; right: 0; top: 13px; width: 27px; height: 1px; background: #fff; }
  .menu span:last-child { top: 23px; }
  .topbar nav.open { display: flex; position: absolute; top: 72px; left: 0; width: 100%; height: calc(100vh - 72px); padding: 45px 22px; flex-direction: column; gap: 28px; background: var(--ink); font-size: 27px; }
  .logo img { width: 52px; height: 48px; }
  .lang-switch { gap: 4px; }
  .lang-switch a, .lang-switch span { min-width: 28px; height: 28px; font-size: 10px; }
  .hero { padding: 110px 20px 55px; grid-template-columns: 1fr; gap: 75px; }
  .hero h1 { max-width: 100%; margin-top: 35px; font-size: clamp(46px, 13vw, 64px); line-height: .88; }
  .hero h1 span { max-width: 100%; white-space: nowrap; }
  .hero h1 em { max-width: 100%; margin: 18px 0 0; font-size: .62em; line-height: 1; white-space: normal; }
  .hero-lead { max-width: 100%; font-size: 16px; overflow-wrap: anywhere; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-frame { width: 100%; height: auto; min-height: 0; margin: 0; aspect-ratio: 3 / 4; background: #070707; }
  .hero-frame::before { inset: -10px 10px 10px -10px; }
  .hero-frame img { object-fit: contain; object-position: center; }
  .hero-stamp { right: 10px; bottom: 18px; max-width: calc(100% - 20px); padding: 12px 14px; font-size: 9px; }
  .ticker { height: 54px; }
  .manifest, .domains, .timeline, .archive, .screen, .education, .contact { padding: 90px 20px; }
  .manifest h2 { margin: 58px 0 75px; font-size: 50px; }
  .manifest-grid, .domains-head { grid-template-columns: 1fr; gap: 45px; }
  .manifest-bio { font-size: 16px; }
  .facts { margin-top: 65px; }
  .fact { min-height: 155px; padding: 22px 15px; }
  .fact:nth-child(odd) { padding-left: 0; }
  .fact strong { font-size: 43px; }
  .domains h2, .timeline h2, .music-copy h2, .archive h2, .screen h2, .education h2, .contact h2 { font-size: 51px; }
  .domain-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .domain { min-height: 300px; padding: 28px 22px; }
  .domain h3 { margin-top: 55px; }
  .timeline-list { margin-top: 65px; }
  .timeline-item { grid-template-columns: 1fr; gap: 13px; }
  .experience-photo { margin-bottom: 45px; grid-template-columns: 1fr; }
  .experience-photo img { min-height: 510px; }
  .experience-photo figcaption { padding: 42px 22px; }
  .experience-photo h3 { margin-top: 50px; font-size: 48px; }
  .project-moment { margin-top: 60px; grid-template-columns: 1fr; }
  .project-moment img { min-height: 540px; }
  .project-moment figcaption { padding: 45px 22px; }
  .project-moment h3 { margin-top: 55px; font-size: 54px; }
  .music { grid-template-columns: 1fr; min-height: 0; }
  .music-image { min-height: 590px; }
  .music-image::after { background: linear-gradient(0deg, #121212, transparent 25%); }
  .music-copy { padding: 85px 20px; }
  .mandolin-feature { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .mandolin-feature img { height: auto; min-height: 0; aspect-ratio: 4 / 3; object-fit: cover; }
  .mandolin-feature > div { min-height: 480px; padding: 45px 22px; }
  .mandolin-feature h3 { margin-top: 50px; font-size: 54px; }
  .archive-head { grid-template-columns: 1fr; gap: 42px; }
  .archive-grid { grid-template-columns: 1fr; margin-top: 65px; gap: 14px; }
  .archive-card,
  .archive-card--portrait,
  .archive-card--narrow,
  .archive-card--graduate,
  .archive-card--wide,
  .archive-card--compact,
  .archive-card--full { grid-column: auto; }
  .archive-card img,
  .archive-card--graduate img,
  .archive-card--compact img { aspect-ratio: 4 / 3; }
  .archive-card--portrait img { aspect-ratio: 4 / 5; }
  .archive-card figcaption { padding: 25px 21px 30px; }
  .archive-card h3 { font-size: 31px; }
  .archive-card p { font-size: 15px; }
  .encounters { margin-top: 75px; }
  .encounters-title { grid-template-columns: 1fr; gap: 20px; }
  .encounters-title h3 { font-size: 42px; }
  .encounters-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 40px; }
  .encounter figcaption { min-height: 70px; padding: 15px; font-size: 13px; }
  .film-grid { grid-template-columns: 1fr; }
  .film-card:last-child { grid-column: auto; }
  .film-copy { min-height: 125px; }
  .screen-intro { margin: 35px 0 60px; }
  .video-copy { padding: 45px 22px; }
  .video-copy h3 { margin-top: 55px; font-size: 57px; }
  .video-wrap { min-height: 360px; }
  .video-cover::before { width: 210px; height: 210px; }
  .video-cover::after { width: 285px; height: 285px; }
  .video-cover span { width: 90px; height: 90px; }
  .education-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .degree-copy { min-height: 0; padding: 28px 22px; }
  .degree h3 { margin-top: 70px; }
  .degree-photo { width: calc(100% - 44px); height: 300px; margin-bottom: 22px; padding: 10px; }
  .motto { margin-top: 65px; }
  .runner { grid-template-columns: 1fr; }
  .runner-photo { min-height: 0; aspect-ratio: 3 / 4; }
  .runner-copy { padding: 80px 20px 90px; }
  .runner h2 { margin-top: 55px; font-size: 51px; }
  .runner-copy > p { margin-top: 45px; font-size: 16px; }
  .runner-principle { margin-top: 38px; }
  .contact-mail { margin-top: 65px; font-size: 25px; }
  .contact-mail b { width: 55px; height: 55px; font-size: 22px; }
  .contact-meta { grid-template-columns: 1fr; gap: 18px; font-size: 12px; }
  .contact-meta span { text-align: left; }
  footer { grid-template-columns: 1fr; padding: 52px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
