:root {
  --bg: #0b0b0d;
  --bg-soft: #141418;
  --paper: #f6f0e7;
  --paper-soft: #eee5d9;
  --ink: #171414;
  --muted: #70685f;
  --line: rgba(255,255,255,.16);
  --gold: #c9a45a;
  --gold-dark: #987637;
  --white: #fffdf9;
  --shadow: 0 24px 80px rgba(0,0,0,.24);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(11,11,13,.78);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  text-decoration: none;
  letter-spacing: .02em;
}
.main-nav { display: flex; gap: 22px; font-size: 14px; }
.main-nav a { text-decoration: none; opacity: .84; }
.main-nav a:hover { opacity: 1; color: var(--gold); }

.section { padding: clamp(74px, 8vw, 128px) clamp(18px, 4vw, 48px); }
.section > * { max-width: var(--max); margin-inline: auto; }
.section-dark { background: var(--bg); color: var(--white); }
.section-muted { background: var(--paper-soft); }
.section-dark.soft { background: linear-gradient(135deg, #121216, #1d1716); }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(201,164,90,.18), transparent 32%),
    linear-gradient(135deg, #0b0b0d 0%, #151216 58%, #241d17 100%);
}
.hero-media {
  order: 2;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 70px);
}
.hero-media img {
  width: clamp(260px, 31vw, 430px);
  height: auto;
  max-height: min(76vh, 720px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0,0,0,.44);
  filter: saturate(.94) contrast(1.04);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 9% 18%;
  height: 34%;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  filter: blur(42px);
  z-index: -1;
}
.hero-glow { position: absolute; inset: auto auto 8% -10%; width: 280px; height: 280px; border-radius: 50%; background: rgba(201,164,90,.22); filter: blur(70px); }
.hero-content {
  align-self: center;
  padding: clamp(64px, 8vw, 120px) clamp(22px, 7vw, 96px);
  max-width: 820px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(64px, 9vw, 142px); letter-spacing: -.05em; }
h2 { font-size: clamp(42px, 5vw, 78px); letter-spacing: -.035em; }
h3 { font-size: clamp(28px, 3vw, 42px); letter-spacing: -.025em; }
.hero-definition { max-width: 760px; margin: 24px 0 0; font-size: clamp(19px, 2vw, 26px); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #16120a; }
.button-secondary { background: var(--white); color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }

.trust-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px clamp(18px, 4vw, 48px);
  background: #211c17;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.trust-strip span {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
}

.section-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 86px); align-items: end; margin-bottom: 42px; }
.section-heading.compact { display: block; max-width: 780px; text-align: center; }
.section-heading p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-dark .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.section-dark .card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.feature-video {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  align-items: center;
  gap: 0;
}
.feature-video video {
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.feature-caption { padding: 24px 28px 30px; }
.feature-caption p { margin: 10px 0 0; color: var(--muted); }

.split-profile { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(36px, 7vw, 96px); align-items: start; }
.split-profile > * { max-width: none; margin: 0; }
.profile-copy p { margin: 0 0 20px; font-size: 18px; color: #403b36; }
.section-dark .profile-copy p { color: rgba(255,255,255,.76); }

.performance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.card-copy { padding: 22px; }
.card-copy h3 { font-size: 32px; }
.card-copy p:not(.tag) { color: var(--muted); margin: 10px 0 0; font-size: 15px; }
.tag { margin: 0 0 10px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800; }

.project-list { display: grid; gap: 24px; }
.project-panel { display: grid; grid-template-columns: .86fr 1.14fr; gap: 24px; padding: clamp(18px, 3vw, 32px); align-items: center; }
.project-copy p:not(.tag) { color: var(--muted); }
.mini-reel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
}
.link-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.link-row a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  text-decoration: none;
}
.link-row a:hover { border-color: var(--gold); color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 18px; box-shadow: 0 14px 34px rgba(0,0,0,.15); }
.hero-media img,
.gallery-grid img {
  cursor: zoom-in;
  transition: transform .25s ease, filter .25s ease;
}
.hero-media img:hover,
.gallery-grid img:hover {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.02) contrast(1.05);
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(6, 6, 8, .86);
  backdrop-filter: blur(10px);
}
.image-lightbox.is-open { display: flex; }
.image-lightbox img {
  max-width: min(92vw, 760px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.gallery-grid img:nth-child(2), .gallery-grid img:nth-child(5) { margin-top: 32px; }

.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.press-card { padding: 30px; text-decoration: none; min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; }
.press-card span { color: var(--gold-dark); font-weight: 900; letter-spacing: .14em; font-size: 12px; }
.press-card p { color: var(--muted); margin: 12px 0 0; }
.press-card:hover h3 { color: var(--gold-dark); }

.booking-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(32px, 7vw, 92px); align-items: start; }
.booking-section > * { max-width: none; margin: 0; }
.booking-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); font-size: 18px; }
.small-note { font-size: 14px !important; color: rgba(255,255,255,.56) !important; }
.booking-form { padding: 28px; display: grid; gap: 16px; }
.booking-form label { display: grid; gap: 8px; font-weight: 700; color: var(--white); font-size: 14px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
}
.booking-form select option { color: var(--ink); }
.booking-form textarea { resize: vertical; }
.booking-form ::placeholder { color: rgba(255,255,255,.46); }
.booking-form .button { width: fit-content; border: 0; }

.site-footer {
  background: #070708;
  color: rgba(255,255,255,.72);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 48px);
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 1020px) {
  .hero, .split-profile, .project-panel, .booking-section, .feature-video { grid-template-columns: 1fr; }
  .hero-media { order: 0; min-height: auto; padding-top: 40px; padding-bottom: 18px; }
  .hero-media img { width: min(72vw, 390px); max-height: 58vh; }
  .performance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-video video { max-width: min(78vw, 420px); margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .section-heading { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; gap: 12px; }
  .main-nav { overflow-x: auto; width: 100%; padding-bottom: 4px; }
  .hero-content { padding-top: 36px; padding-bottom: 64px; }
  .hero-media { min-height: auto; }
  .hero-media img { width: min(76vw, 330px); max-height: 52vh; border-radius: 24px; }
  .performance-grid, .mini-reel, .press-grid { grid-template-columns: 1fr; }
  .video-card video, .mini-reel video { max-height: 72vh; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { display: block; }
}

/* Draft 3 refinements: vertical videos, breathing cards, unified media gallery. */
.feature-video {
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(18px, 3vw, 34px);
  align-items: center;
}
.feature-video .video-shell,
.feature-video > video {
  width: min(100%, 390px);
  justify-self: center;
}
.feature-caption { padding: clamp(12px, 3vw, 28px); }
.feature-caption h2 { font-size: clamp(42px, 5.2vw, 76px); }
.feature-caption .eyebrow { margin-bottom: 14px; }

.profile-intro-card {
  position: relative;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 54px);
  background-image: var(--profile-bg);
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow);
  isolation: isolate;
  color: var(--white);
}
.profile-intro-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  background-image: var(--profile-bg);
  background-size: cover;
  background-position: center top;
  filter: blur(3px) saturate(.98) brightness(.82);
  transform: scale(1.025);
  z-index: -2;
  transition: background-image .8s ease;
}
.profile-intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,.12), rgba(8,8,10,.70)),
    radial-gradient(circle at 70% 18%, rgba(201,164,90,.20), transparent 42%);
  z-index: -1;
}
.profile-title-overlay { max-width: 560px; }
.profile-title-overlay .eyebrow { color: var(--gold); }
.profile-title-overlay h2 { margin: 0; text-shadow: 0 18px 50px rgba(0,0,0,.45); }

.video-shell {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #050505;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}
.video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.video-card {
  border-radius: 32px;
  background: rgba(255,253,249,.86);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 30px 86px rgba(0,0,0,.22); }
.video-card .video-shell { margin: 14px 14px 0; border-radius: 24px; }
.performance-grid { align-items: start; gap: clamp(18px, 2.4vw, 30px); }
.performance-grid .video-card:nth-child(2),
.performance-grid .video-card:nth-child(4) { margin-top: 42px; }
.performance-grid .video-card:nth-child(3) { margin-top: 16px; }
.mini-reel { align-items: start; }
.mini-reel .video-shell { border-radius: 20px; box-shadow: 0 12px 36px rgba(0,0,0,.16); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; cursor: zoom-in; }
.project-panel { transition: transform .25s ease, box-shadow .25s ease; }
.project-panel:hover { transform: translateY(-3px); box-shadow: 0 30px 86px rgba(0,0,0,.18); }
.mini-reel .video-shell:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 66px rgba(0,0,0,.26); filter: saturate(1.04) contrast(1.04); }
.mini-reel .video-shell:nth-child(2) { margin-top: 26px; }
.mini-reel .video-shell:nth-child(3) { margin-top: 10px; }
.media-expand {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(10,10,12,.72);
  color: #fff;
  backdrop-filter: blur(10px);
  padding: 9px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  opacity: .94;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.media-expand:hover { opacity: 1; transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.hero-media img,
.gallery-grid img { cursor: zoom-in; }

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 58px);
  background: rgba(6,6,8,.88);
  backdrop-filter: blur(12px);
}
.media-lightbox.is-open { display: flex; }
.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 980px);
  max-height: 88vh;
}
.lightbox-stage img,
.lightbox-stage video {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
  background: #000;
}
.lightbox-stage video {
  width: auto;
  height: min(88vh, 860px);
  aspect-ratio: 9 / 16;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 68px;
  border-radius: 999px;
  font-size: 44px;
  line-height: 1;
}
.lightbox-prev { left: clamp(12px, 3vw, 34px); }
.lightbox-next { right: clamp(12px, 3vw, 34px); }
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .feature-video { grid-template-columns: 1fr; }
  .feature-video .video-shell,
  .feature-video > video { width: min(78vw, 390px); }
  .profile-intro-card { min-height: 520px; }
}
@media (max-width: 760px) {
  .performance-grid .video-card:nth-child(2),
  .performance-grid .video-card:nth-child(3),
  .performance-grid .video-card:nth-child(4),
  .mini-reel .video-shell:nth-child(2),
  .mini-reel .video-shell:nth-child(3) { margin-top: 0; }
  .video-card .video-shell { margin: 12px 12px 0; }
  .profile-intro-card { min-height: 440px; }
  .lightbox-stage video { height: min(82vh, 760px); }
  .lightbox-nav { width: 42px; height: 56px; font-size: 34px; }
}

