@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --fg: #f2f1ec;
  --muted: #9b9b95;
  --line: rgba(255,255,255,.18);
  --acid: #d7ff3f;
  --red: #e93f2b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  z-index: 20;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.25) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.2) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.mono {
  font-family: "Space Mono", monospace;
  letter-spacing: .06em;
  font-size: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand span { color: var(--acid); }

nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}

nav a {
  opacity: .72;
  transition: .2s ease;
}

nav a:hover { opacity: 1; }

.header-index {
  justify-self: end;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted);
}

.hero {
  min-height: 100vh;
  padding: 145px 28px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, transparent 56%);
}

.hero > *:not(.hero-video):not(.hero-video-overlay):not(.orb) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--acid);
}

.hero h1 {
  font-size: clamp(58px, 10.8vw, 175px);
  line-height: .82;
  letter-spacing: -.075em;
  margin: 7vh 0 8vh;
  max-width: 1500px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  display: block;
}

.hero .ghost {
  -webkit-text-stroke: 1px rgba(255,255,255,.5);
  color: transparent;
}

.hero .offset {
  margin-left: 11vw;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(300px, 610px) 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-bottom p {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin: 0;
}

.scroll-cue {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted);
}

.scroll-cue .line {
  width: 74px;
  height: 1px;
  background: var(--muted);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: .18;
}

.orb-one {
  width: 42vw;
  height: 42vw;
  right: -18vw;
  top: 8vh;
  background: radial-gradient(circle at 30% 30%, #4d59ff, transparent 62%);
}

.orb-two {
  width: 26vw;
  height: 26vw;
  left: 25vw;
  bottom: -15vw;
  background: radial-gradient(circle at 40% 40%, #e93f2b, transparent 68%);
}

.manifesto,
.work,
.about,
.quote-section,
.contact {
  padding: 110px 28px;
}

.manifesto {
  border-bottom: 1px solid var(--line);
}

.manifesto-kicker {
  margin-bottom: 60px;
  color: var(--muted);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8vw;
}

.manifesto h2,
.section-head h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .95;
  letter-spacing: -.055em;
}

.manifesto-copy {
  font-size: 23px;
  line-height: 1.35;
  max-width: 690px;
}

.manifesto-copy p {
  margin-top: 0;
  margin-bottom: 28px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.section-head .mono {
  color: var(--muted);
  margin-bottom: 18px;
}

.counter { color: var(--muted); }

.project {
  min-height: 88vh;
  margin-bottom: 32px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(255,255,255,.16);
}

.project-meta {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  position: relative;
  z-index: 2;
}

.project-copy {
  align-self: end;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 32px;
  border-top: 1px solid currentColor;
  padding-top: 20px;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 60px);
  letter-spacing: -.045em;
  line-height: 1;
  max-width: 900px;
}

.project-copy p {
  margin: 0;
  max-width: 530px;
  line-height: 1.45;
}

.tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  white-space: nowrap;
}

.project-dark {
  background: #111;
}

.hollow-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.hollow-word {
  font-size: clamp(90px, 19vw, 320px);
  font-weight: 800;
  letter-spacing: -.09em;
  transform: scaleX(1.04);
  transition: transform .25s ease;
  cursor: default;
}

.hollow-visual:hover .hollow-word {
  transform: scaleX(1.2) scaleY(1.18);
}

.pressure {
  position: absolute;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.pressure-1 { width: 30vw; height: 30vw; }
.pressure-2 { width: 45vw; height: 45vw; }
.pressure-3 { width: 60vw; height: 60vw; }

.project-light {
  background: #efeee8;
  color: #111;
}

.distance-grid {
  width: min(70vh, 76vw);
  aspect-ratio: 1;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,.35);
  position: relative;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.7), rgba(0,0,0,.1) 12%, transparent 25%),
    repeating-radial-gradient(circle at center, #111 0 1px, transparent 1px 8px);
}

.distance-grid > div {
  border-right: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
  mix-blend-mode: multiply;
}

.center-eye {
  backdrop-filter: blur(3px);
}

.distance-word {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(45px, 8vw, 140px);
  font-weight: 800;
  letter-spacing: -.06em;
  mix-blend-mode: difference;
  color: white;
}

.project-city {
  background: #10202a;
}

.city-lines {
  position: relative;
  min-height: 58vh;
  margin: 38px 0;
  background:
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,.05) 49%, rgba(255,255,255,.05) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(255,255,255,.04) 49%, rgba(255,255,255,.04) 51%, transparent 52%);
  background-size: 90px 90px, 120px 120px;
}

.route {
  position: absolute;
  height: 2px;
  background: var(--acid);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(215,255,63,.35);
}

.r1 { width: 55%; left: 8%; top: 28%; transform: rotate(8deg); }
.r2 { width: 42%; left: 37%; top: 52%; transform: rotate(-23deg); }
.r3 { width: 38%; left: 20%; top: 68%; transform: rotate(18deg); }

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(215,255,63,.14);
}

.p1 { left: 22%; top: 33%; }
.p2 { left: 60%; top: 43%; }
.p3 { left: 46%; top: 70%; }

.city-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--acid);
}

.project-red {
  background: #c83926;
}

.adrift-stage {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1.5vw, 24px);
  overflow: hidden;
}

.adrift-stage span {
  font-size: clamp(90px, 16vw, 250px);
  font-weight: 800;
  letter-spacing: -.08em;
  animation: drift 4s ease-in-out infinite alternate;
}

.adrift-stage span:nth-child(2) { animation-delay: -.6s; }
.adrift-stage span:nth-child(3) { animation-delay: -1.4s; }
.adrift-stage span:nth-child(4) { animation-delay: -.2s; }
.adrift-stage span:nth-child(5) { animation-delay: -2s; }
.adrift-stage span:nth-child(6) { animation-delay: -1s; }

@keyframes drift {
  from { transform: translateY(-28px) rotate(-4deg); }
  to   { transform: translateY(35px) rotate(5deg); }
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-index {
  color: var(--muted);
  margin-bottom: 55px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.about-copy .lead {
  font-size: 30px;
  line-height: 1.25;
  margin-top: 0;
}

.about-copy p {
  color: #d7d6d0;
  line-height: 1.5;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}

.capabilities span {
  border: 1px solid rgba(255,255,255,.25);
  padding: 11px 14px;
  border-radius: 100px;
  font-size: 13px;
}

.quote-section {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
  color: #0a0a0a;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(52px, 8vw, 130px);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 700;
}

.quote-section blockquote span {
  -webkit-text-stroke: 1px #0a0a0a;
  color: transparent;
}

.contact {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact > .mono {
  color: var(--muted);
}

.contact-main {
  margin: 80px 0;
}

.contact h2 {
  margin-bottom: 60px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(28px, 5vw, 74px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.55);
}

.contact-link .arrow {
  transition: transform .2s ease;
}

.contact-link:hover .arrow {
  transform: translate(8px,-8px);
}

.contact-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  pointer-events: none;
  z-index: 99;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-index { display: none; }
  nav { gap: 16px; }

  .hero {
    padding-top: 130px;
  }

  .hero .offset { margin-left: 0; }

  .hero-bottom,
  .manifesto-grid,
  .about-layout,
  .project-copy {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    justify-self: start;
    margin-top: 20px;
  }

  .project-copy {
    gap: 18px;
  }

  .project {
    min-height: 760px;
  }

  .project-meta {
    grid-template-columns: 50px 1fr;
  }

  .project-meta span:last-child {
    display: none;
  }

  .tag { white-space: normal; }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .counter { display: none; }

  .contact-note {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 0 16px;
    height: 64px;
  }

  nav {
    font-size: 12px;
    gap: 12px;
  }

  .hero,
  .manifesto,
  .work,
  .about,
  .quote-section,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 16vw;
  }

  .hero-bottom p {
    font-size: 18px;
  }

  .project {
    padding: 14px;
    min-height: 690px;
  }

  .distance-grid {
    width: 100%;
  }
}


/* V3 — HOME */
.hero > h1, .hero > .hero-eyebrow, .hero > .hero-bottom { display:none !important; }
.hero-scroll { position:absolute; right:clamp(24px,4vw,64px); bottom:34px; z-index:4; color:#fff; }
.hero-scroll .line { background:rgba(255,255,255,.65); }

.home-intro {
  padding:clamp(80px,12vw,190px) clamp(24px,5vw,80px);
  background:#f5f3ee; color:#111;
}
.home-intro-label { margin-bottom:clamp(38px,6vw,90px); font-size:11px; letter-spacing:.16em; }
.home-intro h1 {
  margin:0; max-width:1250px; font-size:clamp(52px,8.4vw,138px);
  line-height:.9; letter-spacing:-.065em; font-weight:700;
}
.home-intro h1 span { display:block; }
.home-intro p {
  width:min(620px,100%); margin:clamp(42px,6vw,84px) 0 0 auto;
  font-size:clamp(17px,1.45vw,23px); line-height:1.5;
}

.recent-work { padding:clamp(80px,9vw,145px) 0 clamp(100px,12vw,190px); background:#fff; color:#111; }
.recent-label,.next-work-label {
  margin-left:clamp(24px,5vw,80px); margin-right:clamp(24px,5vw,80px);
  font-size:12px; letter-spacing:.18em;
}
.recent-label { margin-bottom:34px; }
.featured-image-wrap { width:100%; overflow:hidden; background:#e9e9e9; }
.featured-image { display:block; width:100%; height:auto; }

.featured-info {
  display:grid; grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:clamp(40px,8vw,140px);
  padding:clamp(42px,5vw,78px) clamp(24px,5vw,80px) clamp(90px,11vw,170px);
  border-bottom:1px solid #d8d8d8;
}
.featured-title .mono { margin-bottom:26px; font-size:11px; letter-spacing:.13em; }
.featured-title h2 {
  margin:0; font-size:clamp(48px,6.5vw,105px); line-height:.92; letter-spacing:-.055em;
}
.featured-description { align-self:end; max-width:660px; }
.featured-description p { margin:0 0 34px; font-size:clamp(18px,1.55vw,24px); line-height:1.5; }
.featured-tags { display:flex; flex-wrap:wrap; gap:10px 22px; margin-bottom:44px; font-size:10px; letter-spacing:.13em; }
.view-project {
  display:inline-flex; align-items:center; gap:16px; color:inherit; text-decoration:none;
  font-weight:700; font-size:14px; border-bottom:1px solid currentColor; padding-bottom:8px;
}
.next-work-label { margin-top:72px; }

@media (max-width:760px) {
  .home-intro h1 { font-size:clamp(48px,15vw,78px); }
  .home-intro p { margin-left:0; }
  .featured-info { grid-template-columns:1fr; }
  .featured-title h2 { font-size:clamp(52px,14vw,80px); }
}

.featured-video {
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}


/* V7 — true clipped, letter-by-letter hero-edge reveal */
.home-intro {
  position: relative;
  overflow: visible;
}

.kinetic-mask {
  overflow: hidden;
  margin-top: -1px;
  padding-top: 1px;
}

.kinetic-headline {
  margin: 0;
  max-width: 1250px;
  font-size: clamp(52px, 8.4vw, 138px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 700;
}

.kinetic-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: .08em;
}

.kinetic-line .char {
  display: inline-block;
  transform: translate3d(0,-1.18em,0);
  opacity: 0;
  will-change: transform, opacity;
}

.kinetic-line .char.space {
  width: .27em;
}

@media (max-width: 760px) {
  .kinetic-headline {
    font-size: clamp(48px, 15vw, 78px);
  }
  .kinetic-line {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-line .char {
    transform: none !important;
    opacity: 1 !important;
  }
}


/* V8 — reference-inspired professional falling-letter reveal */
.home-intro {
  position: relative;
  overflow: hidden;
  background: #f5f3ee;
  color: #111;
  min-height: 92vh;
}

.kinetic-stage {
  position: relative;
  overflow: hidden;
  padding-top: 1.2vw;
  padding-bottom: 1.2vw;
}

.kinetic-headline {
  margin: 0;
  max-width: 1380px;
  font-size: clamp(52px, 7.65vw, 126px);
  line-height: .88;
  letter-spacing: -.067em;
  font-weight: 800;
  text-transform: uppercase;
}

.kinetic-line {
  display: block;
  white-space: nowrap;
  overflow: visible;
}

.kinetic-line .char {
  display: inline-block;
  position: relative;
  will-change: transform, opacity, filter;
  transform-origin: 50% 55%;
  opacity: 0;
}

.kinetic-line .space {
  width: .28em;
}

.intro-copy {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .home-intro {
    min-height: auto;
  }

  .kinetic-headline {
    font-size: clamp(46px, 13.4vw, 72px);
    line-height: .91;
    letter-spacing: -.06em;
  }

  .kinetic-line {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-line .char {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}


/* V9 — New Stages Theatre featured project */
.featured-project-secondary {
  margin-top: clamp(90px, 11vw, 180px);
}
.new-stages-visual {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-stages-video {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  background: #111;
}


/* V10 — black homepage + true full-width New Stages visual */
body,
.home-intro,
.recent-work {
  background: #050505 !important;
  color: #f3f1eb !important;
}

.home-intro {
  border-color: rgba(255,255,255,.16);
}

.featured-info {
  color: #f3f1eb;
  border-bottom-color: rgba(255,255,255,.22);
}

.featured-project-secondary .new-stages-visual {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #050505;
  overflow: hidden;
}

.featured-project-secondary .new-stages-video {
  display: block;
  width: 100vw;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: cover;
  background: #050505;
}

.recent-label,
.next-work-label,
.featured-title .mono,
.featured-tags {
  color: rgba(243,241,235,.72);
}

.view-project {
  color: #f3f1eb;
}

.capabilities span {
  border-color: rgba(255,255,255,.25);
}


/* V12 — City project label above hero */
.project-overline {
  padding: 0 clamp(24px, 5vw, 80px) 18px;
  color: rgba(243,241,235,.78);
  font-size: 11px;
  letter-spacing: .15em;
}


/* V13 — editorial City project heading */
.project-overline { display: none !important; }

.city-project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  padding: 0 clamp(24px, 5vw, 80px) clamp(34px, 4.5vw, 68px);
}

.city-project-heading h2 {
  margin: 0;
  max-width: 1000px;
  color: #f3f1eb;
  font-size: clamp(50px, 6.8vw, 110px);
  line-height: .91;
  letter-spacing: -.055em;
  font-weight: 700;
}

.city-role {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: .35em;
  color: #f3f1eb;
}

.city-role .mono {
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(243,241,235,.55);
}

.city-role strong {
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 760px) {
  .city-project-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .city-project-heading h2 {
    font-size: clamp(46px, 13vw, 74px);
  }
}


/* V14 — New Stages heading mirrors the City project heading */
.theatre-project-heading {
  padding-top: clamp(18px, 2vw, 32px);
}


/* V15 — City project sequential photography */
.city-sequence {
  padding: 0 clamp(24px, 5vw, 80px) clamp(100px, 11vw, 180px);
  background: #050505;
  color: #f3f1eb;
}

.city-sequence-intro {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(320px, 1fr);
  gap: clamp(32px, 8vw, 140px);
  align-items: start;
  padding: clamp(54px, 7vw, 100px) 0 clamp(44px, 6vw, 84px);
  border-top: 1px solid rgba(255,255,255,.18);
}

.city-sequence-intro .mono {
  color: rgba(243,241,235,.55);
  font-size: 10px;
  letter-spacing: .16em;
}

.city-sequence-intro p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.5;
}

.city-photo-sequence {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
}

.city-shot {
  margin: 0;
  overflow: hidden;
  background: #111;
}

.city-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.city-shot:hover img {
  transform: scale(1.015);
}

.city-shot-wide {
  width: 100%;
  aspect-ratio: 16 / 8.5;
}

.city-shot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 32px);
}

.city-shot-pair .city-shot {
  aspect-ratio: 16 / 10;
}

.city-shot-feature {
  width: min(76%, 1180px);
  aspect-ratio: 16 / 9;
  margin-left: auto;
  margin-top: clamp(18px, 3vw, 50px);
}

@media (max-width: 760px) {
  .city-sequence-intro,
  .city-shot-pair {
    grid-template-columns: 1fr;
  }

  .city-shot-wide,
  .city-shot-pair .city-shot,
  .city-shot-feature {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-left: 0;
  }
}


/* V16 — horizontal one-image-at-a-time City gallery */
.city-horizontal-gallery {
  display: flex;
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #050505;
  cursor: ew-resize;
}

.city-horizontal-gallery::-webkit-scrollbar {
  display: none;
}

.city-slide {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: min(82vh, 900px);
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #0d0d0d;
}

.city-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.city-slide:hover img {
  transform: scale(1.01) !important;
}

.city-slide figcaption {
  position: absolute;
  left: clamp(22px, 4vw, 64px);
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(22px, 3vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.65);
  pointer-events: none;
}

.city-gallery-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  color: rgba(243,241,235,.52);
  font-size: 10px;
  letter-spacing: .14em;
}

@media (max-width: 760px) {
  .city-slide {
    height: 72vh;
  }

  .city-slide figcaption {
    bottom: 18px;
    left: 16px;
    right: 16px;
  }
}


/* V17 — keep normal page scrolling; explicit gallery arrows */
.city-gallery-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.city-gallery-shell .city-horizontal-gallery {
  margin-left: 0;
}

.city-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: clamp(48px, 5vw, 72px);
  height: clamp(48px, 5vw, 72px);
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(5,5,5,.34);
  backdrop-filter: blur(8px);
  color: #fff;
  font: 400 clamp(22px,2vw,30px)/1 "Inter", sans-serif;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.city-gallery-arrow:hover {
  background: rgba(5,5,5,.72);
  border-color: #fff;
}

.city-gallery-prev {
  left: clamp(14px, 2.2vw, 36px);
}

.city-gallery-next {
  right: clamp(14px, 2.2vw, 36px);
}

.city-gallery-hint .continue-scroll {
  color: rgba(243,241,235,.78);
}

@media (max-width: 760px) {
  .city-gallery-arrow {
    width: 44px;
    height: 44px;
  }
  .city-gallery-prev { left: 10px; }
  .city-gallery-next { right: 10px; }
}


/* V18 — stronger artwork captions */
.city-slide figcaption {
  font-size: clamp(13px, 1.15vw, 18px);
  letter-spacing: .075em;
  font-weight: 500;
  align-items: flex-end;
}

.city-slide figcaption span:first-child {
  font-size: .72em;
  opacity: .7;
}

.city-slide figcaption span:last-child {
  max-width: min(70vw, 820px);
  text-align: right;
}


/* V23 — aligned full-width City web screenshots */
.city-web-section {
  padding: 0 clamp(24px, 5vw, 80px) clamp(100px, 11vw, 180px);
  background: #050505;
  color: #f3f1eb;
}

.city-web-intro {
  margin-top: clamp(70px, 8vw, 120px);
}

.city-web-gallery-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.city-web-gallery {
  width: 100vw;
  margin-left: 0;
}

.city-web-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: min(86vh, 980px);
  background: #111;
}

.city-web-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  transform: none !important;
}

.city-web-slide:hover img {
  transform: none !important;
}

@media (max-width: 760px) {
  .city-web-slide {
    height: 72vh;
  }
}


/* V24 — web screenshots mirror photography gallery exactly */
.city-web-gallery-shell {
  position: relative;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.city-web-gallery {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.city-web-gallery::-webkit-scrollbar {
  display: none;
}

.city-web-slide {
  position: relative;
  flex: 0 0 100vw !important;
  width: 100vw !important;
  max-width: none !important;
  height: min(82vh, 900px) !important;
  margin: 0 !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #050505;
}

.city-web-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  background: #050505;
}

.city-web-prev,
.city-web-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 20 !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
}

.city-web-prev {
  left: clamp(14px, 2.2vw, 36px) !important;
  right: auto !important;
}

.city-web-next {
  right: clamp(14px, 2.2vw, 36px) !important;
  left: auto !important;
}

@media (max-width: 760px) {
  .city-web-slide {
    height: 72vh !important;
  }
}


/* V26 — definitive Father’s Day gallery arrow placement */
.city-event-gallery-shell {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.city-event-gallery {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
}

.city-event-prev,
.city-event-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 40 !important;
  width: clamp(48px, 5vw, 72px) !important;
  height: clamp(48px, 5vw, 72px) !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.city-event-prev {
  left: clamp(14px, 2.2vw, 36px) !important;
  right: auto !important;
}

.city-event-next {
  right: clamp(14px, 2.2vw, 36px) !important;
  left: auto !important;
}


/* V27 — City of Peterborough logo animation above position title */
.city-logo-animation {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 clamp(28px, 4vw, 54px);
}

.city-logo-animation video {
  display: block;
  width: clamp(180px, 22vw, 360px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .city-logo-animation {
    margin-bottom: 28px;
  }

  .city-logo-animation video {
    width: min(64vw, 280px);
  }
}


/* V28 — cinematic full-width City logo animation */
.city-logo-animation {
  position: relative;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: clamp(42px, 5vw, 76px) !important;
  overflow: hidden;
  background: #050505;
  aspect-ratio: 16 / 9;
}

.city-logo-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, transparent 62%, rgba(0,0,0,.18) 100%);
}

.city-logo-animation video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center;
  background: #050505;
}

