
:root {
  --black: #050505;
  --white: #f7f7f2;
  --paper: #efefeb;
  --paper-2: #e6e6e1;
  --muted: #6f6f69;
  --line: rgba(5, 5, 5, 0.14);
  --line-dark: rgba(247, 247, 242, 0.18);
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
  --font-body: "Neue Haas Grotesk Text", "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Futura PT", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

::selection {
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  background: rgba(239, 239, 235, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 34px;
  height: 44px;
  object-fit: contain;
}

.logo-word {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.main-nav a,
.footer-links a,
.text-link,
.small-link {
  position: relative;
}

.main-nav a::after,
.footer-links a::after,
.text-link::after,
.small-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35em;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 260ms ease;
}

.main-nav a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after,
.small-link:hover::after {
  width: 100%;
}

.menu-button {
  justify-self: end;
  width: 36px;
  height: 24px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 7px;
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  height: 2px;
  background: var(--black);
  display: block;
}

.section {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.25fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding-top: clamp(48px, 7vh, 100px);
  padding-bottom: clamp(48px, 7vh, 100px);
}

.hero-title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 6.8vw, 112px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.rule {
  width: 58px;
  height: 2px;
  margin: 34px 0 28px;
  background: currentColor;
}

.hero-copy {
  max-width: 430px;
  margin: 0;
  color: #171717;
  font-size: clamp(16px, 1.15vw, 19px);
}

.action-row {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 220ms ease;
}

.text-link:hover .arrow,
.gateway-card:hover .arrow,
.project-card:hover .arrow {
  transform: translate(8px, -1px);
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.hero-media img,
.project-thumb img,
.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hero-media::after,
.project-thumb::after,
.media-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, transparent 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.28) 100%);
  mix-blend-mode: multiply;
}

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

.gateway-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
}

