/* =========================================================================
   Dr. Cheri Levinson — Warm Practice design system
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Mulish:wght@300;400;500;600;700;800&display=swap');

/* === TOKENS === */
:root {
  --rose:       #D85A86;
  --rose-deep:  #B23E68;
  --rose-soft:  #ECA9BF;
  --rose-tint:  #FBECF1;
  --teal:       #199B94;
  --teal-deep:  #0E6F69;
  --teal-soft:  #86C9C3;
  --teal-tint:  #E6F4F2;
  --ink:        #2E2A27;
  --body:       #6B6560;
  --cream:      #FBF4EE;
  --muted:      #A99E94;
  --rule:       #E8E2DA;
  --ease:       cubic-bezier(.4, 0, .2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: 'Mulish', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
p { margin: 0; }

.eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}

/* === BUTTONS === */
.btn {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-block;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-solid  { background: var(--teal);  color: #fff;         border-color: var(--teal);  }
.btn-solid:hover  { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-ghost  { background: #fff;         color: var(--ink);   border-color: #EBD9CD;      }
.btn-ghost:hover  { border-color: var(--rose-soft); }
.btn-rose   { background: var(--rose);  color: #fff;         border-color: var(--rose);  }
.btn-rose:hover   { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-white  { background: #fff;         color: var(--teal-deep); border-color: #fff;     }
.btn-white:hover  { background: #f0faf9; }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }


/* =========================================================================
   NAVIGATION
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 2px 16px rgba(46, 42, 39, .06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 54px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 24px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dotmark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 9px 0 0 -1px var(--teal);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  transition: color 150ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
/* The drawer CTA is an <a> inside .nav-links, so `.nav-links a` (0,1,1) was
   beating `.btn-rose` (0,1,0) and rendering the pill text muted. The desktop
   CTA sits outside .nav-links, which is why only mobile looked wrong.
   Declared after the :hover rule above so equal specificity resolves here. */
.nav-links a.btn,
.nav-links a.btn:hover,
.nav-links a.btn.active { color: #fff; }
.nav-cta-mobile { display: none; }
.menu-toggle { display: none; }


/* =========================================================================
   SERVICES DROPDOWN
   ========================================================================= */
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 4px 3px;
  color: var(--body);
  transition: color 150ms var(--ease);
  line-height: 1;
}
.dropdown-toggle:hover { color: var(--ink); }
.dropdown-toggle svg {
  display: block;
  transition: transform 250ms var(--ease);
}
.nav-has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.nav-has-dropdown.open > a,
.nav-has-dropdown.open .dropdown-toggle { color: var(--ink); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 48px -10px rgba(46,42,39,.18), 0 0 0 1px rgba(46,42,39,.05);
  padding: 8px 0;
  min-width: 292px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  translate: 0 -8px;
  transition: opacity 200ms var(--ease), visibility 0ms 200ms, translate 200ms var(--ease);
  z-index: 200;
}
.nav-has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  transition: opacity 200ms var(--ease), visibility 0ms 0ms, translate 200ms var(--ease);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 22px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  transition: color 140ms var(--ease), background 140ms var(--ease);
  white-space: nowrap;
}
.dropdown-menu li:first-child a { border-radius: 20px 20px 0 0; }
.dropdown-menu li:last-child  a { border-radius: 0 0 20px 20px; }
.dropdown-menu li + li { border-top: 1px solid var(--rule); }
.dropdown-menu li a:hover { color: var(--rose); background: var(--rose-tint); }

/* Services hub page — explore links in feature items */
.explore-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
  transition: color 150ms var(--ease);
}
.explore-link:hover { color: var(--teal-deep); }


/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 30px 54px 60px;
  max-width: 1260px;
  margin: 0 auto;
}
.herocard {
  background: #fff;
  border-radius: 34px;
  padding: 54px 50px;
  box-shadow: 0 30px 60px -34px rgba(178, 62, 104, .28);
}
.herocard .eyebrow { margin-bottom: 18px; }
.hero-h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero-h1 .hl { color: var(--rose); }
.herocard > p {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 30px;
}
.btn-row { display: flex; gap: 13px; flex-wrap: wrap; }

/* Portrait with blob */
.portrait-wrap { position: relative; }
.blob {
  position: absolute;
  inset: -14px;
  background: var(--teal-soft);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  opacity: .5;
}
.portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 8px solid #fff;
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-ph {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 8px solid #fff;
  background-color: #ddeae8;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.3) 0 8px, transparent 8px 16px);
  display: grid;
  place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(25, 155, 148, .5);
  text-align: center;
  padding: 20px;
}


/* =========================================================================
   TRUST STRIP
   ========================================================================= */
.trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  padding: 4px 54px 44px;
  max-width: 1260px;
  margin: 0 auto;
}
.trust .org {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
}


/* =========================================================================
   STATS STRIP
   ========================================================================= */
.stats-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 54px 60px;
  max-width: 1260px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 20px 44px;
  border-right: 1px solid var(--rule);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}


/* =========================================================================
   SPEAKING TOPICS
   ========================================================================= */
.section {
  padding: 60px 54px;
  max-width: 1260px;
  margin: 0 auto;
}
.sec-head {
  text-align: center;
  margin-bottom: 42px;
}
.sec-head .eyebrow { margin-bottom: 10px; }
.sec-head h2 { margin-top: 0; }

.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic {
  background: #fff;
  border-radius: 24px;
  padding: 30px 28px;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.topic:hover {
  box-shadow: 0 16px 40px -12px rgba(178, 62, 104, .16);
  transform: translateY(-3px);
}
.topic .ic {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.topic:nth-child(1) .ic { background: var(--rose); }
.topic:nth-child(2) .ic { background: var(--teal); }
.topic:nth-child(3) .ic { background: var(--rose-deep); }
.topic h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.topic p { font-size: 15px; color: var(--body); line-height: 1.6; }


/* =========================================================================
   BOOKS BAND
   ========================================================================= */
.books-band { padding: 0 54px 60px; }
.books-inner {
  background: var(--rose-tint);
  border-radius: 34px;
  padding: 54px 50px;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 46px;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
}
.books-inner .eyebrow { margin-bottom: 12px; }
.books-inner h2 { margin: 10px 0 14px; }
.books-inner > div > p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 26px;
}
.book-cover-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 46px -20px rgba(178, 62, 104, .45);
}
.book-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.book-ph {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: #e9c7d3;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.2) 0 8px, transparent 8px 16px);
  display: grid;
  place-items: center;
  color: rgba(178, 62, 104, .45);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  box-shadow: 0 24px 46px -20px rgba(178, 62, 104, .45);
}


/* =========================================================================
   FOOTER CTA BAND
   ========================================================================= */
.footcta-band { padding: 0 54px 60px; }
.footcta-inner {
  background: var(--teal);
  border-radius: 34px;
  padding: 64px 50px;
  text-align: center;
  max-width: 1152px;
  margin: 0 auto;
}
.footcta-inner h2 {
  color: #fff;
  margin: 0 auto 14px;
  max-width: 18ch;
}
.footcta-inner p {
  color: #D6EEEB;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 44ch;
}


/* =========================================================================
   SITE FOOTER
   ========================================================================= */
.site-footer {
  padding: 34px 54px;
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.site-footer a { transition: color 150ms var(--ease); }
.site-footer a:hover { color: var(--ink); }


/* =========================================================================
   INNER PAGE HERO (non-homepage)
   ========================================================================= */
.page-hero {
  padding: 60px 54px 56px;
  max-width: 1260px;
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 22ch;
}
.page-hero > p {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 32px;
}

/* White card section (inner pages) */
.card-section {
  padding: 0 54px 60px;
  max-width: 1260px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(46, 42, 39, .05);
}
.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.card p { font-size: 16px; color: var(--body); line-height: 1.7; }

/* Grid layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Section title (inner pages) */
.section-title {
  padding: 0 54px 32px;
  max-width: 1260px;
  margin: 0 auto;
}
.section-title .eyebrow { margin-bottom: 10px; }
.section-title h2 { margin-top: 0; }


/* =========================================================================
   CONTACT FORM
   ========================================================================= */
.form-wrap {
  background: #fff;
  border-radius: 34px;
  padding: 54px 50px;
  max-width: 680px;
  box-shadow: 0 20px 50px -24px rgba(46, 42, 39, .12);
}
.form-group { margin-bottom: 22px; }
.form-error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--rose-tint);
  border: 1px solid var(--rose-soft);
  color: var(--rose-deep);
  font-size: 14px;
  line-height: 1.5;
}
.form-error[hidden] { display: none; }
.form-error a { text-decoration: underline; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 150ms var(--ease);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  /* Dropdown → inline accordion inside drawer */
  .nav-has-dropdown {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .nav-has-dropdown > a { flex: 1; }
  .dropdown-toggle { padding: 4px 8px; }
  .dropdown-menu {
    position: static;
    transform: none;
    translate: none !important;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    padding: 6px 0 10px 18px;
    border-left: 2px solid var(--rose-soft);
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li + li { border-top: none; }
  .dropdown-menu li a {
    padding: 8px 0;
    font-size: 1rem;
    border-radius: 0 !important;
    white-space: normal;
  }
  .dropdown-menu li a:hover { background: none; color: var(--rose); }

  /* Nav → drawer */
  .nav-inner { padding: 18px 24px; }
  .nav-links {
    position: fixed;
    /* Full-viewport drawer. Was `0 0 0 25%`, which left the hero visible
       through the left quarter and read as a broken overlay on phones. */
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    /* Top-aligned, not centered. In a column flex, justify-content drives the
       vertical axis - `center` floated the items into the middle of the drawer.
       Top padding clears the header/close-button row. */
    justify-content: flex-start;
    align-items: flex-start;
    padding: 96px 32px 48px;
    /* With the Services accordion open, 4 top-level items + 8 subpages + the
       CTA exceed a phone viewport. Without this the overflow is unreachable
       and the "Work with me" pill gets clipped off the bottom. */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 105;
    box-shadow: -6px 0 32px rgba(46, 42, 39, .1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta-mobile { display: block; margin-top: 10px; }
  .nav-cta { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
    position: relative;
  }
  .menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 24px 48px;
    gap: 36px;
  }
  .herocard { padding: 40px 32px; }
  .portrait-wrap { max-width: 300px; margin: 0 auto; }

  /* Strips */
  .trust { padding: 4px 24px 36px; }
  .stats-strip { padding: 0 24px 48px; }
  .stat-item { padding: 18px 28px; }

  /* Section */
  .section { padding: 48px 24px; }
  .topics { grid-template-columns: 1fr; }

  /* Bands */
  .books-band { padding: 0 24px 48px; }
  .books-inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .book-ph, .book-cover-wrap { max-width: 180px; }
  .footcta-band { padding: 0 24px 48px; }
  .footcta-inner { padding: 48px 32px; }

  /* Inner pages */
  .page-hero { padding: 40px 24px 44px; }
  .card-section { padding: 0 24px 48px; }
  .card { padding: 28px 26px; }
  .two-col, .three-col { grid-template-columns: 1fr; }
  .section-title { padding: 0 24px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer { padding: 28px 24px; }
}

/* =========================================================================
   ABOUT PAGE — two-col hero with portrait
   ========================================================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 40px 54px 56px;
  max-width: 1260px;
  margin: 0 auto;
}
.about-hero h1 { font-size: clamp(30px, 3.8vw, 48px); font-weight: 700; line-height: 1.08; margin-bottom: 16px; }
.about-hero .page-lede { font-size: 18px; color: var(--body); line-height: 1.6; }
.about-hero .btn-row { margin-top: 28px; }


/* =========================================================================
   CREDENTIAL ROWS (appointments, education)
   ========================================================================= */
.cred-list { border-top: 1px solid var(--rule); }
.cred-item { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.cred-org {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.cred-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.3;
}


/* =========================================================================
   FEATURE ITEMS (numbered research areas, contributions, services)
   ========================================================================= */
.feature-list { border-top: 1px solid var(--rule); }
.feature-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.feature-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); padding-top: 4px;
}
.feature-item .feature-kicker {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.feature-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-item p { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 0; }
.feature-item em { font-style: italic; }
.feature-item ul { list-style: none; padding: 0; margin: 14px 0 0; border-top: 1px solid var(--rule); }
.feature-item ul li {
  padding: 8px 0 8px 18px; border-bottom: 1px solid var(--rule);
  font-size: 15px; color: var(--body); position: relative;
}
.feature-item ul li::before { content: '-'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.feature-item ul li:last-child { border-bottom: 0; }


/* =========================================================================
   PROCESS STEPS (consulting page)
   ========================================================================= */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { background: #fff; border-radius: 24px; padding: 28px 24px; }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 34px; color: var(--teal);
  line-height: 1; margin-bottom: 16px;
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.process-step p { font-size: 14px; color: var(--body); line-height: 1.6; }


/* =========================================================================
   GRANTS LIST (research page)
   ========================================================================= */
.grants-list { list-style: none; padding: 0; border-top: 1px solid var(--rule); }
.grant-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.grant-id {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 6px;
}
.grant-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 17px; color: var(--ink);
  margin-bottom: 4px; line-height: 1.3;
}
.grant-subtitle { font-size: 14px; color: var(--muted); }
.grant-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--teal); white-space: nowrap;
}


/* =========================================================================
   SPEAKING TOPICS (2-col grid)
   ========================================================================= */
.topic-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.topic-card {
  background: #fff; border-radius: 24px; padding: 28px 28px;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.topic-card:hover {
  box-shadow: 0 16px 40px -12px rgba(178, 62, 104, .16);
  transform: translateY(-3px);
}
.topic-card .tc-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block;
}
.topic-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--ink); line-height: 1.2; }
.topic-card p { font-size: 15px; color: var(--body); line-height: 1.6; }


/* =========================================================================
   TRAINING LISTS
   ========================================================================= */
.training-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.training-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block;
}
.training-list { list-style: none; padding: 0; border-top: 1px solid var(--rule); }
.training-list li {
  padding: 10px 0 10px 18px; border-bottom: 1px solid var(--rule);
  font-size: 15px; color: var(--body); position: relative;
}
.training-list li::before { content: '-'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.training-list li:last-child { border-bottom: 0; }


/* =========================================================================
   QUOTE BAND
   ========================================================================= */
.quote-band { padding: 0 54px 60px; }
.quote-inner {
  background: var(--teal-tint); border-radius: 34px;
  padding: 54px 64px; text-align: center;
  max-width: 1152px; margin: 0 auto;
}
.quote-inner blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 700;
  color: var(--ink); line-height: 1.25;
  margin: 0 auto 16px; max-width: 30ch;
}
.quote-attr {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal);
}


/* =========================================================================
   BOOKING INFO BAND (dark teal)
   ========================================================================= */
.booking-band { padding: 0 54px 60px; }
.booking-inner {
  background: var(--teal-deep); border-radius: 34px;
  padding: 54px 50px; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start;
  max-width: 1152px; margin: 0 auto;
}
.booking-inner h2 { color: #fff; margin-bottom: 12px; }
.booking-inner > div > p { color: #c8e8e6; font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
.inquiry-list { list-style: none; padding: 0; }
.inquiry-list-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal-soft); margin-bottom: 12px; display: block;
}
.inquiry-list li {
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px; color: rgba(255,255,255,.82);
}
.inquiry-list li:last-child { border-bottom: 0; }


/* =========================================================================
   BOOKS (publications page — 3-col)
   ========================================================================= */
.books-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.book-card { background: #fff; border-radius: 24px; overflow: hidden; }
/* Cards that link out to a purchase page. Unlinked titles stay static,
   which reads as intentional differentiation rather than a dead card. */
.book-card-linked {
  display: block;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.book-card-linked:hover,
.book-card-linked:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 22px 44px -20px rgba(178, 62, 104, .40);
}
.book-card-linked:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .book-card-linked { transition: none; }
  .book-card-linked:hover { transform: none; }
}
.book-card-cover {
  aspect-ratio: 4/5; display: flex; align-items: center;
  justify-content: center; padding: 0;
}
.book-card-cover img { width: 100%; height: 100%; object-fit: contain; display: block; }
.book-card-cover.rose-cover { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%); }
.book-card-cover.teal-cover { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); }
.book-card-cover.warm-cover { background: linear-gradient(135deg, #e8d5c8 0%, #cdb9ac 100%); }
.book-card-cover span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 18px; line-height: 1.3; text-align: center;
}
.book-card-cover.rose-cover span,
.book-card-cover.teal-cover span { color: #fff; }
.book-card-cover.warm-cover span { color: var(--ink); }
.book-body { padding: 20px 24px 28px; }
.book-meta-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block;
}
.book-subtitle {
  font-size: 14px; line-height: 1.45; color: var(--body);
  margin: 4px 0 10px; font-style: italic;
}
.book-authors {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 600; line-height: 1.45;
  color: var(--ink); margin-bottom: 12px;
}
.book-authors .foreword { display: block; font-weight: 400; color: var(--muted); }
.book-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink); line-height: 1.3; }
.book-card p { font-size: 14px; color: var(--body); line-height: 1.6; }


