@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@500;600;700&family=Tajawal:wght@400;500;600;700&display=swap");

:root {
  --primary: #c98279;
  --primary-dark: #a9635c;
  --secondary: #dfc0a8;
  --accent: #e3958c;
  --background: #f7ece3;
  --background-soft: #fff9f5;
  --surface: #ffffff;
  --surface-2: #f1dfd2;
  --text: #5a4032;
  --text-light: #8a7165;
  --border: #ead7ca;
  --brown: #442f26;
  --brown-soft: #745444;
  --danger: #a33b35;
  --shadow: 0 18px 54px rgba(92, 62, 45, 0.12);
  --shadow-soft: 0 12px 30px rgba(92, 62, 45, 0.08);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1220px;
  --header-height: 82px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  direction: rtl;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(223, 192, 168, .24), transparent 28rem),
    var(--background-soft);
  font-family: "Tajawal", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button,
input,
textarea,
select { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(201, 130, 121, .48);
  outline-offset: 4px;
  border-radius: 10px;
}

::selection {
  color: #fff;
  background: var(--primary-dark);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 100px 0;
  overflow: clip;
}

.section--soft { background: var(--background); }
.section--surface { background: var(--surface); }

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

.section-head h2,
.page-hero h1,
.featured-copy h2,
.about-copy h2,
.prose-card h2,
.points-card h2 {
  margin: 8px 0 0;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.section-head h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
.section-head p { margin: 10px 0 0; color: var(--text-light); max-width: 650px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
}
.text-link i { transition: transform .25s ease; }
.text-link:hover i { transform: translateX(-4px); }

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--brown);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 249, 245, .92);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(234, 215, 202, .85);
  background: rgba(255, 249, 245, .82);
  box-shadow: 0 8px 30px rgba(68, 47, 38, .07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
}
.wordmark__icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(201, 130, 121, .25);
}
.wordmark__copy { display: grid; line-height: 1.1; }
.wordmark__copy strong {
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: 1.08rem;
}
.wordmark__copy span { margin-top: 5px; color: var(--text-light); font-size: .78rem; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  position: relative;
  color: var(--brown-soft);
  font-size: .94rem;
  font-weight: 600;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--brown); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-mini { display: flex; align-items: center; gap: 6px; }
.social-mini a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--brown-soft);
  background: rgba(255,255,255,.68);
  transition: .22s ease;
}
.social-mini a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-2px);
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(169, 99, 92, .22);
}
.btn--primary:hover { background: #95574f; box-shadow: 0 14px 32px rgba(169, 99, 92, .28); }
.btn--soft {
  color: var(--brown);
  border-color: var(--border);
  background: var(--surface);
}
.btn--soft:hover { border-color: var(--primary); }
.btn--ghost {
  color: var(--brown);
  border-color: var(--border);
  background: transparent;
}
.btn--ghost:hover { background: rgba(255,255,255,.55); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle i { font-size: 1.15rem; }

.mobile-nav {
  position: fixed;
  z-index: 1200;
  inset: 0 auto 0 0;
  width: min(88vw, 390px);
  padding: 22px;
  transform: translateX(-105%);
  background: var(--background-soft);
  box-shadow: 25px 0 50px rgba(68, 47, 38, .16);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.nav-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(43, 30, 24, .42);
  backdrop-filter: blur(3px);
  transition: .25s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--background);
  cursor: pointer;
}
.mobile-nav__links {
  display: grid;
  gap: 4px;
  padding: 24px 0;
}
.mobile-nav__links a {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--brown);
  font-weight: 700;
}
.mobile-nav__links a:hover,
.mobile-nav__links a.is-active { background: var(--background); }
.mobile-nav__social {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 8px 0 24px;
}
.mobile-nav__social a {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.mobile-nav .btn { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 72px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 28%, rgba(227, 149, 140, .19), transparent 28rem),
    linear-gradient(135deg, #fff9f5 15%, #f6e8dd 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(169, 99, 92, .16);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 780px; height: 360px; left: -290px; top: -140px; transform: rotate(18deg); }
.hero::after { width: 670px; height: 300px; right: -260px; bottom: -180px; transform: rotate(-12deg); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(360px, .82fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}
.hero-copy { max-width: 720px; }
.hero-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(201, 130, 121, .24);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255,255,255,.55);
  font-weight: 700;
}
.hero h1 {
  margin: 0;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 span {
  display: block;
  margin-top: 17px;
  color: var(--primary-dark);
  font-size: .48em;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--brown-soft);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-descriptor {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 26px;
  color: var(--text-light);
  font-size: .9rem;
}
.hero-descriptor span:not(:last-child)::after {
  content: "•";
  margin-right: 14px;
  color: var(--primary);
}

.hero-art-wrap { position: relative; width: min(100%, 450px); margin-inline: auto; }
.hero-art-card {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.65);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(86, 62, 49, .20);
  transform: rotate(-1.2deg);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-art-card img { width: 100%; aspect-ratio: 1054 / 1492; object-fit: cover; }
.hero-badge {
  position: absolute;
  z-index: 5;
  top: 9%;
  right: -30px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(169,99,92,.2);
  border-radius: 50%;
  color: var(--brown);
  background: rgba(255, 249, 245, .88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  font-weight: 700;
  line-height: 1.25;
}
.hero-badge i { display: block; margin-bottom: 3px; color: var(--primary-dark); }
.waveform {
  position: absolute;
  z-index: 2;
  bottom: 13%;
  left: -45px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .66;
}
.waveform span {
  width: 4px;
  border-radius: 999px;
  background: var(--primary);
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 18px; animation-delay: -.4s; }
.waveform span:nth-child(2) { height: 40px; animation-delay: -.2s; }
.waveform span:nth-child(3) { height: 62px; }
.waveform span:nth-child(4) { height: 32px; animation-delay: -.15s; }
.waveform span:nth-child(5) { height: 52px; animation-delay: -.35s; }
.waveform span:nth-child(6) { height: 22px; animation-delay: -.1s; }
.waveform span:nth-child(7) { height: 44px; animation-delay: -.5s; }

@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-10px) rotate(-1.2deg); }
}
@keyframes wave {
  0%,100% { transform: scaleY(.65); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Latest */
.featured-episode {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}
.featured-video,
.episode-player {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #2b1e18;
}
.featured-copy h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.featured-copy > p:not(.episode-kicker) { margin: 18px 0 0; color: var(--text-light); }
.episode-kicker { margin: 14px 0 2px; color: var(--primary-dark); font-weight: 700; }
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--text-light);
  font-size: .92rem;
}
.featured-meta span { display: inline-flex; align-items: center; gap: 7px; }
.featured-meta i { color: var(--primary-dark); }

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  cursor: pointer;
  background: #2b1e18;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,21,17,.58), rgba(31,21,17,.04) 62%);
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.video-placeholder:hover img { transform: scale(1.03); }
.play-orbit {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  color: #fff;
  background: rgba(169,99,92,.88);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: transform .24s ease;
}
.video-placeholder:hover .play-orbit { transform: translate(-50%, -50%) scale(1.06); }
.video-placeholder__label {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  right: 22px;
  color: #fff;
  font-weight: 700;
}
.video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

