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

:root {
  --navy: #1a2744;
  --gold: #f0b429;
  --gold-light: #fcd97d;
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playpen Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  background:
    linear-gradient(to right, rgba(26, 39, 68, 0.78) 0%, rgba(26, 39, 68, 0.45) 100%),
    url('bg_big.jpeg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Playpen Sans', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 36px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1.5px solid var(--white);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: var(--gold-light);
  border: 1.5px solid var(--gold-light);
  color: var(--navy);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.book-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Desktop shows wide shot, hide portrait */
.book-img--mobile {
  display: none;
}

.hero-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 60px 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(26, 39, 68, 0.25);
}

.hero-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Playpen Sans', sans-serif;
  font-size: 18rem;
  color: rgba(240, 180, 41, 0.08);
  line-height: 1;
  pointer-events: none;
}

.hero-card-quote {
  font-family: 'Playpen Sans', sans-serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero-card-quote strong {
  color: var(--gold);
  font-style: normal;
}

.hero-card-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 28px 0;
}

.hero-card-tag {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-hand-icon {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.4);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 36px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Playpen Sans', sans-serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  display: block;
}

/* ── ABOUT ── */
.about {
  padding: 110px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--off-white);
}

.section-label {
  font-family: 'Playpen Sans', sans-serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--text-mid);
}

.about-body p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-body p strong {
  color: var(--navy);
  font-weight: 700;
}

.about-visual {
  position: relative;
}

.about-card-big {
  background: var(--navy);
  border-radius: 4px;
  padding: 50px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-big::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.12);
}

.trauma-headline {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.trauma-body {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.trauma-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.about-float-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 4px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(240, 180, 41, 0.3);
}

.about-float-tag strong,
.about-float-tag i {
  display: block;
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.about-float-tag span {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 110px 60px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: 'REMARKABLE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 14rem);
  color: rgba(26, 39, 68, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-quote {
  font-family: 'Playpen Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 36px;
}

.manifesto-quote strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 36px;
}

.manifesto-body {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ── FEATURES ── */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 60px;
  background: var(--off-white);
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 34px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--gold);
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}

.feature-title {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ── JOIN CTA ── */
.join-section {
  background: var(--navy);
  padding: 110px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.07);
  pointer-events: none;
}

.join-left .section-label {
  color: rgba(240, 180, 41, 0.8);
}

.join-title {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.join-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.join-body {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

.join-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-input-group label {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.join-input-group input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.join-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.join-input-group input:focus {
  border-color: var(--gold);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── INTERVIEWS ── */
.interviews {
  padding: 110px 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.interviews::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.05);
  pointer-events: none;
}

.interviews-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.interviews-header .section-label {
  color: rgba(240, 180, 41, 0.8);
}

.interviews-header .section-title {
  color: var(--white);
}

.interviews-intro {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.interview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.interview-card:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-4px);
}

.interview-play {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.12);
  border: 2px solid rgba(240, 180, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.4rem;
}

.play-btn {
  position: absolute;
  bottom: -18px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.play-btn:hover {
  transform: scale(1.12);
  background: var(--gold-light);
}

.interview-body {
  padding: 36px 28px 28px;
}

.interview-quote {
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.interview-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.interview-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.interview-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.interviews-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 70px;
}

.reel-frame {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(240, 180, 41, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 710px;
  border: none;
}

.reel-caption {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.reel-caption p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.45);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: 'Playpen Sans', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--gold);
}

footer p {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: 'Playpen Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HAMBURGER NAV BUTTON (hidden on desktop)
═══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animate hamburger → X */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   TABLET  —  max-width: 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {

  nav {
    padding: 18px 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 40px 70px;
    min-height: auto;
    background:
      linear-gradient(to bottom, rgba(26, 39, 68, 0.72) 0%, rgba(26, 39, 68, 0.55) 100%),
      url('bg_small.jpeg') center center / cover no-repeat;
  }

  /* Tablet: switch to portrait book cover */
  .book-img--desktop { display: none; }
  .book-img--mobile  { display: block; max-width: 320px; margin: 0 auto; }

  .stats-bar {
    padding: 32px 40px;
    gap: 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 40px;
  }

  .about-float-tag {
    top: -14px;
    right: -14px;
  }

  .manifesto {
    padding: 80px 40px;
  }

  .features {
    padding: 80px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interviews {
    padding: 80px 40px;
  }

  .interviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .join-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 40px;
  }

  footer {
    padding: 40px 40px;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════
   MOBILE  —  max-width: 767px
═══════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── NAV ── */
  nav {
    padding: 16px 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.1);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin: 8px 24px 0;
    display: block;
    text-align: center;
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    padding: 100px 20px 60px;
    grid-template-columns: 1fr;
    background:
      linear-gradient(to bottom, rgba(26, 39, 68, 0.82) 0%, rgba(26, 39, 68, 0.65) 100%),
      url('bg_small.jpeg') center center / cover no-repeat;
  }

  /* On mobile: portrait book cover, full width */
  .book-img--desktop { display: none; }
  .book-img--mobile  { display: block; max-width: 100%; }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 16px 0 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px;
  }

  /* ── ABOUT ── */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .about-visual {
    margin-top: 20px;
  }

  .about-float-tag {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }

  /* ── MANIFESTO ── */
  .manifesto {
    padding: 60px 20px;
  }

  .manifesto::before {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  /* ── FEATURES ── */
  .features {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  /* ── INTERVIEWS ── */
  .interviews {
    padding: 60px 20px;
  }

  .interviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interviews-header {
    margin-bottom: 40px;
  }

  /* ── JOIN ── */
  .join-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 20px;
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .logo-img {
    height: 30px;
  }
}