:root{
  --black:#0b0b0d;
  --black-2:#111114;
  --white:#ffffff;
  --off:#f6f6f6;
  --gold:#d6b35e;       /* warm gold */
  --gold-2:#b7923a;     /* deeper gold */
  --text:#141418;
  --muted:#6c6c75;

  --shadow: 0 16px 50px rgba(0,0,0,.28);
  --radius: 18px;
  --border: 1px solid rgba(255,255,255,.12);
  --border-dark: 1px solid rgba(10,10,10,.10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--off);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .9; }

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

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 20px;
  background: rgba(10,10,12,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--white);
}
.brand.small{ opacity:.95; }
.brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(214,179,94,.14);
  border: 1px solid rgba(214,179,94,.38);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .04em;
}
.brand-name{
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .95;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links a{ padding: 8px 10px; border-radius: 999px; }
.nav-links a:hover{ background: rgba(255,255,255,.06); }

.nav-toggle{
  display:none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: rgba(255,255,255,.85);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-gold{
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #151515;
}
.btn-outline{
  background: transparent;
  border: 1px solid rgba(214,179,94,.55);
  color: var(--gold);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.10);
}
.btn-full{ width:100%; }

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* each slide fills the hero */
.hero-slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: top center; /* <-- key */
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: contrast(1.1) saturate(.9);
  opacity: 0;
  transition: opacity 900ms ease;
}

/* active slide fades in */
.hero-slide.is-active{
  opacity: 1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 15% 25%, rgba(214,179,94,.16), transparent 55%),
    linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.25)),
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.78));
  pointer-events:none;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 30px;
  padding: 110px 0 70px;
  min-height: 92vh;
}

.hero-left{
  max-width: 650px;
}
.eyebrow{
  margin:0 0 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.hero-title{
  margin: 0 0 12px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.02;
  text-transform: uppercase;
}
.hero-title span{
  color: var(--gold);
}
.hero-subtitle{
  margin: 0 0 22px;
  max-width: 520px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-platforms{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 8px 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
}
.hero-platforms a{ padding: 6px 8px; border-radius: 999px; white-space: nowrap; }
.hero-platforms a:hover{ background: rgba(255,255,255,.06); }
.dot{
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: rgba(214,179,94,.9);
  display:inline-block;
}

.hero-vertical{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-end;
  opacity: .9;
}
.vertical-word{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  color: rgba(255,255,255,.35);
}
.vertical-word.gold{
  color: rgba(214,179,94,.55);
}

.hero-scroll{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  letter-spacing: .22em;
  font-size: 10px;
}
.hero-scroll .line{
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.22);
}

/* STRIPS / SECTIONS */
.strip{
  padding: 60px 0;
}
.strip-light{ background: var(--off); color: var(--text); }
.strip-dark{ background: var(--black-2); color: var(--white); }

.strip-head{
  max-width: 760px;
  margin-bottom: 22px;
}

.section{
  padding: 80px 0;
}
.section-light{ background: var(--off); }
.section-dark{ background: var(--black); color: var(--white); }

.section-head{
  max-width: 760px;
  margin-bottom: 22px;
}

.section-title{
  margin:0 0 10px;
  font-size: 28px;
  letter-spacing: .02em;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
}
.section-lead{
  margin:0;
  color: var(--muted);
  max-width: 720px;
}
.section-dark .section-lead{ color: rgba(255,255,255,.72); }

/* ICON GRID */
.icon-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.icon-card{
  background: var(--white);
  border: var(--border-dark);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(214,179,94,.14);
  border: 1px solid rgba(214,179,94,.34);
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 10px;
}
.icon-card h3{ margin: 0 0 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .10em; }
.icon-card p{ margin:0; color: var(--muted); font-size: 14px; }

/* STATS */
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.stat{
  text-align:center;
  padding: 18px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.ring{
  width: 84px;
  height: 84px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(214,179,94,.35);
  box-shadow: inset 0 0 0 10px rgba(214,179,94,.08);
}
.ring span{
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .06em;
}
.stat p{
  margin:0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.stats-note{
  margin: 14px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align:center;
}

/* SPLIT LAYOUT */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:start;
}

/* ABOUT */
.bullets{ margin-top: 16px; display:grid; gap: 10px; }
.bullet{ display:flex; gap: 10px; align-items:flex-start; }
.bullet-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,179,94,.15);
}
.about-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px; }
.about-card{
  background: var(--white);
  border: var(--border-dark);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.about-card h3{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--gold-2);
}
.about-card p{ margin:0 0 12px; color: var(--muted); }
.signature{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #1c1c20;
}



/* =========================
   EPISODES (card layout)
========================= */