/* =========================================================================
   LINK CARDS (publications — external links)
   ========================================================================= */
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.link-card {
  background: #fff; border-radius: 24px; padding: 28px 28px 24px;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
  display: flex; flex-direction: column;
}
.link-card:hover { box-shadow: 0 16px 40px -12px rgba(25, 155, 148, .16); transform: translateY(-3px); }
.lc-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block;
}
.link-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.link-card p { font-size: 14px; color: var(--body); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.lc-link { font-size: 14px; font-weight: 700; color: var(--teal); }


/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-layout {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 48px; align-items: start;
  padding: 0 54px 60px; max-width: 1260px; margin: 0 auto;
}
.contact-aside > h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 12px;
}
.available-list { list-style: none; padding: 0; border-top: 1px solid var(--rule); margin-bottom: 36px; }
.available-list li { padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 15px; color: var(--body); }
.contact-detail { margin-bottom: 22px; }
.contact-detail h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 6px;
}
.contact-detail a,
.contact-detail span { font-size: 15px; color: var(--body); display: block; }
.contact-detail a:hover { color: var(--teal); }


/* =========================================================================
   RESPONSIVE ADDITIONS
   ========================================================================= */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; padding: 32px 24px 44px; gap: 36px; }
  .about-hero .portrait-wrap { max-width: 280px; margin: 0 auto; }
  .feature-item { grid-template-columns: 52px 1fr; gap: 16px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .topic-cards { grid-template-columns: 1fr; }
  .training-cols { grid-template-columns: 1fr; }
  .quote-band { padding: 0 24px 48px; }
  .quote-inner { padding: 40px 32px; }
  .booking-band { padding: 0 24px 48px; }
  .booking-inner { grid-template-columns: 1fr; padding: 40px 32px; }
  .books-3col { grid-template-columns: 1fr; }
  .link-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; padding: 0 24px 48px; }
}

@media (max-width: 480px) {
  .herocard { padding: 32px 24px; }
  .books-inner { padding: 32px 24px; }
  .footcta-inner { padding: 40px 24px; }
  .btn { font-size: 14px; padding: 13px 22px; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--rule); width: 100%; }
  .stat-item:last-child { border-bottom: 0; }
}
