/* ==========================================================================
   Ebi Sheila Diete-Spiff — Ebi's PowerHouse
   Brand system: plum / orchid / gold, restored on the editorial layout
   "You can build a successful career or business without losing yourself in the process."
   ========================================================================== */
:root {
  /* Brand core */
  --plum: #3B1740;
  --plum-dark: #2A1030;
  --orchid: #9A3D74;
  --orchid-soft: #C77FA6;
  --gold: #C6952F;
  --gold-soft: #E4C888;

  /* Mapped neutrals (kept as the same variable names the editorial layout uses,
     so structural classes below don't need per-selector rewrites) */
  --ink: #2A1030;               /* = plum-dark — primary text / dark panels */
  --ink-soft: #5B3B5E;          /* softened plum for body copy */
  --charcoal: #3B1740;          /* = plum — deep panel background (hero, footer) */
  --cream: #FFFFFF;             /* paper background */
  --paper: #FFFFFF;             /* pure white for contrast blocks */
  --line: #E7DEE3;              /* hairline border on light backgrounds */
  --line-dark: rgba(255,255,255,0.16); /* hairline on dark backgrounds */
  --muted: #8B7A8C;             /* muted caption / meta text on light bg */
  --muted-dark: rgba(255,255,255,0.62); /* muted caption text on dark bg */

  /* Accent — replaces "magenta" with the brand orchid/gold pairing */
  --magenta: #9A3D74;           /* = orchid */
  --magenta-deep: #6E2B54;
  --magenta-tint: #F6EBF1;

  --sand: #C6952F;              /* = gold */
  --sand-tint: #FBF3E1;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --container: 1240px;
  --container-narrow: 760px;
  --shadow-sm: 0 2px 12px rgba(34, 18, 33, 0.08);
  --shadow-md: 0 8px 32px rgba(34, 18, 33, 0.14);
  --shadow-lg: 0 20px 60px rgba(34, 18, 33, 0.22);

  /* Photography radius — ALL major photographs use a soft, elegant curve.
     UI elements (buttons, cards, sections) stay sharp/rectangular — this
     radius is reserved for real photography only. */
  --radius-photo: 14px;
  --radius-photo-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }
ul { margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* Eyebrow / label — small mono caps used as section markers, not decoration */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--magenta);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sand); }
.eyebrow.no-rule::before { display: none; }
.eyebrow.center { justify-content: center; }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.rule.dark { border-top-color: var(--line-dark); }

.section { padding: 108px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 56px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
}

/* ==========================================================================
   Buttons — rectangular, no gradients, no pills
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--plum-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--paper);
}
.btn-outline:hover { border-color: var(--paper); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }
.btn-sm { padding: 11px 20px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* Text link with animated arrow — the primary "quiet" CTA pattern used across the site */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.text-link:hover { color: var(--magenta); border-color: var(--magenta); gap: 14px; }
.text-link.on-dark { color: var(--cream); border-color: rgba(255,255,255,0.5); }
.text-link.on-dark:hover { color: var(--sand); border-color: var(--sand); }
.text-link.accent { color: var(--magenta); border-color: var(--magenta); }

/* ==========================================================================
   Navigation — translucent sticky glass bar (brand header treatment)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 23, 64, 0.1);
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(34, 18, 33, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.25s ease;
}
.site-header.is-scrolled .nav-wrap { height: 68px; }
.brand {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--plum-dark);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.brand span { color: var(--orchid); font-family: var(--font-display); font-weight: 500; transition: color 0.2s ease; }
.brand:hover span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orchid); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--plum-dark);
  cursor: pointer;
}

/* --- Desktop dropdown / mega-menu (Services, About) --- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item > a .caret { font-size: 0.6rem; transition: transform 0.2s ease; color: var(--muted); }
.nav-item:hover > a .caret, .nav-item.open > a .caret { transform: rotate(180deg); color: var(--orchid); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 340px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a.drop-link {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease, padding-left 0.18s ease;
}
.nav-dropdown a.drop-link:last-child { border-bottom: none; }
.nav-dropdown a.drop-link:hover { background: var(--magenta-tint); padding-left: 22px; }
.nav-dropdown .drop-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.nav-dropdown a.drop-link:hover .drop-label { color: var(--magenta); }
.nav-dropdown .drop-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  border-top: 1px solid rgba(59,23,64,0.1);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a.top-link {
  padding: 15px 0;
  font-weight: 500;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(59,23,64,0.08);
}
.mobile-accordion { border-bottom: 1px solid rgba(59,23,64,0.08); }
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-weight: 500;
  font-size: 0.96rem;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  cursor: pointer;
}
.mobile-accordion-trigger .caret { font-size: 0.7rem; transition: transform 0.2s ease; color: var(--muted); }
.mobile-accordion.open .mobile-accordion-trigger .caret { transform: rotate(180deg); }
.mobile-accordion-panel {
  display: none;
  flex-direction: column;
  padding: 0 0 14px 14px;
  gap: 2px;
}
.mobile-accordion.open .mobile-accordion-panel { display: flex; }
.mobile-accordion-panel a {
  padding: 11px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.mobile-accordion-panel a .drop-label { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.mobile-accordion-panel a .drop-desc { display: block; font-size: 0.8rem; color: var(--muted); }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ==========================================================================
   Hero — bold personal-brand masthead. Big photo, oversized headline, short
   copy, one CTA. Inspired by the confident simplicity of a personal-brand
   site: the photo carries the page, the words don't compete with it.
   ========================================================================== */
