/* ============================================================
   Lindsay Gonzales — shared design system
   ============================================================ */
:root {
  --ink: #0A1A28;
  --navy: #0F2C44;
  --paper: #F6F2EA;
  --paper-deep: #EFE9DD;
  --teal: #1B7F77;
  --teal-deep: #13615A;
  --brass: #B8893B;
  --text: #26221C;
  --text-on-dark: #E7E0D4;
  --muted-on-dark: #9DAAB4;
  --muted-on-paper: #6B6457;
  --hairline-dark: rgba(231, 224, 212, 0.16);
  --hairline-paper: rgba(38, 34, 28, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Hanken Grotesk", ui-monospace, monospace;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain overlay across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background-color .35s ease, color .35s ease, border-color .35s ease;
  will-change: transform;
}
.btn-brass {
  background: var(--brass);
  color: #1a130a;
  border-color: var(--brass);
}
.btn-brass:hover { transform: translateY(-2px); background: #c69647; }
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(231,224,212,0.32);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--text-on-dark); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-paper);
}
.btn-ghost-dark:hover { transform: translateY(-2px); border-color: var(--ink); }
.btn .arr { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .45s ease, box-shadow .45s ease, border-color .45s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .45s ease;
}
.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 440;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  transition: color .45s ease;
}
.wordmark .dot { color: var(--brass); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.01em;
  position: relative;
  transition: color .45s ease, opacity .25s ease;
  opacity: 0.82;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .3s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--brass); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid rgba(231,224,212,0.34);
  color: var(--text-on-dark);
  transition: transform .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); background: var(--brass); border-color: var(--brass); color: #1a130a; }
.nav-links a.nav-cta.active { color: var(--text-on-dark); }

/* Scrolled state: paper background, dark text */
.nav.scrolled {
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline-paper);
}
.nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }
.nav.scrolled .wordmark { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--text); opacity: 0.8; }
.nav.scrolled .nav-links a.active { color: var(--brass); opacity: 1; }
.nav.scrolled .nav-cta { color: var(--ink); border-color: var(--hairline-paper); }
.nav.scrolled .nav-cta:hover { background: var(--brass); border-color: var(--brass); color: #1a130a; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-on-dark);
  transition: background-color .45s ease, transform .3s ease, opacity .3s ease;
}

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-pad { padding-block: clamp(80px, 11vw, 150px); }
.bg-ink { background: var(--ink); color: var(--text-on-dark); }
.bg-navy { background: var(--navy); color: var(--text-on-dark); }
.bg-paper { background: var(--paper); color: var(--text); }
.bg-paper-deep { background: var(--paper-deep); color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: clamp(140px, 17vh, 210px);
  padding-bottom: clamp(80px, 11vw, 140px);
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  left: -8%; top: -22%;
  background: radial-gradient(circle, rgba(27,127,119,0.30) 0%, rgba(27,127,119,0.08) 36%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 380;
  font-optical-sizing: auto;
  color: #F3EEE4;
  margin-bottom: 30px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}
.hero-sub {
  font-size: clamp(17px, 1.35vw, 19.5px);
  line-height: 1.62;
  color: var(--muted-on-dark);
  max-width: 33em;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Solo (text-only) hero variant */
.hero-solo .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}
.hero-solo .hero-sub { max-width: 40em; }

.portrait-hero {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
}
.portrait-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; }
.portrait-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,26,40,0.42) 100%);
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(231,224,212,0.78);
  background: rgba(10,26,40,0.55);
  border: 1px solid var(--hairline-dark);
  padding: 6px 11px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ---------- Reveal animation utilities ---------- */
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  }
}

