
/* ── RESET & ROOT ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #CC2222;
  --red-dark:  #A01A1A;
  --red-light: #E83333;
  --dark:      #0E0E0E;
  --dark-2:    #1A1A1A;
  --dark-3:    #242424;
  --gray:      #555555;
  --lgray:     #888888;
  --silver:    #C8C8C8;
  --off-white: #F8F6F3;
  --white:     #FFFFFF;
  --gray-c:    #E8E8E8;
  --gray-c2:   #E2E2E2;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w: 1200px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
nav {
  position: static;
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 24px 40px 0;
  background: var(--gray-c);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  background: var(--gray-c);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 60px 80px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(204,34,34,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(204,34,34,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 2px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 8px;
}
.hero-headline .accent { color: var(--red); }

.hero-subhead {
  font-family: var(--font-cond);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 28px;
  margin-top: 8px;
}

.hero-body {
  font-size: 17px; font-weight: 400;
  line-height: 1.75;
  color: #0E0E0E;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  border: 1px solid rgba(14,14,14,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--red); background: rgba(204,34,34,0.08); }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}


@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes pulse { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }

/* Hero stats */
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(14,14,14,0.15);
}
.stat { }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  color: #666666;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ── EMPLOYERS BAR ────────────────────────────────────────────────────────── */
.employers {
  background: var(--dark-2);
  padding: 40px 24px;
  border-top: 1px solid rgba(204,34,34,0.2);
  border-bottom: 1px solid rgba(204,34,34,0.2);
}
.employers-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.employers-label {
  font-family: var(--font-cond);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white);
}
.employers-logos {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; flex-wrap: nowrap; width: 100%;
}
.employer-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 28px; flex: 1;
  transition: opacity 0.3s;
  min-width: 0;
}
.employer-tile.dark-bg { background: var(--dark-2); }
.employer-tile.red-bg { background: var(--dark-2); }
.employer-tile:hover { opacity: 0.8; }
.employer-tile img {
  height: 32px; width: auto; max-width: 120px;
  object-fit: contain; display: block;
}

/* ── PROBLEM SECTION ──────────────────────────────────────────────────────── */
.problem {
  background: var(--off-white);
  padding: 20px 24px;
  position: relative;
}
.problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.problem-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.problem-quote {
  position: relative;
  padding-left: 32px;
}
.problem-quote::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--red);
  border-radius: 2px;
}
.problem-quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 16px;
}
.problem-quote-attr {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #0E0E0E;
}
.problem-content { }
.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.problem-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.problem-body {
  font-size: 16px; font-weight: 400; line-height: 1.8;
  color: #0E0E0E; margin-bottom: 28px;
}

/* ── WHAT I OFFER ─────────────────────────────────────────────────────────── */
.offer {
  background: var(--gray-c);
  padding: 20px 24px;
  position: relative; overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(204,34,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.offer-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title-dark span { color: var(--red); }
.section-subtitle {
  font-size: 20px; font-weight: 400;
  color: var(--dark);
  max-width: 900px; margin: 0 auto;
  line-height: 1.4;
  white-space: nowrap;
}
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.offer-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { background: var(--off-white); }
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: transparent;
  transition: background 0.3s;
}
.offer-card:hover::before { background: var(--red); }
.offer-card-num {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 900;
  color: rgba(204,34,34,0.45);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.offer-card:hover .offer-card-num { color: rgba(204,34,34,0.45); }
.offer-card-title {
  font-family: var(--font-cond);
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #0E0E0E;
  margin-bottom: 16px;
  line-height: 1.2;
}
.offer-card-body {
  font-size: 14px; font-weight: 400; line-height: 1.75;
  color: #0E0E0E;
  margin-bottom: 28px;
  flex: 1;
}
.offer-card-link {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #0E0E0E;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.offer-card-link:hover { gap: 14px; }
.offer-card-link::after { content: '→'; }

/* ── SOCIAL PROOF ─────────────────────────────────────────────────────────── */
.proof {
  background: var(--off-white);
  padding: 20px 24px;
}
.proof-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.15;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-title-light span { color: var(--red); }
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 56px;
}
.proof-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: relative;
  border-left: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.proof-quote-mark {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900;
  color: rgba(204,34,34,0.45);
  line-height: 1;
  margin-bottom: -20px;
}
.proof-text {
  font-family: var(--font-body);
  font-size: 16px; font-style: italic; font-weight: 400;
  line-height: 1.7; color: var(--dark);
  margin-bottom: 24px;
}
.proof-attr {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0E0E0E;
}
.proof-role {
  font-family: var(--font-body);
  font-size: 12px; color: #333333;
  margin-top: 4px;
}

/* ── CAUSE SECTION ────────────────────────────────────────────────────────── */
.cause {
  background: var(--dark-2);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.cause::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(204,34,34,0.08) 0%, transparent 70%);
}
.cause-inner {
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.cause-eyebrow {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.cause-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 16px;
}
.cause-body {
  font-size: 15px; font-weight: 400; line-height: 1.8;
  color: var(--white); margin-bottom: 28px;
}
.cause-link {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.cause-link:hover { gap: 14px; }
.cause-link::after { content: '→'; }
.cause-stat {
  text-align: center; flex-shrink: 0;
  padding: 40px; background: rgba(204,34,34,0.1);
  border: 1px solid rgba(204,34,34,0.45); border-radius: 4px;
}
.cause-stat-num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--red);
}
.cause-stat-label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: var(--white);
  margin-top: 8px; line-height: 1.5;
  max-width: 120px;
}

