/* ========================================================================
   The Listening Surgeon — Shared Stylesheet
   Palette: #E63296 pink · #3C6432 forest · #DCBE8C tan bg · #64AAE6 blue · #FFC828 gold · #FA7828 orange · #AA5096 purple · #6EB45A sage · #825532 brown
   Typography: Cormorant Garamond (serif), Pinyon Script (script), Inter (body)
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Caveat:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Dancing+Script:wght@500;600;700&family=Inter:wght@300;400;500;600&family=Libre+Baskerville:wght@400;700&family=Pinyon+Script&family=Sacramento&display=swap');

:root {
  /* Brand palette — pinks/magentas, warm spectrum, neutrals */
  --pink:       #E63296;  /* primary brand pink/magenta */
  --pink-soft:  #F7B3D4;  /* light tint for accents */
  --pink-tint:  #FCE1EF;  /* very light background tint */
  --rose:       #E63296;  /* alias for primary */
  --rose-deep:  #B8267A;  /* darker shade for hover */
  --terracotta: #FA7828;  /* orange */
  --yellow:     #FFC828;  /* warm yellow */
  --sage:       #6EB45A;  /* fresh green */
  --forest:     #3C6432;  /* deep forest green */
  --blue:       #64AAE6;  /* sky blue */
  --purple:     #AA5096;  /* purple — spiritual depth */
  /* Neutrals */
  --brown:      #825532;
  --brown-soft: #8C6B50;
  --tan:        #DCBE8C;
  --tan-soft:   #EBD8B6;
  --cream:      #FAF5EE;
  --cream-warm: #F4EBDD;
  --charcoal:   #2A251F;
  --ink:        #3A342D;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}

a { color: var(--rose); }

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  color: var(--rose);
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Offset for anchor scroll to clear the sticky header */
[id]:not(body):not(html) { scroll-margin-top: 140px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(107, 85, 69, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
}
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text {
  font-family: 'Libre Baskerville', 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--charcoal);
}
.logo-text .the {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
}
.logo-text .listening {
  font-family: 'Pinyon Script', cursive;
  color: var(--rose);
  font-size: 2.1rem;
  line-height: 0.75;
  transform: translateY(5px);
  font-weight: 400;
}
.logo-text .surgeon {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
}

/* "Dr. Heather" — elegant flowing calligraphy sign-off */
.dr-heather {
  font-family: 'Allura', 'Dancing Script', cursive;
  color: var(--rose);
  font-weight: 400;
  font-size: 2em;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
  vertical-align: baseline;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
}
.main-nav a {
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.main-nav a.active { color: var(--rose); border-bottom-color: var(--rose); }
.main-nav a.coming { opacity: 0.45; font-style: italic; }
.main-nav a.hashtag { text-transform: none; letter-spacing: 0.04em; }
.main-nav a.coming:hover { color: var(--brown); border-bottom-color: transparent; cursor: help; }

/* ---------- Hero ---------- */
.hero { padding: 5.5rem 0 3.5rem; }
.hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3.5rem;
  align-items: start;
}
.hero-text { min-width: 0; }
.hero .spectrum { margin-top: 1rem; }
.hero-photo {
  flex-shrink: 0;
  width: 260px;
}
.hero-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 32px rgba(42, 37, 31, 0.14);
}

@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.hero h1 .shaped-by {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  color: var(--rose);
  font-weight: 400;
  font-size: 1.05em;
}
.hero .subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  color: var(--brown);
  max-width: 680px;
  margin-bottom: 2.2rem;
  line-height: 1.4;
}
.hero .intro p {
  max-width: none;
  margin-bottom: 1.15rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: #000000;
  line-height: 1.5;
}
.hero .subhead { max-width: none; }

.intro-signoff {
  margin-top: 1.4rem !important;
  margin-bottom: 0 !important;
  font-style: normal !important;
  line-height: 1 !important;
}
.intro-signoff .dr-heather {
  font-size: clamp(2.3rem, 3.8vw, 2.8rem);
}

/* ---------- Spectrum accent bar ---------- */
.spectrum {
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--pink) 0%,
    var(--terracotta) 18%,
    var(--yellow) 33%,
    var(--sage) 50%,
    var(--forest) 65%,
    var(--blue) 82%,
    var(--purple) 100%
  );
  border-radius: 2px;
  margin: 2.75rem 0;
  opacity: 0.95;
}
.spectrum.thin { height: 2px; opacity: 0.6; margin: 2rem 0; }

/* ---------- Buttons & links ---------- */
.cta-stack {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--pink) !important;
  border: 1px solid rgba(230, 50, 150, 0.5);
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-primary:hover {
  background: rgba(230, 50, 150, 0.08);
  border-color: var(--pink);
}
.btn-secondary {
  display: inline-block;
  color: var(--brown);
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(107, 85, 69, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--rose); border-bottom-color: var(--rose); }
.inline-link { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(230, 50, 150, 0.35); padding-bottom: 1px; transition: border-color 0.2s; }
.inline-link:hover { border-bottom-color: var(--rose); }

/* ---------- Page heading ---------- */
.page-intro { padding: 4rem 0 1.5rem; }
.page-intro .eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-intro h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.page-intro .lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  color: var(--brown);
  max-width: 680px;
  line-height: 1.5;
}

/* ---------- Body sections ---------- */
.section { padding: 2rem 0; }
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1.2rem;
  margin-top: 1.5rem;
  color: var(--charcoal);
}
.section h2:first-child { margin-top: 0; }
.section h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brown);
  font-weight: 500;
}
body:not([data-page="research"]) .section p { margin-bottom: 1.15rem; color: var(--ink); max-width: 680px; }
body[data-page="research"] .section p { margin-bottom: 1.15rem; color: var(--ink); max-width: none; }
.section ul { margin: 1rem 0 1.6rem 1.4rem; max-width: 680px; }
.section ul li { margin-bottom: 0.65rem; color: var(--ink); padding-left: 0.2rem; }
.section ul li::marker { color: var(--pink); }
.section em { color: var(--brown); }
.section blockquote {
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 3px solid var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brown);
  line-height: 1.5;
  max-width: 680px;
}

/* ---------- Reading path ---------- */
.reading-path { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0 3rem; }
.reading-item {
  padding: 1.2rem 1.4rem;
  border-radius: 0 6px 6px 0;
  border-left: 4px solid var(--pink);
  background: rgba(230, 50, 150, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.reading-item:hover { transform: translateX(3px); box-shadow: 0 2px 10px rgba(42, 37, 31, 0.05); }
.reading-item:nth-child(2) { border-left-color: var(--terracotta); background: rgba(250, 120, 40, 0.08); }
.reading-item:nth-child(3) { border-left-color: var(--yellow);     background: rgba(255, 200, 40, 0.10); }
.reading-item:nth-child(4) { border-left-color: var(--sage);       background: rgba(110, 180, 90, 0.08); }
.reading-item:nth-child(5) { border-left-color: var(--blue);       background: rgba(100, 170, 230, 0.08); }
.reading-item:nth-child(6) { border-left-color: var(--purple);     background: rgba(170, 80, 150, 0.07); }
.reading-item:nth-child(7) { border-left-color: var(--brown);      background: rgba(130, 85, 50, 0.07); }
.reading-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  margin-right: 0.5rem;
}
.reading-item h3 {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
}
.reading-item .source { font-style: italic; color: var(--brown-soft); font-size: 0.92rem; margin-left: 0.3rem; }
.reading-item p { margin: 0.35rem 0 0; color: var(--ink); font-size: 0.96rem; max-width: none; }
.reading-item .next {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--rose);
  font-size: 0.86rem;
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.reading-item .next:hover { border-bottom-color: var(--rose); }

/* ---------- Belief / path lists ---------- */
.belief-list { list-style: none !important; margin-left: 0 !important; }
.belief-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(107, 85, 69, 0.10);
}
.belief-list li:last-child { border-bottom: none; }

