
:root {
  --bg: #f7f5f0;
  --card: #fff;
  --text: #111;
  --muted: #6f6b65;
  --line: #ddd8cf;
  --soft: #ece8df;
  --shadow: 0 8px 30px rgba(25, 22, 17, .08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input { font: inherit; }

.site-header {
  min-height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(247,245,240,.95);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.brand {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: -.08em;
  text-decoration: none;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  text-decoration: none;
  opacity: .72;
  transition: opacity .15s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { opacity: 1; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
}

.mobile-menu {
  display: none;
}

.page-shell {
  width: min(1480px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.intro {
  max-width: 760px;
  margin-bottom: 40px;
}

.eyebrow, .now-playing {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
}

.intro h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.065em;
}

.dek {
  margin: 20px 0 0;
  font-size: clamp(17px, 1.7vw, 23px);
  color: var(--muted);
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, .55fr);
  gap: 34px;
  margin: 0 0 78px;
  align-items: end;
}

.player-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.player-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.featured-copy {
  padding: 8px 0 8px;
}

.featured-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -.045em;
  line-height: .98;
}

.featured-date {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.youtube-link {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.library {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

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

.library-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -.05em;
  line-height: .95;
}

.search-box {
  width: min(360px, 100%);
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  outline: none;
  color: var(--text);
}
.search-box input:focus {
  border-color: #99938a;
  background: #fff;
}

.status, .empty-state {
  padding: 24px 0;
  color: var(--muted);
}

.vod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.vod-card {
  min-width: 0;
  cursor: pointer;
}

.thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  position: relative;
}

.thumb-wrap::after {
  content: "▶";
  display: grid;
  place-items: center;
  position: absolute;
  width: 46px;
  height: 46px;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 16px;
  transform: scale(.92);
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
}

.vod-card:hover .thumb-wrap::after {
  opacity: 1;
  transform: scale(1);
}

.vod-card.active .thumb-wrap {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.vod-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .18s ease;
}

.vod-card:hover img { transform: scale(1.018); }

.vod-title {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.vod-date {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.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;
}

@media (max-width: 1100px) {
  .vod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .desktop-nav { gap: 16px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 68px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--bg);
    padding: 30px 7vw 50px;
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-close {
    position: absolute;
    top: 19px;
    right: 5vw;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
  }
  .mobile-menu nav {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .mobile-menu a {
    font-size: clamp(34px, 10vw, 58px);
    line-height: .94;
    font-weight: 850;
    text-decoration: none;
    letter-spacing: -.055em;
  }

  .page-shell {
    width: min(100% - 36px, 1480px);
    padding: 46px 0 70px;
  }

  .featured {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 58px;
  }

  .library-head {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box { width: 100%; }
  .vod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
}

@media (max-width: 480px) {
  .intro { margin-bottom: 28px; }
  .dek { font-size: 16px; }
  .thumb-wrap { border-radius: 9px; }
  .vod-title { font-size: 14px; }
}