/* Draft 5: overall scale reduced by approximately 30%, with softer profile blur. */
:root {
  --radius: 20px;
  --max: 920px;
  --shadow: 0 18px 56px rgba(0,0,0,.20);
}
body { font-size: 14px; line-height: 1.55; }
.site-header { padding: 12px clamp(14px, 3vw, 34px); }
.brand { font-size: clamp(20px, 2vw, 26px); }
.main-nav { gap: 16px; font-size: 12px; }
.section { padding: clamp(48px, 5.8vw, 88px) clamp(14px, 3vw, 34px); }
.hero { min-height: calc(82vh - 54px); grid-template-columns: minmax(0, 1.16fr) minmax(220px, .84fr); }
.hero-media { min-height: 450px; padding: clamp(22px, 4vw, 58px) clamp(14px, 4vw, 50px); }
.hero-media img {
  width: clamp(190px, 22vw, 300px);
  max-height: min(58vh, 500px);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.38);
}
.hero-media::after { filter: blur(26px); height: 28%; }
.hero-glow { width: 190px; height: 190px; filter: blur(48px); }
.hero-content { padding: clamp(44px, 5.8vw, 84px) clamp(18px, 5vw, 68px); max-width: 640px; }
.eyebrow { margin-bottom: 13px; font-size: 10px; letter-spacing: .16em; }
h1 { font-size: clamp(45px, 6.3vw, 99px); }
h2 { font-size: clamp(30px, 3.7vw, 55px); }
h3 { font-size: clamp(22px, 2.2vw, 31px); }
.hero-definition { max-width: 560px; margin-top: 16px; font-size: clamp(15px, 1.45vw, 19px); }
.hero-actions { gap: 10px; margin-top: 26px; }
.button { min-height: 40px; padding: 10px 15px; font-size: 13px; }
.trust-strip { gap: 8px; padding: 12px clamp(14px, 3vw, 34px); }
.trust-strip span { padding: 7px 11px; font-size: 11px; }
.section-heading { gap: clamp(22px, 4vw, 58px); margin-bottom: 30px; }
.section-heading.compact { max-width: 600px; }
.section-heading p:not(.eyebrow) { margin-top: 13px; font-size: 14px; }
.feature-video { grid-template-columns: minmax(190px, 285px) minmax(0, 1fr); gap: clamp(16px, 3vw, 38px); padding: clamp(13px, 2vw, 24px); }
.feature-video .video-shell,
.feature-video > video { width: min(100%, 285px); }
.feature-video video { max-height: 60vh; }
.feature-caption { padding: clamp(8px, 2vw, 20px); }
.feature-caption h2 { font-size: clamp(30px, 3.8vw, 54px); }
.feature-caption p { font-size: 14px; }
.split-profile { grid-template-columns: .78fr 1.22fr; gap: clamp(26px, 5vw, 68px); }
.profile-copy p { margin-bottom: 14px; font-size: 14px; }
.profile-intro-card {
  min-height: min(50vh, 435px);
  padding: clamp(18px, 3vw, 38px);
  border-radius: 20px;
}
.profile-intro-card::before { filter: blur(1.5px) saturate(.98) brightness(.84); transform: scale(1.015); }
.profile-title-overlay { max-width: 420px; }
.performance-grid { gap: clamp(13px, 1.7vw, 21px); }
.video-card { border-radius: 23px; }
.video-card .video-shell { margin: 10px 10px 0; border-radius: 17px; }
.video-shell { border-radius: 18px; box-shadow: 0 12px 36px rgba(0,0,0,.16); }
.card-copy { padding: 15px; }
.card-copy h3 { font-size: 23px; }
.card-copy p:not(.tag) { margin-top: 7px; font-size: 12px; }
.tag { margin-bottom: 7px; font-size: 9px; }
.performance-grid .video-card:nth-child(2),
.performance-grid .video-card:nth-child(4) { margin-top: 29px; }
.performance-grid .video-card:nth-child(3) { margin-top: 11px; }
.project-list { gap: 17px; }
.project-panel { gap: 17px; padding: clamp(13px, 2vw, 23px); }
.project-copy p:not(.tag) { font-size: 14px; }
.mini-reel { gap: 9px; }
.mini-reel .video-shell { border-radius: 15px; }
.mini-reel .video-shell:nth-child(2) { margin-top: 18px; }
.mini-reel .video-shell:nth-child(3) { margin-top: 7px; }
.media-expand { right: 9px; top: 9px; padding: 7px 10px; font-size: 10px; }
.gallery-grid { gap: 9px; }
.gallery-grid img { border-radius: 13px; box-shadow: 0 10px 24px rgba(0,0,0,.13); }
.gallery-grid img:nth-child(2), .gallery-grid img:nth-child(5) { margin-top: 22px; }
.press-grid { gap: 13px; }
.press-card { padding: 21px; min-height: 160px; }
.press-card p { font-size: 13px; }
.booking-section { gap: clamp(24px, 5vw, 64px); }
.booking-copy p:not(.eyebrow) { font-size: 14px; }
.booking-form { padding: 20px; gap: 12px; }
.booking-form label { gap: 6px; font-size: 12px; }
.booking-form input, .booking-form select, .booking-form textarea { border-radius: 12px; padding: 10px 11px; }
.site-footer { padding: 21px clamp(14px, 3vw, 34px); font-size: 13px; }

@media (max-width: 1020px) {
  .hero-media img { width: min(60vw, 285px); max-height: 48vh; }
  .feature-video .video-shell,
  .feature-video > video { width: min(68vw, 285px); }
  .profile-intro-card { min-height: 365px; }
}
@media (max-width: 760px) {
  .hero-content { padding-top: 28px; padding-bottom: 46px; }
  .hero-media img { width: min(68vw, 245px); max-height: 44vh; border-radius: 19px; }
  .profile-intro-card { min-height: 320px; }
  .video-card .video-shell { margin: 9px 9px 0; }
}

/* Draft 6: mobile-first refinements requested after real-file testing. */
.artist-profile {
  display: block;
}
.artist-profile > * {
  max-width: var(--max);
  margin-inline: auto;
}
.artist-profile .profile-intro-card {
  width: 100%;
  min-height: min(58vh, 520px);
  margin-bottom: clamp(20px, 3vw, 34px);
}
.artist-profile .profile-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3.5vw, 42px);
}
.artist-profile .profile-copy p {
  margin-bottom: 0;
}
.profile-intro-card::before {
  filter: blur(.75px) saturate(.98) brightness(.86);
  transform: scale(1.008);
}
.profile-intro-card::after {
  background:
    linear-gradient(180deg, rgba(8,8,10,.08), rgba(8,8,10,.64)),
    radial-gradient(circle at 70% 18%, rgba(201,164,90,.16), transparent 42%);
}

.project-media {
  position: relative;
  min-width: 0;
}
.project-carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 40px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(11,11,13,.72);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.project-carousel-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.project-carousel-prev { left: 8px; }
.project-carousel-next { right: 8px; }

@media (max-width: 1020px) {
  .artist-profile .profile-copy {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .hero {
    position: relative;
    min-height: auto;
    display: block;
    padding-top: 10px;
  }
  .hero-media {
    position: absolute;
    top: 52px;
    right: -34px;
    z-index: 0;
    width: min(58vw, 270px);
    min-height: 0;
    padding: 0;
    opacity: .72;
    pointer-events: auto;
  }
  .hero-media img {
    width: 100%;
    max-height: none;
    aspect-ratio: 3 / 4;
    border-radius: 22px 0 0 22px;
  }
  .hero-media::after,
  .hero-glow { display: none; }
  .hero-content {
    position: relative;
    z-index: 1;
    min-height: 640px;
    padding: 48px 18px 54px;
    max-width: none;
  }
  .hero-definition {
    max-width: min(68vw, 430px);
  }
  .hero-actions {
    max-width: 72vw;
  }

  .feature-video {
    display: grid;
    grid-template-columns: minmax(118px, 34%) 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
  }
  .feature-video .video-shell,
  .feature-video > video {
    width: 100%;
    max-width: 160px;
  }
  .feature-video video {
    max-height: 46vh;
  }
  .feature-caption {
    padding: 2px 4px 2px 0;
    min-width: 0;
  }
  .feature-caption h2 {
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: .96;
    letter-spacing: -.04em;
  }
  .feature-caption p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 8px;
  }
  .feature-caption .eyebrow {
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: 9px;
  }

  .artist-profile .profile-intro-card {
    min-height: 420px;
    width: calc(100vw - 28px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
    padding: 22px;
  }
  .artist-profile .profile-copy {
    display: block;
    max-width: none;
  }
  .artist-profile .profile-copy p + p {
    margin-top: 14px;
  }

  .project-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
  }
  .project-media {
    width: 100%;
  }
  .mini-reel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2px 44px 8px;
    -webkit-overflow-scrolling: touch;
  }
  .mini-reel::-webkit-scrollbar { display: none; }
  .mini-reel { scrollbar-width: none; }
  .mini-reel .video-shell {
    flex: 0 0 min(64vw, 250px);
    scroll-snap-align: center;
    margin-top: 0 !important;
  }
  .project-carousel-btn {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 430px) {
  .hero-media {
    right: -52px;
    width: 66vw;
    opacity: .64;
  }
  .hero-content {
    min-height: 620px;
  }
  .hero-definition,
  .hero-actions {
    max-width: 76vw;
  }
  .button {
    min-height: 38px;
    padding: 9px 12px;
  }
  .feature-video {
    grid-template-columns: 112px 1fr;
  }
  .feature-video .video-shell,
  .feature-video > video {
    max-width: 112px;
  }
  .feature-caption h2 {
    font-size: 27px;
  }
  .feature-caption p:not(.eyebrow) {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Draft 7: desktop editorial tightening, overlap cards, performance carousel, new focus areas. */
:root { --radius-lg: 28px; }

@media (min-width: 1021px) {
  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(260px, .78fr);
    max-width: 1120px;
    min-height: auto;
    margin: 52px auto 46px;
    border-radius: 34px;
    overflow: visible;
    position: relative;
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.12);
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    margin-right: -72px;
    padding: clamp(42px, 5vw, 72px);
    max-width: 700px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15,15,18,.86), rgba(32,25,20,.72));
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
  }
  .hero-media {
    min-height: 520px;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 54px;
  }
  .hero-media img {
    width: clamp(240px, 25vw, 340px);
    max-height: 560px;
    transform: translateX(-18px) rotate(.6deg);
  }

  .artist-profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
    margin-inline: auto;
  }
  .artist-profile > * { max-width: none; }
  .artist-profile .profile-intro-card {
    width: 100%;
    min-height: 430px;
    align-items: flex-start;
    padding: 42px;
  }
  .artist-profile .profile-title-overlay {
    max-width: 580px;
    padding: 24px 26px;
    border-radius: 22px;
    background: rgba(12,12,14,.46);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(6px);
  }
  .artist-profile .profile-copy {
    position: relative;
    z-index: 2;
    width: min(690px, 76%);
    margin: -92px 42px 0 auto;
    padding: 28px 32px 12px;
    border-radius: 24px;
    background: rgba(255,253,249,.92);
    box-shadow: 0 26px 70px rgba(0,0,0,.20);
    border: 1px solid rgba(23,20,20,.08);
    backdrop-filter: blur(8px);
  }
}

.profile-intro-card::before { filter: blur(.75px) saturate(.98) brightness(.86); }
.profile-intro-card::after {
  background:
    linear-gradient(180deg, rgba(8,8,10,.10), rgba(8,8,10,.58)),
    radial-gradient(circle at 70% 18%, rgba(201,164,90,.18), transparent 42%);
}

.performance-showcase .section-heading.compact { max-width: 680px; }
.carousel-frame {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 8px 34px;
  scrollbar-width: thin;
}
.carousel-track .carousel-item {
  flex: 0 0 clamp(210px, 24vw, 270px);
  scroll-snap-align: center;
}
.carousel-arrow {
  position: absolute;
  z-index: 10;
  top: 41%;
  transform: translateY(-50%);
  width: 42px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(23,20,20,.12);
  background: rgba(255,253,249,.88);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover { color: var(--gold-dark); transform: translateY(-50%) scale(1.04); }
.carousel-prev { left: -14px; }
.carousel-next { right: -14px; }
.performance-showcase .performance-grid .video-card:nth-child(2),
.performance-showcase .performance-grid .video-card:nth-child(3),
.performance-showcase .performance-grid .video-card:nth-child(4) { margin-top: 0; }

.focus-areas .project-panel {
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  position: relative;
  overflow: visible;
}
.focus-areas .project-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(var(--gold), rgba(201,164,90,.20));
}
.focus-areas .project-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-right: -34px;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255,253,249,.88);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
  border: 1px solid rgba(23,20,20,.06);
  backdrop-filter: blur(8px);
}
.focus-areas .mini-reel { padding-left: 30px; }

@media (max-width: 1020px) {
  .artist-profile .profile-copy {
    max-width: var(--max);
    margin-top: -48px;
    padding: 22px 22px 8px;
    border-radius: 20px;
    background: rgba(255,253,249,.94);
    box-shadow: 0 18px 52px rgba(0,0,0,.16);
    position: relative;
    z-index: 2;
  }
  .profile-copy p { color: #403b36; }
  .carousel-track .carousel-item { flex-basis: min(72vw, 300px); }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .focus-areas .project-panel { grid-template-columns: 1fr; }
  .focus-areas .project-copy { margin-right: 0; }
  .focus-areas .mini-reel { padding-left: 0; }
}

@media (max-width: 760px) {
  .hero { margin-top: 0; }
  .artist-profile .profile-title-overlay {
    padding: 18px;
    border-radius: 18px;
    background: rgba(12,12,14,.44);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(4px);
  }
  .carousel-track { padding-inline: 18px; }
  .carousel-arrow { width: 38px; height: 50px; font-size: 30px; }
}

/* Draft 8: refined desktop composition, program windows and embedded horizontal video sections. */
html { scroll-behavior: smooth; }
* { scrollbar-width: none; }
*::-webkit-scrollbar { display: none; }

.trust-strip-readable {
  justify-content: center;
  gap: 12px;
  padding-block: 18px;
  background: linear-gradient(90deg, rgba(255,253,249,.72), rgba(242,235,224,.92), rgba(255,253,249,.72));
}
.trust-strip-readable span {
  font-size: clamp(12px, 1.1vw, 15px) !important;
  letter-spacing: .04em;
  padding: 10px 16px !important;
  border-color: rgba(114,90,44,.22);
  background: rgba(255,255,255,.58);
  color: #39332c;
}

@media (min-width: 1021px) {
  .hero-content {
    margin-right: -44px;
    background: linear-gradient(90deg, rgba(12,12,15,.88) 0%, rgba(18,17,18,.76) 56%, rgba(18,17,18,.20) 100%);
    border-color: rgba(255,255,255,.11);
    box-shadow: 0 22px 68px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
  }
  .hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 140px;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,17,18,.34), rgba(18,17,18,0));
    pointer-events: none;
  }
  .hero-media img { transform: translateX(-4px) rotate(.45deg); }
}