/* ---------- Coming soon ---------- */
.coming-soon { padding: 7rem 0 6rem; text-align: center; }
.coming-soon .lotus-large { margin: 0 auto 2rem; opacity: 0.65; }
.coming-soon .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 500;
}
.coming-soon h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; font-weight: 500; }
.coming-soon p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brown);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Resources — book catalog ---------- */
.book-group { margin-bottom: 3.5rem; }
.book-group h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 0.55rem;
  margin: 0 0 0.6rem;
  border-bottom: 3px solid var(--pink);
  display: inline-block;
}
.book-group:nth-of-type(2) h2 { border-bottom-color: var(--terracotta); }
.book-group:nth-of-type(3) h2 { border-bottom-color: var(--yellow); }
.book-group:nth-of-type(4) h2 { border-bottom-color: var(--sage); }
.book-group:nth-of-type(5) h2 { border-bottom-color: var(--forest); }
.book-group:nth-of-type(6) h2 { border-bottom-color: var(--blue); }
.book-group:nth-of-type(7) h2 { border-bottom-color: var(--purple); }
.book-group:nth-of-type(8) h2 { border-bottom-color: var(--brown); }
.book-group .group-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--brown);
  margin: 0.8rem 0 1.5rem;
  max-width: 680px;
  line-height: 1.5;
}
.book-subgroup { margin: 2rem 0 1.5rem; }
.book-subgroup h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--rose);
  font-weight: 600;
  margin: 0 0 0.8rem;
}
.book-subgroup .subgroup-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brown);
  max-width: 680px;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.book {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(130, 85, 50, 0.12);
}
.book:last-child { border-bottom: none; }
.book-cover {
  flex: 0 0 76px;
  width: 76px;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--tan-soft) 100%);
  border: 1px solid rgba(130, 85, 50, 0.18);
  box-shadow: 0 2px 6px rgba(42, 37, 31, 0.08);
  position: relative;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-cover.no-cover img { display: none; }
.book-cover.no-cover::after {
  content: "";
  position: absolute;
  inset: 20% 25%;
  border: 1px solid rgba(130, 85, 50, 0.25);
  border-radius: 2px;
}
.book-cover.no-cover::before {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  top: 40%;
  height: 1px;
  background: rgba(130, 85, 50, 0.22);
  box-shadow:
    0 6px 0 rgba(130, 85, 50, 0.22),
    0 12px 0 rgba(130, 85, 50, 0.22);
}
.book-content { flex: 1 1 0; min-width: 0; }
.book h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: var(--charcoal);
}
.book h3 a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.book h3 a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.book h3 .author { color: var(--brown); font-style: italic; font-weight: 400; font-size: 1rem; }
.book p { margin: 0; color: var(--ink); font-size: 1rem; max-width: none; line-height: 1.6; }

@media (max-width: 520px) {
  .book { gap: 1rem; }
  .book-cover { flex: 0 0 60px; width: 60px; }
}

.podcast {
  padding: 1rem 0 1.1rem;
  border-bottom: 1px solid rgba(130, 85, 50, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.podcast:last-child { border-bottom: none; }
.podcast__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: var(--cream-warm);
}
.podcast__body {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-left: 1.4rem;
}
.podcast__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown);
}
.podcast h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
  line-height: 1.3;
  color: var(--charcoal);
}
.podcast h3 a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.podcast h3 a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.podcast p { margin: 0; color: var(--ink); font-size: 1rem; max-width: none; line-height: 1.6; }

@media (max-width: 520px) {
  .podcast__thumb { width: 56px; height: 56px; }
  .podcast { gap: 0.75rem; }
}

.resources-closing {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--cream-warm);
  border-radius: 6px;
  border-left: 4px solid var(--pink);
}
.resources-closing p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.resources-closing p:last-child { margin-bottom: 0; }
.affiliate-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(220, 190, 140, 0.2);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--brown);
}
.affiliate-note strong { color: var(--charcoal); }

/* ---------- Resources branch landing ---------- */
.branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}
.branch-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(107, 85, 69, 0.12);
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--pink);
}
.branch-card:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 22px rgba(42, 37, 31, 0.08);
  border-color: rgba(107, 85, 69, 0.2);
}
.branch-card > div:first-child { flex: 1 1 0; min-width: 0; }
.branch-card .branch-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.branch-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.branch-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.45;
  margin: 0;
  max-width: none;
}
.branch-card .branch-meta {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.branch-card .branch-arrow {
  color: var(--rose);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.branch-card:hover .branch-arrow { border-bottom-color: var(--rose); }

.branch-card--books::before { background: var(--pink); }
.branch-card--books .branch-eyebrow { color: var(--rose); }
.branch-card--books:hover { border-color: rgba(230, 50, 150, 0.35); }

.branch-card--podcasts::before { background: var(--forest); }
.branch-card--podcasts .branch-eyebrow { color: var(--forest); }
.branch-card--podcasts .branch-arrow { color: var(--forest); }
.branch-card--podcasts:hover .branch-arrow { border-bottom-color: var(--forest); }
.branch-card--podcasts:hover { border-color: rgba(60, 100, 50, 0.35); }

.branch-card--societies::before { background: var(--purple); }
.branch-card--societies .branch-eyebrow { color: var(--purple); }
.branch-card--societies .branch-arrow { color: var(--purple); }
.branch-card--societies:hover .branch-arrow { border-bottom-color: var(--purple); }
.branch-card--societies:hover { border-color: rgba(170, 80, 150, 0.35); }

@media (max-width: 560px) {
  .branch-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.25rem 1.4rem 1.25rem 1.6rem;
  }
  .branch-card .branch-meta { align-self: flex-end; }
}

/* ---------- Resources pill toggle ---------- */
.resource-toggle {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  background: var(--cream-warm);
  border: 1px solid rgba(107, 85, 69, 0.14);
  border-radius: 999px;
  margin: 0 0 2.5rem;
}
.resource-toggle a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.resource-toggle a:hover { color: var(--charcoal); }
.resource-toggle a.active {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 2px 10px rgba(230, 50, 150, 0.22);
}
body[data-page="podcasts"] .resource-toggle a.active {
  background: var(--forest);
  box-shadow: 0 2px 10px rgba(60, 100, 50, 0.25);
}
body[data-page="societies"] .resource-toggle a.active {
  background: var(--purple);
  box-shadow: 0 2px 10px rgba(170, 80, 150, 0.25);
}

/* Podcasts page forest accent on group borders */
body[data-page="podcasts"] .book-group h2 { border-bottom-color: var(--forest); }
body[data-page="podcasts"] .book-group:nth-of-type(2) h2 { border-bottom-color: var(--sage); }
body[data-page="podcasts"] .book-group:nth-of-type(3) h2 { border-bottom-color: var(--blue); }
body[data-page="podcasts"] .book-group:nth-of-type(4) h2 { border-bottom-color: var(--purple); }
body[data-page="podcasts"] .book-group:nth-of-type(5) h2 { border-bottom-color: var(--terracotta); }
body[data-page="podcasts"] .book-group:nth-of-type(6) h2 { border-bottom-color: var(--brown); }
body[data-page="podcasts"] .book-subgroup h4 { color: var(--forest); }

/* Societies page purple accent on group borders */
body[data-page="societies"] .book-group h2 { border-bottom-color: var(--purple); }
body[data-page="societies"] .book-group:nth-of-type(2) h2 { border-bottom-color: var(--blue); }
body[data-page="societies"] .book-group:nth-of-type(3) h2 { border-bottom-color: var(--terracotta); }
body[data-page="societies"] .book-group:nth-of-type(4) h2 { border-bottom-color: var(--sage); }

/* Collapsible society sections */
.society-section { border-radius: 4px; }
.society-section > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 1rem;
  transition: opacity 0.2s;
}
.society-section > summary::-webkit-details-marker { display: none; }
.society-section > summary > h2 {
  flex: 1;
  margin: 0;
}
.society-section > summary::after {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.society-section[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.society-section > summary:hover { opacity: 0.85; }
.society-section[open] > summary > h2 { margin-bottom: 0.6rem; }

/* The Long Table — opening quote */
.long-table-quote {
  margin: 2.5rem auto 0;
  max-width: 640px;
  text-align: center;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(170, 80, 150, 0.18);
  border-bottom: 1px solid rgba(170, 80, 150, 0.18);
}
.long-table-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--purple);
  margin: 0;
  border: none;
  padding: 0;
}
.long-table-quote figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
  margin-top: 1rem;
}