.hero {
  position: relative;
  background: var(--plum-dark);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 84px);
}
.hero-copy {
  padding: 64px 64px 64px max(28px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  font-weight: 700;
  margin: 26px 0 28px;
  letter-spacing: -0.02em;
  line-height: 1.03;
  max-width: 620px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero-lede {
  font-size: 1.2rem;
  color: rgba(248,245,239,0.86);
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; align-items: center; }
.hero-byline {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sand);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
  max-width: 480px;
}
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--plum-dark) 0%, rgba(42,16,48,0) 26%);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 560px;
  display: block;
  transition: transform 1.4s ease;
}
.hero-photo-wrap:hover .hero-photo { transform: scale(1.03); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 44px 24px 48px; order: 2; }
  .hero-photo { min-height: 420px; }
  .hero-photo-wrap { order: 1; }
  .hero-photo-wrap::after { background: linear-gradient(180deg, rgba(42,16,48,0) 55%, var(--plum-dark) 100%); }
  .hero-lede, .hero-byline { max-width: none; }
}

/* ==========================================================================
   Sub-page hero — bold personal-brand treatment, same confident register as
   the homepage hero: bigger type, more air, the photo reads as a real
   presence rather than a small framed thumbnail beside a text block.
   ========================================================================== */
.page-hero {
  background: var(--plum-dark);
  color: var(--cream);
  padding: 96px 0 64px;
  position: relative;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-top: 18px;
  max-width: 780px;
}
.page-hero p.lede { color: rgba(248,245,239,0.82); max-width: 560px; margin-top: 22px; font-size: 1.1rem; font-weight: 300; }

/* Portrait variant — the photo is a real editorial presence, not a small
   boxed thumbnail: bigger share of the hero, soft curve corners only,
   no decorative outline frame. */
.page-hero.with-portrait { padding-bottom: 0; }
.hero-portrait-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 0;
  align-items: end;
}
.hero-portrait-grid .portrait-copy { padding: 0 48px 72px 0; }
.hero-portrait-wrap {
  position: relative;
  align-self: end;
}
.hero-portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  min-height: 420px;
  transition: transform 0.6s ease;
  border-radius: var(--radius-photo) var(--radius-photo) 0 0;
}
.hero-portrait-wrap:hover img { transform: scale(1.03); }
@media (max-width: 860px) {
  .hero-portrait-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-portrait-wrap { max-width: 320px; margin: 0 auto; }
  .hero-portrait-grid .portrait-copy { padding: 44px 24px 0; }
}

/* Photo-led hero (Speaking) — flat duotone overlay, no heavy gradient wash */
.photo-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 18%;
  color: var(--cream);
}
.photo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,21,27,0.05) 0%, rgba(23,21,27,0.35) 55%, rgba(23,21,27,0.9) 100%);
}
.photo-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 52px;
  width: 100%;
}
.photo-hero h1 {
  color: var(--cream);
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  max-width: 720px;
}

/* ==========================================================================
   Section heads
   ========================================================================== */
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 16px; }
.section-head p.dek { margin-top: 16px; font-size: 1.05rem; color: var(--ink-soft); }

/* Editorial content block replacing rounded "pattern-block" cards */
.editorial-block {
  max-width: 760px;
  padding-left: 28px;
  border-left: 1px solid var(--ink);
}
.editorial-block p { margin-bottom: 18px; font-size: 1.08rem; color: var(--ink-soft); }
.editorial-block p:last-child { margin-bottom: 0; }
.editorial-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.4;
}
.stack-lines { margin: 26px 0; }
.stack-lines span {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

/* Two-line contrast motif (smooth vs jagged) — kept minimal */
.contrast-motif { display: flex; flex-direction: column; gap: 20px; margin: 8px 0; }
.contrast-row { display: flex; align-items: center; gap: 16px; }
.contrast-label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; width: 170px; flex-shrink: 0; color: var(--ink-soft); }
.contrast-row svg { flex: 1; height: 28px; width: 100%; }

/* ==========================================================================
   Reality of Work — human pain-point list (typographic, not cards)
   ========================================================================== */
.reality-list { display: flex; flex-direction: column; }
.reality-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.reality-item:last-child { border-bottom: 1px solid var(--line); }
.reality-item:hover { padding-left: 12px; background: rgba(195,30,108,0.025); }
.reality-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--magenta);
  padding-top: 4px;
  transition: color 0.25s ease;
}
.reality-item:hover .reality-num { color: var(--gold); }
.reality-item p {
  font-size: 1.14rem;
  color: var(--ink);
  font-weight: 400;
  max-width: 640px;
}
@media (max-width: 640px) {
  .reality-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ==========================================================================
   Three Pathways — tiered 3-column grid, equal prominence (no "featured"
   tier / no badges). Sharp corners, alternating purple/pink/mustard top
   rules distinguish each column instead of rounded cards or shadows.
   ========================================================================== */
.pathway-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.pathway-tier {
  padding: 44px 36px;
  border-left: 1px solid var(--line);
  border-top: 4px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}
.pathway-tier:first-child { border-left: none; }
.pathway-tier:hover { background: rgba(195,30,108,0.02); }
.pathway-tier.tier-accent-0 { border-top-color: var(--plum); }
.pathway-tier.tier-accent-1 { border-top-color: var(--magenta); }
.pathway-tier.tier-accent-2 { border-top-color: var(--gold); }
.pathway-tier-head { margin-bottom: 18px; }
.pathway-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--line);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.pathway-audience {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--magenta);
  font-weight: 700;
  display: block;
}
.pathway-tier.tier-accent-2 .pathway-audience { color: var(--gold); }
.pathway-understand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-top: 8px;
}
.pathway-tier h3 { font-size: 1.35rem; line-height: 1.28; margin-bottom: 14px; }
.pathway-copy { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 24px; }
.pathway-bullets { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; flex: 1; }
.pathway-bullets li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.pathway-bullets li::before {
  content: '—';
  position: absolute; left: 0; top: 0;
  color: var(--magenta);
}
.pathway-tier.tier-accent-2 .pathway-bullets li::before { color: var(--gold); }
.pathway-cta { width: 100%; text-align: center; margin-top: auto; }
@media (max-width: 900px) {
  .pathway-tiers { grid-template-columns: 1fr; }
  .pathway-tier { border-left: none; border-top-width: 4px; padding: 40px 8px; }
}