/* Hero load stagger. Base state is VISIBLE; the entrance animation runs FROM
   hidden and is gated behind no-preference, so print / PDF / reduced-motion /
   any pre-animation snapshot shows real content rather than a blank base. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .intro .hero-stagger > * { animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both; }
  .intro .hero-stagger > *:nth-child(1) { animation-delay: .15s; }
  .intro .hero-stagger > *:nth-child(2) { animation-delay: .30s; }
  .intro .hero-stagger > *:nth-child(3) { animation-delay: .45s; }
  .intro .hero-stagger > *:nth-child(4) { animation-delay: .60s; }
  .intro .portrait-hero { animation: fadeUp 1.1s cubic-bezier(.2,.7,.2,1) .5s both; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(38px, 5vw, 64px) clamp(22px, 3vw, 44px);
  border-left: 1px solid var(--hairline-dark);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 380;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.stat-label {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--muted-on-dark);
  max-width: 17em;
}

/* ---------- Logo strip ---------- */
.logos-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
  text-align: center;
  margin-bottom: 40px;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.logo-slot {
  height: 78px;
  border: 1px dashed rgba(38,34,28,0.28);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38,34,28,0.42);
  transition: border-color .3s ease, color .3s ease;
}
.logo-slot:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- Named stage entries (Speaking: where I speak) ---------- */
.stage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
  max-width: 820px;
}
.stage-entry {
  border: 1px solid var(--hairline-paper);
  border-top: 2px solid var(--brass);
  border-radius: 2px;
  padding: clamp(24px, 2.6vw, 34px);
}
.stage-entry h3 {
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.stage-entry .when {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
}

/* ---------- Section heading block ---------- */
.sec-head { margin-bottom: clamp(46px, 6vw, 78px); max-width: 40rem; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 380;
  text-wrap: balance;
}
.sec-title em { font-style: italic; color: var(--brass); }
.bg-paper .sec-title, .bg-paper-deep .sec-title { color: var(--ink); }
.bg-ink .sec-title, .bg-navy .sec-title { color: #F3EEE4; }

/* ---------- Engagements (home) ---------- */
.eng-row {
  display: grid;
  grid-template-columns: 0.8fr 2.6fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hairline-paper);
}
.eng-row:last-child { border-bottom: 1px solid var(--hairline-paper); }
.eng-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 380;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.01em;
}
.eng-role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
  margin-bottom: 16px;
}
.eng-title {
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  text-wrap: balance;
}
.eng-body {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text);
  max-width: 44em;
}
.go-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brass);
  padding-top: 6px;
}
.go-link .arr { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.go-link:hover .arr { transform: translateX(5px); }

/* ---------- Two-column heading layout (who / speaker kit) ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.who-head {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 380;
  color: #F3EEE4;
  text-wrap: balance;
}
.who-head em { font-style: italic; color: var(--brass); }
.who-body {
  font-size: 17px;
  line-height: 1.66;
  color: var(--muted-on-dark);
  margin-bottom: 34px;
}
.pullquote {
  border-left: 2px solid var(--brass);
  padding-left: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.46;
  color: #E7E0D4;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}
.portrait-about {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--hairline-paper);
}
.portrait-about img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; display: block; }
.about-text .eyebrow { margin-bottom: 18px; }
.about-head {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 380;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
}
.about-text p { font-size: 16.5px; line-height: 1.66; color: var(--text); margin-bottom: 20px; }
.about-text .go-link { margin-top: 6px; }

/* ---------- Card grid (selected work / formats) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
}
.work-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline-paper);
  border-radius: 2px;
  padding: clamp(28px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.work-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -28px rgba(10,26,40,0.4); }
.work-card:hover::before { transform: scaleX(1); }
.work-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 20px;
}
.work-title {
  font-size: clamp(21px, 1.9vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}
.work-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted-on-paper);
  margin-bottom: 26px;
  flex-grow: 1;
}
.work-metric {
  border-top: 1px solid var(--hairline-paper);
  padding-top: 18px;
  font-size: 15px;
  color: var(--text);
}
.work-metric b { font-family: var(--serif); font-weight: 440; color: var(--brass); font-size: 17px; }

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 1000px; height: 1000px;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(27,127,119,0.26) 0%, rgba(27,127,119,0.06) 40%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; max-width: 42rem; margin: 0 auto; }
.cta .eyebrow { margin-bottom: 22px; }
.cta-head {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 380;
  color: #F3EEE4;
  margin-bottom: 26px;
  text-wrap: balance;
}
.cta-body {
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted-on-dark);
  margin-bottom: 38px;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--text-on-dark); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-block: clamp(64px, 7vw, 92px);
}
.footer .wordmark { color: #F3EEE4; font-size: 24px; display: inline-block; margin-bottom: 18px; }
.footer-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted-on-dark); max-width: 26em; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--muted-on-dark); transition: color .25s ease; }
.footer-col a:hover { color: #F3EEE4; }
.footer-bar {
  border-top: 1px solid var(--hairline-dark);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-on-dark);
}

/* ============================================================
   Speaking page components
   ============================================================ */

/* ---------- Reel video placeholder ---------- */
.reel-wrap { max-width: 980px; margin: 0 auto; }
.stage-photo {
  position: relative;
  margin: 0 auto;
  max-width: 470px;
  aspect-ratio: 941 / 1672;
  border: 1px solid var(--hairline-paper);
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink);
}
.stage-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.stage-photo figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(231,224,212,0.85);
  background: rgba(10,26,40,0.55);
  border: 1px solid var(--hairline-dark);
  padding: 6px 11px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--hairline-paper);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ink);
  background-image:
    repeating-linear-gradient(135deg, rgba(231,224,212,0.05) 0 2px, transparent 2px 11px);
  cursor: pointer;
}
.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(27,127,119,0.22), transparent 60%);
  pointer-events: none;
}
.video-play {
  position: relative;
  z-index: 2;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background-color .35s ease;
}
.video-play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent #1a130a;
  margin-left: 5px;
}
.video-embed:hover .video-play { transform: scale(1.08); background: #c69647; }
.video-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(231,224,212,0.7);
  border: 1px solid var(--hairline-dark);
  background: rgba(10,26,40,0.5);
  padding: 6px 11px;
  border-radius: 2px;
}
.reel-caption {
  text-align: center;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted-on-paper);
}

