/* ============================================================
   TalkingHead2053 — Site Styles
   Colors: white bg | black text | red accent (#E30613)
   Font: Bebas Neue (headings + display) / system sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  --color-bg:       #ffffff;
  --color-text:     #0a0a0a;
  --color-accent:   #E30613;
  --color-muted:    #555555;
  --color-rule:     #0a0a0a;
  --color-img-ph:   #e8e8e8;

  --font-display:   'Bebas Neue', Impact, sans-serif;
  --font-body:      system-ui, -apple-system, Arial, sans-serif;

  --max-width:      960px;
  --section-pad:    5rem 1.5rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── Navigation ───────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 3px solid var(--color-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
}

.site-nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav__logo span {
  color: var(--color-accent);
}

.site-nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav__links a:hover {
  color: var(--color-accent);
}

/* Mobile nav toggle (checkbox hack — no JS required) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-text);
  transition: background 0.15s;
}

/* ── Shared Section Layout ────────────────────────────────── */

.section {
  width: 100%;
  padding: var(--section-pad);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--alt {
  background: var(--color-text);
  color: var(--color-bg);
}

.section--alt .section__heading {
  color: var(--color-bg);
}

.section--alt .section__heading::after {
  background: var(--color-accent);
}

/* ── Section Headings ─────────────────────────────────────── */

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section__heading::after {
  content: '';
  display: block;
  height: 5px;
  width: 60px;
  background: var(--color-accent);
  margin-top: 0.4rem;
}

.section__body {
  font-size: 1.05rem;
  max-width: 680px;
  margin-top: 1.4rem;
  color: inherit;
}

.section__list {
  font-size: 1.05rem;
  max-width: 680px;
  margin-top: 1rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section__list li::marker {
  color: var(--color-accent);
  font-weight: bold;
}

.section--alt .section__list li::marker {
  color: var(--color-accent);
}

/* ── Image Placeholder ────────────────────────────────────── */

.img-placeholder {
  width: 100%;
  min-height: 320px;
  background: var(--color-img-ph);
  border: 2px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #999;
}

.section--alt .img-placeholder {
  background: #1a1a1a;
  border-color: #444;
  color: #666;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 3rem;
  border-bottom: 3px solid var(--color-rule);
  /* offset for fixed nav */
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__logo {
  margin: 0 0 1.2rem;
  line-height: 0;
}

.hero__logo img {
  max-width: min(680px, 90vw);
  width: 100%;
  height: auto;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--color-text);
  max-width: 820px;
  border-left: 6px solid var(--color-accent);
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}

.hero__rule {
  width: 80px;
  height: 6px;
  background: var(--color-accent);
  border: none;
  margin: 0 0 2rem;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0.7rem 2rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.hero__cta:hover {
  background: var(--color-text);
  color: #fff;
}

/* ── Conversations Section ────────────────────────────────── */

.section-conversations {
  border-bottom: 3px solid var(--color-rule);
}

/* ── Robots Section ───────────────────────────────────────── */

.section-robots {
  border-bottom: 3px solid var(--color-rule);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.8rem;
}

/* ── About Section ────────────────────────────────────────── */

.section-about {
  border-bottom: 3px solid var(--color-bg);
}

.about__photo {
  width: 100%;
  border: 4px solid var(--color-accent);
}

/* ── Serious Section ──────────────────────────────────────── */

.section-serious {
  border-bottom: 3px solid var(--color-rule);
}

/* ── Episodes Section ─────────────────────────────────────── */

.section-episodes {
  border-bottom: 3px solid var(--color-rule);
}

.episodes__date {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5rem);
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-top: 1rem;
  line-height: 1;
}

.episodes__details {
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 560px;
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.site-footer__name span {
  color: var(--color-accent);
}

.site-footer__links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.site-footer__links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__links a:hover {
  color: var(--color-accent);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: #666;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 700px) {
  .nav-toggle-label {
    display: flex;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 3px solid var(--color-rule);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
  }

  .nav-toggle:checked ~ .site-nav__links {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .hero__tagline {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }
}
