:root {
  --night: #0c1012;
  --night-soft: #141a1e;
  --slate: #505a60;
  --slate-light: #626b70;
  --mist: #d9ddde;
  --ivory: #f0ede7;
  --muted: #a9b0b3;
  --warm: #c2a27f;
  --cold: #aeb9bd;
  --line: rgba(240, 237, 231, 0.18);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ivory);
  background: var(--night);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--night); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1.05em; fill: none; stroke: currentColor; stroke-width: 1.45; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 76px;
  padding: 0 clamp(22px, 4vw, 66px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7, 10, 12, .8), transparent);
}

.monogram { font-size: 14px; font-weight: 500; line-height: 1; letter-spacing: .2em; }
nav { display: flex; gap: 38px; }
nav a,
.language { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
nav a { color: rgba(240, 237, 231, .68); transition: color .2s; }
nav a:hover { color: var(--ivory); }
.language { justify-self: end; display: flex; align-items: center; gap: 7px; color: rgba(240, 237, 231, .42); }
.language button { appearance: none; border: 0; padding: 5px 0; color: inherit; background: none; cursor: pointer; }
.language button.active { color: var(--ivory); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 104px clamp(24px, 5vw, 82px) 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 20%, rgba(89, 107, 116, .2), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(194, 162, 127, .09), transparent 27%),
    linear-gradient(145deg, #0b0f11, #11171a 56%, #0a0e10);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 76px clamp(24px, 4vw, 66px) 28px;
  border: 1px solid rgba(240, 237, 231, .045);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 237, 231, .08), transparent);
}

.hero-heading {
  width: min(100%, 1320px);
  margin-bottom: 21px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(26px, 5vw, 82px);
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--warm);
}
.hero .eyebrow { margin: 0 0 .38em; white-space: nowrap; }

.hero h1 {
  margin: 0;
  justify-self: end;
  white-space: nowrap;
  font-size: clamp(31px, 3.55vw, 56px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.045em;
  color: #f4f1eb;
}

.showreel {
  width: min(100%, 1320px);
  margin: 0;
  position: relative;
  z-index: 2;
}
.showreel-head {
  min-height: 36px;
  padding: 0 1px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid rgba(240, 237, 231, .23);
}
.showreel-head p {
  margin: 9px 0 0;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: rgba(226, 230, 231, .55);
}
.showreel-head p:last-child { text-align: right; color: rgba(226, 230, 231, .34); }
.showreel-number { margin-right: 16px; color: var(--warm); }
.showreel-screen {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #050708;
  border: 1px solid rgba(240, 237, 231, .16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}
.showreel-screen::before,
.showreel-screen::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--warm);
  opacity: .44;
  pointer-events: none;
}
.showreel-screen::before { left: 0; }
.showreel-screen::after { right: 0; }
.showreel iframe { display: block; width: 100%; height: 100%; border: 0; }
.showreel figcaption {
  min-height: 35px;
  padding: 10px 1px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(240, 237, 231, .66);
}
.showreel figcaption > span { color: var(--warm); }
.showreel figcaption a { display: inline-flex; align-items: center; gap: 11px; color: rgba(240, 237, 231, .48); transition: color .2s; }
.showreel figcaption a:hover { color: var(--ivory); }

.hero-footer {
  width: min(100%, 1320px);
  margin-top: 25px;
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(340px, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
}
.statement {
  margin: 0;
  display: flex;
  gap: 13px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(240, 237, 231, .73);
}
.statement span + span::before { content: '—'; margin-right: 13px; color: rgba(240, 237, 231, .28); }

.intro {
  max-width: 540px;
  margin: 0;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .005em;
  color: rgba(226, 230, 231, .72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 23px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.primary { border: 1px solid rgba(240, 237, 231, .52); backdrop-filter: blur(8px); }
.primary:hover { background: var(--ivory); border-color: var(--ivory); color: var(--night); }
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 237, 231, .48);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue span { width: 35px; height: 1px; background: currentColor; }

.profile {
  padding: clamp(105px, 11vw, 170px) clamp(24px, 8vw, 140px);
  background: var(--night);
  color: var(--ivory);
  position: relative;
}
.profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(24px, 8vw, 140px);
  right: clamp(24px, 8vw, 140px);
  height: 1px;
  background: linear-gradient(90deg, var(--warm), rgba(240, 237, 231, .18) 22%, rgba(240, 237, 231, .04));
}

.section-heading { max-width: 820px; }
.section-heading h2,
.contact h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -.025em;
  color: var(--mist);
  position: relative;
  padding-left: clamp(24px, 3vw, 44px);
}
.section-heading h2::before,
.contact h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: .18em;
  bottom: .14em;
  width: 1px;
  background: var(--warm);
  opacity: .72;
}