.magic-showreel .feature-caption h2 {
  letter-spacing: -.045em;
}
.magic-showreel .feature-caption p:not(.eyebrow) {
  max-width: 52ch;
}

.artist-profile .profile-intro-card {
  display: flex;
  align-items: flex-start !important;
}
.artist-profile .profile-title-overlay.top-overlay {
  margin-top: 0;
  max-width: min(620px, 86%);
  background: linear-gradient(90deg, rgba(10,10,12,.66), rgba(10,10,12,.32), rgba(10,10,12,0));
  border-color: rgba(255,255,255,.10);
  backdrop-filter: blur(3px);
}
.profile-intro-card::before { filter: blur(.35px) saturate(1.01) brightness(.88) !important; transform: scale(1.004) !important; }

.performance-showcase .section-heading.compact h2 { letter-spacing: -.035em; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1120px;
  margin-inline: auto;
}
.program-card {
  overflow: hidden;
  border-radius: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 26px 72px rgba(0,0,0,.18); }
.program-media {
  position: relative;
  padding: 10px 10px 0;
}
.program-media .video-shell {
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.program-card:hover .program-media .video-shell { transform: scale(1.015); filter: saturate(1.04) contrast(1.03); }
.program-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.program-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.44);
  background: rgba(10,10,12,.58);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.program-arrow:hover { color: var(--gold); border-color: var(--gold); background: rgba(10,10,12,.75); }
.program-arrow.prev, .youtube-prev { left: 16px; }
.program-arrow.next, .youtube-next { right: 16px; }
.program-card .card-copy h3 { font-size: clamp(20px, 1.65vw, 26px); }
.program-card .card-copy p:not(.tag) { font-size: 12px; }

.focus-areas .section-heading.compact { max-width: 720px; }
.horizontal-video-panel {
  grid-template-columns: minmax(250px, .78fr) minmax(420px, 1.22fr) !important;
  align-items: center;
  overflow: hidden !important;
}
.horizontal-video-panel .project-copy {
  margin-right: -28px;
  z-index: 4;
}
.youtube-window {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0b0d;
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
}
.youtube-window iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-window .program-arrow { top: 50%; }
.video-count {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 13;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,10,12,.66);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.media-expand {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.video-shell:hover .media-expand { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .horizontal-video-panel { grid-template-columns: 1fr !important; }
  .horizontal-video-panel .project-copy { margin-right: 0; }
  .youtube-window { min-height: 0; }
}

@media (max-width: 760px) {
  .trust-strip-readable { justify-content: flex-start; overflow: hidden; padding: 12px 14px; }
  .trust-strip-readable span { font-size: 11px !important; padding: 8px 12px !important; }
  .hero-content::after { display: none; }
  .program-grid { grid-template-columns: 1fr; max-width: 330px; gap: 18px; }
  .program-arrow { width: 34px; height: 44px; font-size: 28px; }
  .program-arrow.prev, .youtube-prev { left: 12px; }
  .program-arrow.next, .youtube-next { right: 12px; }
  .artist-profile .profile-title-overlay.top-overlay { max-width: 92%; padding: 18px 20px; }
  .youtube-window { border-radius: 18px; }
}

/* Draft 9: autoplay on slider click, clearer typography, composer videos moved under Beyond performance. */
:root { --max: 1220px; }

/* Make section markers readable as real subheads, not tiny draft labels. */
.eyebrow {
  font-size: clamp(13px, 1.05vw, 16px) !important;
  letter-spacing: .13em !important;
  line-height: 1.45;
}
.hero .eyebrow,
.section-heading .eyebrow,
.booking-copy .eyebrow,
.profile-title-overlay .eyebrow {
  font-size: clamp(14px, 1.12vw, 17px) !important;
}

/* Slightly larger text rhythm across content blocks. */
.hero-definition,
.feature-caption p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.profile-copy p,
.project-copy p:not(.tag),
.card-copy p:not(.tag),
.press-card p,
.booking-copy p:not(.eyebrow) {
  font-size: clamp(16px, 1.22vw, 20px) !important;
  line-height: 1.68;
}
.project-copy .tag,
.card-copy .tag {
  font-size: clamp(12px, .92vw, 14px) !important;
}

/* Keep the main program cards compact even with larger text. */
.program-card .card-copy h3 { font-size: clamp(22px, 1.8vw, 30px) !important; }
.program-card .card-copy p:not(.tag) { font-size: clamp(14px, 1vw, 16px) !important; }

/* Beyond performance should visually match the Creative range block. */
.composer-range { padding-top: clamp(70px, 8vw, 124px); }
.composer-heading {
  max-width: 820px !important;
  text-align: center;
  margin-bottom: 20px !important;
}
.composer-heading p:not(.eyebrow) {
  color: rgba(255,255,255,.76) !important;
}
.composer-links {
  justify-content: center;
  margin: 0 auto clamp(30px, 5vw, 58px) !important;
  max-width: 860px;
}
.composer-video-list {
  max-width: var(--max);
}
.composer-video-list .project-panel {
  background: rgba(255,253,249,.95);
}
.composer-video-list .project-copy p:not(.tag) { color: var(--muted); }

/* Embedded horizontal videos: one large window, no visible scrollbars, immediate-interest controls. */
.youtube-window {
  overflow: hidden;
}
.youtube-window iframe {
  background: #050505;
}
.video-count {
  font-size: 12px;
}

/* Booking form status. */
.form-status {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  min-height: 1.4em;
}

@media (max-width: 760px) {
  .eyebrow,
  .hero .eyebrow,
  .section-heading .eyebrow,
  .booking-copy .eyebrow,
  .profile-title-overlay .eyebrow {
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }
  .hero-definition,
  .feature-caption p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .profile-copy p,
  .project-copy p:not(.tag),
  .card-copy p:not(.tag),
  .press-card p,
  .booking-copy p:not(.eyebrow) {
    font-size: 15px !important;
  }
}

/* Draft 10: softer editorial glass, taller profile image, unified video cards. */
:root {
  --glass-light: rgba(255,253,249,.72);
  --glass-light-strong: rgba(255,253,249,.84);
  --glass-dark: rgba(10,10,12,.48);
}

@media (min-width: 1021px) {
  .hero-content {
    margin-right: -30px !important;
    background: linear-gradient(90deg, rgba(12,12,15,.68) 0%, rgba(18,17,18,.46) 58%, rgba(18,17,18,.04) 100%) !important;
    backdrop-filter: blur(9px) saturate(1.05) !important;
    border-color: rgba(255,255,255,.08) !important;
    box-shadow: 0 22px 76px rgba(0,0,0,.18) !important;
  }
  .hero-content::after {
    right: -150px !important;
    width: 190px !important;
    background: linear-gradient(90deg, rgba(18,17,18,.22), rgba(18,17,18,0)) !important;
  }
}

.artist-profile .profile-intro-card {
  min-height: clamp(520px, 56vw, 760px) !important;
  margin-bottom: 0 !important;
  border-radius: 34px;
  overflow: hidden;
}
.artist-profile .profile-title-overlay.top-overlay {
  background: linear-gradient(90deg, rgba(10,10,12,.52), rgba(10,10,12,.25), rgba(10,10,12,0)) !important;
  backdrop-filter: blur(1.5px) saturate(1.08) !important;
  border-color: rgba(255,255,255,.08) !important;
  box-shadow: 0 16px 52px rgba(0,0,0,.18);
}
.profile-intro-card::before {
  filter: blur(.18px) saturate(1.02) brightness(.9) !important;
}
.artist-profile .profile-copy {
  position: relative;
  z-index: 5;
  max-width: min(1060px, calc(100% - 52px));
  margin-top: clamp(-132px, -8vw, -76px) !important;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,253,249,.82), rgba(255,253,249,.62));
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 24px 72px rgba(0,0,0,.18);
  backdrop-filter: blur(10px) saturate(1.05);
}
.artist-profile .profile-copy p {
  color: rgba(23,20,20,.86) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.22);
}

/* Use the same glass language in a few important text blocks, not everywhere. */
.glass-heading,
.focus-areas .project-copy,
.composer-video-list .project-copy,
.booking-copy {
  background: linear-gradient(135deg, rgba(255,253,249,.88), rgba(255,253,249,.66)) !important;
  border: 1px solid rgba(255,255,255,.48) !important;
  box-shadow: 0 20px 56px rgba(0,0,0,.12) !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
}