/* ── CTA SECTION ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding: 80px 24px;
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-body {
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: var(--white); margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border-radius: 2px; border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(204,34,34,0.2);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand-name span { color: var(--red); }
.footer-tagline {
  font-size: 13px; font-weight: 400; line-height: 1.7;
  color: var(--white); margin-bottom: 20px;
}
.footer-cause {
  font-size: 12px; font-weight: 500;
  color: var(--white); letter-spacing: 0.04em;
}
.footer-col-title {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #888888; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; font-weight: 400;
  color: var(--white);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--white); }
.footer-amazon {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.on-dark span { background: var(--white); }

@media (max-width: 900px) {
  /* NAV */
  nav { padding: 0 20px; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }

  /* HERO */
  .hero { grid-template-columns: 1fr; padding: 130px 24px 60px; text-align: center; }
  .hero-headshot { display: none; }
  .hero-visual { order: -1; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }
  .hero-headline { text-align: center; }
  .hero-subhead { text-align: center; }
  .hero-body { text-align: center; max-width: 100%; }
  .hero-content { order: 2; }

  /* BOOK COVER */
  .book-container img { width: 220px !important; }

  /* EMPLOYERS */
  .employers-logos { flex-wrap: wrap; }
  .employer-tile { min-width: 33%; flex: 1 1 30%; }

  /* PROBLEM */
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }

  /* OFFER */
  .offer-grid { grid-template-columns: 1fr; gap: 2px; }

  /* PROOF */
  .proof-grid { grid-template-columns: 1fr; }

  /* VIDEO */
  .video-section-inner { padding: 0; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── LARGE LOGO HERO ── */
.logo-hero { 
  background: var(--dark); 
  display: flex; align-items: center; justify-content: center; 
  padding: 60px 24px 40px;
  border-bottom: 1px solid rgba(204,34,34,0.2);
}
.logo-hero img { 
  width: 320px; height: 320px; 
  display: block;
  filter: drop-shadow(0 20px 60px rgba(204,34,34,0.45));
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 900px) {
  .logo-hero img { width: 220px; height: 220px; }
}

/* ── VIDEO SECTION ── */
.video-section { background: var(--gray-c); padding: 80px 24px; }
.video-section-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.video-eyebrow { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.video-eyebrow::before, .video-eyebrow::after { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.video-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 700; color: var(--dark); margin-bottom: 40px; line-height: 1.2; }
.video-title span { color: var(--red); }
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; background: var(--gray-c2); border: 1px solid rgba(204,34,34,0.2); overflow: hidden; }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: var(--dark-2); }
.video-placeholder-icon { width: 72px; height: 72px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, background 0.2s; }
.video-placeholder-icon:hover { transform: scale(1.08); background: var(--red-light); }
.video-placeholder-icon::after { content: ''; border-left: 28px solid white; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px; }
.video-placeholder-label { font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); }
.video-caption { text-align: center; }