/* Resources page opening quotes — books (pink), podcasts (forest) */
.shelf-quote,
.between-cases-quote {
  margin: 2.5rem auto 0;
  max-width: 640px;
  text-align: center;
  padding: 1.75rem 2rem;
}
.shelf-quote {
  border-top: 1px solid rgba(230, 50, 150, 0.18);
  border-bottom: 1px solid rgba(230, 50, 150, 0.18);
}
.between-cases-quote {
  border-top: 1px solid rgba(60, 100, 50, 0.18);
  border-bottom: 1px solid rgba(60, 100, 50, 0.18);
}
.shelf-quote blockquote,
.between-cases-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  margin: 0;
  border: none;
  padding: 0;
}
.shelf-quote blockquote { color: var(--pink); }
.between-cases-quote blockquote { color: var(--forest); }
.shelf-quote figcaption,
.between-cases-quote figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
  margin-top: 1rem;
}

/* Society listing — organizations with multiple related links */
.society {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(130, 85, 50, 0.12);
}
.society:last-child { border-bottom: none; }
.society__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: var(--cream-warm);
}
.society__body { flex: 1; min-width: 0; }
@media (max-width: 520px) {
  .society__thumb { flex: 0 0 56px; width: 56px; height: 56px; }
}
.society-logo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(130, 85, 50, 0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 1px 3px rgba(42, 37, 31, 0.05);
}
.society-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}
.society-logo.no-logo {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--tan-soft) 100%);
}
.society-logo.no-logo img { display: none; }
.society-logo.no-logo::after {
  content: attr(data-initials);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  font-size: 0.78rem;
}
.society-content { flex: 1 1 0; min-width: 0; }
.society h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--charcoal);
}

@media (max-width: 520px) {
  .society { gap: 0.85rem; }
  .society-logo { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 6px; }
  .society-logo.no-logo::after { font-size: 0.65rem; }
}
.society h3 a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.society h3 a:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.society-links {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}
.society-links li {
  position: relative;
  padding-left: 0;
}
.society-links li::before {
  content: "→ ";
  color: var(--brown-soft);
  margin-right: 0.15rem;
}
.society-links a {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.society-links a:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.society .description {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  max-width: none;
}

/* ---------- Connect ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 0.5rem 0 2rem;
}
.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(107, 85, 69, 0.12);
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.connect-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 37, 31, 0.06);
}
.connect-icon {
  font-size: 1.8rem;
  color: var(--pink);
  display: block;
}
.connect-card:hover .connect-icon { color: var(--rose-deep); }
.connect-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin: 0;
  color: var(--charcoal);
  font-weight: 500;
}
.connect-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-warm);
  border-radius: 6px;
  text-align: center;
}
.connect-contact p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--brown); margin: 0 auto; }

/* ---------- Long-bio disclosure (About page) ---------- */
.long-bio {
  margin: 2rem 0;
  border: 1px solid rgba(107, 85, 69, 0.15);
  border-radius: 6px;
  overflow: hidden;
}
.long-bio summary {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--forest);
  padding: 1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(60, 100, 50, 0.04);
  border-bottom: 1px solid transparent;
  transition: background 0.2s;
  user-select: none;
}
.long-bio summary::-webkit-details-marker { display: none; }
.long-bio summary::after {
  content: "";
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--forest);
  border-bottom: 1.5px solid var(--forest);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: -3px;
}
.long-bio[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.long-bio[open] summary {
  background: rgba(60, 100, 50, 0.06);
  border-bottom-color: rgba(107, 85, 69, 0.12);
}
.long-bio summary:hover { background: rgba(60, 100, 50, 0.08); }
.long-bio__body {
  padding: 1.75rem 1.75rem 1.5rem;
  background: #fff;
}
.long-bio__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--brown);
  margin: 1.5rem 0 0.75rem;
  line-height: 1.3;
}
.long-bio__body h3:first-child { margin-top: 0; }

/* ---------- Contact form ---------- */
.contact-form-wrap {
  max-width: 640px;
  margin: 3.5rem auto 0;
}
.contact-form-trigger {
  text-align: center;
  margin: 1rem 0 2rem;
}
.contact-form-trigger__btn {
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.contact-form-reveal {
  animation: contact-form-fadein 0.3s ease;
}
@keyframes contact-form-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--forest);
  text-align: center;
  margin: 0 0 0.6rem;
}
.contact-form-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown);
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.5;
}
.contact-form {
  background: var(--cream-warm);
  padding: 2.25rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(170, 80, 150, 0.06);
}
.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  top: -10000px;
  height: 0;
  width: 0;
  overflow: hidden;
}
.contact-form__row {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.contact-form__row label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-bottom: 0.45rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(170, 80, 150, 0.18);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(230, 50, 150, 0.15);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%233C6432' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
.contact-form__submit {
  margin-top: 0.5rem;
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.contact-form__alt {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 5rem;
  padding: 3.5rem 0 2rem;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}
.site-footer a { color: var(--pink-soft); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.site-footer a:hover { border-bottom-color: var(--pink-soft); }
.site-footer .container-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.site-footer .container-wide:first-child > div {
  display: flex;
  flex-direction: column;
}
.site-footer .container-wide:first-child > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 3rem;
}
.footer-brand > .logo,
.footer-links > h4,
.footer-subscribe > h4 {
  margin-top: 0;
}
.site-footer .footer-brand-connect,
.site-footer .footer-now-link {
  margin-top: auto;
  display: block;
  width: fit-content;
}
.footer-subscribe .subscribe-form {
  margin-top: auto;
}
.site-footer .container-wide:last-child {
  grid-template-columns: 1fr;
}
.site-footer .container-wide:last-child > div + div {
  border-left: none;
  padding-left: 0;
}
.footer-brand .logo { align-items: flex-start; padding-top: 0.15rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text .the { color: rgba(255,255,255,0.7); }
.footer-brand .logo-text .surgeon { color: #fff; }
.footer-brand p {
  margin-top: 1rem;
  opacity: 0.9;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 380px;
}
.footer-subscribe h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--pink-soft);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-subscribe p {
  margin: 0 0 1rem;
  opacity: 0.9;
  font-weight: 500;
  line-height: 1.5;
  font-size: 0.92rem;
  max-width: 280px;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 280px;
}
.subscribe-form input[type="email"] {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}
.subscribe-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.1);
}
.subscribe-form button {
  align-self: flex-start;
  padding: 0.5rem 1.1rem;
  background: transparent;
  color: var(--pink);
  border: 1px solid rgba(230, 50, 150, 0.5);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.subscribe-form button:hover {
  background: rgba(230, 50, 150, 0.1);
  border-color: var(--pink);
}
.site-footer .subscribe-form a {
  border: none;
}

/* Writing page — subscribe block at bottom */
.writing-subscribe {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 560px;
  padding: 2rem 1.5rem;
}
.writing-subscribe h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--charcoal);
  margin: 0 0 0.6rem;
  border: none;
}
.writing-subscribe p {
  color: var(--brown);
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
}
.subscribe-form--inline {
  flex-direction: row;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}