.composer-range {
  background:
    radial-gradient(circle at 20% 0%, rgba(201,164,90,.16), transparent 34%),
    linear-gradient(135deg, #f8f1e8 0%, #efe3d4 55%, #f8f1e8 100%) !important;
  color: var(--ink) !important;
}
.composer-heading {
  padding: clamp(24px, 3.2vw, 42px);
  border-radius: 30px;
}
.composer-heading .eyebrow { color: var(--gold-dark) !important; }
.composer-heading h2,
.composer-heading p:not(.eyebrow) { color: var(--ink) !important; }
.composer-heading p:not(.eyebrow) { opacity: .78; }
.composer-links a {
  color: var(--ink) !important;
  border-color: rgba(23,20,20,.18) !important;
  background: rgba(255,253,249,.54);
}
.composer-links a:hover {
  color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}
.composer-video-list .project-panel {
  background: rgba(255,253,249,.9) !important;
  border: 1px solid rgba(23,20,20,.06);
  box-shadow: 0 24px 72px rgba(0,0,0,.12);
}
.composer-video-list .project-copy h3,
.composer-video-list .project-copy p,
.composer-video-list .project-copy .tag,
.composer-range .project-copy h3,
.composer-range .project-copy p,
.composer-range .project-copy .tag {
  color: var(--ink) !important;
}
.composer-video-list .project-copy .tag { color: var(--gold-dark) !important; }
.composer-video-list .project-copy p:not(.tag) { color: rgba(23,20,20,.68) !important; }

.horizontal-video-panel {
  background: rgba(255,253,249,.92) !important;
  border: 1px solid rgba(23,20,20,.06);
  box-shadow: 0 24px 72px rgba(0,0,0,.12);
}
.horizontal-video-panel .project-copy h3 { color: var(--ink); }

@media (max-width: 1020px) {
  .artist-profile .profile-intro-card { min-height: clamp(420px, 74vw, 620px) !important; }
  .artist-profile .profile-copy {
    max-width: min(720px, calc(100% - 28px));
    margin-top: -68px !important;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .artist-profile .profile-intro-card { min-height: 420px !important; border-radius: 24px; }
  .artist-profile .profile-copy {
    margin-top: -54px !important;
    padding: 20px;
    border-radius: 22px;
  }
  .composer-heading { border-radius: 22px; }
}

/* Draft 11: tighter spacing, calmer glass, unified performance/composer sections, better contrast. */
.trust-strip-readable {
  margin-bottom: clamp(22px, 3.2vw, 42px) !important;
}
.section-featured {
  padding-top: clamp(18px, 3vw, 36px) !important;
  padding-bottom: clamp(32px, 4.2vw, 58px) !important;
}
.artist-profile {
  padding-top: clamp(34px, 4.5vw, 64px) !important;
}
.artist-profile .profile-title-overlay.top-overlay {
  background: linear-gradient(90deg, rgba(10,10,12,.64), rgba(10,10,12,.36), rgba(10,10,12,.08)) !important;
  backdrop-filter: blur(2.8px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(2.8px) saturate(1.08) !important;
}
.artist-profile .profile-intro-card {
  min-height: clamp(560px, 58vw, 790px) !important;
}
.artist-profile .profile-copy {
  margin-top: clamp(-190px, -12vw, -118px) !important;
  background: linear-gradient(135deg, rgba(255,253,249,.80), rgba(255,253,249,.58)) !important;
  backdrop-filter: blur(13px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(13px) saturate(1.06) !important;
}
.artist-profile .profile-copy p {
  font-size: clamp(16px, 1.18vw, 19px) !important;
  line-height: 1.78 !important;
}

/* Make Beyond performance follow the same structural language as Creative range, with a warmer palette. */
.composer-range {
  background:
    radial-gradient(circle at 82% 8%, rgba(201,164,90,.12), transparent 36%),
    linear-gradient(135deg, #fbf7ef 0%, #f4eadf 48%, #faf4ec 100%) !important;
  color: var(--ink) !important;
}
.composer-range .composer-heading {
  background: linear-gradient(135deg, rgba(255,253,249,.86), rgba(255,253,249,.62)) !important;
  border: 1px solid rgba(23,20,20,.08) !important;
  box-shadow: 0 22px 64px rgba(70,45,25,.10) !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.05) !important;
}
.composer-video-list .project-panel,
.composer-video-list .horizontal-video-panel {
  background: linear-gradient(135deg, rgba(255,253,249,.90), rgba(255,253,249,.70)) !important;
  border: 1px solid rgba(23,20,20,.07) !important;
  box-shadow: 0 24px 72px rgba(70,45,25,.12) !important;
}
.composer-video-list .project-copy,
.focus-areas .project-copy {
  background: linear-gradient(135deg, rgba(255,253,249,.72), rgba(255,253,249,.50)) !important;
  backdrop-filter: blur(9px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(9px) saturate(1.05) !important;
}
.composer-video-list .project-copy h3,
.composer-video-list .project-copy p,
.composer-video-list .project-copy .tag {
  color: var(--ink) !important;
  text-shadow: none !important;
}
.composer-video-list .project-copy .tag { color: var(--gold-dark) !important; }
.composer-video-list .project-copy p:not(.tag) { color: rgba(23,20,20,.70) !important; }

/* Restore contrast in Contact / Booking. */
.booking-section .booking-copy {
  background: linear-gradient(135deg, rgba(8,8,10,.58), rgba(8,8,10,.36)) !important;
  border-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 24px 72px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(10px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.06) !important;
}
.booking-section .booking-copy h2,
.booking-section .booking-copy p,
.booking-section .booking-copy .small-note {
  color: rgba(255,255,255,.86) !important;
}
.booking-section .booking-copy .eyebrow { color: var(--gold) !important; }

@media (max-width: 1020px) {
  .section-featured { padding-bottom: 34px !important; }
  .artist-profile { padding-top: 36px !important; }
  .artist-profile .profile-intro-card { min-height: clamp(460px, 76vw, 650px) !important; }
  .artist-profile .profile-copy { margin-top: -96px !important; }
}
@media (max-width: 760px) {
  .trust-strip-readable { margin-bottom: 18px !important; }
  .section-featured { padding-top: 14px !important; padding-bottom: 26px !important; }
  .artist-profile { padding-top: 28px !important; }
  .artist-profile .profile-intro-card { min-height: 430px !important; }
  .artist-profile .profile-copy { margin-top: -78px !important; }
}

/* Draft 12: mobile showreel card, counters, glass controls, unified range sections. */

/* Mobile: Featured showreel should feel like the four program windows, not like a squeezed split block. */
@media (max-width: 760px) {
  .magic-showreel.feature-video {
    max-width: 330px;
    margin-inline: auto;
    display: block !important;
    padding: 10px !important;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 24px 72px rgba(0,0,0,.18);
  }
  .magic-showreel.feature-video .video-shell,
  .magic-showreel.feature-video > video {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 !important;
  }
  .magic-showreel.feature-video video {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
  }
  .magic-showreel .feature-caption {
    padding: 18px 14px 16px !important;
    text-align: left;
  }
  .magic-showreel .feature-caption h2 {
    font-size: clamp(31px, 10vw, 40px) !important;
    line-height: .98;
  }
  .magic-showreel .feature-caption p:not(.eyebrow) {
    font-size: 14px !important;
    line-height: 1.55;
  }
}

/* More visible, glass-like View Large button. */
.media-expand {
  right: 12px !important;
  top: 12px !important;
  padding: 11px 15px !important;
  min-height: 38px;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.46) !important;
  background: rgba(255,253,249,.16) !important;
  color: rgba(255,255,255,.96) !important;
  font-size: clamp(12px, .9vw, 14px) !important;
  letter-spacing: .02em;
  box-shadow: 0 12px 32px rgba(0,0,0,.24) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}
.media-expand:hover {
  background: rgba(255,253,249,.24) !important;
  color: var(--gold) !important;
  border-color: rgba(201,164,90,.78) !important;
}

/* Local vertical program counters: same visual language as YouTube counters. */
.program-media .video-count {
  right: 18px;
  bottom: 14px;
}

/* Remove the unwanted brown vertical stripe in the Creative range cards. */
.focus-areas .project-panel::before { display: none !important; }

/* Make Beyond performance structurally match Creative range, with only a warmer background. */
.composer-range {
  background:
    radial-gradient(circle at 86% 8%, rgba(201,164,90,.11), transparent 34%),
    linear-gradient(135deg, #f7efe3 0%, #efe0cf 52%, #f8f1e8 100%) !important;
}
.composer-range .composer-heading {
  max-width: 720px !important;
  text-align: center;
  padding: 0 !important;
  margin-bottom: 42px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.composer-range .composer-heading p:not(.eyebrow) {
  color: var(--muted) !important;
  opacity: 1 !important;
}
.composer-range .link-row.composer-links {
  margin-top: -22px !important;
}
.composer-video-list .project-panel,
.composer-video-list .horizontal-video-panel {
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr) !important;
  position: relative;
  overflow: visible !important;
  background: rgba(255,253,249,.92) !important;
  border: 1px solid rgba(23,20,20,.06) !important;
  box-shadow: 0 24px 72px rgba(70,45,25,.12) !important;
  border-radius: var(--radius) !important;
}
.composer-video-list .project-copy,
.composer-range .project-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-right: -34px !important;
  padding: 24px 26px !important;
  border-radius: 22px !important;
  background: rgba(255,253,249,.84) !important;
  box-shadow: 0 18px 48px rgba(70,45,25,.11) !important;
  border: 1px solid rgba(23,20,20,.06) !important;
  backdrop-filter: blur(8px) saturate(1.04) !important;
  -webkit-backdrop-filter: blur(8px) saturate(1.04) !important;
}
.composer-video-list .project-copy h3,
.composer-range .project-copy h3 {
  color: var(--ink) !important;
}
.composer-video-list .project-copy p:not(.tag),
.composer-range .project-copy p:not(.tag) {
  color: var(--muted) !important;
  margin-top: 12px;
}
.composer-video-list .project-copy .tag,
.composer-range .project-copy .tag {
  color: var(--gold-dark) !important;
}
@media (max-width: 1020px) {
  .composer-video-list .project-panel,
  .composer-video-list .horizontal-video-panel {
    grid-template-columns: 1fr !important;
    overflow: hidden !important;
  }
  .composer-video-list .project-copy,
  .composer-range .project-copy {
    margin-right: 0 !important;
  }
}

/* Draft 13: cleaner desktop composition, local video controls, unified range sections. */

/* Trust strip removed from markup; keep hidden as fallback if an older index is used. */
.trust-strip,
.trust-strip-readable { display: none !important; }

@media (min-width: 1021px) {
  /* More even and calmer vertical rhythm across desktop sections. */
  .section {
    padding-top: clamp(42px, 4.2vw, 68px) !important;
    padding-bottom: clamp(54px, 5.2vw, 86px) !important;
  }
  .section-featured {
    padding-top: clamp(38px, 4vw, 60px) !important;
    padding-bottom: clamp(42px, 4.2vw, 66px) !important;
  }
  .artist-profile,
  .performance-showcase,
  .focus-areas,
  .composer-range,
  .gallery-section,
  #press-kit,
  .booking-section {
    padding-top: clamp(42px, 4.2vw, 68px) !important;
  }

  /* Align the hero text area visually with the following content width. */
  .hero-content {
    padding-left: max(48px, calc((100vw - var(--max)) / 2 + 24px)) !important;
  }
}

/* Larger section labels such as Selected performances / Creative range / Press kit. */
.section-heading .eyebrow,
.booking-copy .eyebrow,
.profile-title-overlay .eyebrow,
.hero .eyebrow {
  font-size: clamp(16px, 1.35vw, 21px) !important;
  letter-spacing: .115em !important;
}

/* Local video windows: reserve a clean top band for the video subtitle. */
.program-media {
  padding: 14px 14px 0 !important;
}
.program-topline {
  min-height: 2.6em;
  display: flex;
  align-items: center;
  padding: 0 8px 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: clamp(12px, .92vw, 14px);
  line-height: 1.25;
}
.program-media .video-shell {
  margin-top: 0 !important;
}
.program-card .card-copy {
  padding-top: 18px !important;
}
.program-card .card-copy .tag { display: none !important; }

/* Same round play/pause overlay for local video windows on desktop and mobile. */
.video-shell .media-play-toggle {
  position: absolute;
  z-index: 14;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 4.7vw, 72px);
  height: clamp(54px, 4.7vw, 72px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.50);
  background: rgba(10,10,12,.42);
  color: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1;
  transition: transform .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease;
}
.video-shell .media-play-toggle:hover {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(201,164,90,.86);
  background: rgba(10,10,12,.58);
  color: var(--gold);
}
.video-shell .media-play-toggle .pause-icon { display: none; font-size: .82em; letter-spacing: -.12em; }
.video-shell.is-playing .media-play-toggle .play-icon { display: none; }
.video-shell.is-playing .media-play-toggle .pause-icon { display: inline; }
.video-shell.is-playing .media-play-toggle { opacity: .22; }
.video-shell:hover .media-play-toggle,
.video-shell:focus-within .media-play-toggle { opacity: 1; }

/* Keep View Large readable but secondary to the play button. */
.media-expand {
  min-height: 42px !important;
  padding: 12px 17px !important;
  background: rgba(10,10,12,.34) !important;
}

/* Mobile showreel gets the same top-band logic as local video windows; desktop remains unchanged. */
@media (max-width: 760px) {
  .magic-showreel.feature-video::before {
    content: attr(data-mobile-subtitle);
    min-height: 2.6em;
    display: flex;
    align-items: center;
    padding: 4px 10px 10px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.25;
  }
  .magic-showreel .feature-caption .eyebrow { display: none !important; }
}

/* Beyond performance: clone Creative range structure, only with a warmer surface. */
.composer-range {
  background:
    radial-gradient(circle at 88% 10%, rgba(201,164,90,.10), transparent 36%),
    linear-gradient(135deg, #f6eddf 0%, #efe1cf 52%, #f8f1e8 100%) !important;
}
.composer-range .composer-heading {
  max-width: 720px !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 auto 42px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.composer-range .composer-heading .eyebrow { color: var(--gold-dark) !important; }
.composer-range .composer-heading h2 { color: var(--ink) !important; }
.composer-range .composer-heading p:not(.eyebrow) {
  color: var(--muted) !important;
  opacity: 1 !important;
}
.composer-video-list .project-panel,
.composer-video-list .horizontal-video-panel {
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr) !important;
  position: relative !important;
  overflow: visible !important;
  border-radius: var(--radius) !important;
  background: rgba(255,253,249,.92) !important;
  border: 1px solid rgba(23,20,20,.06) !important;
  box-shadow: 0 24px 72px rgba(70,45,25,.12) !important;
}
.composer-video-list .project-copy,
.composer-range .project-copy {
  position: relative !important;
  z-index: 2 !important;
  align-self: center !important;
  margin-right: -34px !important;
  padding: 24px 26px !important;
  border-radius: 22px !important;
  background: rgba(255,253,249,.88) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.10) !important;
  border: 1px solid rgba(23,20,20,.06) !important;
  backdrop-filter: blur(8px) saturate(1.04) !important;
  -webkit-backdrop-filter: blur(8px) saturate(1.04) !important;
}
.composer-video-list .project-copy h3,
.composer-range .project-copy h3 { color: var(--ink) !important; }
.composer-video-list .project-copy .tag,
.composer-range .project-copy .tag { color: var(--gold-dark) !important; }
.composer-video-list .project-copy p:not(.tag),
.composer-range .project-copy p:not(.tag) {
  color: var(--muted) !important;
  margin-top: 12px !important;
}
.focus-areas .project-panel::before,
.composer-video-list .project-panel::before { display: none !important; }

@media (max-width: 1020px) {
  .composer-video-list .project-panel,
  .composer-video-list .horizontal-video-panel {
    grid-template-columns: 1fr !important;
    overflow: hidden !important;
  }
  .composer-video-list .project-copy,
  .composer-range .project-copy {
    margin-right: 0 !important;
  }
}

/* External professional links now live in Contact / Booking. */
.booking-links {
  margin-top: 24px !important;
  gap: 10px !important;
}
.booking-links a {
  color: rgba(255,255,255,.90) !important;
  border-color: rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking-links a:hover {
  color: var(--gold) !important;
  border-color: rgba(201,164,90,.7) !important;
}
.program-media .program-arrow { top: calc(50% + 1.3em) !important; }


/* Draft 14: revert over-tight hero width, simplify local video controls, one-line toplines, icon links. */

@media (min-width: 1021px) {
  /* Restore the editorial hero composition from the previous good state. */
  .hero-content {
    padding: clamp(64px, 8vw, 120px) clamp(22px, 7vw, 96px) !important;
    max-width: 820px !important;
    margin-right: -44px !important;
  }
  /* The showreel block was the wide one; make it slightly calmer. */
  .section-featured > .feature-video {
    max-width: 1040px !important;
  }
}

/* Remove the experimental round play/pause overlay. Native controls remain. */
.video-shell .media-play-toggle { display: none !important; }

/* Local video windows: one clean title line, not a two-line reserved band. */
.program-media {
  padding: 11px 11px 0 !important;
}
.program-topline {
  min-height: 1.35em !important;
  padding: 0 8px 8px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(11px, .9vw, 13px) !important;
  line-height: 1.15 !important;
  letter-spacing: .105em !important;
}
.program-media .program-arrow { top: calc(50% + .7em) !important; }

@media (max-width: 760px) {
  .magic-showreel.feature-video::before {
    min-height: 1.35em !important;
    padding: 0 10px 8px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15 !important;
  }
}

/* Contact links as compact icon badges rather than long text buttons. */
.booking-links.icon-links {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px !important;
}
.booking-links.icon-links .icon-link {
  width: 48px;
  height: 48px;
  min-height: 0;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 14px;
}
.booking-links.icon-links .icon-youtube span { transform: translateX(1px); font-size: 18px; }
.booking-links.icon-links .icon-soundcloud span { font-size: 22px; transform: translateY(-1px); }
.booking-links.icon-links .icon-dzyga span { font-family: "Cormorant Garamond", serif; font-size: 24px; }
.booking-links.icon-links .icon-imdb span { font-size: 11px; letter-spacing: -.04em; }

/* Keep section spacing consistent after the hero revert. */
@media (min-width: 1021px) {
  .section { padding-top: clamp(42px, 4.2vw, 68px) !important; }
}

/* Draft 15: wider showreel, clearer professional badges, subtle golden hero motion. */

@media (min-width: 1021px) {
  .section-featured > .feature-video {
    max-width: 1120px !important;
  }
}

/* Subtle premium movement in the dark hero background: stage glow, not decoration. */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}
.hero::before {
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  right: -12vw;
  top: 8%;
  background: radial-gradient(circle, rgba(224,184,96,.18) 0%, rgba(224,184,96,.08) 34%, transparent 68%);
  filter: blur(18px);
  animation: heroGoldDrift 15s ease-in-out infinite alternate;
}
.hero::after {
  width: min(34vw, 480px);
  height: min(34vw, 480px);
  left: 7%;
  bottom: -15%;
  background: radial-gradient(circle, rgba(255,219,140,.09) 0%, rgba(201,164,90,.06) 38%, transparent 72%);
  filter: blur(22px);
  animation: heroGoldBreath 18s ease-in-out infinite alternate;
}
.hero-media,
.hero-content {
  position: relative;
  z-index: 2;
}
@keyframes heroGoldDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .72; }
  to { transform: translate3d(-5vw, 4vh, 0) scale(1.12); opacity: .95; }
}
@keyframes heroGoldBreath {
  from { transform: translate3d(0, 0, 0) scale(.95); opacity: .45; }
  to { transform: translate3d(4vw, -2vh, 0) scale(1.12); opacity: .78; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after { animation: none !important; }
}

/* Professional links: readable oval badges rather than tiny icon-only dots. */
.booking-links.icon-links {
  margin: 2px 0 24px !important;
  gap: 10px 12px !important;
}
.booking-links.icon-links .icon-link {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 38px !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,.92) !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(11px) saturate(1.08);
  -webkit-backdrop-filter: blur(11px) saturate(1.08);
}
.booking-links.icon-links .icon-link span {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: inherit !important;
  transform: none !important;
  letter-spacing: inherit !important;
  white-space: nowrap;
}
.booking-links.icon-links .icon-imdb { color: #ffe18a !important; }
.booking-links.icon-links .icon-youtube { color: #ffb7b7 !important; }
.booking-links.icon-links .icon-soundcloud { color: #ffd1a0 !important; }
.booking-links.icon-links .icon-dzyga { color: #f4dfb4 !important; }
.booking-links.icon-links .icon-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(201,164,90,.75) !important;
}
@media (max-width: 760px) {
  .booking-links.icon-links {
    justify-content: flex-start;
    margin-bottom: 20px !important;
  }
  .booking-links.icon-links .icon-link {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
  }
}

/* Draft 16: larger link badges, visible moving gold stage light, capability marquee. */
.booking-links.icon-links {
  margin: 4px 0 26px !important;
  gap: 12px 14px !important;
}
.booking-links.icon-links .icon-link {
  min-height: 46px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: .045em !important;
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(255,255,255,.30) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.18);
}
.booking-links.icon-links .icon-link span { font-size: inherit !important; }
@media (max-width: 760px) {
  .booking-links.icon-links .icon-link {
    min-height: 42px !important;
    padding: 10px 15px !important;
    font-size: 12.5px !important;
  }
}

/* Moving capability strip: instruments and roles, not a logo/trust strip. */
.capability-marquee {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16,17,21,.96), rgba(35,27,20,.92), rgba(16,17,21,.96));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(201,164,90,.18);
  padding: 13px 0;
  z-index: 3;
}
.capability-marquee::before,
.capability-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(14vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.capability-marquee::before { left: 0; background: linear-gradient(90deg, rgba(16,17,21,1), rgba(16,17,21,0)); }
.capability-marquee::after { right: 0; background: linear-gradient(270deg, rgba(16,17,21,1), rgba(16,17,21,0)); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: capabilityMarquee 58s linear infinite;
  will-change: transform;
}
.capability-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  flex: 0 0 auto;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 600;
  letter-spacing: .015em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.marquee-content span:nth-child(4n+1) {
  color: rgba(255,231,177,.94);
  border-color: rgba(201,164,90,.24);
}
@keyframes capabilityMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@media (max-width: 760px) {
  .capability-marquee { padding: 10px 0; }
  .marquee-track { animation-duration: 46s; }
  .marquee-content span { min-height: 27px; padding: 6px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
}

/* Make the hero glow clearly animated but still premium, with element shadows falling into it. */
.hero::before {
  width: min(52vw, 760px) !important;
  height: min(52vw, 760px) !important;
  right: -18vw !important;
  top: -4% !important;
  background: radial-gradient(circle, rgba(239,195,91,.26) 0%, rgba(239,195,91,.12) 33%, rgba(239,195,91,.04) 58%, transparent 76%) !important;
  filter: blur(22px) !important;
  animation: heroGoldDrift 10s ease-in-out infinite alternate !important;
}
.hero::after {
  width: min(42vw, 580px) !important;
  height: min(42vw, 580px) !important;
  left: -8vw !important;
  bottom: -18% !important;
  background: radial-gradient(circle, rgba(255,222,150,.16) 0%, rgba(201,164,90,.09) 36%, transparent 72%) !important;
  filter: blur(18px) !important;
  animation: heroGoldBreath 12s ease-in-out infinite alternate !important;
}
.hero-media img {
  filter: drop-shadow(26px 32px 34px rgba(0,0,0,.34)) !important;
}
.hero-content {
  text-shadow: 0 16px 36px rgba(0,0,0,.34);
}
.hero-actions .button {
  box-shadow: 0 18px 38px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.14);
}
@keyframes heroGoldDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: .58; }
  45% { transform: translate3d(-9vw, 7vh, 0) scale(1.10); opacity: .9; }
  100% { transform: translate3d(-3vw, 14vh, 0) scale(1.03); opacity: .74; }
}
@keyframes heroGoldBreath {
  0% { transform: translate3d(0, 0, 0) scale(.95); opacity: .38; }
  55% { transform: translate3d(8vw, -4vh, 0) scale(1.14); opacity: .72; }
  100% { transform: translate3d(14vw, 2vh, 0) scale(1.05); opacity: .55; }
}

