/*
Theme Name: Sabine Hutchison
Theme URI: https://www.seuss.plus
Author: Gina Dunn / Seuss+
Author URI: https://www.seuss.plus
Description: Personal thought leadership site for Sabine Hutchison, Co-CEO and Co-Founder of Seuss+. Writing and speaking on leadership accountability, vendor governance, and clinical partnership integrity. Built on the Seuss+ Thought Leader Kit (block theme, FSE).
Version: 1.0.8
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: sabine-hutchison
Tags: block-theme, blog, portfolio, editor-style, full-site-editing
*/

/* ============================================================
   TOKENS — palette + typography locked in Step 2 + 3
   ============================================================ */
:root {
  --bg: #F6F1E7;
  --surface: #FFFFFF;
  --text: #14302D;
  --text-muted: #5A6763;
  --primary: #009D93;
  --primary-deep: #006E66;
  --secondary: #C9982B;
  --secondary-dark: #8E6B1E;
  --accent: #D9A842;
  --accent-hover: #E8BB5B;
  --accent-light: #F2DEB0;
  --neutral: #D9D0BE;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --site-max: 1200px;
  --article-max: 740px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

p { margin: 0; }
/* p color inherits from parent — don't override globally so dark-bg sections
   (thesis, seuss-block, methodology, topics, site-footer) inherit their
   light text color to children correctly. */
a { color: var(--primary-deep); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.container { max-width: var(--site-max); margin: 0 auto; padding: 0 48px; }
.article-container { max-width: var(--article-max); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 18px;
}
.eyebrow-light {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  color: var(--primary-deep);
  padding: 14px 0;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  border-bottom: 1px solid var(--primary-deep);
  font-family: var(--font-sans);
}

.btn-outline-light {
  display: inline-block;
  color: var(--bg);
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-sans);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.06); }

/* Photo utilities */
.photo {
  background-color: var(--neutral);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 157, 147, 0.22) 0%, transparent 40%, transparent 60%, rgba(217, 168, 66, 0.28) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--neutral);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  max-width: var(--site-max);
  margin: 0 auto;
}
.site-brand a {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.site-menu { display: flex; gap: 32px; font-size: 14px; }
.site-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.site-menu a:hover, .site-menu a.active { color: var(--primary-deep); }
.site-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-menu a:hover::after, .site-menu a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent);
  color: #1a1a1a;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { padding: 80px 0 90px; background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 72px; align-items: center; }
.hero h1 { font-size: 60px; line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--primary-deep); font-weight: 400; }
.hero .lede { font-size: 19px; line-height: 1.55; color: var(--text-muted); max-width: 540px; margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-photo { min-height: 480px; border-radius: 6px; box-shadow: 28px 28px 0 rgba(201, 152, 43, 0.32); }
.photo-hero { background-image: url('assets/img/sabine-hero.jpg'); background-position: center 20%; }
.photo-about-circle { background-image: url('assets/img/sabine-about-circle.jpg'); }

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.credibility {
  background: var(--surface);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
  padding: 40px 0;
}
.credibility-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center; }
.credibility-item { text-align: center; padding: 0 8px; }
.credibility-item .val {
  font-family: var(--font-serif); font-weight: 500; font-size: 28px;
  line-height: 1; color: var(--primary-deep);
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.credibility-item .lbl {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); line-height: 1.3;
}

/* ============================================================
   KEY TAKEAWAYS (home + about — numbered editorial cards)
   ============================================================ */
.takeaways { padding: 90px 0 40px; }
.takeaways-header { text-align: center; margin-bottom: 48px; }
.takeaways-header .eyebrow { color: var(--primary-deep); display: inline-block; }
.takeaways-header h2 { font-size: 32px; letter-spacing: -0.015em; }
.takeaways-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.takeaway-card {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 32px 26px 30px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.takeaway-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.takeaway-num {
  font-family: var(--font-serif); font-weight: 500; font-size: 32px;
  color: var(--accent); line-height: 1; margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.takeaway-card p {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.5;
  color: var(--text); font-weight: 500;
  letter-spacing: 0;
}

/* ============================================================
   FOUNDATION POV / THESIS (green block 1)
   ============================================================ */
.thesis {
  background: var(--primary-deep);
  color: var(--bg);
  padding: 110px 0;
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.thesis::before {
  content: "'";
  position: absolute; top: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 140px; color: var(--accent);
  opacity: 0.7; line-height: 1;
}
.thesis-inner { text-align: center; padding-top: 80px; }
.thesis blockquote {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 44px; font-style: italic; line-height: 1.2;
  color: var(--bg); max-width: 920px; margin: 0 auto 36px;
  letter-spacing: -0.015em;
}
.thesis cite {
  font-style: normal; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.thesis-body {
  max-width: 720px; margin: 44px auto 0;
  font-size: 17px; line-height: 1.7;
  color: #f0e8cc;
}

/* ============================================================
   FOUR PATTERNS (POV cards)
   ============================================================ */
.patterns { padding: 100px 0; background: var(--bg); }
.patterns-header { margin-bottom: 52px; max-width: 820px; }
.patterns-header .eyebrow { color: var(--primary-deep); }
.patterns-header h2 { font-size: 40px; letter-spacing: -0.02em; margin-bottom: 12px; }
.patterns-header p { font-size: 18px; color: var(--text-muted); max-width: 620px; }
.patterns-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pattern-card {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 40px 38px 36px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pattern-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.pattern-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary-dark); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.pattern-label .sep { width: 24px; height: 1px; background: var(--secondary-dark); display: inline-block; }
.pattern-card h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 26px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pattern-card > p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.pattern-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; line-height: 1.5;
  color: var(--primary-deep);
  padding: 16px 0 16px 20px;
  border-left: 3px solid var(--primary);
  margin-bottom: 22px;
}
.pattern-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--secondary-dark); text-decoration: none;
  border-bottom: 1px solid var(--secondary-dark); padding-bottom: 2px;
}

/* ============================================================
   DATA CARDS
   ============================================================ */
.data-cards { padding: 90px 0; background: var(--surface); border-top: 1px solid var(--neutral); }
.data-cards-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 40px;
}
.data-cards-header h2 { font-size: 32px; }
.data-cards-header a {
  font-size: 14px; color: var(--primary-deep);
  text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px;
}
.data-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.data-card {
  background: var(--bg);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 36px 32px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.data-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.data-card { padding: 40px 34px; }
.data-card .stat {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 54px; line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-style: normal;
}
.data-card:nth-child(1) .stat { color: var(--primary-deep); }    /* deep teal */
.data-card:nth-child(2) .stat { color: var(--secondary); }       /* Seuss goldenrod */
.data-card:nth-child(3) .stat { color: var(--primary); }         /* caribbean turquoise */
.data-card p { font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.data-card .source {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.04em; font-style: italic;
}
.data-card .source a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--text-muted);
  padding-bottom: 1px;
}
.data-card .source a:hover { color: var(--primary-deep); border-bottom-color: var(--primary-deep); }

/* ============================================================
   MEDIA HIGHLIGHT REEL
   ============================================================ */
.highlight-reel { padding: 90px 0; background: var(--bg); border-top: 1px solid var(--neutral); }
.highlight-reel-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 44px;
}
.highlight-reel-header h2 { font-size: 36px; }
.highlight-reel-header a {
  font-size: 14px; font-weight: 500;
  color: var(--primary-deep); text-decoration: none;
  border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px;
}
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.reel-card {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.reel-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.06); }
.reel-image {
  height: 140px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reel-card:hover .reel-image { transform: scale(1.05); }
.reel-card:nth-child(2) .reel-image { background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%); }
.reel-card:nth-child(3) .reel-image { background: linear-gradient(135deg, var(--accent) 0%, var(--secondary-dark) 100%); }
.reel-card:nth-child(4) .reel-image { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.reel-type {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  padding: 4px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text);
}
.play-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-deep); font-size: 14px;
}
.reel-body { padding: 18px 20px 22px; }
.reel-outlet {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary-deep); margin-bottom: 8px;
}
.reel-card h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 17px; line-height: 1.3;
  margin-bottom: 6px;
}
.reel-card .meta { font-size: 11px; color: var(--text-muted); }

.speaking-strip {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 32px 36px;
}
.speaking-strip-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 24px;
}
.speaking-strip-header h3 { font-size: 22px; }
.speaking-strip-header a {
  font-size: 13px; color: var(--primary-deep);
  text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px;
}
.speaking-list { list-style: none; padding: 0; margin: 0; }
.speaking-list li {
  display: grid; grid-template-columns: 160px 1fr auto;
  gap: 24px; padding: 16px 0;
  border-top: 1px solid var(--neutral);
  align-items: center;
}
.speaking-list li:first-child { border-top: none; }
.speaking-list .event {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 16px;
}
.speaking-list .topic { font-size: 14px; color: var(--text-muted); }
.speaking-list .date {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   PERSPECTIVES (home recent posts)
   ============================================================ */
.perspectives { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--neutral); }
.perspectives-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 48px;
}
.perspectives-header h2 { font-size: 36px; }
.perspectives-header a {
  font-size: 14px; color: var(--primary-deep);
  text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px;
}
.perspectives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.perspective-card {
  background: var(--bg);
  border: 1px solid var(--neutral);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.perspective-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.perspective-image {
  height: 200px;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.perspective-card:hover .perspective-image { transform: scale(1.05); }
.perspective-body { padding: 26px 28px 32px; }
.perspective-cat {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-deep); margin-bottom: 12px;
}
.perspective-card h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; line-height: 1.25; margin-bottom: 12px;
}
.perspective-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-bottom: 14px; }
.perspective-card .meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }

/* ============================================================
   ABOUT STRIP (home)
   ============================================================ */
.about-strip {
  padding: 80px 0; background: var(--bg);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
}
.about-strip-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 56px; align-items: center;
}
.about-photo {
  width: 260px; height: 260px; border-radius: 50%;
  flex-shrink: 0; position: relative;
  box-shadow: -36px -26px 0 8px rgba(0, 157, 147, 0.35);
}
.about-photo::after { border-radius: 50%; }
.about-strip h2 { font-size: 32px; margin-bottom: 18px; }
.about-strip p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; max-width: 680px; }
.about-strip a {
  color: var(--primary-deep); font-weight: 500;
  border-bottom: 1px solid var(--primary-deep);
  text-decoration: none; padding-bottom: 2px;
}

/* ============================================================
   SEUSS+ / VRMM (green block 2)
   ============================================================ */
.seuss-block { background: var(--primary-deep); color: var(--bg); padding: 90px 0; }
.seuss-block-header { text-align: center; margin-bottom: 48px; }
.seuss-logo { height: 56px; width: auto; display: block; margin: 0 auto 28px; }
.seuss-block h2 { font-size: 34px; color: var(--bg); margin-bottom: 16px; }
.seuss-block-sub {
  font-size: 16px; color: #f0e8cc;
  max-width: 680px; margin: 0 auto; line-height: 1.55;
}
.vrmm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.vrmm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 26px 30px; border-radius: 8px;
}
.vrmm-num {
  font-family: var(--font-serif); font-size: 24px; font-weight: 500;
  color: var(--accent); margin-bottom: 14px; line-height: 1;
}
.vrmm-card h3 {
  font-family: var(--font-serif); font-size: 20px;
  color: var(--bg); margin-bottom: 10px; font-weight: 500;
}
.vrmm-card p { font-size: 13px; line-height: 1.5; color: #f0e8cc; }
.seuss-block-cta { text-align: center; }

/* ============================================================
   BOOK SABINE (3-path CTA)
   ============================================================ */
.book-cta { padding: 100px 0; background: var(--bg); }
.book-cta-header { text-align: center; margin-bottom: 56px; }
.book-cta h2 { font-size: 40px; margin-bottom: 16px; }
.book-cta .sub { font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.book-card {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 40px 32px 36px; text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.book-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.book-icon {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border: 1.5px solid var(--primary-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-deep);
  transition: background 0.15s, color 0.15s;
}
.book-icon svg { width: 28px; height: 28px; }
.book-card:hover .book-icon { background: var(--primary-deep); color: var(--bg); }
.book-card h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 10px; }
.book-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-bottom: 22px; }
.book-card .btn-secondary { padding: 10px 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--neutral); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: 36px; margin-bottom: 14px; }
.faq-header p { font-size: 16px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--neutral); }
.faq-item:last-child { border-bottom: 1px solid var(--neutral); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 0;
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--text); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.005em; transition: color 0.15s;
}
.faq-question:hover { color: var(--primary-deep); }
.faq-question .plus {
  font-family: var(--font-sans); font-size: 24px;
  color: var(--primary-deep); font-weight: 400;
  transition: transform 0.2s; flex-shrink: 0; margin-left: 20px;
}
.faq-item[open] .faq-question .plus { transform: rotate(45deg); }
.faq-answer { font-size: 16px; line-height: 1.7; color: var(--text); padding: 0 0 28px; max-width: 780px; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 0; background: var(--accent-light);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
}
.newsletter-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-size: 32px; margin-bottom: 12px; }
.newsletter p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px; max-width: 540px; margin: 0 auto;
}
.newsletter-form input {
  padding: 14px 18px; border: 1px solid var(--neutral);
  border-radius: 4px; font-family: var(--font-sans);
  font-size: 15px; background: var(--surface); color: var(--text);
}
.newsletter-form input:focus { outline: 2px solid var(--primary); outline-offset: -2px; }
.newsletter-form button {
  padding: 14px 26px; border: none;
  background: var(--primary-deep); color: var(--bg);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 14.5px; border-radius: 4px; cursor: pointer;
}
.newsletter-form button:hover { background: var(--primary); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(246, 241, 231, 0.88);
  padding: 72px 0 36px;
}
.site-footer a { color: rgba(246, 241, 231, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
  font-family: var(--font-serif); font-size: 24px;
  color: var(--bg); margin-bottom: 10px; font-weight: 600;
}
.footer-brand .role {
  font-size: 13px; color: rgba(246, 241, 231, 0.75);
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.55;
  color: rgba(246, 241, 231, 0.85);
  margin-bottom: 18px; max-width: 340px;
}
.footer-also {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.75;
}
.footer-also a { color: var(--accent); border-bottom: 1px solid transparent; }
.footer-also a:hover { border-bottom-color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; font-size: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(246, 241, 231, 0.72);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: rgba(246, 241, 231, 0.72); margin-left: 20px; }

/* ============================================================
   ABOUT PAGE (hero, bio, belief, deep-pov, methodology, closing)
   ============================================================ */
.breadcrumbs { padding: 20px 0 0; }
.breadcrumbs ol { list-style: none; display: flex; gap: 10px; font-size: 13px; color: var(--text-muted); padding: 0; margin: 0; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; border-bottom: 1px dotted var(--text-muted); }

.page-hero { padding: 56px 0 72px; }
.page-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.page-hero h1 { font-size: 54px; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--primary-deep); font-weight: 400; }
.page-hero .lede { font-size: 18px; line-height: 1.55; color: var(--text-muted); max-width: 540px; }
.page-hero-photo { min-height: 460px; border-radius: 6px; box-shadow: -28px 28px 0 rgba(0, 157, 147, 0.32); }
.photo-about-hero { background-image: url('assets/img/sabine-about-hero.jpg'); background-position: center 30%; }

.bio { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral); }
.bio-grid { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; }
.bio-meta { position: sticky; top: 100px; }
.bio-meta .label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.bio-meta h3 { font-size: 24px; margin-bottom: 8px; color: var(--text); }
.bio-meta p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.55; }
.bio-meta ul { list-style: none; padding: 0; margin: 0; }
.bio-meta ul li { padding: 10px 0; border-top: 1px solid var(--neutral); font-size: 13px; }
.bio-meta ul li strong { display: block; color: var(--text-muted); font-weight: 500; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.bio-body h2 { font-size: 30px; margin-bottom: 20px; margin-top: 36px; }
.bio-body h2:first-child { margin-top: 0; }
.bio-body p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; max-width: 680px; }
.bio-body p:first-of-type { font-size: 20px; color: var(--primary-deep); font-family: var(--font-serif); font-style: italic; font-weight: 400; line-height: 1.5; }

.belief { padding: 90px 0; background: var(--bg); border-top: 1px solid var(--neutral); }
.belief-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.belief .eyebrow { color: var(--primary-deep); display: inline-block; }
.belief h2 { font-size: 40px; letter-spacing: -0.02em; margin-bottom: 32px; }
.belief blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.35;
  color: var(--primary-deep); margin: 0 0 28px;
  padding: 24px 0; border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral);
  letter-spacing: -0.01em;
}
.belief-body p { font-size: 17px; line-height: 1.7; margin-bottom: 18px; text-align: left; }

.perspectives-deep { padding: 90px 0; background: var(--surface); border-top: 1px solid var(--neutral); }
.perspectives-deep-header { text-align: center; margin: 0 auto 56px; max-width: 680px; }
.perspectives-deep-header .eyebrow { color: var(--primary-deep); display: inline-block; }
.perspectives-deep-header h2 { font-size: 36px; letter-spacing: -0.02em; margin-bottom: 14px; }
.perspectives-deep-header p { font-size: 17px; color: var(--text-muted); }
.deep-pov {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 48px; padding: 48px 0;
  border-top: 1px solid var(--neutral); align-items: start;
}
.deep-pov:last-of-type { border-bottom: 1px solid var(--neutral); }
.deep-pov-num {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 60px; color: var(--accent);
  line-height: 1; letter-spacing: -0.03em;
}
.deep-pov-body h3 {
  font-family: var(--font-serif); font-size: 28px;
  font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.deep-pov-body .pull {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: var(--primary-deep);
  padding: 14px 0 14px 22px;
  border-left: 3px solid var(--primary);
  margin-bottom: 20px;
}
.deep-pov-body p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; max-width: 720px; }
.deep-pov-take { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--neutral); }
.deep-pov-take .label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--secondary-dark); margin-bottom: 10px; }
.deep-pov-take ul { list-style: none; padding: 0; margin: 0; }
.deep-pov-take li { font-size: 14px; padding: 4px 0 4px 20px; position: relative; line-height: 1.5; }
.deep-pov-take li::before { content: '—'; position: absolute; left: 0; color: var(--secondary-dark); }
.deep-pov-link {
  display: inline-block; margin-top: 20px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--secondary-dark); text-decoration: none;
  border-bottom: 1px solid var(--secondary-dark); padding-bottom: 2px;
}

.methodology { background: var(--primary-deep); color: var(--bg); padding: 90px 0; }
.methodology h2 { color: var(--bg); font-size: 30px; margin-bottom: 14px; text-align: center; }
.methodology-header { text-align: center; margin-bottom: 44px; }
.methodology-header p { color: #f0e8cc; max-width: 660px; margin: 0 auto; font-size: 16px; }
.methodology .eyebrow { color: var(--accent); text-align: center; display: block; margin-bottom: 16px; }
.methodology-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.method-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  padding: 26px; border-radius: 8px;
}
.method-card .num { font-family: var(--font-serif); font-size: 22px; color: var(--accent); margin-bottom: 12px; }
.method-card h3 { color: var(--bg); font-size: 19px; margin-bottom: 8px; }
.method-card p { color: #f0e8cc; font-size: 13px; line-height: 1.55; }

.closing-cta { background: var(--accent-light); padding: 72px 0; text-align: center; border-top: 1px solid var(--neutral); }
.closing-cta h2 { font-size: 32px; margin-bottom: 16px; }
.closing-cta p { color: var(--text-muted); max-width: 560px; margin: 0 auto 28px; font-size: 16px; }

/* ============================================================
   MEDIA PAGE
   ============================================================ */
.speaker-hero { padding: 48px 0 72px; }
.speaker-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.speaker-hero h1 { font-size: 52px; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 22px; }
.speaker-hero h1 em { font-style: italic; color: var(--primary-deep); font-weight: 400; }
.speaker-hero .lede { font-size: 17px; line-height: 1.55; color: var(--text-muted); max-width: 520px; margin-bottom: 28px; }
.speaker-hero-photo { min-height: 440px; border-radius: 6px; box-shadow: 28px 28px 0 rgba(201, 152, 43, 0.32); }
.photo-speaker { background-image: url('assets/img/sabine-speaker.jpg'); background-position: center 15%; }

.why-cards { padding: 70px 0; background: var(--surface); border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral); }
.why-cards-header { text-align: center; margin-bottom: 44px; }
.why-cards-header h2 { font-size: 30px; margin-bottom: 12px; }
.why-cards-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--bg); border: 1px solid var(--neutral);
  border-radius: 8px; padding: 32px 28px 34px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.06); }
.why-card .num { font-family: var(--font-serif); font-size: 22px; color: var(--primary-deep); margin-bottom: 14px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

.quote-grid-section { padding: 80px 0; }
.quote-grid-header { text-align: center; margin-bottom: 44px; }
.quote-grid-header h2 { font-size: 32px; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.quote-card {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 32px 32px 28px;
}
.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 22px; font-style: italic; line-height: 1.35;
  margin: 0 0 16px; letter-spacing: -0.005em;
}
.quote-card cite { font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

.topics { padding: 80px 0; background: var(--primary-deep); color: var(--bg); }
.topics h2 { color: var(--bg); font-size: 32px; text-align: center; margin-bottom: 14px; }
.topics .eyebrow { color: var(--accent); text-align: center; display: block; margin-bottom: 16px; }
.topics > .container > p { color: #f0e8cc; text-align: center; max-width: 620px; margin: 0 auto 44px; font-size: 16px; }
.topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.topic-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px 28px; border-radius: 8px;
}
.topic-card .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.topic-card h3 { color: var(--bg); font-size: 20px; margin-bottom: 8px; }
.topic-card p { color: #f0e8cc; font-size: 14px; line-height: 1.55; }

.appearances { padding: 80px 0; }
.appearances h2 { font-size: 32px; margin-bottom: 36px; }
.app-list { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; margin: 0; }
.app-list li {
  display: grid; grid-template-columns: 110px 140px 1fr auto;
  gap: 24px; padding: 20px 0;
  border-top: 1px solid var(--neutral); align-items: center;
  font-size: 14px; list-style: none;
}
.app-list li:last-child { border-bottom: 1px solid var(--neutral); }
.app-type { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-deep); }
.app-outlet { font-family: var(--font-serif); font-size: 15px; font-weight: 500; }
.app-title { color: var(--text); }
.app-date { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.press-resources { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral); }
.press-resources-header { text-align: center; margin-bottom: 44px; }
.press-resources-header h2 { font-size: 30px; margin-bottom: 10px; }
.press-resources-header p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 15px; }
.downloads-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.download-card {
  background: var(--bg); border: 1px solid var(--neutral);
  border-radius: 8px; padding: 28px 22px 26px; text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.download-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.download-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary-deep); }
.download-icon svg { width: 20px; height: 20px; }
.download-card h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.download-card .meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 14px; }
.download-card a { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-deep); text-decoration: none; border-bottom: 1px solid var(--primary-deep); padding-bottom: 1px; }

.media-contact { padding: 72px 0; background: var(--bg); border-bottom: 1px solid var(--neutral); }
.media-contact-grid { display: grid; grid-template-columns: 120px 1fr auto; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; }
.media-contact-photo {
  width: 110px; height: 110px; border-radius: 50%;
  background-image: url('assets/img/gina-contact.jpg');
  background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
  box-shadow: -18px -14px 0 6px rgba(0, 157, 147, 0.18);
}
.media-contact-photo::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,157,147,0.08) 0%, transparent 50%, rgba(217,168,66,0.14) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}
.media-contact-info .label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 8px; }
.media-contact-info h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.media-contact-info .role { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 10px; }
.media-contact-info p { font-size: 14px; max-width: 440px; line-height: 1.55; }
.media-contact-cta { text-align: right; }
.email-link { font-family: var(--font-serif); font-size: 18px; color: var(--primary-deep); text-decoration: none; border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px; }

.booking { background: var(--accent-light); padding: 80px 0; border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.booking h2 { font-size: 32px; margin-bottom: 14px; }
.booking p { margin-bottom: 16px; font-size: 16px; line-height: 1.6; max-width: 480px; }
.booking-form { background: var(--surface); padding: 32px 32px 28px; border-radius: 8px; border: 1px solid var(--neutral); }
.booking-form .field { margin-bottom: 16px; }
.booking-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--neutral);
  border-radius: 4px; font-family: var(--font-sans); font-size: 14px;
  background: var(--bg); color: var(--text);
}
.booking-form textarea { resize: vertical; min-height: 100px; }
.booking-form button {
  width: 100%; padding: 14px; background: var(--accent); color: #1a1a1a;
  border: none; border-radius: 4px; font-weight: 600; cursor: pointer;
  font-family: var(--font-sans); font-size: 14.5px;
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-hero { padding: 48px 0 56px; }
.insights-hero h1 { font-size: 56px; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px; max-width: 900px; }
.insights-hero p { font-size: 19px; color: var(--text-muted); max-width: 720px; line-height: 1.5; }

.filter-bar {
  background: var(--surface);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
  padding: 20px 0;
  position: sticky; top: 64px; z-index: 40;
}
.filter-tabs { display: flex; gap: 4px; overflow-x: auto; }
.filter-tab {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  padding: 10px 18px;
  background: transparent; border: 1px solid transparent;
  border-radius: 4px; cursor: pointer;
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; transition: all 0.15s;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active {
  background: var(--primary-deep); color: var(--bg);
  border-color: var(--primary-deep);
}
.filter-count { display: inline-block; margin-left: 6px; font-size: 11px; opacity: 0.7; }

.featured-section { padding: 60px 0 40px; }
.featured-label { margin-bottom: 20px; }
.featured-label .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.featured-post {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 12px; overflow: hidden;
}
.featured-image {
  min-height: 440px;
  background-size: cover; background-position: center;
  order: 2; position: relative;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-post:hover .featured-image { transform: scale(1.03); }
.featured-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,157,147,0.18) 0%, transparent 50%, rgba(217,168,66,0.22) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}
.featured-body { padding: 56px 48px; order: 1; }
.featured-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 16px; }
.featured-post h2 { font-size: 42px; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 20px; }
.featured-post h2 a { color: var(--text); text-decoration: none; }
.featured-post h2 a:hover { color: var(--primary-deep); }
.featured-post .dek { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--text-muted); margin-bottom: 24px; }
.featured-meta { display: flex; gap: 20px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.featured-meta strong { color: var(--text); font-weight: 500; }
.featured-link { font-size: 14px; font-weight: 600; color: var(--primary-deep); text-decoration: none; border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px; }

.post-list-section { padding: 40px 0 80px; }
.post-list-header { margin-bottom: 28px; }
.post-list-header h2 { font-size: 22px; color: var(--text-muted); font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.02em; }
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list-item {
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 40px; padding: 32px 0;
  border-top: 1px solid var(--neutral);
  align-items: start;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.post-list-item:last-child { border-bottom: 1px solid var(--neutral); }
.post-thumb {
  width: 200px; height: 130px; border-radius: 6px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.post-list-item:hover .post-thumb { transform: scale(1.05); }
.post-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,157,147,0.18) 0%, transparent 50%, rgba(217,168,66,0.22) 100%);
  mix-blend-mode: multiply; border-radius: 6px;
}
.post-info .cat { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 10px; }
.post-info h3 { font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; }
.post-info h3 a { color: var(--text); text-decoration: none; }
.post-info h3 a:hover { color: var(--primary-deep); }
.post-info p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin-bottom: 14px; max-width: 620px; }
.post-info .meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.post-info .meta strong { color: var(--text); font-weight: 500; }
.post-action {
  align-self: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary-deep); text-decoration: none;
  border: 1px solid var(--primary-deep); border-radius: 4px;
  padding: 10px 18px; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.post-action:hover { background: var(--primary-deep); color: var(--bg); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 48px 0 0; }
.page-link {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  border: 1px solid var(--neutral); border-radius: 4px;
  padding: 0 12px;
}
.page-link.active { background: var(--primary-deep); color: var(--bg); border-color: var(--primary-deep); }
.page-link:hover:not(.active) { background: var(--accent-light); color: var(--text); }

.newsletter-strip {
  background: var(--accent-light);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
  padding: 60px 0; text-align: center;
}
.newsletter-strip h2 { font-size: 28px; margin-bottom: 10px; }
.newsletter-strip p { color: var(--text-muted); margin: 0 auto 24px; font-size: 15px; max-width: 560px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header { padding: 40px 0 30px; }
.post-meta-top { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-deep); font-weight: 600; margin-bottom: 14px; }
.post-header h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 52px; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.post-dek { font-size: 20px; line-height: 1.45; color: var(--text-muted); max-width: 680px; margin-bottom: 24px; font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.post-byline { display: flex; gap: 24px; align-items: center; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.post-byline strong { color: var(--text); }

.post-featured {
  max-width: var(--site-max); margin: 0 auto 48px;
  height: 400px; border-radius: 8px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.post-featured::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,157,147,0.20) 0%, transparent 50%, rgba(217,168,66,0.25) 100%);
  mix-blend-mode: multiply;
}