/* ── FIXED RIGHT NAV ── */
.fixed-nav {
  position: fixed; top: 0; right: 0; z-index: 200;
  display: flex; align-items: flex-start; gap: 36px;
  padding: 0 40px; height: 60px;
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204,34,34,0.45);
  border-left: 1px solid rgba(204,34,34,0.45);
}
.fixed-nav a { font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); text-decoration: none; transition: color 0.2s; }
.fixed-nav a:hover { color: var(--white); }
.fixed-nav a.active { color: var(--red); }
.fixed-nav .nav-cta { background: var(--red); color: var(--white) !important; padding: 10px 20px; }
.fixed-nav .nav-cta:hover { background: var(--red-light); }
.hamburger-fixed { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger-fixed span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
@media (max-width: 900px) {
  .fixed-nav { left: 0; justify-content: flex-end; padding: 0 16px; }
  .fixed-nav .fixed-nav-links { display: none !important; }
  .hamburger-fixed { display: flex !important; flex-direction: column; gap: 5px; }
}

/* ── FOOTER UPGRADE ── */
footer { background: var(--dark); border-top: 3px solid var(--red); padding: 60px 24px 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 60px; padding-bottom: 48px; }
.footer-col-title { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: var(--white); line-height: 1.8; margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--white); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-linkedin { display: flex; align-items: center; font-family: var(--font-cond); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; color: var(--white); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-linkedin:hover { color: var(--red); }
.footer-connect-desc { font-size: 13px; color: var(--white); line-height: 1.7; margin: 0 0 20px; }
.footer-amazon-btn { display: inline-block; font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); border: 1px solid var(--red); padding: 10px 20px; text-decoration: none; transition: all 0.2s; }
.footer-amazon-btn:hover { background: var(--red); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: var(--white); }
.footer-domain { font-family: var(--font-cond); letter-spacing: 0.08em; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── NAV TAGLINE ── */
.nav-tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 58px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-left: 28px;
  align-self: center;
  padding-top: 80px;
  white-space: nowrap;
  flex: 1;
}
@media (max-width: 900px) {
  .nav-tagline { display: none; }
}

/* ── UNIFIED BUTTON SYSTEM ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--red); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border: 2px solid rgba(14,14,14,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--dark); color: var(--white); }
/* Map old button names to new system */
.btn-white { display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}
.btn-white:hover { border-color: var(--white); }
.btn-outline { display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-amazon { display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.btn-amazon:hover { background: transparent; color: var(--red); }

/* ── BRAND STATEMENT ── */
.brand-statement { background: #D1D1D1; padding: 80px 24px; text-align: center; border-top: 1px solid rgba(204,34,34,0.2); position: relative; overflow: hidden; }
.brand-statement::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(204,34,34,0.06) 0%, transparent 70%); pointer-events: none; }
.brand-statement-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.brand-statement-rule { width: 48px; height: 3px; background: var(--red); margin: 0 auto 40px; }
.brand-statement-text { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 48px); font-weight: 700; font-style: italic; color: var(--dark); line-height: 1.35; margin-bottom: 28px; }
.brand-statement-text em { color: var(--red); font-style: inherit; }
.brand-statement-text span { color: var(--red); }
.brand-statement-attr { font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555555; }
.brand-statement-attr em { font-style: normal; color: #555555; }
@media (max-width: 900px) { .brand-statement { padding: 60px 24px; } .brand-statement-text { font-size: clamp(22px, 6vw, 34px); } }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background: rgba(14,14,14,0.98); backdrop-filter: blur(12px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-cond); font-size: 28px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mob-cta { background: var(--red); padding: 16px 40px; color: var(--white) !important; }

/* ── QUOTE TICKER ── */
.quote-ticker { background: var(--dark-3); border-top: 1px solid rgba(204,34,34,0.2); border-bottom: 1px solid rgba(204,34,34,0.2); overflow: hidden; padding: 18px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 0; animation: ticker-scroll 90s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 32px; }
.ticker-quote { font-family: var(--font-body); font-size: 14px; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75); white-space: nowrap; }
.ticker-dot { color: var(--red); font-size: 10px; flex-shrink: 0; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── VIDEO COMING SOON ── */
.video-coming-soon { background: var(--gray-c2, #E2E2E2); border: 1px solid rgba(204,34,34,0.2); position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; }
.video-coming-soon-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.vcs-icon { width: 72px; height: 72px; border: 2px solid rgba(204,34,34,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vcs-icon svg { width: 28px; height: 28px; }
.vcs-label { font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(14,14,14,0.65); }
.vcs-note { font-family: var(--font-body); font-size: 13px; font-style: italic; color: rgba(14,14,14,0.45); }

/* ═══════════════════════════════════════════════════════
   MOBILE STYLES — 768px and below
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── GLOBAL ── */
  * { -webkit-tap-highlight-color: transparent; }
  body { padding-top: 60px; }


  /* ── NAV MOBILE FIX ── */
  nav {
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
    min-height: 60px;
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 200;
  }
  .nav-tagline { display: none !important; }
  .nav-tagline-only { display: none !important; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; margin-left: auto; }
  nav img { height: 60px !important; width: auto !important; }
  nav .nav-logo { display: flex; align-items: center; }


  /* ── FIXED NAV ── */
  .fixed-nav {
    left: 0;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(14,14,14,1);
  }
  .fixed-nav .fixed-nav-links { display: none !important; }
  .hamburger-fixed { display: flex !important; }

  /* ── MAIN NAV ── */
  nav { padding: 12px 20px 0; }
  .nav-tagline { display: none; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }

  /* ── HERO (all pages) ── */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 80px 20px 48px !important;
    min-height: auto !important;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual, .hero-headshot { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .hero-creds { grid-template-columns: 1fr 1fr !important; gap: 12px; }

  /* ── BOOK HERO ── */
  .book-hero {
    grid-template-columns: 1fr !important;
    padding: 80px 20px 48px !important;
    text-align: center;
    gap: 32px;
  }
  .book-hero .hero-eyebrow { justify-content: center; }
  .amazon-cta { justify-content: center; }

  /* ── HERO INNER (contact) ── */
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* ── CONTACT ── */
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 40px 20px !important;
  }
  .form-row { grid-template-columns: 1fr !important; }
  .hero-options { width: 100%; }
  .hero-option { padding: 16px 20px; }

  /* ── TOUCH TARGETS ── */
  .nav-links a, .fixed-nav a { min-height: 44px; display: flex; align-items: center; }
  .btn-primary, .btn-secondary, .btn-amazon, .btn-white, .btn-outline,
  .form-submit, .nav-cta { min-height: 48px; }

  /* ── PROBLEM SECTION ── */
  .problem-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 48px 20px !important;
  }

  /* ── OFFER GRID ── */
  .offer { padding: 48px 20px !important; }
  .offer-grid { grid-template-columns: 1fr !important; }

  /* ── PROOF / TESTIMONIALS ── */
  .proof { padding: 48px 20px !important; }
  .proof-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .test-grid { grid-template-columns: 1fr !important; }

  /* ── CAUSE SECTION ── */
  .cause { padding: 48px 20px !important; }
  .cause-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .cause-stat { width: 100%; }

  /* ── ABOUT: STORY / MENTORING / AWARDS ── */
  .story { padding: 48px 20px !important; }
  .story-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .mentoring { padding: 48px 20px !important; }
  .mentoring-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .mentoring-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .awards-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .education { padding: 48px 20px !important; }
  .edu-inner { flex-direction: column !important; gap: 24px; }

  /* ── BOOK: DESC / PULL-QUOTES / TOC ── */
  .book-desc { padding: 48px 20px !important; }
  .book-desc-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .pull-quotes { padding: 48px 20px !important; }
  .pull-quotes-grid { grid-template-columns: 1fr !important; }
  .toc { padding: 48px 20px !important; }
  .toc-grid { grid-template-columns: 1fr !important; }
  .toc-part { padding: 20px !important; }

  /* ── SPEAKING: EVENTS / INCLUDED / TALKS ── */
  .events { padding: 48px 20px !important; }
  .events-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .included { padding: 48px 20px !important; }
  .included-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .talks { padding: 48px 20px !important; }
  .talk-row { grid-template-columns: 1fr !important; }
  .talk-num-col { display: none; }
  .talk-cta-col { display: none; }
  .included-cta-box { padding: 32px 20px !important; }
  .faq { padding: 48px 20px !important; }

  /* ── RESOURCES: CHEAT SHEET / MEDIA KIT / QT ── */
  .cheat-sheet { padding: 48px 20px !important; }
  .cs-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .media-kit { padding: 48px 20px !important; }
  .media-kit-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .qt-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .podcasts { padding: 48px 20px !important; }
  .pod-grid { grid-template-columns: 1fr !important; }
  .mk-cta-box { padding: 32px 20px !important; }
  .articles { padding: 48px 20px !important; }
  .articles-grid { grid-template-columns: 1fr !important; }

  /* ── VIDEO SECTION ── */
  .video-section { padding: 48px 20px !important; }

  /* ── BRAND STATEMENT ── */
  .brand-statement { padding: 48px 20px !important; }

  /* ── FOOTER ── */
  footer { padding: 40px 20px 0 !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-full-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── EMPLOYERS BAR ── */
  .employers-logos { flex-wrap: wrap; }
  .employer-tile { min-width: 33.33%; flex: 1 1 30%; }

  /* ── QUOTE TICKER ── slower on mobile ── */
  .ticker-track { animation-duration: 80s !important; }

  /* ── FORM INPUTS ── prevent iOS zoom on focus ── */
  .form-input, textarea, select, input[type="text"],
  input[type="email"], input[type="tel"] { font-size: 16px !important; }

  /* ── SECTION PADDING GLOBAL FALLBACK ── */
  section, .section { padding-left: 20px !important; padding-right: 20px !important; }

  /* ── LOGO IMAGES ── */
  .logo-hero img { width: 180px !important; height: 180px !important; }
  nav img { height: 100px !important; }

  /* ── BOOK COVER IN HERO ── */
  .book-container img { width: 280px !important; max-width: 85vw !important; }

  /* ── SECTION HEADERS ── */
  .section-header { margin-bottom: 36px; }
  .section-subtitle { white-space: normal !important; font-size: 16px !important; }

  /* ── CTA SECTION ── */
  .cta-section { padding: 48px 20px !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; text-align: center; justify-content: center; }

  /* ── ABOUT PAGE-CTA ── */
  .page-cta { padding: 48px 20px !important; }

  /* ── CONTACT CAUSE STRIP ── */
  .cause-strip { padding: 32px 20px !important; }
}

/* ── SMALL PHONES (375px and below) ── */
@media (max-width: 375px) {
  .hero { padding: 72px 16px 40px !important; }
  .hero-creds { grid-template-columns: 1fr !important; }
  .mentoring-stats { grid-template-columns: 1fr !important; }
  .offer-card { padding: 28px 20px !important; }
}



/* ── ADDITIONAL SHARED RULES ── */

.nav-links a:hover, .nav-links a.active { color: var(--red); }

.hero-title { font-family: var(--font-display); font-size: clamp(42px, 5.5vw, 72px); font-weight: 900; line-height: 1.08; color: var(--dark); margin-bottom: 24px; }

.hero-title span { color: var(--red); }
/* Photo placeholder */
.hero-photo { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }

.photo-frame {
  width: 380px; height: 460px;
  background: var(--dark-2);
  border: 1px solid rgba(204,34,34,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 28px; }

.section-title span { color: var(--red); }

.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }

.section-sub-dark { font-size: 16px; font-weight: 400; color: var(--dark); max-width: 560px; line-height: 1.7; }

.edu-items { display: flex; gap: 48px; flex-wrap: wrap; }

.page-cta-inner { max-width: 680px; margin: 0 auto; }

.page-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.12; }

.page-cta p { font-size: 16px; font-weight: 400; color: var(--white); margin-bottom: 40px; line-height: 1.7; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.footer-links-row { display: flex; gap: 28px; }

.footer-links-row a { font-size: 13px; color: var(--white); text-decoration: none; transition: color 0.2s; }

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

.delay-1 { transition-delay: 0.1s; }
 .delay-2 { transition-delay: 0.2s; }

.delay-3 { transition-delay: 0.3s; }
 .delay-4 { transition-delay: 0.4s; }

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

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

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

.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); }

}
  .hamburger-fixed { display: flex !important; flex-direction: column; gap: 5px; }
/* Book cover visual */
.book-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }

.book-cover {
  width: 300px; height: 450px;
  background: linear-gradient(150deg, #1e1e1e 0%, #111 100%);
  border-radius: 4px 14px 14px 4px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.7), 0 30px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: floatBook 5s ease-in-out infinite;
}

.amazon-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; }

.pq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }

.section-sub { font-size: 15px; font-weight: 400; color: var(--dark); max-width: 500px; line-height: 1.7; }

.delay-5 { transition-delay: 0.5s; }

.delay-6 { transition-delay: 0.6s; }
/* FORM */
.contact-form-wrap { background: var(--white); padding: 48px; box-shadow: 0 4px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden; }

.cause-strip-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }

.cs-action-label { font-size: 13px; font-weight: 400; color: var(--white); margin-top: 6px; margin-bottom: 20px; line-height: 1.5; max-width: 140px; }

.cs-form { display: flex; gap: 0; max-width: 440px; }

.cs-btn { padding: 16px 28px; background: var(--dark); color: var(--white); font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }

.podcasts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }

.wb-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }