:root {
  --cream: #faf7f2;
  --cream-deep: #f1ebe1;
  --ink: #131110;
  --ink-soft: #5c5148;
  --rust: #c1613f;
  --rust-deep: #9c4a2c;
  --line: #e6ddd0;
  --line-dark: rgba(250, 247, 242, 0.16);
  --paper: #faf7f2;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

img { max-width: 100%; display: block; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.episode-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.episode-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.logo .dot { color: var(--rust); }

.nav { display: flex; gap: 40px; }
.nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--rust);
  transition: right 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav a:hover::after { right: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  min-height: 88vh;
  gap: 40px;
  padding-top: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--rust);
}
.eyebrow.center { justify-content: center; }

.hero-text {
  padding-bottom: 72px;
}

.hero-text h1 {
  font-family: var(--sans);
  font-size: 88px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 0 36px;
}

.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.32;
  color: var(--ink);
  max-width: 460px;
  margin: 0 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--rust);
}

.hero-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(24, 17, 13, 0.3));
}

.hero-photo.photo-placeholder {
  align-items: center;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  border-radius: 24px;
}
.hero-photo.photo-placeholder img { display: none; }
.hero-photo.photo-placeholder::after {
  content: "foto";
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Platforms */
.platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.platforms-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.platform-link {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.platform-link:hover { color: var(--rust); border-color: var(--rust); }

/* About */
.about { padding: 108px 0; border-bottom: 1px solid var(--line); }
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-inner .hero-quote { max-width: none; margin-bottom: 0; }
.about-bio { padding-top: 6px; }
.about-bio .lede { max-width: none; margin-bottom: 0; font-size: 19px; }

/* Episodes */
.episodes { padding: 108px 0; border-bottom: 1px solid var(--line); }

.section-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 60px;
}
.about .section-title,
.services .section-title,
.contact .section-title {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.section-title.center { text-align: center; }

/* Audio samples */
.audio { padding: 108px 0; border-bottom: 1px solid var(--line); }
.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audio-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(24, 17, 13, 0.35);
}
.audio-embed iframe { display: block; width: 100%; border: 0; }

/* Services */
.services { padding: 108px 0; border-bottom: 1px solid var(--line); }
.services-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.services-heading .section-title { margin: 0; }
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.service-item:hover { padding-left: 14px; }
.service-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--rust);
  min-width: 28px;
}
.service-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.episode-card {
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.episode-card:hover { transform: translateY(-8px); }

.episode-play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(24, 17, 13, 0.35);
  transition: box-shadow 0.4s ease;
}
.episode-card:hover .episode-play {
  box-shadow: 0 30px 55px -18px rgba(24, 17, 13, 0.45);
}

.episode-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.episode-card:hover .episode-thumb { transform: scale(1.08); }

.thumb-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,17,13,0) 45%, rgba(24,17,13,0.75) 100%);
}

.episode-play iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 20px;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-ring {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.55);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.play-icon svg {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 16px;
  box-sizing: border-box;
  fill: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.episode-card:hover .play-icon svg { transform: scale(1.12); background: var(--rust); fill: var(--cream); }

.episode-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 4px 0;
}
.episode-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--rust);
}
.episode-meta h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin: 0;
}

/* Contact */
.contact {
  position: relative;
  padding: 108px 0 120px;
  background: var(--cream-deep);
  color: var(--ink);
}
.contact-inner { max-width: 580px; }
.contact .section-title { margin-bottom: 24px; }
.contact .lede { margin-bottom: 40px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 16px; }

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  line-height: 1.7;
}
.back-to-top {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.back-to-top:hover { color: var(--rust); }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; align-items: center; text-align: center; min-height: auto; padding: 56px 0 48px; gap: 48px; }
  .eyebrow { justify-content: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .hero-quote { margin-left: auto; margin-right: auto; text-align: left; font-size: 22px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { padding-bottom: 0; }
  .hero-text h1 { font-size: 52px; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 280px; }
  .platforms { justify-content: center; }
  .episode-grid { grid-template-columns: 1fr; }
  .audio-grid { grid-template-columns: 1fr; }
  .header-inner { height: auto; padding: 18px 0; flex-wrap: wrap; gap: 12px; }
  .nav { gap: 16px; }
  .nav a { font-size: 11px; letter-spacing: 0.08em; white-space: nowrap; }
  .about .section-title, .services .section-title, .contact .section-title { font-size: 32px; }
  .services-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-name { font-size: 22px; }
}