.subscribe-form--inline input[type="email"] {
  flex: 1;
  background: rgba(107, 85, 69, 0.06);
  border: 1px solid rgba(107, 85, 69, 0.18);
  color: var(--charcoal);
}
.subscribe-form--inline input[type="email"]::placeholder {
  color: rgba(107, 85, 69, 0.55);
}
.subscribe-form--inline input[type="email"]:focus {
  background: rgba(107, 85, 69, 0.1);
  border-color: var(--pink);
}
.subscribe-form--inline button {
  align-self: stretch;
  padding: 0.7rem 1.1rem;
  color: var(--pink);
  border-color: rgba(230, 50, 150, 0.4);
}
.subscribe-form--inline button:hover {
  background: rgba(230, 50, 150, 0.06);
  border-color: var(--pink);
  color: var(--pink);
}
@media (max-width: 520px) {
  .subscribe-form--inline { flex-direction: column; }
}

/* ---------- Now page ---------- */
.now-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--brown);
  opacity: 0.75;
  margin-top: 1rem;
}
.now-entry {
  margin: 2.5rem 0;
}
.now-entry h2,
.now-entry h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  color: var(--charcoal);
  margin: 0 0 1rem;
  line-height: 1.3;
  border: none;
}
.now-entry p {
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 680px;
}
.now-invitation {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--brown);
  border-left: 3px solid var(--pink);
  padding: 0.5rem 0 0.5rem 1.2rem;
  margin-top: 1.25rem !important;
}
.now-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  font-size: 0.92rem;
  color: var(--brown);
  opacity: 0.75;
}
body[data-page="now"] .page-intro .eyebrow { color: var(--pink); }

.now-section {
  margin: 2.5rem 0;
}
.now-section__heading {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}
.now-entry__meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--brown);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.now-entry--pinned {
  border-left: 3px solid var(--pink);
  padding-left: 1.5rem;
  background: rgba(230, 50, 150, 0.03);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-radius: 0 4px 4px 0;
}
.now-archive {
  margin-top: 4rem;
  border-top: 1px solid rgba(107, 85, 69, 0.15);
  padding-top: 1.5rem;
}
.now-archive summary {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.now-archive summary::-webkit-details-marker { display: none; }
.now-archive summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.5;
  transition: transform 0.25s;
}
.now-archive[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.now-archive__body {
  padding: 1rem 0;
}
.now-archive__intro,
.now-archive__empty {
  color: var(--brown);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.now-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 0;
}
.now-media__heading {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 600;
  margin: 0 0 1rem;
}
.now-media__item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.now-media__author {
  color: var(--brown);
  font-style: normal;
  font-size: 1rem;
}
.now-media__item p {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}
.now-media__item + .now-media__item {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(107, 85, 69, 0.1);
}
.now-media__related {
  margin-top: 0.75rem !important;
  font-size: 0.92rem !important;
  color: var(--brown);
}
@media (max-width: 720px) {
  .now-media { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Site-wide Now strip (above footer, every page) ---------- */
.now-strip {
  background: rgba(230, 50, 150, 0.04);
  border-top: 1px solid rgba(230, 50, 150, 0.12);
  border-bottom: 1px solid rgba(230, 50, 150, 0.12);
  padding: 1.4rem 0;
}
.now-strip__inner {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.now-strip .now-teaser__label {
  white-space: nowrap;
}
.now-strip .now-teaser__link {
  margin-bottom: 0;
}

/* Home page now-teaser */
.now-teaser {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--pink);
  background: rgba(230, 50, 150, 0.04);
  border-radius: 0 4px 4px 0;
}
.now-teaser__label {
  display: block;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.now-teaser__link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.now-teaser__link:hover { color: var(--pink); }
.now-teaser__cta {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--pink);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.3rem;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; }
.site-footer .footer-brand-connect {
  display: block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--pink, #E63296);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  width: fit-content;
}
.site-footer .footer-brand-connect:hover {
  border-bottom-color: var(--pink, #E63296);
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: center;
}
.footer-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  line-height: 0;
  border-bottom: none;
}
.footer-social a:hover { color: rgba(255,255,255,0.9); }
.footer-social svg { width: 1.1rem; height: 1.1rem; }
.site-footer .footer-now-link {
  display: block;
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pink, #E63296);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  width: fit-content;
}
.site-footer .footer-now-link:hover {
  border-bottom-color: var(--pink, #E63296);
}
.footer-copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ---------- About page — Story blocks ---------- */
.about-story {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.story-block--full-photo,
.story-block--believe,
.story-block--humanity,
.story-block--belong {
  grid-template-columns: 1fr;
}

.story-block__img {
  overflow: hidden;
}
.story-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-block--full-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.story-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
  gap: 0;
}
.story-block__text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: none;
}
.story-block__text p:last-child { margin-bottom: 0; }
.story-block__text em { color: inherit; font-style: italic; }
.story-block__text strong { color: #fff; font-weight: 600; }

.story-block__text--full {
  padding: 4rem 3.5rem;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.story-label {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  opacity: 0.85;
  margin-bottom: 1.25rem !important;
}

.story-sig {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  opacity: 0.8;
  margin-top: 1rem !important;
}
.story-sig .dr-heather {
  font-size: 1.9em;
  color: var(--rose);
  margin-left: 0.15em;
  vertical-align: -0.05em;
}
.story-sig--formal {
  font-size: 0.92rem !important;
  opacity: 0.55;
  margin-top: 0.1rem !important;
  letter-spacing: 0.02em;
}

.story-list {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
}
.story-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #fff;
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.story-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.7;
}

/* Color themes */
.story-block__text--green  { background: var(--forest); }
.story-block__text--brown  { background: var(--brown); }
.story-block__text--purple { background: var(--purple); }
.story-block__text--pink   { background: var(--pink); }
.story-block__text--orange { background: var(--terracotta); }
.story-block__text--blue   { background: var(--blue); color: #fff; }

/* Row ordering: alternate image left / text right */
.story-block--portrait  { }
.story-block--roots     { }
.story-block--path      { }
.story-block--family    { grid-template-columns: 1fr 1fr; }
.story-block--butterfly { }
.story-block--slow-down { }
.story-block--offer     { }

/* Flip some rows so text appears on left */
.story-block--roots     .story-block__text,
.story-block--family    .story-block__text,
.story-block--humanity  .story-block__text,
.story-block--offer     .story-block__text { order: -1; }

@media (max-width: 720px) {
  .story-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .story-block__img { min-height: 260px; }
  .story-block__text { padding: 2.25rem 1.75rem; }
  .story-block__text--full { padding: 2.5rem 1.75rem; }
  .story-block--roots .story-block__text,
  .story-block--family .story-block__text,
  .story-block--offer .story-block__text { order: 0; }
}

/* ---------- About page — Garamond body text ---------- */
body[data-page="about"] .section p,
body[data-page="about"] .belief-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--charcoal);
}

/* ---------- Credits card ---------- */
.credits-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream-warm);
  border-left: 4px solid var(--pink);
  border-radius: 0 6px 6px 0;
}
.credits-card--photo-left {
  flex-direction: row;
}
.credits-card__body { flex: 1; }
.credits-photo {
  flex-shrink: 0;
  max-width: 160px;
  max-height: 200px;
  width: auto;
  height: auto;
  border-radius: 6px;
  border: 3px solid var(--pink-soft);
  box-shadow: 0 4px 16px rgba(42, 37, 31, 0.12);
}
.credits-card:not(.credits-card--photo-left) .credits-photo {
  margin-right: 3rem;
}
.credits-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}
.credits-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  font-weight: 500;
  margin: 0.2rem 0 0.75rem;
}
.credits-card p {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}
.credits-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 50, 150, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.credits-link:hover { border-bottom-color: var(--rose); }

