:root {
  --yellow: #FFD800;
  --black: #000;
  --dark: #101010;
  --dark-2: #171717;
  --red: #E10600;
  --white: #fff;
  --gray: #c9c9c9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(360px, 45%);
  overflow: hidden;
}

.hero-panel {
  background: var(--yellow);
  color: var(--black);
  padding: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-image {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-image img {
  height: 100vh;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
}

.logo {
  width: 120px;
  margin-bottom: 28px;
}

.tagline,
.section-kicker {
  display: inline-block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -4px;
}

.subtitle {
  max-width: 560px;
  margin: 28px 0 34px;
  font-size: 1.16rem;
  line-height: 1.45;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 3px solid var(--black);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* COMMON */
.section {
  padding: 86px 38px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2px;
}

p {
  line-height: 1.65;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.all-link,
.listen-link {
  color: var(--yellow);
  font-weight: 900;
}

.all-link:hover,
.listen-link:hover {
  color: var(--red);
}

/* MANIFESTO */
.manifesto {
  background: var(--black);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.manifesto p {
  color: var(--gray);
  font-size: 1.15rem;
  font-weight: 700;
}

/* EPISODES */
.episodes {
  background: var(--dark);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.episode-card {
  background: var(--black);
  border: 1px solid #2a2a2a;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.episode-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
}

.episode-img {
  height: 270px;
  position: relative;
  background: var(--yellow);
  overflow: hidden;
}

.episode-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-img span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 0.8rem;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 5rem;
}

.placeholder.red {
  background: var(--red);
  color: var(--white);
}

.episode-body {
  padding: 24px;
}

.episode-body h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.episode-body p {
  margin-bottom: 20px;
  color: var(--gray);
}

/* PLATFORMS */
.platforms {
  background: var(--black);
}

.platforms-box {
  padding: 42px;
  background: var(--yellow);
  color: var(--black);
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.platform-links a {
  min-height: 64px;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
}

.platform-links a:hover {
  background: var(--red);
  color: var(--white);
}

/* CONTACT */
.contact {
  background: var(--dark-2);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--gray);
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid #252525;
  padding: 34px 38px 22px;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr auto;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 54px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--black);
}

.footer-bottom {
  max-width: 1120px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid #222;
  color: var(--gray);
  font-size: 0.82rem;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
    padding: 54px 44px;
  }

  .hero-image {
    min-height: 520px;
    justify-content: flex-end;
  }

  .hero-image img {
    height: 520px;
  }

  .episode-grid,
  .platform-links {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    padding: 42px 24px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-image {
    min-height: 390px;
  }

  .hero-image img {
    height: 390px;
  }

  .section {
    padding: 62px 22px;
  }

  .section-head,
  .contact-box {
    display: block;
  }

  .all-link {
    display: inline-block;
    margin-top: 18px;
  }

  .contact .btn {
    margin-top: 24px;
  }

  .episode-grid,
  .platform-links {
    grid-template-columns: 1fr;
  }

  .platforms-box {
    padding: 30px 22px;
  }

  .footer {
    padding-inline: 22px;
  }
}