@media (max-width: 760px) {
  .city-logo-animation {
    aspect-ratio: 16 / 10;
    margin-bottom: 34px !important;
  }

  .city-logo-animation video {
    width: 100% !important;
    height: 100% !important;
  }
}


/* V31 — MK Visuals website logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(120px, 10vw, 180px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand img {
    width: 118px;
  }
}


/* V33 — centered MK-only logo above menu */
.brand {
  position: absolute !important;
  left: 50% !important;
  top: 12px !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 50 !important;
}
.brand img {
  display: block !important;
  width: clamp(92px, 7vw, 138px) !important;
  height: auto !important;
  object-fit: contain !important;
}
nav {
  position: relative !important;
  padding-top: 72px !important;
}
.city-logo-animation { display: none !important; }

@media (max-width: 760px) {
  .brand { top: 10px !important; }
  .brand img { width: 94px !important; }
  nav { padding-top: 62px !important; }
}


/* V35 header correction */
@media (min-width: 769px) {
  .site-header,
  header,
  .topbar,
  .nav-wrap,
  .header-inner {
    height: auto !important;
  }

  .site-header,
  header {
    position: relative !important;
  }

  .header-inner,
  .nav-wrap,
  .site-header .container,
  header .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .brand,
  .site-logo,
  .logo,
  .logo-link {
    position: static !important;
    margin: 0 auto 14px !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .brand img,
  .site-logo img,
  .logo img,
  .logo-link img,
  header img.logo,
  header .logo img {
    width: 50% !important;
    max-width: 70px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  nav,
  .site-nav,
  .main-nav,
  .menu,
  .nav-menu {
    position: static !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  nav ul,
  .site-nav ul,
  .main-nav ul,
  .menu ul,
  .nav-menu {
    justify-content: center !important;
    margin: 0 auto !important;
  }
}

/* Remove stray decorative line at top-left */
body::before,
body::after,
.site-header::before,
header::before,
.header-inner::before,
.topbar::before,
.corner-line,
.top-left-line,
.decorative-line {
  content: none !important;
  display: none !important;
  border: 0 !important;
}


/* V36 — rebuilt header */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  min-height: 108px !important;
  background: rgba(5,5,5,.92) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  display: block !important;
  padding: 12px 28px 10px !important;
}

.header-center {
  width: max-content !important;
  max-width: calc(100vw - 240px) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.site-header .brand {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  width: auto !important;
}

.site-header .brand img {
  display: block !important;
  width: 118px !important;
  max-width: 118px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.site-header .main-nav {
  position: static !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
}

.site-header .main-nav a {
  font-size: 13px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  color: #f3f1eb !important;
  opacity: .9 !important;
}

.site-header .header-location {
  position: absolute !important;
  right: 28px !important;
  top: 24px !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  font-size: 10px !important;
  letter-spacing: .08em !important;
  color: rgba(243,241,235,.62) !important;
  white-space: nowrap !important;
}

/* Kill the stray top-left rule from earlier designs */
.site-header::before,
.site-header::after,
.header-center::before,
.header-center::after,
body::before,
body::after,
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
}

.scroll-cue,
.corner-line,
.top-left-line,
.decorative-line {
  display: none !important;
}

/* compensate for fixed header */
.hero {
  margin-top: 108px !important;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 94px !important;
    padding: 10px 16px 8px !important;
  }

  .header-center {
    max-width: calc(100vw - 32px) !important;
    gap: 7px !important;
  }

  .site-header .brand img {
    width: 96px !important;
    max-width: 96px !important;
  }

  .site-header .main-nav {
    gap: 24px !important;
  }

  .site-header .main-nav a {
    font-size: 12px !important;
  }

  .site-header .header-location {
    display: none !important;
  }

  .hero {
    margin-top: 94px !important;
  }
}


/* V37 — header floats directly over hero */
.site-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.header-center {
  gap: 15px !important;
}

/* Hero now begins behind the transparent header */
.hero {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .header-center {
    gap: 12px !important;
  }

  .hero {
    margin-top: 0 !important;
  }
}
\n\n/* V38 — menu hover interaction */
.site-header .main-nav a {
  display: inline-block !important;
  transform: scale(1);
  transform-origin: center center;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), opacity .22s ease !important;
}
.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
  transform: scale(1.10);
  opacity: 1 !important;
}


/* V39 — City project progressive disclosure */
.city-project-details[hidden] {
  display: none !important;
}

.city-project-details {
  display: block;
  overflow: clip;
}

.city-project-details.is-opening .city-project-details-inner {
  animation: cityProjectReveal .58s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes cityProjectReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-project {
  cursor: pointer;
}

.view-project .view-project-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.view-project[aria-expanded="true"] .view-project-icon {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .city-project-details.is-opening .city-project-details-inner {
    animation: none;
  }
  .view-project .view-project-icon {
    transition: none;
  }
}


/* V40 — full-width animation between City and New Stages */
.between-project-animation {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000;
  overflow: hidden;
}

.between-project-animation video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: cover;
  background: #000;
}

@media (max-width: 760px) {
  .between-project-animation video {
    max-height: 78vh;
  }
}