/* Typographic focus-area links (replacing card grid) */
.type-link-list { display: flex; flex-direction: column; }
.type-link-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s ease;
}
.type-link-list .type-link-row:last-child { border-bottom: 1px solid var(--line); }
.type-link-row:hover { padding-left: 10px; }
.type-link-row h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}
.type-link-row:hover h4 { color: var(--magenta); }
.type-link-row p { color: var(--ink-soft); font-size: 0.94rem; max-width: 420px; text-align: right; }
@media (max-width: 700px) {
  .type-link-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .type-link-row p { text-align: left; }
}

/* Free session banner — flat ink panel, no gradient */
.banner {
  background: var(--ink);
  padding: 52px;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
}
.banner-check { list-style: none; margin: 20px 0 28px; padding: 0; }
.banner-check li { margin-bottom: 10px; font-size: 0.98rem; }
.banner-check i { color: var(--sand); margin-right: 10px; }
.banner-right {
  border: 1px solid var(--line-dark);
  padding: 30px;
  text-align: center;
}
.banner-right .duration { font-family: var(--font-display); font-size: 2.8rem; color: var(--sand); }
@media (max-width: 800px) {
  .banner { grid-template-columns: 1fr; padding: 34px; }
}

/* Pull quote — oversized editorial serif, no box */
.pull-quote {
  text-align: center;
  padding: 92px 0;
  background: var(--charcoal);
  color: var(--cream);
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-style: italic;
  color: var(--cream);
  max-width: 860px;
  margin: 0 auto 22px;
  line-height: 1.4;
}
.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--sand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pull-quote.on-light { background: transparent; }
.pull-quote.on-light blockquote { color: var(--ink); }
.pull-quote.on-light cite { color: var(--magenta); }

/* Split section (image + text) — asymmetric ratio, sharp edges */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split.reverse .split-media { order: 2; }
.split-media:not(.photo-frame) {
  overflow: hidden;
  border-radius: var(--radius-photo);
}
.split-media img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: var(--radius-photo);
}
.split-media:not(.photo-frame):hover img { transform: scale(1.04); }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: -1; }
}

/* ==========================================================================
   Photo frame — offset gold rule behind portraits, a signature device that
   distinguishes the site's photography treatment from generic stock-in-a-card
   ========================================================================== */
.photo-frame {
  position: relative;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-photo);
  z-index: 0;
  pointer-events: none;
  transition: top 0.3s ease, left 0.3s ease, right 0.3s ease, bottom 0.3s ease;
}
.photo-frame > img,
.photo-frame > a {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-photo);
}
.photo-frame img { transition: transform 0.5s ease, filter 0.5s ease; border-radius: var(--radius-photo); }
.photo-frame:hover img { transform: scale(1.045); }
.photo-frame:hover::before { top: 10px; left: 10px; right: -10px; bottom: -10px; }
.photo-frame.reverse::before { left: -18px; right: 18px; }
.photo-frame.reverse:hover::before { left: -10px; right: 10px; }
@media (max-width: 640px) {
  .photo-frame::before { top: 12px; left: 12px; right: -12px; bottom: -12px; border-radius: var(--radius-photo-sm); }
  .photo-frame > img, .photo-frame > a, .photo-frame img { border-radius: var(--radius-photo-sm); }
}

/* Small caption chip overlapping the bottom-left corner of a photo */
.photo-tag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  z-index: 2;
  background: var(--gold);
  color: var(--plum-dark);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 9px 16px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .photo-tag { left: 16px; bottom: -12px; font-size: 0.6rem; padding: 7px 12px; }
}

/* Editorial photo strip — uneven mood-board style row, used to bring more
   real photography into pages instead of a single flat image-in-a-card */
.photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 24px;
  align-items: end;
  margin: 8px 0;
}
.photo-strip .strip-item:nth-child(2) { margin-bottom: 44px; }
.photo-strip .strip-item { overflow: hidden; border-radius: var(--radius-photo); }
.photo-strip img { width: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.4s ease; filter: grayscale(0); border-radius: var(--radius-photo); }
.photo-strip .strip-item:hover img { transform: scale(1.06); }
.photo-strip .strip-item:nth-child(1) img { aspect-ratio: 4/5; }
.photo-strip .strip-item:nth-child(2) img { aspect-ratio: 3/4; }
.photo-strip .strip-item:nth-child(3) img { aspect-ratio: 4/5; }
@media (max-width: 780px) {
  .photo-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .photo-strip .strip-item:nth-child(3) { display: none; }
  .photo-strip .strip-item:nth-child(2) { margin-bottom: 0; }
}

/* Explore links (typographic index, replaces rounded link-cards) */
.explore-index { display: flex; flex-direction: column; }
.explore-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.2s, color 0.2s;
}
.explore-index .explore-row:last-child { border-bottom: 1px solid var(--line); }
.explore-row:hover { padding-left: 10px; color: var(--magenta); }
.explore-row h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.explore-row .explore-meta { font-size: 0.88rem; color: var(--muted); flex-shrink: 0; }
@media (max-width: 640px) {
  .explore-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ==========================================================================
   About page
   ========================================================================== */
.about-copy p { margin-bottom: 20px; font-size: 1.06rem; color: var(--ink-soft); }
.about-copy .emphasis {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.22rem;
}
.fact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.fact-list li { display: flex; gap: 12px; font-size: 0.94rem; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.fact-list li:last-child { border-bottom: none; }
.fact-list b { color: var(--ink); min-width: 120px; font-weight: 700; }
.fact-panel {
  border: 1px solid var(--line);
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.fact-panel:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-item:hover { padding-left: 10px; background: rgba(195,30,108,0.02); }
.timeline-year { font-family: var(--font-mono); font-size: 0.82rem; color: var(--magenta); padding-top: 4px; transition: color 0.25s ease; }
.timeline-item:hover .timeline-year { color: var(--gold); }
.timeline-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.timeline-item p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 640px) { .timeline-item { grid-template-columns: 1fr; gap: 6px; } }

/* ==========================================================================
   Offer listings — services / tiers presented editorially (no rounded cards)
   ========================================================================== */
.offer-list { display: flex; flex-direction: column; }
.offer-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s ease;
}
.offer-row:last-child { border-bottom: 1px solid var(--line); }
.offer-row:hover { background: rgba(195,30,108,0.02); }
.offer-row.featured { background: var(--magenta-tint); margin: 0 -28px; padding: 40px 28px; border-top-color: var(--magenta); }
.offer-row.featured:hover { background: var(--magenta-tint); }
.offer-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.offer-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  border: 1px solid var(--magenta);
  padding: 4px 10px;
  margin-bottom: 10px;
}
.offer-row h3 { font-size: 1.4rem; margin: 10px 0 12px; }
.offer-row p { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 760px) {
  .offer-row { grid-template-columns: 1fr; gap: 14px; }
  .offer-row.featured { margin: 0 -20px; padding: 32px 20px; }
}

/* Tier list (Organisations) — numbered editorial rows */
.tier-list { display: flex; flex-direction: column; }
.tier {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  transition: background 0.25s ease;
}
.tier:last-child { border-bottom: 1px solid var(--line); }
.tier:hover { background: rgba(195,30,108,0.02); }
.tier-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--line);
  font-weight: 700;
  line-height: 1;
  transition: color 0.25s ease;
}
.tier:hover .tier-num { color: var(--gold); }
.tier h3 { font-size: 1.3rem; margin-bottom: 10px; }
.tier p.desc { color: var(--ink-soft); margin-bottom: 18px; font-size: 0.98rem; }
.tier ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.tier li {
  font-size: 0.94rem;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.tier li::before {
  content: '—';
  position: absolute; left: 0; top: 0;
  color: var(--magenta);
}
@media (max-width: 700px) {
  .tier { grid-template-columns: 1fr; gap: 10px; }
}

/* Placeholder / editable-future-content box */
.placeholder-box {
  border: 1px dashed rgba(23,21,27,0.35);
  padding: 30px 32px;
  position: relative;
  background: rgba(23,21,27,0.02);
}
.placeholder-box .placeholder-tag {
  position: absolute;
  top: -11px; left: 28px;
  background: var(--cream);
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.placeholder-box h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.placeholder-box p { color: var(--ink-soft); font-size: 0.92rem; }
.placeholder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.placeholder-field {
  display: flex;
  gap: 8px;
  font-size: 0.86rem;
  padding: 10px 0;
  border-top: 1px solid rgba(23,21,27,0.12);
}
.placeholder-field:last-child { }
.placeholder-field b { color: var(--ink); min-width: 150px; flex-shrink: 0; }
.placeholder-field span { color: var(--muted); font-style: italic; }

/* Evidence / stats section — restrained, editorial, one section only */
.evidence-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.evidence-stat {
  padding: 36px 24px;
  border-left: 1px solid var(--line-dark);
  text-align: center;
  transition: background 0.25s ease;
}
.evidence-stat:first-child { border-left: none; }
.evidence-stat:hover { background: rgba(248,245,239,0.04); }
.evidence-stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--sand); font-weight: 700; display: inline-block; transition: transform 0.25s ease; }
.evidence-stat:hover .num { transform: translateY(-3px); }
.evidence-stat .label { font-size: 0.82rem; color: rgba(248,245,239,0.72); margin-top: 8px; line-height: 1.4; }
.evidence-citation {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(248,245,239,0.5);
  text-align: center;
  margin-top: 22px;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  .evidence-row { grid-template-columns: 1fr 1fr; }
  .evidence-stat:nth-child(3) { border-left: none; }
}
@media (max-width: 500px) {
  .evidence-row { grid-template-columns: 1fr; }
  .evidence-stat { border-left: none; border-top: 1px solid var(--line-dark); }
  .evidence-stat:first-child { border-top: none; }
}

/* ==========================================================================
   Speaking page
   ========================================================================== */
.topics-list { display: flex; flex-direction: column; }
.topic-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
}
.topic-row:last-child { border-bottom: 1px solid var(--line-dark); }
.topic-num { font-family: var(--font-mono); color: var(--sand); font-size: 0.85rem; padding-top: 4px; }
.topic-row h3 { color: var(--cream); font-size: 1.14rem; }