/* ---------- Signature talks ---------- */
.talks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4.5vw, 72px);
}
.talk { position: relative; padding-top: 28px; border-top: 1px solid var(--hairline-paper); }
.talk-title {
  font-size: clamp(24px, 2.3vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.talk-desc {
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--muted-on-paper);
  margin-bottom: 24px;
}
.talk-takeaways { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.talk-takeaways li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
}
.talk-takeaways li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 16px; height: 1px;
  background: var(--brass);
}
.talks-closing {
  margin-top: clamp(50px, 6vw, 76px);
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid var(--hairline-paper);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 30em;
  text-wrap: balance;
}
.talks-closing em { color: var(--brass); font-style: italic; }

/* ---------- Audience takeaway list (navy) ---------- */
.takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 88px);
}
.takeaway-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding-block: clamp(22px, 2.4vw, 30px);
  border-top: 1px solid var(--hairline-dark);
}
.takeaway-item .tk-num {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 20px;
  color: var(--brass);
  flex-shrink: 0;
  line-height: 1.4;
}
.takeaway-item p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--text-on-dark);
  font-family: var(--serif);
  font-weight: 380;
}

/* ---------- Formats cards ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 1.8vw, 24px);
}
.format-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline-paper);
  border-radius: 2px;
  padding: clamp(26px, 2.2vw, 34px) clamp(24px, 2vw, 30px) clamp(30px, 2.6vw, 38px);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.format-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.format-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -28px rgba(10,26,40,0.4); }
.format-card:hover::before { transform: scaleX(1); }
.format-title {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.format-desc { font-size: 15px; line-height: 1.55; color: var(--muted-on-paper); }

/* ---------- Speaker kit (uses who-grid) ---------- */
.kit-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.kit-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* ---------- Bio block ---------- */
.bio-block {
  max-width: 52rem;
  border-top: 2px solid var(--brass);
  padding-top: 30px;
}
.bio-block p {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}
.bio-tools { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brass);
  background: none;
  border: 1px solid var(--hairline-paper);
  border-radius: 2px;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color .3s ease, color .3s ease;
}
.copy-btn:hover { border-color: var(--brass); }
.copy-note { font-size: 13px; color: var(--muted-on-paper); opacity: 0; transition: opacity .3s ease; }
.copy-note.show { opacity: 1; }

/* ============================================================
   Corporate Training page components
   ============================================================ */

/* Two-column heading layout reused on paper (credibility) */
.bg-paper .who-head, .bg-paper-deep .who-head { color: var(--ink); }
.bg-paper .who-body, .bg-paper-deep .who-body { color: var(--text); }

/* Closing line reused on navy */
.bg-navy .talks-closing { color: var(--text-on-dark); border-color: var(--hairline-dark); }
.bg-navy .talks-closing em { color: var(--brass); }

/* ---------- Prose (stacked body paragraphs) ---------- */
.prose { max-width: 44rem; display: flex; flex-direction: column; gap: 24px; }
.prose p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.68; color: var(--text); text-wrap: pretty; }
.prose em { font-style: italic; }
.bg-navy .prose p, .bg-ink .prose p { color: var(--muted-on-dark); }

