/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --cream:        #F7F4EE;
  --cream-deep:    #EFEAE0;
  --charcoal:      #24231F;
  --black:         #17160F;
  --warm-gray:     #6B665C;
  --warm-gray-lt:  #8F897C;
  --hairline:      rgba(23, 22, 15, 0.12);
  --hairline-lt:   rgba(23, 22, 15, 0.08);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1120px;
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--black); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--hairline);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  background: var(--cream-deep);
}

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 140px;
  text-align: center;
}
.hero .wrap { max-width: 780px; }
.hero-mark {
  width: clamp(110px, 14vw, 168px);
  height: auto;
  margin: 0 auto 36px;
}
.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-top: 20px;
}

/* ---------- Section rhythm ---------- */
section { padding: 110px 0; }
.section-head { margin-bottom: 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); }

/* ---------- Podcast ---------- */
.podcast {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline-lt);
  border-bottom: 1px solid var(--hairline-lt);
}
.podcast-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
}
.podcast-art {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}
.podcast-art img { width: 100%; height: 100%; object-fit: cover; }
.podcast-title { font-size: clamp(34px, 5vw, 48px); margin-bottom: 20px; }
.podcast-tagline {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 460px;
  margin-bottom: 36px;
}
.podcast-links { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline-lt);
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 6px;
}
.footer-tagline { color: var(--warm-gray); font-size: 15px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 14px;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width 0.25s ease;
}
.footer-nav a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid var(--hairline-lt);
  padding: 22px 32px;
  font-size: 13px;
  color: var(--warm-gray-lt);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .podcast-inner { grid-template-columns: 1fr; gap: 40px; }
  .podcast-art { max-width: 320px; margin: 0 auto; }
  .podcast-copy { text-align: center; }
  .podcast-tagline { margin-left: auto; margin-right: auto; }
  .podcast-links { justify-content: center; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 80px 0; }
  .hero { padding: 110px 0 90px; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