.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.highlight-tile { background: var(--paper); transition: box-shadow 0.25s ease; position: relative; }
.highlight-tile:hover { box-shadow: var(--shadow-md); z-index: 2; }
.highlight-tile .thumb { height: 220px; overflow: hidden; border-radius: var(--radius-photo) var(--radius-photo) 0 0; }
.highlight-tile .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: var(--radius-photo) var(--radius-photo) 0 0; }
.highlight-tile:hover .thumb img { transform: scale(1.06); }
.highlight-tile .info { padding: 20px 22px; }
.highlight-tile .info .event-date { font-family: var(--font-mono); font-size: 0.68rem; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.05em; }
.highlight-tile .info h4 { font-size: 1rem; margin-top: 8px; color: var(--ink); font-weight: 600; }
.highlight-tile.placeholder .thumb { display: flex; align-items: center; justify-content: center; background: var(--cream); color: var(--line); font-size: 1.8rem; }

/* ==========================================================================
   Book page
   ========================================================================== */
.book-hero { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 68px; align-items: center; }
.book-cover-wrap { position: relative; display: flex; justify-content: center; }
.book-cover-wrap img {
  max-width: 340px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: var(--radius-photo);
}
.book-cover-wrap:hover img { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 32px 70px rgba(0,0,0,0.34); }
.book-subtitle-alt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
.book-meta-row { display: flex; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.book-meta-item { font-size: 0.85rem; color: var(--muted); }
.book-meta-item b { color: var(--ink); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-mono); margin-bottom: 4px; }
@media (max-width: 860px) {
  .book-hero { grid-template-columns: 1fr; text-align: center; }
  .book-cover-wrap { order: -1; margin-bottom: 20px; }
  .book-meta-row { justify-content: center; }
}

.reader-explore-list { display: flex; flex-direction: column; }
.reader-explore-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: baseline;
  transition: padding-left 0.25s ease;
}
.reader-explore-item:last-child { border-bottom: 1px solid var(--line); }
.reader-explore-item:hover { padding-left: 10px; }
.reader-explore-item .qmark { font-family: var(--font-display); font-size: 1.4rem; color: var(--magenta); flex-shrink: 0; transition: color 0.25s ease; }
.reader-explore-item:hover .qmark { color: var(--gold); }
.reader-explore-item p { font-size: 1.04rem; color: var(--ink); }

.review-placeholder {
  border: 1px dashed rgba(23,21,27,0.3);
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* ==========================================================================
   WhatsApp direct-contact panel — used wherever pricing isn't published yet
   ========================================================================== */
.whatsapp-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-panel:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.whatsapp-panel-photo { overflow: hidden; border-radius: var(--radius-photo); }
.whatsapp-panel-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-photo);
  transition: transform 0.5s ease;
}
.whatsapp-panel:hover .whatsapp-panel-photo img { transform: scale(1.04); }
.whatsapp-panel-body h3 { font-size: 1.35rem; margin: 12px 0 12px; }
.whatsapp-panel-body p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 22px; max-width: 480px; }
.whatsapp-panel-body .btn { background: #25D366; border-color: #25D366; color: #0b3d19; }
.whatsapp-panel-body .btn:hover { background: #2fe676; border-color: #2fe676; }
.whatsapp-panel-body .btn i { font-size: 1.1rem; }
.whatsapp-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .whatsapp-panel { grid-template-columns: 1fr; text-align: left; padding: 24px; gap: 20px; }
  .whatsapp-panel-photo { max-width: 160px; }
}

/* ==========================================================================
   Lodestone page
   ========================================================================== */
.lodestone-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.lodestone-field { padding: 24px 28px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); transition: background 0.25s ease; }
.lodestone-field:nth-child(2n) { border-right: none; }
.lodestone-field:hover { background: var(--magenta-tint); }
.lodestone-field .fkey { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--magenta); display: block; margin-bottom: 8px; transition: color 0.25s ease; }
.lodestone-field:hover .fkey { color: var(--gold); }
.lodestone-field .fval { color: var(--muted); font-style: italic; font-size: 0.92rem; }
@media (max-width: 700px) {
  .lodestone-fields { grid-template-columns: 1fr; }
  .lodestone-field { border-right: none !important; }
}

/* ==========================================================================
   Episodes / Resources
   ========================================================================== */
.episode-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.episode-card { background: var(--paper); display: flex; flex-direction: column; transition: box-shadow 0.25s ease; }
.episode-card:hover { box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.episode-thumb {
  aspect-ratio: 4/3;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,239,0.35);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-photo) var(--radius-photo) 0 0;
}
.episode-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-photo) var(--radius-photo) 0 0; }
.episode-thumb-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 20px;
  transition: transform 0.35s ease;
}
.episode-card:hover .episode-thumb-label { transform: scale(1.06); }
.episode-num-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--sand);
  border: 1px solid rgba(248,245,239,0.3);
  padding: 3px 9px;
}
.episode-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.episode-category { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--magenta); }
.episode-body h4 { font-size: 1.1rem; margin: 10px 0 8px; }
.episode-body p { color: var(--ink-soft); font-size: 0.9rem; flex: 1; margin-bottom: 14px; }
.episode-date { font-size: 0.78rem; color: var(--muted); }

.resource-list { display: flex; flex-direction: column; }
.resource-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 26px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.resource-row:last-child { border-bottom: 1px solid var(--line); }
.resource-row:hover { padding-left: 10px; background: rgba(195,30,108,0.02); }
.resource-type { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--magenta); }
.resource-row h4 { font-size: 1.15rem; }
.resource-row p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 6px; }
@media (max-width: 700px) {
  .resource-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ==========================================================================
   Work With Ebi — conversion hub
   ========================================================================== */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hub-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 32px;
  transition: background 0.2s;
}
.hub-cell:hover { background: var(--magenta-tint); }
.hub-cell .eyebrow { margin-bottom: 14px; }
.hub-cell h3 { font-size: 1.3rem; margin-bottom: 12px; }
.hub-cell p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 20px; }