.newstages-case-study{margin-top:72px;padding-bottom:120px}
.newstages-case-row{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);gap:clamp(40px,6vw,100px);align-items:center;padding:clamp(54px,7vw,105px) clamp(24px,5vw,80px);border-top:1px solid rgba(255,255,255,.12)}
.newstages-case-media{display:flex;justify-content:center}
.newstages-case-media img{display:block;max-width:100%;max-height:86vh;width:auto;height:auto;object-fit:contain}
.newstages-case-copy{max-width:640px}
.newstages-case-copy .mono{margin-bottom:18px;font-size:10px;letter-spacing:.14em;color:var(--muted)}
.newstages-case-copy h3{margin:0 0 22px;font-size:clamp(34px,4.6vw,72px);line-height:.95;letter-spacing:-.045em}
.newstages-case-copy p{margin:0;font-size:clamp(17px,1.45vw,22px);line-height:1.5;color:#d7d6d0}
@media(max-width:900px){.newstages-case-row{grid-template-columns:1fr;gap:32px}.newstages-case-media{justify-content:flex-start}.newstages-case-media img{max-height:none;width:min(100%,760px)}}

/* V43 — New Stages campaign comparison */
.newstages-final-row{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:clamp(40px,6vw,100px);
  align-items:center;
  padding:clamp(54px,7vw,105px) clamp(24px,5vw,80px);
  border-top:1px solid rgba(255,255,255,.12)
}
.newstages-poster-pair{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(22px,2.4vw,42px);
  align-items:start;
  padding:clamp(60px,7vw,105px) clamp(24px,5vw,80px);
  border-top:1px solid rgba(255,255,255,.12)
}
.newstages-poster-card img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:top center;
}
.newstages-poster-card h3{
  margin:30px 0 20px;
  font-size:clamp(24px,2vw,34px);
  line-height:1.08;
  letter-spacing:-.025em
}
.newstages-poster-card p{
  margin:0;
  max-width:680px;
  font-size:clamp(16px,1.25vw,20px);
  line-height:1.55;
  color:#d7d6d0
}
@media(max-width:900px){
  .newstages-final-row,.newstages-poster-pair{grid-template-columns:1fr}
  .newstages-poster-pair{gap:70px}
}

/* V44 — New Stages Production Work */
.newstages-section-title{
  margin:clamp(65px,8vw,120px) clamp(24px,5vw,80px) 34px;
  font-size:clamp(32px,4vw,64px);
  line-height:1;
  letter-spacing:-.04em
}

/* Keep the two main posters fully visible and slightly smaller */
.newstages-poster-pair{
  max-width:1280px;
  margin:0 auto;
  padding-top:0;
}
.newstages-poster-card{
  min-width:0;
}
.newstages-poster-card img{
  width:auto;
  max-width:100%;
  height:min(68vh,760px);
  aspect-ratio:auto;
  object-fit:contain;
  object-position:top center;
  margin:0 auto;
}

/* Lower three-item layout from the supplied reference */
.newstages-production-gallery{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(220px,.95fr);
  gap:clamp(18px,2vw,32px);
  align-items:start;
  max-width:1380px;
  margin:clamp(70px,8vw,125px) auto 0;
  padding:0 clamp(24px,4vw,64px);
}
.newstages-production-item{
  margin:0;
}
.newstages-production-item img{
  display:block;
  width:100%;
  height:auto;
  max-height:72vh;
  object-fit:contain;
  object-position:top center;
}
.newstages-production-item figcaption{
  margin-top:8px;
  font-size:14px;
  line-height:1.3;
  color:#fff;
}
.newstages-production-gif img{
  width:100%;
  max-height:none;
}

@media(max-width:900px){
  .newstages-poster-card img{height:auto;width:min(100%,520px);margin:0}
  .newstages-production-gallery{grid-template-columns:1fr}
  .newstages-production-item img{width:min(100%,620px);max-height:none}
}


/* V45 — New Stages cleanup */

/* Remove the horizontal rules visible around the New Stages content */
.featured-project-secondary,
.featured-project-secondary .featured-info,
.newstages-case-study,
.newstages-final-row,
.newstages-poster-pair,
.newstages-production-gallery {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Smaller Production Work heading */
.newstages-section-title {
  margin: clamp(52px, 6vw, 90px) clamp(24px, 5vw, 80px) 28px !important;
  font-size: clamp(20px, 2vw, 30px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

/* Keep the two main posters compact and fully visible */
.newstages-poster-pair {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 clamp(24px, 3vw, 40px) !important;
  gap: clamp(34px, 4vw, 64px) !important;
  align-items: start !important;
}

.newstages-poster-card {
  width: 100% !important;
}

.newstages-poster-card img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: min(63vh, 690px) !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: top left !important;
}

/* Align title + description exactly to each poster's left edge */
.newstages-poster-card h3,
.newstages-poster-card p {
  width: 100% !important;
  max-width: none !important;
  text-align: left !important;
}

.newstages-poster-card h3 {
  margin: 24px 0 14px !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  line-height: 1.08 !important;
}

.newstages-poster-card p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.52 !important;
}

/* Remove any pseudo-rule around this section */
.newstages-case-study::before,
.newstages-case-study::after,
.newstages-poster-pair::before,
.newstages-poster-pair::after,
.newstages-section-title::before,
.newstages-section-title::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .newstages-poster-pair {
    grid-template-columns: 1fr !important;
    max-width: 700px !important;
  }

  .newstages-poster-card img {
    width: min(100%, 520px) !important;
    height: auto !important;
  }
}


/* V46 — imported work from previous portfolio */
.imported-works{
  padding:clamp(90px,10vw,170px) 0;
  background:#070707;
}
.imported-works-heading{
  padding:0 clamp(24px,5vw,80px) clamp(60px,7vw,110px);
}
.imported-works-heading .mono,
.imported-copy .mono,
.visual-explorations-heading .mono,
.archive-mini-grid .mono{
  font-size:10px;
  letter-spacing:.14em;
  color:var(--muted);
}
.imported-works-heading h2{
  margin:12px 0 0;
  font-size:clamp(52px,9vw,150px);
  line-height:.88;
  letter-spacing:-.06em;
}
.imported-project{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(300px,.88fr);
  gap:clamp(36px,6vw,100px);
  align-items:center;
  padding:clamp(70px,8vw,125px) clamp(24px,5vw,80px);
}
.imported-project:nth-of-type(even){
  background:#0c0c0c;
}
.imported-project-wide .imported-media{
  min-width:0;
}
.imported-media img{
  display:block;
  width:100%;
  height:auto;
  max-height:88vh;
  object-fit:contain;
}
.imported-media-pair{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
.imported-copy{
  max-width:680px;
}
.imported-copy h3,
.visual-explorations-heading h3,
.archive-mini-grid h3{
  margin:14px 0 22px;
  font-size:clamp(34px,4.5vw,72px);
  line-height:.96;
  letter-spacing:-.045em;
}
.imported-copy p,
.visual-explorations-heading p{
  margin:0 0 18px;
  font-size:clamp(16px,1.35vw,21px);
  line-height:1.55;
  color:#d6d5cf;
}
.text-only-project{
  grid-template-columns:1fr;
  min-height:46vh;
}
.text-only-project .imported-copy{
  max-width:900px;
}
.visual-explorations{
  padding:clamp(90px,10vw,160px) clamp(24px,5vw,80px);
}
.visual-explorations-heading{
  max-width:880px;
  margin-bottom:50px;
}
.visual-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.visual-grid img{
  width:100%;
  height:auto;
  display:block;
}
.archive-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  background:rgba(255,255,255,.12);
  margin:0 clamp(24px,5vw,80px) clamp(90px,10vw,160px);
}
.archive-mini-grid article{
  background:#080808;
  min-height:280px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.archive-mini-grid h3{
  font-size:clamp(26px,3vw,46px);
  margin-bottom:0;
}
@media(max-width:900px){
  .imported-project{grid-template-columns:1fr}
  .imported-media-pair{grid-template-columns:1fr}
  .visual-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .archive-mini-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .visual-grid{grid-template-columns:1fr}
}


/* V47 — City of Kawartha Lakes internship interlude */
.kawartha-interlude{
  padding:clamp(80px,9vw,150px) 0 0;
  background:#070707;
}
.kawartha-copy{
  padding:0 clamp(24px,5vw,80px) clamp(42px,5vw,76px);
  max-width:1200px;
}
.kawartha-copy .mono{
  font-size:10px;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:16px;
}
.kawartha-copy h2{
  margin:0 0 28px;
  max-width:1100px;
  font-size:clamp(36px,5vw,76px);
  line-height:.98;
  letter-spacing:-.05em;
}
.kawartha-copy p{
  margin:0 0 10px;
  max-width:860px;
  font-size:clamp(17px,1.4vw,21px);
  line-height:1.5;
  color:#d6d5cf;
}
.kawartha-credit{
  margin-top:20px!important;
  font-size:14px!important;
  color:var(--muted)!important;
}
.kawartha-video-wrap{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#000;
  overflow:hidden;
}
.kawartha-video-wrap video{
  display:block;
  width:100%;
  height:auto;
  max-height:92vh;
  object-fit:cover;
  background:#000;
}
@media(max-width:760px){
  .kawartha-video-wrap video{max-height:78vh}
}


/* V48 — New Stages collapsible like City project */
.newstages-project-details[hidden]{
  display:none!important;
}
.newstages-project-details{
  display:block;
}
.newstages-project-details.is-opening .newstages-project-details-inner{
  animation:newStagesReveal .58s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes newStagesReveal{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
.newstages-view-project .view-project-icon{
  display:inline-block;
  margin-left:8px;
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
}
.newstages-view-project[aria-expanded="true"] .view-project-icon{
  transform:rotate(180deg);
}

/* V48 — Kawartha intro uses same two-column editorial logic */
.kawartha-interlude{
  padding:clamp(90px,10vw,160px) 0 0!important;
  background:#070707;
}
.kawartha-project-info{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(40px,6vw,100px);
  align-items:end;
  padding:0 clamp(24px,5vw,80px) clamp(54px,6vw,88px);
}
.kawartha-project-title .mono{
  margin-bottom:16px;
  font-size:10px;
  letter-spacing:.14em;
  color:var(--muted);
}
.kawartha-project-title h2{
  margin:0;
  max-width:900px;
  font-size:clamp(40px,5.8vw,88px);
  line-height:.95;
  letter-spacing:-.055em;
}
.kawartha-project-description{
  max-width:680px;
  justify-self:end;
}
.kawartha-project-description p{
  margin:0 0 12px;
  font-size:clamp(17px,1.35vw,21px);
  line-height:1.52;
  color:#d6d5cf;
}
.kawartha-credit{
  margin-top:22px!important;
  font-size:14px!important;
  color:var(--muted)!important;
}
.kawartha-video-wrap{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#000;
  overflow:hidden;
}
.kawartha-video-wrap video{
  display:block;
  width:100%;
  height:auto;
  max-height:92vh;
  object-fit:cover;
  background:#000;
}
@media(max-width:900px){
  .kawartha-project-info{
    grid-template-columns:1fr;
    align-items:start;
  }
  .kawartha-project-description{
    justify-self:start;
    max-width:760px;
  }
}
@media(prefers-reduced-motion:reduce){
  .newstages-project-details.is-opening .newstages-project-details-inner{animation:none}
  .newstages-view-project .view-project-icon{transition:none}
}


/* V49 — Kawartha Lakes seasonal reels */
.kawartha-reels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 38px);
  padding: clamp(52px, 6vw, 90px) clamp(24px, 5vw, 80px) clamp(90px, 10vw, 150px);
  background: #070707;
}

.kawartha-reel-card {
  min-width: 0;
}

.kawartha-reel-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.kawartha-reel-label {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
}

.kawartha-reel-notes {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.kawartha-reel-notes li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.48;
  color: #ecebe6;
}

.kawartha-reel-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .95em;
}

