/* =====================================================
   BENZA MAMAN — SPEAKER SITE
   Cream + charcoal + eggplant editorial palette
   Fraunces (display) + Inter (body)
   ===================================================== */

:root {
  --cream: #F5F1EA;
  --cream-2: #ECE7DD;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2A2A2A;
  --muted: #6B6358;
  --line: #D9D3C7;
  --accent: #4C1D95;
  --accent-soft: #6B3FB8;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px);

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-eyebrow,
.hero-eyebrow,
.problem-eyebrow,
.framings-label,
.trust-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 32px;
  max-width: 22ch;
}
.section-title em { font-style: italic; color: var(--accent); }

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 60ch;
  margin-bottom: 32px;
}

.accent { color: var(--accent); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--accent);
  color: var(--cream);
}
.btn-secondary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--accent); color: var(--cream) !important; }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-headline {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-headline br { display: block; }
.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-subhead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(26, 26, 26, 0.35);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 480px; margin: 24px auto 0; }
}

/* ========== TRUST STRIP ========== */
.trust {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.trust-label { margin-bottom: 18px; }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.trust-logos span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.trust-logos .trust-meta {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  font-style: italic;
}
.trust-press {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-press img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(0.15);
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}
.trust-press img:hover {
  filter: grayscale(0);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .trust-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== PROBLEM ========== */
.problem {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}
.problem-eyebrow { margin-bottom: 24px; }
.problem-stat {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto 32px;
}
.problem-stat .accent {
  font-style: italic;
  font-weight: 500;
}
.problem-body {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 50ch;
  margin: 0 auto 24px;
}
.problem-body em { color: var(--accent); font-style: italic; }
.problem-cite {
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ========== KEYNOTE ========== */
.keynote {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--charcoal);
  color: var(--cream);
}
.keynote .section-eyebrow { color: rgba(245, 241, 234, 0.6); }
.keynote .section-title { color: var(--cream); }
.keynote .section-title em { color: #C5A8FF; }

.keynote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  margin-top: 16px;
}
.keynote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.12);
  padding: 32px;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.keynote-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 241, 234, 0.22);
  transform: translateY(-3px);
}
.keynote-card h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.keynote-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.78);
}

.keynote-framings {
  border-top: 1px solid rgba(245, 241, 234, 0.18);
  padding-top: 48px;
}
.framings-label {
  color: rgba(245, 241, 234, 0.6);
  margin-bottom: 28px;
}
.framings-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.framing {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
}
.framing-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: #C5A8FF;
}
.framing h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.framing p {
  font-size: 15px;
  color: rgba(245, 241, 234, 0.7);
}

@media (max-width: 900px) {
  .keynote-grid { grid-template-columns: 1fr; gap: 16px; }
  .framing { grid-template-columns: 56px 1fr; gap: 16px; }
  .framing-num { font-size: 28px; }
}

/* ========== REEL ========== */
.reel {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background: var(--cream);
}
.reel-frame {
  margin-top: 24px;
  background: var(--charcoal);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(26, 26, 26, 0.4);
}
.reel-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== FRAMEWORK ========== */
.framework { padding: clamp(80px, 12vw, 160px) 0; }
.framework-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.framework-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}
.framework-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.framework-item:last-child { border-bottom: 0; padding-bottom: 0; }
.framework-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.framework-item h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}
.framework-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.framework-item p:last-child { margin-bottom: 0; }
.framework-item strong { color: var(--charcoal); font-weight: 600; }
.framework-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(26, 26, 26, 0.35);
}
.framework-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .framework-grid { grid-template-columns: 1fr; }
  .framework-image { position: static; max-width: 480px; margin: 0 auto; }
  .framework-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .framework-num { font-size: 40px; }
}

/* ========== ABOUT ========== */
.about {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--cream-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(26, 26, 26, 0.35);
  position: sticky;
  top: 100px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
  max-width: 56ch;
}
.about-text strong { color: var(--charcoal); font-weight: 600; }
.about-pullquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.4 !important;
  color: var(--accent) !important;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0 !important;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { position: static; max-width: 480px; margin: 0 auto; }
}

/* ========== TOOLS ========== */
.tools { padding: clamp(80px, 12vw, 140px) 0; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.tool-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
}
.tool-card:hover {
  background: var(--cream-2);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.tool-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.tool-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.tool-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal-soft);
}
.tool-card em { color: var(--accent); font-style: italic; }

@media (max-width: 900px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--charcoal);
  color: var(--cream);
}
.testimonials .section-eyebrow { color: rgba(245, 241, 234, 0.6); }
.testimonials .section-title { color: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 4px;
}
.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 24px;
}
.testimonial-meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 234, 0.55);
}
.testimonial-meta strong { color: var(--cream); font-weight: 600; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== BOOKER KIT ========== */
.booker { padding: clamp(80px, 12vw, 160px) 0; }
.booker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.booker-text .lead { margin-bottom: 32px; }
.download-onesheet {
  display: inline-block;
  margin-bottom: 16px;
}
.onesheet-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.55;
}
.booker-form {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booker-form h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}
.booker-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booker-form label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--muted);
}
.booker-form input,
.booker-form textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.booker-form input:focus,
.booker-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.booker-form textarea { resize: vertical; min-height: 80px; }
.booker-form button { margin-top: 8px; align-self: flex-start; }
.form-note { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .booker-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-logo {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  max-width: 36ch;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SELECTION ========== */
::selection {
  background: var(--accent);
  color: var(--cream);
}