/* ==========================================================================
   Final CTA (flat ink band)
   ========================================================================== */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.cta-band p { color: rgba(248,245,239,0.78); max-width: 620px; margin: 18px auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(248,245,239,0.68);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 14px; font-weight: 700; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sand);
  margin-bottom: 18px;
}
.footer-col a { display: block; margin-bottom: 11px; font-size: 0.88rem; color: rgba(248,245,239,0.68); }
.footer-col a:hover { color: var(--sand); }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 0;
  border: 1px solid rgba(248,245,239,0.22);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(248,245,239,0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }
.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-paper { background: var(--paper); }

/* ==========================================================================
   Scroll reveal — subtle fade/rise-in as sections enter the viewport,
   the kind of considered motion a static template dump never has
   ========================================================================== */
/* Only hide reveal targets once we know JS is running (html.js is set by an
   inline script in <head>) — if JS fails, content stays visible by default */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > * {
  animation: revealChild 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.4s; }
@keyframes revealChild {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* Cursor-follow gold dot on hoverable rows — small but human-designed touch */
.text-link, .type-link-row h4, .explore-row h4 { will-change: transform; }

/* Skip-scale image loading polish: images fade in as they finish loading */
img { transition: opacity 0.4s ease; }
img[loading] { background: var(--line); }

/* ==========================================================================
   Programme blocks — Employees / Leaders developed programmes (data-driven)
   ========================================================================== */
.programme-list { display: flex; flex-direction: column; }
.programme-block {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.programme-list .programme-block:last-child { border-bottom: 1px solid var(--line); }
.programme-block-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 14px; }
.programme-num { font-family: var(--font-mono); font-size: 0.82rem; color: var(--magenta); }
.programme-block-head h3 { font-size: 1.4rem; margin: 0; }
.programme-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 14px;
}
.programme-intro { color: var(--ink-soft); font-size: 1rem; margin-bottom: 20px; max-width: 760px; }
.programme-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.programme-grid.single { grid-template-columns: 1fr; }
.programme-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--magenta);
  display: block;
  margin-bottom: 12px;
}
.programme-outcome { border-left: 1px solid var(--line); padding-left: 24px; }
.programme-outcome p { color: var(--ink-soft); font-size: 0.96rem; }
.fact-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 24px; }
@media (max-width: 760px) {
  .programme-grid { grid-template-columns: 1fr; gap: 16px; }
  .programme-outcome { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  .fact-list.two-col { grid-template-columns: 1fr; }
}

/* Pressure-chain visual — ForLeaders "Lead Without Passing It On" */
.pressure-chain { margin: 8px 0 26px; padding: 24px; background: var(--paper); border: 1px solid var(--line); }
.pressure-chain-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.chain-node {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--cream);
}
.chain-node.accent { border-color: var(--gold); color: var(--ink); background: var(--sand-tint); }
.chain-arrow { color: var(--muted); font-size: 0.85rem; }
.pressure-chain-divider { text-align: center; margin: 14px 0; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* Culture funnel visual — ForOrganisations */
.culture-funnel { display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 520px; margin: 0 auto; }
.funnel-step {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  text-align: center;
  padding: 14px 26px;
  border: 1px solid var(--line-dark);
  width: 100%;
}
.funnel-arrow { color: var(--gold-soft); font-size: 1.1rem; }

/* Explore tags — Lodestone page */
.explore-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.explore-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 16px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ==========================================================================
   SITE-WIDE VISUAL REVISION — editorial primitives
   Big statements, colour-blocked moments, journey trackers, statement
   indexes and varied feature layouts, replacing wall-of-text paragraphs and
   uniform card grids across every page. Mustard is used sparingly as a
   surprise accent, never as the default section colour.
   ========================================================================== */

/* --- Big Statement — oversized typographic moment, several colour variants,
   used in place of an ordinary <h2> whenever a single strong sentence from
   the approved copy deserves to become a visual beat on its own --- */
.big-statement {
  padding: 96px 0;
  text-align: center;
}
.big-statement .container { max-width: 880px; }
.big-statement .statement-eyebrow {
  display: block;
  margin-bottom: 22px;
}
.big-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.big-statement p em {
  font-style: italic;
  font-weight: 500;
}
.big-statement.statement-plum { background: var(--plum-dark); color: var(--cream); }
.big-statement.statement-plum .eyebrow { color: var(--sand); }
.big-statement.statement-pink { background: var(--magenta-tint); color: var(--ink); }
.big-statement.statement-pink .eyebrow { color: var(--magenta); }
.big-statement.statement-mustard { background: var(--gold); color: var(--plum-dark); }
.big-statement.statement-mustard .eyebrow { color: var(--plum-dark); }
.big-statement.statement-mustard p { color: var(--plum-dark); }
.big-statement.statement-charcoal { background: var(--charcoal); color: var(--cream); }
.big-statement.statement-charcoal .eyebrow { color: var(--sand); }
.big-statement.statement-cream { background: var(--paper); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .big-statement { padding: 64px 0; } }

/* --- Level Transition — the three "Understand what's happening..." lines
   as one unified oversized typographic moment, not three separate cards --- */
.level-transition {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.level-line {
  padding: 20px 28px;
  border-left: 1px solid var(--line-dark);
  text-align: center;
}
.level-line:first-child { border-left: none; }
.level-line .level-audience {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
  display: block;
  margin-bottom: 14px;
}
.level-line p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 760px) {
  .level-transition { grid-template-columns: 1fr; gap: 28px; }
  .level-line { border-left: none; border-top: 1px solid var(--line-dark); padding: 24px 8px 0; }
  .level-line:first-child { border-top: none; padding-top: 0; }
}

/* --- Chain Track — horizontal step chain with arrows, e.g.
   "Healthier People → Healthier Leadership → Healthier Organisations" --- */
.chain-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
}
.chain-track .chain-step {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
}
.chain-track .chain-track-arrow {
  font-size: 1.3rem;
  color: var(--gold);
}
.chain-track.on-dark .chain-step { color: var(--cream); }
@media (max-width: 640px) {
  .chain-track { flex-direction: column; gap: 8px; }
  .chain-track .chain-track-arrow { transform: rotate(90deg); }
}