@media (max-width: 900px) {
  .kawartha-reels-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}


/* V53 — second event-documentation gallery */
.city-indigenous-gallery-shell {
  margin-top: clamp(4px, .45vw, 8px) !important;
}
.city-indigenous-prev,
.city-indigenous-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 40 !important;
  width: clamp(48px, 5vw, 72px) !important;
  height: clamp(48px, 5vw, 72px) !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.city-indigenous-prev { left: clamp(14px, 2.2vw, 36px) !important; right: auto !important; }
.city-indigenous-next { right: clamp(14px, 2.2vw, 36px) !important; left: auto !important; }


/* V54 — event galleries grouped together */
.city-indigenous-gallery-shell + .city-event-gallery-shell {
  margin-top: clamp(4px, .45vw, 8px) !important;
}


/* V55 — polished VIEW PROJECT reveal */
.city-project-details,
.newstages-project-details {
  overflow: hidden;
}

.city-project-details-inner,
.newstages-project-details-inner {
  transform-origin: top center;
  will-change: opacity, transform, filter;
}

/* JS applies these while the section opens/closes */
.project-details-opening .city-project-details-inner,
.project-details-opening .newstages-project-details-inner {
  animation: projectDetailsEasyReveal .78s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes projectDetailsEasyReveal {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(.995);
    filter: blur(5px);
  }
  45% {
    opacity: .72;
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.view-project {
  transition: opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.view-project:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .project-details-opening .city-project-details-inner,
  .project-details-opening .newstages-project-details-inner {
    animation: none !important;
  }
}


/* V57 — View Project reveal: 1 second */
.project-content,
.project-details,
.project-expand,
.project-reveal,
.case-study-content,
.city-project-content,
.newstages-project-content,
.kawartha-project-content {
  transition-duration: 1s !important;
}


/* Do not trap normal page scrolling while pointer is over this gallery. */
.canada-day-gallery .event-gallery-track {
  overscroll-behavior: auto !important;
  touch-action: pan-y pinch-zoom !important;
}


/* Remove any space between the two gallery sections */
.canada-day-gallery,
.canada-day-gallery > * {
  border-top: 0 !important;
}

/* Keep normal page wheel scrolling */
.canada-day-track {
  overscroll-behavior: auto !important;
  touch-action: pan-y pinch-zoom !important;
  scrollbar-width: none;
}
.canada-day-track::-webkit-scrollbar {
  display: none;
}

/* Keep Canada Day arrows positioned like the existing gallery arrows */
.canada-day-frame {
  position: relative;
}
.canada-day-arrow-left {
  left: clamp(14px, 2vw, 32px) !important;
}
.canada-day-arrow-right {
  right: clamp(14px, 2vw, 32px) !important;
}


/* V60 — Canada Day is structurally identical to the Car Show gallery */
.city-canada-gallery-shell {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* V61 — slight separation between Car Show and Canada Day */
.city-canada-gallery-shell {
  margin-top: clamp(10px, 1vw, 18px) !important;
  position: relative;
}

/* Ensure both Canada Day arrows are visible, centered, and on the correct sides */
.city-canada-gallery-shell .city-gallery-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
}

.city-canada-prev {
  left: clamp(14px, 2vw, 32px) !important;
  right: auto !important;
}

.city-canada-next {
  right: clamp(14px, 2vw, 32px) !important;
  left: auto !important;
}


/* V62 — event gallery labels, matching Public Art editorial labeling */
.event-gallery-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  padding: clamp(26px, 3.4vw, 48px) clamp(24px, 5vw, 80px) clamp(18px, 2vw, 30px);
  background: #050505;
  color: #f3f1eb;
}

.event-gallery-label .mono {
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(243,241,235,.55);
}

.event-gallery-label h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 600;
}

@media (max-width: 760px) {
  .event-gallery-label {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* V63 — event labels aligned like the Public Art / project editorial system */
.event-gallery-label {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr) !important;
  gap: clamp(36px, 7vw, 120px) !important;
  align-items: end !important;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 5vw, 80px) clamp(18px, 1.8vw, 28px) !important;
  margin: 0 !important;
  background: #050505 !important;
  color: #f3f1eb !important;
}

.event-gallery-label .mono {
  align-self: end !important;
  font-size: 10px !important;
  letter-spacing: .16em !important;
  color: rgba(243,241,235,.52) !important;
}

.event-gallery-label h3 {
  margin: 0 !important;
  font-size: clamp(38px, 4vw, 70px) !important;
  line-height: .92 !important;
  letter-spacing: -.055em !important;
  font-weight: 700 !important;
  max-width: 760px !important;
}

@media (max-width: 820px) {
  .event-gallery-label {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .event-gallery-label h3 {
    font-size: clamp(32px, 10vw, 54px) !important;
  }
}


/* V64 — event names overlay the gallery like Public Art artwork titles */
.city-indigenous-gallery-shell,
.city-event-gallery-shell,
.city-canada-gallery-shell {
  position: relative !important;
}

.event-gallery-overlay-label {
  position: absolute !important;
  right: clamp(28px, 4vw, 68px) !important;
  bottom: clamp(24px, 4vw, 54px) !important;
  z-index: 18 !important;
  color: #f3f1eb !important;
  font-family: "Courier New", monospace !important;
  font-size: clamp(12px, 1.15vw, 18px) !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  text-align: right !important;
  pointer-events: none !important;
  text-shadow: 0 1px 10px rgba(0,0,0,.55) !important;
  max-width: min(70vw, 700px) !important;
}

@media (max-width: 760px) {
  .event-gallery-overlay-label {
    right: 20px !important;
    bottom: 20px !important;
    font-size: 11px !important;
  }
}

/* V66 — City web screenshots fill the viewport like event galleries */
.city-web-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #050505 !important;
}