.profile-grid {
  margin-top: clamp(56px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(390px, 1.1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 125px);
}
.profile-portrait { margin: 0; position: relative; }
.profile-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 31% center;
  filter: saturate(.72) contrast(1.06) brightness(.91);
}
.profile-portrait figcaption {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(226, 230, 231, .39);
}
.profile-portrait figcaption span { color: var(--warm); }
.profile-details { padding-top: clamp(8px, 2vw, 30px); }
.profile-copy > p:first-child {
  max-width: 650px;
  margin: 0;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 300;
  line-height: 1.66;
  color: rgba(226, 230, 231, .78);
}
.facts { margin: clamp(42px, 5vw, 70px) 0 0; }
.facts div { padding: 20px 0; border-top: 1px solid var(--line); }
.facts div:last-child { border-bottom: 1px solid var(--line); }
.facts dt { margin-bottom: 8px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(194, 162, 127, .78); }
.facts dd { margin: 0; font-size: clamp(15px, 1.35vw, 19px); font-weight: 300; line-height: 1.45; }

.work { padding-top: clamp(115px, 14vw, 200px); scroll-margin-top: 50px; }
.work > .kicker { margin-bottom: 28px; }
.credits { border-top: 1px solid rgba(240, 237, 231, .28); counter-reset: selected-work; }
.credit {
  position: relative;
  counter-increment: selected-work;
  display: grid;
  grid-template-columns: 85px 1fr minmax(260px, .7fr);
  align-items: baseline;
  gap: 34px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
  transition-delay: var(--delay, 0ms);
}
.credit::after {
  content: '0' counter(selected-work);
  position: absolute;
  right: 0;
  top: 13px;
  font-size: 8px;
  letter-spacing: .18em;
  color: rgba(194, 162, 127, .48);
}
.credit:hover { padding-left: 13px; padding-right: 13px; background: rgba(98, 107, 112, .1); }
.year { font-size: 10px; letter-spacing: .16em; color: rgba(226, 230, 231, .45); }
.credit h3 { margin: 0; font-size: clamp(20px, 2.05vw, 30px); font-weight: 300; line-height: 1.25; letter-spacing: -.025em; }
.credit p { margin: 0; color: rgba(226, 230, 231, .56); line-height: 1.5; }
.credit p span { display: block; margin-bottom: 5px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: rgba(226, 230, 231, .32); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240, 237, 231, .42);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact {
  min-height: 86svh;
  padding: clamp(100px, 11vw, 165px) clamp(24px, 8vw, 140px) 28px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 14% 30%, rgba(194, 162, 127, .1), transparent 28%),
    linear-gradient(125deg, #4b565c, var(--slate) 54%, #465157);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: 'MKP';
  position: absolute;
  right: -1vw;
  top: -5vw;
  font-size: clamp(170px, 28vw, 430px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.1em;
  color: rgba(12, 16, 18, .075);
  pointer-events: none;
}
.contact-inner { margin: auto 0; max-width: 950px; position: relative; z-index: 1; }
.contact .kicker { color: #ddd0c0; }
.contact h2 { color: var(--ivory); }
.contact-inner > p:not(.kicker):not(.represented) {
  max-width: 660px;
  margin: 29px 0 37px;
  color: rgba(240, 237, 231, .72);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.light { background: var(--ivory); color: var(--night); }
.light:hover { background: #fff; }
.ghost { border: 1px solid rgba(240, 237, 231, .4); }
.ghost:hover { border-color: var(--ivory); }
.represented { margin-top: 27px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(240, 237, 231, .58); }
footer {
  position: relative;
  z-index: 1;
  margin-top: 95px;
  padding-top: 20px;
  border-top: 1px solid rgba(240, 237, 231, .24);
  display: flex;
  justify-content: space-between;
  color: rgba(240, 237, 231, .62);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s cubic-bezier(.2, .68, .24, 1), transform .9s cubic-bezier(.2, .68, .24, 1); }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 68px; }
  nav { display: none; }
  .hero { min-height: auto; padding: 94px 24px 62px; align-items: stretch; }
  .hero::before { inset: 67px 13px 18px; }
  .hero-heading { display: block; margin-bottom: 22px; }
  .hero .eyebrow { margin: 0 0 13px; }
  .hero h1 { justify-self: auto; font-size: clamp(25px, 6.15vw, 43px); }
  .showreel-head p:last-child { display: none; }
  .hero-footer { grid-template-columns: 1fr; align-items: start; gap: 19px; margin-top: 22px; }
  .statement { flex-wrap: wrap; gap: 6px 10px; }
  .statement span + span::before { margin-right: 10px; }
  .intro { max-width: 560px; }
  .scroll-cue { margin-top: 3px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-portrait { max-width: 610px; }
  .profile-portrait img { aspect-ratio: 16 / 10; object-position: 31% center; }
  .profile-details { padding-top: 0; }
  .credit { grid-template-columns: 58px 1fr; gap: 18px; }
  .credit p { grid-column: 2; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(19px, 6.15vw, 28px); }
  .showreel-head { min-height: 32px; }
  .showreel-head p { font-size: 7px; letter-spacing: .14em; }
  .showreel-number { margin-right: 10px; }
  .showreel figcaption { display: grid; gap: 7px; font-size: 8px; }
  .showreel figcaption a { justify-self: start; }
  .eyebrow { margin-bottom: 16px; }
  .statement { font-size: 9px; letter-spacing: .13em; }
  .intro { margin: 18px 0 25px; font-size: 15px; }
  .button { width: 100%; }
  .credit { grid-template-columns: 45px 1fr; padding: 23px 0; }
  .contact-actions { display: grid; }
  footer { gap: 24px; align-items: flex-end; }
}

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