:root {
  --ink: #07111f;
  --ink-2: #101c2c;
  --ink-3: #1d2c40;
  --paper: #f5f2ec;
  --paper-2: #ebe7df;
  --white: #fffdf9;
  --mist: #b9c8dc;
  --muted: #6f7b8c;
  --line: rgba(7, 17, 31, .13);
  --line-dark: rgba(255, 255, 255, .14);
  --youtube: #ff174d;
  --spotify: #1ed760;
  --apple: #a45cff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(1280px, calc(100vw - 80px));
  --header-h: 86px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 30px 80px rgba(7, 17, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; width: 1em; height: 1em; fill: currentColor; }
::selection { background: #bfd2ea; color: var(--ink); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 14px; top: 14px; z-index: 300;
  transform: translateY(-150%);
  background: var(--white); color: var(--ink);
  padding: 12px 18px; border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: var(--header-h);
  padding: 0 max(40px, calc((100vw - 1390px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7, 17, 31, .93);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(0,0,0,.18); background: rgba(7, 17, 31, .97); }
.brand { text-decoration: none; display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.brand-dom { font-family: var(--serif); font-size: 38px; letter-spacing: .12em; line-height: 1; }
.brand-talks { font-family: var(--serif); font-size: 23px; font-style: italic; color: #91a8c8; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav a:hover { color: #fff; transform: translateY(-1px); }
.site-nav .nav-feature {
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
}
.site-nav .nav-feature::before { content: ""; width: 6px; height: 6px; display: inline-block; border-radius: 50%; margin-right: 8px; vertical-align: 1px; }
.site-nav .nav-youtube::before { background: var(--youtube); }
.site-nav .nav-podcast::before { background: var(--apple); }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  color: var(--white);
  background:
    linear-gradient(rgba(125,160,205,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,160,205,.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 34%, #1a2d47 0, #091523 37%, #06101c 70%);
  background-size: 96px 96px, 96px 96px, auto;
  display: grid;
  align-items: center;
  padding: 68px 0 78px;
}
.hero-grid { width: var(--page); margin: auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .82fr); gap: clamp(50px, 7vw, 110px); align-items: center; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9fb4d0;
}
.section-kicker { font-size: clamp(15px, 1.25vw, 19px); color: #8ca6c7; margin-bottom: 24px; }
.section-kicker-light { color: #d3e0f0; }
.hero h1, .section-heading h2, .podcast-copy h2, .about-copy h2, .host-copy h2, .studio-copy h2, .contact-heading h2, .final-cta h2, .archive-header h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.045em;
  margin: 0;
}
.hero h1 { font-size: clamp(72px, 7.1vw, 120px); }
.hero h1 em { color: #a8bbd4; font-weight: 500; }
.hero-intro { max-width: 690px; margin: 34px 0 0; color: rgba(255,255,255,.67); font-size: clamp(17px, 1.3vw, 21px); line-height: 1.75; }
.hero-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--ink); box-shadow: 0 14px 32px rgba(0,0,0,.15); }
.button-primary svg { width: 15px; }
.button-ghost { border-color: rgba(255,255,255,.17); color: #fff; background: rgba(255,255,255,.02); }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: var(--white); color: var(--ink); }
.button-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }

.platform-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 42px; }
.platform {
  appearance: none;
  width: 100%; min-height: 78px;
  padding: 15px 18px;
  display: flex; align-items: center; gap: 14px;
  color: #fff; text-align: left;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.platform:hover { transform: translateY(-2px); background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.24); }
.platform-icon { width: 37px; height: 37px; flex: 0 0 37px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); }
.platform-icon svg { width: 21px; height: 21px; }
.platform-youtube .platform-icon { color: var(--youtube); }
.platform-spotify .platform-icon { color: var(--spotify); }
.platform-apple .platform-icon { color: var(--apple); }
.platform strong { display: block; font-size: 14px; line-height: 1.2; }
.platform small { display: block; font-size: 11px; color: rgba(255,255,255,.48); margin-top: 5px; }
.platform.is-disabled { opacity: .72; }

.hero-art { min-width: 0; }
.cover-frame {
  position: relative;
  width: min(100%, 480px);
  margin-inline: auto;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 38px 85px rgba(0,0,0,.36);
}
.cover-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.hero-note { width: min(100%, 480px); margin: 16px auto 0; color: rgba(255,255,255,.53); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--youtube); box-shadow: 0 0 0 5px rgba(255,23,77,.12); margin-right: 9px; }

.marquee { overflow: hidden; background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 25px; font-style: italic; color: rgba(255,255,255,.72); }
.marquee i { width: 5px; height: 5px; border-radius: 50%; background: #8298b6; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section, .podcast-section, .about-section, .host-section, .contact-section { width: var(--page); margin-inline: auto; }
.channel-section { padding: 125px 0 120px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr); gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .podcast-copy h2, .about-copy h2, .host-copy h2, .contact-heading h2 { font-size: clamp(72px, 7.5vw, 126px); }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 470px; }

.youtube-shell { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(7,17,31,.1); box-shadow: var(--shadow); }
.youtube-banner {
  position: relative;
  min-height: 360px;
  padding: 56px 62px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(117,153,198,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117,153,198,.055) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, #283c59, #07111f 60%);
  background-size: 82px 82px, 82px 82px, auto;
}
.banner-kicker { display: block; margin-bottom: 24px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #b9cae0; font-weight: 700; }
.youtube-banner strong { display: block; max-width: 720px; font-family: var(--serif); font-size: clamp(50px, 5vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.banner-mark { position: absolute; right: 3%; bottom: -19%; font-family: var(--serif); font-size: 310px; line-height: 1; color: rgba(255,255,255,.055); }
.channel-profile { padding: 27px 34px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); }
.channel-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 3px solid #fff; box-shadow: 0 5px 16px rgba(0,0,0,.15); }
.channel-avatar img { width: 100%; height: 100%; object-fit: cover; }
.channel-meta h3 { margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1; }
.channel-meta p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.channel-actions { display: flex; gap: 10px; align-items: center; }
.youtube-button { background: var(--youtube); color: #fff; }
.channel-tabs { display: flex; gap: 30px; padding: 18px 34px 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; overflow-x: auto; }
.channel-tabs span { padding-bottom: 15px; white-space: nowrap; }
.channel-tabs .is-current { color: var(--ink); border-bottom: 2px solid var(--ink); }
.video-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; padding: 28px 34px 38px; }
.video-preview { min-width: 0; }
.video-preview a { text-decoration: none; }
.video-thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 15px; overflow: hidden; background: #172a42; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.video-preview:hover .video-thumb img { transform: scale(1.03); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.47)); }
.play-mini { position: absolute; z-index: 2; left: 17px; bottom: 15px; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(7,17,31,.72); backdrop-filter: blur(8px); }
.play-mini svg { width: 15px; }
.video-preview h4 { margin: 13px 0 4px; font-size: 15px; line-height: 1.4; }
.video-preview p { margin: 0; color: var(--muted); font-size: 12px; }

.podcast-section { padding: 125px 0; display: grid; grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: clamp(60px, 8vw, 130px); align-items: center; }
.podcast-cover { padding: 13px; border-radius: 34px; background: var(--ink); box-shadow: var(--shadow); }
.podcast-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 23px; }
.large-copy { margin: 32px 0 0; font-family: var(--serif); font-size: clamp(29px, 3vw, 44px); line-height: 1.15; letter-spacing: -.02em; }
.audio-player { min-height: 82px; display: grid; grid-template-columns: auto auto 1fr auto; gap: 16px; align-items: center; margin-top: 38px; padding: 13px 18px; border-radius: 17px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(7,17,31,.09); }
.player-button { width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; cursor: pointer; }
.player-button svg { width: 17px; }
.player-copy strong, .player-copy span { display: block; white-space: nowrap; }
.player-copy strong { font-size: 13px; }
.player-copy span { font-size: 10px; color: var(--muted); }
.player-line { height: 3px; background: #dfe3e8; overflow: hidden; }
.player-line span { display: block; width: 23%; height: 100%; background: #85a3c8; }
.player-time { font-size: 10px; color: #8995a5; }
.podcast-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 14px; }
.podcast-platform { appearance: none; min-height: 86px; padding: 17px 20px; display: flex; align-items: center; gap: 16px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 17px; cursor: pointer; }
.podcast-platform svg { width: 31px; height: 31px; }
.spotify-card svg { color: var(--spotify); }
.apple-card svg { color: var(--apple); }
.podcast-platform strong, .podcast-platform small { display: block; }
.podcast-platform small { color: var(--muted); font-size: 11px; margin-top: 3px; }
.archive-link { margin-top: 23px; padding: 0 0 5px; background: none; border: 0; border-bottom: 1px solid var(--ink); font-weight: 700; cursor: pointer; }

.about-section { position: relative; min-height: 680px; padding: 120px 0; display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-mark { font-family: var(--serif); font-size: min(28vw, 420px); line-height: .75; color: #dfe4e8; letter-spacing: -.08em; transform: translateX(-7%); }
.about-copy { padding-top: 20px; }
.about-lead { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(31px, 3vw, 46px); line-height: 1.15; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 45px; color: var(--muted); }
.about-columns p { margin: 0; }

.host-section { padding: 125px 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(55px, 7vw, 110px); align-items: center; }
.host-image { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); }
.host-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.host-copy h2 span { font-size: .55em; color: #74869d; font-style: italic; }
.host-button { margin-top: 32px; color: #fff; background: var(--ink); text-transform: none; letter-spacing: 0; font-size: 13px; }

.production-card-section { padding: 0 max(28px, calc((100vw - 1450px) / 2)) 120px; }
.production-card { position: relative; margin: 0; height: min(66vw, 690px); min-height: 430px; overflow: hidden; border-radius: 34px; background: #111; box-shadow: var(--shadow); }
.production-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.03) 35%, rgba(0,0,0,.54) 100%), linear-gradient(transparent 55%, rgba(0,0,0,.35)); }
.production-card img { width: 100%; height: 100%; object-fit: cover; }
.production-card figcaption { position: absolute; z-index: 2; inset: 0; padding: 46px 54px; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.production-card figcaption span { font-size: clamp(16px, 1.5vw, 22px); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; border-bottom: 3px solid #b8cee8; }
.production-card figcaption strong { max-width: 560px; text-align: right; font-family: var(--serif); font-size: clamp(55px, 5vw, 86px); font-weight: 500; line-height: .9; }

.studio-section { position: relative; min-height: 780px; color: #fff; overflow: hidden; }
.studio-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.studio-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,9,15,.38) 0%, rgba(4,9,15,.58) 46%, rgba(4,9,15,.88) 100%), linear-gradient(0deg, rgba(4,9,15,.45), transparent 45%); }
.studio-inner { position: relative; z-index: 2; width: var(--page); min-height: 780px; margin: auto; padding: 105px 0; display: grid; grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr); gap: clamp(60px, 8vw, 130px); align-items: center; }
.studio-logo-card { min-height: 330px; padding: 44px; display: grid; place-items: center; border-radius: 30px; background: rgba(250,248,243,.92); box-shadow: 0 30px 80px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.studio-logo-card img { width: 100%; max-width: 470px; }
.studio-copy h2 { font-size: clamp(64px, 6.5vw, 105px); }
.studio-copy .large-copy { color: rgba(255,255,255,.88); }
.studio-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.studio-details span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 12px; }

.contact-section { padding: 125px 0; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(60px, 8vw, 130px); align-items: start; }
.contact-heading > p:last-child { max-width: 500px; color: var(--muted); font-size: 18px; margin-top: 30px; }
.contact-form { padding: 38px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; border: 0; padding: 0; margin: 0 0 27px; }
.purpose-card { position: relative; min-height: 132px; padding: 20px; display: flex; gap: 14px; border: 1px solid var(--line); border-radius: 17px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.purpose-card:has(input:checked) { border-color: var(--ink); background: #f3f6f9; }
.purpose-card input { position: absolute; opacity: 0; pointer-events: none; }
.purpose-dot { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 4px; border-radius: 50%; border: 1px solid #8f9bac; box-shadow: inset 0 0 0 4px #fff; }
.purpose-card:has(input:checked) .purpose-dot { background: var(--ink); border-color: var(--ink); }
.purpose-card strong, .purpose-card small { display: block; }
.purpose-card strong { font-size: 14px; }
.purpose-card small { margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form > label, .form-row label { display: block; margin-top: 16px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #d8dce2; border-radius: 13px; padding: 13px 15px; color: var(--ink); background: #fbfbfa; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #869dbb; box-shadow: 0 0 0 4px rgba(134,157,187,.14); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.honeypot { position: absolute !important; left: -9999px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.form-footer .button-primary { background: var(--ink); color: #fff; }

.final-cta { padding: 110px 0; color: #fff; background: radial-gradient(circle at 75% 30%, #243955, var(--ink) 58%); text-align: center; }
.final-cta-inner { width: var(--page); margin: auto; }
.final-cta h2 { font-size: clamp(75px, 9vw, 145px); }
.final-actions { justify-content: center; }
.site-footer { min-height: 120px; padding: 28px max(40px, calc((100vw - 1390px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; background: #050c15; color: rgba(255,255,255,.6); }
.footer-brand { justify-self: start; color: #fff; }
.footer-brand .brand-dom { font-size: 28px; }
.footer-brand .brand-talks { font-size: 18px; }
.site-footer p { margin: 0; text-align: center; font-size: 12px; }
.back-top { justify-self: end; color: #fff; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.archive-modal { position: fixed; inset: 0; z-index: 250; }
.archive-modal[hidden] { display: none; }
.archive-backdrop { position: absolute; inset: 0; background: rgba(2,7,13,.72); backdrop-filter: blur(8px); }
.archive-panel { position: absolute; top: 0; right: 0; width: min(760px, 94vw); height: 100%; overflow-y: auto; background: var(--paper); box-shadow: -30px 0 80px rgba(0,0,0,.28); padding: 50px 48px 60px; transform: translateX(100%); transition: transform .34s cubic-bezier(.2,.75,.2,1); }
.archive-modal.is-open .archive-panel { transform: translateX(0); }
.archive-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.archive-header h2 { font-size: clamp(58px, 7vw, 88px); }
.archive-close { width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 31px; line-height: 1; cursor: pointer; }
.archive-intro { color: var(--muted); margin: 22px 0 0; }
.archive-status { min-height: 28px; margin: 24px 0 12px; color: var(--muted); font-size: 13px; }
.archive-list { display: grid; gap: 12px; }
.archive-item { display: grid; grid-template-columns: 180px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 13px; color: inherit; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, border-color .2s ease; }
.archive-item:hover { transform: translateY(-2px); border-color: #9eabbc; }
.archive-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 11px; background: var(--ink-2); }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-copy { min-width: 0; }
.archive-copy time { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.archive-copy h3 { margin: 5px 0 4px; font-size: 15px; line-height: 1.35; }
.archive-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.archive-arrow { font-size: 23px; }
.archive-more { margin: 22px auto 0; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 350; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 999px; color: #fff; background: #111b29; box-shadow: 0 15px 40px rgba(0,0,0,.25); font-size: 13px; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: min(100% - 48px, 980px); }
  .site-header { padding-inline: 24px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 10px; }
  .hero-grid { grid-template-columns: 1.05fr .8fr; gap: 42px; }
  .platform-strip { grid-template-columns: 1fr; max-width: 520px; }
  .platform { min-height: 68px; }
  .channel-actions { flex-direction: column; align-items: stretch; }
  .channel-actions .button { min-height: 46px; }
  .about-section { grid-template-columns: .55fr 1.45fr; }
  .studio-inner { grid-template-columns: .8fr 1.2fr; gap: 55px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; --page: calc(100% - 36px); }
  .site-header { height: var(--header-h); }
  .brand-dom { font-size: 31px; }
  .brand-talks { font-size: 20px; }
  .menu-toggle { display: grid; gap: 7px; width: 46px; height: 46px; place-content: center; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto; height: calc(100svh - var(--header-h)); padding: 34px 22px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(7,17,31,.99); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a, .site-nav .nav-feature { padding: 18px 5px; border: 0; border-bottom: 1px solid rgba(255,255,255,.11); border-radius: 0; font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -.02em; text-transform: none; }
  .site-nav .nav-feature::before { width: 8px; height: 8px; vertical-align: 5px; }

  .hero { min-height: auto; padding: 58px 0 70px; }
  .hero-grid, .section-heading, .podcast-section, .host-section, .studio-inner, .contact-section { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; width: min(100%, 520px); margin: 15px auto 0; }
  .hero h1 { font-size: clamp(62px, 17vw, 92px); }
  .hero-intro { font-size: 16px; }
  .platform-strip { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .platform { min-height: 90px; flex-direction: column; justify-content: center; text-align: center; padding: 12px 6px; gap: 7px; }
  .platform small { display: none; }
  .cover-frame { width: min(100%, 500px); }

  .channel-section { padding: 90px 0; }
  .section-heading { gap: 20px; margin-bottom: 38px; }
  .section-heading h2, .podcast-copy h2, .about-copy h2, .host-copy h2, .contact-heading h2 { font-size: clamp(62px, 15vw, 92px); }
  .section-heading > p { font-size: 16px; }
  .youtube-banner { min-height: 310px; padding: 38px 32px; }
  .channel-profile { grid-template-columns: auto 1fr; }
  .channel-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .video-preview-grid { grid-template-columns: 1fr 1fr; }
  .video-preview:last-child { display: none; }

  .podcast-section { padding: 90px 0; gap: 50px; }
  .podcast-cover { width: min(100%, 540px); margin: auto; }
  .about-section { width: 100%; padding: 90px 18px; grid-template-columns: 1fr; min-height: auto; }
  .about-mark { position: absolute; top: 70px; right: -10px; font-size: 260px; opacity: .55; }
  .about-copy { position: relative; z-index: 2; width: min(100%, 760px); margin: auto; }
  .about-columns { gap: 28px; }
  .host-section { padding: 90px 0; gap: 45px; }
  .host-image { width: min(100%, 680px); }
  .production-card-section { padding-bottom: 90px; }
  .production-card { min-height: 520px; }
  .production-card figcaption { padding: 34px; }
  .studio-inner { padding: 90px 0; gap: 45px; }
  .studio-logo-card { width: min(100%, 540px); min-height: 250px; }
  .contact-section { padding: 90px 0; gap: 45px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .back-top { justify-self: center; }
  .archive-item { grid-template-columns: 145px minmax(0,1fr) auto; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 28px); }
  .site-header { padding-inline: 15px; }
  .brand-dom { font-size: 27px; }
  .brand-talks { font-size: 18px; }
  .hero { padding-top: 45px; }
  .eyebrow { font-size: 11px; }
  .section-kicker { font-size: 15px; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(58px, 18vw, 76px); }
  .hero-intro { margin-top: 25px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .platform-strip { gap: 7px; margin-top: 28px; }
  .platform { min-width: 0; min-height: 78px; border-radius: 14px; }
  .platform strong { font-size: 11px; }
  .platform-icon { width: 31px; height: 31px; flex-basis: 31px; }
  .platform-icon svg { width: 18px; height: 18px; }
  .cover-frame { padding: 8px; border-radius: 25px; }
  .cover-frame img { border-radius: 18px; }
  .hero-note { padding-left: 7px; }
  .marquee-track { gap: 18px; }
  .marquee span { font-size: 21px; }

  .channel-section, .podcast-section, .host-section, .contact-section { padding-block: 75px; }
  .section-heading h2, .podcast-copy h2, .about-copy h2, .host-copy h2, .contact-heading h2 { font-size: clamp(55px, 16.5vw, 72px); }
  .youtube-shell { border-radius: 22px; }
  .youtube-banner { min-height: 310px; padding: 30px 24px; }
  .youtube-banner strong { font-size: 45px; }
  .banner-mark { font-size: 190px; }
  .channel-profile { padding: 20px; grid-template-columns: 55px 1fr; }
  .channel-avatar { width: 55px; height: 55px; }
  .channel-meta h3 { font-size: 27px; }
  .channel-meta p { font-size: 10px; }
  .channel-actions { grid-template-columns: 1fr; }
  .channel-tabs { padding-inline: 20px; gap: 22px; }
  .video-preview-grid { grid-template-columns: 1fr; padding: 22px 20px 28px; }
  .video-preview:nth-child(n+2) { display: none; }
  .large-copy { font-size: 29px; }
  .audio-player { grid-template-columns: auto 1fr auto; gap: 10px; padding: 11px; }
  .player-line { display: none; }
  .podcast-platforms { grid-template-columns: 1fr; }
  .about-section { padding-block: 75px; }
  .about-lead { font-size: 30px; }
  .about-columns { grid-template-columns: 1fr; }
  .host-copy h2 span { font-size: .5em; }
  .host-button { font-size: 11px; padding-inline: 18px; }
  .production-card-section { padding-inline: 14px; padding-bottom: 75px; }
  .production-card { min-height: 510px; height: 135vw; border-radius: 23px; }
  .production-card img { object-position: 60% center; }
  .production-card figcaption { padding: 25px 22px; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  .production-card figcaption span { font-size: 14px; }
  .production-card figcaption strong { font-size: 48px; text-align: left; }
  .studio-section, .studio-inner { min-height: 800px; }
  .studio-background { object-position: 45% center; }
  .studio-overlay { background: linear-gradient(0deg, rgba(4,9,15,.96) 0%, rgba(4,9,15,.82) 50%, rgba(4,9,15,.34) 100%); }
  .studio-inner { align-content: end; padding-block: 70px; }
  .studio-logo-card { min-height: 190px; padding: 28px; border-radius: 22px; }
  .studio-copy h2 { font-size: 54px; }
  .purpose-grid, .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 23px 18px; border-radius: 22px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer p { min-height: 20px; }
  .final-cta { padding: 82px 0; }
  .final-cta h2 { font-size: 65px; }
  .archive-panel { width: 100%; padding: 30px 16px 45px; }
  .archive-item { grid-template-columns: 112px minmax(0, 1fr); gap: 12px; }
  .archive-arrow { display: none; }
  .archive-copy h3 { font-size: 13px; }
  .archive-copy p { display: none; }
}

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

/* --- v5 refinements --- */
.podcast-section { align-items: start; }
.podcast-cover {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(145,168,200,.22), transparent 24%),
    linear-gradient(rgba(117,153,198,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117,153,198,.05) 1px, transparent 1px),
    radial-gradient(circle at 75% 28%, #21344f, #07111f 64%);
  background-size: auto, 68px 68px, 68px 68px, auto;
}
.podcast-graphic {
  min-height: 100%;
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: #fff;
}
.podcast-graphic-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #b5c7dd;
}
.podcast-graphic-circle {
  width: min(250px, 58%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.025), 0 30px 70px rgba(0,0,0,.22);
}
.podcast-graphic-circle svg { width: 42%; height: 42%; color: #d9e5f3; }
.podcast-wave {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 58px;
}
.podcast-wave span {
  display: block;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dbe7f7, #6c88b0);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05);
}
.podcast-wave span:nth-child(1), .podcast-wave span:nth-child(7) { height: 22px; }
.podcast-wave span:nth-child(2), .podcast-wave span:nth-child(6) { height: 38px; }
.podcast-wave span:nth-child(3), .podcast-wave span:nth-child(5) { height: 52px; }
.podcast-wave span:nth-child(4) { height: 68px; }
.podcast-graphic p { max-width: 360px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; }
.podcast-latest { margin-top: 30px; }
.podcast-latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.podcast-latest-head h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}
.archive-link-inline { margin-top: 0; flex: 0 0 auto; }
.podcast-latest-list { display: grid; gap: 12px; }
.podcast-latest-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 14px 18px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.podcast-latest-item:hover { transform: translateY(-2px); border-color: #9eabbc; }
.podcast-latest-item::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e3550, #07111f 65%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.podcast-latest-item strong, .podcast-latest-item small, .podcast-latest-meta { display: block; }
.podcast-latest-meta { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.podcast-latest-item strong { margin-top: 3px; font-size: 15px; }
.podcast-latest-item small { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.podcast-latest-action { font-size: 12px; font-weight: 700; white-space: nowrap; }
.podcast-latest-item.is-placeholder .podcast-latest-action { color: var(--muted); }

.about-section {
  width: var(--page);
  min-height: auto;
  padding: 120px 0;
  display: block;
  overflow: visible;
}
.about-copy { width: min(100%, 920px); padding-top: 0; }
.about-copy h2 { max-width: 850px; }
.about-lead { max-width: 980px; }
.about-columns p { font-size: 16px; }

.host-image-full img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.production-card {
  height: auto;
  min-height: 0;
}
.production-card::after {
  background: linear-gradient(90deg, rgba(0,0,0,.02) 30%, rgba(0,0,0,.34) 100%), linear-gradient(transparent 50%, rgba(0,0,0,.18));
}
.production-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.production-card figcaption { inset: auto 0 0 0; }

.studio-section {
  position: relative;
  min-height: auto;
  color: var(--ink);
  background: linear-gradient(180deg, #f0ece5 0%, var(--paper) 100%);
  padding: 118px 0 120px;
  overflow: visible;
}
.studio-top {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 6vw, 110px);
  align-items: center;
}
.studio-brand-panel {
  min-height: 250px;
  padding: 36px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: var(--shadow);
}
.studio-brand-panel img { width: min(100%, 360px); }
.studio-copy .section-kicker { color: #7d95b6; }
.studio-copy h2 { font-size: clamp(60px, 6vw, 100px); }
.studio-copy .large-copy { color: var(--ink); }
.studio-details span {
  border-color: rgba(7,17,31,.13);
  color: var(--ink-2);
  background: rgba(255,255,255,.45);
}
.studio-showcase {
  width: min(100% - 56px, 1450px);
  margin: 44px auto 0;
  overflow: hidden;
  border-radius: 34px;
  background: #111;
  box-shadow: var(--shadow);
}
.studio-showcase img {
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .studio-top { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 860px) {
  .podcast-cover { width: min(100%, 620px); margin: 0 auto; }
  .podcast-graphic { min-height: 420px; }
  .podcast-latest-head { align-items: flex-start; flex-direction: column; }
  .about-section { padding: 90px 0; }
  .studio-section { padding: 90px 0; }
  .studio-top { grid-template-columns: 1fr; }
  .studio-showcase { width: min(100% - 36px, 1000px); }
}

@media (max-width: 600px) {
  .podcast-graphic { min-height: 330px; padding: 28px 24px; }
  .podcast-graphic-circle { width: min(190px, 64%); }
  .podcast-latest-item { grid-template-columns: 1fr; align-items: start; gap: 8px; }
  .podcast-latest-item::before { width: 34px; height: 34px; }
  .podcast-latest-action { margin-top: 2px; }
  .about-section { padding-block: 75px; }
  .production-card { border-radius: 23px; }
  .production-card figcaption { padding: 24px 22px; }
  .production-card figcaption strong { font-size: 46px; }
  .studio-section { padding: 75px 0; }
  .studio-brand-panel { min-height: 170px; padding: 24px; border-radius: 22px; }
  .studio-showcase { width: calc(100% - 28px); border-radius: 23px; }
}


/* ===== Version 6 fixes ===== */
.podcast-cover {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.podcast-graphic {
  width: 100%;
  min-height: 420px;
  padding: 42px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  text-align: left;
}
.podcast-graphic-circle {
  width: clamp(150px, 38%, 210px);
  margin-top: 6px;
}
.podcast-graphic-circle svg path { fill: currentColor; }
.podcast-graphic p {
  max-width: 420px;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1.6;
}

.about-section {
  width: var(--page);
}
.about-copy {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 24px clamp(48px, 7vw, 130px);
  align-items: start;
}
.about-copy .section-kicker,
.about-copy h2 {
  grid-column: 1;
}
.about-copy .section-kicker {
  margin: 0;
}
.about-copy h2 {
  max-width: 520px;
  margin: 8px 0 0;
}
.about-copy .about-lead,
.about-copy .about-columns {
  grid-column: 2;
  max-width: 780px;
}
.about-copy .about-lead {
  margin: 86px 0 0;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}
.about-columns p {
  margin: 0;
}

.studio-section {
  background: linear-gradient(180deg, #f0ece5 0%, var(--paper) 100%);
}
.studio-top {
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.studio-brand-panel {
  width: 100%;
  max-width: 390px;
  min-height: 0;
  justify-self: start;
}
.studio-copy {
  color: var(--ink) !important;
}
.studio-copy .section-kicker {
  color: #7d95b6 !important;
}
.studio-copy h2,
.studio-copy .large-copy {
  color: var(--ink) !important;
}
.studio-copy .large-copy {
  max-width: 850px;
  color: var(--ink-2) !important;
}
.studio-details span {
  color: var(--ink-2);
  background: rgba(255,255,255,.72);
}
.studio-showcase {
  margin-top: 54px;
}

@media (max-width: 1100px) {
  .about-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-copy .section-kicker,
  .about-copy h2,
  .about-copy .about-lead,
  .about-copy .about-columns {
    grid-column: 1;
    max-width: none;
  }
  .about-copy .about-lead {
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .podcast-cover,
  .podcast-graphic {
    min-height: 340px;
  }
  .podcast-graphic {
    padding: 30px 26px;
  }
  .about-columns {
    grid-template-columns: 1fr;
  }
  .studio-brand-panel {
    max-width: none;
  }
}


/* ===== Version 7 — transparent Middle Floor logo ===== */
.studio-brand-panel {
  max-width: 470px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}
.studio-brand-panel img {
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(7,17,31,.08));
}
@media (max-width: 860px) {
  .studio-brand-panel {
    width: min(100%, 520px);
    max-width: 520px;
    justify-self: start;
  }
}
@media (max-width: 600px) {
  .studio-brand-panel {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .studio-brand-panel img {
    max-width: 100%;
  }
}

/* --- v8 podcast section simplification --- */
.podcast-section {
  display: block;
}
.podcast-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .98fr);
  gap: 20px clamp(40px, 5vw, 84px);
  align-items: start;
}
.podcast-copy > .section-kicker,
.podcast-copy > h2,
.podcast-copy > .large-copy {
  grid-column: 1;
}
.podcast-copy > .section-kicker {
  margin-bottom: 8px;
}
.podcast-copy > h2 {
  align-self: end;
}
.podcast-copy > .large-copy {
  margin-top: 0;
  max-width: 720px;
}
.podcast-copy > .audio-player,
.podcast-copy > .podcast-platforms,
.podcast-copy > .podcast-latest {
  grid-column: 2;
}
.podcast-copy > .audio-player {
  margin-top: 4px;
}
.podcast-latest {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .podcast-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .podcast-copy > .section-kicker,
  .podcast-copy > h2,
  .podcast-copy > .large-copy,
  .podcast-copy > .audio-player,
  .podcast-copy > .podcast-platforms,
  .podcast-copy > .podcast-latest {
    grid-column: 1;
  }
  .podcast-copy > .large-copy {
    margin-top: 0;
  }
  .podcast-copy > .audio-player {
    margin-top: 18px;
  }
}


/* --- v9 studio logo compaction + mobile fix --- */
.studio-top {
  grid-template-columns: minmax(180px, .46fr) minmax(0, 1fr);
  align-items: start;
}
.studio-brand-panel {
  align-self: start;
  justify-self: start;
  width: min(100%, 280px);
  max-width: 280px;
  margin: 10px 0 0;
}
.studio-brand-panel img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}
.studio-copy {
  align-self: start;
}

@media (max-width: 860px) {
  .studio-top {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .studio-brand-panel {
    width: 120px;
    max-width: 120px;
    margin: 4px 0 0;
  }
  .studio-brand-panel img {
    max-width: 120px;
  }
  .studio-copy h2 {
    font-size: clamp(38px, 9vw, 62px);
  }
  .studio-copy .large-copy {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .studio-section {
    padding: 62px 0 72px;
  }
  .studio-top.section {
    width: min(100% - 28px, 1000px);
    margin-inline: auto;
  }
  .studio-top {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }
  .studio-brand-panel {
    width: 96px;
    max-width: 96px;
    margin: 0;
  }
  .studio-brand-panel img {
    max-width: 96px;
    filter: none;
  }
  .studio-copy .section-kicker {
    margin-bottom: 10px;
  }
  .studio-copy h2 {
    font-size: clamp(34px, 10.5vw, 54px);
    line-height: .97;
  }
  .studio-details {
    margin-top: 18px;
    gap: 10px;
  }
  .studio-showcase {
    margin-top: 30px;
  }
}


/* --- v11 desktop-only podcast split layout --- */
/*
  Desktop only: tools/episodes on the left, editorial intro on the right.
  Existing HTML, IDs, links and JavaScript hooks are unchanged.
*/
@media (min-width: 1024px) {
  .podcast-section {
    display: block;
  }

  .podcast-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(390px, 1fr);
    grid-template-areas: "tools intro";
    gap: clamp(64px, 7vw, 124px);
    align-items: start;
  }

  .podcast-tools {
    grid-area: tools;
    min-width: 0;
    padding-top: 0;
  }

  .podcast-intro {
    grid-area: intro;
    min-width: 0;
    align-self: start;
  }

  .podcast-intro .section-kicker {
    margin-bottom: 24px;
  }

  .podcast-intro h2 {
    max-width: 100%;
  }

  .podcast-intro .large-copy {
    max-width: 610px;
    margin-top: 34px;
  }

  .podcast-tools .audio-player {
    margin-top: 0;
  }

  .podcast-tools .podcast-platforms {
    margin-top: 14px;
  }

  .podcast-tools .podcast-latest {
    margin-top: 30px;
  }
}

/* Preserve the current tablet/mobile order and presentation exactly. */
@media (max-width: 1023px) {
  .podcast-copy,
  .podcast-intro,
  .podcast-tools {
    display: block;
  }

  .podcast-tools {
    padding-top: 0;
  }

  .podcast-tools .audio-player {
    margin-top: 18px;
  }
}


/* --- v12 desktop-only Middle Floor production partner panel --- */
.studio-partner-label {
  display: none;
}

.studio-logo-picture {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .studio-top {
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
    gap: clamp(64px, 7vw, 118px);
    align-items: center;
  }

  .studio-brand-panel {
    width: 100%;
    max-width: 440px;
    min-height: 210px;
    margin: 0;
    padding: 30px 34px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    gap: 22px;
    background: rgba(255, 253, 249, .82);
    border: 1px solid rgba(7, 17, 31, .10);
    border-radius: 28px;
    box-shadow: 0 22px 58px rgba(7, 17, 31, .10);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .studio-partner-label {
    display: block;
    margin: 0;
    color: #7d8ba0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
  }

  .studio-logo-picture {
    width: auto;
    max-width: 100%;
  }

  .studio-brand-panel img {
    display: block;
    width: clamp(280px, 23vw, 330px);
    max-width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    filter: none;
  }

  .studio-copy {
    align-self: center;
  }
}

/* --- v13 protected content layer --- */
.protected-content,
.protected-text {
  -webkit-user-select: none;
  user-select: none;
}

.protected-content img,
.protected-media {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* Preserve normal editing, pasting and text selection inside form fields. */
.protected-content input,
.protected-content textarea,
.protected-content select,
.protected-content [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Links and controls remain fully interactive. */
.protected-content a,
.protected-content button,
.protected-content label {
  -webkit-touch-callout: default;
}

/* --- v13 mobile-only Middle Floor profile badge --- */
@media (max-width: 767px) {
  .production-card-section {
    padding-bottom: 0;
  }

  .studio-section {
    padding-top: 28px;
  }

  .studio-top.section {
    width: min(100% - 28px, 1000px);
    margin-inline: auto;
  }

  .studio-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .studio-brand-panel {
    order: 0;
    width: 116px;
    height: 116px;
    max-width: 116px;
    min-height: 116px;
    margin: 0 auto 28px;
    padding: 12px;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    background: #f8f5ee;
    border: 1px solid rgba(7, 17, 31, .12);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(7, 17, 31, .09);
    overflow: hidden;
  }

  .studio-partner-label {
    display: none;
  }

  .studio-logo-picture {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }

  .studio-brand-panel img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    object-fit: contain;
    filter: none;
  }

  .studio-copy {
    order: 1;
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .studio-copy .section-kicker {
    margin-top: 0;
  }
}

/* v15: platform cards are direct links */
a.platform,
a.podcast-platform {
  color: inherit;
  text-decoration: none;
}