/* V67 — show City web screenshots fully at full viewport width */
.city-web-slide {
  height: auto !important;
  aspect-ratio: 1912 / 1014;
  min-height: 0 !important;
  max-height: none !important;
}

.city-web-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #050505 !important;
}

@media (max-width: 760px) {
  .city-web-slide {
    height: auto !important;
    aspect-ratio: 1912 / 1014;
  }
}


/* V68 — New Stages posters: larger, space-filling two-column presentation */
.newstages-poster-pair {
  width: 100% !important;
  max-width: 1540px !important;
  margin: 0 auto !important;
  padding: 0 clamp(18px, 2.5vw, 42px) !important;
  gap: clamp(18px, 2vw, 30px) !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.newstages-poster-card {
  width: 100% !important;
  min-width: 0 !important;
}

.newstages-poster-card img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: top center !important;
  margin: 0 !important;
}

.newstages-poster-card h3,
.newstages-poster-card p {
  width: 100% !important;
}

@media (max-width: 900px) {
  .newstages-poster-pair {
    grid-template-columns: 1fr !important;
    max-width: 760px !important;
    gap: 56px !important;
  }

  .newstages-poster-card img {
    width: 100% !important;
    height: auto !important;
  }
}


/* V69 — New Stages animation: scale typography/animation up to nearly fill viewport */
.newstages-animation,
.new-stages-animation,
.newstages-motion,
.new-stages-motion {
  width: 100% !important;
  overflow: hidden !important;
}

.newstages-animation video,
.new-stages-animation video,
.newstages-motion video,
.new-stages-motion video {
  display: block !important;
  width: 100% !important;
  height: min(86vh, 920px) !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Existing project media wrapper used by the New Stages animation */
#newstages-project .project-video video,
#newstages-project .project-media video,
#newstages-project video {
  width: 100% !important;
  height: min(86vh, 920px) !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.12) !important;
  transform-origin: center center !important;
}

@media (max-width: 900px) {
  .newstages-animation video,
  .new-stages-animation video,
  .newstages-motion video,
  .new-stages-motion video,
  #newstages-project .project-video video,
  #newstages-project .project-media video,
  #newstages-project video {
    height: 70vh !important;
    transform: scale(1.08) !important;
  }
}


/* V70 — slightly smaller site/header logo */
.site-logo,
.header-logo,
.nav-logo,
.logo img,
header .logo img,
.site-header img[alt*="MK" i] {
  transform: scale(0.88) !important;
  transform-origin: center center !important;
}

