@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

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

:root {
  --plum:       #3b1236;
  --plum-light: #5a1d55;
  --terra:      #c4622d;
  --terra-warm: #e07842;
  --gold:       #c4622d;
  --gold-light: #e07842;
  --teal:       #2a9d8f;
  --cream:      #f7f0e6;
  --cream-dark: #ede4d6;
  --ink:        #1c0f1a;
  --muted:      #7a6670;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--terra-warm);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal);
}

/* ── NAV ─────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 15, 26, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--terra);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-logo-d {
  color: var(--gold);
}

.nav-logo-a {
  color: var(--terra);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ── HERO ────────────────────────────────────── */


.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 55% 40%, var(--plum) 0%, var(--ink) 65%);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  color: var(--gold);
  letter-spacing: -0.03em;
  position: relative;
}

.deadly-word {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.15em;
  letter-spacing: 0.01em;
  display: inline-block;
}

.hero h1 span:not(.deadly-word) {
  color: var(--terra-warm);
}

.hero-persona {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 1.2rem;
  opacity: 0.8;
}

.hero-tagline {
  margin-top: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream-dark);
  max-width: 520px;
  opacity: 0.85;
  font-style: italic;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--terra);
  color: var(--cream);
  border: 2px solid var(--terra);
}

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

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── SECTION WRAPPER ─────────────────────────── */

section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '//';
  margin-right: 0.5em;
  opacity: 0.6;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 3.5rem;
}

/* ── PIECES ──────────────────────────────────── */

#pieces {
  background: var(--ink);
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--terra);
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.piece-card {
  background: var(--plum);
  border: 1px solid var(--plum-light);
  border-top: 3px solid var(--terra);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}

.piece-card:hover {
  border-top-color: var(--gold);
}

.piece-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--plum-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.piece-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.piece-body {
  padding: 1rem 1.5rem;
}

.piece-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.piece-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}

.piece-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── QUILTS ──────────────────────────────────── */

.quilts-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 4px solid var(--gold);
}

.quilt-entry {
  margin-bottom: 3rem;
}

.quilt-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.quilt-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.quilt-photo {
  overflow: hidden;
  border: 1px solid var(--plum-light);
  border-top: 3px solid var(--terra);
}

.quilt-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.quilt-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.75rem 1rem;
}

/* ── CLAY ───────────────────────────────────── */

#clay {
  background: var(--ink);
  border-top: 4px solid var(--terra);
  position: relative;
  z-index: 1;
}

/* ── PODCAST ─────────────────────────────────── */

#podcast {
  background: var(--plum);
  border-top: 4px solid var(--gold);
  border-bottom: none;
  position: relative;
  z-index: 1;
}

/* Featured episode card */
.podcast-featured {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 4px solid var(--terra);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.podcast-featured-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.coming-soon-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--terra-warm);
  padding: 0.3em 0.85em;
  border-radius: 0;
}

.podcast-season-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.podcast-featured-body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.podcast-featured-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--terra);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.podcast-featured-info {
  flex: 1;
}

.podcast-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.podcast-featured-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.podcast-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Topic tag pills */
.podcast-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.25em 0.7em;
  opacity: 0.8;
}

/* Audio player area */
.audio-player-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
}

.audio-player-coming {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.audio-player-icon {
  font-size: 1.4rem;
  color: var(--terra);
  opacity: 0.5;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

/* Episode list */
.episode-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.episode-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--terra);
  padding: 1.4rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: border-color 0.15s, background 0.15s;
}

.episode-card:hover {
  background: rgba(0,0,0,0.45);
  border-left-color: var(--gold);
}

.episode-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--terra);
  min-width: 2.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.episode-info {
  flex: 1;
}

.episode-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.episode-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.episode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.episode-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.episode-play-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.episode-coming-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.35;
}

/* ── THE LIST ────────────────────────────────── */

#mentorship {
  background: var(--ink);
  border-top: 4px solid var(--terra);
  position: relative;
  z-index: 1;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.list-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--plum-light);
  border-radius: 4px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.list-item:hover {
  border-color: var(--teal);
}

.list-item-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.list-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.list-item-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.list-item-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--terra-warm);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── SUPPLIES ────────────────────────────────── */

#supplies {
  background: var(--plum);
  border-top: 4px solid var(--terra);
  position: relative;
  z-index: 1;
}

/* ── FOOTER ──────────────────────────────────── */

footer {
  background: var(--ink);
  border-top: 1px solid var(--plum-light);
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--cream);
}

footer p {
  opacity: 0.5;
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 640px) {
  nav {
    padding: 0.85rem 1.25rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .podcast-featured {
    padding: 1.5rem 1.25rem;
  }

  .podcast-featured-body {
    flex-direction: column;
    gap: 0.75rem;
  }

  .podcast-featured-num {
    font-size: 2.5rem;
  }

  .episode-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .episode-num {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}