/* ---------- Footer credit line ---------- */
.footer-credit {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.7;
}
.footer-credit a { color: var(--pink-soft); }

/* ---------- Media page ---------- */
.media-item {
  padding: 2.5rem 0;
  border-bottom: 3px solid rgba(130, 85, 50, 0.1);
}
.media-item:last-child { border-bottom: none; padding-bottom: 0; }
.media-meta {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.media-pub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
}
.media-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--brown-soft);
}
.media-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin: 0.1rem 0 0.25rem;
  line-height: 1.2;
  color: var(--charcoal);
}
.media-title a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 2px solid rgba(170, 80, 150, 0.2);
  transition: color 0.2s, border-color 0.2s;
}
.media-title a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.media-byline {
  font-size: 0.88rem;
  color: var(--brown-soft);
  font-style: italic;
  margin: 0 0 0.75rem;
}
.media-summary {
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  max-width: none;
}
.media-quote {
  margin: 0.75rem 0 0;
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-left: 3px solid var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown);
  line-height: 1.5;
  max-width: 620px;
}

/* ---------- Media talks ---------- */
.media-talk {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.media-talk-thumb {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 220px;
  border-radius: 6px;
  overflow: hidden;
}
.media-talk-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}
.media-talk-thumb:hover img { opacity: 0.85; }
.media-talk-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
.media-talk-info { flex: 1; }

/* ---------- #ILookLikeASurgeon collapsible blog list ---------- */
.ilook-blogs {
  margin: 2rem 0;
  border: 1px solid rgba(107, 85, 69, 0.15);
  border-radius: 6px;
  overflow: hidden;
}
.ilook-blogs summary {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(230, 50, 150, 0.04);
  border-bottom: 1px solid transparent;
  transition: background 0.2s;
  user-select: none;
  line-height: 1.3;
}
.ilook-blogs summary::-webkit-details-marker { display: none; }
.ilook-blogs summary::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--rose);
  border-bottom: 1.5px solid var(--rose);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: -3px;
}
.ilook-blogs[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.ilook-blogs[open] summary {
  background: rgba(230, 50, 150, 0.06);
  border-bottom-color: rgba(107, 85, 69, 0.12);
}
.ilook-blogs summary:hover { background: rgba(230, 50, 150, 0.08); }
.ilook-blog-list {
  margin: 0;
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ilook-blog-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(107, 85, 69, 0.08);
  line-height: 1.4;
}
.ilook-blog-list li:last-child { border-bottom: none; }
.ilook-blog-list a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: opacity 0.2s;
  font-weight: 500;
}
.ilook-blog-list a:hover { opacity: 0.75; }

.ilook-blog-list li:nth-child(1)  a { color: var(--pink);      border-bottom-color: rgba(230,50,150,0.25); }
.ilook-blog-list li:nth-child(2)  a { color: var(--terracotta);border-bottom-color: rgba(250,120,40,0.25); }
.ilook-blog-list li:nth-child(3)  a { color: var(--yellow);    border-bottom-color: rgba(255,200,40,0.35); }
.ilook-blog-list li:nth-child(4)  a { color: var(--sage);      border-bottom-color: rgba(110,180,90,0.3); }
.ilook-blog-list li:nth-child(5)  a { color: var(--forest);    border-bottom-color: rgba(60,100,50,0.3); }
.ilook-blog-list li:nth-child(6)  a { color: var(--blue);      border-bottom-color: rgba(100,170,230,0.35); }
.ilook-blog-list li:nth-child(7)  a { color: var(--purple);    border-bottom-color: rgba(120,40,180,0.25); }
.ilook-blog-list li:nth-child(8)  a { color: var(--pink);      border-bottom-color: rgba(230,50,150,0.25); }
.ilook-blog-list li:nth-child(9)  a { color: var(--terracotta);border-bottom-color: rgba(250,120,40,0.25); }
.ilook-blog-list li:nth-child(10) a { color: var(--yellow);    border-bottom-color: rgba(255,200,40,0.35); }
.ilook-blog-list li:nth-child(11) a { color: var(--sage);      border-bottom-color: rgba(110,180,90,0.3); }
.ilook-blog-list li:nth-child(12) a { color: var(--forest);    border-bottom-color: rgba(60,100,50,0.3); }
.ilook-blog-list li:nth-child(13) a { color: var(--blue);      border-bottom-color: rgba(100,170,230,0.35); }
.ilook-blog-list li:nth-child(14) a { color: var(--purple);    border-bottom-color: rgba(120,40,180,0.25); }
.ilook-blog-list li:nth-child(15) a { color: var(--pink);      border-bottom-color: rgba(230,50,150,0.25); }
.ilook-blog-list li:nth-child(16) a { color: var(--terracotta);border-bottom-color: rgba(250,120,40,0.25); }
.ilook-blog-list li:nth-child(17) a { color: var(--yellow);    border-bottom-color: rgba(255,200,40,0.35); }
.ilook-blog-list li:nth-child(18) a { color: var(--sage);      border-bottom-color: rgba(110,180,90,0.3); }
.ilook-blog-list li:nth-child(19) a { color: var(--forest);    border-bottom-color: rgba(60,100,50,0.3); }

.ilook-blog-author {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--brown);
  opacity: 0.75;
  margin-top: 0.3rem;
  font-weight: 400;
}

.ilook-blog-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown-soft);
  padding: 1rem 1.5rem 0.5rem;
  opacity: 0.8;
}

/* ---------- Media page accents ---------- */
body[data-page="media"] .page-intro .eyebrow { color: var(--pink); }
body[data-page="media"] .book-group h2 { border-bottom-color: var(--purple); }
body[data-page="media"] .media-pub { color: var(--brown-soft); }
body[data-page="media"] .media-quote { border-left-color: var(--purple); }
body[data-page="media"] .media-title a:hover { color: var(--purple); border-bottom-color: var(--purple); }
body[data-page="media"] .spectrum {
  background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 40%, var(--pink) 100%);
}

/* ---------- Advocacy page ---------- */
body[data-page="advocacy"] .page-intro .eyebrow { color: var(--pink); }
body[data-page="advocacy"] .section h2 { color: var(--terracotta); }
body[data-page="advocacy"] .section blockquote {
  border-left-color: var(--terracotta);
  background: rgba(250, 120, 40, 0.06);
  padding-right: 1.25rem;
  border-radius: 0 4px 4px 0;
}
body[data-page="advocacy"] .spectrum {
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--yellow) 40%, var(--pink) 100%);
}
.advocacy-footnote {
  font-size: 0.92rem;
  color: var(--brown-soft);
  font-style: italic;
  border-top: 1px solid rgba(107, 85, 69, 0.15);
  padding-top: 1.5rem;
  max-width: 680px;
}

/* ---------- Research profile pills ---------- */
.research-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}
.research-profiles-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(170, 80, 150, 0.55);
  margin: 2rem 0 1.25rem;
}
.research-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(170, 80, 150, 0.12);
  border-radius: 999px;
  color: var(--forest, #3a5a40);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.research-profile:hover {
  border-color: var(--pink, #E63296);
  color: var(--pink, #E63296);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 50, 150, 0.14);
}
.research-profile__icon { flex-shrink: 0; }
.research-profile__label { line-height: 1; }

/* ---------- Research tabs & publications ---------- */
.research-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
  border-bottom: none;
  padding-bottom: 0;
}
.research-tab {
  font-family: 'Inter', sans-serif;
  text-align: left;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(107, 85, 69, 0.13);
  border-left: 3px solid rgba(107, 85, 69, 0.2);
  border-radius: 8px;
  padding: 1.05rem 1.4rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1.1rem;
}
.research-tab__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-soft);
  transition: color 0.18s;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}