.takeaways-aside {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 30px 34px 26px;
  margin-bottom: 48px;
}
.takeaways-aside h2 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-deep); margin-bottom: 22px;
}
.takeaways-aside ul {
  list-style: none; padding: 0; margin: 0;
  counter-reset: takeaway;
  display: grid; gap: 14px;
}
.takeaways-aside li {
  counter-increment: takeaway;
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.55;
  font-weight: 500;
  padding: 0 0 0 36px; position: relative;
}
.takeaways-aside li::before {
  content: counter(takeaway, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-serif);
  font-weight: 500; font-size: 17px;
  color: var(--accent);
  line-height: 1.55; letter-spacing: -0.02em;
}

.post-body { padding-bottom: 60px; }
.post-body p { font-size: 18px; line-height: 1.75; margin-bottom: 22px; }
.post-body h2 { font-family: var(--font-serif); font-weight: 500; font-size: 30px; letter-spacing: -0.015em; line-height: 1.15; margin-top: 44px; margin-bottom: 18px; }
.post-body h3 { font-family: var(--font-serif); font-weight: 500; font-size: 22px; line-height: 1.2; margin-top: 32px; margin-bottom: 12px; }
.post-body a { color: var(--primary-deep); border-bottom: 1px solid var(--primary-deep); padding-bottom: 1px; text-decoration: none; }
.post-body a:hover { background: var(--accent-light); }
.post-body blockquote {
  font-family: var(--font-serif); font-size: 26px; font-style: italic;
  line-height: 1.4; color: var(--primary-deep);
  padding: 20px 0 20px 28px; border-left: 4px solid var(--primary);
  margin: 32px 0;
}
.pull-quote {
  font-family: var(--font-serif); font-size: 30px; font-style: italic;
  font-weight: 400; color: var(--primary-deep); line-height: 1.3;
  padding: 36px 40px; margin: 40px 0;
  background: var(--surface); border: 1px solid var(--neutral);
  border-radius: 8px; text-align: center;
}

.post-faq {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: 8px; border: 1px solid var(--neutral);
  margin: 48px 0 0;
}
.post-faq h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 500; margin-bottom: 20px; letter-spacing: -0.01em; }
.post-faq details { border-top: 1px solid var(--neutral); padding: 14px 0; }
.post-faq details:first-of-type { border-top: none; }
.post-faq summary { font-family: var(--font-serif); font-size: 18px; font-weight: 500; cursor: pointer; padding: 6px 0; display: flex; justify-content: space-between; }
.post-faq details[open] summary { color: var(--primary-deep); }
.post-faq details p { font-size: 15px; line-height: 1.65; margin-top: 10px; }

.author-bio {
  padding: 60px 0; background: var(--surface);
  border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral);
  margin-top: 60px;
}
.author-bio-grid { display: grid; grid-template-columns: 140px 1fr; gap: 32px; align-items: start; max-width: var(--article-max); margin: 0 auto; padding: 0 24px; }
.author-photo {
  width: 140px; height: 140px; border-radius: 50%;
  background-image: url('assets/img/sabine-author-bio.jpg');
  background-size: cover; background-position: center;
  background-color: var(--neutral); position: relative;
  flex-shrink: 0;
  box-shadow: -22px -16px 0 7px rgba(0, 157, 147, 0.18);
}
.author-photo::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,157,147,0.08) 0%, transparent 50%, rgba(217,168,66,0.14) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}
.author-bio h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 6px; }
.author-bio .role { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; font-weight: 600; }
.author-bio p { font-size: 15px; line-height: 1.65; margin-bottom: 16px; max-width: 520px; }
.author-links { display: flex; gap: 20px; font-size: 13px; flex-wrap: wrap; }
.author-links a { color: var(--primary-deep); text-decoration: none; border-bottom: 1px solid var(--primary-deep); padding-bottom: 2px; }

.related { padding: 80px 0; }
.related h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 500; margin-bottom: 28px; text-align: center; letter-spacing: -0.015em; }
/* ============================================================
   WP post-template grid fixes
   WordPress wraps wp:post-template output in a <ul class="wp-block-post-template
   is-layout-flow">. Override to grid with higher specificity.
   ============================================================ */
.related .wp-block-post-template,
.related ul.wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
.related .wp-block-post-template > li,
.related ul.wp-block-post-template > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.perspectives .wp-block-post-template,
.perspectives ul.wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
.perspectives .wp-block-post-template > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.perspectives-grid { width: 100%; }

