/* =========================================================================
   Founder-Led Growth — landing page / link hub
   Editorial system: warm ivory, ink lettering, one orange accent (the dash).
   Mobile-first. Display = Anton (heavy condensed grotesque), body = Archivo.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:      #18211F;
  --ivory:    #F4F1E8;
  --ivory-2:  #EDE9DC;              /* panel tint, avoids heavy shadows */
  --orange:   #F15A32;
  --orange-d: #D84A26;             /* hover */

  --muted:    rgba(24, 33, 31, 0.64);
  --muted-inv:rgba(244, 241, 232, 0.72);
  --line:     rgba(24, 33, 31, 0.14);
  --line-inv: rgba(244, 241, 232, 0.16);

  --font-display: 'Anton', 'Arial Narrow', 'Helvetica Neue Condensed', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap:   1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;                    /* crisp, not pill-y */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;               /* belt-and-braces against overflow */
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--ink); color: var(--ivory);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }

/* ---------- Signature orange dash ---------- */
.dash {
  display: inline-block;
  width: 1.6rem; height: 0.32rem;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 0.7rem;
  flex: none;
}
.dash--lg { width: 2.4rem; height: 0.42rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.eyebrow--invert { color: var(--ivory); }

/* ---------- Display type ---------- */
.hero__title,
.section__title,
.suggest__title,
.work__title,
.episode__title {
  font-family: var(--font-display);
  font-weight: 400;              /* Anton is single-weight */
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.98;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.95rem;
  --btn-pad-x: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease,
              color 0.15s ease, border-color 0.15s ease;
}
.btn--sm { --btn-pad-y: 0.6rem; --btn-pad-x: 1.1rem; min-height: 42px; font-size: 0.9rem; }

.btn--orange  { background: var(--orange); color: var(--ink); }
.btn--orange:hover  { background: var(--orange-d); transform: translateY(-2px); }

.btn--ink     { background: var(--ink); color: var(--ivory); }
.btn--ink:hover     { background: #0f1614; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ---------- Arrow link ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; letter-spacing: 0.01em;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px; width: fit-content;
}
.link-arrow span { transition: transform 0.15s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 232, 0.9);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(0.75rem, 3vw, 1.75rem); }
.nav__link {
  font-weight: 600; font-size: 0.92rem;
  color: var(--ink); position: relative; padding-bottom: 2px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.18s ease;
}
.nav__link:hover::after { width: 100%; }
/* Hide the discreet text link on the smallest screens; button stays. */
@media (max-width: 400px) { .nav__link { display: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-block: clamp(2.75rem, 8vw, 6rem); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 6vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.9rem, 12vw, 6.25rem);
  margin-bottom: 1.5rem;
}
.hero__body {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.hook {
  display: flex; align-items: center; flex-wrap: wrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 3.6vw, 1.7rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Hero media — the show cover, framed cleanly */
.cover {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
  box-shadow: 0 1px 0 rgba(24,33,31,0.04);
}
.cover img { width: 100%; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .cover { margin-inline: 0; margin-left: auto; }
}

/* =========================================================================
   SECTION HEADS
   ========================================================================= */
.section__head { margin-bottom: clamp(2rem, 5vw, 3rem); max-width: 22ch; }
.section__title { font-size: clamp(1.9rem, 6vw, 3.4rem); }
.section__title--invert { color: var(--ivory); }

/* =========================================================================
   LATEST CONVERSATION
   ========================================================================= */
.latest { border-top: 1px solid var(--line); }
.episode {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.episode__media { position: relative; }
.episode__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.episode__flag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ink); color: var(--ivory);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: 999px;
}
.episode__body { padding: clamp(1.5rem, 4vw, 2.5rem); }
.episode__meta {
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.episode__title { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: 0.85rem; }
.episode__text { color: var(--muted); max-width: 48ch; margin-bottom: 1.5rem; }

@media (min-width: 820px) {
  .episode { grid-template-columns: 1.15fr 1fr; align-items: stretch; }
  .episode__media img { height: 100%; aspect-ratio: auto; }
}

/* =========================================================================
   LISTEN / FOLLOW — ink band (contrast interruption)
   ========================================================================= */
.band { background: var(--ink); color: var(--ivory); }
.band__grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.band .section__title { font-size: clamp(1.8rem, 5vw, 3rem); }
.platforms {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line-inv);
}
.platform {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0.25rem;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-inv);
  transition: color 0.15s ease, padding 0.15s ease;
}
.platform span { color: var(--orange); transition: transform 0.15s ease; }
.platform:hover { color: var(--orange); }
.platform:hover span { transform: translateX(5px); }

@media (min-width: 560px) { .platforms { grid-template-columns: 1fr; } }
@media (min-width: 900px) {
  .band__grid { grid-template-columns: 1fr 1fr; }
  .platform { padding-inline: 0.5rem; }
}

/* =========================================================================
   WHAT THE SHOW IS
   ========================================================================= */
.about-show { border-top: 1px solid var(--line); }
.about-show__grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.about-show .section__title { font-size: clamp(1.8rem, 5vw, 3rem); }
.about-show__body { display: grid; gap: 1.15rem; color: var(--muted); max-width: 60ch; }
.about-show__body p { font-size: clamp(1.02rem, 2vw, 1.15rem); }
.about-show__for {
  color: var(--ink) !important;
  font-weight: 600;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
}
@media (min-width: 900px) {
  .about-show__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-show__lead { position: sticky; top: 90px; }
}

/* =========================================================================
   ABOUT THE HOST
   ========================================================================= */
.host { background: var(--ivory-2); }
.host__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}
.mark {
  margin: 0; max-width: 300px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.host__role {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--orange); margin: 0.6rem 0 1rem;
}
.host__text { color: var(--muted); max-width: 46ch; }
@media (min-width: 820px) {
  .host__grid { grid-template-columns: 300px 1fr; }
}

/* =========================================================================
   SUGGEST A GUEST
   ========================================================================= */
.suggest { border-top: 1px solid var(--line); }
.suggest__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.suggest__title { font-size: clamp(1.6rem, 4.5vw, 2.6rem); max-width: 18ch; }

/* =========================================================================
   WORK WITH THIBAULT — ink band conclusion
   ========================================================================= */
.work { background: var(--ink); color: var(--ivory); text-align: left; }
.work__inner { max-width: 44ch; }
.work__title { font-size: clamp(2.2rem, 7vw, 4rem); color: var(--ivory); margin-bottom: 1rem; }
.work__text { color: var(--muted-inv); margin-bottom: 2rem; font-size: 1.1rem; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ivory); padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
.footer__logo { height: 34px; width: auto; margin-bottom: 1rem; }
.footer__tag { color: var(--muted); max-width: 30ch; margin-bottom: 1rem; }
.footer__launch { display: flex; align-items: center; font-weight: 600; }

.footer__navtitle {
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.footer__nav { display: grid; gap: 0.6rem; align-content: start; }
.footer__nav a { font-weight: 500; width: fit-content; }
.footer__nav a:hover { color: var(--orange); }

.footer__form { align-content: start; }
.field { display: flex; gap: 0.5rem; max-width: 380px; }
.field input {
  flex: 1; min-width: 0;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  font: inherit; color: var(--ink);
}
.field input::placeholder { color: var(--muted); }
.field input:focus-visible { border-color: var(--ink); outline-offset: 1px; }
.footer__note { color: var(--muted); font-size: 0.85rem; margin-top: 0.6rem; }

.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  padding-top: 1.5rem; color: var(--muted); font-size: 0.85rem;
}

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 0.8fr 1.2fr; gap: 3rem; }
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay { transition-delay: 0.1s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