.research-tab__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.9;
  line-height: 1.35;
  font-weight: 500;
  transition: opacity 0.18s;
}
.research-tab:hover {
  background: rgba(255,255,255,0.85);
}
.research-tab:hover .research-tab__label { color: var(--ink); }
.research-tab:hover .research-tab__sub { opacity: 0.8; }
.research-tab.active {
  background: rgba(255,255,255,0.9);
  border-left-color: var(--forest);
}
.research-tab.active .research-tab__label { color: var(--forest); }
.research-tab.active .research-tab__sub { opacity: 0.85; }

/* Reduce whitespace above the tabs on research page */
body[data-page="research"] .section { padding-top: 1.25rem; }
.research-panel {
  display: none;
}
.research-panel.active {
  display: block;
}

.research-photo {
  margin: 1.5rem 0 2rem;
  max-width: 560px;
}
.research-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.research-photo figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--brown-soft);
  margin-top: 0.6rem;
  font-style: italic;
}

.research-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  max-width: none;
  margin: 0 0 2rem;
}
.research-pubs-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin: 0 0 1.25rem;
}

.pub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pub-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(107, 85, 69, 0.1);
}
.pub-item:last-child { border-bottom: none; }
.pub-authors {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--brown-soft);
  margin: 0 0 0.35rem;
  line-height: 1.5;
}
.pub-authors strong {
  color: var(--ink);
  font-weight: 600;
}
.pub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.pub-journal {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin: 0;
}
.pub-title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 100, 50, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.pub-title-link:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.pub-doi {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 100, 50, 0.25);
  transition: opacity 0.2s;
}
.pub-doi:hover { opacity: 0.7; }

body[data-page="research"] .page-intro .eyebrow { color: var(--pink); }
body[data-page="research"] .spectrum {
  background: linear-gradient(90deg, var(--forest) 0%, var(--sage) 50%, var(--blue) 100%);
}

/* ── Publication key findings toggle ── */
.pub-findings {
  margin-top: 1rem;
}
.pub-findings__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  user-select: none;
  padding: 0.3rem 0.75rem 0.3rem 0;
}
.pub-findings__toggle::-webkit-details-marker { display: none; }
.pub-findings__toggle::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(60, 100, 50, 0.12);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.pub-findings[open] .pub-findings__toggle::before {
  content: '−';
  background: rgba(60, 100, 50, 0.18);
}
.pub-findings__toggle:hover::before {
  background: rgba(60, 100, 50, 0.22);
}
.pub-findings__list {
  margin: 0.75rem 0 0.25rem 0.5rem;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 2px solid rgba(60, 100, 50, 0.2);
  padding-left: 1rem;
}
.pub-findings__list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.pub-findings__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
  top: 0.05em;
}

/* ── Geriatric Trauma — pub cards with color ── */
#tab-rib-fractures .pub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#tab-rib-fractures .pub-item {
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  border-bottom: none;
}
#tab-rib-fractures .pub-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(60,100,50,0.06) 0%, rgba(110,180,90,0.05) 100%);
  border: 1px solid rgba(60,100,50,0.14);
}
#tab-rib-fractures .pub-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(100,170,230,0.07) 0%, rgba(60,100,50,0.05) 100%);
  border: 1px solid rgba(100,170,230,0.18);
}
#tab-rib-fractures .pub-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(110,180,90,0.07) 0%, rgba(100,170,230,0.05) 100%);
  border: 1px solid rgba(110,180,90,0.18);
}

/* ── Key findings toggle — blue variant for social media tab ── */
.pub-findings--blue .pub-findings__toggle {
  color: var(--blue);
}
.pub-findings--blue .pub-findings__toggle::before {
  background: rgba(100,170,230,0.15);
  color: var(--blue);
}
.pub-findings--blue[open] .pub-findings__toggle::before {
  background: rgba(100,170,230,0.25);
}
.pub-findings--blue .pub-findings__toggle:hover::before {
  background: rgba(100,170,230,0.3);
}
.pub-findings--blue .pub-findings__list {
  border-left-color: rgba(100,170,230,0.3);
}
.pub-findings--blue .pub-findings__list li::before {
  color: var(--blue);
}

/* ── Social Media in Medicine — pub cards, blue palette ── */
.sm-pub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sm-pub-list .pub-item {
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  border-bottom: none;
}
.sm-pub-list .pub-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(100,170,230,0.09) 0%, rgba(130,190,240,0.05) 100%);
  border: 1px solid rgba(100,170,230,0.2);
}
.sm-pub-list .pub-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(80,140,210,0.09) 0%, rgba(100,170,230,0.06) 100%);
  border: 1px solid rgba(80,140,210,0.2);
}
.sm-pub-list .pub-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(60,110,190,0.08) 0%, rgba(100,170,230,0.06) 100%);
  border: 1px solid rgba(60,110,190,0.18);
}
.sm-pub-list .pub-item:nth-child(4) {
  background: linear-gradient(135deg, rgba(80,60,180,0.07) 0%, rgba(100,170,230,0.05) 100%);
  border: 1px solid rgba(100,130,210,0.18);
}

/* ── Social Media tab — blue ── */
#tab-btn-social-media .research-tab__label { color: var(--blue); }
#tab-btn-social-media { border-left-color: rgba(100, 170, 230, 0.45); }
#tab-btn-social-media:hover { border-left-color: rgba(100, 170, 230, 0.75); }
#tab-btn-social-media.active { border-left-color: var(--blue); background: rgba(100, 170, 230, 0.07); }

/* ── Health Equity tab — purple ── */
#tab-btn-health-equity .research-tab__label { color: var(--purple); }
#tab-btn-health-equity { border-left-color: rgba(170, 80, 150, 0.35); }
#tab-btn-health-equity:hover { border-left-color: rgba(170, 80, 150, 0.65); }
#tab-btn-health-equity.active { border-left-color: var(--purple); background: rgba(170, 80, 150, 0.06); }

/* ── Geriatric Trauma tab — forest green ── */
#tab-btn-rib-fractures .research-tab__label { color: var(--forest); }
#tab-btn-rib-fractures { border-left-color: rgba(60, 100, 50, 0.4); }
#tab-btn-rib-fractures:hover { border-left-color: rgba(60, 100, 50, 0.7); }
#tab-btn-rib-fractures.active { border-left-color: var(--forest); background: rgba(60, 100, 50, 0.06); }

/* ── Health Equity panel — top section cohesion ── */
#tab-health-equity {
  position: relative;
}
#tab-health-equity::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  border-radius: 2px;
  margin-bottom: 2rem;
  opacity: 0.7;
}
#tab-health-equity .research-intro {
  border-left: 3px solid rgba(170, 80, 150, 0.35);
  padding-left: 1.25rem;
}
#tab-health-equity .research-pubs-label {
  color: var(--purple);
}
#tab-health-equity .pub-item {
  background: linear-gradient(135deg, rgba(170, 80, 150,0.05) 0%, rgba(100,170,230,0.04) 100%);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  border-bottom: none;
  border: 1px solid rgba(170, 80, 150, 0.12);
}
#tab-health-equity .pub-title-link {
  border-bottom-color: rgba(170, 80, 150, 0.3);
}
#tab-health-equity .pub-title-link:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
#tab-health-equity .pub-doi {
  color: var(--purple);
  border-bottom-color: rgba(170, 80, 150, 0.25);
}
#tab-health-equity .pub-doi:hover { opacity: 0.7; }