/* Episode cards */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.episode-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(86, 62, 49, .055);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.episode-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,130,121,.55);
  box-shadow: var(--shadow-soft);
}
.episode-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--surface-2);
}
.episode-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .45s ease;
}
.episode-card:hover .episode-card__media img { transform: scale(1.03); }
.episode-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52, 34, 27, .38), transparent 55%);
}
.episode-card__play {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 25px rgba(0,0,0,.13);
}
.episode-card__badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255,249,245,.9);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  font-weight: 700;
}
.episode-card__body { padding: 22px; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--text-light);
  font-size: .8rem;
}
.meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.episode-card h3 {
  margin: 12px 0 7px;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.episode-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text-light);
  font-size: .94rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.episode-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.topic-chip {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--background);
  font-size: .78rem;
  font-weight: 700;
}
.episode-card .text-link { font-size: .85rem; }

/* Topics */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.topic-card {
  min-height: 160px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.topic-card:hover { transform: translateY(-3px); border-color: var(--primary); background: #fff; }
.topic-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-dark);
  background: var(--background);
  font-size: 1.15rem;
}
.topic-card strong {
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: 1.05rem;
}

/* Shorts */
.shorts-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.short-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--brown);
  box-shadow: var(--shadow-soft);
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.short-card:hover img { transform: scale(1.03); }
.short-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,24,19,.78), rgba(38,24,19,.02) 62%);
}
.short-card__platform {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(50,32,25,.48);
  backdrop-filter: blur(8px);
  font-size: .78rem;
}
.short-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: #fff;
  background: rgba(201,130,121,.82);
}
.short-card strong {
  position: absolute;
  right: 22px;
  bottom: 23px;
  left: 22px;
  color: #fff;
  font-family: "Alexandria", sans-serif;
  font-size: 1.15rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 8vw, 100px);
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  max-width: 500px;
}
.about-photo {
  overflow: hidden;
  border-radius: 40% 28px 38% 28px;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.about-photo-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -8%;
  border-radius: 50%;
  background: var(--secondary);
  opacity: .52;
}
.about-copy h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
.about-copy > p { margin: 22px 0 0; color: var(--text-light); font-size: 1.08rem; }
.pull-quote {
  margin: 30px 0;
  padding: 23px 26px;
  border-right: 3px solid var(--primary);
  border-radius: 16px 0 0 16px;
  color: var(--brown);
  background: var(--background);
  font-family: "Alexandria", sans-serif;
  font-size: 1.12rem;
}

/* Quote */
.quote-break {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.72), transparent 22rem),
    linear-gradient(135deg, #edd8c8, #f5e8de 55%, #e7b7b2);
}
.quote-break::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 300px;
  right: -200px;
  bottom: -180px;
  border: 1px solid rgba(169,99,92,.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.quote-break blockquote {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.45;
}
.quote-break p { position: relative; z-index: 2; margin: 20px 0 0; color: var(--brown-soft); font-weight: 700; }

/* YouTube */
.youtube-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 28px;
}
.youtube-featured {
  min-height: 100%;
  border-radius: var(--radius);
}
.youtube-side { display: grid; gap: 16px; align-content: start; }
.video-mini {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}
.video-mini .video-placeholder { border-radius: 0; }
.video-mini div:last-child { padding: 15px; }
.video-mini span { color: var(--primary-dark); font-size: .76rem; font-weight: 700; }
.video-mini h3 { margin: 4px 0 0; color: var(--brown); font-family: "Alexandria", sans-serif; font-size: 1rem; }
.channel-promo {
  min-height: 140px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--background);
}
.channel-promo > i:first-child {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #d93025;
}
.channel-promo strong { display: block; color: var(--brown); font-family: "Alexandria", sans-serif; }
.channel-promo span { display: block; margin-top: 4px; color: var(--text-light); font-size: .88rem; }

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.social-card {
  min-width: 0;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.social-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow-soft); }
.social-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brown);
}
.social-card__copy { min-width: 0; }
.social-card__copy strong { display: block; color: var(--brown); }
.social-card__copy span {
  display: block;
  overflow: hidden;
  color: var(--text-light);
  font-size: .82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.social-card__action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 700;
}

/* Story CTA */
.story-cta { padding: 88px 0; background: var(--surface); }
.story-cta__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: 32px;
  color: #fff;
  background: var(--brown);
}
.story-cta__inner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 220px;
  left: -130px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}