.episodes-head{
  text-align:center;
  margin: 0 auto 34px;
  max-width: 780px;
}

.episodes-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.episodes-title{
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* 2-col grid */
.episodes-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  align-items: start;
}

/* Card — fixed height so all cards are uniform before expanding */
.episode{
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  border: var(--border-dark);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  height: 210px;
  transition: height .35s ease, box-shadow .2s ease;
  overflow: hidden;
}

.episode.is-expanded{
  height: auto;
  overflow: visible;
  box-shadow: 0 20px 56px rgba(0,0,0,.14);
}

/* Square thumbnail */
.episode-media{
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
  height: 100%;
  min-height: 0;
}

.episode-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text column */
.episode-body{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

/* Title — max 2 lines */
.episode-h3{
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}
.episode.is-expanded .episode-h3{
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}

/* Description — 2 lines by default (1-line title), 1 line when title wraps */
.episode-desc{
  flex-shrink: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin: 0;
}

.episode.title-multiline .episode-desc{
  -webkit-line-clamp: 1;
}

.episode.is-expanded .episode-desc{
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

/* Description text */
.episode-p{
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* More / Less — own line below description */
.episode-expand{
  display: block;
  width: fit-content;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-2);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.episode-expand:hover{ opacity: .7; }

.episode-expand .arrow{
  display: inline-block;
  font-size: 9px;
  margin-left: 2px;
  transition: transform .2s ease;
  vertical-align: middle;
}
.episode.is-expanded .episode-expand .arrow{
  transform: rotate(180deg);
}

/* Platform icon buttons row */
.episode-platforms{
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Label before icons */
.episode-platforms-label{
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-right: 2px;
}

.platform-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,.10);
  background: var(--off);
  color: var(--text);
  transition: background .15s ease, border-color .15s ease, transform .12s ease, color .15s ease;
  flex-shrink: 0;
}

.platform-btn:hover{
  background: rgba(214,179,94,.20);
  border-color: rgba(214,179,94,.60);
  color: var(--gold-2);
  transform: translateY(-1px);
}

.platform-btn svg{
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 980px){
  .episodes-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .episode{
    grid-template-columns: 140px 1fr;
    padding: 16px;
    height: 200px;
  }
  .episode.is-expanded{
    height: auto;
  }
}

@media (max-width: 520px){
  .episode{
    grid-template-columns: 90px 1fr;
    height: auto;
    overflow: visible;
    gap: 12px;
    padding: 12px;
  }
  .episode-media{
    height: 90px;
    min-height: 90px;
    border-radius: 12px;
  }
  .episode-h3{
    font-size: 14px;
  }
  .episode-p{
    font-size: 12px;
  }
}

/* CONFESSIONS */
.notice{
  border-radius: var(--radius);
  border: 1px solid rgba(214,179,94,.22);
  background: rgba(214,179,94,.08);
  padding: 14px;
  margin-top: 16px;
}

.notice p{ margin:0; color: rgba(255,255,255,.85); }


/* Form */
.form{
  max-width: 820px;
  margin: 0 auto;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.input, .textarea, .select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline: none;
}
.select{
  color: var(--muted);
}
.textarea{ min-height: 150px; resize: vertical; grid-column: 1 / -1; }
.help{
  color: var(--muted2);
  font-size: 12px;
  margin-top: 8px;
}
.form-actions{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
/*
Cards to deelte after create leagal page*

*/
/* Cards / grids */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.card h3{
  margin: 0 0 10px;
  font-size: 16px;
}
.card p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.card .meta{
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* CONTACT */
.contact-bar{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.contact-item{
  background: var(--white);
  border: var(--border-dark);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.label{
  display:block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-item a{ color: #141418; font-weight: 700; }
.contact-item a:hover{ color: var(--gold-2); }

/* FOOTER */
.footer{
  background: var(--black-2);
  color: rgba(255,255,255,.82);
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.fine{
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.footer-right{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sep{ color: rgba(214,179,94,.6); }

/* =========================
   EPISODES PAGE LAYOUT
========================= */

.episodes-hero{
  background: var(--black);
  color: var(--white);
  padding: 90px 0 60px;
  position: relative;
  overflow:hidden;
}
.episodes-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 650px at 18% 22%, rgba(214,179,94,.16), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.72));
  pointer-events:none;
}
.episodes-hero-inner{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

.episodes-hero-title{
  margin: 10px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
}
.episodes-hero-title span{ color: var(--gold); }
.episodes-hero-sub{
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  max-width: 52ch;
}
.episodes-hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.episodes-hero-meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: .95;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
}

.episodes-hero-art{
  display:grid;
  gap: 14px;
}
.episodes-hero-image{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.episodes-hero-image img{
  width:100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display:block;
}

.featured-card{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
}
.featured-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.featured-title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}
.featured-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.featured-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* body layout with sidebar */
.episodes-layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items:start;
}

.episodes-side{
  position: sticky;
  top: 86px; /* below sticky nav */
  align-self: start;
  border-radius: 22px;
  background: var(--white);
  border: var(--border-dark);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  overflow:hidden;
}

.side-head{
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(10,10,10,.08);
}
.side-title{
  margin: 0;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.side-sub{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.side-list{
  display:grid;
}
.side-item{
  display:flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.side-item:hover{
  background: rgba(214,179,94,.10);
}
.side-item.is-active{
  background: rgba(214,179,94,.14);
}
.side-ep{
  width: 58px;
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: .10em;
  font-size: 12px;
}
.side-name{
  font-weight: 700;
  color: #151515;
  font-size: 13px;
  line-height: 1.25;
}
.side-footer{
  padding: 14px 16px;
  background: rgba(0,0,0,.02);
}

/* episode card extra links */
.episode-links{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.mini-link{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 800;
}
.mini-link:hover{ opacity: .85; }


/* =========================
   EPISODES TOOLS (search + filter)
========================= */

.episodes-tools{
  display:grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 12px;
  align-items:center;
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 22px;
  background: var(--white);
  border: var(--border-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.search-input{
  width:100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.10);
  background: #fff;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.search-input:focus{
  border-color: rgba(214,179,94,.55);
  box-shadow: 0 0 0 4px rgba(214,179,94,.18);
}

.tool-filters{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:center;
}

.chip{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.10);
  background: rgba(0,0,0,.02);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 800;
  cursor:pointer;
}

.chip:hover{ background: rgba(214,179,94,.10); }

.chip.is-active{
  border-color: rgba(214,179,94,.55);
  background: rgba(214,179,94,.18);
  color: #151515;
}

.sort-select{
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.10);
  background: #fff;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.results-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin: 6px 0 16px;
}

.results-count{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}

.no-results{
  margin-top: 22px;
  text-align:center;
  padding: 26px;
  border-radius: 22px;
  background: rgba(214,179,94,.10);
  border: 1px solid rgba(214,179,94,.22);
}

@media (max-width: 980px){
  .episodes-tools{
    grid-template-columns: 1fr;
  }
  .tool-filters{
    justify-content:flex-start;
  }
}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* responsive */
@media (max-width: 980px){
  .episodes-hero-inner{ grid-template-columns: 1fr; }
  .episodes-layout{ grid-template-columns: 1fr; }
  .episodes-side{ position: static; }
  .episodes-hero-image img{ height: 260px; }
}

/* RESPONSIVE */
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .icon-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .cards{ grid-template-columns: 1fr; }
  .contact-bar{ grid-template-columns: 1fr; }
  .hero-inner{ align-items:flex-start; padding: 100px 0 70px; }
  .hero-vertical{ display:none; }

  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .nav .btn-outline{ display:none; }

  .nav-links.open{
    display:flex;
    position:absolute;
    top: 62px;
    left: 14px;
    right: 14px;
    flex-direction:column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10,10,12,.95);
    border: 1px solid rgba(255,255,255,.10);
  }
}

/* HOME HERO — TABLET (641px – 980px)
   Reduce height so the image isn't oppressively full-screen.
   Push text to bottom so the photo shows above it.             */
@media (min-width: 641px) and (max-width: 980px) {
  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 75vh;
    align-items: flex-end;
    padding: 80px 0 52px;
  }

  /* Stronger bottom gradient so text reads cleanly */
  .hero::after {
    background:
      radial-gradient(900px 500px at 50% 30%, rgba(214,179,94,.13), transparent 55%),
      linear-gradient(to bottom,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.20) 40%,
        rgba(0,0,0,.78) 70%,
        rgba(0,0,0,.90) 100%);
  }
}

/* =============================================================
   HOME HERO — MOBILE REDESIGN (≤640px)
   On small screens the full-bleed background approach hides the
   photo behind text. Instead:
     • The hero shrinks to auto height (no more min-height lock)
     • The slide images are clipped to a fixed photo block at top
     • Text content sits below the photo on a solid dark base
     • No overlay needed — the image and text are separated
   ============================================================= */

@media (max-width: 640px) {

  /* Remove full-screen lock */
  .hero {
    min-height: 0;
    overflow: visible;
  }

  /* Photo block — fixed height image area at the top */
  .hero-bg {
    position: relative;
    height: 52vw;         /* roughly a 4:3 crop — shows the photo */
    min-height: 200px;
    max-height: 320px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: none;      /* remove the slight scale on mobile */
  }

  /* Overlay: only a subtle bottom fade on the photo block */
  .hero::after {
    top: auto;
    bottom: auto;
    height: 52vw;
    min-height: 200px;
    max-height: 320px;
    background:
      linear-gradient(to bottom,
        transparent 50%,
        rgba(0,0,0,.55) 100%);
  }

  /* Text content block — solid dark background, sits below photo */
  .hero-inner {
    position: relative;
    z-index: 1;
    min-height: 0;
    align-items: flex-start;
    padding: 24px 0 36px;
    background: var(--black);
  }

  /* Keep text readable on solid background */
  .hero-title {
    font-size: clamp(30px, 9vw, 42px);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-scroll {
    display: none;       /* scroll indicator doesn't make sense in stacked layout */
  }
}

/* =========================
   EPISODES PAGE — RSS additions
   Skeleton loaders, episode date, featured platforms row,
   pagination, and hero loading state.
========================= */

/* Loading skeleton cards */
.ep-skeleton {
  border-radius: 22px;
  background: var(--white);
  border: var(--border-dark);
  height: 210px;
  overflow: hidden;
  position: relative;
}

.ep-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.08) 40%,
    rgba(0,0,0,.04) 100%
  );
  background-size: 200% 100%;
  animation: ep-shimmer 1.4s ease infinite;
}

@keyframes ep-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Episode pub date label */
.episode-date {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 2px;
  flex-shrink: 0;
}

/* Featured hero card — platform icons row */
.featured-platforms {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Hero loading text */
.ep-hero-loading {
  color: rgba(255,255,255,.45);
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

/* Pagination nav */
.ep-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,.08);
}

.ep-pg-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,.12);
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
}

.ep-pg-btn:hover:not(:disabled) {
  background: rgba(214,179,94,.18);
  border-color: rgba(214,179,94,.55);
  color: var(--gold-2);
  transform: translateY(-1px);
}

.ep-pg-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.ep-pg-info {
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  min-width: 100px;
  text-align: center;
}

/* Featured card platform buttons — light variant for dark background */
.featured-platforms .platform-btn {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.80);
}

.featured-platforms .platform-btn:hover {
  background: rgba(214,179,94,.25);
  border-color: rgba(214,179,94,.65);
  color: var(--gold);
}

.featured-platforms .episode-platforms-label {
  color: rgba(255,255,255,.50);
}

/* =============================================================
   UPDATES — All fixes applied
   ============================================================= */

/* -------------------------------------------------------------
   BRAND MARK — logo image, always perfectly round
   ------------------------------------------------------------- */

.brand-mark {
  overflow: hidden;      /* clips image to circle */
  padding: 0;            /* remove any text padding */
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 999px;
}

/* -------------------------------------------------------------
   NAV — Desktop vs Mobile Submit button visibility
   ------------------------------------------------------------- */

/* Hide mobile-only submit button on desktop */
.nav-submit-mobile {
  display: none;
}

/* Desktop: show the button beside the nav (already present) */
.nav-submit-desktop {
  display: inline-flex;
}

@media (max-width: 980px) {
  /* Hide the desktop-only submit button */
  .nav-submit-desktop {
    display: none !important;
  }

  /* Show submit inside the mobile dropdown */
  .nav-submit-mobile {
    display: inline-flex;
    margin-top: 4px;
    width: 100%;
    justify-content: center;
  }

  /* Override the blanket .nav .btn-outline hide rule */
  .nav-links.open .nav-submit-mobile {
    display: inline-flex !important;
  }
}

/* -------------------------------------------------------------
   EPISODE CARD — stable extras
   ------------------------------------------------------------- */

/* Date pinned at top, never hidden */
.episode-date {
  flex-shrink: 0;
  min-height: 1em;
}

/* Platform row always visible */
.episode-platforms {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 6px;
}

/* -------------------------------------------------------------
   EPISODES HERO IMAGE — always fills frame with vignette
   ------------------------------------------------------------- */

.episodes-hero-image {
  position: relative;
  overflow: hidden;
}

.episodes-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Vignette overlay to soften edges when image doesn't fill perfectly */
.episodes-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

/* -------------------------------------------------------------
   HOMEPAGE — More Episodes button wrapper
   ------------------------------------------------------------- */

.episodes-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* -------------------------------------------------------------
   FOOTER — stack left over right on mobile
   ------------------------------------------------------------- */

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-right {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* -------------------------------------------------------------
   EPISODES PAGE — hide hero art + featured card on mobile
   ------------------------------------------------------------- */

@media (max-width: 640px) {
  .episodes-hero-art {
    display: none;
  }

  .episodes-hero-inner {
    grid-template-columns: 1fr;
  }
}
