:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --text: #f1eee8;
  --muted: #918e87;
  --line: #282723;
  --max: 1500px;
  --side: clamp(20px, 4vw, 70px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
figure { margin: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side);
  background: #080808;
  border-bottom: 1px solid #151515;
  color: var(--text);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .19em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 29px);
  font-size: 10px;
  letter-spacing: .15em;
  white-space: nowrap;
}
.desktop-nav a { opacity: .76; transition: opacity 160ms ease; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] { opacity: 1; }

.mobile-toggle,
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-copy {
  position: absolute;
  left: var(--side);
  bottom: clamp(34px, 7vh, 76px);
  z-index: 2;
  width: min(900px, calc(100vw - 40px));
}
.hero-title {
  margin: 0;
  font-size: clamp(46px, 8.1vw, 128px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.045em;
}
.hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(9px, .9vw, 12px);
  letter-spacing: .26em;
}
.scroll-cue {
  position: absolute;
  right: var(--side);
  bottom: 42px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Editorial sections */
.section {
  padding: clamp(90px, 12vw, 180px) var(--side);
}
.section-tight { padding-top: clamp(78px, 9vw, 130px); }
.visual-section { padding-top: clamp(70px, 9vw, 135px); }
.return-section { padding-top: clamp(120px, 17vw, 260px); padding-bottom: clamp(140px, 18vw, 280px); }

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: .8fr 2fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.section-head-compact { margin-bottom: clamp(48px, 6vw, 85px); }

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-size: clamp(46px, 6.5vw, 102px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.05em;
}
.section-note {
  margin: 28px 0 0;
  max-width: 570px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.visual-flow {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.frame img { background: #111; }
.frame figcaption {
  margin-top: 10px;
  color: #77746e;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.frame-wide { width: 100%; }
.frame-large { width: min(82%, 1180px); }
.frame-medium { width: min(62%, 900px); }
.frame-small { width: min(44%, 660px); }
.align-left { margin-right: auto; }
.align-right { margin-left: auto; }
.align-center { margin-left: auto; margin-right: auto; }

.gap-s { margin-top: clamp(50px, 7vw, 100px); }
.gap-m { margin-top: clamp(90px, 12vw, 180px); }
.gap-l { margin-top: clamp(130px, 17vw, 260px); }

.blank-pause { height: clamp(120px, 18vw, 270px); }
.blank-pause-large { height: clamp(180px, 24vw, 390px); }

.sequence-pair {
  display: grid;
  grid-template-columns: 1.05fr .72fr;
  gap: clamp(20px, 6vw, 96px);
  align-items: end;
}
.sequence-pair .secondary { margin-bottom: 10vw; }

/* Journal */
.journal-section {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  min-height: 72svh;
}
.journal-media {
  min-height: 72svh;
  overflow: hidden;
}
.journal-media img {
  width: 100%;
  height: 100%;
  min-height: 72svh;
  object-fit: cover;
  object-position: center;
}
.journal-copy {
  padding: clamp(50px, 8vw, 120px) var(--side);
  align-self: center;
}
.journal-copy h2 {
  margin: 20px 0 30px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.055em;
}
.journal-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Final full-bleed image */
.full-bleed {
  width: 100%;
  min-height: 84svh;
  position: relative;
  overflow: hidden;
  background: #000;
}
.full-bleed img {
  width: 100%;
  height: 84svh;
  object-fit: cover;
  object-position: center;
}
.finale-label {
  position: absolute;
  left: var(--side);
  bottom: 28px;
  color: #d7d3cb;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Direction index */
.disciplines {
  border-top: 1px solid var(--line);
  width: min(100%, var(--max));
  margin: 0 auto;
}
.discipline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}
a.discipline:hover h3 { opacity: .68; }
.discipline h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
  transition: opacity 160ms ease;
}
.discipline span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-preview {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.7fr;
  gap: clamp(40px, 10vw, 150px);
  align-items: start;
}
.about-preview p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(25px, 3.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.text-link {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 34px var(--side) 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a:hover { color: var(--text); }

/* Interior pages */
.page-hero {
  min-height: 64svh;
  padding: 150px var(--side) 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.page-kicker {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.page-title {
  margin: 0;
  font-size: clamp(64px, 13vw, 210px);
  line-height: .78;
  letter-spacing: -.065em;
  font-weight: 400;
}
.page-intro {
  margin: 38px 0 0 auto;
  max-width: 580px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.production-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.production-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 23px 0 26px;
  border-bottom: 1px solid var(--line);
}
.production-name {
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.production-meta {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: right;
  align-self: end;
}

.about-page-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(45px, 11vw, 180px);
}
.about-block + .about-block { margin-top: 80px; }
.about-big {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.about-copy {
  margin: 0;
  max-width: 680px;
  color: #cbc7bf;
  font-size: 15px;
  line-height: 1.75;
}
.meta-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.meta-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 35px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-links a {
  border-bottom: 1px solid #69665f;
  padding-bottom: 4px;
}
.contact-links a:hover { border-color: var(--text); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; font-size: 9px; }
}

@media (max-width: 900px) {
  .site-header { height: 64px; }
  .desktop-nav { display: none; }

  .mobile-toggle {
    display: block;
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 7px 0 7px 14px;
    font-size: 9px;
    letter-spacing: .18em;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 45;
    display: none;
    background: var(--bg);
    padding: 84px var(--side) 34px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: .15em;
  }
  .mobile-nav a:last-child { border-bottom: 1px solid var(--line); }

  .hero-media { object-position: 55% center; }
  .hero-copy { bottom: 40px; }
  .hero-title { font-size: clamp(43px, 14vw, 78px); }
  .hero-subtitle { margin-top: 14px; font-size: 8px; }
  .scroll-cue { display: none; }

  .section-head,
  .about-preview,
  .about-page-grid { grid-template-columns: 1fr; }
  .section-head { gap: 24px; }
  .section-title { font-size: clamp(48px, 15vw, 86px); }

  .sequence-pair { grid-template-columns: 1fr; }
  .sequence-pair .secondary { width: 76%; margin: 16vw 0 0 auto; }
  .frame-large,
  .frame-medium { width: 100%; }
  .frame-small { width: 76%; }

  .journal-section { grid-template-columns: 1fr; min-height: 0; }
  .journal-media,
  .journal-media img { min-height: 58svh; height: 58svh; }
  .journal-copy { padding-top: 65px; padding-bottom: 75px; }

  .full-bleed,
  .full-bleed img { min-height: 65svh; height: 65svh; }
  .full-bleed img { object-position: 55% center; }

  .site-footer { grid-template-columns: 1fr; gap: 13px; }
  .page-hero { min-height: 54svh; padding-top: 120px; }
  .page-title { font-size: clamp(64px, 23vw, 132px); }
  .page-intro { margin-left: 0; }
  .production-row { grid-template-columns: 1fr; gap: 10px; }
  .production-meta { text-align: left; }
}

@media (max-width: 560px) {
  :root { --side: 18px; }
  .brand { font-size: 11px; }
  .hero-title { letter-spacing: -.05em; }
  .discipline { grid-template-columns: 1fr; gap: 8px; }
  .about-preview p { font-size: 30px; }
  .frame-small { width: 88%; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .frame figcaption { margin-top: 8px; font-size: 7px; }
  .blank-pause-large { height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .desktop-nav a,
  .discipline h3 { transition: none; }
}


/* 2.2 layout hardening */
.section-head > *,
.sequence-pair > *,
.journal-section > *,
.about-preview > *,
.about-page-grid > *,
.production-row > * {
  min-width: 0;
}

#theatre,
#projects,
#art,
#portrait {
  scroll-margin-top: 92px;
}

.frame,
.frame img,
.journal-media,
.journal-copy,
.about-big,
.about-copy {
  max-width: 100%;
}



@media (max-width: 900px) {
  .journal-copy h2 {
    font-size: clamp(52px, 15vw, 78px);
  }
  .about-big {
    font-size: clamp(34px, 9vw, 54px);
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 62px;
  }
  .mobile-nav {
    padding-top: 80px;
  }
  .journal-copy h2 {
    font-size: clamp(48px, 14vw, 68px);
  }
}


/* 2.3 — desktop overflow + journal fix */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
.site-header,
.site-footer {
  max-width: 100%;
}

.journal-section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 34vw);
}

.journal-copy {
  min-width: 0;
  padding-left: clamp(32px, 3.2vw, 54px);
  padding-right: clamp(24px, 2.5vw, 42px);
}

.journal-copy h2 {
  max-width: 100%;
  margin-right: 0;
  font-size: clamp(48px, 4.3vw, 72px);
  line-height: .9;
  letter-spacing: -.045em;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .journal-section {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 38vw);
  }

  .journal-copy h2 {
    font-size: clamp(44px, 5vw, 64px);
  }
}

@media (max-width: 900px) {
  .journal-section {
    grid-template-columns: 1fr;
  }

  .journal-copy {
    padding-left: var(--side);
    padding-right: var(--side);
  }

  .journal-copy h2 {
    white-space: normal;
    font-size: clamp(48px, 14vw, 72px);
  }
}


/* 2.4 final journal containment */
.journal-section {
  display: grid;
  grid-template-columns: minmax(0, 72%) minmax(0, 28%);
  width: 100%;
  overflow: hidden;
}

.journal-media,
.journal-copy {
  min-width: 0;
  width: 100%;
}

.journal-copy {
  padding: clamp(38px, 4vw, 64px) clamp(22px, 2.2vw, 36px);
  overflow: hidden;
}

.journal-copy h2 {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 18px 0 26px;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: .92;
  letter-spacing: -.035em;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1100px) {
  .journal-section {
    grid-template-columns: minmax(0, 68%) minmax(0, 32%);
  }
  .journal-copy h2 {
    font-size: clamp(38px, 4.2vw, 54px);
  }
}

@media (max-width: 900px) {
  .journal-section {
    grid-template-columns: 1fr;
  }
  .journal-copy h2 {
    font-size: clamp(48px, 14vw, 72px);
  }
}


/* 2.5 — hero refinement */
.hero {
  min-height: calc(100svh - 76px);
  height: calc(100svh - 76px);
  margin-top: 76px;
}

.hero-media {
  height: 100%;
  object-position: center 48%;
}

.hero-copy {
  bottom: clamp(44px, 6.2vh, 68px);
}

.hero-title {
  font-size: clamp(44px, 7.1vw, 112px);
  line-height: .9;
  letter-spacing: -.042em;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(9px, .78vw, 11px);
  letter-spacing: .25em;
}

.scroll-cue {
  bottom: 40px;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 64px);
    height: calc(100svh - 64px);
    margin-top: 64px;
  }

  .hero-copy {
    bottom: 34px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 72px);
  }

  .hero-media {
    object-position: 56% center;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: calc(100svh - 62px);
    height: calc(100svh - 62px);
    margin-top: 62px;
  }

  .hero-title {
    font-size: clamp(40px, 12.5vw, 66px);
  }

  .hero-subtitle {
    font-size: 8px;
    letter-spacing: .22em;
  }
}


/* 2.6 — theatre opening rhythm */
#theatre .section-head {
  margin-bottom: clamp(48px, 6.3vw, 88px);
}

#theatre .theatre-lead {
  width: min(68%, 1020px);
}

#theatre .theatre-second {
  margin-top: clamp(76px, 8.5vw, 128px);
}

@media (max-width: 900px) {
  #theatre .theatre-lead {
    width: 92%;
    margin-left: auto;
  }

  #theatre .theatre-second {
    margin-top: 72px;
  }
}

@media (max-width: 560px) {
  #theatre .theatre-lead {
    width: 100%;
  }

  #theatre .theatre-second {
    margin-top: 58px;
  }
}