/* ---------- Outcomes list (navy) ---------- */
.outcome-list { list-style: none; margin: 0; padding: 0; max-width: 54rem; }
.outcome-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-block: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid var(--hairline-dark);
}
.outcome-list li:last-child { border-bottom: 1px solid var(--hairline-dark); }
.outcome-list .mk { flex-shrink: 0; width: 26px; height: 2px; background: var(--brass); margin-top: 0.66em; }
.outcome-list .otext {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.35;
  color: var(--text-on-dark);
  text-wrap: pretty;
}

/* ---------- Curriculum modules ---------- */
.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4.5vw, 64px) clamp(40px, 5vw, 84px);
}
.module { border-top: 1px solid var(--hairline-paper); padding-top: 26px; }
.module-num {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.module-title {
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: balance;
}
.module-body { font-size: 16px; line-height: 1.62; color: var(--muted-on-paper); max-width: 34em; }

/* ---------- Format cards: dark variant ---------- */
.format-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.format-card.on-dark { background: rgba(231, 224, 212, 0.03); border-color: var(--hairline-dark); }
.format-card.on-dark .format-title { color: #F3EEE4; }
.format-card.on-dark .format-desc { color: var(--muted-on-dark); }
.format-card.on-dark:hover { box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.5); }

/* ---------- Testimonial / proof card ---------- */
.testimonial {
  max-width: 62rem;
  margin: 0 auto;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline-paper);
  border-radius: 3px;
  padding: clamp(36px, 5vw, 70px);
}
.testimonial .quote-mark {
  display: block;
  font-family: var(--serif);
  font-weight: 440;
  font-size: clamp(72px, 8vw, 116px);
  line-height: 0.62;
  height: 0.46em;
  color: var(--brass);
}
.testimonial-text {
  font-family: var(--serif);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 33px);
  line-height: 1.3;
  color: var(--ink);
  margin: 20px 0 30px;
  text-wrap: pretty;
}
.testimonial-attr {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-paper);
}
.testimonial-metric {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-paper);
  font-size: 16px;
  color: var(--text);
}
.testimonial-metric b { font-family: var(--serif); color: var(--brass); font-weight: 440; font-size: 18px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 58rem; }
.faq-item { border-top: 1px solid var(--hairline-paper); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline-paper); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: clamp(22px, 2.4vw, 30px);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink);
  transition: color .25s ease;
}
.faq-item summary:hover { color: var(--brass); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--brass); transition: transform .3s ease, opacity .3s ease; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-answer {
  padding-bottom: clamp(22px, 2.4vw, 30px);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--muted-on-paper);
  max-width: 48em;
}
.faq-answer .ph { color: var(--brass); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat { border-top: 1px solid var(--hairline-dark); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    background: var(--ink);
    padding: 40px 36px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--text-on-dark); font-size: 18px; }
  .nav.scrolled .nav-links a { color: var(--text-on-dark); }
  .nav-links .nav-cta { border-color: var(--brass); color: var(--brass); }
  .nav.scrolled .nav-links .nav-cta { color: var(--brass); }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait-hero { max-width: 380px; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .portrait-about { max-width: 420px; }
  .work-grid { grid-template-columns: 1fr; }
  .talks-grid { grid-template-columns: 1fr; gap: 0; }
  .talk { padding-top: 32px; margin-top: 4px; }
  .takeaway-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; gap: 0; }
  .module { padding-top: 32px; margin-top: 4px; }
  .format-grid.cols-3 { grid-template-columns: 1fr; }
  .eng-row { grid-template-columns: auto 1fr; grid-template-areas: "num title" "num body" "num link"; column-gap: 24px; row-gap: 14px; }
  .eng-num { grid-area: num; }
  .eng-main { grid-area: title; }
  .eng-link-wrap { grid-area: link; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--hairline-dark); }
  .stat:first-child { border-top: none; }
  .logos-row { grid-template-columns: repeat(2, 1fr); }
  .stage-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-grid.cols-3 { grid-template-columns: 1fr; }
  .eng-row { grid-template-columns: 1fr; grid-template-areas: "num" "title" "body" "link"; }
  .hero h1 { font-size: 38px; }
}