.public-art-final-film{width:100%;margin:18px 0 0;padding:0;background:#050505}
.public-art-final-film video{display:block;width:100%;height:auto;max-height:92vh;object-fit:contain;background:#000}




/* V75 — SUMA information rebuilt as native HTML/CSS, not screenshots */
.suma-brand-system{
  width:100%;
  background:#070707;
  color:#f3f1eb;
  padding:clamp(34px,4vw,58px) clamp(24px,5vw,80px) clamp(70px,8vw,120px);
}

.suma-system-heading{
  font-family:Inter,sans-serif;
  font-size:clamp(24px,2.2vw,36px);
  font-weight:800;
  letter-spacing:-.035em;
  margin:0 0 clamp(34px,4vw,58px);
}

.suma-naming-board{
  background:#e9e5db;
  color:#1b1b1b;
  min-height:clamp(560px,55vw,780px);
  padding:clamp(56px,7vw,96px) clamp(36px,8vw,120px) clamp(52px,6vw,84px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.suma-wordmark{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(110px,15vw,250px);
  line-height:.78;
  letter-spacing:.02em;
  text-align:center;
  margin:auto 0 clamp(70px,8vw,115px);
  font-weight:400;
}

.suma-name-pillars{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(22px,3vw,46px);
  max-width:980px;
  margin:0 auto;
  width:100%;
}

.suma-name-pillars article{
  border-left:1px solid rgba(40,40,40,.48);
  padding-left:14px;
}

.suma-name-pillars h4,
.suma-color-card h4{
  margin:0 0 12px;
  font-size:clamp(16px,1.25vw,22px);
  line-height:1.08;
  font-weight:800;
}

.suma-name-pillars h4{
  color:#7a4e36;
}

.suma-name-pillars p{
  margin:0;
  font-size:clamp(11px,.8vw,14px);
  line-height:1.55;
  font-weight:600;
  font-style:italic;
}

.suma-color-heading{
  margin-top:clamp(75px,8vw,120px);
  margin-bottom:clamp(58px,6vw,90px);
}

.suma-color-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:clamp(22px,3vw,52px);
  align-items:start;
}

.suma-color-card{
  text-align:center;
}

.suma-swatch{
  width:clamp(92px,8vw,126px);
  aspect-ratio:1;
  border-radius:12px;
  background:var(--swatch);
  margin:0 auto clamp(28px,3vw,42px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:clamp(13px,1vw,17px);
  line-height:1.45;
  font-weight:600;
}

.suma-swatch.light{
  color:#292929;
}

.suma-color-card p{
  margin:0;
  font-size:clamp(13px,1vw,17px);
  line-height:1.55;
  color:#f4f2ec;
}

.suma-next-heading{
  margin:clamp(70px,8vw,110px) 0 0;
  font-size:clamp(24px,2.2vw,36px);
  line-height:1.05;
  letter-spacing:-.035em;
  font-weight:800;
}

@media(max-width:1050px){
  .suma-color-grid{
    grid-template-columns:repeat(3,1fr);
    row-gap:58px;
  }
  .suma-name-pillars{
    grid-template-columns:repeat(2,1fr);
    row-gap:34px;
  }
}

@media(max-width:680px){
  .suma-brand-system{
    padding-left:16px;
    padding-right:16px;
  }
  .suma-naming-board{
    padding:46px 20px 38px;
    min-height:auto;
  }
  .suma-wordmark{
    font-size:clamp(86px,28vw,140px);
    margin:60px 0 75px;
  }
  .suma-name-pillars,
  .suma-color-grid{
    grid-template-columns:1fr;
  }
  .suma-color-card{
    max-width:280px;
    margin:0 auto;
    width:100%;
  }
}

/* =========================================================
   V76 — RESPONSIVE CONSOLIDATION
   Desktop art direction is intentionally untouched.
   These rules only normalize tablet + mobile behavior.
   ========================================================= */

@media (max-width: 1023px) {
  :root { --mobile-pad: clamp(20px, 4.8vw, 40px); }

  html, body { max-width: 100%; overflow-x: clip; }
  img, video { max-width: 100%; }

  .home-intro,
  .city-project-heading,
  .city-sequence,
  .city-web-section,
  .newstages-case-row,
  .newstages-final-row,
  .newstages-section-title,
  .kawartha-project-info,
  .imported-works,
  .about,
  .contact {
    padding-left: var(--mobile-pad) !important;
    padding-right: var(--mobile-pad) !important;
  }

  .recent-label,
  .next-work-label {
    margin-left: var(--mobile-pad) !important;
    margin-right: var(--mobile-pad) !important;
  }

  .featured-info {
    padding-left: var(--mobile-pad) !important;
    padding-right: var(--mobile-pad) !important;
  }

  .featured-image-wrap,
  .between-project-animation,
  .public-art-final-film,
  .kawartha-interlude,
  .new-stages-visual {
    width: 100% !important;
    max-width: 100% !important;
  }

  .featured-video,
  .between-project-animation video,
  .public-art-final-film video,
  .new-stages-video {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}

@media (max-width: 767px) {
  :root { --mobile-pad: 18px; }

  body { font-size: 16px; }
  .grain { opacity: .045; }
  .cursor-dot { display: none !important; }

  /* Header: keep the same identity, remove desktop-only location */
  .site-header {
    min-height: 86px !important;
    padding: 10px var(--mobile-pad) 8px !important;
  }
  .header-center {
    width: 100% !important;
    max-width: none !important;
    gap: 10px !important;
  }
  .site-header .brand img {
    width: 82px !important;
    max-width: 82px !important;
  }
  .site-header .main-nav {
    width: 100% !important;
    gap: 0 !important;
    justify-content: center !important;
  }
  .site-header .main-nav a {
    min-width: 72px;
    padding: 4px 8px;
    text-align: center;
    font-size: 11px !important;
  }
  .site-header .header-location { display: none !important; }

  /* Hero: preserve film impact without forcing a desktop crop */
  .hero {
    min-height: 72svh !important;
    height: 72svh !important;
    padding: 0 !important;
  }
  .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hero-video-overlay { opacity: .72; }

  /* Intro typography */
  .home-intro {
    padding-top: 64px !important;
    padding-bottom: 72px !important;
  }
  .home-intro-label {
    margin-bottom: 30px !important;
    font-size: 9px !important;
    line-height: 1.45;
  }
  .kinetic-stage { overflow: hidden; }
  .kinetic-headline,
  .home-intro h1 {
    font-size: clamp(44px, 14.2vw, 68px) !important;
    line-height: .91 !important;
    letter-spacing: -.058em !important;
    max-width: 100% !important;
  }
  .kinetic-line {
    white-space: normal !important;
    overflow: visible !important;
  }
  .intro-copy,
  .home-intro p {
    margin: 36px 0 0 !important;
    width: 100% !important;
    max-width: 34rem !important;
    font-size: 17px !important;
    line-height: 1.48 !important;
  }

  /* Project heading + body */
  .recent-work { padding-top: 66px !important; }
  .recent-label { margin-bottom: 24px !important; font-size: 9px !important; }

  .city-project-heading,
  .featured-info,
  .city-sequence-intro,
  .kawartha-project-info,
  .imported-project,
  .about-layout {
    grid-template-columns: 1fr !important;
  }

  .city-project-heading {
    gap: 22px !important;
    padding-top: 8px !important;
    padding-bottom: 32px !important;
  }
  .city-project-heading h2,
  .theatre-project-heading h2 {
    font-size: clamp(42px, 12.8vw, 64px) !important;
    line-height: .94 !important;
    letter-spacing: -.05em !important;
  }
  .city-role { padding-bottom: 0 !important; }
  .city-role strong { font-size: 17px !important; }

  .featured-info {
    gap: 34px !important;
    padding-top: 36px !important;
    padding-bottom: 74px !important;
  }
  .featured-title h2 {
    font-size: clamp(42px, 13vw, 64px) !important;
    line-height: .94 !important;
  }
  .featured-description p,
  .city-sequence-intro p,
  .kawartha-project-description,
  .imported-copy p,
  .about-copy p {
    font-size: 16.5px !important;
    line-height: 1.55 !important;
  }
  .featured-tags {
    gap: 8px 14px !important;
    margin-bottom: 28px !important;
    font-size: 9px !important;
  }

  /* Full-bleed video modules */
  .featured-image-wrap video,
  .between-project-animation video,
  .public-art-final-film video,
  .new-stages-video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    background: #000 !important;
  }

  /* City photo + screenshot galleries */
  .city-sequence {
    padding-bottom: 82px !important;
  }
  .city-sequence-intro {
    gap: 18px !important;
    padding-top: 48px !important;
    padding-bottom: 34px !important;
  }
  .city-horizontal-gallery,
  .city-web-gallery,
  .city-event-gallery,
  .city-indigenous-gallery,
  .city-canada-gallery {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }
  .city-slide,
  .city-web-slide {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
  }
  .city-slide img {
    object-fit: cover !important;
  }
  .city-web-slide img {
    object-fit: contain !important;
  }
  .city-slide figcaption {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    display: block !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
  .city-slide figcaption span {
    display: block;
    max-width: 100% !important;
    text-align: left !important;
  }
  .city-slide figcaption span + span { margin-top: 5px; }
  .city-gallery-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    background: rgba(5,5,5,.52) !important;
  }
  .city-gallery-hint { font-size: 8px !important; }

  /* New Stages */
  .newstages-case-study { margin-top: 44px !important; padding-bottom: 78px !important; }
  .newstages-case-row,
  .newstages-final-row {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .newstages-case-media img,
  .newstages-poster-card img,
  .newstages-production-item img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
  .newstages-poster-pair,
  .newstages-production-gallery {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .newstages-case-copy h3 { font-size: clamp(34px, 11vw, 52px) !important; }

  /* Kawartha */
  .kawartha-project-info { gap: 26px !important; }
  .kawartha-project-title { font-size: clamp(42px, 13vw, 64px) !important; }
  .kawartha-reels-grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .kawartha-reel-card video { width: 100% !important; height: auto !important; }
  .kawartha-reel-notes { padding-left: 1.15rem; }

  /* Archive + SUMA */
  .imported-works { overflow: hidden; }
  .imported-project {
    gap: 28px !important;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .imported-media,
  .imported-media img,
  .imported-media-pair img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .imported-media-pair { grid-template-columns: 1fr !important; }

  .suma-brand-system { overflow: hidden; }
  .suma-system-heading,
  .suma-naming-board,
  .suma-color-heading,
  .suma-color-grid,
  .suma-next-heading {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .suma-naming-board { padding: 36px 20px !important; }
  .suma-wordmark {
    font-size: clamp(70px, 24vw, 118px) !important;
    line-height: .8 !important;
    overflow-wrap: anywhere;
  }
  .suma-name-pillars { grid-template-columns: 1fr 1fr !important; gap: 22px 14px !important; }
  .suma-color-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .suma-swatch { min-height: 150px !important; }

  .visual-grid,
  .archive-mini-grid {
    grid-template-columns: 1fr !important;
  }

  /* About + contact */
  .about,
  .contact { padding-top: 74px !important; padding-bottom: 74px !important; }
  .about-layout { gap: 34px !important; }
  .about h2,
  .contact h2 { font-size: clamp(44px, 13vw, 66px) !important; }
  .contact-main { font-size: clamp(34px, 10vw, 56px) !important; }
  .contact-note { gap: 12px !important; }
}

@media (max-width: 430px) {
  :root { --mobile-pad: 16px; }

  .site-header .main-nav a { min-width: 66px; padding-inline: 5px; }
  .kinetic-headline,
  .home-intro h1 { font-size: clamp(40px, 13.7vw, 58px) !important; }

  .city-project-heading h2,
  .featured-title h2,
  .theatre-project-heading h2,
  .kawartha-project-title {
    font-size: clamp(39px, 12.5vw, 56px) !important;
  }

  .city-slide,
  .city-web-slide { aspect-ratio: 3 / 4 !important; }
  .suma-name-pillars,
  .suma-color-grid { grid-template-columns: 1fr !important; }
}

/* V77 — Mobile contained galleries + universal fullscreen image viewer */
@media (max-width: 767px) {
  /* Keep every City gallery inside the mobile content area instead of full-bleed. */
  .city-gallery-shell,
  .city-event-gallery-shell,
  .city-indigenous-gallery-shell,
  .city-canada-gallery-shell,
  .city-web-gallery-shell {
    width: calc(100% - 32px) !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  .city-gallery-shell .city-horizontal-gallery,
  .city-horizontal-gallery,
  .city-event-gallery,
  .city-indigenous-gallery,
  .city-canada-gallery,
  .city-web-gallery {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: #050505 !important;
    border-radius: 0 !important;
  }

  /* One fixed viewing area per gallery. Images are never cropped. */
  .city-slide,
  .city-web-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #050505 !important;
  }

  .city-slide img,
  .city-web-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    cursor: zoom-in !important;
  }

  /* Captions sit over the black spare area without forcing a crop. */
  .city-slide figcaption {
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.9) !important;
  }

  /* Arrows stay beside the image frame, not inside a cropped image. */
  .city-gallery-arrow,
  .city-event-prev,
  .city-event-next,
  .city-indigenous-prev,
  .city-indigenous-next,
  .city-canada-prev,
  .city-canada-next,
  .city-web-prev,
  .city-web-next {
    top: 50% !important;
    width: 38px !important;
    height: 38px !important;
    transform: translateY(-50%) !important;
    background: rgba(5,5,5,.72) !important;
    border: 1px solid rgba(255,255,255,.62) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 60 !important;
  }

  .city-gallery-prev,
  .city-event-prev,
  .city-indigenous-prev,
  .city-canada-prev,
  .city-web-prev {
    left: -10px !important;
    right: auto !important;
  }

  .city-gallery-next,
  .city-event-next,
  .city-indigenous-next,
  .city-canada-next,
  .city-web-next {
    right: -10px !important;
    left: auto !important;
  }

  .event-gallery-overlay-label {
    left: 14px !important;
    right: 14px !important;
    bottom: 12px !important;
    font-size: 9px !important;
    pointer-events: none !important;
  }
}

/* Any gallery image can be opened large on desktop or mobile. */
.city-horizontal-gallery img,
.city-web-gallery img {
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: clamp(18px, 3vw, 48px);
  background: rgba(0,0,0,.96);
  opacity: 0;
  transition: opacity .18s ease;
}

.gallery-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.gallery-lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.62);
  color: #fff;
  background: rgba(10,10,10,.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.gallery-lightbox-close {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font: 300 27px/1 Inter, sans-serif;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateY(-50%);
  font: 400 23px/1 Inter, sans-serif;
}

.gallery-lightbox-prev { left: 0; }
.gallery-lightbox-next { right: 0; }

.gallery-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(255,255,255,.76);
  font: 400 10px/1.2 "Space Mono", monospace;
  letter-spacing: .12em;
}

body.gallery-lightbox-open {
  overflow: hidden !important;
  touch-action: none;
}

@media (max-width: 767px) {
  .gallery-lightbox {
    padding: 14px 8px;
  }
  .gallery-lightbox-stage {
    padding: 46px 0 34px;
  }
  .gallery-lightbox-image {
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 96px);
  }
  .gallery-lightbox-close {
    top: 0;
    right: 8px;
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 40px;
    height: 40px;
    background: rgba(5,5,5,.7);
  }
  .gallery-lightbox-prev { left: 4px; }
  .gallery-lightbox-next { right: 4px; }
  .gallery-lightbox-counter { bottom: 4px; }
}

/* =========================================================
   V79 — SUMA image replacements + mobile 2-column palette
   ========================================================= */
.suma-naming-image-board{
  display:block;
  min-height:0;
  padding:0;
  background:#e9e5db;
}
.suma-brand-naming-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

@media (max-width: 767px){
  .suma-naming-image-board{
    padding:0 !important;
    min-height:0 !important;
  }
  .suma-brand-naming-image{
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
  }

  /* Two palette colors per row on phones, with each label and explanation below its swatch. */
  .suma-color-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    column-gap:14px !important;
    row-gap:38px !important;
    align-items:start !important;
  }
  .suma-color-card{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    text-align:center !important;
  }
  .suma-swatch{
    width:min(100%,150px) !important;
    min-height:0 !important;
    aspect-ratio:1 / 1 !important;
    margin:0 auto 18px !important;
  }
  .suma-color-card h4{
    font-size:15px !important;
    line-height:1.12 !important;
    margin:0 0 10px !important;
  }
  .suma-color-card p{
    font-size:12px !important;
    line-height:1.45 !important;
  }
}


/* V81 — SUMA product / packaging gallery */
.suma-mockup-gallery-shell {
  margin-top: clamp(24px, 3vw, 48px) !important;
  margin-bottom: clamp(56px, 8vw, 120px) !important;
}

.suma-mockup-slide {
  background: #090807 !important;
}

.suma-mockup-slide img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #090807 !important;
}

.suma-mockup-prev,
.suma-mockup-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 40 !important;
  transform: translateY(-50%) !important;
}

.suma-mockup-prev { left: clamp(14px, 2.2vw, 36px) !important; }
.suma-mockup-next { right: clamp(14px, 2.2vw, 36px) !important; }

@media (max-width: 767px) {
  .suma-mockup-gallery-shell {
    width: calc(100% - 32px) !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 22px !important;
    margin-bottom: 64px !important;
  }

  .suma-mockup-gallery {
    width: 100% !important;
    margin: 0 !important;
  }

  .suma-mockup-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .suma-mockup-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .suma-mockup-prev { left: -10px !important; }
  .suma-mockup-next { right: -10px !important; }
}


/* V81.1 — SUMA gallery filename/layout correction */
.suma-mockup-gallery-shell .suma-mockup-slide figcaption {
  z-index: 12 !important;
  bottom: clamp(18px, 2.2vw, 34px) !important;
}
.suma-mockup-gallery-shell .suma-mockup-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #050505 !important;
}
@media (min-width: 768px) {
  .suma-mockup-gallery-shell .suma-mockup-slide {
    height: min(78vh, 860px) !important;
  }
}
@media (max-width: 767px) {
  .suma-mockup-gallery-shell .suma-mockup-slide figcaption {
    left: 14px !important;
    right: 14px !important;
    bottom: 12px !important;
    font-size: 9px !important;
    gap: 12px !important;
  }
}


