/* SANELE XABA — responsive editorial design system */
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../assets/fonts/bodoni-moda-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
}
:root {
  --paper: #f7f3ed;
  --paper-alt: #eee8df;
  --ink: #171510;
  --muted: #5c574e;
  --ink-soft: var(--muted);
  --line: #d7d0c4;
  --accent: #7a5838;
  --header-bg: rgba(247, 243, 237, .9);
  --shadow: 0 18px 60px rgba(30, 24, 17, .12);
  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 68px;
  --max: 1320px;
}

html[data-theme="dark"] {
  --paper: #151411;
  --paper-alt: #1f1d19;
  --ink: #f5efe5;
  --muted: #c4bdb2;
  --line: #3d3931;
  --accent: #d4ad78;
  --header-bg: rgba(21, 20, 17, .91);
  --shadow: 0 18px 60px rgba(0, 0, 0, .3);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
picture { display: contents; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.022em;
}
p { max-width: 68ch; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.container { width: min(var(--max), calc(100% - 10vw)); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-sm { padding: clamp(56px, 7vw, 104px) 0; }
.section-alt { background: var(--paper); }
.eyebrow {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lede { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.page-intro { padding: calc(var(--header-h) + clamp(70px, 9vw, 132px)) 0 clamp(60px, 7vw, 100px); }
.page-title { font-size: clamp(3.2rem, 8vw, 7.5rem); max-width: 12ch; margin: 18px 0 24px; }
.section-title { font-size: clamp(2.2rem, 5vw, 5rem); max-width: 14ch; margin: 16px 0 24px; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 8vw; align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 4.5rem); margin: 14px 0 0; max-width: 15ch; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4vw;
  color: var(--ink);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.home-page .site-header:not(.is-scrolled):not(.menu-active) { color: #fff; background: linear-gradient(to bottom, rgba(0, 0, 0, .35), transparent); backdrop-filter: none; -webkit-backdrop-filter: none; }
.brand {
  position: relative;
  z-index: 202;
  display: flex;
  align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.brand-wordmark {
  display: block;
  width: clamp(132px, 12vw, 170px);
  height: auto;
  filter: none;
  transition: filter .25s var(--ease);
}
html[data-theme="dark"] .brand-wordmark,
.home-page .site-header:not(.is-scrolled):not(.menu-active) .brand-wordmark { filter: invert(1); }
.header-actions { position: relative; z-index: 202; display: flex; align-items: center; gap: 8px; }
.theme-toggle, .menu-toggle, .carousel-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.theme-toggle {
  width: 44px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.theme-icon { width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: Georgia, serif; font-size: .86rem; line-height: 1; }
.theme-label { display: none; }
.menu-toggle {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 4px 0 12px;
}
.menu-label { font-size: .7rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.menu-lines { width: 31px; display: grid; gap: 7px; }
.menu-lines span { height: 1px; width: 100%; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle > span:not(.menu-label):not(.menu-lines):not(.sr-only) { display: block; width: 28px; height: 1px; background: currentColor; }
.menu-toggle > span:not(.menu-label):not(.menu-lines):not(.sr-only) + span:not(.menu-label):not(.menu-lines):not(.sr-only) { margin-left: -39px; transform: translateY(7px); }
.menu-toggle > span:not(.menu-label):not(.menu-lines):not(.sr-only):nth-child(3) { display: none; }
body.nav-open .menu-lines span:first-child { transform: translateY(4px) rotate(45deg); }
body.nav-open .menu-lines span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: end;
  padding: calc(var(--header-h) + 56px) 7vw 6vw;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  overflow-y: auto;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.nav-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 5vw; }
.nav-list li { break-inside: avoid; }
.nav-list a {
  display: inline-block;
  padding: 7px 0;
  color: inherit;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-decoration: none;
}
@media (max-width: 760px) {
  .nav-list a { font-size: clamp(1.75rem, 8vw, 2.15rem); }
}
.nav-list a:hover, .nav-list a.current { color: var(--accent); }
.nav-meta { color: var(--muted); }
.nav-meta p { margin: 0 0 20px; }
.nav-meta a { color: var(--ink); }
.nav-foot { color: var(--muted); }
.nav-foot a { display: block; margin-top: 10px; overflow-wrap: anywhere; }

/* Home hero — deliberately no texture or dot overlay */
.hero { position: relative; min-height: 620px; height: 100svh; overflow: hidden; background: #15130f; color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: homeKenBurns 15s ease-in-out infinite alternate; }
.hero-slide--live-01 img { object-position: 50% 25%; animation-duration: 17s; animation-direction: alternate-reverse; }
.hero-slide--live-02 img { object-position: 50% 12%; animation-duration: 14s; }
.hero-slide--live-03 img { object-position: 50% 30%; animation-duration: 16s; animation-direction: alternate-reverse; }
.hero-slide--live-04 img { object-position: 50% 20%; animation-duration: 15s; }
.hero-slide--live-05 img { object-position: 50% 40%; animation-duration: 14s; }
@keyframes homeKenBurns { from { transform: scale(1); } to { transform: scale(1.045); } }
.hero-scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.12) 26%, rgba(0,0,0,.06) 48%, rgba(0,0,0,.74) 100%); }
.hero-content { position: absolute; z-index: 3; left: 5vw; right: 5vw; bottom: max(58px, calc(34px + env(safe-area-inset-bottom))); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; }
.hero-copy { max-width: 780px; }
.hero-kicker { margin-bottom: 12px; font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.hero-title { margin: 0; color: #fff; font-size: clamp(4.25rem, 10vw, 10.5rem); line-height: .82; letter-spacing: -.045em; }
.hero-sub { margin: 24px 0 0; color: rgba(255,255,255,.9); font-size: clamp(.86rem, 1.25vw, 1rem); letter-spacing: .15em; text-transform: uppercase; }
.hero-actions { display: flex; gap: 10px; margin-top: 28px; }
.hero-actions .btn { border-color: rgba(255,255,255,.8); color: #fff; }
.hero-actions .btn:hover { background: #fff; color: #181510; }
.carousel-controls { display: flex; align-items: center; gap: 7px; }
.carousel-dots { display: flex; align-items: center; gap: 4px; }
.carousel-dot { position: relative; width: 34px; min-height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.carousel-dot::after { content: ""; position: absolute; left: 5px; right: 5px; top: 50%; height: 1px; background: rgba(255,255,255,.48); }
.carousel-dot.is-active::after { height: 2px; background: #fff; }
.carousel-button { border-color: rgba(255,255,255,.55); color: #fff; border-radius: 50%; display: grid; place-items: center; }

/* Fashion and campaign slideshow */
.campaign-feature { padding-top: 0; }
.campaign-carousel {
  position: relative;
  min-height: clamp(500px, 64vw, 760px);
  overflow: hidden;
  background: var(--paper-alt);
  border: 1px solid var(--line);
}
.campaign-carousel .campaign-slide { margin: 0; }
.campaign-carousel .campaign-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.campaign-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 7px 11px;
  color: #fff;
  background: rgba(0, 0, 0, .58);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.campaign-carousel-controls {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
}
.campaign-carousel-controls .carousel-dot { width: 30px; }
.campaign-carousel-controls .carousel-button { min-width: 40px; min-height: 40px; }

/* Live portfolio rail — preserves the original Fashion & Campaigns flow */
.portfolio-intro {
  padding: calc(var(--header-h) + clamp(82px, 9vw, 120px)) 0 40px;
}
.portfolio-intro h1 {
  max-width: 16ch;
  margin: 18px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}
.portfolio-intro__lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.fashion-rail-section { padding-bottom: clamp(90px, 10vw, 140px); }
.fashion-rail-head { padding-bottom: 16px; }
.fashion-rail-head p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .06em;
}
.fashion-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 5vw 18px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--muted) transparent;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.fashion-rail:focus-visible { outline-offset: -4px; }
.fashion-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.portfolio-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  scroll-snap-align: start;
}
.portfolio-media {
  height: 64vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  background: var(--paper-alt);
}
.portfolio-media img,
.portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-media img { pointer-events: none; transition: transform .6s var(--ease); }
.portfolio-card:hover .portfolio-media img { transform: scale(1.015); }
.portfolio-card figcaption {
  max-width: 52ch;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.portfolio-card--video .portfolio-media { width: min(1067px, 88vw); aspect-ratio: 16 / 9; }
.portfolio-media--video { position: relative; background: #000; }
.portfolio-media--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, .25));
  pointer-events: none;
  transition: opacity .25s;
}
.portfolio-media--video.is-playing::after { opacity: 0; }
.portfolio-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #171510;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  cursor: pointer;
  z-index: 2;
}
.portfolio-video-play span { display: block; margin-left: 4px; font-size: 1.3rem; line-height: 1; }
.portfolio-video-play[hidden] { display: none; }

/* About — full live biography and credentials */
.about-hero {
  position: relative;
  min-height: 720px;
  padding: calc(var(--header-h) + clamp(70px, 8vw, 116px)) 0 clamp(70px, 8vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 35%),
    var(--paper-alt);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: repeating-linear-gradient(135deg, var(--line) 0, var(--line) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}
.about-hero__word {
  position: absolute;
  z-index: 0;
  top: calc(var(--header-h) + 6px);
  left: 1vw;
  color: color-mix(in srgb, var(--ink) 7%, transparent);
  font-family: var(--serif);
  font-size: clamp(7rem, 20vw, 19rem);
  line-height: .82;
  letter-spacing: -.06em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  user-select: none;
  white-space: nowrap;
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
}
.about-hero__copy h1 {
  max-width: 14ch;
  margin: 20px 0 0;
  font-size: clamp(3rem, 6vw, 6.1rem);
}
.about-hero--background {
  display: flex;
  min-height: max(680px, 92svh);
  align-items: flex-end;
  padding: calc(var(--header-h) + clamp(72px, 9vw, 130px)) 0 clamp(66px, 8vw, 112px);
  color: #fff;
  background: #171510;
}
.about-hero--background::after {
  content: none;
}
.about-hero__backdrop,
.about-hero__scrim { position: absolute; inset: 0; }
.about-hero__backdrop { z-index: 0; overflow: hidden; }
.about-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  animation: about-image-drift 18s ease-in-out infinite alternate;
}
.about-hero__scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 13, 8, .78) 0%, rgba(9, 13, 8, .38) 58%, rgba(9, 13, 8, .16) 100%),
    linear-gradient(0deg, rgba(9, 13, 8, .72) 0%, transparent 66%);
}
.about-hero__single { position: relative; z-index: 3; }
.about-hero--background .about-hero__copy { max-width: 860px; }
.about-hero--background .about-hero__copy h1 { max-width: 13ch; color: #fff; text-wrap: balance; }
.about-hero--background .eyebrow { color: rgba(255,255,255,.78); }
@keyframes about-image-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(0, -1.2%, 0); }
}
.about-portraits { position: relative; min-height: 560px; }
.about-portrait { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait--colour { top: 0; right: 0; width: 76%; aspect-ratio: 4 / 5; transform: rotate(-4deg); }
.about-portrait--mono { bottom: 0; left: 0; width: 56%; aspect-ratio: 4 / 5; border: 7px solid var(--paper); transform: rotate(5deg); }
.about-story { background: var(--paper); }
.about-prose { width: min(720px, calc(100% - 36px)); margin-inline: auto; }
.about-prose p { margin-bottom: 26px; font-size: clamp(1.08rem, 1.7vw, 1.25rem); line-height: 1.85; }
.about-prose p:last-child { margin-bottom: 0; }
.about-pathways {
  color: #f4eee5;
  background: #171510;
}
.about-pathways .eyebrow { color: rgba(255,255,255,.68); }
.about-pathways h2 {
  max-width: 17ch;
  margin: 18px 0 clamp(38px, 5vw, 66px);
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  text-wrap: balance;
}
.about-pathways__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.22); }
.about-pathways__links a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  transition: color .25s, background .25s;
}
.about-pathways__links a:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.22); }
.about-pathways__links a:hover,
.about-pathways__links a:focus-visible { color: #fff; background: rgba(255,255,255,.07); }
.about-pathways__links span { color: #c5d8ad; font-size: 1.2rem; }
.about-credential {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(70px, 8vw, 112px) 5vw;
  color: #f4eee5;
  background: #171510;
}
.about-credential::before {
  content: none;
}
.about-credential p {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

/* Albus — complete live sequence in a draggable filmstrip */
.albus-page {
  color: #eee8df;
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, rgba(100, 92, 80, .28), transparent 66%),
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    #171614;
  background-size: 100% 100%, 4px 4px, auto;
}
.albus-intro { padding: calc(var(--header-h) + clamp(72px, 9vw, 122px)) 0 clamp(50px, 7vw, 82px); }
.albus-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr); gap: clamp(36px, 7vw, 100px); align-items: start; }
.albus-intro .eyebrow { color: #d7a878; }
.albus-intro h1 { max-width: 15ch; margin: 18px 0 0; font-size: clamp(2.7rem, 5.2vw, 5.3rem); }
.albus-intro__copy { color: #c7bfb3; font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.albus-intro__copy p { margin-bottom: 20px; }
.albus-filmstrip-section { padding-bottom: clamp(90px, 10vw, 140px); }
.albus-filmstrip-head p { margin: 0 0 16px; color: #a99f92; font-size: .8rem; letter-spacing: .06em; }
.albus-filmstrip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 0 5vw 24px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-color: #82786c transparent;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.albus-filmstrip.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.albus-frame {
  display: grid;
  flex: 0 0 auto;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: min(64vh, 600px);
  min-height: 400px;
  margin: 0;
  aspect-ratio: 2 / 3;
  scroll-snap-align: start;
}
.albus-frame--landscape { aspect-ratio: 1400 / 934; }
.albus-frame--square { aspect-ratio: 1400 / 1388; }
.albus-frame > div { min-height: 0; padding: 14px; overflow: hidden; background: #26231f; box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.albus-frame img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .6s var(--ease); }
.albus-frame:hover img { transform: scale(1.02); }
.albus-frame figcaption { color: #90877c; font-size: .72rem; letter-spacing: .1em; text-align: center; }
.albus-credit { padding-top: 18px; color: #a99f92; font-size: .82rem; }

/* Press and media — original imagery used as immersive backgrounds */
.press-hero,
.media-hero { position: relative; min-height: max(680px, 88svh); overflow: hidden; color: #fff; background: #171513; }
.press-hero { display: flex; align-items: flex-end; }
.press-hero__backdrop { position: absolute; inset: 0; }
.press-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,10,8,.82) 0%, rgba(12,10,8,.55) 48%, rgba(12,10,8,.18) 100%), linear-gradient(0deg, rgba(12,10,8,.58), transparent 50%);
}
.press-hero__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.press-hero__copy { position: relative; z-index: 2; padding-bottom: clamp(70px, 9vw, 126px); }
.press-hero__copy .eyebrow,
.media-hero__copy .eyebrow { color: rgba(255,255,255,.78); }
.press-hero__copy h1,
.media-hero__copy h1 { max-width: 13ch; margin: 18px 0 24px; color: #fff; font-size: clamp(3rem, 6vw, 6rem); }
.press-hero__copy p,
.media-hero__copy > p:last-of-type { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.press-index { background: var(--paper); }

.media-hero {
  display: block;
  min-height: 0;
  padding: calc(var(--header-h) + clamp(58px, 7vw, 96px)) 0 clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 88% 10%, rgba(90, 117, 137, .25), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 28px),
    #141719;
}
.media-hero__layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.media-hero__copy { position: relative; z-index: 2; padding: 0; }
.media-hero__copy h1 { max-width: 12ch; font-size: clamp(2.8rem, 4.6vw, 4.8rem); text-wrap: balance; }
.media-hero__stage {
  position: relative;
  min-height: clamp(460px, 52vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #090a0b;
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
}
.media-hero__stage::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.media-hero__slides { position: absolute; inset: 0; }
.media-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(14px, 2vw, 24px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1.15s var(--ease), transform 7s linear;
  transform: scale(.985);
}
.media-hero__slide.is-active { opacity: 1; transform: scale(1); }
.media-hero__pause {
  display: grid;
  width: 44px;
  height: 44px;
  margin-top: 28px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.22);
  cursor: pointer;
}
.media-index {
  padding: clamp(74px, 9vw, 124px) 0;
  color: #f2ece3;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 26px),
    #2c2924;
}
.media-index .press-list { border-color: rgba(255,255,255,.2); }
.media-index .press-row { border-color: rgba(255,255,255,.2); }
.media-index .press-title { color: rgba(255,255,255,.76); }
.media-index .press-arrow { color: #e1b07b; }

/* Reusable content */
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn:hover, .btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.text-link { display: inline-block; padding: 8px 0; font-weight: 500; }
.grid { display: grid; gap: clamp(18px, 2.5vw, 38px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-col-text, .util-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 8vw, 130px); align-items: start; }
.figure { overflow: hidden; background: var(--paper-alt); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
a:hover .figure img { transform: scale(1.015); }
.figure-cap { margin-top: 14px; font-size: .76rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.editorial-card { display: block; text-decoration: none; }
.editorial-card h3 { font-size: clamp(1.7rem, 2.7vw, 2.7rem); margin: 17px 0 8px; }
.editorial-card p { color: var(--muted); margin-bottom: 0; }
.preview-frame { aspect-ratio: 3 / 2; display: grid; place-items: center; background: var(--paper-alt); }
.preview-frame img { width: 100%; height: 100%; object-fit: contain; }
.preview-frame--fashion { background: #b7b0a5; }
.preview-frame--acting { background: #d9d4cc; }
.preview-frame--albus { background: #efede9; }
.project-preview { aspect-ratio: 3 / 2; display: grid; place-items: center; overflow: hidden; background: var(--paper-alt); }
.project-preview img { width: 100%; height: 100%; object-fit: contain; }
.preview-frame img, .project-preview img { transition: none; }
a:hover .preview-frame img, a:hover .project-preview img { transform: none; }
.vinyl-stage { background: #ede7de !important; padding: 0 !important; }
.vinyl-stage img { width: min(62%, 720px) !important; height: auto !important; max-width: none; max-height: none; align-self: center; justify-self: center; object-fit: contain !important; }
html[data-theme="dark"] .vinyl-stage { background: #24211c !important; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 2vw, 28px); }
.gallery-item { grid-column: span 4; margin: 0; }
.gallery-item.wide { grid-column: span 8; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery-item.wide img { aspect-ratio: 8 / 5; }
.essay { display: grid; gap: clamp(18px, 3vw, 50px); }
.essay-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 50px); align-items: start; }
.essay-item img { width: 100%; max-height: 90svh; object-fit: cover; }
.essay-item.offset { margin-top: clamp(34px, 8vw, 120px); }
.essay-full img { width: 100%; max-height: none; }
.essay-full.tall img { max-height: 1100px; object-fit: cover; }
.impact-hero { display: grid; grid-template-columns: 1.08fr .92fr; min-height: min(820px, 92svh); padding-top: var(--header-h); }
.impact-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.impact-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 130px); }
.impact-hero__copy h1 { font-size: clamp(3.2rem, 6.5vw, 7rem); margin: 18px 0 24px; }
.impact-hero--immersive {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: #fff;
}
.impact-hero__backdrop,
.impact-hero__backdrop::after {
  position: absolute;
  inset: 0;
}
.impact-hero__backdrop { z-index: -2; }
.impact-hero__backdrop::after { content: ""; z-index: 1; pointer-events: none; }
.impact-hero__backdrop img { width: 100%; height: 100%; object-fit: cover; }
.impact-hero--subtropic { background: #12100e; }
.impact-hero--subtropic .impact-hero__backdrop { background: #12100e; }
.impact-hero--subtropic .impact-hero__backdrop img {
  object-fit: cover;
  object-position: center 54%;
  opacity: .9;
  filter: saturate(.72) contrast(.9) brightness(.72);
}
.impact-hero--subtropic .impact-hero__backdrop::after {
  background:
    linear-gradient(90deg, rgba(8, 6, 4, .76) 0%, rgba(8, 6, 4, .38) 52%, rgba(8, 6, 4, .68) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, .48) 0%, rgba(13, 6, 3, .56) 52%, rgba(8, 6, 4, .9) 100%);
}
.subtropic-vinyl-lockup {
  display: block;
  width: min(170px, 38vw);
  margin: 0 auto 18px;
}
.subtropic-vinyl-mark {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .42));
}
.impact-hero--rolled .impact-hero__backdrop img {
  object-position: center 45%;
  filter: saturate(.72) contrast(.94);
}
.impact-hero--rolled .impact-hero__backdrop::after {
  background:
    radial-gradient(circle at 50% 34%, rgba(198, 154, 88, .2), transparent 34%),
    linear-gradient(180deg, rgba(10, 8, 5, .42) 0%, rgba(10, 8, 5, .66) 54%, rgba(10, 8, 5, .86) 100%);
}
.impact-hero__copy--centered {
  position: relative;
  z-index: 2;
  align-items: center;
  width: min(940px, 100%);
  margin-inline: auto;
  text-align: center;
}
.impact-hero__copy--centered h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 6.3rem);
}
.impact-hero__copy--centered .eyebrow,
.impact-hero__copy--centered .lede { color: rgba(255, 255, 255, .9); }
.impact-hero__copy--centered .lede { max-width: 58ch; }
.impact-hero__copy--centered p { margin-inline: auto; }
.impact-hero__copy--centered .btn { border-color: rgba(255, 255, 255, .82); color: #fff; }
.impact-hero__copy--centered .btn:hover { border-color: #fff; background: #fff; color: #171510; }
.festival-mark {
  width: min(290px, 48vw);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .42));
}
.impact-gallery { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(16px, 3vw, 46px); align-items: start; }
.impact-gallery figure { margin: 0; }
.impact-gallery figure:nth-child(2) { margin-top: clamp(50px, 9vw, 140px); }
.impact-gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.logo-mark {
  width: min(190px, 58vw);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 1px 0 rgba(20, 18, 14, .72)) drop-shadow(0 0 1px rgba(20, 18, 14, .55));
}
html[data-theme="dark"] .logo-mark { filter: none; }
.impact-hero--rolled .logo-mark {
  width: min(330px, 78vw);
  max-height: none;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .42));
}
html[data-theme="dark"] .impact-hero--rolled .logo-mark { filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .42)); }
.region-list, .press-list { border-top: 1px solid var(--line); }
.region-row, .press-row { display: grid; grid-template-columns: .7fr 1.5fr auto; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.press-row { text-decoration: none; }
.press-row:hover .press-arrow { transform: translateX(5px); }
.press-outlet, .region-name { font-weight: 600; }
.press-arrow { transition: transform .2s; }
.region-meta, .small { color: var(--muted); font-size: .9rem; }
.contact-block { display: grid; gap: 26px; }
.contact-block > div { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.contact-block p { margin-bottom: 0; overflow-wrap: anywhere; }

/* Enquiries — smiling portrait moved from the homepage */
.enquiries-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(64px, 8vw, 112px)) 0 clamp(70px, 9vw, 124px);
  overflow: hidden;
  color: #fff;
  background: #111;
}
.enquiries-hero__backdrop,
.enquiries-hero__backdrop::after { position: absolute; inset: 0; }
.enquiries-hero__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.enquiries-hero__backdrop::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(9,9,9,.86) 0%, rgba(9,9,9,.62) 44%, rgba(9,9,9,.38) 100%),
    linear-gradient(0deg, rgba(9,9,9,.55), transparent 55%);
}
.enquiries-hero__layout { position: relative; z-index: 1; align-items: center; }
.enquiries-hero__copy .eyebrow,
.enquiries-hero__copy .lede { color: rgba(255,255,255,.86); }
.enquiries-hero__copy .page-title { color: #fff; }
.enquiries-hero__copy .contact-block > div { border-color: rgba(255,255,255,.28); }
.enquiries-form-card {
  padding: clamp(24px, 3vw, 42px);
  color: #171510;
  background: rgba(247, 243, 237, .94);
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.enquiries-form-card .field input,
.enquiries-form-card .field select,
.enquiries-form-card .field textarea { color: #171510; background: rgba(255,255,255,.82); border-color: #bcb4a8; }
.enquiries-form-card .checkbox-label,
.enquiries-form-card .small { color: #5c574e; }
.enquiries-form-card .btn-solid { border-color: #171510; color: #f7f3ed; background: #171510; }
.enquiries-form-card .btn-solid:hover { border-color: #7a5838; background: #7a5838; }

/* Forms */
form { display: grid; gap: 24px; }
.field { display: grid; gap: 8px; }
.field label, .checkbox-label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.checkbox-label { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--muted); }
.checkbox-label input { width: 20px; height: 20px; margin: 2px 0 0; }
.form-status { padding: 20px; border: 1px solid var(--line); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: clamp(60px, 8vw, 110px) 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.35fr; gap: 8vw; }
.footer-name { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 5.5rem); line-height: .95; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer-links h2, .footer-links h5 { margin: 0 0 14px; font-family: var(--sans); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; padding: 4px 0; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.in-view { opacity: 1; transform: none; }
.no-js .fade-up { opacity: 1; transform: none; }

/* Project themes */
.theme-rolled { --accent: #9a6d34; }
.theme-subtropic { --paper: #f4efe8; --paper-alt: #e6ddd1; --ink: #1d2c23; --muted: #526258; --line: #c7c1b7; --accent: #b55e2c; --header-bg: rgba(244, 239, 232, .92); }
html[data-theme="dark"] .theme-rolled { --paper: #161512; --paper-alt: #201e19; --ink: #f3ecdc; --muted: #c6bda9; --line: #413b31; --accent: #c8a46d; --header-bg: rgba(22, 21, 18, .92); color-scheme: dark; }
html[data-theme="dark"] .theme-subtropic { --paper: #1d2c23; --paper-alt: #263a2d; --ink: #f4eee8; --muted: #d7c6b5; --line: #4c6252; --accent: #e38c4a; --header-bg: rgba(29, 44, 35, .92); color-scheme: dark; }

@media (max-width: 900px) {
  :root { --header-h: 60px; }
  .container { width: min(var(--max), calc(100% - 48px)); }
  .section-head, .two-col-text, .util-grid, .footer-top { grid-template-columns: 1fr; }
  .section-head { gap: 22px; align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-hero { grid-template-columns: 1fr; min-height: 0; }
  .impact-hero__image { height: min(67svh, 680px); order: -1; }
  .impact-hero__copy { padding: 64px 24px 80px; }
  .impact-hero--immersive { min-height: max(720px, 100svh); padding-top: var(--header-h); }
  .impact-hero--immersive .impact-hero__copy { padding: 48px 24px 64px; }
  .impact-hero--subtropic .impact-hero__backdrop img { padding: 38px; }
  .impact-hero--rolled .logo-mark { width: min(285px, 82vw); }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
  .nav-overlay { grid-template-columns: 1fr; align-content: start; padding: calc(var(--header-h) + 36px) 24px 40px; }
  .nav-list { columns: 2; }
  .nav-list a { font-size: clamp(1.65rem, 5vw, 2.6rem); }
  .nav-meta { margin-top: 28px; }
  .footer-links { gap: 18px; }
  .about-hero__grid, .albus-intro__grid { grid-template-columns: 1fr; }
  .about-hero__copy { max-width: 760px; }
  .about-portraits { width: min(520px, 100%); min-height: 570px; margin: 0 auto; }
  .press-hero__backdrop img { object-position: 58% center; }
  .media-hero__layout { grid-template-columns: 1fr; }
  .media-hero__copy { max-width: 720px; }
  .media-hero__stage { min-height: 0; height: min(68svh, 620px); }
}

@media (max-width: 640px) {
  :root { --header-h: 56px; }
  .container { width: calc(100% - 36px); }
  .site-header { padding: 0 14px; gap: 8px; }
  .brand-wordmark { width: 132px; }
  .theme-toggle { min-width: 44px; }
  .menu-label { display: none; }
  .menu-toggle { padding-left: 6px; }
  .menu-lines { width: 27px; }
  .nav-list { columns: 1; }
  .nav-list a { padding: 3px 0; font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .hero { min-height: 590px; }
  .hero-slide--live-01 img { object-position: 50% 25%; }
  .hero-slide--live-02 img { object-position: 50% 12%; }
  .hero-slide--live-03 img { object-position: 58% 30%; }
  .hero-slide--live-04 img { object-position: 50% 20%; }
  .hero-slide--live-05 img { object-position: 50% 40%; }
  .hero-content { left: 18px; right: 18px; bottom: max(24px, calc(16px + env(safe-area-inset-bottom))); display: block; }
  .hero-title { font-size: clamp(3.5rem, 17vw, 5.4rem); }
  .hero-sub { margin-top: 15px; font-size: .72rem; line-height: 1.5; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .btn { padding-inline: 16px; }
  .carousel-controls { margin-top: 22px; justify-content: space-between; }
  .carousel-dot { width: 31px; }
  .campaign-carousel { min-height: min(118vw, 620px); }
  .campaign-slide figcaption { left: 12px; bottom: 66px; }
  .campaign-carousel-controls { left: 10px; right: 10px; bottom: 10px; justify-content: space-between; }
  .campaign-carousel-controls .carousel-dots { flex: 1; justify-content: space-between; }
  .campaign-carousel-controls .carousel-dot { width: 30px; }
  .section, .section-sm { padding: 68px 0; }
  .campaign-feature { padding-top: 0; }
  .portfolio-intro { padding-top: calc(var(--header-h) + 64px); }
  .fashion-rail { gap: 16px; padding-inline: 18px; }
  .portfolio-media { height: 58svh; min-height: 360px; max-height: 520px; }
  .portfolio-card--video .portfolio-media { width: calc(100vw - 36px); }
  .page-intro { padding-top: calc(var(--header-h) + 58px); }
  .page-title { font-size: clamp(2.9rem, 15vw, 4.7rem); }
  .grid-2, .grid-3, .grid-4, .essay-pair { grid-template-columns: 1fr; }
  .essay-item.offset { margin-top: 0; }
  .gallery { gap: 22px; }
  .gallery-item, .gallery-item.wide { grid-column: span 12; }
  .gallery-item.wide img { aspect-ratio: 4 / 5; }
  .impact-gallery { grid-template-columns: 1fr; }
  .impact-gallery figure:nth-child(2) { margin-top: 0; }
  .region-row, .press-row { grid-template-columns: 1fr; gap: 7px; padding: 22px 0; }
  .press-arrow { justify-self: start; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; margin-top: 48px; }
  .enquiries-hero { padding-top: calc(var(--header-h) + 54px); }
  .enquiries-hero__backdrop img { object-position: center 28%; }
  .enquiries-hero__backdrop::after { background: linear-gradient(0deg, rgba(9,9,9,.88) 0%, rgba(9,9,9,.58) 70%, rgba(9,9,9,.28) 100%); }
  .enquiries-form-card { margin-top: 20px; padding: 22px 18px; }
  .about-hero { min-height: 0; padding-bottom: 72px; }
  .about-hero--background { min-height: max(650px, 88svh); padding-top: calc(var(--header-h) + 60px); }
  .about-hero__backdrop img { object-position: 52% 24%; }
  .about-hero__scrim { background: linear-gradient(0deg, rgba(9,13,8,.86) 0%, rgba(9,13,8,.36) 72%, rgba(9,13,8,.12) 100%); }
  .about-hero__word { top: calc(var(--header-h) + 22px); font-size: 25vw; }
  .about-hero__copy h1 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .about-portraits { min-height: 460px; }
  .about-portrait--colour { width: 74%; }
  .about-portrait--mono { width: 54%; border-width: 5px; }
  .about-prose { width: calc(100% - 36px); }
  .about-pathways__links { grid-template-columns: 1fr; }
  .about-pathways__links a:nth-child(odd) { border-right: 0; }
  .about-pathways__links a { padding-inline: 4px; }
  .about-credential { padding-inline: 24px; }
  .albus-intro { padding-bottom: 42px; }
  .albus-intro h1 { font-size: clamp(2.6rem, 12vw, 4.25rem); }
  .albus-filmstrip { gap: 18px; padding-inline: 18px; }
  .albus-frame { height: 54svh; min-height: 360px; }
  .albus-frame > div { padding: 10px; }
  .press-hero, .media-hero { min-height: max(620px, 88svh); }
  .media-hero { min-height: 0; padding-top: calc(var(--header-h) + 54px); }
  .press-hero__copy h1, .media-hero__copy h1 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .press-hero__backdrop img { object-position: 63% center; }
  .press-hero__backdrop::after { background: linear-gradient(0deg, rgba(12,10,8,.85) 0%, rgba(12,10,8,.36) 78%, rgba(12,10,8,.18) 100%); }
  .media-hero__stage { height: min(62svh, 500px); }
  .media-hero__slide { padding: 10px; object-position: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}


@media (max-width: 480px) {
  .page-title { font-size: clamp(2.7rem, 12.5vw, 3.2rem); }
}