/* Draft 17: larger marquee, controlled line breaks, tighter mobile hero, optional scenic background note. */
.hero-eyebrow {
  line-height: 1.55 !important;
}
.hero-eyebrow span {
  display: block;
}
@media (max-width: 760px) {
  .hero-eyebrow span {
    display: inline;
  }
  .hero-eyebrow span + span::before {
    content: " · ";
  }
}

/* Make the capability marquee read as a real design element, not fine print. */
.capability-marquee {
  padding: 15px 0 !important;
}
.marquee-content span {
  min-height: 36px !important;
  padding: 9px 16px !important;
  font-size: clamp(14px, 1.08vw, 17px) !important;
  font-weight: 650 !important;
}
@media (max-width: 760px) {
  .capability-marquee {
    padding: 8px 0 !important;
    margin-top: -6px !important;
  }
  .marquee-content span {
    min-height: 30px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
  }
}

/* Keep requested text lines controlled and elegant. */
.profile-title-overlay h2,
.composer-heading h2 {
  line-height: .96 !important;
}

/* Mobile: fit the three hero CTAs on one line and remove excess blank air before the marquee. */
@media (max-width: 760px) {
  .hero-content {
    padding-bottom: 22px !important;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px !important;
    margin-top: 18px !important;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 36px !important;
    padding: 9px 4px !important;
    font-size: clamp(9px, 2.65vw, 11px) !important;
    line-height: 1.05 !important;
    white-space: nowrap;
    border-radius: 999px;
    justify-content: center;
    text-align: center;
  }
  .hero {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 380px) {
  .hero-actions .button {
    font-size: 8.8px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}

/* Draft 18: brighter glass marquee, stronger right-side hero portrait, controlled three-line positioning. */

/* Keep the hero positioning title on three controlled lines across layouts. */
.hero-eyebrow {
  display: grid;
  gap: 2px;
  max-width: 33ch;
  margin-bottom: 16px !important;
}
.hero-eyebrow span {
  display: block !important;
  white-space: nowrap;
}

/* Desktop hero: larger portrait on the right, wider copy card with soft glass fade into the image. */
@media (min-width: 1021px) {
  .hero {
    max-width: 1160px !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr) !important;
    margin: 52px auto 42px !important;
    overflow: visible !important;
  }
  .hero-content {
    align-self: center;
    width: min(740px, calc(100% + 54px));
    max-width: none !important;
    margin-right: -56px !important;
    padding: 48px 46px 50px 52px !important;
    border-radius: 32px !important;
    background: linear-gradient(90deg,
      rgba(12, 12, 15, .76) 0%,
      rgba(16, 15, 17, .62) 56%,
      rgba(16, 15, 17, .22) 86%,
      rgba(16, 15, 17, 0) 100%) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    backdrop-filter: blur(14px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
    box-shadow: 0 24px 76px rgba(0,0,0,.24) !important;
    text-shadow: 0 16px 34px rgba(0,0,0,.30);
  }
  .hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 28%);
  }
  .hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -140px;
    width: 180px;
    height: 100%;
    border-radius: 0 32px 32px 0;
    background: linear-gradient(90deg, rgba(16,15,17,.28), rgba(16,15,17,0));
    pointer-events: none;
  }
  .hero-media {
    justify-content: flex-end !important;
    min-height: 560px !important;
    padding: 42px 52px 42px 18px !important;
  }
  .hero-media img {
    width: clamp(320px, 29vw, 420px) !important;
    max-height: min(72vh, 640px) !important;
    border-radius: 32px !important;
    transform: translateX(10px) rotate(.3deg) !important;
    box-shadow: 0 34px 96px rgba(0,0,0,.42) !important;
  }
  .hero-definition {
    max-width: 58ch !important;
  }
}

/* Mobile hero: preserve three lines, keep buttons in one line and reduce dead space before the marquee. */
@media (max-width: 760px) {
  .hero-content {
    min-height: 600px !important;
    padding-bottom: 16px !important;
  }
  .hero-eyebrow {
    max-width: 24ch;
    gap: 3px;
  }
  .hero-eyebrow span {
    white-space: normal;
  }
  .hero-actions {
    margin-top: 16px !important;
  }
}

/* Brighter glass marquee to bridge the dark hero and the lighter sections below. */
.capability-marquee {
  background: linear-gradient(90deg,
    rgba(250, 244, 236, .92),
    rgba(244, 233, 218, .98),
    rgba(250, 244, 236, .92)) !important;
  border-top: 1px solid rgba(170, 134, 68, .16) !important;
  border-bottom: 1px solid rgba(170, 134, 68, .22) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), 0 14px 36px rgba(62,38,12,.08);
  padding: 16px 0 !important;
}
.capability-marquee::before {
  background: linear-gradient(90deg, rgba(249,243,235,1), rgba(249,243,235,0)) !important;
}
.capability-marquee::after {
  background: linear-gradient(270deg, rgba(249,243,235,1), rgba(249,243,235,0)) !important;
}
.capability-marquee .marquee-track {
  position: relative;
}
.capability-marquee .marquee-track::after {
  content: "";
  position: absolute;
  inset: 8px auto 8px -12%;
  width: 22%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.35), rgba(255,255,255,0));
  filter: blur(10px);
  animation: marqueeShine 14s linear infinite;
  pointer-events: none;
}
.marquee-content {
  gap: 12px !important;
}
.marquee-content span {
  min-height: 38px !important;
  padding: 9px 17px !important;
  font-size: clamp(14px, 1.04vw, 17px) !important;
  font-weight: 650 !important;
  color: rgba(67, 50, 30, .88) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.52), rgba(255,255,255,.24)) !important;
  border: 1px solid rgba(160,124,65,.20) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 26px rgba(124,90,38,.08) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.marquee-content span:nth-child(4n+1) {
  color: rgba(126, 85, 29, .94) !important;
  border-color: rgba(191,150,76,.34) !important;
}
@keyframes marqueeShine {
  from { transform: translateX(0); opacity: .34; }
  to { transform: translateX(560%); opacity: .18; }
}
@media (max-width: 760px) {
  .capability-marquee {
    margin-top: -2px !important;
    padding: 10px 0 !important;
  }
  .marquee-content span {
    min-height: 30px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
  }
}

