/* =============================================
   THE EXECUTION SUITE — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --cream: #EDE8DE;
  --cream-dark: #E0D9CC;
  --teal: #1A8C78;
  --teal-dark: #136858;
  --teal-light: #E8F5F2;
  --dark: #1C1C1C;
  --mid: #4A4A4A;
  --muted: #8A8A8A;
  --white: #FFFFFF;
  --card-bg: #F7F4EE;
  --border: #D8D2C6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 400; }
p { color: var(--mid); }
a { color: inherit; text-decoration: none; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 232, 222, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo svg { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--dark); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-subscribe {
  background: var(--teal);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-subscribe:hover { background: var(--teal-dark); }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- HERO (index) ---- */
.hero {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { max-width: 520px; }

.hero-text h1 {
  margin: 20px 0 18px;
}

.hero-text h1 span { color: var(--teal); }

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.podcast-cover {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.podcast-cover::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(26,140,120,0.3);
}

.cover-title {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cover-subtitle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.cover-icon {
  width: 64px;
  height: 64px;
  margin: 10px 0;
}

.cover-hosts {
  font-size: 0.65rem;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 12px;
  width: 100%;
}

.now-playing-chip {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}

.np-label { color: var(--muted); font-size: 0.68rem; font-weight: 500; }
.np-title { color: var(--dark); font-weight: 600; }

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ---- EPISODE CARDS ---- */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.episode-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.episode-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.ep-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ep-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ep-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.ep-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

.ep-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ep-play:hover { background: var(--teal-dark); }

/* ---- FEATURED EPISODE (episodes page) ---- */
.featured-episode {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  margin-bottom: 60px;
}

.featured-episode h2 {
  color: var(--white);
  margin: 12px 0 16px;
}

.featured-episode p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.audio-player {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.play-btn-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}

.play-btn-lg:hover { background: var(--teal-dark); transform: scale(1.05); }
.play-btn-lg:active { transform: scale(0.98); }

.player-info { flex: 1; }
.player-ep-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.player-ep-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.player-time { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 35%;
  background: var(--teal);
  border-radius: 2px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
}

/* ---- BIO PAGE ---- */
.bio-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.bio-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.bio-avatar {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--white);
  font-weight: 700;
}

.bio-name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.bio-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.bio-text {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

.bio-text p + p { margin-top: 16px; }

.bio-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---- BLOG ---- */
.blog-section {
  padding: 72px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.blog-card-body { padding: 24px; }

.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blog-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 8px; }

/* ---- HOME HOSTS SECTION ---- */
.hosts-section { padding: 80px 0; }
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.host-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.host-card:hover { box-shadow: var(--shadow); }

.host-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.host-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.host-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--white);
  font-family: 'Fraunces', serif;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 100%; }
  .hero-art { display: none; }
  .hosts-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-avatar { width: 120px; height: 120px; font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-episode { padding: 28px; }
  .nav-links { gap: 16px; }
}
