@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Epilogue:wght@400;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --ink:          #221b41;
  --warm:         #111111;
  --accent:       #b70b70;
  --accent-light: #ffb84d;
  --paper:        #ffffff;
  --dirty-paper:  #fdf8ff;
  --mist:         #ece4ff;
  --surface-muted:#f1ebff;
  --slate:        #221b41;
  --rule:         #debec8;
  --teal:         #0ab799;
  --max-width:    1400px;
  --header-h:     68px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: #111;
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

a {
  color: var(--accent);
  text-decoration: bold;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Epilogue', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split.image-right  { }
.split.image-left   { direction: rtl; }
.split.image-left > * { direction: ltr; }

section { padding: 1.5rem 0; }
section + section { border-top: 1px solid rgba(222, 190, 200, 0.3); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;          /* add this */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  border: 2px solid transparent;
  vertical-align: middle;  /* add this — fixes baseline alignment between a and button */
  box-sizing: border-box;  /* add this if you don't have a global reset */
}

.btn:hover { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #9a0960; border-color: #9a0960; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost {
  background: transparent;
  padding: calc(0.9rem + 1px) calc(2.25rem + 1px);
  color: var(--accent);
  border-color: #ffb84d;
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─── Header ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 27, 65, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-name {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb84d;
  white-space: nowrap;
  flex-shrink: 0;
}

nav { display: flex; align-items: center; gap: 0.25rem; }

nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

nav > ul > li { position: relative; }

nav > ul > li > a,
nav > ul > li > span {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}

nav > ul > li > a:hover,
nav > ul > li > span:hover { color: #fff; }

/* Dropdown */
.has-dropdown > a::after,
.has-dropdown > span::after {
  content: ' ▾';
  font-size: 0.6rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(222, 190, 200, 0.4);
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(34, 27, 65, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 200;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a,
.dropdown-menu li span {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  transition: background 0.15s;
  line-height: 1.4;
}
.dropdown-menu li a:hover { background: var(--mist); color: var(--accent); }
.dropdown-menu li span { color: var(--rule); font-style: italic; }
.dropdown-menu li + li { border-top: 1px solid rgba(222, 190, 200, 0.2); }

.btn-book {
  margin-left: 0.75rem;
  padding: 0.6rem 1.3rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 0;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-book { border-radius: 6px; }
.btn-book:hover { background: #9a0960; border-color: #9a0960; transform: scale(0.97); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 4rem 0 6rem;
  border-top: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  /*font-size: clamp(1.6rem, 3vw, 2.8rem);*/
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 1.1rem;
  color: var(--warm);
  max-width: 680px;
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(34, 27, 65, 0.15);
}

/* ─── Carousel ───────────────────────────────────────────── */
.carousel-section {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(222, 190, 200, 0.3);
}

.carousel-section + section { border-top: 1px solid rgba(222, 190, 200, 0.3); }

.carousel-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rule);
  margin-bottom: 2rem;
}

.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-track img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}

.carousel-track img:hover { opacity: 0.8; filter: grayscale(0%); }

/* ─── Static logo strip (As Seen In) ────────────────────── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
  padding: 0.5rem 0;
}

.logo-strip img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.logo-strip img:hover { opacity: 0.75; filter: grayscale(0%); }

/* ─── Two-column content sections ────────────────────────── */
.content-section { padding: 3rem 0; }

/* ─── Book section ───────────────────────────────────────── */
.book-section {
  background: var(--ink);
  padding: 2.5rem 0;
  border-top: none;
}

.book-section + .book-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.book-section .section-eyebrow {
  color: rgba(255, 176, 206, 0.7);
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
}

.book-entry {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0 3.5rem 0 0;
}

.book-entry + .book-entry {
  padding: 0 0 0 3.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.book-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.book-cover img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

.book-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 176, 206, 0.7) !important;
  margin-top: 0.75rem !important;
}

.book-section h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0;
}

.book-section h2.section-title em { color: #ffb0ce; }

.book-section a h2.section-title { color: #fff; }
.book-section a:hover h2.section-title { color: #ffb0ce; }

.book-section p { color: rgba(255, 255, 255, 0.68); }

.book-section .section-image {
  overflow: visible;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.book-section .section-image img {
  border-radius: 3px;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.3),
    0 16px 40px rgba(0,0,0,0.45),
    0 32px 80px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 260px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-section .section-image img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.3),
    0 24px 60px rgba(0,0,0,0.5),
    0 48px 100px rgba(0,0,0,0.25);
}

.content-section h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.content-section h2.section-title em { font-style: italic; color: var(--accent); }

.content-section p { color: var(--warm); line-height: 1.8; }
.content-section p + p { margin-top: 0.5rem; }

blockquote.pull-quote {
  position: relative;
  padding: 2rem 2rem 2rem 3.5rem;
  border-left: 4px solid var(--accent);
  font-family: 'Epilogue', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  background: var(--ink) !important;
}

blockquote.pull-quote::before {
  content: '\201C';
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-size: 4rem;
  color: var(--accent);
  font-family: 'Epilogue', sans-serif;
  line-height: 1;
  opacity: 0.3;
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.stat-item .stat-num {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm);
  margin-top: 0.35rem;
}

.section-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.section-image {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(34, 27, 65, 0.12);
  text-align: center;
}

.section-image img {
  display: inline-block;
}

.section-caption {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  text-align: center;
}

/*.section-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; } */
.section-image img { object-fit: cover; border-radius: 2px; }


/* ─── Dark Mission Section ───────────────────────────────── */
.mission-dark {
  background: var(--ink) !important;
  border-top: none !important;
}

.mission-dark .section-eyebrow { color: rgba(255, 176, 206, 0.8); }

.mission-dark h2.section-title { color: #fff; }

.mission-dark h2.section-title em { color: #ffb0ce; font-style: italic; }

.mission-dark p { color: rgba(255, 255, 255, 0.72); }

.mission-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.mission-dark .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  color: #fff;
  padding: 7rem 0;
  text-align: center;
  border-top: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.cta-banner h2 em { color: var(--accent-light); font-style: italic; }

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.cta-banner .btn-primary { margin: 0 0.5rem; }
.cta-banner .btn-ghost   { margin: 0 0.5rem; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ─── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 27, 65, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--paper);
  border-radius: 2px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
  box-shadow: 0 24px 80px rgba(34, 27, 65, 0.2);
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rule);
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }

.modal-box h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.modal-box p {
  font-size: 0.9rem;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.modal-success { display: none; text-align: center; padding: 1rem 0; }
.modal-success.show { display: block; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--rule);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-msg { display: none; padding: 0.75rem; border-radius: 0; font-size: 0.85rem; margin-top: 1rem; }
.form-msg.success { display: block; background: #e6f9f5; color: #0a7a62; border: 1px solid #0ab799; }
.form-msg.error   { display: block; background: #fce8f0; color: #9a0960; border: 1px solid var(--accent); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--paper);
  color: var(--warm);
  border-top: 1px solid rgba(222, 190, 200, 0.3);
  padding: 2.5rem 0;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: 'Epilogue', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

footer a { color: var(--warm); transition: color 0.15s; }
footer a:hover { color: var(--accent); }

/* ─── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: 5rem 0 3rem;
  border-top: none;
}

.page-hero .container .section-eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 900px;
}

.page-hero h2.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0;
}

.page-hero h1 em { font-style: italic; color: var(--accent); }

.page-hero .lead {
  margin-top: 1.5rem;
  max-width: 800px;
  color: var(--warm);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ─── Framework cards ────────────────────────────────────── */
.framework-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.framework-card {
  background: #fff;
  padding: 2.25rem;
  border: 1.5px solid rgba(222, 190, 200, 0.4);
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.framework-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(183, 11, 112, 0.1);
  transform: translateY(-2px);
}

.framework-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.framework-card h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.framework-card p {
  font-size: 0.88rem;
  color: var(--warm);
  line-height: 1.65;
}

/* Pyramid */
.pyramid {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pyramid-level {
  padding: 1rem 1.5rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.pyramid-level.l1 { background: var(--mist); }
.pyramid-level.l2 { background: rgba(183, 11, 112, 0.12); }
.pyramid-level.l3 { background: #111; color: #fff; }

.pyramid-level .level-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.15rem;
  display: block;
}

/* Progress bars (AIADV) */
.progress-bars { margin-top: 1.5rem; }

.progress-item { margin-bottom: 1rem; }

.progress-item .progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-family: 'Inter', sans-serif;
}

.progress-bar {
  height: 6px;
  background: var(--mist);
  border-radius: 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 0;
}

/* Lean AI steps */
.lean-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.lean-step {
  padding: 2rem;
  border: 1.5px solid rgba(222, 190, 200, 0.4);
  border-radius: 0;
  transition: border-color 0.2s;
}

.lean-step:hover { border-color: var(--accent); }

.lean-step .step-num {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.lean-step h4 { font-size: 1rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.lean-step p  { font-size: 0.85rem; color: var(--warm); }

/* ─── Speaking page ──────────────────────────────────────── */
.speaking-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.speaking-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.audience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.audience-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(222, 190, 200, 0.4);
  border-radius: 0;
}

.audience-stat .stat-pct {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.audience-stat .stat-desc {
  font-size: 0.78rem;
  color: var(--warm);
  margin-top: 0.35rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Contact form section ───────────────────────────────── */
.contact-section {
  background: var(--mist);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { font-size: 2.2rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.contact-info p { color: var(--warm); margin-bottom: 1.5rem; }

.contact-form-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0;
  border: 1.5px solid rgba(222, 190, 200, 0.4);
  box-shadow: 0 8px 40px rgba(34, 27, 65, 0.08);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner, .split, .contact-grid, .speaking-gallery {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .books-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-entry, .book-entry + .book-entry { padding: 0; border-left: none; }
  .book-entry + .book-entry { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }

  .split.image-left { direction: ltr; }

  .framework-cards { grid-template-columns: 1fr; }

  .audience-stats { grid-template-columns: repeat(2, 1fr); }

  .lean-steps { grid-template-columns: 1fr; }

  nav > ul { gap: 0; }
  nav > ul > li > a,
  nav > ul > li > span { padding: 0.5rem 0.45rem; font-size: 0.65rem; }

  .hero h1 { font-size: 1.5rem; }

  .stat-row { gap: 1.75rem; }

  section { padding: 1.5rem 0; }
  .content-section { padding: 1.5rem 0; }
  .hero { padding: 2rem 0 2rem; }
}

@media (max-width: 600px) {
  .header-inner { gap: 0.75rem; padding: 0 1.25rem; }
  .site-name { font-size: 0.75rem; }
  .btn-book { display: none; }
  section { padding: 1.5rem 0; }
  .content-section { padding: 1.5rem 0; }
  .hero { padding: 2rem 0 3rem; }
  .hero h1 { font-size: 1.3rem; }
  .page-hero h1 { font-size: 1.3rem; }
  .container { padding: 0 1.25rem; }
}