/* Final adjustment batch — header, hero containment, gallery interaction */
.site-header .main-nav a {
  font-size: 14px !important;
}
@media (max-width: 760px) {
  .site-header .main-nav a {
    font-size: 13px !important;
  }
}

.hero {
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.hero .hero-video {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

/* Native finger swipe/trackpad scroll for every horizontal gallery */
.city-horizontal-gallery,
.city-web-gallery,
.city-event-gallery,
.city-indigenous-gallery,
.city-canada-gallery,
.suma-mockup-gallery,
.suma-architecture-gallery,
.catalogue-gallery,
.naseer-gallery,
.empower-gallery,
.newstages-production-gallery {
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

/* Header refinement — larger MK Visuals mark, tighter logo/menu spacing */
.site-header {
  min-height: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 8px !important;
}
.site-header .brand {
  margin: 0 auto 2px !important;
  padding: 0 !important;
  line-height: 0 !important;
}
.site-header .brand img,
.site-header img[alt*="MK" i] {
  width: 190px !important;
  max-width: 190px !important;
  height: 76px !important;
  object-fit: contain !important;
  transform: none !important;
  margin: 0 auto !important;
}
.site-header .main-nav {
  margin-top: -4px !important;
  padding-top: 0 !important;
}
@media (max-width: 760px) {
  .site-header {
    min-height: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 6px !important;
  }
  .site-header .brand {
    margin-bottom: 0 !important;
  }
  .site-header .brand img,
  .site-header img[alt*="MK" i] {
    width: 150px !important;
    max-width: 150px !important;
    height: 62px !important;
    transform: none !important;
  }
  .site-header .main-nav {
    margin-top: -4px !important;
  }
}

/* Final header logo correction — cropped asset, larger visible mark */
.site-header .brand,
.site-header .logo,
.site-header .site-logo,
.site-header .brand-mark {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-header img[src*="MKvisuals_Logo"] {
  display: block !important;
  width: clamp(190px, 18vw, 300px) !important;
  max-width: 300px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: none !important;
  margin: 0 auto !important;
}

@media (max-width: 760px) {
  .site-header img[src*="MKvisuals_Logo"] {
    width: clamp(165px, 48vw, 225px) !important;
    max-width: 225px !important;
  }
}

/* Balanced MK Visuals logo size — menu placement unchanged */
.site-header img[src*="MKvisuals_Logo"] {
  width: clamp(145px, 13vw, 215px) !important;
  max-width: 215px !important;
}

@media (max-width: 760px) {
  .site-header img[src*="MKvisuals_Logo"] {
    width: clamp(130px, 38vw, 175px) !important;
    max-width: 175px !important;
  }
}

/* MK Visuals logo — smaller final sizing, navigation position unchanged */
.site-header img[src*="MKvisuals_Logo"] {
  width: clamp(115px, 10vw, 165px) !important;
  max-width: 165px !important;
}

@media (max-width: 760px) {
  .site-header img[src*="MKvisuals_Logo"] {
    width: clamp(105px, 30vw, 140px) !important;
    max-width: 140px !important;
  }
}

/* MK Visuals logo — approximately half the previous size */
.site-header img[src*="MKvisuals_Logo"] {
  width: clamp(58px, 5vw, 83px) !important;
  max-width: 83px !important;
}

@media (max-width: 760px) {
  .site-header img[src*="MKvisuals_Logo"] {
    width: clamp(53px, 15vw, 70px) !important;
    max-width: 70px !important;
  }
}

/* Navigation typography */
.site-header .main-nav a,
.main-nav a,
.site-nav a,
nav a {
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em;
}

/* Navigation — Bebas Neue at double previous size */
.site-header .main-nav a,
.main-nav a,
.site-nav a,
nav a {
  font-size: 28px !important;
}

@media (max-width: 760px) {
  .site-header .main-nav a,
  .main-nav a,
  .site-nav a,
  nav a {
    font-size: 26px !important;
  }
}

/* Header refinement — slight logo/nav breathing room + centered nav */
.site-header .main-nav,
.site-header nav,
.main-nav,
.site-nav {
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.site-header .main-nav,
.site-header nav {
  margin-top: 8px !important;
}

.site-header .main-nav ul,
.site-header nav ul,
.main-nav ul,
.site-nav ul {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Header nav alignment — ABOUT exactly centered beneath the logo */
.site-header .main-nav ul,
.site-header nav ul,
.main-nav ul,
.site-nav ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  width: 390px !important;
  max-width: calc(100vw - 32px) !important;
  margin: 8px auto 0 !important;
  padding: 0 !important;
  align-items: center !important;
}

.site-header .main-nav li,
.site-header nav li,
.main-nav li,
.site-nav li {
  width: 100% !important;
  text-align: center !important;
}

.site-header .main-nav a,
.site-header nav a,
.main-nav a,
.site-nav a {
  display: block !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .site-header .main-nav ul,
  .site-header nav ul,
  .main-nav ul,
  .site-nav ul {
    width: min(330px, calc(100vw - 24px)) !important;
  }
}

/* CORRECT mobile-only kinetic headline wrapping.
   Desktop remains untouched. */
@media (max-width: 760px) {
  .kinetic-line {
    white-space: normal !important;
  }

  .kinetic-word {
    display: inline-block !important;
    white-space: nowrap !important;
  }
}

/* Slightly smaller mobile kinetic headline only */
@media (max-width: 760px) {
  .kinetic-headline,
  .home-intro h1 {
    font-size: clamp(38px, 12.6vw, 54px) !important;
  }
}

/* Mobile hero: zoom the mobile reel enough to eliminate the encoded side gutters.
   Mobile only; desktop remains unchanged. */
@media (max-width: 760px) {
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero .hero-video-mobile {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate(-50%, -50%) scale(1.46) !important;
    transform-origin: center center !important;
  }
}
