/* ===== AJITEU — from feel to film =====
   Palette (brand guidelines):
   Cream #EBE4D1 · light #F5F0E2 · deep #DBCEB0
   Coral Peach #EDA589 · light #F4C7B2 · Terracotta #B5654B
   Forest Green #556D43 · Sage #8AA36E · deep #3C4E2E
   Ratio: ~60% cream · 25% green · 15% coral
*/

:root {
  --cream: #ebe4d1;
  --cream-light: #f5f0e2;
  --cream-deep: #dbceb0;
  --peach: #eda589;
  --peach-light: #f4c7b2;
  --terracotta: #b5654b;
  --forest: #556d43;
  --sage: #8aa36e;
  --forest-deep: #3c4e2e;
  --ink: #4a4438;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--forest);
  line-height: 1.25;
}

h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }

.wordmark {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

section { padding: 5.5rem 1.5rem; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  background: color-mix(in srgb, var(--cream-light) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--forest);
  font-size: 1.15rem;
}

.nav-badge { width: 36px; height: 36px; }

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  margin-left: 1.4rem;
  transition: color 0.2s;
}

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

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, var(--peach-light) 0%, transparent 60%),
    var(--cream-light);
}

.hero-badge {
  width: min(240px, 55vw);
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  max-width: 16ch;
  margin: 0 auto 1.2rem;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: var(--forest);
  color: var(--cream-light);
  box-shadow: 0 4px 14px rgba(85, 109, 67, 0.3);
}

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

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.5rem;
}

/* ===== About ===== */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: 1060px;
  margin: 0 auto;
  align-items: center;
  border-radius: 32px;
  padding: 4rem 3rem;
  margin-top: -2.5rem;
}

.about-inner p { margin-bottom: 1rem; }

.about blockquote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--peach);
  padding-left: 1.2rem;
  margin-top: 1.6rem;
  font-size: 1.05rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar {
  background: var(--cream-light);
  border-radius: 18px;
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
}

.pillar-sub { font-size: 0.9rem; color: var(--terracotta); }

/* ===== Values ===== */
.values {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.value-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem 1.8rem;
}

.value-card-accent { background: var(--peach-light); }

.value-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }

/* ===== Motif ===== */
.motif {
  background: var(--forest);
  text-align: center;
}

.motif .section-eyebrow { color: var(--peach-light); }
.motif h2 { color: var(--cream-light); }

.motif-lead {
  color: var(--cream);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.trio-img {
  width: min(440px, 80vw);
  margin: 0 auto 2.5rem;
  display: block;
}

.motif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: left;
}

.motif-card {
  background: rgba(245, 240, 226, 0.09);
  border: 1px solid rgba(245, 240, 226, 0.2);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
}

.motif-card h3 { color: var(--peach-light); margin-bottom: 0.5rem; font-size: 1.15rem; }
.motif-card p { color: var(--cream); font-size: 0.98rem; }

.motif-photo { max-width: 560px; margin: 0 auto; }

.motif-photo img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.motif-photo figcaption {
  color: var(--cream);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 0.8rem;
}

/* ===== Podcast ===== */
.podcast {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}

.podcast-lead { max-width: 620px; margin: 0 auto 2.5rem; }

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.episode-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--cream-deep);
  transition: transform 0.25s, box-shadow 0.25s;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(74, 68, 56, 0.12);
}

.episode-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--cream-light);
  background: var(--terracotta);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.episode-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.episode-kr { font-weight: 500; color: var(--terracotta); white-space: nowrap; }
.episode-card p { font-size: 0.96rem; }

.episode-note {
  margin-top: 2.4rem;
  font-style: italic;
  color: var(--sage);
}

/* ===== Quote band ===== */
.quote-band {
  background: var(--peach-light);
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--terracotta);
  max-width: 24ch;
  margin: 0 auto 0.8rem;
}

.quote-attr {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ===== Footer ===== */
.footer {
  background: var(--forest-deep);
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: var(--cream);
}

.footer-badge { width: 56px; margin-bottom: 1rem; }

.footer-wordmark { font-size: 1.3rem; color: var(--cream-light); }

.footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--peach-light);
  margin: 0.3rem 0 1.2rem;
}

.footer-meta { font-size: 0.85rem; opacity: 0.75; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .about {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.6rem;
    border-radius: 24px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .nav-links a { margin-left: 0.9rem; font-size: 0.82rem; }
  section { padding: 4rem 1.2rem; }
}