.post-list-section .wp-block-post-template,
.post-list-section ul.wp-block-post-template {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
.post-list-section .wp-block-post-template > li {
  list-style: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Featured post on Insights — ensure wp:post-featured-image fills the right column */
.featured-post .wp-block-post-featured-image,
.featured-post .featured-image,
.featured-post figure.featured-image {
  min-height: 440px !important;
  margin: 0 !important;
  overflow: hidden;
  display: block;
}
.featured-post .featured-image a,
.featured-post .featured-image img,
.featured-post figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
}

/* Related image fills its 140px card top */
.related-card .wp-block-post-featured-image,
.related-card .related-image {
  margin: 0 !important;
  height: 140px;
  overflow: hidden;
}
.related-card .wp-block-post-featured-image img,
.related-card .related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Home perspective image fills its 200px card top */
.perspective-card .wp-block-post-featured-image,
.perspective-card .perspective-image {
  margin: 0 !important;
  height: 200px;
  overflow: hidden;
}
.perspective-card .wp-block-post-featured-image img,
.perspective-card .perspective-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Insights post thumb fills left column */
.post-list-item .wp-block-post-featured-image,
.post-list-item .post-thumb {
  margin: 0 !important;
  width: 200px;
  height: 130px;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
}
.post-list-item .wp-block-post-featured-image img,
.post-list-item .post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove gaps BETWEEN full-bleed sections on page templates (home, about,
   media, insights) WITHOUT touching each section's internal padding.
   Each <section> keeps its own top/bottom padding (80px etc.) so content
   breathes. Only the MARGINS that WP adds between siblings are killed. */
body.page main,
body.home main {
  margin: 0 !important;
  padding: 0 !important;
}
body.page .wp-block-post-content,
body.home .wp-block-post-content {
  margin: 0 !important;
  padding: 0 !important;
}
/* Zero-margin only on direct section/group children of post-content — keeps
   their padding so sections breathe inside but sit flush against each other. */
body.page main .wp-block-post-content > section,
body.page main .wp-block-post-content > .wp-block-group,
body.home main .wp-block-post-content > section,
body.home main .wp-block-post-content > .wp-block-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Nothing below the last section before footer — no trailing cream strip */
body.page .wp-block-post-content > section:last-child,
body.page .wp-block-post-content > .wp-block-group:last-child,
body.home .wp-block-post-content > section:last-child,
body.home .wp-block-post-content > .wp-block-group:last-child {
  margin-bottom: 0 !important;
}
/* But blog post content needs default spacing — restore it */
body.single-post .wp-block-post-content {
  margin: 0;
  padding: 0;
}
body.single-post .wp-block-post-content > p {
  margin-bottom: 22px !important;
}
body.single-post .wp-block-post-content > h2 {
  margin-top: 44px !important;
  margin-bottom: 18px !important;
}
body.single-post .wp-block-post-content > h3 {
  margin-top: 32px !important;
  margin-bottom: 14px !important;
}
body.single-post .wp-block-post-content > aside,
body.single-post .wp-block-post-content > ul,
body.single-post .wp-block-post-content > ol,
body.single-post .wp-block-post-content > figure,
body.single-post .wp-block-post-content > blockquote {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}
body.single-post .wp-block-post-content > aside.takeaways-aside {
  margin-top: 40px !important;
  margin-bottom: 48px !important;
}

/* Home perspectives grid — make the post-template ul the grid directly.
   Earlier attempts with a wrapping .perspectives-grid div created an empty
   sibling since wp:html can't wrap wp:post-template. */
.perspectives .wp-block-query,
.perspectives .wp-block-post-template {
  width: 100%;
}
.perspectives ul.wp-block-post-template,
.perspectives ul.perspective-card-wrap {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.perspectives ul.wp-block-post-template > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Hide the empty .perspectives-grid div if present (legacy wp:html wrapper) */
.perspectives > .container > .wp-block-query > .perspectives-grid:empty {
  display: none !important;
}

/* ============================================================
   OG SIGNAL SHORTCODE OVERRIDES — Sabine-branded
   Plugin outputs default markup; theme styles it to match the palette
   + typography. For Kieran's theme, these classes get different styling.
   ============================================================ */

/* [ogs_key_takeaways] — styled as the takeaways-aside pattern */
.ogs-takeaways {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 30px 34px 26px;
  margin: 40px 0 48px;
  max-width: 900px;
}
.ogs-takeaways__title,
.ogs-takeaways h3 {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin: 0 0 22px;
  line-height: 1;
}
.ogs-takeaways__list,
.ogs-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ogs-tk;
  display: grid;
  gap: 14px;
}
.ogs-takeaways__list li,
.ogs-takeaways ul li {
  counter-increment: ogs-tk;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  padding: 0 0 0 36px;
  position: relative;
}
.ogs-takeaways__list li::before,
.ogs-takeaways ul li::before {
  content: counter(ogs-tk, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--accent);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

/* [ogs_quote] — styled as editorial pull quote */
figure.ogs-quote,
.ogs-quote {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-deep);
  line-height: 1.35;
  padding: 40px 48px;
  margin: 48px 0;
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  text-align: left;
}
.ogs-quote__text,
.ogs-quote blockquote {
  font-family: var(--font-serif) !important;
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
  color: var(--primary-deep);
  padding: 0;
  border: none;
  background: none;
  letter-spacing: -0.005em;
}
.ogs-quote__text p,
.ogs-quote blockquote p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.ogs-quote__caption,
.ogs-quote figcaption,
.ogs-quote-attribution {
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-top: 20px;
  display: block;
}

/* [ogs_stats] — styled as inline stat card, used in rows */
.ogs-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 32px 0;
}
@media (max-width: 1000px) {
  .ogs-stats-grid { grid-template-columns: 1fr; }
}
.ogs-stat {
  background: var(--surface);
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 32px 28px;
}
.ogs-stat__value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
/* Alternate stat colors when multiple in sequence */
.ogs-stat:nth-of-type(2) .ogs-stat__value { color: var(--secondary); }
.ogs-stat:nth-of-type(3) .ogs-stat__value { color: var(--primary); }
.ogs-stat__label {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 14px;
}
.ogs-stat__meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* [ogs_faq_block] — styled as editorial FAQ accordion */
.ogs-faq-block {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: 8px;
  border: 1px solid var(--neutral);
  margin: 48px 0;
}
.ogs-faq-block__title {
  font-family: var(--font-serif) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.ogs-faq-item {
  border-top: 1px solid var(--neutral);
  padding: 14px 0;
}
.ogs-faq-item:first-of-type { border-top: none; }
.ogs-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.005em;
  transition: color 0.15s;
}
.ogs-faq-question:hover,
.ogs-faq-item[aria-expanded="true"] .ogs-faq-question {
  color: var(--primary-deep);
}
.ogs-faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--primary-deep);
  margin-left: 20px;
  transition: transform 0.2s;
}
.ogs-faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.ogs-faq-answer {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  padding: 8px 0 18px;
  max-width: 780px;
  display: none;
}
.ogs-faq-question[aria-expanded="true"] + .ogs-faq-answer {
  display: block;
}
.ogs-faq-answer p { margin: 0 0 10px; }
.ogs-faq-answer p:last-child { margin-bottom: 0; }
.ogs-faq-answer a {
  color: var(--primary-deep);
  border-bottom: 1px solid var(--primary-deep);
  text-decoration: none;
}

/* Insights landing page content block — visual polish */
.insights-body {
  padding: 40px 0 80px;
  background: var(--bg);
}
.insights-body .container { max-width: 900px; }
.insights-body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  margin: 44px 0 18px;
}
.insights-body h2:first-of-type { margin-top: 0; }
.insights-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--text);
  margin: 32px 0 12px;
}
.insights-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}
.insights-body a {
  color: var(--primary-deep);
  border-bottom: 1px solid var(--primary-deep);
  text-decoration: none;
}
.insights-body a:hover { background: var(--accent-light); }