.story-cta__inner > * { position: relative; z-index: 2; }
.story-cta h2 { margin: 0; font-family: "Alexandria", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); }
.story-cta p { max-width: 740px; margin: 12px 0 0; color: rgba(255,255,255,.72); }

/* Footer */
.site-footer {
  padding: 58px 0 22px;
  color: rgba(255,255,255,.75);
  background: #36251e;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr .9fr;
  gap: 60px;
  padding-bottom: 38px;
}
.site-footer .wordmark__icon { background: var(--primary); }
.site-footer .wordmark__copy strong { color: #fff; }
.site-footer .wordmark__copy span { color: rgba(255,255,255,.62); }
.footer-about p { max-width: 430px; margin: 18px 0 0; }
.footer-col h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: "Alexandria", sans-serif;
  font-size: 1rem;
}
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.04);
}
.footer-social a:hover { background: var(--primary-dark); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: .85rem;
}

/* Internal page hero */
.page-hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #f5e5d9, #fff9f5);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 230px;
  right: -180px;
  top: -150px;
  border: 1px solid rgba(169,99,92,.15);
  border-radius: 50%;
  transform: rotate(8deg);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.page-hero p { max-width: 680px; margin: 18px auto 0; color: var(--text-light); }

/* Episodes page */
.filters {
  margin-bottom: 30px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}
.search-box { position: relative; }
.search-box i {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  color: var(--text-light);
}
.search-box input,
.filters select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--brown);
  background: var(--background-soft);
  outline: none;
}
.search-box input { padding: 0 48px 0 16px; }
.filters select { padding: 0 14px; }
.search-box input:focus,
.filters select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(201,130,121,.12); }
.result-count { color: var(--text-light); font-size: .9rem; white-space: nowrap; }

/* Episode detail */
.episode-detail__header {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding-bottom: 64px;
}
.episode-detail__art {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.episode-detail__art img { width: 100%; }
.episode-detail__intro h1 {
  margin: 12px 0 0;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.25;
}
.episode-detail__intro > p { margin: 20px 0 0; color: var(--text-light); font-size: 1.05rem; }
.share-row { display: flex; gap: 8px; margin-top: 26px; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  color: var(--brown);
  background: #fff;
  transition: .2s ease;
}
.icon-btn:hover { color: #fff; border-color: var(--primary-dark); background: var(--primary-dark); transform: translateY(-2px); }
.episode-player { margin-bottom: 54px; }
.card-surface { border: 1px solid var(--border); background: #fff; }
.episode-reading-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 24px;
}
.prose-card,
.points-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}
.prose-card h2,
.points-card h2 { font-size: 1.55rem; }
.prose-card p { color: var(--text-light); }
.points-card { background: var(--background); }
.points-card ul { margin: 20px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.points-card li { display: flex; align-items: flex-start; gap: 10px; }
.points-card i { margin-top: 7px; color: var(--primary-dark); }
.related-section { margin-top: 74px; }

/* About page */
.about-editorial {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: start;
}
.about-editorial__image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.about-editorial__image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-editorial__copy h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.4;
}
.about-editorial__copy p { color: var(--text-light); font-size: 1.06rem; }
.editorial-note {
  margin: 32px 0;
  padding: 26px;
  border-radius: 20px;
  background: var(--background);
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: 1.15rem;
}
.about-collage {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.about-collage img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
}
.about-collage img:first-child { object-position: center 30%; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 30px;
}
.contact-card,
.contact-side {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
}
.contact-card h2,
.contact-side h2 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Alexandria", sans-serif;
  font-size: 1.55rem;
}
.contact-card > p,
.contact-side > p { margin: 0 0 28px; color: var(--text-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--brown); font-weight: 700; font-size: .9rem; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--brown);
  background: var(--background-soft);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input,
.field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 160px; padding: 14px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(201,130,121,.12); }
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: var(--danger); }
.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: .9rem;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: 5px; accent-color: var(--primary-dark); }
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: #5e5030;
  background: #fff4cb;
  font-size: .88rem;
}
.form-status.is-visible { display: block; }
.contact-social-list { display: grid; gap: 10px; }
.contact-social-list a {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background-soft);
}
.contact-social-list a i { width: 24px; color: var(--primary-dark); text-align: center; }
.contact-side__image {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
}
.contact-side__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%; }

