/* ---------- Tokens ---------- */
:root {
  --bg: #faf7f1;
  --bg-alt: #f1ece1;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-mute: #7a7568;
  --rule: #e6dfce;
  --accent: #8a3324;          /* warm burgundy */
  --accent-ink: #6a2418;
  --accent-soft: #f4e6e1;
  --shadow: 0 1px 2px rgba(20, 14, 10, 0.04), 0 6px 24px rgba(20, 14, 10, 0.06);
  --shadow-lift: 0 4px 8px rgba(20, 14, 10, 0.06), 0 16px 40px rgba(20, 14, 10, 0.10);
  --radius: 10px;
  --radius-lg: 14px;
  --maxw: 1180px;
  --serif: "Lora", Charter, "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); text-decoration: underline; }
button { font: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(1200px 380px at 90% -10%, rgba(138, 51, 36, 0.10), transparent 60%),
    radial-gradient(900px 320px at 10% 0%, rgba(30, 77, 91, 0.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text .eyebrow { margin-top: 0; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 8px 0 20px;
  color: var(--ink);
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}
.credit-note {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 3px solid var(--rule);
  opacity: 0.9;
}
.credit-note strong { font-style: normal; color: var(--ink); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 8px;
}

/* Buttons */
.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background .15s ease, transform .15s ease;
}
.button:hover { background: var(--accent-ink); color: #fff; text-decoration: none; transform: translateY(-1px); }
.button-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.button-ghost:hover { background: var(--accent-soft); color: var(--accent-ink); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 4px 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Weeks ---------- */
.week + .week { margin-top: 72px; }
.week-header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.week-tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 6px;
}
.week-header h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 12px;
  color: var(--ink);
}
.week-intro {
  color: var(--ink-soft);
  margin: 0;
  font-size: 16.5px;
}

/* ---------- Video grid + cards ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.video-grid.one-col {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
.video-grid.guests {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: #d8cfb8;
}
.video-card.is-playing { transform: none; }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0c0c0c;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .2s ease;
}
.video-thumb:hover img { transform: scale(1.04); opacity: 0.9; }
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.94);
  color: var(--accent);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform .15s ease, background .15s ease;
}
.play-btn span {
  display: inline-block;
  transform: translateX(2px);
}
.video-thumb:hover .play-btn {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.video-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 14px 18px 6px;
  color: var(--ink);
}
.video-byline {
  margin: 14px 18px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.video-byline + .video-title { margin-top: 4px; }
.video-meta {
  margin: 0 18px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-alt);
  padding: 40px 0;
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.footer-row p { margin: 0 0 6px; max-width: 70ch; }
.footer-meta { color: var(--ink-mute); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .week + .week { margin-top: 56px; }
  .header-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }
  .site-nav { gap: 16px; font-size: 14px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .play-btn { width: 54px; height: 54px; font-size: 18px; }
}