/* Related reading paragraph at bottom of blog posts (appended programmatically) */
.sh-related-reading {
  font-size: 15px !important;
  line-height: 1.7;
  padding: 28px 32px;
  background: var(--bg);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  color: var(--text);
  font-style: italic;
  margin-top: 48px !important;
  margin-bottom: 32px !important;
}
.sh-related-reading strong {
  color: var(--primary-deep);
  font-style: normal;
  font-weight: 600;
}
.sh-related-reading a {
  color: var(--primary-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-deep);
  font-style: italic;
}
.sh-related-reading a:hover {
  background: var(--accent-light);
}

/* Visually hidden utility (accessibility-safe, wp_kses-safe) */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.related-card { background: var(--surface); border: 1px solid var(--neutral); border-radius: 8px; overflow: hidden; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.related-card:hover { transform: translateY(-3px); }
.related-image {
  height: 140px; background-size: cover; background-position: center;
  position: relative; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-card:hover .related-image { transform: scale(1.05); }
.related-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,157,147,0.18) 0%, transparent 50%, rgba(217,168,66,0.22) 100%);
  mix-blend-mode: multiply;
}
.related-body { padding: 20px 22px 24px; }
.related-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 10px; }
.related-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; line-height: 1.3; margin-bottom: 6px; }
.related-card h3 a { color: var(--text); text-decoration: none; }
.related-card .meta { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .container, .article-container { padding: 0 24px; }
  .site-nav { padding: 16px 24px; flex-wrap: wrap; gap: 14px; }
  .site-menu { gap: 18px; font-size: 13px; order: 3; flex-basis: 100%; overflow-x: auto; padding-top: 8px; border-top: 1px solid var(--neutral); }
  .hero { padding: 56px 0 64px; }
  .hero-grid, .page-hero-grid, .speaker-hero-grid, .about-strip-grid, .bio-grid, .methodology-grid, .deep-pov, .booking-grid, .featured-post { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 38px; }
  .hero .lede { font-size: 16px; }
  .hero-photo, .page-hero-photo, .speaker-hero-photo { min-height: 260px; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .takeaways { padding: 56px 0 0; }
  .takeaways-grid, .patterns-grid, .data-cards-grid, .reel-grid, .perspectives-grid, .vrmm-grid, .book-grid, .why-grid, .quote-grid, .topics-grid, .downloads-grid, .related-grid { grid-template-columns: 1fr; gap: 20px; }
  .thesis { padding: 72px 0; margin-top: 48px; }
  .thesis blockquote { font-size: 26px; }
  .patterns { padding: 56px 0; }
  .patterns-header h2, .book-cta h2, .faq-header h2, .belief h2, .perspectives-deep-header h2, .about-strip h2, .seuss-block h2, .data-cards-header h2, .highlight-reel-header h2, .perspectives-header h2, .takeaways-header h2 { font-size: 24px; }
  .pattern-card { padding: 28px 24px 30px; }
  .pattern-card h3 { font-size: 22px; }
  .data-cards, .highlight-reel, .perspectives, .book-cta, .faq, .newsletter, .bio, .belief, .perspectives-deep, .methodology, .press-resources, .media-contact, .booking, .quote-grid-section, .appearances, .topics, .why-cards { padding: 56px 0; }
  .speaking-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .about-photo { width: 140px; height: 140px; box-shadow: -16px -12px 0 4px rgba(0, 157, 147, 0.35); }
  .newsletter-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .insights-hero h1 { font-size: 34px; }
  .featured-body { padding: 28px 24px 32px; order: 2; }
  .featured-image { min-height: 220px; order: 1; }
  .featured-post h2 { font-size: 28px; }
  .post-list-item { grid-template-columns: 1fr; gap: 16px; }
  .post-thumb { width: 100%; height: 180px; }
  .post-info h3 { font-size: 22px; }
  .post-header h1 { font-size: 32px; }
  .post-dek { font-size: 17px; }
  .post-featured { height: 240px; margin-left: 24px; margin-right: 24px; }
  .post-body p { font-size: 16px; }
  .pull-quote { font-size: 20px; padding: 24px 20px; }
  .author-bio-grid { grid-template-columns: 1fr; gap: 20px; }
  .media-contact-grid { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .media-contact-cta { text-align: left; }
  .app-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .deep-pov-num { font-size: 44px; }
  .deep-pov-body h3 { font-size: 22px; }
  .bio-meta { position: static; }
  .belief blockquote { font-size: 20px; }
}

/* ============================================================
   ANIMATIONS (scroll reveal + hero load + reduced-motion)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(1.01); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .eyebrow, .hero h1, .hero .lede, .hero-cta-row,
.page-hero .eyebrow, .page-hero h1, .page-hero .lede,
.speaker-hero .eyebrow, .speaker-hero h1, .speaker-hero .lede, .speaker-hero .btn-primary,
.insights-hero .eyebrow, .insights-hero h1, .insights-hero p,
.post-header .post-meta-top, .post-header h1, .post-header .post-dek, .post-header .post-byline {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-photo, .page-hero-photo, .speaker-hero-photo {
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .eyebrow, .page-hero .eyebrow, .speaker-hero .eyebrow, .insights-hero .eyebrow, .post-header .post-meta-top { animation-delay: 0.05s; }
.hero h1, .page-hero h1, .speaker-hero h1, .insights-hero h1, .post-header h1 { animation-delay: 0.2s; }
.hero .lede, .page-hero .lede, .speaker-hero .lede, .insights-hero p, .post-header .post-dek { animation-delay: 0.4s; }
.hero-cta-row, .speaker-hero .btn-primary, .post-header .post-byline { animation-delay: 0.55s; }
.hero-photo, .page-hero-photo, .speaker-hero-photo { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress core alignments */
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
