:root {
  --ink: #292723;
  --muted: #625f58;
  --paper: #f8f5ef;
  --paper-deep: #eee9df;
  --blue: #687f94;
  --blue-dark: #344959;
  --gold: #aa8b52;
  --magenta: #6b1f59;
  --line: rgba(41, 39, 35, 0.16);
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; padding: 10px 14px; background: var(--white); }
.offer-banner { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 20px; color: #37423d; background: #dfe5dd; font-size: 12px; line-height: 1.4; text-align: center; text-decoration: none; transition: background-color 180ms ease; }
.offer-banner strong { font-weight: 500; }
.offer-banner span { color: var(--blue-dark); }
.offer-banner:hover, .offer-banner:focus-visible { background: #d3ddd1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.96);
  backdrop-filter: blur(12px);
}
.brand {
  flex: none;
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.site-nav a {
  padding: 9px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--blue-dark); }
.site-nav .nav-cta { margin-left: 8px; padding: 11px 16px; color: var(--paper); background: var(--blue-dark); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--white); background: var(--magenta); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  min-height: 630px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px clamp(34px, 8vw, 120px); }
.hero-image { min-height: 560px; background-color: var(--paper-deep); background-position: center; background-size: cover; }
.hero-image.home { background-image: linear-gradient(90deg, rgba(238,233,223,.26), transparent 22%), url("images/B-34.jpg"); background-position: center 42%; }
.hero-image.speaking { background-image: url("images/B-31.jpg"); background-position: center 72%; min-height: 740px; }
.hero-image.women { background-image: url("images/B-12.jpg"); background-position: center 42%; }
.hero-image.organizations { background-image: url("images/B-7.jpg"); background-position: center 32%; }
.hero-image.framework { background-image: url("images/B-13.jpg"); background-position: center 38%; }
.hero-image.about { background-image: url("images/B-39.jpg"); background-position: center 25%; }

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.025em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(50px, 6vw, 82px); line-height: 0.96; }
h2 { margin-bottom: 17px; font-size: clamp(39px, 4.8vw, 62px); line-height: 1; }
h3 { margin-bottom: 10px; font-size: 18px; font-weight: 500; line-height: 1.35; }
.serif-italic { color: var(--blue); font-style: italic; }
.lede { max-width: 620px; margin-bottom: 28px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 19px;
  border: 1px solid var(--blue-dark);
  color: var(--paper);
  background: var(--blue-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}
.button:hover, .button:focus-visible { border-color: var(--magenta); background: var(--magenta); transform: translateY(-1px); }
.button.outline { color: var(--blue-dark); background: transparent; }
.button.outline:hover, .button.outline:focus-visible { color: var(--paper); }
.button.light { border-color: var(--paper); color: var(--blue-dark); background: var(--paper); }
.button.light-outline { border-color: rgba(255,255,255,.65); color: var(--white); background: transparent; }

.section { padding: 88px clamp(24px, 7vw, 108px); }
.section.deep { background: var(--paper-deep); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr); gap: 58px; align-items: end; margin-bottom: 48px; }
.section-heading > p { max-width: 460px; margin-bottom: 8px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.card { min-height: 255px; padding: 34px 30px; border-right: 1px solid var(--line); background: rgba(255,255,255,.2); }
.card:last-child { border-right: 0; }
.card small { display: block; margin-bottom: 36px; color: var(--gold); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.text-link { display: inline-block; margin-top: 10px; border: 0; color: var(--blue-dark); background: transparent; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link:hover, .text-link:focus-visible { color: var(--magenta); }

.band { padding: 82px clamp(24px, 11vw, 170px); color: #f7f1e8; background: var(--blue-dark); text-align: center; }
.band h2 { max-width: 960px; margin-right: auto; margin-left: auto; }
.band > p:last-child { max-width: 760px; margin: 0 auto; color: #dce3e8; }

.feature-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: 70px; align-items: center; }
.feature-image { min-height: 520px; background-position: center; background-size: cover; }
.feature-image.book { background-image: url("images/B-21.jpg"); background-position: center 35%; }

.split { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.split > div { min-height: 310px; padding: 48px; }
.split > div + div { border-left: 1px solid var(--line); }
.big-word { display: block; margin-bottom: 40px; color: var(--blue); font-family: var(--serif); font-size: clamp(52px, 7vw, 94px); font-style: italic; line-height: .8; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.step { position: relative; min-height: 310px; padding: 30px 22px; border-right: 1px solid var(--line); color: inherit; text-decoration: none; transition: background-color 180ms ease; }
.step:last-child { border-right: 0; }
.step[href]::after { content: "↗"; position: absolute; top: 24px; right: 20px; color: var(--blue); font-size: 16px; opacity: 0; transform: translate(-4px, 4px); transition: opacity 180ms ease, transform 180ms ease; }
.step[href]:hover, .step[href]:focus-visible { background: rgba(255, 255, 255, .5); outline: none; }
.step[href]:hover::after, .step[href]:focus-visible::after { opacity: 1; transform: translate(0, 0); }
.step span { display: block; margin-bottom: 28px; color: var(--gold); font-family: var(--serif); font-size: 32px; }
.step small { display: block; margin-bottom: 10px; color: var(--blue-dark); font-size: 9px; font-weight: 500; letter-spacing: .14em; line-height: 1.45; text-transform: uppercase; }
.step strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.08; }
.step p { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.step p em { color: var(--ink); font-family: var(--serif); font-size: 13px; }

.design-tool { padding: 90px clamp(24px, 7vw, 108px); color: #f7f1e8; background: var(--magenta); }
.design-shell { display: grid; grid-template-columns: minmax(0, .88fr) minmax(380px, .72fr); gap: 72px; align-items: center; }
.design-intro p:not(.kicker) { max-width: 590px; color: rgba(255,255,255,.78); }
.design-notes { display: grid; gap: 16px; margin-top: 38px; }
.design-notes span { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); font-size: 13px; }
.design-notes b { margin-right: 12px; color: #e2c685; font-weight: 500; }
.design-card { padding: 42px; color: var(--ink); background: var(--paper); }
.design-card h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.design-card p { color: var(--muted); }

.podcast { display: grid; grid-template-columns: minmax(320px, .76fr) 1fr; background: var(--paper); }
.podcast-art { display: grid; place-items: center; min-height: 480px; padding: 38px; background: url("images/B-16.jpg") center 28% / cover; }
.podcast-art span { width: min(320px, 90%); padding: 28px; color: var(--white); background: rgba(52,73,89,.88); font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); line-height: .95; text-align: center; }
.podcast-art em { color: #e3c78c; font-weight: 400; }
.podcast-copy { display: flex; flex-direction: column; justify-content: center; padding: 68px clamp(34px, 8vw, 120px); }
.podcast-copy > p:not(.kicker) { max-width: 610px; color: var(--muted); }

.book-landing { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 60px; align-items: center; padding: 90px clamp(24px, 8vw, 120px); color: #f4eee6; background: var(--blue-dark); }
.book-landing .lede { color: #dce3e8; }
.book-cover-wrap { display: grid; place-items: center; min-height: 480px; }
.book-cover { position: relative; width: min(290px, 78%); min-height: 410px; padding: 38px 30px; color: #fff9ef; background: var(--magenta); box-shadow: -16px 20px 0 rgba(231,211,169,.22), 0 34px 70px rgba(0,0,0,.3); }
.book-cover::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,249,239,.44); }
.book-cover small, .book-cover strong, .book-cover span { position: relative; z-index: 1; display: block; }
.book-cover small { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.book-cover strong { margin-top: 90px; font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: .88; }
.book-cover span { position: absolute; right: 30px; bottom: 34px; left: 30px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.premise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.premise { padding: 38px 30px; border-right: 1px solid var(--line); }
.premise:last-child { border-right: 0; }
.premise span { color: var(--gold); font-family: var(--serif); font-size: 32px; }
.premise h3 { margin-top: 14px; }
.premise p { margin: 0; color: var(--muted); font-size: 13px; }

.quote { padding: 88px clamp(24px, 11vw, 170px); text-align: center; }
.quote.deep { background: var(--paper-deep); }
.quote blockquote { max-width: 980px; margin: 0 auto 30px; font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); font-style: italic; line-height: 1.08; }
.quote .actions { justify-content: center; }

.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 100px minmax(210px, .65fr) 1.4fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: start; }
.process-step > span { color: var(--gold); font-family: var(--serif); font-size: 32px; line-height: 1; }
.process-step h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }
.checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.checklist li { position: relative; padding: 18px 0 18px 30px; border-bottom: 1px solid var(--line); color: var(--muted); }
.checklist li::before { content: "·"; position: absolute; left: 5px; color: var(--gold); font-size: 28px; line-height: 1; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.18); }
.comparison > div { padding: 28px; }
.comparison > div + div { border-left: 1px solid rgba(255,255,255,.18); }
.comparison small { display: block; margin-bottom: 20px; color: #e2c685; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.comparison p { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); color: #dce3e8; font-size: 13px; }
.comparison .not p { color: rgba(255,255,255,.46); text-decoration: line-through; }
.type-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.type-card { min-height: 270px; padding: 28px 22px; border-right: 1px solid var(--line); }
.type-card:last-child { border-right: 0; }
.type-card h3 { font-family: var(--serif); font-size: 25px; font-style: italic; font-weight: 400; }
.type-card p { color: var(--muted); font-size: 12px; }
.waitlist-shell { display: grid; grid-template-columns: minmax(0, .8fr) minmax(360px, .65fr); gap: 72px; align-items: start; max-width: 1100px; margin: 0 auto; }
.waitlist-note { padding: 34px; background: var(--paper-deep); }
.waitlist-form { display: grid; gap: 16px; padding: 38px; border: 1px solid var(--line); background: rgba(255,255,255,.3); }
.waitlist-form label { display: grid; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.waitlist-form input { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); }
.waitlist-form input:focus { border-color: var(--blue-dark); outline: 2px solid rgba(104,127,148,.18); }
.waitlist-form button { width: 100%; border: 0; cursor: pointer; }
.formkit-alert { margin: 0; padding: 0; list-style: none; color: var(--magenta); font-size: 13px; }
.formkit-powered-by-convertkit-container { text-align: center; }
.formkit-powered-by-convertkit { color: var(--muted); font-size: 10px; text-decoration: none; }

.inquiry-page { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(480px, 1fr); gap: clamp(48px, 7vw, 110px); align-items: start; padding: 86px clamp(24px, 7vw, 108px); }
.inquiry-copy { position: sticky; top: 116px; }
.inquiry-copy h1 { font-size: clamp(50px, 6vw, 78px); }
.inquiry-notes { display: grid; gap: 0; margin: 40px 0 34px; border-top: 1px solid var(--line); }
.inquiry-notes span { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.inquiry-notes b { margin-right: 14px; color: var(--gold); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.inquiry-assurance { max-width: 520px; color: var(--muted); font-size: 13px; }
.inquiry-form-shell { min-width: 0; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.tally-embed { display: block; width: 100%; min-height: 1320px; border: 0; }

.site-cta { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 64px clamp(24px, 7vw, 108px); color: #f7f1e8; background: var(--magenta); }
.site-cta h2 { max-width: 760px; margin-bottom: 12px; }
.site-cta p:last-child { margin: 0; color: rgba(255,255,255,.76); }
.site-footer { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 54px; padding: 58px clamp(24px, 7vw, 108px); color: #d9d2c8; background: #222626; }
.site-footer strong { display: block; margin-bottom: 14px; color: #fff8ef; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.site-footer p, .site-footer a { display: block; margin: 0 0 8px; color: #bdb8b0; font-size: 12px; line-height: 1.6; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; }
.legal { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); color: #918e88; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; align-items: stretch; flex-direction: column; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
  .site-nav .nav-cta { margin: 6px 0 0; padding: 13px 16px; text-align: center; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 58px 7%; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { border-right: 0; border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { min-height: 265px; padding: 28px 24px; border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: 0; }
  .step:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .design-shell { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .type-card:nth-child(2n) { border-right: 0; }
  .type-card { border-bottom: 1px solid var(--line); }
  .waitlist-shell { grid-template-columns: 1fr; }
  .inquiry-page { grid-template-columns: 1fr; }
  .inquiry-copy { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 470px; order: -1; }
  .hero-image.speaking { min-height: 640px; background-position: center 66%; }
  .hero-copy { padding: 52px 7% 62px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .section { padding: 66px 7%; }
  .feature-grid, .split, .podcast, .book-landing, .site-cta { grid-template-columns: 1fr; }
  .feature-image { min-height: 380px; order: -1; }
  .split > div { min-height: auto; padding: 38px 30px; }
  .split > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { grid-column: auto; border-bottom: 0; }
  .step span { margin-bottom: 12px; }
  .design-tool { padding: 66px 7%; }
  .design-card { padding: 32px 26px; }
  .podcast-art { min-height: 450px; }
  .podcast-copy { padding: 56px 7%; }
  .book-landing { padding: 58px 7%; }
  .book-cover-wrap { min-height: 420px; order: -1; }
  .premise-grid { grid-template-columns: 1fr; }
  .premise { border-right: 0; border-bottom: 1px solid var(--line); }
  .premise:last-child { border-bottom: 0; }
  .process-step { grid-template-columns: 60px 1fr; gap: 14px 20px; }
  .process-step p { grid-column: 2; }
  .comparison { grid-template-columns: 1fr; }
  .comparison > div + div { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .type-grid { grid-template-columns: 1fr; }
  .type-card, .type-card:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .type-card:last-child { border-bottom: 0; }
  .waitlist-form { padding: 28px 22px; }
  .inquiry-page { padding: 58px 7%; }
  .inquiry-form-shell { padding: 8px; }
  .site-cta { padding: 56px 7%; }
  .site-footer { grid-template-columns: 1fr; }
  .legal { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