.gateway-intro,
.gateway-card {
  min-height: 210px;
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.gateway-card:last-child {
  border-right: 0;
}

.kicker {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gateway-intro p,
.card-copy {
  max-width: 280px;
  margin: 0;
  color: #262622;
}

.gateway-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.gateway-card:hover {
  background: var(--black);
  color: var(--white);
}

.index-number {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.gateway-title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.gateway-card .rule {
  width: 42px;
  margin: 22px auto 18px;
}

.gateway-subtitle {
  margin: 0 0 26px;
  color: currentColor;
}

.featured {
  padding-top: 68px;
  padding-bottom: 74px;
}

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

.small-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}

.project-card {
  min-width: 0;
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
  margin-bottom: 16px;
}

.project-title {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project-meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.services-grid {
  display: grid;
  grid-template-columns: 0.65fr repeat(4, 1fr);
}

.services-label,
.service-card {
  padding: 38px clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  width: 34px;
  height: 28px;
  margin-bottom: 18px;
  border: 2px solid currentColor;
  opacity: 0.9;
}

.service-card:nth-child(3) .service-icon {
  border-radius: 50%;
}

.service-card:nth-child(4) .service-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.service-card:nth-child(5) .service-icon {
  width: 8px;
  height: 36px;
  transform: rotate(35deg);
}

.service-title {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  max-width: 260px;
  color: #2d2d2a;
  font-size: 14px;
}

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

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.cta-title {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 38px);
  letter-spacing: -0.055em;
  font-weight: 500;
}

.cta-grid p {
  margin: 0;
  max-width: 380px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 32px var(--gutter);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 34px;
  height: 44px;
  object-fit: contain;
}

.footer-small {
  font-size: 13px;
  color: rgba(247,247,242,0.78);
}

.footer-links {
  display: flex;
  gap: 34px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 500;
}

.page-intro {
  max-width: 620px;
  margin-top: 34px;
  font-size: clamp(18px, 1.6vw, 25px);
  color: #20201d;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.content-card {
  min-height: 270px;
  padding: clamp(30px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.content-card:last-child {
  border-right: 0;
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.055em;
  font-weight: 500;
}

.content-card p {
  margin: 0;
  max-width: 360px;
}

.work-list {
  padding-top: 68px;
  padding-bottom: 88px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}

.work-card .project-thumb {
  margin-bottom: 18px;
}

.work-card p {
  margin: 10px 0 0;
  color: #2d2d2a;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  padding-top: 92px;
  padding-bottom: 100px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list span {
  display: block;
  font-size: clamp(24px, 3vw, 48px);
  letter-spacing: -0.055em;
}

.gateway-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.gateway-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.gateway-modal {
  width: min(1080px, 100%);
  background: var(--paper);
  color: var(--black);
  border: 1px solid rgba(247,247,242,0.32);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  transform: translateY(20px) scale(0.985);
  transition: transform 440ms cubic-bezier(.2,.8,.2,1);
}

.gateway-overlay.is-visible .gateway-modal {
  transform: translateY(0) scale(1);
}

.gateway-modal-head {
  position: relative;
  padding: 38px 36px 30px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.modal-logo {
  width: 44px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.gateway-modal-head h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.gateway-modal-head p {
  margin: 16px auto 0;
  max-width: 520px;
  color: #333330;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: var(--black);
}

.modal-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-choice {
  min-height: 330px;
  padding: clamp(36px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 260ms ease, color 260ms ease;
}

.modal-choice.production {
  background: var(--white);
  color: var(--black);
}

.modal-choice.commercial {
  background: var(--black);
  color: var(--white);
}

.modal-choice:hover {
  filter: contrast(1.08);
}

.modal-choice h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.modal-choice p {
  margin: 24px 0 46px;
}

.modal-choice .text-link {
  margin-top: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .gateway-grid,
  .services-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gateway-intro,
  .gateway-card,
  .services-label,
  .service-card,
  .content-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    display: none;
  }

  .logo-word {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .project-grid,
  .work-grid,
  .modal-choices {
    grid-template-columns: 1fr;
  }

  .modal-choice {
    min-height: 240px;
  }

  .hero-title,
  .page-title {
    letter-spacing: -0.06em;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* Contact form */
.contact-page {
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.compact-contact-list {
  margin-top: 54px;
}

.contact-form-wrap {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 54px);
  background: rgba(247, 247, 242, 0.36);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 20px;
  padding: 13px 0 15px;
  outline: none;
}

.contact-form textarea {
  min-height: 240px;
  resize: vertical;
  line-height: 1.4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-width: 2px;
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-warning {
  color: var(--black);
  font-weight: 700;
}

.form-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.form-button.secondary {
  background: transparent;
  color: var(--black);
}

.form-button:hover {
  background: transparent;
  color: var(--black);
}

.form-button.secondary:hover {
  background: var(--black);
  color: var(--white);
}

.hidden-field {
  display: none;
}

@media (max-width: 1100px) {
  .contact-intro {
    position: static;
  }
}


.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-contact-button .arrow {
  font-size: 18px;
}

.footer-contact-button:hover .arrow {
  transform: translate(6px, -1px);
}


/* Full-screen site menu */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.site-menu-panel {
  margin-left: auto;
  width: min(720px, 100%);
  min-height: 100%;
  background: var(--paper);
  color: var(--black);
  border-left: 1px solid var(--line);
  padding: clamp(28px, 4vw, 58px);
  transform: translateX(28px);
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}

.site-menu.is-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(38px, 6vw, 84px);
}

.site-menu-top img {
  width: 40px;
  height: 52px;
  object-fit: contain;
}

.site-menu-close {
  border: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-menu-nav {
  display: grid;
  gap: 18px;
}

.menu-group,
.menu-subgroup {
  border-top: 1px solid var(--line);
}

.menu-group:last-of-type,
.menu-subgroup:last-of-type {
  border-bottom: 1px solid var(--line);
}

.menu-group > summary,
.menu-master-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.menu-master-link {
  border-top: 1px solid var(--line);
}

.menu-master-link:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-group > summary::-webkit-details-marker,
.menu-subgroup > summary::-webkit-details-marker {
  display: none;
}

.menu-group > summary::after,
.menu-subgroup > summary::after {
  content: "+";
  font-weight: 500;
  font-size: 0.55em;
  line-height: 1;
}

.menu-group[open] > summary::after,
.menu-subgroup[open] > summary::after {
  content: "–";
}

.menu-group-content {
  padding-bottom: 24px;
}

.menu-subgroup > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.menu-subgroup-content {
  display: grid;
  gap: 0;
  padding: 0 0 24px clamp(18px, 3vw, 42px);
}

.menu-subgroup-content a {
  display: block;
  padding: 9px 0;
  color: #1f1f1c;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.04em;
  transition: transform 180ms ease, color 180ms ease;
}

.menu-subgroup-content a:hover {
  transform: translateX(8px);
  color: var(--black);
}

@media (max-width: 760px) {
  .site-menu-panel {
    width: 100%;
  }

  .menu-group > summary,
  .menu-master-link {
    font-size: clamp(38px, 12vw, 62px);
  }
}


/* About page */
.about-page {
  padding-top: clamp(70px, 9vw, 130px);
  padding-bottom: clamp(80px, 10vw, 150px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.about-title {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(48px, 6.4vw, 110px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.about-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.32;
}

.about-specialisms {
  display: grid;
  gap: 12px;
  margin: 10px 0 34px;
  padding: 0;
  list-style: none;
}

.about-specialisms li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.about-specialisms li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

.about-copy .text-link {
  margin-top: 28px;
}

.about-slideshow {
  position: sticky;
  top: 120px;
}

.slideshow-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(5,5,5,0.04) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(5,5,5,0.04) 75%) 0 0 / 28px 28px,
    var(--paper-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slideshow-placeholder {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slideshow-placeholder span,
.slideshow-placeholder small {
  display: block;
}

.slideshow-placeholder span {
  font-size: 12px;
  font-weight: 700;
}

.slideshow-placeholder small {
  margin-top: 10px;
  font-size: 10px;
}

.slideshow-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.slideshow-controls span {
  width: 34px;
  height: 2px;
  background: var(--black);
  opacity: 0.25;
}

.slideshow-controls span:first-child {
  opacity: 1;
}

@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-slideshow {
    position: static;
  }

  .slideshow-frame {
    aspect-ratio: 16 / 9;
  }
}


.contact-secondary-copy {
  margin-top: 28px;
}


/* Album artwork page */
.album-hero {
  padding-bottom: clamp(70px, 8vw, 120px);
}

.album-index {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 42px;
  padding-bottom: 42px;
}

.album-index-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: clamp(28px, 5vw, 80px);
}

.album-index-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
}

.album-index-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

.album-index-list span {
  color: var(--muted);
  font-weight: 400;
  text-align: right;
}

.album-projects {
  padding-top: clamp(54px, 7vw, 100px);
  padding-bottom: clamp(80px, 9vw, 140px);
}

.album-project {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding: clamp(38px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

.album-project:first-child {
  border-top: 1px solid var(--line);
}

.album-project-meta {
  position: sticky;
  top: 110px;
}

.album-project-meta h2 {
  margin: 18px 0 8px;
  font-size: clamp(38px, 5.5vw, 86px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.album-artist {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.album-project-meta p {
  max-width: 430px;
}

.album-format {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-project-assets {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.album-artwork-placeholder,
.album-mockup-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(5,5,5,0.04) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(5,5,5,0.04) 75%) 0 0 / 28px 28px,
    var(--paper-2);
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-artwork-placeholder {
  aspect-ratio: 1 / 1;
}

.album-mockup-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(18px, 3vw, 34px);
}

.album-mockup-placeholder {
  min-height: 180px;
}

.album-artwork-placeholder span,
.album-artwork-placeholder small,
.album-mockup-placeholder span,
.album-mockup-placeholder small {
  display: block;
}

.album-artwork-placeholder span,
.album-mockup-placeholder span {
  font-size: 12px;
  font-weight: 700;
}

.album-artwork-placeholder small,
.album-mockup-placeholder small {
  margin-top: 10px;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .album-index-grid,
  .album-project,
  .album-project-assets {
    grid-template-columns: 1fr;
  }

  .album-index-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .album-project-meta {
    position: static;
  }
}

@media (max-width: 760px) {
  .album-index-list {
    grid-template-columns: 1fr;
  }

  .album-mockup-grid {
    grid-template-rows: none;
  }
}



/* Generic work category showcase pages */
.category-project-link {
  margin-top: 28px;
}

.category-project-assets {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.category-project-assets:hover .album-artwork-placeholder,
.category-project-assets:hover .album-mockup-placeholder {
  border-color: rgba(5, 5, 5, 0.42);
}

.category-projects .album-artwork-placeholder,
.category-projects .album-mockup-placeholder {
  transition: border-color 220ms ease, background-color 220ms ease;
}

.category-hero .page-intro {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .category-project-assets {
    grid-template-columns: 1fr;
  }
}


.category-project-meta .album-format {
  margin-top: 22px;
}


/* RS project featured cards */
.featured-rs-grid {
  align-items: stretch;
}

.featured-rs-card .media-box span {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.featured-rs-card h3 {
  margin-bottom: 12px;
}

.featured-rs-card p:last-child {
  color: var(--muted);
}



/* Selected work split category index */
.work-split {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.work-split-panel {
  padding: clamp(36px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(44px, 7vw, 90px);
}

.work-split-panel.is-commercial {
  background: var(--black);
  color: var(--white);
}

.work-split-panel.is-creative {
  background: var(--white);
  color: var(--black);
}

.work-split-panel .kicker,
.work-split-panel.is-commercial .kicker {
  color: currentColor;
}

.work-split-panel h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 132px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.work-category-links {
  display: grid;
  gap: 0;
}

.work-category-links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.work-category-links a span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.work-split-panel.is-commercial .text-link {
  color: var(--white);
}

.work-split-panel.is-commercial .text-link::after {
  background: var(--white);
}

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

/* Partner logo placeholder strip */
.partner-strip {
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.partner-strip-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-logo-placeholder {
  min-height: 120px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

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

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Creative / production dark theme */
body.creative-theme {
  background: var(--black);
  color: var(--white);
}

body.creative-theme .site-header {
  background: rgba(5, 5, 5, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

body.creative-theme .main-nav a,
body.creative-theme .menu-button,
body.creative-theme .logo-link,
body.creative-theme .text-link,
body.creative-theme .kicker,
body.creative-theme .page-intro,
body.creative-theme .project-meta,
body.creative-theme .album-artist,
body.creative-theme .album-format,
body.creative-theme .about-copy p,
body.creative-theme .category-project-meta p {
  color: var(--white);
}

body.creative-theme .text-link::after {
  background: var(--white);
}

body.creative-theme .rule,
body.creative-theme .slideshow-controls span {
  background: var(--white);
}

body.creative-theme .site-menu-panel {
  background: var(--black);
  color: var(--white);
  border-left-color: rgba(255, 255, 255, 0.2);
}

body.creative-theme .site-menu,
body.creative-theme .site-menu-top,
body.creative-theme .menu-group,
body.creative-theme .menu-subgroup,
body.creative-theme .menu-subgroup-content a {
  border-color: rgba(255, 255, 255, 0.16);
}

body.creative-theme .site-menu-close,
body.creative-theme .menu-group > summary,
body.creative-theme .menu-master-link,
body.creative-theme .menu-subgroup > summary,
body.creative-theme .menu-subgroup-content a {
  color: var(--white);
}

body.creative-theme .page-hero,
body.creative-theme .album-index,
body.creative-theme .album-project,
body.creative-theme .partner-strip {
  border-color: rgba(255, 255, 255, 0.16);
}

body.creative-theme .album-index-list a,
body.creative-theme .work-category-links a {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

body.creative-theme .album-index-list span {
  color: rgba(255, 255, 255, 0.58);
}

body.creative-theme .album-artwork-placeholder,
body.creative-theme .album-mockup-placeholder,
body.creative-theme .slideshow-frame,
body.creative-theme .partner-logo-placeholder,
body.creative-theme .media-box {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(255,255,255,0.06) 75%) 0 0 / 28px 28px,
    #111;
  color: rgba(255, 255, 255, 0.62);
}

body.creative-theme .work-card,
body.creative-theme .project-card,
body.creative-theme .contact-form-wrap,
body.creative-theme .info-card {
  background: #0f0f0f;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

body.creative-theme input,
body.creative-theme textarea,
body.creative-theme select {
  background: #050505;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

body.creative-theme .button,
body.creative-theme button[type="submit"] {
  background: var(--white);
  color: var(--black);
}

body.creative-theme .footer {
  background: var(--black);
  color: var(--white);
  border-top-color: rgba(255, 255, 255, 0.16);
}

body.creative-theme .footer a {
  color: var(--white);
}


.footer-legal {
  width: 100%;
  margin: 28px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.3;
  color: var(--muted);
  letter-spacing: 0.02em;
}

body.creative-theme .footer-legal {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
}


/* v2.0.4 visual fixes */
body.creative-theme .logo-mark {
  filter: none;
}

body.creative-theme .menu-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

body.creative-theme .menu-button span,
body.creative-theme .menu-button::before,
body.creative-theme .menu-button::after {
  background: var(--white);
  color: var(--white);
}

body.creative-theme .main-nav a {
  color: var(--white);
}

.creative-work-list-section {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.creative-work-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.28);
}

.creative-work-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(24px, 4vw, 54px);
  background: var(--black);
  color: var(--white);
}

.creative-work-list strong {
  display: block;
  font-size: clamp(28px, 4vw, 70px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.creative-work-list span {
  display: block;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.35;
}

.creative-work-list a:hover {
  background: #111;
}

.work-split-panel.is-commercial-light {
  background: var(--white);
  color: var(--black);
}

.work-split-panel.is-creative-dark {
  background: var(--black);
  color: var(--white);
}

.work-split-panel.is-creative-dark .text-link {
  color: var(--white);
}

.work-split-panel.is-creative-dark .text-link::after {
  background: var(--white);
}

.work-split-panel.is-commercial-light .text-link {
  color: var(--black);
}

.work-split-panel.is-commercial-light .text-link::after {
  background: var(--black);
}

@media (max-width: 900px) {
  .creative-work-list a {
    grid-template-columns: 1fr;
  }
}


/* Creative work page using Commercial layout language */
body.creative-theme .creative-studio-hero,
body.creative-theme .creative-services-section,
body.creative-theme .creative-selected-work-section {
  background: var(--black);
  color: var(--white);
}

body.creative-theme .split-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
}

body.creative-theme .hero-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
}

body.creative-theme .creative-service-grid,
body.creative-theme .creative-selected-grid {
  align-items: stretch;
}

body.creative-theme .creative-service-tile {
  background: #0d0d0d;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

body.creative-theme .creative-service-tile:hover {
  background: #161616;
  border-color: rgba(255, 255, 255, 0.52);
}

body.creative-theme .creative-service-tile .tile-number,
body.creative-theme .creative-service-tile p {
  color: rgba(255, 255, 255, 0.66);
}

body.creative-theme .creative-service-tile h3 {
  color: var(--white);
}

body.creative-theme .creative-work-card {
  background: #0d0d0d;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

body.creative-theme .creative-work-card:hover {
  background: #161616;
  border-color: rgba(255, 255, 255, 0.52);
}

body.creative-theme .creative-work-card .work-card-body h3 {
  color: var(--white);
}

body.creative-theme .creative-work-card .work-card-body p {
  color: rgba(255, 255, 255, 0.68);
}

body.creative-theme .creative-work-card .project-meta {
  color: rgba(255, 255, 255, 0.82);
}

body.creative-theme .creative-work-card .media-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  body.creative-theme .split-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
}


/* Combined headshots showcase */
.headshot-showcase {
  padding-top: clamp(54px, 7vw, 100px);
  padding-bottom: clamp(80px, 9vw, 140px);
}

.headshot-gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.headshot-gallery-placeholder div {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.04) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(5,5,5,0.04) 75%) 0 0 / 28px 28px,
    var(--paper-2);
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 900px) {
  .headshot-gallery-placeholder {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* v2.0.6 focused refinements from v2.0.4 base */
.category-project-meta h2 a {
  color: inherit;
  text-decoration: none;
}

.category-project-meta h2 a:hover {
  opacity: 0.72;
}

.documentary-production {
  margin: 0 0 16px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.25;
  color: var(--muted);
}

body.creative-theme .documentary-production {
  color: rgba(255, 255, 255, 0.62);
}

.promo-showcase-section {
  padding-top: clamp(54px, 7vw, 100px);
  padding-bottom: clamp(80px, 9vw, 140px);
}

.promo-showcase-list {
  display: grid;
  gap: clamp(40px, 6vw, 84px);
}

.promo-showcase-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: clamp(34px, 6vw, 90px);
  padding-bottom: clamp(38px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.promo-showcase-item h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 78px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.legacy-service-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: clamp(42px, 7vw, 100px);
}

.legacy-service-grid h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.legacy-service-grid p {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
}

.legacy-process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.legacy-process-list div {
  padding: clamp(24px, 4vw, 52px);
  background: var(--paper);
}

.legacy-process-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legacy-process-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.legacy-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.legacy-example-grid .album-mockup-placeholder {
  min-height: 280px;
}

@media (max-width: 900px) {
  .promo-showcase-item,
  .legacy-service-grid,
  .legacy-example-grid {
    grid-template-columns: 1fr;
  }
}


/* v2.0.7 menu work link/toggle refinement */
.menu-group > summary.menu-summary-with-link::after {
  content: none;
}

.menu-summary-link {
  color: inherit;
  text-decoration: none;
}

.menu-summary-link:hover {
  opacity: 0.72;
}

.menu-summary-toggle {
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
  cursor: pointer;
}

.menu-summary-toggle::before {
  content: "+";
  font-weight: 500;
  font-size: 0.55em;
  line-height: 1;
}

.menu-group[open] > summary.menu-summary-with-link .menu-summary-toggle::before {
  content: "–";
}


/* v2.0.9 creative logo correction */
body.creative-theme .logo-mark {
  filter: none;
}

body.creative-theme .site-header .main-nav a,
body.creative-theme .site-header .menu-button {
  color: var(--white);
}

body.creative-theme .site-header .menu-button span,
body.creative-theme .site-header .menu-button span::before,
body.creative-theme .site-header .menu-button span::after {
  background: var(--white);
}


/* v2.0.10 Creative page aligned to Commercial format */
body.creative-theme .creative-studio-hero,
body.creative-theme .creative-services-section,
body.creative-theme .creative-selected-work-section {
  background: var(--black);
  color: var(--white);
}

body.creative-theme .creative-studio-hero .split-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
}

body.creative-theme .creative-studio-hero .hero-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
}

body.creative-theme .creative-service-grid,
body.creative-theme .creative-selected-grid {
  align-items: stretch;
}

body.creative-theme .creative-service-tile,
body.creative-theme .creative-work-card {
  background: #0d0d0d;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

body.creative-theme .creative-service-tile:hover,
body.creative-theme .creative-work-card:hover {
  background: #161616;
  border-color: rgba(255, 255, 255, 0.52);
}

body.creative-theme .creative-service-tile .tile-number,
body.creative-theme .creative-service-tile p,
body.creative-theme .creative-work-card .work-card-body p {
  color: rgba(255, 255, 255, 0.68);
}

body.creative-theme .creative-service-tile h3,
body.creative-theme .creative-work-card .work-card-body h3 {
  color: var(--white);
}

body.creative-theme .creative-work-card .project-meta {
  color: rgba(255, 255, 255, 0.82);
}

body.creative-theme .creative-work-card .media-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  body.creative-theme .creative-studio-hero .split-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
}


/* Homepage showreel placeholder hero */
.hero-showreel {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding-top: clamp(72px, 10vh, 132px);
  padding-bottom: clamp(72px, 10vh, 132px);
  isolation: isolate;
}

.hero-showreel .hero-copy-block {
  position: relative;
  z-index: 2;
  max-width: min(760px, 92vw);
  padding: clamp(28px, 5vw, 70px);
  background: rgba(242, 242, 242, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-showreel .hero-media {
  position: absolute;
  inset: clamp(20px, 3vw, 48px);
  z-index: 1;
  margin: 0;
  aspect-ratio: auto;
  min-height: 440px;
  background: #111111;
}

.hero-showreel .hero-media img {
  filter: grayscale(1);
  opacity: 0.92;
}

.hero-showreel .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(242,242,242,0.72) 0%, rgba(242,242,242,0.42) 44%, rgba(242,242,242,0.04) 100%);
}

.hero-showreel .hero-media::after {
  z-index: 2;
}

@media (max-width: 760px) {
  .hero-showreel {
    min-height: 680px;
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero-showreel .hero-copy-block {
    padding: 28px;
    margin-top: auto;
  }

  .hero-showreel .hero-media {
    inset: 18px;
    min-height: auto;
  }

  .hero-showreel .hero-media::before {
    background: linear-gradient(180deg, rgba(242,242,242,0.12) 0%, rgba(242,242,242,0.78) 68%, rgba(242,242,242,0.9) 100%);
  }
}


/* Restored featured-project minibar style */
.album-index-heading .rule {
  margin-top: 28px;
}

.album-index-list a {
  color: currentColor;
  line-height: 1.25;
}

.album-index-list a span {
  white-space: nowrap;
}


/* Thin separators between listed project entries */
.category-project + .category-project {
  border-top: 1px solid var(--line);
}

body.creative-theme .category-project + .category-project {
  border-top-color: rgba(255, 255, 255, 0.16);
}


/* Creative-theme card/meta contrast fix */
body.creative-theme .project-meta,
body.creative-theme .work-card .project-meta,
body.creative-theme .work-card p,
body.creative-theme .project-card .project-meta {
  color: rgba(255, 255, 255, 0.76);
}

body.creative-theme .work-card h3,
body.creative-theme .project-card h3,
body.creative-theme .project-title {
  color: var(--white);
}


/* Larger project-list spacing and separators */
.category-project {
  padding-top: clamp(42px, 5vw, 74px);
  padding-bottom: clamp(42px, 5vw, 74px);
}

.category-project + .category-project {
  margin-top: 3px;
  border-top: 1px solid var(--line);
}

body.creative-theme .category-project + .category-project {
  border-top-color: rgba(255, 255, 255, 0.18);
}


/* Dark-theme text selection visibility */
body.creative-theme ::selection {
  background: rgba(190, 190, 190, 0.72);
  color: #050505;
}

body.creative-theme ::-moz-selection {
  background: rgba(190, 190, 190, 0.72);
  color: #050505;
}


/* Headshot gallery collage sizing */
.headshot-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(10px, 1.2vw, 18px);
  align-items: stretch;
}

.headshot-collage-item {
  margin: 0;
  min-height: 0;
}

.headshot-collage-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.headshot-collage-item:nth-child(1),
.headshot-collage-item:nth-child(4),
.headshot-collage-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.headshot-collage-item:nth-child(2),
.headshot-collage-item:nth-child(3),
.headshot-collage-item:nth-child(5),
.headshot-collage-item:nth-child(6),
.headshot-collage-item:nth-child(8),
.headshot-collage-item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 1200px) {
  .headshot-collage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .headshot-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .headshot-collage-item,
  .headshot-collage-item:nth-child(n) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* Studio-side gateway pages */
.studio-side-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 12vw, 170px);
  padding-bottom: clamp(72px, 9vw, 130px);
  isolation: isolate;
}

.studio-side-hero-media {
  position: absolute;
  inset: clamp(18px, 3vw, 48px);
  z-index: -1;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.studio-side-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.92;
}

.studio-side-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(242,242,242,0.88) 0%, rgba(242,242,242,0.62) 48%, rgba(242,242,242,0.12) 100%);
}

.studio-side-header {
  max-width: 980px;
}

.studio-side-title {
  margin-bottom: 28px;
}

.studio-side-intro {
  max-width: 760px;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.32;
}

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

.studio-category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.studio-category-row {
  display: grid;
  grid-template-columns: clamp(86px, 11vw, 148px) 1fr auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: clamp(16px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--line);
  color: currentColor;
}

.studio-category-row:first-child {
  border-top: 1px solid var(--line);
}

.studio-category-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black);
}

.studio-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
}

.studio-category-text {
  display: grid;
  gap: 8px;
}

.studio-category-text strong {
  display: block;
  font-size: clamp(24px, 3.2vw, 54px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.studio-category-text span {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.4;
}

.studio-category-action {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.studio-side-cta {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

body.creative-theme .studio-side-hero-media {
  background: #111;
}

body.creative-theme .studio-side-hero-media::after {
  background: linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.58) 50%, rgba(5,5,5,0.1) 100%);
}

body.creative-theme .studio-side-index,
body.creative-theme .studio-category-row {
  border-color: rgba(255, 255, 255, 0.18);
}

body.creative-theme .studio-category-text span,
body.creative-theme .studio-category-action {
  color: rgba(255, 255, 255, 0.72);
}

body.creative-theme .studio-category-image {
  background: #111;
}

@media (max-width: 900px) {
  .studio-category-row {
    grid-template-columns: clamp(78px, 24vw, 120px) 1fr;
  }

  .studio-category-action {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .studio-side-hero-media::after,
  body.creative-theme .studio-side-hero-media::after {
    background: linear-gradient(180deg, rgba(242,242,242,0.1) 0%, rgba(242,242,242,0.84) 64%, rgba(242,242,242,0.95) 100%);
  }

  body.creative-theme .studio-side-hero-media::after {
    background: linear-gradient(180deg, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.84) 64%, rgba(5,5,5,0.95) 100%);
  }

  .studio-category-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .studio-category-image {
    width: min(180px, 100%);
  }

  .studio-category-action {
    grid-column: auto;
  }
}


/* About page smaller detail copy */
.about-detail-copy,
.about-specialisms li {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.about-specialisms {
  gap: 7px;
}

.about-specialisms li {
  padding-left: 20px;
}


/* Site menu uniform spacing fix */
.site-menu-nav {
  display: grid;
  gap: 0;
}

.menu-group,
.menu-master-link {
  border-top: 1px solid var(--line);
}

.menu-group {
  border-bottom: 0;
}

.menu-group:last-of-type,
.menu-subgroup:last-of-type {
  border-bottom: 0;
}

.menu-master-link:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-group > summary,
.menu-master-link {
  min-height: clamp(116px, 16vh, 170px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-group > summary::after {
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.menu-subgroup > summary::after {
  font-size: 1em;
}

.menu-group-content {
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
}

.menu-subgroup {
  border-top: 0;
}

@media (max-width: 760px) {
  .menu-group > summary,
  .menu-master-link {
    min-height: clamp(104px, 18vh, 142px);
    font-size: clamp(36px, 10vw, 54px);
  }
}


/* Commercial selected work hierarchy */
.commercial-secondary-block {
  margin-top: clamp(52px, 6vw, 88px);
  padding-top: clamp(30px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.section-head-small {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.commercial-secondary-work {
  gap: 44px 28px;
  justify-items: start;
}

.commercial-secondary-work .work-card {
  width: 80%;
}

.commercial-secondary-work .work-card .project-thumb {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
}

.commercial-secondary-work .work-card h3 {
  font-size: 0.9em;
  line-height: inherit;
  letter-spacing: inherit;
}

.commercial-secondary-work .work-card p {
  margin: 10px 0 0;
  max-width: none;
  font-size: 0.92em;
  line-height: inherit;
  color: #2d2d2a;
}

@media (max-width: 900px) {
  .commercial-secondary-work .work-card {
    width: 100%;
  }
}

/* Side menu Commercial / Creative colour split */
.menu-subgroup-commercial,
.menu-subgroup-creative {
  margin: 0;
  padding: 0 clamp(14px, 2vw, 22px);
}

.menu-subgroup-commercial {
  background: var(--paper);
  color: var(--black);
  border: 1px solid var(--line);
}

.menu-subgroup-creative {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.menu-subgroup-commercial + .menu-subgroup-creative {
  margin-top: 12px;
}

.menu-subgroup-commercial > summary,
.menu-subgroup-creative > summary {
  color: currentColor;
}

.menu-subgroup-commercial .menu-subgroup-content a {
  color: var(--black);
}

.menu-subgroup-creative .menu-subgroup-content a {
  color: rgba(255, 255, 255, 0.82);
}

.menu-subgroup-creative .menu-subgroup-content a:hover {
  color: var(--white);
}

.menu-subgroup-creative > summary::after {
  color: var(--white);
}

.menu-subgroup-commercial > summary::after {
  color: var(--black);
}


/* Contact page smaller detail copy */
.contact-detail-copy {
  max-width: 720px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.42;
  letter-spacing: -0.015em;
}


/* Homepage studio anchor viewport tuning */
#studio {
  scroll-margin-top: clamp(84px, 13vh, 128px);
}

.gateway-intro,
.gateway-card {
  min-height: clamp(176px, 21vh, 210px);
  padding: clamp(24px, 3.3vw, 46px);
}

.featured {
  padding-top: clamp(36px, 4.8vw, 52px);
}

@media (max-width: 900px) {
  #studio {
    scroll-margin-top: 88px;
  }

  .gateway-intro,
  .gateway-card {
    min-height: auto;
  }
}


/* Compact side menu size and hierarchy */
.site-menu-panel {
  width: min(25vw, 430px);
  min-width: 320px;
  padding: clamp(18px, 2vw, 30px);
}

.site-menu-top {
  margin-bottom: clamp(22px, 3vw, 40px);
}

.site-menu-top img {
  width: 30px;
  height: 40px;
}

.menu-group > summary,
.menu-master-link {
  min-height: clamp(58px, 8vh, 88px);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-group > summary::after {
  font-size: 1em;
  font-weight: 400;
}

.menu-group-content {
  padding-bottom: 16px;
}

.menu-subgroup-commercial,
.menu-subgroup-creative {
  padding: 0 clamp(10px, 1.2vw, 16px);
}

.menu-subgroup > summary,
.menu-subgroup-commercial > summary,
.menu-subgroup-creative > summary {
  min-height: clamp(46px, 6vh, 64px);
  padding: 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-subgroup > summary::after,
.menu-subgroup-commercial > summary::after,
.menu-subgroup-creative > summary::after {
  font-size: 1em;
  font-weight: 400;
}

.menu-subgroup-content {
  padding: 0 0 14px clamp(10px, 1.2vw, 16px);
}

.menu-subgroup-content a {
  padding: 6px 0;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.menu-subgroup-commercial + .menu-subgroup-creative {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .site-menu-panel {
    width: min(380px, 100%);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-menu-panel {
    width: 100%;
    min-width: 0;
  }

  .menu-group > summary,
  .menu-master-link {
    min-height: 68px;
    font-size: clamp(26px, 8vw, 38px);
  }

  .menu-subgroup > summary,
  .menu-subgroup-commercial > summary,
  .menu-subgroup-creative > summary {
    min-height: 54px;
    font-size: clamp(19px, 6vw, 28px);
  }
}


/* About page uniform body copy */
.about-copy .about-body-copy,
.about-copy .about-detail-copy,
.about-copy .about-body-list li,
.about-copy .about-specialisms li {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.38;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.about-copy .about-body-list,
.about-copy .about-specialisms {
  gap: 7px;
  margin: 10px 0 24px;
}

.about-copy .about-body-list li,
.about-copy .about-specialisms li {
  padding-left: 20px;
}


/* About partner strip column alignment */
.partner-strip-grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(44px, 8vw, 120px);
}

.partner-strip-heading {
  max-width: 720px;
}

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


/* Sitewide body copy standard */
:root {
  --body-copy-size: 16px;
  --body-copy-line-height: 1.35;
  --body-copy-letter-spacing: -0.015em;
}

body {
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line-height);
  letter-spacing: var(--body-copy-letter-spacing);
}

.page-intro,
.studio-side-intro,
.about-copy > p:not(.kicker),
.about-copy .about-body-copy,
.about-copy .about-detail-copy,
.about-copy .about-specialisms li,
.about-copy .about-body-list li,
.contact-detail-copy,
.content-card p,
.work-card p,
.project-card p,
.card-copy,
.gateway-intro p,
.service-card p,
.cta-grid p,
.category-project-meta p:not(.project-meta):not(.album-artist):not(.album-format),
.studio-category-text span,
.album-projects p:not(.project-meta):not(.album-artist):not(.album-format),
.project-body p,
.project-copy p {
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line-height);
  letter-spacing: var(--body-copy-letter-spacing);
  font-weight: 400;
}

.about-copy .about-specialisms li,
.about-copy .about-body-list li {
  line-height: var(--body-copy-line-height);
}

.page-intro {
  max-width: 620px;
}

.studio-side-intro {
  max-width: 760px;
}

.contact-detail-copy,
.about-copy > p:not(.kicker) {
  max-width: 720px;
}


/* Project meta / kicker text standard */
.project-meta,
.project-card .project-meta,
.work-card .project-meta,
.category-project-meta .project-meta,
.album-artist,
.album-format {
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker,
.section-head .kicker,
.album-index-heading .kicker,
.gateway-intro .kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card .project-title + .project-meta,
.project-card h3 + .project-meta {
  margin-top: 3px;
}

.project-card .project-meta {
  margin: 0;
}

body.creative-theme .project-meta,
body.creative-theme .project-card .project-meta,
body.creative-theme .work-card .project-meta,
body.creative-theme .category-project-meta .project-meta,
body.creative-theme .album-artist,
body.creative-theme .album-format {
  color: rgba(255, 255, 255, 0.76);
}


/* Contact form visual definition */
.contact-form-wrap {
  background: #e7e7e1;
  border: 1px solid rgba(5, 5, 5, 0.18);
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.06);
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.22);
  border-radius: 0;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--black);
  padding: 13px 15px;
}

.contact-form label:first-of-type {
  margin-top: 0;
}


/* About partner strip alignment with content column */
.partner-strip {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.partner-strip .inner {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}


/* About page image strip */
.about-slideshow {
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

.about-image-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  align-items: stretch;
}

.about-image-card {
  margin: 0;
  overflow: hidden;
  background: #111;
  min-height: 180px;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.about-image-card:nth-child(1),
.about-image-card:nth-child(4) {
  grid-column: span 3;
}

.about-image-card:nth-child(2),
.about-image-card:nth-child(3),
.about-image-card:nth-child(5),
.about-image-card:nth-child(6) {
  grid-column: span 3;
}

@media (max-width: 820px) {
  .about-image-strip {
    grid-template-columns: 1fr;
  }

  .about-image-card:nth-child(n) {
    grid-column: auto;
  }
}

/* Real image frames for project/category pages */
.project-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
  min-height: 100%;
}

.project-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-image-frame figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.album-artwork-placeholder.project-image-frame,
.album-mockup-placeholder.project-image-frame {
  display: block;
  text-align: left;
  background: var(--black);
  color: var(--white);
  letter-spacing: normal;
  text-transform: none;
}

.project-image-frame--poster {
  background: var(--paper);
}

.project-image-frame--poster img {
  object-fit: contain;
  background: var(--paper);
}

.project-image-frame--poster figcaption {
  background: rgba(5, 5, 5, 0.72);
}

.album-mockup-grid .project-image-frame {
  min-height: 180px;
}


/* Real partner/client logo grid */
.partner-logo-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.2vw, 32px);
  background: var(--paper);
}

.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-card:nth-child(1) img,
.partner-logo-card:nth-child(3) img,
.partner-logo-card:nth-child(4) img,
.partner-logo-card:nth-child(10) img,
.partner-logo-card:nth-child(11) img,
.partner-logo-card:nth-child(12) img,
.partner-logo-card:nth-child(13) img,
.partner-logo-card:nth-child(14) img {
  max-height: 92px;
}

.partner-logo-card:nth-child(7) img,
.partner-logo-card:nth-child(9) img {
  max-height: 108px;
}

.partner-logo-placeholder {
  display: none;
}

/* Additional partner logo sizing */
.partner-logo-card img[alt="Leeds Dads"] {
  max-height: 104px;
}

.partner-logo-card img[alt="Umbra Motion Picture Company"] {
  max-height: 112px;
}

.partner-logo-card img[alt="Scratch and Tickle"] {
  max-height: 110px;
}

.partner-logo-card img[alt="Monarkki"] {
  max-height: 74px;
}


/* Project media collage correction: compact, legible, no stretched backing images */
.category-project {
  align-items: start;
}

.category-project-assets,
a.category-project-assets {
  align-items: start;
  grid-template-columns: minmax(260px, 1.05fr) minmax(220px, 0.95fr);
  max-width: min(100%, 1180px);
}

.category-project-assets .project-image-frame {
  min-height: 0;
  height: auto;
}

.category-project-assets > .project-image-frame:first-child {
  aspect-ratio: 16 / 11;
}

.category-project-assets .album-mockup-grid {
  display: grid;
  grid-template-rows: none;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 22px);
}

.category-project-assets .album-mockup-grid .project-image-frame {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.category-project-assets .project-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-project-assets .project-image-frame--poster,
.category-project-assets .album-mockup-grid .project-image-frame--poster {
  aspect-ratio: 2 / 3;
}

.category-project-assets .project-image-frame--poster img {
  object-fit: contain;
}

.project-collab-logo {
  justify-self: end;
  align-self: start;
  width: min(220px, 42vw);
  margin: 0 0 clamp(16px, 2vw, 26px) auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.project-collab-logo span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-collab-logo img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .category-project-assets,
  a.category-project-assets {
    grid-template-columns: 1fr;
  }

  .category-project-assets > .project-image-frame:first-child,
  .category-project-assets .album-mockup-grid .project-image-frame {
    aspect-ratio: 16 / 10;
  }

  .project-collab-logo {
    justify-self: start;
    margin-left: 0;
  }
}

/* Partner logo block contrast correction */
.partner-logo-grid {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(12px, 1.6vw, 20px);
}

.partner-logo-card {
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
}


/* Dark menu expanded panel readability */
.site-menu .work-submenu,
.site-menu .submenu-panel,
.site-menu .nav-submenu,
.site-menu .menu-submenu,
.site-menu .site-menu-submenu,
.site-menu .work-subcategory-panel {
  background: #1d1d1d;
  color: var(--white);
}

.site-menu .work-submenu a,
.site-menu .submenu-panel a,
.site-menu .nav-submenu a,
.site-menu .menu-submenu a,
.site-menu .site-menu-submenu a,
.site-menu .work-subcategory-panel a {
  color: rgba(255, 255, 255, 0.92);
}

.site-menu .work-submenu a:hover,
.site-menu .submenu-panel a:hover,
.site-menu .nav-submenu a:hover,
.site-menu .menu-submenu a:hover,
.site-menu .site-menu-submenu a:hover,
.site-menu .work-subcategory-panel a:hover {
  color: var(--white);
}


.site-menu [data-menu-panel],
.site-menu .menu-group[aria-expanded="true"],
.site-menu .menu-section.is-open,
.site-menu .work-nav-panel,
.site-menu .work-panel,
.site-menu .site-menu-group.is-open {
  background: #1d1d1d;
  color: var(--white);
}

.site-menu [data-menu-panel] a,
.site-menu .menu-group[aria-expanded="true"] a,
.site-menu .menu-section.is-open a,
.site-menu .work-nav-panel a,
.site-menu .work-panel a,
.site-menu .site-menu-group.is-open a {
  color: rgba(255, 255, 255, 0.92);
}


.site-menu .site-menu-subpanel,
.site-menu .site-menu-children,
.site-menu .site-menu-branch,
.site-menu .menu-children,
.site-menu .work-children,
.site-menu .nav-children {
  background: #1d1d1d !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.site-menu .site-menu-subpanel a,
.site-menu .site-menu-children a,
.site-menu .site-menu-branch a,
.site-menu .menu-children a,
.site-menu .work-children a,
.site-menu .nav-children a {
  color: rgba(255, 255, 255, 0.9) !important;
}


/* Project collaboration logo rows */
.project-collab-logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.project-collab-logo-row img {
  max-width: 92px;
  max-height: 54px;
  object-fit: contain;
}

.project-collab-logo small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}


/* v2.0.27 media-layout corrections: compact rows, poster-aware sizing, collab logos in text block */
.category-project {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.category-project-meta {
  min-width: 0;
}

.category-project-meta .project-collab-logo {
  margin-top: clamp(20px, 3vw, 36px);
}

.project-collab-logo {
  justify-self: stretch;
  width: 100%;
  max-width: 360px;
  margin: 0;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.045);
}

body.creative-theme .project-collab-logo {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.project-collab-logo span,
.project-collab-logo small {
  color: var(--muted);
  text-align: left;
}

.project-collab-logo-row {
  justify-content: flex-start;
  align-items: center;
}

.project-collab-logo-row img {
  max-width: 118px;
  max-height: 58px;
  object-fit: contain;
}

.category-project-assets,
a.category-project-assets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  align-items: start;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}

.category-project-assets .album-mockup-grid {
  display: contents;
}

.category-project-assets .project-image-frame,
.category-project-assets > .project-image-frame:first-child,
.category-project-assets .album-mockup-grid .project-image-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  width: 100%;
}

.category-project-assets .project-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-project-assets .project-image-frame--poster,
.category-project-assets .album-mockup-grid .project-image-frame--poster {
  aspect-ratio: 2 / 3;
}

.category-project-assets .project-image-frame--poster img {
  object-fit: contain;
}

.project-image-frame figcaption {
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  font-size: 9px;
  letter-spacing: 0.1em;
}

/* Album artwork uses cover-first spotlight: square cover left, supporting 16:9 images right */
.category-project-assets.album-art-layout,
a.category-project-assets.album-art-layout,
.album-project-assets.album-art-layout {
  grid-template-columns: minmax(240px, 1.05fr) minmax(180px, 0.76fr);
  max-width: 760px;
}

.album-art-layout > .project-image-frame:first-child {
  aspect-ratio: 1 / 1;
}

.album-art-layout .album-mockup-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.25vw, 18px);
}

.album-art-layout .album-mockup-grid .project-image-frame {
  aspect-ratio: 16 / 9;
}

/* Behind-the-scenes rows sit beneath the main film stills without oversized backing images */
.category-project-assets.bts-media-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* About-page partner logo contrast: light mid-grey with enough contrast for black and white transparent marks */
.partner-logo-grid {
  background: #b8b8b5;
  border-color: #b8b8b5;
  padding: clamp(10px, 1.3vw, 16px);
}

.partner-logo-card {
  background: #cececa;
  border: 1px solid rgba(5, 5, 5, 0.08);
}

.partner-logo-card img {
  filter: drop-shadow(0 0 1px rgba(5, 5, 5, 0.42));
}

/* Dark menu expanded panel readability */
body.creative-theme .menu-subgroup-commercial,
.site-menu .menu-subgroup-commercial {
  background: #242424 !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

body.creative-theme .menu-subgroup-commercial .menu-subgroup-content a,
.site-menu .menu-subgroup-commercial .menu-subgroup-content a,
body.creative-theme .menu-subgroup-commercial > summary,
.site-menu .menu-subgroup-commercial > summary,
body.creative-theme .menu-subgroup-commercial > summary::after,
.site-menu .menu-subgroup-commercial > summary::after {
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 1100px) {
  .category-project {
    grid-template-columns: 1fr;
  }

  .category-project-assets,
  a.category-project-assets {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .category-project-assets,
  a.category-project-assets,
  .category-project-assets.album-art-layout,
  a.category-project-assets.album-art-layout,
  .album-project-assets.album-art-layout {
    grid-template-columns: 1fr;
  }

  .category-project-assets .album-mockup-grid,
  .album-art-layout .album-mockup-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}


/* v2.0.27 nav correction: Commercial submenu stays light with black readable text on dark-page menus */
.site-menu .menu-subgroup-commercial,
body.creative-theme .site-menu .menu-subgroup-commercial,
body.creative-theme .menu-subgroup-commercial {
  background: var(--paper) !important;
  color: var(--black) !important;
  border: 1px solid var(--line) !important;
}

.site-menu .menu-subgroup-commercial > summary,
body.creative-theme .site-menu .menu-subgroup-commercial > summary,
body.creative-theme .menu-subgroup-commercial > summary,
.site-menu .menu-subgroup-commercial > summary::after,
body.creative-theme .site-menu .menu-subgroup-commercial > summary::after,
body.creative-theme .menu-subgroup-commercial > summary::after,
.site-menu .menu-subgroup-commercial .menu-subgroup-content a,
body.creative-theme .site-menu .menu-subgroup-commercial .menu-subgroup-content a,
body.creative-theme .menu-subgroup-commercial .menu-subgroup-content a {
  color: var(--black) !important;
}

.site-menu .menu-subgroup-commercial .menu-subgroup-content a:hover,
body.creative-theme .site-menu .menu-subgroup-commercial .menu-subgroup-content a:hover,
body.creative-theme .menu-subgroup-commercial .menu-subgroup-content a:hover {
  color: var(--black) !important;
  opacity: 0.68;
}


/* Anchor alignment: keeps in-page jumps below the fixed header instead of landing too high/low. */
html {
  scroll-padding-top: var(--anchor-scroll-offset, 128px);
}

[id] {
  scroll-margin-top: var(--anchor-scroll-offset, 128px);
}

.category-project,
.project-entry,
.work-project,
.project-card,
.album-project,
section[id],
article[id] {
  scroll-margin-top: var(--anchor-scroll-offset, 128px);
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: var(--anchor-scroll-offset-mobile, 104px);
  }

  [id],
  .category-project,
  .project-entry,
  .work-project,
  .project-card,
  .album-project,
  section[id],
  article[id] {
    scroll-margin-top: var(--anchor-scroll-offset-mobile, 104px);
  }
}


/* v2.0.28 event project media layout */
.category-project-assets.event-project-layout,
a.category-project-assets.event-project-layout {
  grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.85fr);
  max-width: 860px;
}

.event-project-layout > .project-image-frame:first-child {
  aspect-ratio: 16 / 9;
}

.event-project-layout .album-mockup-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.25vw, 18px);
}

.event-project-layout .album-mockup-grid .project-image-frame {
  aspect-ratio: 16 / 9;
}

@media (max-width: 760px) {
  .category-project-assets.event-project-layout,
  a.category-project-assets.event-project-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}


/* v2.0.29 rule pass: hide collaboration panels until logo integration is redesigned. */
.project-collab-logo,
.project-collab-logo-row {
  display: none !important;
}

/* v2.0.29 rule pass: captions are for individual project pages, not category/list pages. */
.category-projects .category-project-assets figcaption,
.album-projects .category-project-assets figcaption,
.content-grid .project-image-frame figcaption,
.work-grid .project-image-frame figcaption {
  display: none !important;
}

/* v2.0.29 rule pass: headshots use uniform rows of four, not collage spans. */
.headshot-collage {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: clamp(10px, 1.2vw, 18px) !important;
}
.headshot-collage-item,
.headshot-collage-item:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: 4 / 5;
}
.headshot-collage-item img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}
@media (max-width: 900px) {
  .headshot-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .headshot-collage {
    grid-template-columns: 1fr !important;
  }
}

/* v2.0.29 rule pass: album cover defines the visual height; right-side images stack to match it. */
.category-project-assets.album-art-layout,
a.category-project-assets.album-art-layout,
.album-project-assets.album-art-layout {
  align-items: stretch !important;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.72fr) !important;
}
.album-art-layout > .project-image-frame:first-child {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}
.album-art-layout .album-mockup-grid {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  grid-template-columns: 1fr !important;
  height: 100% !important;
  align-self: stretch !important;
}
.album-art-layout .album-mockup-grid .project-image-frame {
  aspect-ratio: auto !important;
  height: 100% !important;
  min-height: 0 !important;
}
.album-art-layout .album-mockup-grid .project-image-frame img {
  height: 100% !important;
  object-fit: cover !important;
}

/* v2.0.29 rule pass: poster-led project rows keep a clear poster with supporting images aligned to its height. */
.category-project-assets:has(.project-image-frame--poster):not(.album-art-layout) {
  align-items: stretch !important;
}
.category-project-assets:has(.project-image-frame--poster):not(.album-art-layout) .album-mockup-grid {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  height: 100% !important;
  align-self: stretch !important;
}
.category-project-assets:has(.project-image-frame--poster):not(.album-art-layout) .album-mockup-grid .project-image-frame {
  height: 100% !important;
  min-height: 0 !important;
}
.category-project-assets:has(.project-image-frame--poster):not(.album-art-layout) .project-image-frame--poster img {
  object-fit: contain !important;
}

/* v2.0.29 rule pass: about logo wall becomes a landscape strip rather than a tall block. */
.partner-logo-grid {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(100px, 1fr)) !important;
  gap: 1px !important;
  width: 100% !important;
  max-width: none !important;
  background: #bdbdb9 !important;
  border-color: #bdbdb9 !important;
  padding: clamp(8px, 1vw, 14px) !important;
}
.partner-logo-card {
  min-height: clamp(92px, 8vw, 128px) !important;
  display: grid !important;
  place-items: center !important;
  background: #d2d2ce !important;
}
.partner-logo-card img {
  max-height: 72px !important;
  max-width: 78% !important;
}
@media (max-width: 1100px) {
  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(100px, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr)) !important;
  }
}

/* v2.0.29 rule pass: keep empty placeholder media from appearing if any remain in markup. */
.album-artwork-placeholder:not(:has(img)),
.album-mockup-placeholder:not(:has(img)),
.category-project-assets:not(:has(img)),
.album-project-assets:not(:has(img)) {
  display: none !important;
}

@media (max-width: 760px) {
  .category-project-assets.album-art-layout,
  a.category-project-assets.album-art-layout,
  .album-project-assets.album-art-layout {
    grid-template-columns: 1fr !important;
  }
}


/* v2.0.29 rule pass: captions return on individual project pages only. */
body.project-detail-page .category-projects .category-project-assets figcaption,
body.project-detail-page .album-projects .category-project-assets figcaption,
body.project-detail-page .project-image-frame figcaption {
  display: block !important;
}


/* v2.0.30 terminology: Block SubHeader uses the same visual treatment as the page kicker. Grand Title refers to the large page title style. */
.block-subheader {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.grand-title {
  /* Semantic class for the existing large page title style. */
}


/* v2.0.30 about page codification:
   About image strip positions are data-about-image="1" through "6".
   Future requests like "change image 2 on about" refer to that numbered position. */
.about-image-strip [data-about-image] {
  /* Semantic marker only; visual layout remains controlled by existing gallery rules. */
}

/* v2.0.30 about logo wall: wider box and larger logos. */
.about-page .partner-logo-grid,
.partner-logo-grid {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  grid-template-columns: repeat(8, minmax(120px, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  padding: clamp(16px, 2vw, 28px) !important;
}

.about-page .partner-logo-card,
.partner-logo-card {
  min-height: clamp(128px, 11vw, 180px) !important;
  padding: clamp(18px, 2vw, 34px) !important;
}

.about-page .partner-logo-card img,
.partner-logo-card img {
  max-width: 90% !important;
  max-height: clamp(84px, 8vw, 128px) !important;
}

@media (max-width: 1100px) {
  .about-page .partner-logo-grid,
  .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .about-page .partner-logo-grid,
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
  }
}


/* v2.0.30 terminology: Service Bar refers to the commercial services strip on the home/studio page. */
.service-bar,
.services-band {
  /* Existing Service Bar container. */
}

/* Service Bar icons/shapes are intentionally hidden pending branded replacements. */
.service-icon {
  display: none !important;
}

.project-card--mpa {
  cursor: default;
}

.project-card--mpa .project-thumb img {
  filter: grayscale(1);
}


/* v2.0.30 contact page thematic image */
.contact-theme-image {
  margin: clamp(28px, 4vw, 54px) 0 0;
  max-width: min(100%, 720px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.contact-theme-image img {
  width: 100%;
  aspect-ratio: 2.39 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}


/* v2.0.30 showreel placeholder:
   The homepage showreel image is currently a static placeholder.
   Future replacement: slideshow or Vimeo-linked/embedded showreel. */
.hero-showreel-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* v2.0.31 about logo grid correction:
   The logo wall should read as a centred grey box with two rows of larger logos on desktop.
   With 16 current logos this uses 8 columns x 2 rows; reduce to 6 columns only if the logo count is reduced to 12. */
.partner-strip .inner.partner-strip-grid {
  display: block !important;
  width: min(92vw, 1780px) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.partner-strip .partner-logo-grid {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(18px, 2vw, 28px) auto 0 !important;
  padding: clamp(34px, 3vw, 58px) !important;
  display: grid !important;
  grid-template-columns: repeat(8, minmax(120px, 1fr)) !important;
  gap: clamp(26px, 2.4vw, 46px) !important;
  justify-content: center !important;
  align-items: center !important;
  background: #bfbfbc !important;
  border: 0 !important;
}

.partner-strip .partner-logo-card {
  min-height: clamp(132px, 9vw, 190px) !important;
  aspect-ratio: 1.22 / 1 !important;
  padding: clamp(18px, 1.8vw, 32px) !important;
  display: grid !important;
  place-items: center !important;
  background: #d6d6d2 !important;
  border: 0 !important;
}

.partner-strip .partner-logo-card img {
  max-width: 96% !important;
  max-height: 118px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 1300px) {
  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(130px, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
    padding: 24px !important;
    gap: 18px !important;
  }
}


/* v2.0.32 about logo grid refinement:
   Bradford 2025 replaces Screenhouse.
   Mr Gustave and West Yorkshire Music Network are centred and constrained so they sit cleanly in the same row height. */
.partner-strip .partner-logo-card {
  align-items: center !important;
  justify-items: center !important;
}

.partner-strip .partner-logo-card img[alt="Mr Gustave"],
.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"],
.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"] {
  display: block !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.partner-strip .partner-logo-card img[alt="Mr Gustave"] {
  max-height: 96px !important;
  max-width: 88% !important;
}

.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"] {
  max-height: 92px !important;
  max-width: 92% !important;
}

.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"] {
  max-height: 128px !important;
  max-width: 84% !important;
}


/* v2.0.33 about logo grid refinement:
   Umbra and West Yorkshire Music Network use inverted assets for better visibility and are centred in their row. */
.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"],
.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"] {
  display: block !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  justify-self: center !important;
  align-self: center !important;
}

.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"] {
  max-height: 118px !important;
  max-width: 88% !important;
}

.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"] {
  max-height: 108px !important;
  max-width: 90% !important;
}


/* v2.0.34 about logo wall lock-in:
   Match the supplied mockup: centred grey container, two rows of eight equal cells,
   every logo centred both vertically and horizontally, with per-logo sizing only where needed. */
.partner-strip .inner.partner-strip-grid {
  display: block !important;
  width: min(96vw, 1840px) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.partner-strip .partner-logo-grid {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(18px, 2vw, 30px) auto 0 !important;
  padding: clamp(32px, 3.2vw, 62px) clamp(42px, 4vw, 72px) !important;
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: clamp(28px, 2.6vw, 54px) clamp(28px, 2.6vw, 54px) !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  background: #bfbfbc !important;
  border: 0 !important;
}

.partner-strip .partner-logo-card {
  width: 100% !important;
  min-height: clamp(140px, 9.5vw, 190px) !important;
  aspect-ratio: 1.28 / 1 !important;
  padding: clamp(18px, 1.8vw, 32px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #d8d8d4 !important;
  border: 1px solid rgba(5, 5, 5, 0.075) !important;
  overflow: hidden !important;
}

.partner-strip .partner-logo-card img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 80% !important;
  max-height: 92px !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  align-self: center !important;
  justify-self: center !important;
  filter: none !important;
}

/* Wide horizontal marks */
.partner-strip .partner-logo-card img[alt="Benugo"],
.partner-strip .partner-logo-card img[alt="Elusive Jazz"],
.partner-strip .partner-logo-card img[alt="MindBoost"],
.partner-strip .partner-logo-card img[alt="Ray Productions"] {
  max-width: 76% !important;
  max-height: 64px !important;
}

/* Medium horizontal marks */
.partner-strip .partner-logo-card img[alt="Genix Healthcare"],
.partner-strip .partner-logo-card img[alt="SHR Theatre"],
.partner-strip .partner-logo-card img[alt="Leeds Dads"] {
  max-width: 78% !important;
  max-height: 82px !important;
}

/* Taller or round marks */
.partner-strip .partner-logo-card img[alt="Blue Ink Entertainment"],
.partner-strip .partner-logo-card img[alt="Lighthouse"],
.partner-strip .partner-logo-card img[alt="Blueprint Film"],
.partner-strip .partner-logo-card img[alt="White Noise Theatre"],
.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"],
.partner-strip .partner-logo-card img[alt="Mr Gustave"],
.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"],
.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"],
.partner-strip .partner-logo-card img[alt="Scratch and Tickle"] {
  max-width: 74% !important;
  max-height: 126px !important;
}

/* Extra-tall marks kept visually centred and contained */
.partner-strip .partner-logo-card img[alt="Mr Gustave"],
.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"],
.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"] {
  max-width: 66% !important;
  max-height: 136px !important;
}

@media (max-width: 1300px) {
  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 24px !important;
    gap: 18px !important;
  }

  .partner-strip .partner-logo-card {
    min-height: 132px !important;
  }
}


/* v2.0.35 about logo wall refinement:
   Return closer to the approved mockup: contained centred grey block, no right-edge bleed,
   larger logos, equal two-row grid. */
.partner-strip {
  overflow-x: hidden !important;
}

.partner-strip .inner.partner-strip-grid {
  display: block !important;
  width: min(94vw, 1760px) !important;
  max-width: none !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
}

.partner-strip .partner-logo-grid {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: clamp(18px, 2vw, 30px) auto 0 !important;
  padding: clamp(28px, 2.8vw, 50px) clamp(34px, 3.2vw, 58px) !important;
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  grid-auto-rows: minmax(clamp(150px, 10vw, 205px), 1fr) !important;
  gap: clamp(30px, 2.8vw, 56px) clamp(20px, 1.6vw, 32px) !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  background: #bfbfbc !important;
  border: 0 !important;
  overflow: hidden !important;
}

.partner-strip .partner-logo-card {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(150px, 10vw, 205px) !important;
  aspect-ratio: auto !important;
  padding: clamp(14px, 1.2vw, 24px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #d9d9d5 !important;
  border: 1px solid rgba(5, 5, 5, 0.075) !important;
  overflow: hidden !important;
}

.partner-strip .partner-logo-card img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 128px !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: none !important;
}

/* Wide horizontal marks need width rather than height. */
.partner-strip .partner-logo-card img[alt="Benugo"],
.partner-strip .partner-logo-card img[alt="Elusive Jazz"],
.partner-strip .partner-logo-card img[alt="MindBoost"],
.partner-strip .partner-logo-card img[alt="Ray Productions"] {
  max-width: 86% !important;
  max-height: 82px !important;
}

/* Medium horizontal marks. */
.partner-strip .partner-logo-card img[alt="Genix Healthcare"],
.partner-strip .partner-logo-card img[alt="SHR Theatre"],
.partner-strip .partner-logo-card img[alt="Leeds Dads"] {
  max-width: 86% !important;
  max-height: 104px !important;
}

/* Taller / rounder marks. */
.partner-strip .partner-logo-card img[alt="Blue Ink Entertainment"],
.partner-strip .partner-logo-card img[alt="Lighthouse"],
.partner-strip .partner-logo-card img[alt="Blueprint Film"],
.partner-strip .partner-logo-card img[alt="White Noise Theatre"],
.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"],
.partner-strip .partner-logo-card img[alt="Mr Gustave"],
.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"],
.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"],
.partner-strip .partner-logo-card img[alt="Scratch and Tickle"] {
  max-width: 82% !important;
  max-height: 154px !important;
}

/* Individual optical corrections to match the mockup balance. */
.partner-strip .partner-logo-card img[alt="Mr Gustave"] {
  max-width: 74% !important;
  max-height: 162px !important;
}

.partner-strip .partner-logo-card img[alt="Bradford 2025 UK City of Culture"] {
  max-width: 78% !important;
  max-height: 166px !important;
}

.partner-strip .partner-logo-card img[alt="West Yorkshire Music Network"] {
  max-width: 84% !important;
  max-height: 160px !important;
}

.partner-strip .partner-logo-card img[alt="Umbra Motion Picture Company"] {
  max-width: 78% !important;
  max-height: 164px !important;
}

.partner-strip .partner-logo-card img[alt="Scratch and Tickle"] {
  max-width: 78% !important;
  max-height: 154px !important;
}

@media (max-width: 1300px) {
  .partner-strip .inner.partner-strip-grid {
    width: min(94vw, 1120px) !important;
  }

  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .partner-strip .inner.partner-strip-grid {
    width: calc(100vw - 32px) !important;
  }

  .partner-strip .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 20px !important;
    gap: 16px !important;
  }

  .partner-strip .partner-logo-card {
    min-height: 138px !important;
  }
}


/* v2.0.36 carried into v2.0.37:
   Commercial overview includes Patients in Creative commercial projects.
   Creative projects overview uses three cards: Short films, Documentaries, Theatre; Theatre text includes scratch nights. */
.commercial-secondary-block .section-head-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


/* v2.0.37 list page project media system:
   Every project on list pages uses either:
   - PROJECT_LISTIMAGE_SQUARE + PROJECT_LISTIMAGE_TOP + PROJECT_LISTIMAGE_BOTTOM
   - PROJECT_LISTIMAGE_POSTER + PROJECT_LISTIMAGE_TOP + PROJECT_LISTIMAGE_BOTTOM
   If poster status is unclear, the first missing slot is labelled SQUARE/POSTER_TBC.
   No image should repeat within a single project list item. */
.category-project-assets.project-list-media,
a.category-project-assets.project-list-media {
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.82fr) !important;
  gap: clamp(10px, 1.3vw, 18px) !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 820px !important;
  margin-left: auto !important;
}

.project-list-media .project-list-stack {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.3vw, 18px) !important;
  height: 100% !important;
}

.project-list-slot {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
  min-height: 0 !important;
  width: 100% !important;
  background: rgba(0, 0, 0, 0.075) !important;
  border: 1px solid var(--line) !important;
}

body.creative-theme .project-list-slot {
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.project-list-media--square > .project-list-slot:first-child,
.project-list-slot--square,
.project-list-slot--square-poster-tbc {
  aspect-ratio: 1 / 1 !important;
}

.project-list-media--poster > .project-list-slot:first-child,
.project-list-slot--poster {
  aspect-ratio: 2 / 3 !important;
}

.project-list-slot--top,
.project-list-slot--bottom {
  aspect-ratio: 16 / 9 !important;
}

.project-list-slot img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.project-list-slot--poster img {
  object-fit: contain !important;
  background: rgba(0,0,0,0.04) !important;
}

.project-list-placeholder {
  padding: clamp(14px, 1.8vw, 24px) !important;
  text-align: center !important;
  min-height: 120px !important;
}

.project-list-placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(10px, 0.82vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.category-project-assets.project-list-media figcaption {
  display: none !important;
}

@media (max-width: 820px) {
  .category-project-assets.project-list-media,
  a.category-project-assets.project-list-media {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}



/* PROJECT_STYLE_B: album artwork project pages */
.project-style-b-page .project-style-b-inner {
  max-width: 1480px;
}

.project-style-b-page .project-b-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(58px, 6vw, 96px);
  margin-top: clamp(44px, 5vw, 72px);
}

.project-style-b-page .project-b-section:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(60px, 7vw, 108px);
  margin-bottom: clamp(60px, 7vw, 108px);
}

.project-style-b-page .project-b-overview-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(360px, 0.56fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: center;
}

.project-style-b-page .project-b-overview-text {
  max-width: 560px;
}

.project-style-b-page .project-b-album-art-hero {
  aspect-ratio: 1 / 1;
  width: min(100%, 520px);
  justify-self: center;
}

.project-style-b-page .project-b-detail-section {
  display: grid;
  grid-template-columns: minmax(460px, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(54px, 8vw, 150px);
  align-items: center;
}

.project-style-b-page .project-b-detail-media {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

.project-style-b-page .project-b-detail-wide,
.project-style-b-page .project-b-carousel-slide,
.project-style-b-page .project-b-carousel-placeholder {
  aspect-ratio: 16 / 9;
}

.project-style-b-page .project-b-two-up-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-style-b-page .project-b-detail-bottom-left,
.project-style-b-page .project-b-detail-bottom-right {
  aspect-ratio: 16 / 9;
}

.project-style-b-page .project-b-detail-text {
  max-width: 430px;
  justify-self: end;
  text-align: right;
}

.project-style-b-page .project-b-detail-text h2,
.project-style-b-page .project-b-detail-text .album-artist,
.project-style-b-page .project-b-detail-text .project-meta,
.project-style-b-page .project-b-detail-text p {
  text-align: right;
}

.project-style-b-page .project-b-image-frame,
.project-style-b-page .project-b-placeholder,
.project-style-b-page .project-b-carousel {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0,0,0,0.04);
}

.project-style-b-page .project-b-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-style-b-page .project-b-carousel {
  position: relative;
  background: rgba(0,0,0,0.04);
}

.project-style-b-page .project-b-carousel-slide {
  display: none;
  margin: 0;
  background: rgba(0,0,0,0.04);
}

.project-style-b-page .project-b-carousel-slide.is-active {
  display: block;
}

.project-style-b-page .project-b-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,0.04);
}

.project-style-b-page .project-b-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.project-style-b-page .project-b-carousel-button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.project-style-b-page .project-b-carousel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.project-style-b-page .project-b-carousel-count {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-style-b-page .project-b-carousel-dots {
  display: flex;
  gap: 6px;
}

.project-style-b-page .project-b-carousel-dot {
  width: 28px;
  height: 2px;
  background: var(--black);
  opacity: 0.2;
}

.project-style-b-page .project-b-carousel-dot.is-active {
  opacity: 1;
}

.project-style-b-page .project-b-carousel.is-single-slide .project-b-carousel-controls {
  display: none;
}

.project-style-b-page .project-b-placeholder {
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--muted);
  min-height: 180px;
}

.project-style-b-page .project-b-placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  padding: 18px;
  overflow-wrap: anywhere;
}

.project-style-b-page .project-b-asset-note {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

@media (max-width: 980px) {
  .project-style-b-page .project-b-overview-section,
  .project-style-b-page .project-b-detail-section {
    grid-template-columns: 1fr;
  }

  .project-style-b-page .project-b-two-up-row {
    grid-template-columns: 1fr;
  }

  .project-style-b-page .project-b-detail-text,
  .project-style-b-page .project-b-detail-text h2,
  .project-style-b-page .project-b-detail-text .album-artist,
  .project-style-b-page .project-b-detail-text .project-meta,
  .project-style-b-page .project-b-detail-text p {
    text-align: left;
    justify-self: stretch;
  }

  .project-style-b-page .project-b-carousel-controls {
    justify-content: space-between;
  }

  .project-style-b-page .project-b-carousel-meta {
    justify-content: flex-start;
  }
}


/* v2.0.39 ATT / PROJECT_STYLE_A contained square stills. */
.project-style-a-page .project-a-image-frame--contain img {
  object-fit: contain;
  background: #050505;
}

.project-style-a-page .project-a-section-two-copy h3 {
  margin: 22px 0 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: right;
}

.project-style-a-page .project-a-section-two-copy ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  text-align: right;
}

.project-style-a-page .project-a-section-two-copy li {
  margin: 0 0 4px;
}


/* v2.0.39 ATT page readability and spacing corrections. */
.att-project-page .project-style-a-hero-image {
  min-height: clamp(300px, 38vh, 440px) !important;
  align-items: end !important;
}

.att-project-page .project-style-a-hero-image::before {
  background:
    linear-gradient(90deg, rgba(242,241,237,0.78) 0%, rgba(242,241,237,0.48) 48%, rgba(242,241,237,0.18) 100%),
    linear-gradient(180deg, rgba(242,241,237,0.08) 0%, rgba(242,241,237,0.30) 100%) !important;
}

.att-project-page .project-style-a-hero-image.page-hero {
  padding-top: clamp(48px, 6vw, 78px) !important;
  padding-bottom: clamp(34px, 4vw, 52px) !important;
}

.att-project-page .project-style-a-hero-image .kicker,
.att-project-page .project-style-a-hero-image .page-title,
.att-project-page .project-style-a-hero-image .page-intro,
.att-project-page .project-style-a-hero-image .text-link,
.att-project-page .project-style-a-hero-image .arrow {
  color: var(--ink) !important;
  opacity: 1 !important;
}

.att-project-page .project-style-a-layout {
  padding-top: clamp(26px, 3vw, 42px) !important;
}

.att-project-page .project-a-section {
  margin-top: clamp(28px, 3.2vw, 44px) !important;
  padding-top: clamp(28px, 3.2vw, 44px) !important;
}

.att-project-page .project-a-section-one.category-project {
  margin-top: 0 !important;
}

.att-project-page .project-a-section-one-meta,
.att-project-page .project-a-section-two-copy,
.att-project-page .project-a-section-three-text {
  max-width: 560px !important;
}

.att-project-page .project-a-section-two-copy,
.att-project-page .project-a-section-three-text {
  text-align: left !important;
}

.att-project-page .project-a-section-two-copy,
.att-project-page .project-a-section-three-text {
  justify-self: start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.att-project-page .project-a-section-two-copy p,
.att-project-page .project-a-section-two-copy h3,
.att-project-page .project-a-section-two-copy ul,
.att-project-page .project-a-section-two-copy li,
.att-project-page .project-a-section-three-text h2,
.att-project-page .project-a-section-three-text .album-artist,
.att-project-page .project-a-section-three-text p {
  text-align: left !important;
}

.att-project-page .project-a-section-two-middle {
  grid-template-columns: minmax(220px, 0.42fr) minmax(420px, 0.58fr) !important;
  gap: clamp(34px, 5vw, 80px) !important;
  max-width: 1180px !important;
}

.att-project-page .project-a-section-three {
  grid-template-columns: minmax(520px, 0.58fr) minmax(420px, 0.42fr) !important;
  gap: clamp(34px, 5vw, 80px) !important;
}

@media (max-width: 980px) {
  .att-project-page .project-a-section-two-middle,
  .att-project-page .project-a-section-three {
    grid-template-columns: 1fr !important;
  }
}


/* v2.0.39 ATT title dead-space removal. */
.att-project-page .page-hero.project-style-a-hero-image {
  min-height: auto !important;
  height: auto !important;
  align-items: start !important;
}

.att-project-page .page-hero.project-style-a-hero-image .inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.att-project-page .page-hero.project-style-a-hero-image .page-title {
  margin-bottom: clamp(12px, 1.4vw, 22px) !important;
}

.att-project-page .page-hero.project-style-a-hero-image .page-intro {
  margin-top: 0 !important;
  margin-bottom: clamp(18px, 2vw, 28px) !important;
}

.att-project-page .page-hero.project-style-a-hero-image .action-row {
  margin-top: 0 !important;
}

.att-project-page .project-style-a-layout {
  padding-top: 0 !important;
}

.att-project-page .project-style-a-inner {
  padding-top: clamp(18px, 2vw, 30px) !important;
}

.att-project-page .project-a-section-one.category-project {
  margin-top: 0 !important;
  padding-top: clamp(24px, 3vw, 38px) !important;
}


/* v2.0.41 — PROJECT_STYLE_C locked film-led template. */
.project-style-c-page {
  background: #050505;
  color: #f7f5ef;
}

.project-style-c-page .site-header {
  background: #050505;
}

.project-style-c-page .project-c-hero {
  background: #f7f5ef;
  color: #050505;
  padding: clamp(70px, 8vw, 128px) 0 clamp(58px, 6vw, 92px);
}

.project-style-c-page .project-c-hero-inner {
  max-width: 920px;
}

.project-style-c-page .project-c-hero .kicker,
.project-style-c-page .project-c-hero .page-title,
.project-style-c-page .project-c-hero .page-intro,
.project-style-c-page .project-c-hero .text-link,
.project-style-c-page .project-c-hero .arrow {
  color: #050505 !important;
  opacity: 1 !important;
}

.project-style-c-page .project-c-hero .page-title {
  max-width: 840px;
  margin: 0 0 clamp(22px, 2.5vw, 34px);
}

.project-style-c-page .project-c-hero .page-intro {
  max-width: 570px;
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
}

.project-style-c-page .project-c-section-one,
.project-style-c-page .project-c-section-two {
  background: #050505;
  color: #f7f5ef;
}

.project-style-c-page .project-c-section-one {
  padding: clamp(82px, 9vw, 136px) 0 clamp(78px, 8vw, 124px);
  border-bottom: 1px solid rgba(247,245,239,0.25);
}

.project-style-c-page .project-c-section-one-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(54px, 8vw, 150px);
  align-items: start;
  max-width: 1320px;
}

.project-style-c-page .project-c-copy-stack {
  display: grid;
  gap: clamp(46px, 6vw, 92px);
  align-content: start;
}

.project-style-c-page .project-c-copy-block {
  max-width: 430px;
}

.project-style-c-page .project-c-copy-block h2 {
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
  color: #f7f5ef;
}

.project-style-c-page .project-c-credit-line,
.project-style-c-page .project-c-copy-block h3,
.project-style-c-page .project-c-festivals h3 {
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7f5ef;
  margin: 0 0 12px;
}

.project-style-c-page .project-c-meta {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(247,245,239,0.68);
  margin: 0 0 16px;
}

.project-style-c-page .project-c-copy-block p,
.project-style-c-page .project-c-copy-block li {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.28;
  color: #f7f5ef;
}

.project-style-c-page .project-c-copy-block p {
  margin: 0 0 13px;
}

.project-style-c-page .project-c-copy-block ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.project-style-c-page .project-c-copy-block li {
  margin: 0 0 4px;
}

.project-style-c-page .project-c-media-stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.project-style-c-page .project-c-two-up {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.project-style-c-page .project-c-image,
.project-style-c-page .project-c-image-placeholder {
  margin: 0;
  overflow: hidden;
  border: 0;
}

.project-style-c-page .project-c-image {
  background: #050505;
}

.project-style-c-page .project-c-image-placeholder {
  background: #111111;
}

.project-style-c-page .project-c-image-wide {
  aspect-ratio: 16 / 9;
}

.project-style-c-page .project-c-image-square,
.project-style-c-page .project-c-section-two-image {
  aspect-ratio: 1 / 1;
}

.project-style-c-page .project-c-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-style-c-page .project-c-image-placeholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: #fff;
}

.project-style-c-page .project-c-image-placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(9px, 0.75vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}

.project-style-c-page .project-c-festival-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}

.project-style-c-page .project-c-festival-image {
  aspect-ratio: 1.25 / 1;
  margin: 0;
  display: grid;
  place-items: center;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  padding: clamp(8px, 1vw, 14px);
  box-sizing: border-box;
}

.project-style-c-page .project-c-festival-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.project-style-c-page .project-c-section-two {
  padding: clamp(54px, 6vw, 86px) 0 clamp(58px, 6vw, 92px);
  border-bottom: 1px solid rgba(247,245,239,0.25);
}

.project-style-c-page .project-c-section-two-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(22px, 2.5vw, 36px);
  max-width: 1275px;
  margin-left: auto;
  margin-right: auto;
}

.project-style-c-page .site-footer {
  background: #050505;
  color: #f7f5ef;
  border-top: 1px solid rgba(247,245,239,0.25);
}

/* v2.0.41 — PROJECT_STYLE_D locked simplified project template. */
.project-style-d-page {
  --project-d-bg: #050505;
  --project-d-text: #f7f5ef;
  --project-d-muted: rgba(247,245,239,0.68);
  --project-d-hero-bg: #f7f5ef;
  --project-d-hero-text: #050505;
  background: var(--project-d-bg);
  color: var(--project-d-text);
}

.project-style-d-page.project-style-d-light {
  --project-d-bg: #f7f5ef;
  --project-d-text: #050505;
  --project-d-muted: rgba(5,5,5,0.64);
  --project-d-hero-bg: #f7f5ef;
  --project-d-hero-text: #050505;
}

.project-style-d-page.project-style-d-dark .site-header {
  background: #050505;
}

.project-style-d-page .project-d-hero {
  background: var(--project-d-hero-bg);
  color: var(--project-d-hero-text);
  padding: clamp(70px, 8vw, 128px) 0 clamp(58px, 6vw, 92px);
}

.project-style-d-page .project-d-hero-inner {
  max-width: 920px;
}

.project-style-d-page .project-d-hero .kicker,
.project-style-d-page .project-d-hero .page-title,
.project-style-d-page .project-d-hero .page-intro,
.project-style-d-page .project-d-hero .text-link,
.project-style-d-page .project-d-hero .arrow {
  color: var(--project-d-hero-text) !important;
  opacity: 1 !important;
}

.project-style-d-page .project-d-hero .page-title {
  max-width: 840px;
  margin: 0 0 clamp(22px, 2.5vw, 34px);
}

.project-style-d-page .project-d-hero .page-intro {
  max-width: 570px;
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
}

.project-style-d-page .project-d-section-one,
.project-style-d-page .project-d-section-two {
  background: var(--project-d-bg);
  color: var(--project-d-text);
}

.project-style-d-page .project-d-section-one {
  padding: clamp(82px, 9vw, 136px) 0 clamp(78px, 8vw, 124px);
  border-bottom: 1px solid color-mix(in srgb, var(--project-d-text) 25%, transparent);
}

.project-style-d-page .project-d-section-one-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(54px, 8vw, 150px);
  align-items: center;
  max-width: 1320px;
}

.project-style-d-page .project-d-copy-stack {
  display: grid;
  gap: clamp(46px, 6vw, 92px);
  align-content: center;
  align-self: center;
}

.project-style-d-page .project-d-copy-block {
  max-width: 430px;
}

.project-style-d-page .project-d-copy-block h2 {
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
  color: var(--project-d-text);
}

.project-style-d-page .project-d-credit-line {
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--project-d-text);
  margin: 0 0 12px;
}

.project-style-d-page .project-d-meta {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--project-d-muted);
  margin: 0 0 16px;
}

.project-style-d-page .project-d-copy-block p,
.project-style-d-page .project-d-copy-block li {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.28;
  color: var(--project-d-text);
}

.project-style-d-page .project-d-copy-block p {
  margin: 0 0 13px;
}

.project-style-d-page .project-d-media-stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.project-style-d-page .project-d-two-up {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.project-style-d-page .project-d-image,
.project-style-d-page .project-d-image-placeholder {
  margin: 0;
  overflow: hidden;
  border: 0;
}

.project-style-d-page .project-d-image {
  background: var(--project-d-bg);
}

.project-style-d-page .project-d-image-placeholder {
  background: color-mix(in srgb, var(--project-d-text) 7%, var(--project-d-bg));
}

.project-style-d-page .project-d-image-wide {
  aspect-ratio: 16 / 9;
}

.project-style-d-page .project-d-image-square,
.project-style-d-page .project-d-section-two-image {
  aspect-ratio: 1 / 1;
}

.project-style-d-page .project-d-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-style-d-page .project-d-image-placeholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: #fff;
}

.project-style-d-page .project-d-image-placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(9px, 0.75vw, 12px);
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  overflow-wrap: anywhere;
}

.project-style-d-page .project-d-section-two {
  padding: clamp(54px, 6vw, 86px) 0 clamp(58px, 6vw, 92px);
  border-bottom: 1px solid color-mix(in srgb, var(--project-d-text) 25%, transparent);
}

.project-style-d-page .project-d-section-two-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(22px, 2.5vw, 36px);
  max-width: 1275px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.project-style-d-page.project-style-d-dark .site-footer {
  background: #050505;
  color: #f7f5ef;
  border-top: 1px solid rgba(247,245,239,0.25);
}

@media (max-width: 980px) {
  .project-style-c-page .project-c-section-one-inner,
  .project-style-c-page .project-c-two-up,
  .project-style-c-page .project-c-section-two-inner,
  .project-style-d-page .project-d-section-one-inner,
  .project-style-d-page .project-d-two-up,
  .project-style-d-page .project-d-section-two-inner {
    grid-template-columns: 1fr;
  }

  .project-style-c-page .project-c-copy-block,
  .project-style-c-page .project-c-festivals,
  .project-style-d-page .project-d-copy-block {
    max-width: 620px;
  }
}


/* v2.0.41 — prevent over-cropping where available assets do not fit template slot ratio. */
.project-style-c-page .project-c-image--contain img,
.project-style-d-page .project-d-image--contain img {
  object-fit: contain !important;
  background: inherit;
}


/* v2.1.2 — listing image alignment tightening.
   Keeps category-list images and placeholder panels inside their own grid cells. */
.category-project-assets.project-list-media,
a.category-project-assets.project-list-media {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr) !important;
  align-items: stretch !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  isolation: isolate !important;
}

.category-project-assets.project-list-media > .project-list-slot,
a.category-project-assets.project-list-media > .project-list-slot,
.project-list-media .project-list-stack,
.project-list-media .project-list-stack > .project-list-slot {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.project-list-media .project-list-stack {
  align-self: stretch !important;
  overflow: hidden !important;
}

.project-list-slot img {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.category-project-assets.project-list-media:hover .project-list-slot,
a.category-project-assets.project-list-media:hover .project-list-slot {
  transform: none !important;
}


/* v2.1.5 PROJECT_STYLE_B2: simplified album artwork page.
   Use body classes: project-detail-page project-style-b-page project-style-b2-page project-style-b-light.
   B2 keeps the title hero and first overview section only. It removes the second detail/media section
   and expects one square hero album artwork image in .project-b-album-art-hero. */
.project-style-b2-page .project-b-detail-section {
  display: none !important;
}

.project-style-b2-page .project-style-b-layout {
  padding-bottom: clamp(80px, 9vw, 140px);
}

.project-style-b2-page .project-style-b-inner {
  display: block;
}

.project-style-b2-page .project-b-overview-section {
  margin-bottom: 0 !important;
}

.project-style-b2-page .project-b-album-art-hero,
.project-style-b2-page .project-b-album-art-hero img {
  aspect-ratio: 1 / 1;
}

.project-style-b2-page .project-b-album-art-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* v2.1.9 — album artwork page image fills */
.project-b-album-art-hero,
.project-b-detail-wide,
.project-b-detail-bottom-left,
.project-b-detail-bottom-right {
  overflow: hidden;
}

.project-b-album-art-hero img,
.project-b-detail-wide img,
.project-b-detail-bottom-left img,
.project-b-detail-bottom-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-style-b2-page .project-b-album-art-hero img {
  aspect-ratio: 1 / 1;
}

.category-project-assets.project-list-media--single-square,
a.category-project-assets.project-list-media--single-square {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 420px !important;
}


/* v2.1.10 — album artwork no-crop uniformity pass.
   Album artwork images are shown in full on detail pages and list cards. */
.project-style-b-page .project-b-album-art-hero img,
.project-style-b-page .project-b-detail-wide img,
.project-style-b-page .project-b-detail-bottom-left img,
.project-style-b-page .project-b-detail-bottom-right img,
.album-projects .project-list-slot img {
  object-fit: contain !important;
  object-position: center center !important;
  background: rgba(0, 0, 0, 0.035);
}

.project-style-b-page .project-b-album-art-hero,
.project-style-b-page .project-b-detail-wide,
.project-style-b-page .project-b-detail-bottom-left,
.project-style-b-page .project-b-detail-bottom-right,
.album-projects .project-list-slot {
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.album-projects .category-project-assets.project-list-media,
.album-projects a.category-project-assets.project-list-media {
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.album-projects .category-project-assets.project-list-media--single-square,
.album-projects a.category-project-assets.project-list-media--single-square {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 420px !important;
}

.album-projects .project-list-stack {
  min-width: 0 !important;
  max-width: 100% !important;
}

/* v2.1.11 — album listing square-cover alignment and no-bar pass.
   Single-cover album list entries are centred in the media column, and square album covers fill
   their square containers at their true 1:1 ratio. Non-square supporting shots remain contain-fit. */
.album-projects .category-project-assets.project-list-media--single-square,
.album-projects a.category-project-assets.project-list-media--single-square {
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(100%, clamp(360px, 28vw, 520px)) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-self: center !important;
  align-self: center !important;
}

.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square,
.album-projects a.category-project-assets.project-list-media--single-square .project-list-slot--square,
.project-style-b-page .project-b-album-art-hero {
  aspect-ratio: 1 / 1 !important;
  background: transparent !important;
}

.album-projects .project-list-slot--square img[src*="album-hero"],
.project-style-b-page .project-b-album-art-hero img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}

.project-style-b-page .project-b-detail-wide img,
.project-style-b-page .project-b-detail-bottom-left img,
.project-style-b-page .project-b-detail-bottom-right img,
.album-projects .project-list-slot--top img,
.album-projects .project-list-slot--bottom img {
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

.album-projects .project-list-slot,
.project-style-b-page .project-b-album-art-hero,
.project-style-b-page .project-b-detail-wide,
.project-style-b-page .project-b-detail-bottom-left,
.project-style-b-page .project-b-detail-bottom-right {
  box-sizing: border-box !important;
}


/* v2.1.12 — album artwork listing / detail full-source no-crop pass.
   Ensures album-art list and detail imagery shows the full original asset without cover-cropping.
   Square covers remain centred; landscape mockups and process images stay in their native aspect. */
.album-projects .project-list-slot,
.project-style-b-page .project-b-album-art-hero,
.project-style-b-page .project-b-detail-wide,
.project-style-b-page .project-b-detail-bottom-left,
.project-style-b-page .project-b-detail-bottom-right,
.project-style-b-page .project-b-carousel-slide,
.project-style-b-page .project-b-image-frame {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot img,
.project-style-b-page .project-b-album-art-hero img,
.project-style-b-page .project-b-detail-wide img,
.project-style-b-page .project-b-detail-bottom-left img,
.project-style-b-page .project-b-detail-bottom-right img,
.project-style-b-page .project-b-carousel-slide img,
.project-style-b-page .project-b-image-frame img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

/* Keep single-cover album list cards visually centred in their media column. */
.album-projects .category-project-assets.project-list-media--single-square,
.album-projects a.category-project-assets.project-list-media--single-square {
  width: min(100%, clamp(360px, 28vw, 520px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-self: center !important;
  align-self: center !important;
}

/* Remove the forced cover-crop from square hero images on the album list/details. */
.album-projects .project-list-slot--square img[src*="album-hero"],
.album-projects .project-list-slot--square img[src*="cover-artwork"],
.project-style-b-page .project-b-album-art-hero img {
  object-fit: contain !important;
}

/* v2.1.15 — final album cover override.
   Album cover artwork must stay a uniform square everywhere it appears.
   This override targets the square cover slot on the album artwork listing page and
   the hero artwork on album project detail pages. Square covers fill square frames
   without cropping variation or grey internal panel backgrounds. Supporting/mockup
   imagery keeps its own separate rules. */
.album-projects .project-list-slot--square,
.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square,
.project-style-b-page .project-b-album-art-hero,
.project-style-b2-page .project-b-album-art-hero {
  aspect-ratio: 1 / 1 !important;
  display: grid !important;
  place-items: stretch !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square img,
.project-style-b-page .project-b-album-art-hero img,
.project-style-b2-page .project-b-album-art-hero img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  aspect-ratio: 1 / 1 !important;
  background: transparent !important;
}

/* v2.1.16 — single page splitter override.
   Prevents duplicate horizontal divider lines where a hero/header section is followed
   by another section that also draws a top/bottom rule. Only one splitter should show
   between adjacent page blocks. */
.page-hero,
.category-hero,
.album-hero,
.project-style-b-page .page-hero,
.project-style-b-page .category-hero {
  border-bottom: 1px solid var(--line) !important;
}

.page-hero + .section,
.category-hero + .section,
.album-hero + .section,
.project-style-b-page .page-hero + .section,
.project-style-b-page .category-hero + .section,
.project-style-b-page .album-hero + .section {
  border-top: 0 !important;
}

.page-hero + .section > .inner:first-child,
.category-hero + .section > .inner:first-child,
.album-hero + .section > .inner:first-child,
.project-style-b-page .page-hero + .section > .inner:first-child,
.project-style-b-page .category-hero + .section > .inner:first-child,
.project-style-b-page .album-hero + .section > .inner:first-child {
  border-top: 0 !important;
}

.page-hero + .section::before,
.category-hero + .section::before,
.album-hero + .section::before,
.project-style-b-page .page-hero + .section::before,
.project-style-b-page .category-hero + .section::before,
.project-style-b-page .album-hero + .section::before {
  display: none !important;
}


/* v2.1.17 — album artwork crop correction pass.
   Restores full-source display for square album-cover heroes and 16:9 supporting
   imagery across the album artwork listing and album project detail pages. */
.album-projects .project-list-slot,
.project-style-b-page .project-b-album-art-hero,
.project-style-b2-page .project-b-album-art-hero,
.project-style-b-page .project-b-detail-wide,
.project-style-b-page .project-b-detail-bottom-left,
.project-style-b-page .project-b-detail-bottom-right {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot img,
.project-style-b-page .project-b-album-art-hero img,
.project-style-b2-page .project-b-album-art-hero img,
.project-style-b-page .project-b-detail-wide img,
.project-style-b-page .project-b-detail-bottom-left img,
.project-style-b-page .project-b-detail-bottom-right img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
  object-position: center center !important;
  background: transparent !important;
}

.album-projects .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square img,
.project-style-b-page .project-b-album-art-hero img,
.project-style-b2-page .project-b-album-art-hero img {
  object-fit: contain !important;
  aspect-ratio: 1 / 1 !important;
}

.album-projects .project-list-slot--top img,
.album-projects .project-list-slot--bottom img,
.project-style-b-page .project-b-detail-wide img,
.project-style-b-page .project-b-detail-bottom-left img,
.project-style-b-page .project-b-detail-bottom-right img {
  object-fit: contain !important;
}

/* v2.1.18 Plateface EP / Bespoke Cureall B2 update.
   This project uses the B2 page treatment but includes a second copy/media section,
   so it must opt back into the detail grid that the original simplified B2 CSS hid. */
.bespoke-cureall-plateface-page.project-style-b2-page .project-b-detail-section {
  display: grid !important;
}

@media (max-width: 860px) {
  .bespoke-cureall-plateface-page.project-style-b2-page .project-b-detail-section {
    display: block !important;
  }
}

/* v2.1.19 — authoritative album artwork listing ratio lock.
   Album list media must not be stretched by the surrounding CSS grid.
   Square cover slots stay true 1:1 and fill with their square source art.
   Supporting slots keep their own declared aspect ratio and use contain so prepared
   16:9 images show in full without crop; native-ratio exceptions use inline aspect-ratio. */
.album-projects .category-project-assets.project-list-media,
.album-projects a.category-project-assets.project-list-media {
  align-items: start !important;
  overflow: visible !important;
}

.album-projects .project-list-media .project-list-stack {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  grid-template-rows: none !important;
  grid-auto-rows: auto !important;
}

.album-projects .project-list-slot {
  display: block !important;
  place-items: normal !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot--square,
.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square {
  aspect-ratio: 1 / 1 !important;
}

.album-projects .project-list-slot--top,
.album-projects .project-list-slot--bottom {
  aspect-ratio: 16 / 9 !important;
}

.album-projects .project-list-slot[style*="aspect-ratio"] {
  aspect-ratio: var(--slot-aspect-ratio) !important;
}

.album-projects .project-list-slot img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-position: center center !important;
  background: transparent !important;
}

.album-projects .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--single-square .project-list-slot--square img,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square img {
  object-fit: cover !important;
}

.album-projects .project-list-slot--top img,
.album-projects .project-list-slot--bottom img {
  object-fit: contain !important;
}

/* v2.1.20 — album listing native-ratio promo handling.
   Non-16:9 promo source images remain inside the standard 16:9 promo frame,
   centred with object-fit: contain so no edge detail is cropped. */
.album-projects .project-list-slot--native-centered {
  aspect-ratio: 16 / 9 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.album-projects .project-list-slot--native-centered img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* v2.1.21 — sitewide project-list ratio contract.
   Default uploaded/list assets are treated as already prepared: square slots are 1:1,
   top/bottom promo slots are 16:9, and frames must not stretch or introduce grey bars.
   Legacy/non-standard source ratios should be handled with explicit exception classes, not broad overrides. */
.category-project-assets.project-list-media,
a.category-project-assets.project-list-media {
  align-items: start !important;
  overflow: visible !important;
}

.category-project-assets.project-list-media .project-list-stack,
a.category-project-assets.project-list-media .project-list-stack {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  grid-template-rows: none !important;
  grid-auto-rows: auto !important;
}

.category-project-assets.project-list-media .project-list-slot,
a.category-project-assets.project-list-media .project-list-slot {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.category-project-assets.project-list-media .project-list-slot--square,
a.category-project-assets.project-list-media .project-list-slot--square,
.category-project-assets.project-list-media--square > .project-list-slot:first-child,
a.category-project-assets.project-list-media--square > .project-list-slot:first-child,
.category-project-assets.project-list-media--single-square .project-list-slot--square,
a.category-project-assets.project-list-media--single-square .project-list-slot--square {
  aspect-ratio: 1 / 1 !important;
}

.category-project-assets.project-list-media .project-list-slot--top,
a.category-project-assets.project-list-media .project-list-slot--top,
.category-project-assets.project-list-media .project-list-slot--bottom,
a.category-project-assets.project-list-media .project-list-slot--bottom {
  aspect-ratio: 16 / 9 !important;
}

.category-project-assets.project-list-media .project-list-slot img,
a.category-project-assets.project-list-media .project-list-slot img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-position: center center !important;
  background: transparent !important;
}

.category-project-assets.project-list-media .project-list-slot--square img,
a.category-project-assets.project-list-media .project-list-slot--square img,
.category-project-assets.project-list-media--square > .project-list-slot:first-child img,
a.category-project-assets.project-list-media--square > .project-list-slot:first-child img,
.category-project-assets.project-list-media--single-square .project-list-slot--square img,
a.category-project-assets.project-list-media--single-square .project-list-slot--square img {
  object-fit: contain !important;
  aspect-ratio: 1 / 1 !important;
}

.category-project-assets.project-list-media .project-list-slot--top img,
a.category-project-assets.project-list-media .project-list-slot--top img,
.category-project-assets.project-list-media .project-list-slot--bottom img,
a.category-project-assets.project-list-media .project-list-slot--bottom img {
  object-fit: contain !important;
  aspect-ratio: 16 / 9 !important;
}

.category-project-assets.project-list-media .project-list-slot--poster,
a.category-project-assets.project-list-media .project-list-slot--poster {
  aspect-ratio: 2 / 3 !important;
}

.category-project-assets.project-list-media .project-list-slot--poster img,
a.category-project-assets.project-list-media .project-list-slot--poster img {
  object-fit: contain !important;
  object-position: center center !important;
}

.category-project-assets.project-list-media .project-list-slot--native-centered,
a.category-project-assets.project-list-media .project-list-slot--native-centered {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 9 !important;
}

.category-project-assets.project-list-media .project-list-slot--native-centered img,
a.category-project-assets.project-list-media .project-list-slot--native-centered img {
  object-fit: contain !important;
  object-position: center center !important;
}
/* v2.1.18 work index: add breathing room between hero title and subheader. */
.work-index-page .page-hero .page-title + .block-subheader {
  margin-top: 32px;
}


/* v2.1.22 — prepared-ratio list assets render at natural ratio.
   For standard 1:1 and 16:9 project-list slots, uploaded assets are already pre-framed.
   Use intrinsic image height rather than object-fit scaling so exact-ratio images cannot be visibly cropped. */
.category-project-assets.project-list-media .project-list-slot--top:not(.project-list-slot--native-centered),
a.category-project-assets.project-list-media .project-list-slot--top:not(.project-list-slot--native-centered),
.category-project-assets.project-list-media .project-list-slot--bottom:not(.project-list-slot--native-centered),
a.category-project-assets.project-list-media .project-list-slot--bottom:not(.project-list-slot--native-centered) {
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}

.category-project-assets.project-list-media .project-list-slot--top:not(.project-list-slot--native-centered) img,
a.category-project-assets.project-list-media .project-list-slot--top:not(.project-list-slot--native-centered) img,
.category-project-assets.project-list-media .project-list-slot--bottom:not(.project-list-slot--native-centered) img,
a.category-project-assets.project-list-media .project-list-slot--bottom:not(.project-list-slot--native-centered) img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.album-projects .project-list-slot--top:not(.project-list-slot--native-centered) img,
.album-projects .project-list-slot--bottom:not(.project-list-slot--native-centered) img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* v2.1.23 — album listing prepared promo image contract.
   Promo assets on the album-artwork listing that are confirmed 16:9 get an explicit class
   so they render at their prepared ratio without crop/stretch conflicts from older list rules. */
.album-projects .project-list-slot--prepared-16x9,
.category-project-assets.project-list-media .project-list-slot--prepared-16x9,
a.category-project-assets.project-list-media .project-list-slot--prepared-16x9 {
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot--prepared-16x9 img,
.category-project-assets.project-list-media .project-list-slot--prepared-16x9 img,
a.category-project-assets.project-list-media .project-list-slot--prepared-16x9 img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

/* v2.1.24 — album listing vertical alignment reset.
   Album list rows should read as one centred media unit: the 1:1 cover is centred on
   the vertical axis, and the two promo/supporting images stack alongside it rather
   than drifting upward from later non-crop ratio overrides. */
.album-projects .category-project-assets.project-list-media--square,
.album-projects a.category-project-assets.project-list-media--square {
  align-items: center !important;
}

.album-projects .category-project-assets.project-list-media--square > .project-list-slot--square,
.album-projects a.category-project-assets.project-list-media--square > .project-list-slot--square,
.album-projects .category-project-assets.project-list-media--square > .project-list-slot:first-child,
.album-projects a.category-project-assets.project-list-media--square > .project-list-slot:first-child {
  align-self: center !important;
}

.album-projects .category-project-assets.project-list-media--square .project-list-stack,
.album-projects a.category-project-assets.project-list-media--square .project-list-stack {
  align-self: center !important;
  justify-self: stretch !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  align-content: center !important;
}

/* v2.1.20 about logo wall stability fix:
   Client logos are part of static page content, not deferred/animated media. Keep every
   card and image constantly visible and prevent reveal/lazy-load states from hiding a
   random subset on refresh, especially when opened from local preview paths. */
.about-page .partner-strip,
.about-page .partner-strip .partner-logo-grid,
.about-page .partner-strip .partner-logo-card,
.about-page .partner-strip .partner-logo-card img {
  visibility: visible !important;
  opacity: 1 !important;
}

.about-page .partner-strip .partner-logo-card {
  display: flex !important;
}

.about-page .partner-strip .partner-logo-card img {
  display: block !important;
  transform: none !important;
  transition: none !important;
}

/* v2.1.25 — sitewide listing hero + side-promo vertical alignment.
   Any listing card that uses a main hero slot with a two-image promo stack should
   read as one centred media unit: the hero sits on the vertical centre line and
   the stacked promo images align around it, instead of drifting to the top. */
.category-project-assets.project-list-media--square,
a.category-project-assets.project-list-media--square,
.category-project-assets.project-list-media--poster,
a.category-project-assets.project-list-media--poster {
  align-items: center !important;
}

.category-project-assets.project-list-media--square > .project-list-slot:first-child,
a.category-project-assets.project-list-media--square > .project-list-slot:first-child,
.category-project-assets.project-list-media--poster > .project-list-slot:first-child,
a.category-project-assets.project-list-media--poster > .project-list-slot:first-child {
  align-self: center !important;
}

.category-project-assets.project-list-media--square > .project-list-stack,
a.category-project-assets.project-list-media--square > .project-list-stack,
.category-project-assets.project-list-media--poster > .project-list-stack,
a.category-project-assets.project-list-media--poster > .project-list-stack {
  align-self: center !important;
  justify-self: stretch !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  align-content: center !important;
}

/* v2.1.20 Dark Reader compatibility for light pages only
   Keeps existing creative/dark project pages untouched while giving Dark Reader
   a stable dark palette to work with on the site's light page templates. */
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) {
  --black: #f3f3ee;
  --white: #050505;
  --paper: #080808;
  --paper-2: #101010;
  --muted: rgba(243, 243, 238, 0.66);
  --line: rgba(243, 243, 238, 0.18);
  background: #080808 !important;
  color: #f3f3ee !important;
  color-scheme: dark;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .site-header,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .site-footer,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .site-menu-panel {
  background: rgba(8, 8, 8, 0.94) !important;
  color: #f3f3ee !important;
  border-color: rgba(243, 243, 238, 0.18) !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) main,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .page-hero,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-index,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-project,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-list,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-list-card,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .partner-strip,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .about-section,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .contact-section,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .work-split {
  background: #080808 !important;
  color: #f3f3ee !important;
  border-color: rgba(243, 243, 238, 0.18) !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-style-d-page.project-style-d-light,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark).project-style-d-light {
  --project-d-bg: #080808;
  --project-d-text: #f3f3ee;
  --project-d-muted: rgba(243, 243, 238, 0.68);
  --project-d-hero-bg: #080808;
  --project-d-hero-text: #f3f3ee;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .main-nav a,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .menu-button,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .logo-link,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .text-link,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .kicker,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .page-title,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .page-intro,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-meta,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-artist,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-format,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .category-project-meta p,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .about-copy p,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-copy p,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-copy li {
  color: #f3f3ee !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .muted,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-index-list span,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-subtitle,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .form-note {
  color: rgba(243, 243, 238, 0.68) !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .rule,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .text-link::after,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .slideshow-controls span {
  background: #f3f3ee !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-artwork-placeholder,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .album-mockup-placeholder,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .partner-logo-placeholder,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .media-box,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) .project-list-slot {
  background: #101010 !important;
  border-color: rgba(243, 243, 238, 0.18) !important;
  color: rgba(243, 243, 238, 0.62) !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) input,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) textarea,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) select {
  background: #101010 !important;
  color: #f3f3ee !important;
  border-color: rgba(243, 243, 238, 0.28) !important;
}

html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) img,
html[data-darkreader-mode] body:not(.creative-theme):not(.project-style-c-dark):not(.project-style-d-dark) video {
  background: transparent !important;
}


/* v2.1.26 — final album-listing promo render correction.
   Prepared 16:9 promo assets should occupy their 16:9 listing frames exactly, with no
   partial crop from older object-fit rules or sub-pixel height rounding. Legacy 3:2-ish
   promo assets used on the album list are centre-cropped into the same 16:9 frame so
   there are no white side bars; the individual project pages keep their original files/layouts. */
.album-projects .project-list-slot,
.album-projects figure.project-list-slot {
  margin: 0 !important;
}

.album-projects .project-list-slot--prepared-16x9 {
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot--prepared-16x9 > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: fill !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
  background: transparent !important;
}

.album-projects .project-list-slot--center-crop-16x9 {
  aspect-ratio: 16 / 9 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}

.album-projects .project-list-slot--center-crop-16x9 > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
  background: transparent !important;
}


/* v2.1.26 — filled musician-promo gallery tiles and wide Project D image galleries. */
.headshot-gallery-placeholder.headshot-gallery--filled {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.headshot-gallery-placeholder.headshot-gallery--filled figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
}
.headshot-gallery-placeholder.headshot-gallery--filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-style-d-page .project-d-section-two-image--wide {
  aspect-ratio: 16 / 9;
}
.project-style-d-page .project-d-image img,
.project-style-d-page .project-d-section-two-image img {
  object-position: center center;
}
.project-list-slot--center-crop-square img {
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 980px) {
  .project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--wide {
    grid-template-columns: 1fr;
  }
}

/* v2.1.23 homepage showreel video hero:
   Uses a self-hosted silent MP4 loop with a still poster fallback. */
.hero-showreel-video-frame {
  background: #111111;
}

.hero-showreel .hero-showreel-video,
.hero-showreel .hero-showreel-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
  opacity: 0.92;
}

.hero-showreel .hero-showreel-video {
  z-index: 0;
  display: block;
}

.hero-showreel .hero-showreel-fallback {
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-showreel .hero-showreel-video {
    display: none;
  }
  .hero-showreel .hero-showreel-fallback {
    z-index: 0;
  }
}

/* v2.1.24 homepage showreel final refinement: white text, larger logo, slightly taller hero frame. */
.hero-showreel .hero-media {
  top: calc(clamp(20px, 3vw, 48px) - 5px) !important;
  bottom: calc(clamp(20px, 3vw, 48px) - 5px) !important;
}
.hero-showreel .hero-copy,
.hero-showreel .hero-copy-block .text-link,
.hero-showreel .hero-copy-block .arrow {
  color: #ffffff !important;
}
.hero-showreel .hero-copy-block .text-link {
  border-color: rgba(255, 255, 255, 0.78) !important;
}
.hero-showreel .hero-copy-block .text-link:hover,
.hero-showreel .hero-copy-block .text-link:focus-visible {
  border-color: #ffffff !important;
}
.hero-showreel .hero-overlay-logo {
  width: min(247px, 23vw) !important;
  max-width: 247px !important;
  max-height: 88px !important;
}
@media (max-width: 760px) {
  .hero-showreel .hero-media {
    top: 13px !important;
    bottom: 13px !important;
  }
  .hero-showreel .hero-overlay-logo {
    width: min(166px, 38vw) !important;
    max-height: 62px !important;
  }
}

/* v2.1.24 listing frames: remove visible outlines/borders from project listing image boxes. */
.project-list-media,
.category-project-assets,
.project-list-slot,
.project-list-stack,
.project-list-slot img,
.project-list-placeholder,
.category-project-assets:hover,
.category-project-assets:focus-visible,
.project-list-media:hover,
.project-list-media:focus-visible {
  border-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* v2.1.24 ratio fallback: exposed frame backgrounds blend with the page, not blue/grey. */
.project-list-slot,
.project-list-placeholder,
.project-style-d-page .project-d-image-placeholder,
.project-style-c-page .project-c-image-placeholder,
.headshot-gallery-placeholder {
  background: var(--page-bg, #f2f2f2) !important;
}
body.creative-theme .project-list-slot,
body.creative-theme .project-list-placeholder,
.project-style-c-dark .project-list-slot,
.project-style-c-dark .project-list-placeholder,
.project-style-d-dark .project-d-image-placeholder,
.project-style-c-dark .project-c-image-placeholder {
  background: #050505 !important;
}

/* v2.1.24 Project D bottom galleries: three 16:9 images instead of five square crops. */
.project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--three-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1275px;
}
.project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--three-wide .project-d-section-two-image {
  aspect-ratio: 16 / 9 !important;
}
.project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--three-wide .project-d-image-placeholder {
  aspect-ratio: 16 / 9 !important;
}
@media (max-width: 980px) {
  .project-style-d-page .project-d-section-two-inner.project-d-section-two-inner--three-wide {
    grid-template-columns: 1fr !important;
  }
}
/* v2.1.24 homepage showreel overlay update:
   Full-width translucent caption bar over the video. */
.hero-showreel .hero-copy-block {
  position: absolute !important;
  left: clamp(20px, 3vw, 48px) !important;
  right: clamp(20px, 3vw, 48px) !important;
  bottom: clamp(52px, 11vh, 118px) !important;
  z-index: 3 !important;
  width: auto !important;
  max-width: none !important;
  padding: clamp(22px, 3vw, 42px) clamp(24px, 4vw, 64px) !important;
  background: rgba(242, 242, 242, 0.5) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-showreel .hero-copy-block .hero-title,
.hero-showreel .hero-copy-block .rule {
  display: none !important;
}

.hero-showreel .hero-copy {
  max-width: 780px !important;
  color: #050505 !important;
  font-size: clamp(19px, 2vw, 34px) !important;
  line-height: 1.1 !important;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.hero-showreel .hero-copy-block .action-row {
  margin-top: clamp(22px, 2.5vw, 34px) !important;
}

@media (max-width: 760px) {
  .hero-showreel .hero-copy-block {
    left: 18px !important;
    right: 18px !important;
    bottom: 34px !important;
    padding: 24px !important;
  }

  .hero-showreel .hero-copy {
    font-size: clamp(18px, 7vw, 28px) !important;
  }
}


/* v2.1.24b homepage showreel overlay refinements:
   colour video, smaller strapline, 25% pure-white bar, inverted logo above the bar. */
.hero-showreel .hero-media img,
.hero-showreel .hero-showreel-video,
.hero-showreel .hero-showreel-fallback {
  filter: none !important;
  opacity: 1 !important;
}

.hero-showreel .hero-media::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 46%, rgba(0,0,0,0.24) 100%) !important;
}

.hero-showreel .hero-overlay-logo {
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  bottom: calc(clamp(52px, 11vh, 118px) + clamp(96px, 9vw, 148px));
  z-index: 4;
  width: min(220px, 34vw);
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) !important;
  display: block;
}

.hero-showreel .hero-copy-block {
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  bottom: clamp(40px, 8.5vh, 94px) !important;
  padding: clamp(16px, 2.1vw, 30px) clamp(24px, 4vw, 64px) !important;
}

.hero-showreel .hero-copy {
  font-size: clamp(10px, 1vw, 17px) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.018em !important;
  max-width: 620px !important;
}

.hero-showreel .hero-copy-block .action-row {
  margin-top: clamp(12px, 1.4vw, 20px) !important;
}

@media (max-width: 760px) {
  .hero-showreel .hero-overlay-logo {
    left: 18px;
    bottom: calc(34px + 150px);
    width: min(190px, 55vw);
  }

  .hero-showreel .hero-copy-block {
    bottom: 34px !important;
    padding: 18px 20px !important;
  }

  .hero-showreel .hero-copy {
    font-size: clamp(12px, 3.6vw, 16px) !important;
  }
}


/* v2.1.24c homepage showreel bar refinement:
   logo sits inside the caption bar, video returns to black-and-white,
   and a subtle 10% white overlay brightens the moving image. */
.hero-showreel .hero-media img,
.hero-showreel .hero-showreel-video,
.hero-showreel .hero-showreel-fallback {
  filter: grayscale(1) !important;
  opacity: 1 !important;
}

.hero-showreel .hero-media::before {
  background: rgba(255, 255, 255, 0.10) !important;
  z-index: 1 !important;
  pointer-events: none;
}

.hero-showreel .hero-copy-block {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(18px, 3vw, 48px) !important;
  background: rgba(255, 255, 255, 0.25) !important;
}

.hero-showreel .hero-copy-content {
  min-width: 0;
  flex: 1 1 auto;
}

.hero-showreel .hero-overlay-logo {
  position: static !important;
  flex: 0 0 auto !important;
  width: min(190px, 18vw) !important;
  max-width: 190px !important;
  max-height: 68px !important;
  margin-left: auto !important;
  margin-right: clamp(4px, 0.8vw, 12px) !important;
  object-fit: contain !important;
  object-position: right center !important;
  filter: invert(1) !important;
  display: block !important;
}

@media (max-width: 760px) {
  .hero-showreel .hero-copy-block {
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .hero-showreel .hero-overlay-logo {
    width: min(128px, 30vw) !important;
    max-height: 48px !important;
    margin-right: 4px !important;
  }
}

/* v2.1.24d homepage showreel final winning overrides. */
.hero-showreel .hero-media {
  top: calc(clamp(20px, 3vw, 48px) - 5px) !important;
  bottom: calc(clamp(20px, 3vw, 48px) - 5px) !important;
}
.hero-showreel .hero-copy,
.hero-showreel .hero-copy-block .text-link,
.hero-showreel .hero-copy-block .arrow {
  color: #ffffff !important;
}
.hero-showreel .hero-copy-block .text-link {
  border-color: rgba(255, 255, 255, 0.78) !important;
}
.hero-showreel .hero-copy-block .text-link:hover,
.hero-showreel .hero-copy-block .text-link:focus-visible {
  border-color: #ffffff !important;
}
.hero-showreel .hero-overlay-logo {
  width: min(247px, 23vw) !important;
  max-width: 247px !important;
  max-height: 88px !important;
}
@media (max-width: 760px) {
  .hero-showreel .hero-media {
    top: 13px !important;
    bottom: 13px !important;
  }
  .hero-showreel .hero-overlay-logo {
    width: min(166px, 38vw) !important;
    max-height: 62px !important;
  }
}


/* v2.1.25 Dadstastic 6x4 family photobooth carousel. */
.category-project--with-carousel .project-inline-carousel {
  grid-column: 1 / -1;
  margin-top: clamp(22px, 3vw, 42px);
}

.project-inline-carousel {
  width: 100%;
}

.project-inline-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(12px, 1.6vw, 22px);
}

.project-inline-carousel-header .kicker {
  margin: 0;
}

.project-inline-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-inline-carousel-button {
  appearance: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.project-inline-carousel-track {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(18px, 2vw, 28px);
  padding: 0 0 12px;
  -webkit-overflow-scrolling: touch;
}

.project-inline-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.project-inline-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(20, 20, 20, 0.18);
  border-radius: 999px;
}

.project-inline-carousel-slide {
  flex: 0 0 min(72vw, 520px);
  aspect-ratio: 6 / 4;
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  background: var(--paper, #f3f0e8);
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.project-inline-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.project-inline-carousel--six-by-four .project-inline-carousel-slide {
  aspect-ratio: 6 / 4;
}

.project-inline-carousel-slide.project-list-placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 18px;
  text-align: center;
}

body.creative-theme .project-inline-carousel-slide,
body.project-style-c-dark .project-inline-carousel-slide,
body.project-style-d-dark .project-inline-carousel-slide {
  background: #050505;
}

body.creative-theme .project-inline-carousel-track::-webkit-scrollbar-thumb,
body.project-style-c-dark .project-inline-carousel-track::-webkit-scrollbar-thumb,
body.project-style-d-dark .project-inline-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 760px) {
  .project-inline-carousel-header {
    align-items: flex-start;
  }
  .project-inline-carousel-slide {
    flex-basis: min(84vw, 440px);
  }
}

/* v2.1.26 lightweight check export: homepage uses poster still instead of bundled MP4. */
.hero-showreel-fallback--export {
  display: block !important;
  filter: grayscale(1);
}


/* v2.1.27 Leeds Dads one-page section and single-image carousel refinements. */
.project-style-d-page .leeds-dads-project-section {
  scroll-margin-top: clamp(92px, 10vw, 140px);
}

.project-style-d-page .leeds-dads-project-section:target {
  background: color-mix(in srgb, var(--project-d-text) 5%, var(--project-d-bg));
}

.project-style-d-page .project-d-section-one-inner--reverse .project-d-copy-stack {
  grid-column: 2;
  grid-row: 1;
}

.project-style-d-page .project-d-section-one-inner--reverse .project-d-media-stack {
  grid-column: 1;
  grid-row: 1;
}

.project-inline-carousel--single .project-inline-carousel-track {
  gap: 0 !important;
  overflow-x: hidden !important;
  scroll-snap-type: x mandatory;
  padding: 0 !important;
  scroll-behavior: smooth;
}

.project-inline-carousel--single .project-inline-carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: none !important;
  scroll-snap-align: start;
}

.project-inline-carousel--single .project-inline-carousel-slide img {
  object-fit: cover;
}

.category-project-assets.project-list-media--single-six-by-four,
a.category-project-assets.project-list-media--single-six-by-four {
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.category-project-assets.project-list-media--single-six-by-four .project-list-slot--six-by-four,
a.category-project-assets.project-list-media--single-six-by-four .project-list-slot--six-by-four {
  aspect-ratio: 6 / 4 !important;
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.category-project-assets.project-list-media--single-six-by-four img,
a.category-project-assets.project-list-media--single-six-by-four img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .project-style-d-page .project-d-section-one-inner--reverse .project-d-copy-stack,
  .project-style-d-page .project-d-section-one-inner--reverse .project-d-media-stack {
    grid-column: auto;
    grid-row: auto;
  }
}
/* v2.1.27 Answer The Telephone section two full-width wide still. */
.project-style-c-page .project-c-section-two-inner > .project-c-section-two-wide {
  grid-column: 1 / -1;
}

.project-style-c-page .project-c-section-two-inner > .project-c-section-two-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* v2.1.28 launch-priority fixes: no-frame enforcement, 16:9 media, band promos, actor showreels, headshots carousel. */
.no-frame,
.no-frame::before,
.no-frame::after,
.project-d-image--no-frame,
.project-c-image--no-frame,
.project-b-image--no-frame,
.project-d-image--no-frame::before,
.project-c-image--no-frame::before,
.project-b-image--no-frame::before,
.project-d-image--no-frame::after,
.project-c-image--no-frame::after,
.project-b-image--no-frame::after,
body.creative-theme .project-list-media,
body.creative-theme .category-project-assets,
body.creative-theme .project-list-slot,
body.creative-theme .project-d-image,
body.creative-theme .project-c-image,
body.project-style-c-dark .project-c-image,
body.project-style-d-dark .project-d-image {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.project-d-image--wide,
.project-c-image--wide,
.project-b-image--wide,
.project-list-media--wide-single,
.project-list-media--wide-single .project-list-slot,
.project-d-section-one .project-d-image,
.project-c-section-one .project-c-image,
.project-d-section-two .project-d-image,
.project-c-section-two .project-c-image {
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
}

.project-d-image--wide img,
.project-c-image--wide img,
.project-b-image--wide img,
.project-list-media--wide-single img,
.project-d-section-one .project-d-image img,
.project-c-section-one .project-c-image img,
.project-d-section-two .project-d-image img,
.project-c-section-two .project-c-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

body.creative-theme .project-list-media,
body.creative-theme .category-project-assets,
body.creative-theme .project-list-slot,
body.creative-theme .project-c-image,
body.creative-theme .project-d-image,
body.project-style-c-dark .project-c-image,
body.project-style-d-dark .project-d-image {
  background: #050505 !important;
}

.band-promo-projects .category-project-list {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.band-promo-listing-item .category-project-assets {
  max-width: 520px;
  justify-self: end;
}

.band-promo-listing-item .project-list-slot--square,
.band-promo-listing-item .project-list-slot--square img,
.band-promo-hero-image,
.band-promo-hero-image img {
  aspect-ratio: 1 / 1 !important;
}

.band-promo-listing-item .project-list-slot--square img,
.band-promo-hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.project-style-actorshowreel-page .project-d-section-one .project-d-image,
.project-style-actorshowreel-page .project-d-section-one .project-d-image img {
  aspect-ratio: 16 / 9 !important;
}

.headshots-carousel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.project-inline-carousel--headshots .project-inline-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.project-inline-carousel--headshots .project-inline-carousel-track::-webkit-scrollbar {
  display: none;
}

.project-inline-carousel--headshots .project-inline-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.project-inline-carousel--headshots .project-inline-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-inline-carousel--headshots .carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.project-inline-carousel--headshots .carousel-button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.related-project-bar {
  max-width: min(1120px, calc(100vw - 40px));
  margin: 0 auto clamp(24px, 4vw, 48px);
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.related-project-bar a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 860px) {
  .headshots-carousel-layout {
    grid-template-columns: 1fr;
  }
  .band-promo-listing-item .category-project-assets {
    max-width: none;
    justify-self: stretch;
  }
}


/* v2.2.2 short film poster/festival refinements */
.project-style-c-page .project-c-image-poster,
.project-style-c-page .project-c-inline-poster {
  aspect-ratio: 2 / 3 !important;
  background: #050505 !important;
}
.project-style-c-page .project-c-image--contain img,
.project-style-c-page .project-c-image-poster img,
.project-style-c-page .project-c-inline-poster img {
  object-fit: contain !important;
  background: #050505 !important;
}
.project-style-c-page .project-c-quote {
  font-style: italic;
  color: rgba(247,245,239,0.86) !important;
}
.project-style-c-page .project-c-festival-row--many {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}
.project-style-c-page .project-c-inline-poster {
  margin-top: clamp(18px, 2vw, 28px) !important;
  max-width: 280px;
}


/* v2.2.2 live sessions and event carousel additions. */
.project-inline-carousel--sixteen-by-nine .project-inline-carousel-slide {
  aspect-ratio: 16 / 9;
}
.project-inline-carousel--centered {
  max-width: min(1080px, 100%);
  margin-inline: auto;
}
.project-d-section-two-inner--carousel {
  display: block;
}
.project-d-section-one-inner--reverse {
  direction: rtl;
}
.project-d-section-one-inner--reverse > * {
  direction: ltr;
}


/* v2.2.3 targeted review fixes. */
.project-inline-carousel--event-large {
  width: 100%;
  max-width: min(1400px, calc(100vw - 48px));
  margin-inline: auto;
}
.project-d-section-two-inner--carousel {
  width: min(1400px, calc(100vw - 48px));
  max-width: none;
  margin-inline: auto;
}
.project-inline-carousel--event-large .project-inline-carousel-slide {
  aspect-ratio: 16 / 9;
}
.block-subheader-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: clamp(18px, 2vw, 28px);
  font-family: var(--font-display, inherit);
  font-size: clamp(1.15rem, 2.4vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.evoke-artist-section {
  scroll-margin-top: clamp(92px, 10vw, 140px);
}
.evoke-artist-section-inner {
  align-items: center;
}
.evoke-artist-copy {
  align-self: center;
}
.evoke-artist-title-card {
  min-height: 0 !important;
}
.evoke-artist-title-card h2 {
  margin-bottom: 0.35em;
}
.evoke-artist-media {
  align-self: center;
}

/* v2.2.3 audit: text-only Project D overview sections */
.project-d-section-one-inner.project-d-text-only-section {
  display: block !important;
}
.project-d-section-one-inner.project-d-text-only-section .project-d-copy-stack {
  max-width: 980px;
}


/* v2.2.3 What Goes Up mixed-ratio project media */
.project-d-media-stack--mixed-ratio .project-d-image-poster {
  aspect-ratio: 2 / 3;
  background: transparent !important;
}
.project-d-media-stack--mixed-ratio .project-d-image-poster img {
  object-fit: contain !important;
  background: transparent !important;
}
.project-d-media-stack--mixed-ratio .project-d-image-original {
  aspect-ratio: 1 / 1;
  background: transparent !important;
}
.project-d-media-stack--mixed-ratio .project-d-image-original img {
  object-fit: contain !important;
  background: transparent !important;
}
.project-d-section-two-copy {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 52px);
}
.project-d-section-two-copy h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.92;
  margin: 0 0 0.35em;
}


/* v2.2.5 targeted launch fixes */
.project-d-section-two-inner--centered-two {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  justify-content: center;
  max-width: min(980px, calc(100vw - 48px));
  margin-inline: auto;
}
.project-d-section-two-inner--wide-focus,
.project-d-section-two-inner.project-d-section-two-inner--wide-focus {
  width: min(1500px, calc(100vw - 40px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}
.project-inline-carousel--wide-focus {
  width: min(1500px, calc(100vw - 40px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}
.project-inline-carousel--wide-focus .project-inline-carousel-slide {
  aspect-ratio: 16 / 9 !important;
}
.platform-fourclosure-bar-section {
  padding: 0 !important;
}
.platform-fourclosure-bar {
  width: 100%;
  background: #050505;
  color: #f7f5ef;
  padding: clamp(18px, 3vw, 42px) clamp(20px, 5vw, 72px);
}
.platform-fourclosure-bar-text {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.project-d-image--poster-small,
.project-d-section-one .project-d-image.project-d-image--poster-small {
  aspect-ratio: 2 / 3 !important;
  max-height: 560px;
  align-self: start;
  background: transparent !important;
}
.project-d-image--poster-small img {
  object-fit: contain !important;
  background: transparent !important;
}
.band-promo-listing-item .project-list-slot--wide,
.band-promo-listing-item .project-list-slot--wide img {
  aspect-ratio: 16 / 9 !important;
}
@media (max-width: 760px) {
  .project-d-section-two-inner--centered-two {
    grid-template-columns: 1fr;
  }
}

/* v2.2.4 Genix Healthcare video embeds */
.project-video-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
}
.project-video-embed {
  aspect-ratio: 16 / 9;
  margin: 0;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.project-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: #050505;
}
@media (max-width: 900px) {
  .project-video-grid {
    grid-template-columns: 1fr;
  }
}

/* v2.2.7 Feedback Carousel */
.feedback-carousel-section {
  background: var(--paper, #f3f1ea);
  color: var(--black, #050505);
  padding: clamp(38px, 6vw, 84px) 0;
}

.feedback-carousel-inner {
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
}

.feedback-carousel {
  width: 100%;
  min-height: clamp(220px, 24vw, 340px);
  border-top: 1px solid var(--black, #050505);
  border-bottom: 1px solid var(--black, #050505);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 5vw, 84px);
  position: relative;
  overflow: hidden;
}

.feedback-carousel-track {
  width: 100%;
  max-width: 1080px;
  min-height: clamp(108px, 11vw, 160px);
  position: relative;
  display: grid;
  place-items: center;
}

.feedback-carousel-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 700ms ease, transform 700ms ease, visibility 700ms ease;
  text-align: center;
  pointer-events: none;
}

.feedback-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.feedback-carousel-quote {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--font-body, "Neue Haas Grotesk Text", "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.feedback-carousel-credit {
  margin: clamp(18px, 2vw, 26px) 0 0;
  font-family: var(--font-heading, "Futura PT", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feedback-carousel-controls {
  margin-top: clamp(26px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.feedback-carousel-button {
  appearance: none;
  border: 1px solid var(--black, #050505);
  background: transparent;
  color: inherit;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-family: var(--font-heading, "Futura PT", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.feedback-carousel-button:hover,
.feedback-carousel-button:focus-visible {
  background: var(--black, #050505);
  color: var(--paper, #f3f1ea);
}

.feedback-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feedback-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--black, #050505);
  background: transparent;
}

.feedback-carousel-dot.is-active {
  background: var(--black, #050505);
}

@media (max-width: 720px) {
  .feedback-carousel-inner {
    width: min(100% - 28px, 1440px);
  }

  .feedback-carousel {
    min-height: 260px;
    padding: 32px 18px;
  }

  .feedback-carousel-quote {
    font-size: 1rem;
  }
}

/* Feedback Carousel launch refinements */
.feedback-carousel-heading {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.feedback-carousel-heading .rule {
  margin-left: auto;
  margin-right: auto;
}
.feedback-carousel {
  border-top: 0;
  border-bottom: 0;
}
.feedback-carousel-section .feedback-carousel-inner {
  max-width: var(--site-max, 1440px);
}


/* v2.3.0 handover fixes: scoped carousel and listing-frame corrections. */
body.page-squidge .project-d-section-two-inner--carousel {
  width: min(1280px, calc(100vw - 48px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}
body.page-squidge .project-inline-carousel--event-large,
body.page-squidge .project-inline-carousel--centered {
  width: 100% !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
}

body.page-on-yer-bike .project-d-section-two-inner--wide-focus,
body.page-on-yer-bike .project-inline-carousel--wide-focus {
  width: min(1200px, calc(100vw - 48px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

body.page-acting-showreel-listing .category-project-assets.project-list-media--wide-single {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}
body.page-acting-showreel-listing .project-list-media--wide-single > .project-list-slot--square {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
}
body.page-acting-showreel-listing .project-list-media--wide-single > .project-list-slot--square img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body.page-live-music-listing .category-project-assets.project-list-media--square {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-template-rows: 1fr !important;
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
  overflow: hidden !important;
}
body.page-live-music-listing .project-list-media--square > .project-list-slot--square {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: 100% !important;
}
body.page-live-music-listing .project-list-media--square > .project-list-stack {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  min-height: 0 !important;
}
body.page-live-music-listing .project-list-media--square .project-list-slot--top,
body.page-live-music-listing .project-list-media--square .project-list-slot--bottom {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}
body.page-live-music-listing .project-list-media--square .project-list-slot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  body.page-squidge .project-d-section-two-inner--carousel,
  body.page-on-yer-bike .project-d-section-two-inner--wide-focus,
  body.page-on-yer-bike .project-inline-carousel--wide-focus {
    width: min(100% - 28px, 1200px) !important;
  }
}

/* v2.3.1 bottom section carousel template.
   Standardised left-aligned bottom-page carousel used on focused gallery sections
   such as Squidge, Shade Collective, and On Yer Bike. Reuse this modifier for future
   bottom-section carousels when the gallery should follow the same layout pattern. */
.project-d-section-two-inner--bottom-carousel,
.project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
  width: min(100% - 40px, 1600px) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.project-inline-carousel--bottom-section {
  width: 100% !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-header {
  justify-content: flex-start !important;
  gap: clamp(18px, 2vw, 28px) !important;
  margin-bottom: clamp(28px, 3vw, 40px) !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-controls {
  gap: 12px !important;
  flex: 0 0 auto;
}

.project-inline-carousel--bottom-section .project-inline-carousel-button {
  width: 46px;
  height: 46px;
  font-size: 24px;
  line-height: 1;
  flex: 0 0 46px;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track {
  width: clamp(280px, 15vw, 430px) !important;
  max-width: 100% !important;
  gap: 0 !important;
  overflow: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track::-webkit-scrollbar {
  display: none;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 9 !important;
  background: transparent !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  .project-d-section-two-inner--bottom-carousel,
  .project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
    width: min(100% - 28px, 1600px) !important;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-track {
    width: min(100%, 430px) !important;
  }
}


/* v2.3.2 Disclosure acting showreel mini-series */
.disclosure-entry-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.disclosure-entry-copy {
  max-width: 520px;
}
.disclosure-entry-copy h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.92;
  margin: 0 0 0.35em;
}
.disclosure-entry-copy h3 {
  margin: clamp(24px, 3vw, 38px) 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.disclosure-entry-still {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}
body.page-acting-showreel-listing #disclosure .project-list-slot--wide {
  width: 100%;
  aspect-ratio: 16 / 9 !important;
}
@media (max-width: 820px) {
  .disclosure-entry-inner {
    grid-template-columns: 1fr;
  }
}


/* v2.3.6 — authoritative BOTTOM SECTION CAROUSEL template.
   This component intentionally overrides all older generic carousel width systems. */
.project-d-section-two:has(.project-inline-carousel--bottom-section) {
  padding-top: clamp(72px, 8vw, 120px) !important;
  padding-bottom: clamp(96px, 10vw, 150px) !important;
}

.project-d-section-two-inner--bottom-carousel,
.project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
  display: block !important;
  width: min(100% - 40px, 1600px) !important;
  max-width: none !important;
  margin: 0 auto !important;
}

.project-inline-carousel.project-inline-carousel--bottom-section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 22px !important;
  width: auto !important;
  margin: 0 0 34px !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-header .kicker {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-controls {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-button {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 50% !important;
  font-size: 25px !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track {
  display: flex !important;
  width: clamp(360px, 23vw, 440px) !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track::-webkit-scrollbar {
  display: none !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  scroll-snap-align: start !important;
  overflow: hidden !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 760px) {
  .project-d-section-two-inner--bottom-carousel,
  .project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
    width: min(100% - 28px, 1600px) !important;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-header {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-button {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-track {
    width: min(100%, 440px) !important;
  }
}

/* v2.3.7 — corrected BOTTOM SECTION CAROUSEL standard.
   Large centred 16:9 gallery, with the section label aligned left and controls right
   across the same width as the image. This supersedes the earlier compact treatment. */
.project-d-section-two-inner--bottom-carousel,
.project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
  width: min(100% - 40px, 1080px) !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
}

.project-inline-carousel.project-inline-carousel--bottom-section {
  width: 100% !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-header {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin: 0 0 clamp(18px, 2vw, 28px) !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow-x: hidden !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 760px) {
  .project-d-section-two-inner--bottom-carousel,
  .project-d-section-two-inner.project-d-section-two-inner--bottom-carousel {
    width: min(100% - 28px, 1080px) !important;
  }

  .project-inline-carousel--bottom-section .project-inline-carousel-header {
    gap: 16px !important;
  }
}


/* v2.3.8 final bottom carousel implementation.
   Full-width section, centred 1100px inner container, full-width 16:9 image. */
.bottom-carousel-section {
  width: 100% !important;
  padding: 72px 24px !important;
}

.bottom-carousel-inner,
.project-d-section-two-inner--bottom-carousel.bottom-carousel-inner {
  display: block !important;
  width: min(1100px, 100%) !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  grid-template-columns: none !important;
  grid-column: auto !important;
  justify-self: auto !important;
  align-self: auto !important;
}

.project-inline-carousel--bottom-section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  grid-column: auto !important;
  flex-basis: auto !important;
  text-align: initial !important;
}

.bottom-carousel-header,
.project-inline-carousel--bottom-section .project-inline-carousel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  gap: 24px !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-controls {
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-track {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden !important;
  grid-column: auto !important;
  flex-basis: auto !important;
}

.project-inline-carousel--bottom-section .project-inline-carousel-slide,
.project-inline-carousel--bottom-section .bottom-carousel-slide {
  display: block !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.project-inline-carousel--bottom-section .bottom-carousel-image,
.project-inline-carousel--bottom-section .project-inline-carousel-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 760px) {
  .bottom-carousel-section {
    padding: 52px 20px !important;
  }

  .bottom-carousel-inner,
  .project-d-section-two-inner--bottom-carousel.bottom-carousel-inner {
    width: 100% !important;
    max-width: none !important;
  }

  .bottom-carousel-header,
  .project-inline-carousel--bottom-section .project-inline-carousel-header {
    margin-bottom: 20px !important;
    gap: 16px !important;
  }
}

/* Plateface EP / Bespoke Cureall listing: full gatefold hero artwork. */
.album-projects .plateface-full-cover-listing,
.album-projects a.plateface-full-cover-listing {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
}

.album-projects .plateface-full-cover-listing .project-list-slot--wide {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}

.album-projects .plateface-full-cover-listing .project-list-slot--wide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}


/* Privacy notice page and footer link */
.footer-legal-row {
  width: 100%;
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.footer-legal-row .footer-legal {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
.footer-privacy-link {
  flex: 0 0 auto;
  color: rgba(247, 247, 242, 0.78);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-align: right;
}
.footer-privacy-link:hover,
.footer-privacy-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}
body.creative-theme .footer-legal-row {
  border-top-color: rgba(255, 255, 255, 0.16);
}
body.creative-theme .footer-privacy-link {
  color: rgba(255, 255, 255, 0.48);
}
.privacy-page {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(80px, 10vw, 150px);
}
.privacy-page-inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}
.privacy-hero-placeholder {
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  margin: 0 auto clamp(52px, 7vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.privacy-hero-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.privacy-content {
  max-width: 860px;
  margin: 0;
}
.privacy-heading {
  margin-bottom: clamp(48px, 7vw, 82px);
}
.privacy-updated {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.privacy-content section {
  margin-top: clamp(42px, 6vw, 72px);
}
.privacy-content h2 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.98;
}
.privacy-content h3 {
  margin: 30px 0 10px;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.privacy-content p,
.privacy-content li {
  font-size: 16px;
  line-height: 1.65;
}
.privacy-content ul {
  margin: 16px 0 24px;
  padding-left: 1.25em;
}
.privacy-content a {
  color: inherit;
  text-underline-offset: 0.18em;
}
.privacy-content code {
  font: inherit;
}
@media (max-width: 640px) {
  .footer-legal-row {
    align-items: flex-start;
    gap: 16px;
  }
  .footer-legal-row .footer-legal {
    max-width: 70%;
  }
  .privacy-page-inner {
    width: min(100% - 28px, 1120px);
  }
}

/* v2.3.2 accessibility and launch-readiness refinements */
.visually-hidden {
  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;
}

/* Authoritative keyboard focus treatment, including project cards previously
   stripped of outlines for visual-frame purposes. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.category-project-assets:focus-visible,
.project-list-media:focus-visible {
  outline: 3px solid currentColor !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 2px var(--paper, #efefeb) !important;
}

body.creative-theme a:focus-visible,
body.creative-theme button:focus-visible,
body.project-style-c-dark a:focus-visible,
body.project-style-c-dark button:focus-visible,
body.project-style-d-dark a:focus-visible,
body.project-style-d-dark button:focus-visible {
  box-shadow: 0 0 0 2px #050505 !important;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-bottom-width: 2px;
}

.form-privacy-notice {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-privacy-notice a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}


/* v3.0.2 verified image-backed panels and form actions */
.work-page-hero .studio-side-hero-media::after,
.event-coverage-page-hero .studio-side-hero-media::after {
  background: linear-gradient(90deg, rgba(242,242,242,0.88) 0%, rgba(242,242,242,0.62) 48%, rgba(242,242,242,0.18) 100%);
}
.feedback-carousel-section--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--black);
}
.feedback-carousel-background {
  position: absolute;
  inset: clamp(18px, 3vw, 48px);
  z-index: -1;
  margin: 0;
  overflow: hidden;
}
.feedback-carousel-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .9;
}
.feedback-carousel-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242,242,242,.74);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.form-actions .form-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: min(100%, 220px);
}
.form-privacy-notice {
  margin: 14px 0 0;
  max-width: 680px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.form-privacy-notice a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 620px) {
  .form-actions { flex-direction: column; }
  .form-actions .form-button { width: 100%; }
  .work-page-hero .studio-side-hero-media::after,
  .event-coverage-page-hero .studio-side-hero-media::after {
    background: linear-gradient(180deg, rgba(242,242,242,.18) 0%, rgba(242,242,242,.86) 66%, rgba(242,242,242,.96) 100%);
  }
}

/* v3.0.2 listing and category hero refinements */
.album-index.section { background: #e9e9e9; }
body.creative-theme .album-index.section { background: #0b0b0b; }

body.category-hero-image .category-hero,
body.work-index-page--image .category-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #050505;
}
body.category-hero-image .category-hero::before,
body.work-index-page--image .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}
body.category-hero-image .category-hero::after,
body.work-index-page--image .category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243,240,232,.72);
}
body.category-hero-event-coverage .category-hero::before { background-image:url('/assets/images/category-heroes/event-coverage.webp'); }
body.category-hero-album-artwork .category-hero::before { background-image:url('/assets/images/category-heroes/album-artwork.webp'); }
body.category-hero-headshots .category-hero::before { background-image:url('/assets/images/category-heroes/headshots.webp'); }
body.category-hero-live-music-sessions .category-hero::before { background-image:url('/assets/images/category-heroes/live-music-sessions.webp'); }
body.category-hero-poster-identity-design .category-hero::before { background-image:url('/assets/images/category-heroes/poster-identity-design.webp'); }
body.category-hero-theatre-production-shots .category-hero::before { background-image:url('/assets/images/category-heroes/theatre-production-shots.webp'); }
body.category-hero-acting-showreel-scenes .category-hero::before { background-image:url('/assets/images/category-heroes/acting-showreel-scenes.webp'); }
body.work-index-page--image .category-hero::before { background-image:url('/assets/images/category-heroes/work-page.webp'); }
body.work-index-page--image .category-hero {
  width:100vw!important; max-width:none!important; margin-left:calc(50% - 50vw)!important; margin-right:calc(50% - 50vw)!important;
  border:0!important; margin-bottom:0!important;
}
body.work-index-page--image .category-hero + section { border-top:0!important; }

/* Music-video listing media: one large 16:9 frame with two 16:9 supporting frames,
   kept at the full listing-media size and aligned to the right of the project copy. */
body.page-music-videos-listing .category-project-assets.project-list-media--music-video {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) !important;
  gap: clamp(10px, 1.4vw, 20px) !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  justify-self: end !important;
  align-items: center !important;
  aspect-ratio: auto !important;
}
body.page-music-videos-listing .project-list-media--music-video > .project-list-slot--music-main {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  align-self: center !important;
  overflow: hidden !important;
}
body.page-music-videos-listing .project-list-media--music-video > .project-list-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(2, auto) !important;
  gap: clamp(10px, 1.4vw, 20px) !important;
  width: 100% !important;
  height: auto !important;
  align-self: center !important;
}
body.page-music-videos-listing .project-list-media--music-video .project-list-slot--top,
body.page-music-videos-listing .project-list-media--music-video .project-list-slot--bottom {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}
body.page-music-videos-listing .project-list-media--music-video .project-list-slot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Acting showreel listing promo media reduced to approximately half desktop width. */
body.page-acting-showreel-listing .category-project-assets { width:50%!important; max-width:620px!important; justify-self:end!important; }
body.page-acting-showreel-listing .category-project-assets .project-list-slot { aspect-ratio:16/9!important; }

/* On Yer Bike stays white on its project page, but its Creative listing entry uses the dark-side treatment. */
body.creative-theme .category-project#on-yer-bike,
body.creative-theme .category-project.on-yer-bike-listing {
  background: #050505 !important;
  color: #f7f5ef !important;
}
body.creative-theme .category-project#on-yer-bike h2,
body.creative-theme .category-project#on-yer-bike h2 a,
body.creative-theme .category-project#on-yer-bike p,
body.creative-theme .category-project#on-yer-bike .documentary-production,
body.creative-theme .category-project#on-yer-bike .project-meta,
body.creative-theme .category-project#on-yer-bike .album-format,
body.creative-theme .category-project#on-yer-bike .text-link {
  color: #f7f5ef !important;
}
body.creative-theme .category-project#on-yer-bike .text-link {
  border-color: rgba(247, 245, 239, 0.36);
}

@media(max-width:760px){
 body.page-music-videos-listing .category-project-assets.project-list-media--music-video {
   grid-template-columns: 1fr !important;
   width: 100% !important;
   max-width: none !important;
   margin-right: auto !important;
 }
 body.page-music-videos-listing .project-list-media--music-video > .project-list-stack {
   grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
   grid-template-rows: auto !important;
 }
 body.page-acting-showreel-listing .category-project-assets{width:100%!important;max-width:none!important;}
}


/* v3.0.2 — The Showcase promotional reel grid.
   Three web-sized vertical reels are centred in one row on desktop and collapse cleanly on small screens. */
.showcase-promo-reels-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(96px, 10vw, 144px);
  background: var(--paper-2);
}

.showcase-promo-reels-inner {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
}

.showcase-promo-reels-header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  text-align: center;
}

.showcase-promo-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  align-items: start;
  gap: clamp(18px, 2.4vw, 30px);
  width: 100%;
  margin-inline: auto;
}

.showcase-promo-reel {
  width: 100%;
  margin: 0;
}

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

.showcase-promo-reel figcaption {
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .showcase-promo-reels-inner {
    width: min(100% - 28px, 1040px);
  }

  .showcase-promo-reels-grid {
    grid-template-columns: minmax(0, 320px);
    gap: 34px;
  }
}

/* v3.0.2 — Disclosure asset galleries and three-project listing preview. */
body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin-left: auto !important;
  justify-self: end !important;
  align-items: center !important;
  aspect-ratio: auto !important;
}

body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio > .project-list-slot--acting-main,
body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio .project-list-slot--top,
body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio .project-list-slot--bottom {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
}

body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio > .project-list-stack {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  height: auto !important;
  align-self: center !important;
}

body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.disclosure-overview-media .project-d-image-wide {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.disclosure-entry {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
  border-bottom: 1px solid var(--line);
}

.disclosure-entry-inner {
  align-items: start;
}

.disclosure-entry-media {
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
  min-width: 0;
}

.disclosure-entry-still,
.disclosure-entry-gallery-item {
  background: rgba(0, 0, 0, 0.04);
}

.disclosure-entry-still img,
.disclosure-entry-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.disclosure-entry-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
}

.disclosure-entry-gallery-item {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

@media (max-width: 820px) {
  body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
  }

  body.page-acting-showreel-listing #disclosure .project-list-media--acting-trio > .project-list-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
  }

  .disclosure-entry-gallery {
    grid-template-columns: 1fr;
  }
}

/* Progeny project ownership notice */
.project-rights-notice-section {
  padding-top: 0;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  background: #fff;
}

.project-rights-notice {
  padding-top: 1.125rem;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.project-rights-notice p {
  max-width: 58rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.78rem;
  line-height: 1.6;
}

.project-rights-notice strong {
  color: rgba(17, 17, 17, 0.82);
}

/* v3.0.5 post-release — The Platform listing uses three Fourclosure shoot stills,
   matching the established one-large-plus-two-supporting 16:9 media layout. */
body.page-theatre-production-listing .category-project-assets.project-list-media--music-video {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) !important;
  gap: clamp(10px, 1.4vw, 20px) !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  justify-self: end !important;
  align-items: center !important;
}
body.page-theatre-production-listing .project-list-media--music-video > .project-list-slot--music-main,
body.page-theatre-production-listing .project-list-media--music-video .project-list-slot--top,
body.page-theatre-production-listing .project-list-media--music-video .project-list-slot--bottom {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}
body.page-theatre-production-listing .project-list-media--music-video > .project-list-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(2, auto) !important;
  gap: clamp(10px, 1.4vw, 20px) !important;
  width: 100% !important;
  height: auto !important;
  align-self: center !important;
}
body.page-theatre-production-listing .project-list-media--music-video .project-list-slot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 760px) {
  body.page-theatre-production-listing .category-project-assets.project-list-media--music-video {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: none !important;
    margin-right: auto !important;
  }
  body.page-theatre-production-listing .project-list-media--music-video > .project-list-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
  }
}

/* v3.0.5 post-release — Legacy Media before/after restoration comparisons */
.page-legacy-media .legacy-service-section {
  padding-top: clamp(38px, 4.5vw, 66px);
}

.page-legacy-media .legacy-example-section {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(88px, 11vw, 160px);
  background: var(--paper-2);
}

.page-legacy-media .legacy-example-inner {
  width: min(100% - 40px, 1180px);
}

.page-legacy-media .legacy-example-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.page-legacy-media .legacy-example-heading > .block-subheader {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 9px 13px 8px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.page-legacy-media .legacy-example-intro h3 {
  margin: 0 0 18px;
  max-width: 900px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.page-legacy-media .legacy-example-intro p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--muted);
}

.page-legacy-media .legacy-restoration-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 88px);
  margin-bottom: clamp(56px, 8vw, 108px);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.page-legacy-media .legacy-restoration-summary__copy .block-subheader {
  margin-bottom: 22px;
}

.page-legacy-media .legacy-restoration-summary__copy h3 {
  margin: 0 0 22px;
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-legacy-media .legacy-restoration-summary__copy p:last-child {
  margin: 0;
  max-width: 620px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

.page-legacy-media .legacy-restoration-features {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.page-legacy-media .legacy-restoration-features li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
}

.page-legacy-media .legacy-restoration-features span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-legacy-media .legacy-comparison-list {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
}

.page-legacy-media .legacy-comparison,
.page-legacy-media .legacy-comparison-grid {
  min-width: 0;
}

.page-legacy-media .legacy-comparison {
  margin: 0;
}

.page-legacy-media .legacy-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 68px) clamp(22px, 3vw, 38px);
}

.page-legacy-media .legacy-comparison__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.page-legacy-media .legacy-comparison__topline .block-subheader {
  margin: 0;
}

.page-legacy-media .before-after__modes {
  display: none;
  gap: 6px;
}

.page-legacy-media .before-after__modes button {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  padding: 8px 12px;
  font: inherit;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.page-legacy-media .before-after__modes button:hover,
.page-legacy-media .before-after__modes button:focus-visible,
.page-legacy-media .before-after__modes button[aria-pressed="true"] {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.page-legacy-media .before-after {
  --position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  isolation: isolate;
}

.page-legacy-media .before-after__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.page-legacy-media .before-after__image--after {
  z-index: 1;
}

.page-legacy-media .before-after__before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  will-change: clip-path;
}

.page-legacy-media .before-after__before .before-after__image {
  position: absolute;
}

.page-legacy-media .before-after__label {
  position: absolute;
  top: clamp(12px, 2vw, 22px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 11px 7px;
  background: rgba(5, 5, 5, 0.9);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.page-legacy-media .before-after__label--before {
  left: clamp(12px, 2vw, 22px);
}

.page-legacy-media .before-after__label--after {
  right: clamp(12px, 2vw, 22px);
}

.page-legacy-media .before-after__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.page-legacy-media .before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.96);
  pointer-events: none;
}

.page-legacy-media .before-after__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(42px, 4.6vw, 58px);
  height: clamp(42px, 4.6vw, 58px);
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #050505;
  font-family: var(--font-heading);
  font-size: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.page-legacy-media .before-after:has(.before-after__range:focus-visible) {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

.page-legacy-media .legacy-comparison figcaption {
  margin-top: 13px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
  color: var(--muted);
}

.page-legacy-media .legacy-comparison-footnote {
  max-width: 900px;
  margin: clamp(44px, 6vw, 76px) auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 900px) {
  .page-legacy-media .legacy-example-heading,
  .page-legacy-media .legacy-restoration-summary,
  .page-legacy-media .legacy-comparison-grid {
    grid-template-columns: 1fr;
  }

  .page-legacy-media .legacy-example-heading {
    gap: 26px;
  }

  .page-legacy-media .legacy-restoration-summary {
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .page-legacy-media .legacy-example-inner {
    width: min(100% - 24px, 1180px);
  }

  .page-legacy-media .before-after__modes {
    display: flex;
  }

  .page-legacy-media .legacy-comparison__topline {
    align-items: flex-end;
  }

  .page-legacy-media .before-after__label {
    top: 10px;
    min-height: 28px;
    padding: 7px 9px 6px;
  }

  .page-legacy-media .before-after__label--before {
    left: 10px;
  }

  .page-legacy-media .before-after__label--after {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-legacy-media .before-after__before,
  .page-legacy-media .before-after__divider {
    transition: none;
  }
}


/* Legacy Media category hero background */
body.category-hero-legacy-media .category-hero::before {
  background-image: url('/assets/images/category-heroes/legacy-media-conversion.webp');
  background-position: center center;
}


/* v3.0.6 — copy-only project section, credits and work-in-progress media. */
.project-d-section-one-inner--copy-only {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: start;
}
.project-d-section-one-inner--copy-only .project-d-copy-stack {
  max-width: 760px;
}
.project-credit-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.project-credit-list dt,
.project-credit-list dd {
  margin: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.45;
}
.project-credit-list dt {
  padding-right: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.project-credit-list dd { color: var(--muted); }
.when-raining-work-in-progress-media .project-d-image-wide,
.disclosure-overview-media .project-d-image-wide { aspect-ratio: 16 / 9; }
.when-raining-work-in-progress-media img,
.disclosure-overview-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
  .project-credit-list { grid-template-columns: 1fr; }
  .project-credit-list dt { border-bottom: 0; padding-bottom: 0.1rem; }
  .project-credit-list dd { padding-top: 0.1rem; }
}


/* v3.1.1 launch showreel and neutral Featured Projects treatment. */
.album-index.section {
  background: #e9e9e9 !important;
}

.hero-showreel .hero-showreel-video,
.hero-showreel .hero-showreel-fallback {
  object-position: center center !important;
}

.hero-showreel .hero-showreel-video {
  background: #111111;
}

@media (max-width: 760px) {
  .hero-showreel {
    display: block !important;
    min-height: 0 !important;
    padding: 13px !important;
  }

  .hero-showreel .hero-media {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
  }

  .hero-showreel .hero-copy-block {
    left: 13px !important;
    right: 13px !important;
    bottom: 13px !important;
    padding: 12px 14px !important;
    gap: 10px !important;
  }

  .hero-showreel .hero-copy {
    font-size: clamp(11px, 3.2vw, 14px) !important;
    line-height: 1.25 !important;
  }

  .hero-showreel .hero-copy-block .action-row {
    margin-top: 8px !important;
    gap: 12px !important;
  }

  .hero-showreel .hero-copy-block .text-link {
    font-size: 9px !important;
  }

  .hero-showreel .hero-overlay-logo {
    width: min(92px, 25vw) !important;
    max-height: 38px !important;
  }
}

/* v3.1.1 launch fallback: show the supplied static collage if video playback fails. */
.hero-showreel-video-frame.is-showreel-static .hero-showreel-video {
  display: none !important;
}

.hero-showreel-video-frame.is-showreel-static .hero-showreel-fallback {
  z-index: 0 !important;
}


/* v3.1.2 image loading frames and neutral placeholders. */
body {
  --page-bg: var(--paper);
}

body.creative-theme,
.project-style-c-page {
  --page-bg: #050505;
}

.project-style-d-page {
  --page-bg: var(--project-d-bg);
}

/* Live image frames blend into the page while their image data is loading. */
.project-list-slot,
.project-style-b-page .project-b-image-frame,
.project-style-b-page .project-b-carousel,
.project-style-b-page .project-b-carousel-slide,
.project-style-b-page .project-b-carousel-slide img,
.project-style-c-page .project-c-image,
.project-style-d-page .project-d-image,
.headshot-gallery-image,
.contact-theme-image,
.about-theme-image {
  background: var(--page-bg) !important;
}

.project-style-d-page .project-d-image {
  background: var(--project-d-bg) !important;
}

.project-style-c-page .project-c-image {
  background: #050505 !important;
}

/* Genuine empty placeholders remain visible, but use quiet theme-neutral tones. */
.project-list-placeholder,
.project-style-b-page .project-b-placeholder,
.project-style-c-page .project-c-image-placeholder,
.project-style-d-page.project-style-d-light .project-d-image-placeholder,
.headshot-gallery-placeholder {
  background: var(--paper-2) !important;
  color: var(--muted) !important;
}

body.creative-theme .project-list-placeholder,
.project-style-c-page .project-c-image-placeholder,
.project-style-d-page.project-style-d-dark .project-d-image-placeholder {
  background: #111111 !important;
  color: rgba(247, 247, 242, 0.68) !important;
}


/* v3.1.3 navigation responsiveness and dark-page Featured Projects readability. */
.reveal {
  transition-duration: 300ms !important;
}

.reveal.reveal-immediate {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Featured Projects remains a light strip on dark pages, so all content and marks use dark ink. */
body.creative-theme .album-index.section,
.project-style-c-page .album-index.section,
.project-style-d-dark .album-index.section {
  background: #e9e9e9 !important;
  color: #050505 !important;
  border-color: rgba(5, 5, 5, 0.16) !important;
}

body.creative-theme .album-index.section .kicker,
body.creative-theme .album-index.section .album-index-list a,
.project-style-c-page .album-index.section .kicker,
.project-style-c-page .album-index.section .album-index-list a,
.project-style-d-dark .album-index.section .kicker,
.project-style-d-dark .album-index.section .album-index-list a {
  color: #050505 !important;
}

body.creative-theme .album-index.section .album-index-list span,
.project-style-c-page .album-index.section .album-index-list span,
.project-style-d-dark .album-index.section .album-index-list span {
  color: #5f5f5a !important;
}

body.creative-theme .album-index.section .album-index-list a,
.project-style-c-page .album-index.section .album-index-list a,
.project-style-d-dark .album-index.section .album-index-list a {
  border-bottom-color: rgba(5, 5, 5, 0.16) !important;
}

body.creative-theme .album-index.section .rule,
.project-style-c-page .album-index.section .rule,
.project-style-d-dark .album-index.section .rule {
  background: #050505 !important;
  border-color: #050505 !important;
}

/* v3.1.7 — The Showcase promotional materials section now begins with body copy only. */
#promotional-reels .showcase-promo-reels-copy {
  display: block !important;
  width: min(100%, 720px) !important;
  margin: 0 auto clamp(28px, 3.5vw, 44px) !important;
  text-align: center !important;
}

#promotional-reels .showcase-promo-reels-copy p {
  margin: 0 !important;
}

#promotional-reels .showcase-promo-reels-copy p + p {
  margin-top: 12px !important;
}

@media (max-width: 700px) {
  #promotional-reels .showcase-promo-reels-copy {
    max-width: 100% !important;
  }
}


/* v3.2.2 shared navigation privacy link */
.site-menu-panel {
  display: flex;
  flex-direction: column;
}

.site-menu-privacy {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: clamp(20px, 3vw, 34px);
  color: currentColor;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  opacity: 0.72;
}

.site-menu-privacy:hover,
.site-menu-privacy:focus-visible {
  opacity: 1;
}

body.creative-theme .site-menu-privacy,
body.project-style-c-dark .site-menu-privacy,
body.project-style-d-dark .site-menu-privacy {
  color: var(--white);
}


/* v3.2.2 Vimeo homepage showreel.
   The iframe is centred and sized by JavaScript to cover the hero frame using
   the video's real aspect ratio, preventing Vimeo pillarboxing/letterboxing. */
.hero-showreel-video-frame {
  overflow: hidden;
}

.hero-showreel .hero-showreel-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  border: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  filter: grayscale(1);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: opacity 320ms ease;
}

.hero-showreel .hero-showreel-fallback {
  z-index: 1 !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 0s linear 0s;
}

.hero-showreel-video-frame.is-showreel-playing .hero-showreel-vimeo {
  opacity: 0.92;
}

.hero-showreel-video-frame.is-showreel-playing .hero-showreel-fallback {
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.hero-showreel-video-frame.is-showreel-static .hero-showreel-vimeo {
  opacity: 0;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-showreel .hero-showreel-vimeo {
    display: none !important;
  }

  .hero-showreel .hero-showreel-fallback {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