/* --- Pathway Feature — full-width alternating editorial rows for the
   three homepage pathways, replacing the equal three-card grid. Each
   pathway gets a genuinely different treatment (split, reverse split,
   full colour block) rather than a repeated card shape. --- */
.pathway-feature {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.pathway-feature:last-child { border-bottom: 1px solid var(--line); }
.pathway-feature .pf-marker {
  position: sticky;
  top: 100px;
}
.pathway-feature .pf-num {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  display: block;
}
.pathway-feature .pf-audience {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 14px;
  display: block;
}
.pathway-feature.accent-0 .pf-num { color: var(--plum); }
.pathway-feature.accent-0 .pf-audience { color: var(--plum); }
.pathway-feature.accent-1 .pf-num { color: var(--magenta-tint); }
.pathway-feature.accent-1 .pf-audience { color: var(--magenta); }
.pathway-feature.accent-2 .pf-num { color: var(--gold-soft); }
.pathway-feature.accent-2 .pf-audience { color: var(--gold); }
.pathway-feature .pf-understand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 200px;
}
.pathway-feature .pf-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 16px;
  max-width: 620px;
}
.pathway-feature .pf-body p.pf-copy { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 26px; max-width: 620px; }
.pathway-feature .pf-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  max-width: 640px;
}
.pathway-feature .pf-bullets li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.pathway-feature .pf-bullets li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--magenta); }
.pathway-feature.accent-2 .pf-bullets li::before { color: var(--gold); }
/* Organisations variant — full colour block, the mustard "surprise" */
.pathway-feature.block-mustard {
  background: var(--gold);
  margin: 0 -28px;
  padding: 64px 28px;
  border-top: none;
}
.pathway-feature.block-mustard .pf-num { color: rgba(42,16,48,0.28); }
.pathway-feature.block-mustard .pf-audience,
.pathway-feature.block-mustard .pf-understand,
.pathway-feature.block-mustard h3,
.pathway-feature.block-mustard .pf-copy,
.pathway-feature.block-mustard .pf-bullets li { color: var(--plum-dark); }
.pathway-feature.block-mustard .pf-bullets li::before { color: var(--plum-dark); }
.pathway-feature.block-mustard .btn-outline-dark { border-color: var(--plum-dark); color: var(--plum-dark); }
.pathway-feature.block-mustard .btn-outline-dark:hover { background: var(--plum-dark); color: var(--cream); }
@media (max-width: 860px) {
  .pathway-feature { grid-template-columns: 1fr; gap: 20px; padding: 48px 0; }
  .pathway-feature .pf-marker { position: static; display: flex; align-items: baseline; gap: 18px; }
  .pathway-feature .pf-understand { max-width: none; }
  .pathway-feature .pf-bullets { grid-template-columns: 1fr; }
  .pathway-feature.block-mustard { margin: 0 -20px; padding: 44px 20px; }
}

/* --- Journey Track — 5-step horizontal→vertical journey visual
   (Employees page: "Something isn't right" → ... → "Make your next move") --- */
.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
}
.journey-step {
  padding: 30px 18px;
  text-align: center;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease;
}
.journey-step:first-child { border-left: none; }
.journey-step:hover { background: var(--magenta-tint); }
.journey-step .js-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
}
.journey-step p {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.journey-step.js-final { background: var(--plum-dark); }
.journey-step.js-final p, .journey-step.js-final .js-num { color: var(--cream); }
.journey-step.js-final:hover { background: var(--plum); }
@media (max-width: 860px) {
  .journey-track { grid-template-columns: 1fr; }
  .journey-step { border-left: none; border-top: 1px solid var(--line); flex-direction: row; justify-content: flex-start; text-align: left; padding: 20px 18px; }
  .journey-step:first-child { border-top: none; }
  .journey-step .js-num { flex-shrink: 0; }
}

/* --- Statement Index — large typographic word-list (Lodestone) replacing
   generic tag pills; words separated by a thin rule, not boxed --- */
.statement-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.statement-index .si-word {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  padding: 10px 26px;
  position: relative;
}
.statement-index .si-word:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -4px;
  color: var(--gold);
}
@media (max-width: 700px) {
  .statement-index .si-word { font-size: 1.3rem; padding: 8px 16px; }
}

/* --- Dimension Strip — Leaders' six areas (self-awareness, pressure,
   power, communication, accountability, trust) as a typographic index,
   not icon cards --- */
.dimension-strip { display: flex; flex-direction: column; }
.dimension-row {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
  transition: padding-left 0.25s ease;
}
.dimension-strip .dimension-row:last-child { border-bottom: 1px solid var(--line-dark); }
.dimension-row:hover { padding-left: 14px; background: rgba(198,149,47,0.06); }
.dimension-row .dim-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--sand); }
.dimension-row h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.dimension-row p { color: rgba(248,245,239,0.72); font-size: 0.95rem; margin: 0; }
@media (max-width: 700px) {
  .dimension-row { grid-template-columns: 1fr; gap: 6px; }
}

