* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f0;
  --accent: #d6d0c4;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 28px 40px;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  font-weight: 600;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar .logo {
  color: inherit;
  text-decoration: none;
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.topnav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  white-space: nowrap;
}

.topnav a:hover {
  opacity: 1;
}

.topnav a:hover {
  opacity: 1;
}

.page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  padding-top: 40px;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media iframe,
.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.77vh; /* keep 16:9 cover fill */
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* GIANTS, the showreel, and the workshop clip are interactive: play inline, no outbound link needed */
#giants-player,
#actor-player,
#workshop-player,
.hero-media video.interactive-player,
.hero-media iframe.interactive-player {
  pointer-events: auto;
}

#actor-player {
  cursor: pointer;
}

.sound-hint {
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.hero-media--placeholder {
  background: linear-gradient(160deg, #161616, #0a0a0a);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-text .role {
  margin-top: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.35em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text .project {
  margin-top: 24px;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.05em;
}

.hero-text .placeholder-note {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

.hidden-player {
  display: none;
}

.dissolve {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-overlay,
.hero-text {
  transition: opacity 0.8s ease;
}

#full-reel-player {
  pointer-events: auto;
}

.content-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

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

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--accent);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-block p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--fg) !important;
  margin-bottom: 16px !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, 0.3);
  color: var(--fg);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.site-footer {
  padding: 60px 40px;
  text-align: center;
  background: var(--bg);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.site-footer nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-footer nav a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 0.08em;
}

/* ---- Long-form program / add-on pages ---- */

.ws-hero {
  padding: 160px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.ws-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ws-hero .subhead {
  margin-top: 20px;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.ws-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  border-top: 1px solid rgba(245, 245, 240, 0.12);
}
.ws-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.ws-block h2 .ws-subtitle {
  display: block;
  margin-top: 8px;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.ws-block .desc {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--accent);
  line-height: 1.75;
  font-size: 1.22rem;
}
.ws-block .desc:last-child { margin-bottom: 0; }

.ws-eyebrow {
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ws-benefits-intro {
  max-width: 640px;
  margin: 40px auto 16px;
  text-align: center;
  color: var(--fg);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ws-benefits {
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
}
.ws-benefits li {
  color: var(--accent);
  line-height: 1.75;
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}
.ws-benefits li:last-child { border-bottom: none; }
.ws-benefits li strong {
  color: var(--fg);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.ws-includes {
  max-width: 640px;
  margin: 32px auto;
  padding: 28px 32px;
  border: 1px solid rgba(245, 245, 240, 0.15);
}
.ws-includes h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--fg);
}
.ws-includes ul {
  list-style: none;
  padding: 0;
}
.ws-includes li {
  color: var(--accent);
  line-height: 1.75;
  font-size: 1.02rem;
  padding: 6px 0 6px 18px;
  position: relative;
}
.ws-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.5;
}
.ws-includes li strong {
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.ws-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 32px auto 0;
}
.ws-price-card {
  padding: 0;
  text-align: center;
}
.ws-price-card .ws-price-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.ws-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.ws-cta {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.ws-cta.primary {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(180deg, #333333 0%, #050505 55%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 22px 20px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.ws-cta.primary::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -25%;
  width: 55%;
  height: 240%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 65%);
  transform: rotate(20deg);
  pointer-events: none;
}
.ws-cta.primary:hover {
  background: linear-gradient(180deg, #444444 0%, #0a0a0a 55%, #000000 100%);
  border-color: rgba(255, 255, 255, 0.8);
}
.ws-cta.secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.ws-cta.secondary:hover { background: var(--fg); color: var(--bg); }
.ws-cta.pending { cursor: not-allowed; }
.ws-pending-note {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  opacity: 0.6;
  margin-top: 10px;
}

.ws-quote {
  max-width: 680px;
  margin: 60px auto 0;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
}

.ws-flow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.ws-flow li {
  text-align: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}
.ws-flow li:last-child { border-bottom: none; }
.ws-flow .ws-flow-step {
  letter-spacing: 0.22em;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.ws-flow .ws-flow-title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
}
.ws-flow .ws-flow-desc {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ---- Audition / long forms ---- */

.ws-form {
  max-width: 560px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ws-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a2418;
  margin-bottom: -10px;
  display: block;
}
.ws-form input,
.ws-form select,
.ws-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 36, 32, 0.3);
  color: #2a2420;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.92rem;
}
.ws-form select option {
  background: #ede6d8;
  color: #2a2420;
}
.ws-form textarea { min-height: 100px; resize: vertical; }
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus {
  outline: none;
  border-color: #b8362a;
}
.ws-form fieldset {
  border: 1px solid rgba(42, 36, 32, 0.2);
  padding: 16px;
}
.ws-form legend {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8362a;
  padding: 0 10px;
}
.ws-form--card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 36, 32, 0.15);
  padding: 40px;
}
.ws-form .ws-radio-row,
.ws-form .ws-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: #4a4030;
}
.ws-form .ws-radio-row input,
.ws-form .ws-check-row input {
  width: auto;
  margin-top: 4px;
}
.ws-hp { position: absolute; left: -5000px; }
.ws-form button {
  margin-top: 6px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ws-form button:hover { background: rgba(0, 0, 0, 0.88); }

@media (max-width: 640px) {
  .ws-form-row,
  .ws-price-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Poster-backed pages (Programs / Add-Ons) ---- */

.poster-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 20%;
}

.poster-hero--tall { height: 135vh; }

.poster-hero .hero-text h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* For longer titles ("The Unsilenced — Core") — smaller so they fit on one line and don't cover the poster's faces */
.poster-hero .hero-text h1.hero-title--compact {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  white-space: nowrap;
}

/* A little bigger and thinner for the Training page's "Our Labs" */
.poster-hero .hero-text h1.hero-title--airy {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  font-weight: 600;
}

/* Thin, elegant display style matching the posters' own "THE UNSILENCED" title treatment */
.poster-hero .hero-text h1.hero-title--thin {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.poster-hero .hero-text .subhead {
  margin-top: 18px;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* THEME: SLATE — warm dark charcoal, gold accent (Programs / Acting Labs poster) */

body.theme-slate { background: #2b2822; color: #eae4d8; }
body.theme-slate .poster-hero { background-image: url("assets/img/poster-acting-labs.jpg"); }
body.theme-slate .poster-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(20,17,12,0.15) 0%, rgba(20,17,12,0.35) 55%, #2b2822 100%);
}
body.theme-slate .poster-hero .hero-text h1,
body.theme-slate .poster-hero .hero-text .subhead { color: #e3bd5c; }

body.theme-slate .page-main { background: #2b2822; }
body.theme-slate .ws-hero .subhead { color: #ddd4c4; }
body.theme-slate .ws-block { border-top-color: rgba(234, 228, 216, 0.14); }
body.theme-slate .ws-block h2 { color: #e3bd5c; }
body.theme-slate .ws-eyebrow,
body.theme-slate .ws-flow-step { color: #e3bd5c; }
body.theme-slate .desc,
body.theme-slate .ws-benefits li,
body.theme-slate .ws-flow-desc { color: #ddd4c4; }
body.theme-slate .ws-benefits li strong,
body.theme-slate .ws-flow-title { color: #eae4d8; }
body.theme-slate .ws-includes { border-color: rgba(234, 228, 216, 0.2); }
body.theme-slate .ws-includes h3 { color: #eae4d8; }
body.theme-slate .ws-includes li { color: #ddd4c4; }
body.theme-slate .ws-quote { color: #eae4d8; }
body.theme-slate .ws-price-card .ws-price-label { color: #ddd4c4; }
body.theme-slate .ws-cta.secondary { border-color: #eae4d8; color: #eae4d8; }
body.theme-slate .ws-cta.secondary:hover { background: #eae4d8; color: #2b2822; }
body.theme-slate .ws-pending-note { color: #cfc6b4; }
body.theme-slate .site-footer { background: #2b2822; }
body.theme-slate .site-footer nav a { color: #eae4d8; }
body.theme-slate .copyright { color: #eae4d8; }

/* THEME: CRIMSON — dark charcoal bled from the poster, red/orange accent (Add-Ons + Training) */

body.theme-crimson { background: #17130f; color: #efe7db; }
body.theme-crimson .poster-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10,8,6,0.02) 0%, rgba(10,8,6,0.22) 78%, #17130f 100%);
}
body.theme-crimson .poster-hero .hero-text h1,
body.theme-crimson .poster-hero .hero-text .subhead { color: #ffffff; }

/* Nav rendered as shiny solid-black chips with bright white text against any poster */
body.theme-crimson .topbar { mix-blend-mode: normal; color: #ffffff; }
body.theme-crimson .topnav a,
body.theme-crimson .logo {
  background: linear-gradient(180deg, #2c2c2c 0%, #050505 55%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  color: #ffffff;
  opacity: 1;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}
body.theme-crimson .topnav a:hover { background: linear-gradient(180deg, #3a3a3a 0%, #0a0a0a 55%, #000000 100%); }

body.theme-crimson.page-addons .poster-hero { background-image: url("assets/img/poster-addons-v2.jpg"); background-position: center center; }
body.theme-crimson.page-training .poster-hero { background-image: url("assets/img/poster-training.jpg"); background-position: center 32%; }
body.theme-crimson.page-about .poster-hero { background-image: url("assets/img/poster-about.jpg"); background-position: center 22%; }
body.theme-crimson.page-about .poster-hero--tall { height: 117vh; }

body.theme-crimson .page-main { background: #17130f; }
body.theme-crimson .ws-hero .subhead { color: #cbbfae; }
body.theme-crimson .ws-block { border-top-color: rgba(239, 231, 219, 0.12); }
body.theme-crimson .ws-block h2 { color: #e2432c; }
body.theme-crimson .ws-eyebrow,
body.theme-crimson .ws-flow-step { color: #e2432c; }
body.theme-crimson .desc,
body.theme-crimson .ws-benefits li,
body.theme-crimson .ws-flow-desc { color: #cbbfae; }
body.theme-crimson .ws-benefits li strong,
body.theme-crimson .ws-flow-title { color: #efe7db; }
body.theme-crimson .ws-includes { border-color: rgba(239, 231, 219, 0.18); }
body.theme-crimson .ws-includes h3 { color: #efe7db; }
body.theme-crimson .ws-includes li { color: #cbbfae; }
body.theme-crimson .ws-quote { color: #efe7db; }
body.theme-crimson .ws-price-card .ws-price-label { color: #cbbfae; }
body.theme-crimson .ws-cta.secondary { border-color: #efe7db; color: #efe7db; }
body.theme-crimson .ws-cta.secondary:hover { background: #efe7db; color: #17130f; }
body.theme-crimson .ws-pending-note { color: #cbbfae; }
body.theme-crimson .site-footer { background: #17130f; }
body.theme-crimson .site-footer nav a { color: #efe7db; }
body.theme-crimson .copyright { color: #efe7db; }

/* THEME: CREAM — warm parchment bled from the poster, deep red accent (Audition page) */

body.theme-cream { background: #ede6d8; color: #2a2420; }
body.theme-cream.page-audition .poster-hero { background-image: url("assets/img/poster-audition.jpg"); background-position: center 15%; }
body.theme-cream .poster-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(20,15,10,0.02) 0%, rgba(20,15,10,0.12) 78%, #ede6d8 100%);
}

/* Nav rendered as solid dark chips — consistent with the other poster pages */
body.theme-cream .topbar { mix-blend-mode: normal; color: #ffffff; }
body.theme-cream .topnav a,
body.theme-cream .logo {
  background: linear-gradient(180deg, #2c2c2c 0%, #050505 55%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  color: #ffffff;
  opacity: 1;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}
body.theme-cream .topnav a:hover { background: linear-gradient(180deg, #3a3a3a 0%, #0a0a0a 55%, #000000 100%); }

body.theme-cream .page-main { background: #ede6d8; }
body.theme-cream .ws-hero .subhead { color: #4a4030; }
body.theme-cream .ws-eyebrow { color: #b8362a; }
body.theme-cream .ws-block h2 { color: #2a2420; }
body.theme-cream .desc { color: #4a4030; }

/* Studio Locations reuses the cream light-poster treatment, monochrome accent to match the LONDON poster */
body.theme-cream.page-studios { background: #ece9e4; }
body.theme-cream.page-studios .page-main { background: #ece9e4; }
body.theme-cream.page-studios .poster-hero { background-image: url("assets/img/poster-studios.jpg"); background-position: center top; height: 75vh; }
body.theme-cream.page-studios .poster-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(20,20,20,0.02) 0%, rgba(20,20,20,0.1) 78%, #ece9e4 100%);
}
body.theme-cream.page-studios .ws-eyebrow { color: #2a2420; }

/* THEME: SCARLET — solid red bled to deep maroon, cream/gold accent (Our Founder page) */

body.theme-scarlet { background: #3a120c; color: #f2e8d8; }
body.theme-scarlet.page-founder .poster-hero { background-image: url("assets/img/poster-founder.jpg"); background-position: center 15%; }
body.theme-scarlet.page-founder .poster-hero--tall { height: 117vh; }
body.theme-scarlet .poster-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(30,8,4,0.05) 0%, rgba(30,8,4,0.35) 75%, #3a120c 100%);
}
body.theme-scarlet .poster-hero .hero-text h1,
body.theme-scarlet .poster-hero .hero-text .subhead { color: #f2e8d8; }

body.theme-scarlet .topbar { mix-blend-mode: normal; color: #ffffff; }
body.theme-scarlet .topnav a,
body.theme-scarlet .logo {
  background: linear-gradient(180deg, #2c2c2c 0%, #050505 55%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  color: #ffffff;
  opacity: 1;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}
body.theme-scarlet .topnav a:hover { background: linear-gradient(180deg, #3a3a3a 0%, #0a0a0a 55%, #000000 100%); }

body.theme-scarlet .page-main { background: #3a120c; }
body.theme-scarlet .ws-hero .subhead { color: #e8cfa8; }
body.theme-scarlet .ws-block { border-top-color: rgba(242, 232, 216, 0.15); }
body.theme-scarlet .ws-block h2 { color: #e3bd5c; }
body.theme-scarlet .ws-eyebrow { color: #e3bd5c; }
body.theme-scarlet .desc { color: #e8cfa8; }
body.theme-scarlet .site-footer { background: #3a120c; }
body.theme-scarlet .site-footer nav a { color: #f2e8d8; }
body.theme-scarlet .copyright { color: #f2e8d8; }
