/* ============================================
   YANICK DUVAL — Landing
   Palette : noir / blanc / beige / touche gold
============================================ */

:root {
  --bg: #FAF8F4;
  --bg-alt: #F1ECE3;
  --beige: #E4DACB;
  --dark: #0E0E0C;
  --dark-soft: #1A1A18;
  --muted: #6B6660;
  --line: #E2DDD3;
  --gold: #B8945F;
  --gold-soft: #D4B488;

  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.eyebrow.center { display: block; text-align: center; }

.gold { color: var(--gold); font-style: italic; }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--dark); }

/* ============== HERO ============== */
.hero {
  padding: 9rem var(--pad) 5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 80vh;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%) contrast(1.02);
}
.photo-tag {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: rgba(14, 14, 12, 0.78);
  color: var(--bg);
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-dark {
  background: var(--dark);
  color: var(--bg);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--bg);
}

/* ============== ABOUT ============== */
.about {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.03);
}
.about-text h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.about-text p {
  color: var(--dark-soft);
  margin-bottom: 1.2rem;
  font-size: 1.04rem;
  line-height: 1.75;
}
.about-text p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.08rem;
}

/* ============== MISSION ============== */
.mission {
  padding: 8rem 0;
  background: var(--dark);
  color: var(--bg);
  text-align: center;
}
.mission .eyebrow { color: var(--gold-soft); }
.mission-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.mission-text {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(250, 248, 244, 0.75);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ============== PODCASTS ============== */
.podcasts {
  padding: 7rem 0;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.podcast-grid {
  display: grid;
  gap: 3rem;
}

.podcast-card {
  display: flex;
  flex-direction: row;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -25px rgba(14, 14, 12, 0.18);
}
.podcast-card:nth-child(even) {
  flex-direction: row-reverse;
}

.podcast-visual {
  position: relative;
  overflow: hidden;
  background: #0E0E0C;
  width: 38%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  align-self: center;
}
.podcast-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-body {
  flex: 1;
  min-width: 0;
}
.podcast-mark {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.podcast-sub {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.podcast-body {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.podcast-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.podcast-meta {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}
.podcast-meta h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.podcast-meta p {
  color: var(--dark-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.podcast-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--dark);
  color: var(--bg);
  padding: 4.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.footer-tag {
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: rgba(250, 248, 244, 0.7);
  font-size: 0.94rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-soft); }
.footer-meta {
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
  text-align: right;
}
.footer-tiny {
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ============== ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding-top: 7rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photo {
    aspect-ratio: 4 / 4;
    max-height: 70vh;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .podcast-card,
  .podcast-card:nth-child(even) {
    flex-direction: column;
  }
  .podcast-visual {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .footer-meta { text-align: left; }
  .about, .mission, .podcasts { padding: 5rem 0; }
}