/* ── Health Equity "From the Paper" insights block ── */
.eq-insights {
  margin-top: 3rem;
}

/* Divider row */
.eq-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.eq-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 80, 150, 0.25), transparent);
}
.eq-divider__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  white-space: nowrap;
}

/* Hero pullquote */
.eq-hero-quote {
  position: relative;
  background: linear-gradient(135deg, #2D0B4E 0%, #4A1580 60%, #6B2FA0 100%);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.eq-hero-quote::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.eq-hero-quote::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.eq-hero-quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(247,179,212,0.35);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.eq-hero-quote blockquote.eq-hero-quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: #FAF0FF;
  max-width: 100%;
  position: relative;
  z-index: 1;
  border-left: none;
  padding: 0;
  margin: 0;
}
.eq-hero-quote__close {
  display: block;
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.3;
  color: rgba(247,179,212,0.35);
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Two-up cards */
.eq-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) {
  .eq-card-row { grid-template-columns: 1fr; }
}
.eq-card {
  position: relative;
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  overflow: hidden;
}
.eq-card--deep {
  background: #F3E8FF;
  border-left: 4px solid var(--purple);
}
.eq-card--mid {
  background: #E8F0FF;
  border-left: 4px solid var(--blue);
}
.eq-card__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.eq-card--deep .eq-card__mark { color: rgba(170, 80, 150, 0.3); }
.eq-card--mid .eq-card__mark { color: rgba(100, 170, 230, 0.45); }
.eq-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
  color: var(--charcoal);
}

/* Key Takeaways */
.eq-takeaways {
  background: var(--cream-warm);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(170, 80, 150, 0.12);
}
.eq-takeaways__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
}
.eq-takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}
@media (max-width: 600px) {
  .eq-takeaway-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .research-tabs { grid-template-columns: 1fr; }
}
.eq-takeaway {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.eq-takeaway__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 0.55rem;
}
.eq-takeaway__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.eq-takeaway__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--brown);
}

/* ---------- Per-page accents ---------- */
/* #UnmaskMedicine — forest green signature */
body[data-page="unmask"] .page-intro .eyebrow { color: var(--pink); }
body[data-page="unmask"] .section h2 { color: var(--forest); }
body[data-page="unmask"] .section blockquote {
  border-left-color: var(--forest);
  background: rgba(60, 100, 50, 0.05);
  padding-right: 1.25rem;
  border-radius: 0 4px 4px 0;
}

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  .site-footer .container-wide { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer .container-wide:last-child { grid-template-columns: 1fr; }
  .site-footer .container-wide:first-child > div + div {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
  }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { padding: 0.8rem 0; }
  .site-header .container-wide { gap: 1rem; justify-content: center; }
  .main-nav { gap: 0.9rem 1.1rem; font-size: 0.74rem; justify-content: center; }
  .hero { padding: 3rem 0 2rem; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .page-intro { padding: 2.5rem 0 1rem; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-text { font-size: 0.9rem; gap: 0.28rem; }
  .logo-text .the { font-size: 0.62rem; }
  .logo-text .surgeon { font-size: 0.72rem; letter-spacing: 0.14em; }
  .logo-text .listening { font-size: 1.75rem; transform: translateY(4px); }
}

/* ============================================================
   Surgeon Spotlight (used on Susan Pitt and other ILLAS profiles)
   ============================================================ */
.surgeon-spotlight {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin: 1.5rem 0 2.5rem;
}
.surgeon-spotlight__photo {
  border-radius: 8px;
  overflow: hidden;
  background: #f4eee8;
  box-shadow: 0 8px 28px rgba(170, 80, 150, 0.12);
}
.surgeon-spotlight__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.surgeon-spotlight__meta {
  padding-top: 0.5rem;
}
.surgeon-spotlight__role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.surgeon-spotlight__tags {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.surgeon-spotlight__tags li {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: rgba(230, 50, 150, 0.08);
  border: 1px solid rgba(230, 50, 150, 0.25);
  color: var(--pink-deep, #c01f7a);
  border-radius: 999px;
}
.surgeon-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.25rem;
  background: var(--pink, #E63296);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.surgeon-spotlight__link:hover {
  transform: translateY(-1px);
  background: #c01f7a;
  box-shadow: 0 6px 18px rgba(230, 50, 150, 0.3);
}
.surgeon-spotlight__link svg { flex-shrink: 0; }

.surgeon-bio {
  max-width: 720px;
  margin: 0 auto;
}
.surgeon-bio p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.surgeon-bio p:last-child { margin-bottom: 0; }

.surgeon-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 3px solid var(--pink, #E63296);
  background: linear-gradient(90deg, rgba(230, 50, 150, 0.05) 0%, transparent 100%);
}
.surgeon-quote cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  color: #777;
  margin-top: 0.6rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .surgeon-spotlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .surgeon-spotlight__photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .surgeon-spotlight__meta {
    text-align: center;
  }
  .surgeon-spotlight__tags { justify-content: center; }
}

/* ============================================================
   Surgeon Grid (cards on the #ILookLikeASurgeon page)
   ============================================================ */
.surgeon-grid-heading {
  text-align: center;
  margin: 3rem 0 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--forest);
  letter-spacing: 0.005em;
}
.surgeon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 3rem;
}
.surgeon-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(170, 80, 150, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.surgeon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(170, 80, 150, 0.12);
  border-color: rgba(230, 50, 150, 0.35);
}
.surgeon-card__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f7eef2 0%, #f4e8d8 100%);
  overflow: hidden;
}
.surgeon-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.surgeon-card__photo--placeholder {
  position: relative;
}
.surgeon-card__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: rgba(230, 50, 150, 0.18);
}
.surgeon-card__body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.surgeon-card__body p { flex: 1; }
.surgeon-card__body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.surgeon-card__body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}
.surgeon-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pink, #E63296);
  letter-spacing: 0.02em;
}
.surgeon-card--coming {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}
.surgeon-card--coming:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(170, 80, 150, 0.08);
}

/* ════════════════════════════════════════════════════════════
   #ILookLikeASurgeon page — story layout & collaborators
   ════════════════════════════════════════════════════════════ */

/* Impact stats strip */
.illas-impact {
  display: flex;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(230, 50, 150, 0.15);
}
.illas-impact__stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 0.75rem;
  background: rgba(230, 50, 150, 0.04);
  border-right: 1px solid rgba(230, 50, 150, 0.12);
}
.illas-impact__stat--last { border-right: none; }
.illas-impact__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.1;
}
.illas-impact__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  opacity: 0.6;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Story disclosure wrapper */
.illas-story-disclosure {
  margin: 0 0 0.5rem;
}
.illas-story-disclosure > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(250, 120, 40, 0.06);
  border: 1px solid rgba(250, 120, 40, 0.18);
  border-radius: 10px;
  transition: background 0.18s;
  user-select: none;
}
.illas-story-disclosure > summary::-webkit-details-marker { display: none; }
.illas-story-disclosure > summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: -3px;
}
.illas-story-disclosure[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.illas-story-disclosure > summary:hover { background: rgba(250, 120, 40, 0.11); }
.illas-story-disclosure__hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  background: rgba(250, 120, 40, 0.12);
  padding: 0.25em 0.65em;
  border-radius: 3px;
  flex-shrink: 0;
}
.illas-story-disclosure__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Chapter layout */
.illas-story { padding: 1.75rem 0 0.5rem; }
.illas-chapter {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.illas-chapter__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.illas-chapter__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.illas-chapter__line {
  width: 2px;
  flex: 1;
  min-height: 1.5rem;
  background: linear-gradient(180deg, rgba(250,120,40,0.35) 0%, rgba(250,120,40,0.04) 100%);
  margin-top: 0.4rem;
}
.illas-chapter__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--terracotta);
  margin: 0 0 0.55rem;
  line-height: 1.2;
}
.illas-chapter__content p { margin-bottom: 0.75rem; }
.illas-chapter--last { margin-bottom: 0; }