/* --- Org Tier Feature variants — four DISTINCT visual treatments for
   Lunch & Learn / Quarterly Workshops / Executive Coaching Pods / Annual
   Partnerships, replacing the previously-identical .tier rows --- */
.org-tier-block { border-top: 1px solid var(--line); padding: 56px 0; }
.org-tier-block:last-child { border-bottom: 1px solid var(--line); }

/* Tier 1 — Lunch & Learn: light, airy chip row (checklist feel) */
.tier-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tier-chip { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-soft); border: 1px solid var(--line); padding: 7px 14px; }

/* Tier 2 — Quarterly Workshops: mustard colour-block quote panel */
.org-tier-block.tier-mustard { background: var(--gold); margin: 0 -28px; padding: 56px 28px; }
.org-tier-block.tier-mustard h3, .org-tier-block.tier-mustard p, .org-tier-block.tier-mustard .tier-num-lg { color: var(--plum-dark); }
.org-tier-block.tier-mustard .fact-list li { border-bottom-color: rgba(42,16,48,0.18); color: var(--plum-dark); }

/* Tier 3 — Executive Coaching Pods: big number + two-column fact list */
.tier-num-lg { font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; color: var(--line); line-height: 1; display: block; margin-bottom: 8px; }

/* Tier 4 — Annual Partnerships: full charcoal flagship feature */
.org-tier-block.tier-flagship { background: var(--charcoal); color: var(--cream); margin: 0 -28px; padding: 64px 28px; }
.org-tier-block.tier-flagship h3, .org-tier-block.tier-flagship p { color: var(--cream); }
.org-tier-block.tier-flagship .fact-list li { color: rgba(248,245,239,0.82); border-bottom-color: rgba(248,245,239,0.16); }
.org-tier-block.tier-flagship .eyebrow { color: var(--sand); }
@media (max-width: 700px) {
  .org-tier-block.tier-mustard, .org-tier-block.tier-flagship { margin: 0 -20px; padding: 44px 20px; }
}

/* --- Image Bleed — full-width oversized photo band, crop extending beyond
   the standard grid, for one asymmetric visual pause per page instead of
   every image sitting inside a split or a frame (brief §8) --- */
.image-bleed {
  position: relative;
  width: 100%;
  height: clamp(340px, 48vw, 580px);
  overflow: hidden;
}
.image-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05);
}
.image-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,16,48,0) 45%, rgba(42,16,48,0.82) 100%);
}
.image-bleed-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 28px 46px;
  text-align: center;
}
.image-bleed-caption .eyebrow { justify-content: center; margin-bottom: 14px; }
.image-bleed-caption p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}
@media (max-width: 640px) { .image-bleed { height: 300px; } }

/* --- Hub Path Row — large asymmetric primary rows (Work With Ebi), paired
   with a smaller compact grid below, replacing six identical cells --- */
.hub-path-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.hub-path-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.hub-path-row:hover { padding-left: 14px; background: var(--magenta-tint); }
.hub-path-row .hp-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--line); transition: color 0.25s ease; }
.hub-path-row:hover .hp-num { color: var(--gold); }
.hub-path-row .hp-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.hub-path-row .hp-body p { color: var(--ink-soft); font-size: 0.96rem; max-width: 460px; }
.hub-path-row .text-link { flex-shrink: 0; }
@media (max-width: 700px) {
  .hub-path-row { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
}

.hub-compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.hub-compact-cell { background: var(--paper); padding: 30px 26px; transition: background 0.2s ease; }
.hub-compact-cell:hover { background: var(--sand-tint); }
.hub-compact-cell .eyebrow { margin-bottom: 12px; }
.hub-compact-cell h4 { font-size: 1.02rem; margin-bottom: 8px; }
.hub-compact-cell p { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 14px; }
@media (max-width: 760px) { .hub-compact-grid { grid-template-columns: 1fr; } }

/* --- Reel — Resources conversations: one featured item + a compact list,
   replacing a row of identical episode cards --- */
.reel-featured { padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 4px; display: flex; align-items: baseline; gap: 20px; }
.reel-featured .reel-tag-lg { font-family: var(--font-mono); font-size: 0.7rem; color: var(--sand); text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }
.reel-featured h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.reel-list { display: flex; flex-direction: column; }
.reel-row { display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding-left 0.25s ease; }
.reel-row:hover { padding-left: 10px; }
.reel-row .reel-tag { font-family: var(--font-mono); font-size: 0.68rem; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.05em; }
.reel-row h4 { font-size: 1.04rem; margin-bottom: 4px; }
.reel-row p { color: var(--ink-soft); font-size: 0.86rem; }
@media (max-width: 640px) {
  .reel-row { grid-template-columns: 1fr; gap: 4px; }
  .reel-featured { flex-direction: column; gap: 8px; }
}

/* --- Fact panel colour tints — differentiate twin panels instead of
   repeating an identical bordered box side by side --- */
.fact-panel.tint-gold { background: var(--sand-tint); border-color: var(--gold); }
.fact-panel.tint-plum { background: var(--magenta-tint); border-color: var(--magenta); }

/* --- Accordion — for deeper optional detail, keeping pages scannable
   (used for e.g. full topic lists inside programme blocks) --- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-align: left;
}
.accordion-trigger .acc-caret { font-size: 0.72rem; color: var(--magenta); transition: transform 0.25s ease; flex-shrink: 0; }
.accordion-item.open .accordion-trigger .acc-caret { transform: rotate(180deg); }
.accordion-panel { display: none; padding: 0 0 24px; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel .fact-list { padding-top: 4px; }
