:root {
  --ink: #16120f;
  --muted: #7c716a;
  --cream: #f5efe7;
  --paper: #fffaf4;
  --sand: #d8c4ae;
  --rose: #b98172;
  --dark: #0f0c0a;
  --line: rgba(22, 18, 15, .14);
  --radius: 28px;
  --max: 1180px;
}

body {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: 100svh;
  background: var(--dark);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46vw);
  align-items: stretch;
  overflow: hidden;
}

.hero-copy {
  padding: clamp(116px, 12vw, 160px) clamp(20px, 5vw, 60px) 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--sand);
  font-weight: 700;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(58px, 10vw, 140px);
  line-height: .86;
  margin: 18px 0 clamp(28px, 4.5vw, 54px);
  letter-spacing: -.06em;
  max-width: 760px;
}

.lead {
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.35;
  max-width: 620px;
  color: rgba(255, 250, 244, .78);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  border: 1px solid currentColor;
}

.btn.primary {
  background: var(--paper);
  color: var(--dark);
  border-color: var(--paper);
}

.hero-image {
  position: relative;
  min-height: 540px;
}

.hero-image img {
  height: 100%;
  width: 100%;
  filter: saturate(.88) contrast(1.02);
  object-fit: cover;
}

.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 10, .78), transparent 44%), linear-gradient(0deg, rgba(15, 12, 10, .35), transparent 50%);
}

.player {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  background: rgba(255, 250, 244, .88);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
}

.play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
}

.episode strong {
  display: block;
  font-size: 15px;
}

.episode span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .11em;
}

.bars {
  display: flex;
  gap: 4px;
  align-items: end;
  height: 34px;
}

.bars i {
  display: block;
  width: 4px;
  background: var(--rose);
  border-radius: 99px;
}

.bars i:nth-child(1) { height: 14px; }
.bars i:nth-child(2) { height: 26px; }
.bars i:nth-child(3) { height: 19px; }
.bars i:nth-child(4) { height: 31px; }
.bars i:nth-child(5) { height: 12px; }
.bars i:nth-child(6) { height: 24px; }

section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 60px);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.05em;
  margin: 8px 0 0;
}

.copy {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.65;
}

.episodes {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.feature {
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #ddd;
}

.feature img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.feature .caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  background: rgba(255, 250, 244, .86);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 22px;
}

.caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin: 0 0 8px;
}

.caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.thumb {
  height: 86px;
  border-radius: 18px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.sponsor {
  background: var(--cream);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.slot {
  background: var(--paper);
  padding: 34px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slot small {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--rose);
  font-weight: 800;
}

.slot h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1;
  margin: 18px 0;
}

.slot p {
  color: var(--muted);
  line-height: 1.55;
}

.price {
  font-weight: 800;
  font-size: 22px;
}

.formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.format {
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #ddd;
}

.format img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.format span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(15, 12, 10, .72);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}

.cta {
  background: var(--dark);
  color: var(--paper);
  text-align: center;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .9;
  letter-spacing: -.06em;
  margin: 0 auto 26px;
  max-width: 900px;
}

.cta p {
  color: rgba(255, 250, 244, .72);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.footer {
  padding: 34px clamp(20px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: #090706;
  color: rgba(255, 250, 244, .62);
  font-size: 13px;
  border-top: none;
}

.footer strong {
  color: var(--paper);
  letter-spacing: .16em;
  text-transform: none;
}

@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 112px;
    gap: 32px;
  }
  .hero-image {
    min-height: 460px;
  }
  .section-head {
    display: block;
  }
  .episodes, .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .formats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 560px) {
  .hero-copy {
    padding: 132px 18px 44px;
  }
  .hero h1 {
    font-size: clamp(52px, 18vw, 82px);
  }
  .hero-image {
    min-height: 390px;
  }
  .player {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 44px 1fr;
  }
  .play {
    width: 44px;
    height: 44px;
  }
  .bars {
    display: none;
  }
  .item {
    grid-template-columns: 72px 1fr;
  }
  .thumb {
    height: 72px;
  }
  .formats {
    grid-template-columns: 1fr;
  }
  .slot {
    padding: 26px;
  }
  section {
    padding: 64px 18px;
  }
}

/* YouTube Play Hover Overlays & Premium Item Hover */
.feature .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.feature:hover .play-overlay {
  opacity: 1;
}

.feature .play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature:hover .play-btn-circle {
  transform: scale(1);
}

.thumb {
  position: relative;
}

.play-overlay-thumb {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item:hover .play-overlay-thumb {
  opacity: 1;
}

.play-overlay-thumb span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding-left: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.item:hover .play-overlay-thumb span {
  transform: scale(1);
}

.item {
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.item:hover {
  background-color: rgba(22, 18, 15, 0.03);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 18px;
}

/* Lightbox Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 7, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 24px;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1010;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .video-modal {
    padding: 12px;
  }
  .video-modal-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .video-modal-content {
    border-radius: 16px;
  }
}