/* Pull quote */
.illas-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.1rem;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.6;
}

/* Blog posts — featured style */
.illas-blogs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.illas-blogs-intro {
  font-size: 0.95rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 660px;
}
.illas-blog-list--featured {
  background: rgba(230, 50, 150, 0.03);
  border: 1px solid rgba(230, 50, 150, 0.1);
  border-radius: 12px;
  padding: 0.5rem 1.5rem;
}
.illas-blog-list--featured li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(230, 50, 150, 0.1);
}
.illas-blog-list--featured li:last-child { border-bottom: none; }
.illas-blog-list--featured a {
  font-size: 0.97rem;
  font-weight: 500;
}
.illas-blog-list--featured .ilook-blog-author {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
}
.illas-blog-list--featured .ilook-blog-note {
  padding: 0.75rem 0 0.25rem;
  font-size: 0.8rem;
  opacity: 0.6;
  list-style: none;
}

/* Collaborator strips */
.illas-collab-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.illas-collab-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.illas-collaborators { display: flex; flex-direction: column; gap: 0.9rem; }
.illas-collab {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.4rem;
  align-items: start;
  background: rgba(230,50,150,0.04);
  border: 1px solid rgba(230,50,150,0.12);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s, border-color 0.18s;
}
.illas-collab:hover {
  background: rgba(230,50,150,0.08);
  border-color: rgba(230,50,150,0.22);
}
.illas-collab__photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.illas-collab__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.15rem;
}
.illas-collab__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 0.65rem;
}
.illas-collab__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.illas-collab__cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  font-weight: 500;
}

@media (max-width: 600px) {
  .illas-impact { flex-wrap: wrap; }
  .illas-impact__stat { min-width: 48%; border-bottom: 1px solid rgba(230,50,150,0.12); }
  .illas-chapter { grid-template-columns: 2rem 1fr; gap: 1rem; }
  .illas-collab { grid-template-columns: 1fr; }
  .illas-collab__photo { width: 56px; height: 56px; }
}

/* ── Social Media 5th paper card ── */
.sm-pub-list .pub-item:nth-child(5) {
  background: linear-gradient(135deg, rgba(100,170,230,0.07) 0%, rgba(250,120,40,0.05) 100%);
  border: 1px solid rgba(100,170,230,0.18);
}

/* ── Surgical Identity tab — terracotta ── */
#tab-btn-surgical-identity .research-tab__label { color: var(--terracotta); }
#tab-btn-surgical-identity { border-left-color: rgba(250, 120, 40, 0.4); }
#tab-btn-surgical-identity:hover { border-left-color: rgba(250, 120, 40, 0.7); }
#tab-btn-surgical-identity.active { border-left-color: var(--terracotta); background: rgba(250, 120, 40, 0.07); }

/* ── Surgical Identity panel ── */
#tab-surgical-identity {
  position: relative;
}
#tab-surgical-identity::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--pink) 100%);
  border-radius: 2px;
  margin-bottom: 2rem;
  opacity: 0.65;
}
#tab-surgical-identity .research-intro {
  border-left: 3px solid rgba(250, 120, 40, 0.4);
  padding-left: 1.25rem;
}
#tab-surgical-identity .research-pubs-label {
  color: var(--terracotta);
}
#tab-surgical-identity .pub-item {
  background: linear-gradient(135deg, rgba(250,120,40,0.07) 0%, rgba(230,50,150,0.04) 100%);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  border-bottom: none;
  border: 1px solid rgba(250, 120, 40, 0.18);
}
#tab-surgical-identity .pub-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(230,50,150,0.06) 0%, rgba(250,120,40,0.04) 100%);
  border: 1px solid rgba(230, 50, 150, 0.15);
}
#tab-surgical-identity .pub-title-link:hover {
  color: var(--terracotta);
}
#tab-surgical-identity .pub-doi {
  color: var(--terracotta);
  border-bottom-color: rgba(250, 120, 40, 0.3);
}
#tab-surgical-identity .pub-doi:hover { opacity: 0.7; }

/* ── Terracotta pub-findings variant ── */
.pub-findings--terracotta .pub-findings__toggle {
  color: var(--terracotta);
}
.pub-findings--terracotta .pub-findings__toggle::before {
  background: rgba(250, 120, 40, 0.12);
  color: var(--terracotta);
}
.pub-findings--terracotta[open] .pub-findings__toggle::before {
  content: '\2212';
}
.pub-findings--terracotta .pub-findings__toggle:hover::before {
  background: rgba(250, 120, 40, 0.22);
}
.pub-findings--terracotta .pub-findings__list {
  border-left-color: rgba(250, 120, 40, 0.3);
}
.pub-findings--terracotta .pub-findings__list li::before {
  color: var(--terracotta);
}

/* ── Surgical Identity artistic block (si-*) ── */
.si-insights {
  margin-top: 3rem;
}

/* Hero pullquote */
.si-hero-quote {
  position: relative;
  background: linear-gradient(135deg, #5A1A00 0%, #A04010 55%, #D06030 100%);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.si-hero-quote::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.si-hero-quote::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.si-hero-quote__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(255,180,100,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.si-hero-quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(255, 200, 130, 0.35);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.si-hero-quote blockquote.si-hero-quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: #FFF5EC;
  position: relative;
  z-index: 1;
  border-left: none;
  padding: 0;
  margin: 0;
}

/* Impact stat row */
.si-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0 0 1.75rem;
  flex-wrap: wrap;
}
.si-stat {
  text-align: center;
  background: linear-gradient(135deg, rgba(250,120,40,0.09) 0%, rgba(250,120,40,0.03) 100%);
  border: 1px solid rgba(250, 120, 40, 0.22);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  flex: 1;
  min-width: 130px;
}
.si-stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.1;
}
.si-stat__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Supporting quote card */
.si-quote-card {
  position: relative;
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.25rem 1rem 2rem;
  background: rgba(250, 120, 40, 0.05);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}
.si-quote-card__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--terracotta);
  opacity: 0.3;
  position: absolute;
  top: 1.2rem;
  left: 0.3rem;
}
.si-quote-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .si-stats { flex-direction: column; }
  .si-hero-quote { padding: 2rem 1.5rem; }
  .si-hero-quote blockquote.si-hero-quote__text { font-size: 1.5rem; }
}

/* ---------- Home page invitation grid ---------- */
.home-invitations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.home-invite {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(107,85,69,0.1);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}
.home-invite:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(107,85,69,0.08);
}
.home-invite__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.home-invite__desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.home-invite__cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown-soft);
  margin-top: 0.25rem;
}
.home-invite:hover .home-invite__cta { color: var(--ink); }
@media (max-width: 600px) {
  .home-invitations { grid-template-columns: 1fr; }
  .home-invite:last-child { grid-column: auto; max-width: 100%; }
}

/* ---------- Thesis blockquote (About page) ---------- */
.blockquote--thesis {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--terracotta);
  border-left: none;
  padding: 1.25rem 0 1.25rem 0;
  margin: 2rem 0;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.25;
  position: relative;
}
.blockquote--thesis::before,
.blockquote--thesis::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.35;
  margin: 0 auto;
}
.blockquote--thesis::before { margin-bottom: 1rem; }
.blockquote--thesis::after  { margin-top: 1rem; }