/* Contact badges: slightly larger for readability. */
.booking-links.icon-links .icon-link {
  min-height: 48px !important;
  padding: 12px 20px !important;
  font-size: 14.5px !important;
}
@media (max-width: 760px) {
  .booking-links.icon-links .icon-link {
    min-height: 42px !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
  }
}


/* Draft 19 final polish: actual desktop overlap, flexible mobile hero line, larger light marquee. */

@media (min-width: 1021px) {
  .hero {
    max-width: 1160px !important;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr) !important;
  }
  .hero-content {
    min-height: 455px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -118px !important;
    padding-right: 118px !important;
    width: calc(100% + 118px) !important;
  }
  .hero-media {
    padding-left: 0 !important;
    padding-right: 42px !important;
  }
  .hero-media img {
    width: clamp(350px, 31vw, 455px) !important;
    transform: translateX(18px) rotate(.28deg) !important;
  }
}

/* On mobile the hero position line becomes a free-flowing sentence with separators. */
@media (max-width: 760px) {
  .hero-eyebrow {
    display: block !important;
    max-width: 100% !important;
    font-size: clamp(10.5px, 3vw, 12.5px) !important;
    line-height: 1.45 !important;
    letter-spacing: .105em !important;
  }
  .hero-eyebrow span {
    display: none !important;
  }
  .hero-eyebrow::before {
    content: attr(data-mobile-line);
    display: block;
  }
  .hero-content {
    padding-bottom: 12px !important;
  }
  .hero-actions {
    margin-top: 14px !important;
    margin-bottom: 10px !important;
  }
  .capability-marquee {
    margin-top: 0 !important;
  }
}

/* Slightly stronger readability for the light glass marquee. */
.capability-marquee {
  padding: 18px 0 !important;
}
.marquee-content span {
  min-height: 42px !important;
  padding: 10px 19px !important;
  font-size: clamp(15px, 1.14vw, 18px) !important;
  color: rgba(52, 39, 24, .93) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.66), rgba(255,255,255,.34)) !important;
  border-color: rgba(160,124,65,.28) !important;
}
@media (max-width: 760px) {
  .capability-marquee {
    padding: 9px 0 !important;
  }
  .marquee-content span {
    min-height: 31px !important;
    padding: 7px 13px !important;
    font-size: 13.5px !important;
  }
}


/* Draft 20: calmer hero geometry, equal margins, stronger mobile hero, larger marquee pills. */

/* DESKTOP HERO:
   The overlap experiment was too subtle and no longer necessary.
   Return to a clean two-column editorial composition with equal outer margins,
   a small intentional gap, and a larger but not cramped right portrait. */
@media (min-width: 1021px) {
  .hero {
    max-width: 1160px !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr) !important;
    gap: clamp(18px, 2.4vw, 34px) !important;
    margin: 52px auto 42px !important;
    padding: 0 clamp(38px, 4vw, 56px) !important;
  }

  .hero-content {
    width: auto !important;
    max-width: 660px !important;
    min-height: auto !important;
    margin-right: 0 !important;
    padding: clamp(46px, 5vw, 68px) clamp(38px, 4vw, 56px) !important;
    border-radius: 32px !important;
    background: linear-gradient(135deg,
      rgba(12, 12, 15, .78) 0%,
      rgba(20, 18, 18, .62) 68%,
      rgba(20, 18, 18, .48) 100%) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    backdrop-filter: blur(13px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(13px) saturate(1.06) !important;
    box-shadow: 0 24px 76px rgba(0,0,0,.24) !important;
  }

  .hero-content::after {
    display: none !important;
  }

  .hero-media {
    min-height: 550px !important;
    justify-content: center !important;
    padding: clamp(36px, 4.4vw, 58px) 0 !important;
  }

  .hero-media img {
    width: clamp(310px, 27vw, 405px) !important;
    max-height: min(70vh, 620px) !important;
    transform: none !important;
    border-radius: 32px !important;
  }

  .hero-definition {
    max-width: 56ch !important;
  }

  .hero-eyebrow {
    max-width: 38ch !important;
  }
}

/* MOBILE HERO:
   Remove the narrow right constraint feeling. Let text and buttons use almost
   the full screen width, while keeping the portrait present but not cramped. */