/* Misc */
.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  padding: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px dashed var(--border);
  border-radius: 22px;
  color: var(--text-light);
  text-align: center;
  background: rgba(255,255,255,.55);
}
.empty-state i { font-size: 1.8rem; color: var(--primary); }
.empty-state strong { color: var(--brown); }
.back-to-top {
  position: fixed;
  z-index: 900;
  left: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 12px 26px rgba(86,62,49,.22);
  cursor: pointer;
  transition: .22s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.toast {
  position: fixed;
  z-index: 1500;
  left: 50%;
  bottom: 26px;
  padding: 11px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1160px) {
  .desktop-nav { gap: 16px; }
  .social-mini { display: none; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }
  .desktop-nav,
  .header-actions .btn { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; padding: 58px 0 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-label,
  .button-row { margin-inline: auto; justify-content: center; }
  .hero-descriptor { justify-content: center; }
  .hero-art-wrap { width: min(72vw, 440px); }
  .featured-episode { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 42px; }
  .short-card { min-height: 450px; }
  .youtube-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .episode-detail__header { grid-template-columns: minmax(260px, .7fr) 1.3fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 28px; }
  .wordmark { min-width: 0; }
  .wordmark__icon { width: 38px; }
  .wordmark__copy strong { font-size: .96rem; }
  .wordmark__copy span { font-size: .72rem; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-descriptor span:not(:last-child)::after { margin-right: 8px; }
  .hero-descriptor { gap: 6px 8px; font-size: .78rem; }
  .button-row { width: 100%; }
  .button-row .btn { flex: 1 1 180px; }
  .hero-art-wrap { width: min(84vw, 410px); }
  .hero-badge { right: -10px; width: 82px; height: 82px; font-size: .84rem; }
  .waveform { left: -15px; }
  .featured-copy h2 { font-size: 2.05rem; }
  .episodes-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .shorts-track {
    width: calc(100% + 14px);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    padding: 2px 0 12px 14px;
  }
  .shorts-track::-webkit-scrollbar { display: none; }
  .short-card {
    flex: 0 0 min(78vw, 310px);
    min-height: 480px;
    scroll-snap-align: start;
  }
  .about-grid,
  .about-editorial { grid-template-columns: 1fr; }
  .about-photo-wrap { width: min(88%, 460px); margin-inline: auto; }
  .about-editorial__image { position: static; width: min(90%, 470px); margin-inline: auto; }
  .quote-break { padding: 82px 0; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .story-cta__inner { grid-template-columns: 1fr; }
  .story-cta__inner .btn { width: fit-content; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .filters { grid-template-columns: 1fr; }
  .result-count { padding-inline: 4px; }
  .episode-detail__header { grid-template-columns: 1fr; }
  .episode-detail__art { width: min(86%, 420px); margin-inline: auto; }
  .episode-reading-grid { grid-template-columns: 1fr; }
  .about-collage { grid-template-columns: 1fr; }
  .about-collage img { height: 340px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full,
  .checkbox-field,
  .form-actions { grid-column: auto; }
}

@media (max-width: 500px) {
  body { font-size: 16px; }
  .hero-label { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero h1 span { margin-top: 13px; }
  .hero-art-card { border-width: 5px; border-radius: 26px; }
  .topics-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 130px; }
  .social-grid { grid-template-columns: 1fr; }
  .play-orbit { width: 60px; height: 60px; }
  .story-cta { padding: 62px 0; }
  .story-cta__inner { padding: 32px 24px; border-radius: 24px; }
  .contact-card,
  .contact-side { padding: 22px 18px; }
  .back-to-top { left: 14px; bottom: 14px; }
}

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


/* =========================================================
   RESPONSIVE SYSTEM V4 — 2026-08-21
   Consolidated device behavior for 320px → 1920px.
   This block intentionally comes last to override legacy
   responsive rules without duplicating the base design.
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

/* ---------- Tablet / compact desktop ---------- */
@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  /* Critical header fix:
     hide the whole desktop actions container so it cannot become
     a third implicit grid item and push the hamburger into a new row. */
  .desktop-nav,
  .header-actions {
    display: none !important;
  }

  .header-inner {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
  }

  .header-inner > .wordmark {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
  }

  .menu-toggle {
    position: static !important;
    display: grid !important;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    transform: none !important;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin-inline: auto;
    text-align: center;
  }

  .hero-label {
    margin-inline: auto;
  }

  .hero .button-row,
  .hero-descriptor {
    justify-content: center;
  }

  .hero-art-wrap {
    width: min(58vw, 420px);
    margin-inline: auto;
  }

  .featured-episode,
  .youtube-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    max-width: 760px;
  }

  .episodes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: 44px;
  }

  .episode-detail__header {
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: 40px;
  }
}

/* ---------- Mobile portrait ---------- */
@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --radius: 22px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 12px;
  }

  .wordmark {
    gap: 9px;
  }

  .wordmark__icon {
    width: 36px;
  }

  .wordmark__copy strong {
    font-size: .94rem;
  }

  .wordmark__copy span {
    margin-top: 3px;
    font-size: .68rem;
  }

  .menu-toggle {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .mobile-nav {
    width: min(88vw, 360px);
    padding: 18px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  /* Hero: copy first, artwork second, no oversized poster. */
  .hero {
    padding: 34px 0 56px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    text-align: right;
  }

  .hero-art-wrap {
    order: 2;
    width: min(72vw, 330px);
    margin-inline: auto;
  }

  .hero-label {
    margin: 0 0 18px;
    padding: 8px 12px;
    font-size: .84rem;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.035em;
  }

  .hero h1 span {
    margin-top: 12px;
    font-size: .48em;
    line-height: 1.25;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-lead br {
    display: none;
  }

  .hero .button-row {
    width: 100%;
    justify-content: stretch;
    gap: 10px;
    margin-top: 24px;
  }

  .hero .button-row .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 47px;
    padding: 11px 14px;
    font-size: .9rem;
    white-space: nowrap;
  }

  .hero-descriptor {
    justify-content: flex-start;
    gap: 6px 8px;
    margin-top: 20px;
    font-size: .76rem;
    line-height: 1.65;
  }

  .hero-descriptor span:not(:last-child)::after {
    margin-right: 8px;
  }

  .hero-art-card {
    border-width: 5px;
    border-radius: 24px;
    animation-duration: 7s;
  }

  .hero-art-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1054 / 1492;
  }

  .hero-badge {
    top: 12px;
    right: -8px;
    width: 70px;
    height: 70px;
    font-size: .72rem;
  }

  .waveform {
    left: -8px;
    bottom: 12%;
    transform: scale(.78);
    transform-origin: left center;
  }

  /* Content grids */
  .episodes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .episode-card__body {
    padding: 20px;
  }

  .episode-card__media {
    aspect-ratio: 16 / 10.5;
  }

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

  .topic-card {
    min-height: 142px;
    padding: 18px;
  }

  .shorts-track {
    width: calc(100% + 14px);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 0 12px 14px;
  }

  .shorts-track::-webkit-scrollbar {
    display: none;
  }

  .short-card {
    flex: 0 0 min(76vw, 300px);
    min-height: 440px;
    scroll-snap-align: start;
  }

  .about-grid,
  .about-editorial {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap,
  .about-editorial__image {
    position: static;
    width: min(86vw, 430px);
    margin-inline: auto;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .pull-quote {
    margin: 24px 0;
    padding: 20px;
    font-size: 1rem;
  }

  .quote-break {
    padding: 78px 0;
  }

  .quote-break blockquote {
    font-size: clamp(1.8rem, 8.4vw, 3rem);
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-cta {
    padding: 64px 0;
  }

  .story-cta__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .story-cta__inner .btn {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  /* Internal pages */
  .page-hero {
    padding: 58px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .page-hero p {
    margin-top: 14px;
    font-size: .96rem;
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .result-count {
    padding-inline: 4px;
  }

  .episode-detail__header {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 44px;
  }

  .episode-detail__art {
    width: min(72vw, 330px);
    margin-inline: auto;
  }

  .episode-detail__intro h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .episode-reading-grid {
    grid-template-columns: 1fr;
  }

  .prose-card,
  .points-card {
    padding: 24px 20px;
  }

  .about-collage {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-collage img {
    height: min(84vw, 390px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full,
  .checkbox-field,
  .form-actions {
    grid-column: auto;
  }

  .contact-card,
  .contact-side {
    padding: 24px 20px;
  }

  .back-to-top {
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

/* ---------- Small phones: 320–430px ---------- */
@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.1rem);
  }

  .hero-lead {
    font-size: .95rem;
  }

  .hero-art-wrap {
    width: min(70vw, 300px);
  }

  .hero-badge {
    width: 64px;
    height: 64px;
    font-size: .68rem;
  }

  .featured-copy h2 {
    font-size: 1.9rem;
  }

  .topics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topic-card {
    min-height: 128px;
    padding: 16px;
  }

  .topic-card strong {
    font-size: .95rem;
  }

  .short-card {
    flex-basis: min(78vw, 285px);
    min-height: 410px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .story-cta__inner {
    padding: 30px 22px;
  }
}

/* ---------- Very narrow phones ---------- */
@media (max-width: 360px) {
  .wordmark__copy strong {
    font-size: .86rem;
  }

  .wordmark__copy span {
    font-size: .62rem;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

  .hero .button-row .btn {
    flex-basis: 100%;
  }

  .hero-art-wrap {
    width: min(74vw, 275px);
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Phone / tablet landscape ---------- */
@media (max-width: 980px) and (orientation: landscape) and (max-height: 620px) {
  :root {
    --header-height: 64px;
  }

  .hero {
    padding: 32px 0 44px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(190px, .75fr);
    gap: 34px;
  }

  .hero-copy {
    order: 1;
    text-align: right;
  }

  .hero-art-wrap {
    order: 2;
    width: min(29vw, 250px);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: .9rem;
  }

  .hero .button-row {
    margin-top: 18px;
    justify-content: flex-start;
  }

  .hero-descriptor {
    margin-top: 14px;
    justify-content: flex-start;
  }

  .waveform,
  .hero-badge {
    display: none;
  }
}

/* ---------- Large desktop ---------- */
@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }

  .hero-grid {
    gap: 110px;
  }

  .hero-art-wrap {
    width: min(100%, 470px);
  }
}

@media (min-width: 1800px) {
  :root {
    --container: 1320px;
  }

  .section {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}


/* =========================================================
   EPISODE SHORTS + MOBILE DETAIL V5
   ========================================================= */

.video-placeholder--short,
.video-iframe--short {
  aspect-ratio: 9 / 16;
  width: min(100%, 420px);
  margin-inline: auto;
}

.featured-video:has(.video-placeholder--short),
.episode-player:has(.video-placeholder--short),
.episode-player:has(.video-iframe--short) {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 25%, rgba(201,130,121,.20), transparent 28rem),
    #2b1e18;
}

.episode-player .video-placeholder--short,
.episode-player .video-iframe--short {
  border-radius: 22px;
  overflow: hidden;
}

@media (max-width: 760px) {
  .episode-detail__header {
    display: flex !important;
    flex-direction: column;
    gap: 26px;
  }

  .episode-detail__intro--copy {
    order: 1;
    width: 100%;
  }

  .episode-detail__art--media {
    order: 2;
    width: min(72vw, 310px);
  }

  .episode-detail__intro h1 {
    margin-top: 8px;
    font-size: clamp(2rem, 9.2vw, 2.85rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .episode-detail__intro > p {
    margin-top: 16px;
    font-size: .98rem;
    line-height: 1.85;
  }

  .featured-meta {
    gap: 8px 14px;
    margin-top: 20px;
    font-size: .84rem;
  }

  .share-row {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .episode-player {
    margin-bottom: 38px;
  }

  .featured-video:has(.video-placeholder--short),
  .episode-player:has(.video-placeholder--short),
  .episode-player:has(.video-iframe--short) {
    padding: 12px;
  }

  .video-placeholder--short,
  .video-iframe--short {
    width: min(82vw, 350px);
    max-height: 72svh;
  }
}

@media (max-width: 430px) {
  .episode-detail__intro h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
  }

  .video-placeholder--short,
  .video-iframe--short {
    width: min(84vw, 330px);
  }
}


/* ===== Intro sound control ===== */
.intro-sound-button {
  position: fixed;
  z-index: 1450;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(86,62,49,.94);
  box-shadow: 0 14px 34px rgba(68,47,38,.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.intro-sound-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
@media (max-width: 760px) {
  .intro-sound-button {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 9px 13px;
    font-size: .84rem;
  }
}

/* =========================================================
   MOBILE VISUAL QA V9 — 2026-09-02
   Compact cards, clean footer rhythm, non-overlapping controls
   ========================================================= */
@media (max-width: 760px) {
  :root { --header-height: 66px; }
  .site-header { height: var(--header-height); }
  .header-inner { gap: 10px; }
  .menu-toggle { flex-basis: 44px; width: 44px; height: 44px; border-radius: 14px; }
  .wordmark__icon { width: 42px; height: 42px; }
  .wordmark__copy strong { font-size: .94rem; line-height: 1.2; }
  .wordmark__copy span { margin-top: 1px; font-size: .66rem; }

  /* Prevent sticky header from clipping anchored section headings. */
  section[id] { scroll-margin-top: calc(var(--header-height) + 14px); }
  .section { padding-block: 54px; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: clamp(1.75rem, 7.5vw, 2.3rem); }

  /* Episode cards: landscape editorial crop instead of a full poster-height card. */
  .episodes-grid { gap: 16px; }
  .episode-card { border-radius: 22px; }
  .episode-card__media { aspect-ratio: 16 / 10 !important; }
  .episode-card__media img {
    width: 100%; height: 100% !important;
    object-fit: cover; object-position: center 30%;
  }
  .episode-card__badge { top: 12px; right: 12px; padding: 6px 9px; font-size: .74rem; }
  .episode-card__play { left: 14px; bottom: 14px; width: 42px; height: 42px; }
  .episode-card__body { padding: 17px 16px 18px; }
  .episode-card h3 { margin: 9px 0 5px; font-size: 1.08rem; line-height: 1.45; }
  .episode-card p { font-size: .88rem; line-height: 1.75; -webkit-line-clamp: 2; }
  .episode-card__footer { margin-top: 13px; }

  /* Topics: compact, aligned 2-column cards. */
  .topics-grid { gap: 10px; }
  .topic-card {
    min-height: 112px !important;
    padding: 14px !important;
    border-radius: 19px;
    justify-content: flex-start;
    gap: 18px;
  }
  .topic-card__icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 13px; font-size: 1rem; }
  .topic-card strong { margin-top: auto; font-size: .9rem; line-height: 1.45; }

  /* Social links: one premium compact row per network. */
  .social-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .social-card {
    min-height: 0;
    padding: 13px 14px;
    grid-template-columns: 48px minmax(0,1fr) auto;
    gap: 11px;
    border-radius: 18px;
  }
  .social-card__icon { width: 48px; height: 48px; border-radius: 14px; }
  .social-card__copy strong { font-size: .96rem; }
  .social-card__copy span { margin-top: 2px; font-size: .78rem; }
  .social-card__action {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    padding: 0;
    border: 0;
    gap: 6px;
    font-size: .78rem;
  }

  /* Footer: remove dead vertical space and keep it intentionally compact. */
  .story-cta { padding: 48px 0; }
  .site-footer { padding: 42px 0 18px; }
  .footer-grid { gap: 24px !important; padding-bottom: 26px; }
  .footer-about p { margin-top: 12px; }
  .footer-col h2 { margin-bottom: 11px; }
  .footer-links { gap: 6px; }
  .footer-social { flex-wrap: wrap; }
  .footer-social a { width: 40px; height: 40px; }
  .footer-bottom { padding-top: 16px; gap: 5px !important; font-size: .78rem; }

  /* Keep floating control away from cards and browser chrome. */
  .back-to-top {
    left: 16px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    width: 42px !important;
    height: 42px !important;
    box-shadow: 0 8px 20px rgba(86,62,49,.18);
  }
  .site-footer ~ .back-to-top { bottom: max(18px, env(safe-area-inset-bottom)) !important; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topic-card { min-height: 106px !important; padding: 13px !important; gap: 14px; }
  .topic-card strong { font-size: .86rem !important; }
  .episode-card__media { aspect-ratio: 16 / 9.6 !important; }
  .social-card { padding: 12px 13px; }
}

@media (max-width: 360px) {
  .topics-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .topic-card { min-height: 102px !important; }
  .topic-card strong { font-size: .8rem !important; }
  .social-card__action span { display: none; }
}


/* =========================================================
   V10 — SMART PUBLISHER + EPISODE MOBILE REFINEMENT
   ========================================================= */
@media (max-width: 760px) {
  .episode-detail__header { gap: 20px; margin-bottom: 22px; }
  .episode-detail__header:has(.episode-detail__intro:only-child),
  .episode-detail__header:not(:has(.episode-detail__art)) { grid-template-columns: 1fr; }
  .episode-detail__intro { padding-top: 4px; }
  .episode-detail__intro h1 { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.18; }
  .episode-player { margin-top: 18px; margin-bottom: 28px; padding: 12px; border-radius: 24px; }
  .episode-player .video-placeholder--short,
  .episode-player .video-iframe--short { width: min(78vw, 320px); max-height: 68svh; }
  .episode-reading-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 0; }
  .prose-card, .points-card { padding: 24px 20px; border-radius: 24px; min-height: auto; }
  .prose-card h2, .points-card h2 { margin-bottom: 12px; }
  .points-card ul { margin-top: 12px; gap: 10px; }
}
@media (max-width: 430px) {
  .episode-player .video-placeholder--short,
  .episode-player .video-iframe--short { width: min(80vw, 300px); }
  .prose-card, .points-card { padding: 22px 18px; }
}


/* =========================================================
   V13 — FULL VISUAL QA / RESPONSIVE SYSTEM
   2026-09-02
   Unified desktop, iPad/tablet, mobile proportions
   ========================================================= */

/* Global rhythm / clipping */
html { scroll-padding-top: 92px; }
body { overflow-x: clip; }
main { min-width: 0; }
.container { width: min(1180px, calc(100% - 40px)); }
.section { padding-block: clamp(64px, 7vw, 96px); }
.section-head { gap: 18px; margin-bottom: 30px; }
.section-head h2 { line-height: 1.25; }
img { max-width: 100%; height: auto; }

/* Header: keep one clean row and prevent accidental wrapping */
.site-header { min-height: 78px; }
.header-inner { min-height: 78px; align-items: center; }
.wordmark { flex: 0 0 auto; }
.desktop-nav { min-width: 0; }
.desktop-nav a { white-space: nowrap; }
.header-actions { flex: 0 0 auto; }

/* Hero */
.hero { padding-block: clamp(58px, 7vw, 96px); }
.hero-grid { align-items: center; }
.hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 760px; line-height: 1.12; }
.hero-lead { max-width: 700px; }
.hero-art-wrap { min-width: 0; }
.hero-art-card { width: min(100%, 470px); margin-inline: auto; }

/* Episode cards: consistent crop and card rhythm */
.episodes-grid { gap: 22px; align-items: stretch; }
.episode-card { height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.episode-card__media { aspect-ratio: 4 / 3 !important; min-height: 0; }
.episode-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.episode-card__body { display: flex; flex: 1; flex-direction: column; gap: 10px; }
.episode-card__footer { margin-top: auto; }

/* Topics */
.topics-grid { gap: 14px; }
.topic-card { min-height: 150px; padding: 22px; align-content: space-between; }
.topic-card__icon { flex: 0 0 auto; }

/* Shorts */
.shorts-track { gap: 18px; }
.short-card { min-height: 0; aspect-ratio: 9 / 16; border-radius: 24px; }
.short-card img { width: 100%; height: 100%; object-fit: cover; }

/* YouTube section — prevent giant Shorts on desktop/tablet */
.youtube-layout {
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}
#youtube-featured { width: 100%; max-width: 360px; margin-inline: auto; }
#youtube-featured .video-placeholder,
#youtube-featured .video-iframe { width: 100%; max-width: 360px; margin-inline: auto; }
.youtube-side { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.video-mini { min-width: 0; height: 100%; }
.video-mini .video-placeholder,
.video-mini .video-iframe { width: 100% !important; max-width: none !important; margin: 0 !important; aspect-ratio: 9 / 16 !important; }
.video-mini .video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.video-mini div:last-child { padding: 13px 14px 15px; }
.video-mini h3 { line-height: 1.55; overflow-wrap: anywhere; }
.video-placeholder--short,
.video-iframe--short { width: min(100%, 360px); max-height: none !important; aspect-ratio: 9 / 16 !important; object-fit: cover; }

/* Social cards */
.social-grid { align-items: stretch; }
.social-card { min-height: 118px; align-content: center; }
.social-card__action { margin-top: auto; }

/* About + contact */
.about-grid,
.about-editorial,
.contact-grid { align-items: start; }
.about-photo,
.about-editorial__image,
.contact-side__image { overflow: hidden; }
.about-photo img,
.about-editorial__image img,
.contact-side__image img { width: 100%; height: 100%; object-fit: cover; }
.contact-card, .contact-side { min-width: 0; }
.contact-card input, .contact-card select { min-height: 48px; }
.contact-card textarea { min-height: 150px; }

/* Internal page hero */
.page-hero { padding-block: clamp(58px, 7vw, 88px); }
.page-hero h1 { line-height: 1.18; }

/* Episode detail */
#episode-detail { max-width: 1080px; }
.episode-detail__header { align-items: center; }
.episode-detail__intro h1 { max-width: 850px; line-height: 1.18; overflow-wrap: anywhere; }
.episode-player { display: grid; place-items: center; padding: clamp(18px, 3vw, 30px); }
.episode-player .video-placeholder--short,
.episode-player .video-iframe--short { width: min(100%, 390px) !important; }
.episode-reading-grid { align-items: stretch; }
.prose-card, .points-card { height: auto; min-height: 0; }
.points-card:empty { display: none; }
.related-section { margin-top: clamp(54px, 7vw, 88px); }

/* CTA + footer */
.story-cta { padding-block: clamp(54px, 7vw, 84px); }
.story-cta__inner { min-height: 220px; }
.footer-grid { align-items: start; }
.footer-about p { line-height: 1.85; }
.footer-bottom { gap: 16px; flex-wrap: wrap; }

/* Back-to-top should never cover content */
.back-to-top { width: 48px; height: 48px; left: 22px; bottom: max(22px, env(safe-area-inset-bottom)); }

/* ---------- TABLET / iPad portrait + landscape ---------- */
@media (min-width: 761px) and (max-width: 1180px) {
  html { scroll-padding-top: 84px; }
  .container { width: min(100% - 44px, 1040px); }
  .section { padding-block: 70px; }

  .site-header, .header-inner { min-height: 74px; }
  .header-inner { gap: 18px; }
  .desktop-nav { gap: clamp(14px, 2vw, 26px); }
  .desktop-nav a { font-size: .9rem; }
  .header-actions .btn { padding-inline: 18px; }
  .social-mini { gap: 6px; }
  .social-mini a { width: 38px; height: 38px; }

  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 42px; }
  .hero-art-card { width: min(100%, 400px); }

  .episodes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px; }
  .episode-card__media { aspect-ratio: 16 / 11 !important; }

  .topics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .topic-card { min-height: 128px; padding: 18px; }

  .shorts-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible !important;
    padding: 0 !important;
  }
  .short-card { width: 100% !important; min-width: 0 !important; max-width: 300px; justify-self: center; }

  .youtube-layout { grid-template-columns: 1fr; gap: 24px; }
  #youtube-featured { max-width: 300px; }
  #youtube-featured .video-placeholder,
  #youtube-featured .video-iframe { max-width: 300px; }
  .youtube-side { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .video-mini .video-placeholder,
  .video-mini .video-iframe { max-height: 470px; }

  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .social-card { min-height: 108px; padding: 16px; }

  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .about-editorial { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .contact-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 28px; }

  .episode-detail__header { grid-template-columns: 1fr !important; gap: 24px; }
  .episode-detail__intro { max-width: 850px; }
  .episode-player .video-placeholder--short,
  .episode-player .video-iframe--short { width: min(100%, 340px) !important; }
  .episode-reading-grid { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 22px; }

  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr !important; gap: 34px !important; }
}

/* iPad portrait: nav switches to compact menu, but page grids stay tablet-sized */
@media (min-width: 761px) and (max-width: 900px) {
  .desktop-nav, .header-actions { display: none !important; }
  .menu-toggle { display: grid !important; position: static !important; }
  .header-inner { display: flex !important; justify-content: space-between; }
  .hero-grid { grid-template-columns: 1fr; text-align: right; }
  .hero-copy { max-width: 720px; }
  .hero-art-card { width: min(60vw, 390px); }
  .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .contact-grid, .about-grid, .about-editorial { grid-template-columns: 1fr; }
  .contact-side, .about-editorial__image, .about-photo-wrap { width: min(100%, 620px); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-about { grid-column: 1 / -1; }
}

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(100% - 28px, 620px); }
  .section { padding-block: 50px; }
  .section-head { margin-bottom: 22px; align-items: flex-end; }
  .section-head h2 { font-size: clamp(1.65rem, 8vw, 2.2rem); }

  .site-header, .header-inner { min-height: 68px; }
  .hero { padding-block: 42px 54px; }
  .hero-grid { gap: 28px !important; }
  .hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.1rem) !important; line-height: 1.12 !important; }
  .hero-lead { font-size: .98rem; line-height: 1.9; }
  .hero-art-card { width: min(78vw, 330px) !important; }

  .episodes-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
  .episode-card { border-radius: 22px; }
  .episode-card__media { aspect-ratio: 16 / 10 !important; }
  .episode-card__body { padding: 16px !important; }
  .episode-card h3 { font-size: 1.05rem; line-height: 1.55; }
  .episode-card p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
  .topic-card { min-height: 104px !important; padding: 13px !important; gap: 12px; }
  .topic-card__icon { width: 42px !important; height: 42px !important; }
  .topic-card strong { font-size: .84rem !important; line-height: 1.45; }

  .shorts-track { display: flex !important; gap: 12px; overflow-x: auto !important; scroll-snap-type: x mandatory; }
  .short-card { flex: 0 0 min(72vw, 280px) !important; width: auto !important; min-width: 0 !important; scroll-snap-align: start; }

  .youtube-layout { grid-template-columns: 1fr; gap: 20px; }
  #youtube-featured { max-width: min(78vw, 300px); }
  #youtube-featured .video-placeholder,
  #youtube-featured .video-iframe { max-width: min(78vw, 300px); }
  .youtube-side { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-mini { border-radius: 18px; }
  .video-mini .video-placeholder,
  .video-mini .video-iframe { max-height: none !important; }
  .video-mini div:last-child { padding: 10px 11px 12px; }
  .video-mini h3 { font-size: .82rem; line-height: 1.5; }

  .social-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .social-card { min-height: 82px !important; padding: 12px 13px !important; border-radius: 18px; grid-template-columns: 46px minmax(0,1fr) auto !important; }
  .social-card__icon { width: 44px !important; height: 44px !important; }
  .social-card__action { grid-column: auto !important; border-top: 0 !important; padding-top: 0 !important; margin-top: 0 !important; font-size: 0; }
  .social-card__action i { font-size: .9rem; }

  .page-hero { padding-block: 42px 46px !important; }
  .page-hero h1 { font-size: clamp(2rem, 11vw, 2.8rem) !important; }
  .page-hero p { margin-top: 12px; line-height: 1.8; }

  .about-grid, .about-editorial, .contact-grid { gap: 24px !important; }
  .about-photo-wrap, .about-editorial__image, .contact-side__image { width: min(86vw, 360px) !important; margin-inline: auto; }

  .contact-card { padding: 18px !important; border-radius: 22px; }
  .contact-card .form-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .contact-card input, .contact-card select { min-height: 46px; }
  .contact-card textarea { min-height: 120px; }

  #episode-detail { width: 100%; }
  .episode-detail__header { gap: 16px !important; margin-bottom: 18px !important; }
  .episode-detail__intro h1 { font-size: clamp(2rem, 10.5vw, 2.75rem) !important; line-height: 1.18 !important; }
  .episode-detail__intro p { font-size: .97rem; line-height: 1.9; }
  .featured-meta { gap: 10px 14px; }
  .share-row { gap: 8px; }
  .episode-player { padding: 14px !important; border-radius: 22px; }
  .episode-player .video-placeholder--short,
  .episode-player .video-iframe--short { width: min(76vw, 290px) !important; }
  .episode-reading-grid { grid-template-columns: 1fr !important; gap: 14px !important; margin-top: 18px; }
  .prose-card, .points-card { padding: 20px !important; border-radius: 22px; min-height: 0 !important; }
  .prose-card h2, .points-card h2 { font-size: 1.55rem; }
  .related-section { margin-top: 48px; }

  .story-cta { padding-block: 44px !important; }
  .story-cta__inner { min-height: 0; padding: 28px 22px !important; border-radius: 24px; }
  .story-cta h2 { font-size: 1.8rem; }

  .site-footer { padding: 38px 0 18px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; padding-bottom: 24px !important; }
  .footer-about p { margin-top: 12px; }
  .footer-links { gap: 6px; }
  .footer-bottom { display: grid; gap: 8px; text-align: right; }

  .back-to-top { width: 44px !important; height: 44px !important; left: 14px !important; bottom: max(16px, env(safe-area-inset-bottom)) !important; }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 24px); }
  .youtube-side { grid-template-columns: 1fr 1fr; gap: 10px; }
  #youtube-featured { max-width: min(80vw, 280px); }
  .short-card { flex-basis: min(76vw, 270px) !important; }
  .episode-player .video-placeholder--short,
  .episode-player .video-iframe--short { width: min(78vw, 275px) !important; }
}

@media (max-width: 360px) {
  .youtube-side { grid-template-columns: 1fr; }
  .video-mini { max-width: 250px; margin-inline: auto; }
  .topics-grid { grid-template-columns: 1fr 1fr !important; }
}