@media (max-width: 760px) {
  .hero {
    overflow: hidden !important;
  }

  .hero-content {
    min-height: 575px !important;
    padding: 42px 14px 10px !important;
    max-width: none !important;
    width: 100% !important;
  }

  .hero-eyebrow {
    width: calc(100vw - 28px) !important;
    max-width: none !important;
    font-size: clamp(10px, 2.85vw, 12px) !important;
    line-height: 1.42 !important;
    letter-spacing: .092em !important;
  }

  .hero-definition {
    width: min(100%, 72vw) !important;
    max-width: 72vw !important;
    font-size: clamp(14px, 3.55vw, 16px) !important;
    line-height: 1.55 !important;
  }

  .hero-media {
    top: 74px !important;
    right: -26px !important;
    width: min(54vw, 245px) !important;
    opacity: .76 !important;
  }

  .hero-media img {
    border-radius: 24px 0 0 24px !important;
  }

  .hero-actions {
    width: calc(100vw - 28px) !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 36px !important;
    padding: 9px 2px !important;
    font-size: clamp(8.8px, 2.55vw, 10.6px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .capability-marquee {
    margin-top: 0 !important;
  }
}

/* For very small phones, keep the three CTA buttons equal and on one row. */
@media (max-width: 390px) {
  .hero-actions {
    gap: 4px !important;
  }
  .hero-actions .button {
    font-size: 8.4px !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}

/* MARQUEE:
   The light band worked; now enlarge the moving pills and their text too. */
.capability-marquee {
  padding: 18px 0 !important;
}

.marquee-content {
  gap: 14px !important;
}

.marquee-content span {
  min-height: 46px !important;
  padding: 11px 22px !important;
  font-size: clamp(16px, 1.22vw, 20px) !important;
  font-weight: 700 !important;
  letter-spacing: .012em !important;
  color: rgba(45, 34, 22, .96) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.42)) !important;
  border: 1px solid rgba(160,124,65,.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.52),
    0 12px 30px rgba(124,90,38,.11) !important;
}

.marquee-content span:nth-child(4n+1) {
  color: rgba(116, 76, 22, .98) !important;
  border-color: rgba(191,150,76,.42) !important;
}

@media (max-width: 760px) {
  .capability-marquee {
    padding: 8px 0 !important;
  }

  .marquee-content {
    gap: 10px !important;
  }

  .marquee-content span {
    min-height: 33px !important;
    padding: 8px 14px !important;
    font-size: 14px !important;
  }
}


/* Draft 21: golden-ratio desktop hero, stronger mobile photo card, tighter CTA-to-marquee rhythm. */

/* DESKTOP HERO
   Use a golden-ratio-like balance:
   text area = larger part, portrait = smaller part,
   but keep the portrait visually strong and vertically aligned with the card. */
@media (min-width: 1021px) {
  .hero {
    max-width: 1160px !important;
    grid-template-columns: minmax(0, 1.58fr) minmax(330px, 1fr) !important;
    gap: clamp(18px, 2vw, 28px) !important;
    padding: clamp(26px, 3vw, 42px) clamp(30px, 3.4vw, 46px) !important;
    align-items: center !important;
  }

  .hero-content {
    max-width: none !important;
    width: 100% !important;
    min-height: 468px !important;
    padding: clamp(34px, 3.6vw, 48px) clamp(34px, 3.8vw, 52px) !important;
    justify-content: center !important;
    border-radius: 32px !important;
  }

  .hero-media {
    min-height: 468px !important;
    height: 468px !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-media img {
    width: clamp(330px, 29vw, 430px) !important;
    max-height: 468px !important;
    height: min(468px, 68vh) !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 32px !important;
  }

  .hero-eyebrow {
    max-width: none !important;
    font-size: clamp(12px, .98vw, 15px) !important;
    letter-spacing: .112em !important;
    line-height: 1.52 !important;
  }

  .hero-definition {
    max-width: 62ch !important;
  }
}

/* MOBILE HERO
   Make the hero photo behave closer to the showreel card logic:
   full-width portrait card first, then text, then buttons, then marquee.
   This avoids the bad left/right field imbalance caused by absolute positioning. */
@media (max-width: 760px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 12px 14px 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .hero-media {
    position: relative !important;
    order: 0 !important;
    top: auto !important;
    right: auto !important;
    width: min(100%, 330px) !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto 14px !important;
    padding: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-media img {
    width: 100% !important;
    height: auto !important;
    max-height: 58vh !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 72px rgba(0,0,0,.26) !important;
  }

  .hero-content {
    order: 1 !important;
    width: 100% !important;
    min-height: 0 !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    padding: 18px 0 10px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-content::before,
  .hero-content::after {
    display: none !important;
  }

  .hero-eyebrow {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 12px !important;
    font-size: clamp(10.5px, 2.8vw, 12px) !important;
    letter-spacing: .085em !important;
    line-height: 1.42 !important;
  }

  .hero-definition {
    width: 100% !important;
    max-width: none !important;
    margin-top: 12px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    width: 100% !important;
    max-width: none !important;
    margin: 14px 0 8px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-height: 36px !important;
    padding: 9px 3px !important;
    font-size: clamp(8.5px, 2.45vw, 10.4px) !important;
    line-height: 1.04 !important;
    white-space: nowrap !important;
  }

  /* Reduce optical difference: make the third CTA also a filled glass-gold button, not a dark outline. */
  .hero-actions .button-ghost {
    background: rgba(255,253,249,.88) !important;
    color: #171414 !important;
    border-color: rgba(255,255,255,.62) !important;
  }

  .capability-marquee {
    margin-top: 0 !important;
  }
}

/* Very small phones: keep all three buttons visually equal. */
@media (max-width: 380px) {
  .hero,
  .hero-content,
  .hero-media {
    max-width: none !important;
  }

  .hero-actions {
    gap: 4px !important;
  }

  .hero-actions .button {
    font-size: 8.2px !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}

/* MARQUEE
   Keep the band height stable; only enlarge the moving glass pills and text. */
.capability-marquee {
  padding: 14px 0 !important;
}

.marquee-content {
  gap: 15px !important;
}

.marquee-content span {
  min-height: 48px !important;
  padding: 12px 24px !important;
  font-size: clamp(17px, 1.3vw, 21px) !important;
  font-weight: 720 !important;
}

@media (max-width: 760px) {
  .capability-marquee {
    padding: 7px 0 !important;
  }

  .marquee-content {
    gap: 10px !important;
  }

  .marquee-content span {
    min-height: 34px !important;
    padding: 8px 15px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
  }
}


/* Draft 23: rollback from Draft 21, then correctly stretch photo to card height.
   Important: do NOT shrink the card to photo. Stretch the photo to the card. */

/* Keep Draft 21 proportions, but make the right portrait stretch to the actual grid/card height.
   The portrait may expand horizontally and sit under the glass card if needed. */
@media (min-width: 1021px) {
  .hero {
    max-width: 1160px !important;
    grid-template-columns: minmax(0, 1.58fr) minmax(330px, 1fr) !important;
    gap: clamp(14px, 1.8vw, 26px) !important;
    padding: clamp(26px, 3vw, 42px) clamp(30px, 3.4vw, 46px) !important;
    align-items: stretch !important;
    margin: 52px auto 34px !important;
    border-radius: 34px !important;
    overflow: visible !important;
  }

  .hero-content {
    z-index: 3 !important;
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: clamp(40px, 4.2vw, 60px) !important;
    padding-bottom: clamp(40px, 4.2vw, 60px) !important;
    padding-left: clamp(28px, 3.1vw, 44px) !important;  /* move text/buttons left */
    padding-right: clamp(30px, 3.4vw, 48px) !important;
  }

  .hero-media {
    z-index: 1 !important;
    align-self: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin-left: -26px !important; /* lets enlarged portrait move under the card */
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
  }

  .hero-media img {
    height: 100% !important;
    max-height: none !important;
    min-height: 520px !important;
    width: auto !important;
    min-width: clamp(350px, 31vw, 455px) !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 32px !important;
    transform: none !important;
  }

  .hero-eyebrow {
    font-size: clamp(11px, .9vw, 14px) !important;
    line-height: 1.5 !important;
    letter-spacing: .102em !important;
    max-width: none !important;
  }

  .hero-actions {
    gap: 9px !important;
  }
}

/* CTA buttons from Draft 22, but without changing hero geometry. */
.hero-actions .button,
.hero-actions .button-primary,
.hero-actions .button-secondary,
.hero-actions .button-ghost {
  background: var(--gold) !important;
  color: #17100a !important;
  border-color: rgba(201,164,90,.92) !important;
  font-weight: 800 !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.22) !important;
}

@media (min-width: 1021px) {
  .hero-actions .button {
    min-height: 50px !important;
    padding: 13px 18px !important;
    font-size: 17px !important;
    letter-spacing: .005em !important;
  }

  .hero-actions .button:hover {
    background: var(--white) !important;
    color: var(--ink) !important;
    border-color: rgba(255,255,255,.9) !important;
  }
}

/* Marquee: separate element, same width as hero, no shared frame with hero.
   Keep fade-in/fade-out edges. */
@media (min-width: 1021px) {
  .capability-marquee {
    max-width: 1160px !important;
    margin: 0 auto 42px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .capability-marquee::before,
  .capability-marquee::after {
    width: 160px !important;
  }

  .capability-marquee::before {
    background: linear-gradient(90deg, rgba(248,241,231,1), rgba(248,241,231,0)) !important;
  }

  .capability-marquee::after {
    background: linear-gradient(270deg, rgba(248,241,231,1), rgba(248,241,231,0)) !important;
  }
}

/* Keep band height from Draft 21/Draft 22 direction, but enlarge only moving pills/text. */
.capability-marquee {
  padding: 14px 0 !important;
}

.marquee-content {
  gap: 15px !important;
}

.marquee-content span {
  min-height: 48px !important;
  padding: 12px 24px !important;
  font-size: clamp(17px, 1.3vw, 21px) !important;
  font-weight: 720 !important;
}

/* Mobile keeps the good photo-card layout from Draft 21, with typography refinements. */
@media (max-width: 760px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 12px 14px 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .hero-media {
    position: relative !important;
    order: 0 !important;
    top: auto !important;
    right: auto !important;
    width: min(100%, 330px) !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto 14px !important;
    padding: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-media img {
    width: 100% !important;
    height: auto !important;
    max-height: 58vh !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 72px rgba(0,0,0,.26) !important;
  }

  .hero-content {
    order: 1 !important;
    width: 100% !important;
    min-height: 0 !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    padding: 18px 0 10px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: justify !important;
  }

  .hero-content::before,
  .hero-content::after {
    display: none !important;
  }

  .hero-eyebrow {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 12px !important;
    font-size: clamp(11.5px, 3.25vw, 13.6px) !important; /* larger than previous attempt */
    letter-spacing: .055em !important;
    line-height: 1.38 !important;
    text-align: justify !important;
    text-align-last: left !important;
  }

  .hero-definition {
    width: 100% !important;
    max-width: none !important;
    margin-top: 12px !important;
    font-size: clamp(15.75px, 3.75vw, 17px) !important;
    line-height: 1.55 !important;
    text-align: justify !important;
    text-align-last: left !important;
  }

  .hero-actions {
    width: 100% !important;
    max-width: none !important;
    margin: 14px 0 8px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-height: 38px !important; /* slightly lower, closer to marquee pills */
    padding: 8px 2px !important;
    font-size: clamp(14px, 3.7vw, 16px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.03em !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
  }

  .capability-marquee {
    margin-top: 0 !important;
    padding: 7px 0 !important;
    border-radius: 0 !important;
  }

  .marquee-content {
    gap: 10px !important;
  }

  .marquee-content span {
    min-height: 34px !important;
    padding: 8px 15px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    gap: 4px !important;
  }
  .hero-actions .button {
    font-size: 12.6px !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}


/* Draft 24: rounded desktop marquee, stronger mobile typography, configurable Artistic Profile overlay positions. */

/* Desktop marquee: separate, same width, with softly rounded edges. */
@media (min-width: 1021px) {
  .capability-marquee {
    border-radius: 22px !important;
  }
}

/* Mobile hero typography: fill the line better without forced ugly gaps. */
@media (max-width: 760px) {
  .hero-eyebrow {
    font-size: clamp(13.2px, 3.72vw, 15.6px) !important; /* approx +15% */
    letter-spacing: .035em !important;
    line-height: 1.36 !important;
    text-align: justify !important;
    text-align-last: left !important;
    word-spacing: .02em !important;
  }

  .hero-definition {
    font-size: clamp(16.5px, 3.95vw, 18px) !important; /* approx +5% */
    line-height: 1.55 !important;
    text-align: justify !important;
    text-align-last: left !important;
  }
}

/* Artistic profile overlay positions.
   Controlled from config.js:
   overlay: "left-high", "left-mid", "left-low",
            "right-high", "right-mid", "right-low"

   Note: low positions stay above the lower text block area where possible. */
.profile-intro-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: stretch !important;
}

.profile-intro-card .profile-title-overlay {
  align-self: start;
  justify-self: start;
  width: min(620px, 92%);
  transition: transform .45s ease, opacity .35s ease, justify-self .35s ease;
}

.profile-intro-card[data-overlay="left-high"] .profile-title-overlay {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  justify-self: start;
  align-self: start;
}

.profile-intro-card[data-overlay="left-mid"] .profile-title-overlay {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  justify-self: start;
  align-self: center;
}

.profile-intro-card[data-overlay="left-low"] .profile-title-overlay {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  justify-self: start;
  align-self: start;
}

.profile-intro-card[data-overlay="right-high"] .profile-title-overlay {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: end;
  align-self: start;
}

.profile-intro-card[data-overlay="right-mid"] .profile-title-overlay {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: end;
  align-self: center;
}

.profile-intro-card[data-overlay="right-low"] .profile-title-overlay {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  justify-self: end;
  align-self: start;
}

/* Preserve the nice glass look, but make it position-friendly. */
.artist-profile .profile-title-overlay.top-overlay {
  margin: 0 !important;
  max-width: none !important;
}

/* Mobile: keep overlay mostly top-left for readability; config positions are less useful on small screens. */
@media (max-width: 760px) {
  .profile-intro-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
  }

  .profile-intro-card .profile-title-overlay {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    justify-self: start !important;
    align-self: start !important;
    width: min(100%, 92vw) !important;
  }
}


/* Draft 25: unify widths, fix profile overlay without breaking proportions, restore mobile hero text. */

/* Width unification and vertical rhythm after marquee. */
@media (min-width: 1021px) {
  .section-featured {
    padding-top: 34px !important;
  }

  .section-featured > .feature-video {
    max-width: 1160px !important;
    width: calc(100% - 0px) !important;
    margin-inline: auto !important;
  }

  .capability-marquee {
    margin-bottom: 34px !important;
  }
}

/* Mobile hero: undo ugly justification gaps.
   Keep strong name and intro size, but let text breathe naturally. */
@media (max-width: 760px) {
  .hero-content {
    text-align: left !important;
  }

  .hero-eyebrow {
    font-size: clamp(11.2px, 3.05vw, 13px) !important;
    letter-spacing: .04em !important;
    line-height: 1.38 !important;
    text-align: left !important;
    text-align-last: auto !important;
    word-spacing: normal !important;
  }

  h1 {
    font-size: clamp(50px, 15vw, 110px) !important;
  }

  .hero-definition {
    font-size: clamp(15.8px, 3.75vw, 17px) !important;
    line-height: 1.55 !important;
    text-align: left !important;
    text-align-last: auto !important;
    word-spacing: normal !important;
  }
}

/* Artistic profile overlay positions:
   Restore the previous visual proportions. The slideshow area is not a grid.
   Only the glass title card changes position. */
.profile-intro-card {
  display: block !important;
  position: relative !important;
  min-height: clamp(520px, 56vw, 760px) !important;
  aspect-ratio: auto !important;
}

.profile-intro-card .profile-title-overlay {
  position: absolute !important;
  width: min(620px, 58%) !important;
  min-width: 420px !important;
  max-width: 620px !important;
  margin: 0 !important;
  padding: clamp(22px, 2.6vw, 34px) clamp(24px, 3vw, 38px) !important;
  border-radius: 24px !important;
  transition: left .45s ease, right .45s ease, top .45s ease, transform .45s ease, opacity .35s ease !important;
}

.profile-intro-card .profile-title-overlay h2 {
  white-space: normal !important;
  line-height: .96 !important;
}

/* left/right x high/mid/low. Low is kept above the lower text overlap area. */
.profile-intro-card[data-overlay="left-high"] .profile-title-overlay {
  left: clamp(24px, 4vw, 54px) !important;
  right: auto !important;
  top: clamp(24px, 4vw, 54px) !important;
  transform: none !important;
}

.profile-intro-card[data-overlay="left-mid"] .profile-title-overlay {
  left: clamp(24px, 4vw, 54px) !important;
  right: auto !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
}

.profile-intro-card[data-overlay="left-low"] .profile-title-overlay {
  left: clamp(24px, 4vw, 54px) !important;
  right: auto !important;
  top: 56% !important;
  transform: translateY(-50%) !important;
}

.profile-intro-card[data-overlay="right-high"] .profile-title-overlay {
  right: clamp(24px, 4vw, 54px) !important;
  left: auto !important;
  top: clamp(24px, 4vw, 54px) !important;
  transform: none !important;
}

.profile-intro-card[data-overlay="right-mid"] .profile-title-overlay {
  right: clamp(24px, 4vw, 54px) !important;
  left: auto !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
}

.profile-intro-card[data-overlay="right-low"] .profile-title-overlay {
  right: clamp(24px, 4vw, 54px) !important;
  left: auto !important;
  top: 56% !important;
  transform: translateY(-50%) !important;
}

/* Keep the large text block overlap exactly in the earlier style. */
@media (min-width: 1021px) {
  .artist-profile .profile-copy {
    width: min(690px, 76%) !important;
    margin: -92px 42px 0 auto !important;
    padding: 28px 32px 12px !important;
    border-radius: 24px !important;
  }
}

/* Mobile profile overlay: no left/right logic, only high/mid/low vertical position.
   The glass card should not stretch from edge to edge. */
@media (max-width: 760px) {
  .profile-intro-card {
    min-height: 430px !important;
    display: block !important;
  }

  .profile-intro-card .profile-title-overlay {
    width: min(82%, 360px) !important;
    min-width: 0 !important;
    max-width: 360px !important;
    padding: 18px 20px !important;
    border-radius: 18px !important;
    left: 20px !important;
    right: auto !important;
  }

  .profile-intro-card[data-overlay$="-high"] .profile-title-overlay {
    top: 20px !important;
    transform: none !important;
  }

  .profile-intro-card[data-overlay$="-mid"] .profile-title-overlay {
    top: 36% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay$="-low"] .profile-title-overlay {
    top: 52% !important;
    transform: translateY(-50%) !important;
  }

  .profile-title-overlay h2 {
    font-size: clamp(30px, 8.8vw, 40px) !important;
  }
}

/* Optional per-slide text is supported via config.js:
   { src, overlay, subtitle, titleHtml } */


/* Draft 26: square Artistic Profile, mobile title over photo, warmer hero stage. */

/* HERO: reduce the black-frame feeling with a warmer scenic gradient and softer photo surroundings. */
.hero {
  background:
    radial-gradient(circle at 77% 18%, rgba(214, 169, 88, .22), transparent 34%),
    radial-gradient(circle at 15% 88%, rgba(145, 92, 45, .18), transparent 38%),
    linear-gradient(135deg, #15100f 0%, #231915 45%, #352516 100%) !important;
}

@media (min-width: 1021px) {
  .hero {
    box-shadow: 0 30px 96px rgba(40, 24, 10, .22), 0 10px 30px rgba(0,0,0,.16) !important;
  }

  .hero-content {
    background: linear-gradient(135deg,
      rgba(34, 25, 19, .72) 0%,
      rgba(25, 20, 18, .58) 62%,
      rgba(20, 17, 16, .44) 100%) !important;
    border-color: rgba(233, 193, 112, .16) !important;
  }

  .hero-media img {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(233, 193, 112, .16) !important;
    box-shadow:
      0 34px 92px rgba(0,0,0,.34),
      0 0 0 12px rgba(255, 233, 184, .035) !important;
  }
}

/* MOBILE HERO: only enlarge positioning text and move it over the photo with glass blur. */
@media (max-width: 760px) {
  .hero {
    position: relative !important;
  }

  .hero-eyebrow {
    position: absolute !important;
    z-index: 7 !important;
    top: 26px !important;
    left: 28px !important;
    right: 28px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(19, 16, 14, .48), rgba(19, 16, 14, .26)) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: rgba(255, 232, 183, .96) !important;
    backdrop-filter: blur(8px) saturate(1.05) !important;
    -webkit-backdrop-filter: blur(8px) saturate(1.05) !important;
    font-size: clamp(12.9px, 3.51vw, 14.95px) !important; /* +15% over Draft 25 mobile eyebrow */
    letter-spacing: .035em !important;
    line-height: 1.34 !important;
    text-align: left !important;
    text-shadow: 0 10px 24px rgba(0,0,0,.30);
  }

  .hero-media {
    margin-bottom: 16px !important;
  }
}

/* ARTISTIC PROFILE: restore square visual proportions and stronger overlap. */
@media (min-width: 1021px) {
  .artist-profile {
    max-width: 980px !important;
  }

  .artist-profile .profile-intro-card {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 34px !important;
  }

  .artist-profile .profile-copy {
    width: min(620px, 64%) !important;
    min-height: 520px !important;
    margin: -196px 42px 0 auto !important; /* about 20% of the 980px square */
    padding: 36px 38px 24px !important;
    border-radius: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .artist-profile .profile-copy p {
    font-size: clamp(16px, 1.08vw, 18px) !important;
    line-height: 1.7 !important;
  }
}

/* Overlay card positioning: keep proportions and move requested positions. */
@media (min-width: 761px) {
  .profile-intro-card .profile-title-overlay {
    width: min(650px, 60%) !important;
    min-width: 440px !important;
    max-width: 650px !important;
  }

  .profile-intro-card[data-overlay="left-high"] .profile-title-overlay {
    left: clamp(14px, 2.6vw, 38px) !important;
    top: clamp(14px, 2.6vw, 38px) !important;
  }

  .profile-intro-card[data-overlay="left-mid"] .profile-title-overlay {
    left: clamp(14px, 2.6vw, 38px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay="right-high"] .profile-title-overlay {
    right: clamp(14px, 2.6vw, 38px) !important;
    top: clamp(14px, 2.6vw, 38px) !important;
  }

  .profile-intro-card[data-overlay="right-mid"] .profile-title-overlay {
    right: clamp(14px, 2.6vw, 38px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* Mobile Artistic Profile:
   Return to previous wide glass title card, but use vertical high/mid/low positioning only. */
@media (max-width: 760px) {
  .profile-intro-card {
    min-height: 430px !important;
    display: block !important;
  }

  .profile-intro-card .profile-title-overlay {
    width: calc(100% - 40px) !important;
    min-width: 0 !important;
    max-width: none !important;
    left: 20px !important;
    right: 20px !important;
    padding: 18px 20px !important;
    border-radius: 18px !important;
  }

  .profile-intro-card[data-overlay$="-high"] .profile-title-overlay {
    top: 20px !important;
    transform: none !important;
  }

  .profile-intro-card[data-overlay$="-mid"] .profile-title-overlay {
    top: 48% !important; /* strongly lower than before */
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay$="-low"] .profile-title-overlay {
    top: 58% !important;
    transform: translateY(-50%) !important;
  }

  .profile-title-overlay h2 {
    font-size: clamp(31px, 8.7vw, 41px) !important;
    line-height: .94 !important;
  }
}

/* Make note explicit in CSS: left-low/right-low remain available but are not used in current config. */


/* Draft 27: purple/graphite hero, rollback mobile hero overlay, restore two-column profile copy. */

/* HERO MOOD:
   Try a cooler AVID-like purple/graphite stage mood instead of black/brown. */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(132, 94, 247, .28), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(201, 164, 90, .13), transparent 36%),
    linear-gradient(135deg, #100e1d 0%, #1b1730 46%, #2d2445 100%) !important;
}

@media (min-width: 1021px) {
  .hero {
    box-shadow: 0 30px 96px rgba(30, 20, 70, .26), 0 10px 30px rgba(0,0,0,.16) !important;
  }

  .hero-content {
    background: linear-gradient(135deg,
      rgba(25, 21, 44, .76) 0%,
      rgba(31, 24, 54, .62) 62%,
      rgba(40, 30, 68, .50) 100%) !important;
    border-color: rgba(196, 177, 255, .18) !important;
  }

  .hero-media img {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(196, 177, 255, .16) !important;
    box-shadow:
      0 34px 92px rgba(0,0,0,.32),
      0 0 0 12px rgba(196, 177, 255, .035) !important;
  }
}

/* MOBILE HERO:
   Remove positioning text from photo. Return to normal placement under photo,
   only enlarge it by about 15% from the previous successful state. */
@media (max-width: 760px) {
  .hero-eyebrow {
    position: static !important;
    z-index: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--gold) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-shadow: none !important;
    font-size: clamp(12.9px, 3.51vw, 14.95px) !important;
    letter-spacing: .04em !important;
    line-height: 1.36 !important;
    text-align: left !important;
  }

  .hero-media {
    margin-bottom: 14px !important;
  }
}

/* ARTISTIC PROFILE:
   Restore the lower text block to a wide horizontal card with two vertical text columns. */
@media (min-width: 1021px) {
  .artist-profile .profile-copy {
    width: min(850px, 86%) !important;
    min-height: 0 !important;
    margin: -196px 42px 0 auto !important; /* 20% overlap over square window */
    padding: 34px 38px 28px !important;
    border-radius: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(22px, 3vw, 42px) !important;
    align-items: start !important;
  }

  .artist-profile .profile-copy p {
    margin: 0 !important;
    font-size: clamp(16px, 1.06vw, 18px) !important;
    line-height: 1.72 !important;
  }
}

/* Fine-tune overlay mid positions lower. */
@media (min-width: 761px) {
  .profile-intro-card[data-overlay="left-mid"] .profile-title-overlay {
    top: 56% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay="right-mid"] .profile-title-overlay {
    top: 56% !important;
    transform: translateY(-50%) !important;
  }
}

/* Mobile Artistic profile: mid positions lower too; keep wide overlay. */
@media (max-width: 760px) {
  .profile-intro-card[data-overlay$="-mid"] .profile-title-overlay {
    top: 54% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay$="-low"] .profile-title-overlay {
    top: 62% !important;
    transform: translateY(-50%) !important;
  }
}


/* Draft 28: harmonize purple/gold palette and lower mid overlay positions. */

:root {
  --violet-deep: #100d1f;
  --violet-graphite: #181429;
  --violet-plum: #2a2044;
  --violet-smoke: rgba(32, 25, 54, .62);
  --champagne: #ead6a6;
}

/* Header: match the new violet/graphite hero instead of flat black. */
.site-header {
  background: rgba(16, 13, 31, .82) !important;
  border-bottom: 1px solid rgba(234, 214, 166, .13) !important;
  box-shadow: 0 10px 28px rgba(16, 13, 31, .18);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--champagne) !important;
}

/* Hero: slightly stronger violet, not neon. */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(145, 105, 255, .34), transparent 35%),
    radial-gradient(circle at 15% 86%, rgba(234, 214, 166, .13), transparent 38%),
    radial-gradient(circle at 92% 92%, rgba(92, 58, 160, .18), transparent 42%),
    linear-gradient(135deg, #0f0c20 0%, #1b1532 43%, #34274f 100%) !important;
}

@media (min-width: 1021px) {
  .hero-content {
    background: linear-gradient(135deg,
      rgba(22, 18, 42, .78) 0%,
      rgba(30, 23, 55, .64) 60%,
      rgba(43, 32, 72, .50) 100%) !important;
    border-color: rgba(222, 202, 255, .18) !important;
  }

  .hero-media img {
    border-color: rgba(222, 202, 255, .18) !important;
    box-shadow:
      0 34px 92px rgba(0,0,0,.32),
      0 0 0 12px rgba(222, 202, 255, .04) !important;
  }
}

/* Dark glass elements: add a subtle violet smoke. */
.artist-profile .profile-title-overlay.top-overlay {
  background: linear-gradient(90deg,
    rgba(23, 18, 43, .68),
    rgba(34, 26, 60, .38),
    rgba(34, 26, 60, .08)) !important;
  border-color: rgba(222, 202, 255, .13) !important;
}

.booking-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(145, 105, 255, .18), transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(234, 214, 166, .11), transparent 38%),
    linear-gradient(135deg, #0f0c20 0%, #1a142e 52%, #2b2243 100%) !important;
}

.booking-section .booking-copy {
  background: linear-gradient(135deg, rgba(24, 19, 45, .66), rgba(37, 29, 62, .44)) !important;
  border-color: rgba(222, 202, 255, .13) !important;
}

/* Footer should close the page in the same family. */
.site-footer {
  background: #0b0917 !important;
}

/* Gold/champagne accents tuned for violet. */
.eyebrow,
.hero-eyebrow,
.profile-title-overlay .eyebrow,
.section-heading .eyebrow,
.booking-copy .eyebrow {
  color: var(--champagne) !important;
}

.button-primary,
.hero-actions .button,
.hero-actions .button-primary,
.hero-actions .button-secondary,
.hero-actions .button-ghost {
  background: linear-gradient(135deg, #d8b869, #f0d89b) !important;
  border-color: rgba(240, 216, 155, .88) !important;
}

/* Marquee: keep the light glass but tune it a little toward champagne/plum. */
.capability-marquee {
  background: linear-gradient(90deg,
    rgba(250, 245, 236, .94),
    rgba(240, 230, 211, .98),
    rgba(250, 245, 236, .94)) !important;
  border-top-color: rgba(88, 60, 138, .12) !important;
  border-bottom-color: rgba(88, 60, 138, .16) !important;
}

.marquee-content span {
  color: rgba(45, 35, 58, .94) !important;
  border-color: rgba(120, 91, 160, .22) !important;
}

.marquee-content span:nth-child(4n+1) {
  color: rgba(91, 57, 136, .96) !important;
  border-color: rgba(145, 105, 255, .28) !important;
}

/* Lower mid overlay positions further. */
@media (min-width: 761px) {
  .profile-intro-card[data-overlay="left-mid"] .profile-title-overlay {
    top: 62% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay="right-mid"] .profile-title-overlay {
    top: 62% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 760px) {
  .profile-intro-card[data-overlay$="-mid"] .profile-title-overlay {
    top: 60% !important;
    transform: translateY(-50%) !important;
  }

  .profile-intro-card[data-overlay$="-low"] .profile-title-overlay {
    top: 66% !important;
    transform: translateY(-50%) !important;
  }
}


/* Draft 30: production copy cleanup, larger form typography, stronger two-window showreel. */

/* Form typography: make labels, placeholders and controls more readable. */
.booking-form label {
  font-size: clamp(15px, 1.05vw, 18px) !important;
  gap: 9px !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  font-size: clamp(15.5px, 1.05vw, 18px) !important;
  line-height: 1.45 !important;
  padding: 15px 16px !important;
}

.booking-form ::placeholder {
  font-size: inherit !important;
  opacity: .9 !important;
}

.booking-form .button {
  font-size: clamp(16px, 1.08vw, 19px) !important;
  padding: 14px 22px !important;
}

@media (max-width: 760px) {
  .booking-form label {
    font-size: 16px !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px !important;
    padding: 14px 15px !important;
  }

  .booking-form .button {
    font-size: 17px !important;
    width: 100% !important;
  }
}

/* Featured showreel: make media matter more.
   Two vertical windows sit together, text becomes more compact. */
.feature-video.magic-showreel,
.feature-video {
  grid-template-columns: minmax(420px, 0.98fr) minmax(320px, .82fr) !important;
  align-items: center !important;
}

.showreel-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  width: 100%;
}

.showreel-window {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 18px 54px rgba(0,0,0,.22);
}

.showreel-window video {
  width: 100% !important;
  aspect-ratio: 9 / 16;
  height: auto !important;
  max-height: 68vh !important;
  object-fit: cover;
  background: #000;
}

.showreel-label {
  position: absolute;
  z-index: 5;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,253,249,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.magic-showreel .feature-caption {
  padding: clamp(18px, 2.4vw, 30px) !important;
}

.magic-showreel .feature-caption p:not(.eyebrow) {
  max-width: 42ch !important;
}

/* The wrapper .video-shell is added by JS; keep showreel shells clean. */
.showreel-window .video-shell {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.showreel-window .video-shell video {
  display: block;
}

@media (max-width: 1020px) {
  .feature-video.magic-showreel,
  .feature-video {
    grid-template-columns: 1fr !important;
  }

  .showreel-video-grid {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .magic-showreel.feature-video {
    max-width: 360px !important;
  }

  .showreel-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .showreel-label {
    font-size: 9px;
    left: 8px;
    top: 8px;
    padding: 5px 8px;
  }

  .magic-showreel .feature-caption {
    padding: 16px 12px 14px !important;
  }
}

@media (max-width: 420px) {
  .showreel-video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
