/* ===================================================
   Dr Ngao Motsei · Website Styles
   Brand: Forum · Cormorant Garamond · Poppins
   Palette: Indigo #1F2A5E · Terracotta #C1684A · Ivory #F4EFE8
   =================================================== */

:root {
  --indigo: #1F2A5E;
  --indigo-deep: #14194A;
  --terracotta: #C1684A;
  --terracotta-soft: #D9846A;
  --taupe: #A39C96;
  --warm-taupe: #8C8480;
  --ivory: #F4EFE8;
  --ivory-warm: #EDE6DB;
  --mocha: #3A2E2A;
  --muted-violet: #4A4E7C;
  --ink: #1A1C2E;

  --font-display: 'Forum', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --font-label: 'Forum', serif;

  /* Layout widths */
  --max: 1440px;
  --content: 1100px;
  --prose: 640px;
  --gutter: clamp(24px, 5vw, 80px);

  /* Vertical rhythm — ONE value for section padding */
  --section-py: clamp(72px, 8vw, 112px);
  --section-py-tight: clamp(56px, 6vw, 80px);

  /* Element spacing inside sections */
  --gap-label-title: 32px;
  --gap-title-content: 56px;

  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .3s ease; }

/* ============ NAV (solid ivory banner) ============ */
.nav {
  position: relative;
  z-index: 100;
  background: #F8F3EC;
  border-bottom: 1px solid rgba(58, 46, 42, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 8px 24px -14px rgba(58, 46, 42, 0.25),
    0 2px 6px -2px rgba(58, 46, 42, 0.08);
  transition: box-shadow .4s ease, padding .4s ease;
}
.nav.scrolled {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 12px 32px -14px rgba(58, 46, 42, 0.35),
    0 3px 8px -2px rgba(58, 46, 42, 0.12);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform .4s ease;
}
.nav-logo:hover img { transform: scale(1.02); }

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
  position: relative;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width .4s ease, left .4s ease;
}
.nav-links a:hover {
  color: var(--terracotta);
  background: rgba(193, 104, 74, 0.08);
  border-color: rgba(193, 104, 74, 0.3);
}
.nav-links a.active {
  color: var(--indigo);
}
.nav-links a.active::after {
  width: calc(100% - 36px);
  left: 18px;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--indigo);
  border-radius: 999px;
  color: var(--indigo);
  background: transparent;
  cursor: pointer;
  transition: all .4s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--indigo);
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F8F3EC;
    padding: 24px var(--gutter) 32px;
    gap: 0;
    border-bottom: 1px solid rgba(58, 46, 42, 0.14);
    box-shadow: 0 12px 32px -14px rgba(58, 46, 42, 0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(58, 46, 42, 0.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-logo img { height: 44px; }
}

/* ============ PAGE SYSTEM ============ */
.page { display: none; }
.page.active { display: block; }

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn svg { width: 14px; height: 14px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: transparent;
  color: var(--terracotta-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--indigo);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}
.btn-dark:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

/* ============ SECTION LABELS & TITLES ============ */
.section-label {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-violet);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--gap-label-title);
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--muted-violet);
}
.section-label.centered {
  display: flex;
  justify-content: center;
}
.section-label.centered::before { width: 40px; }
.section-label.centered::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--muted-violet);
}
.section-label.light { color: var(--taupe); }
.section-label.light::before,
.section-label.light::after { background: var(--taupe); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--indigo);
  margin-bottom: var(--gap-title-content);
  letter-spacing: -0.005em;
}
.section-title.centered {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--gap-title-content);
}
.section-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.section-title.light { color: #fff; }
.section-title.light em { color: var(--indigo); }

/* ============ HERO (portrait backdrop) ============ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1e;
  padding: 40px var(--gutter) 40px;
  min-height: clamp(860px, 120vh, 1500px);
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.04) brightness(0.9);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,20,32,0.42) 0%, rgba(18,20,32,0.28) 30%, rgba(18,20,32,0.42) 70%, rgba(18,20,32,0.65) 100%),
    radial-gradient(ellipse at center, rgba(18,20,32,0.35) 0%, rgba(18,20,32,0.1) 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  width: 100%;
  margin: auto auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-violet);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1.2s .3s ease forwards;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--muted-violet);
  opacity: 0.6;
}
.hero-kicker.light { color: rgba(255,255,255,0.82); }
.hero-kicker.light::before,
.hero-kicker.light::after {
  background: rgba(255,255,255,0.55);
  opacity: 0.75;
}

.hero-tagline {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.4s .5s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.92;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  cursor: default;
}

.hero-tagline .tag-line-1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 40px rgba(0,0,0,0.35);
  transition: text-shadow .8s ease;
}
.hero-tagline .tag-line-2 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 500;
  line-height: 1;
  color: var(--terracotta);
  font-style: italic;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  transition: text-shadow .8s ease;
}
.hero-tagline .tag-line-2 em { font-style: italic; }
.hero-tagline .bfly {
  width: clamp(44px, 5.4vw, 72px);
  height: auto;
  display: inline-block;
  transform: translateY(-10%);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.hero-tagline .tag-line-2:hover .bfly {
  transform: translateY(-14%) rotate(6deg);
}
.hero-tagline .tag-line-3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.45);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 1.2s .8s ease forwards;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--indigo);
  color: var(--indigo);
}
.btn-outline-dark:hover {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--indigo);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Hero CTAs — white outline by default, terracotta on hover, lit on active */
.btn-hero {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  border-radius: 999px;
}
.btn-hero:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(193, 104, 74, 0.6);
}
.btn-hero:active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 0 0 3px rgba(217, 132, 106, 0.35), 0 8px 24px -10px rgba(193, 104, 74, 0.55);
}

@media (max-width: 700px) {
  .hero {
    padding: calc(var(--nav-h) + 64px) var(--gutter) 88px;
    min-height: 620px;
  }
  .hero-kicker { font-size: 10px; letter-spacing: 0.25em; gap: 12px; margin-bottom: 28px; }
  .hero-kicker::before, .hero-kicker::after { width: 24px; }
  .hero-tagline { margin-bottom: 36px; }
}

/* ============ INTRO PROSE (with portrait) ============ */
.intro {
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  background: var(--ivory);
}
.intro-inner {
  max-width: var(--prose);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-portrait {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 56px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a2a2e;
  position: relative;
}
.intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.intro-portrait:hover img { transform: scale(1.02); }
.intro-inner .section-label {
  margin-bottom: var(--gap-label-title);
}
.intro-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--mocha);
  opacity: 0.85;
  margin-bottom: 28px;
  letter-spacing: 0.005em;
}
.intro-body:last-child { margin-bottom: 0; }
.intro-body strong {
  font-weight: 500;
  color: var(--muted-violet);
}
.intro-body .accent-violet,
.intro-body .accent-indigo {
  color: var(--muted-violet);
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 700px) {
  .intro-portrait { max-width: 280px; margin-bottom: 48px; }
}

/* ============ THREE IDENTITIES ============ */
.identities {
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.identities-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(26, 26, 30, 0.2) 0%, rgba(26, 26, 30, 0.12) 50%, rgba(26, 26, 30, 0.25) 100%),
    url('assets/brown-sand-working.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  z-index: 0;
}
.identities-inner {
  max-width: var(--content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.identities .section-title { font-size: clamp(32px, 4vw, 52px); }
.identities .section-title.light { color: #fff; }
.identities .section-title.light em {
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 230, 215, 0.35), 0 2px 14px rgba(0, 0, 0, 0.25);
}
.identities .section-label.light { color: rgba(255,255,255,0.72); }
.identities .section-label.light::before,
.identities .section-label.light::after { background: rgba(255,255,255,0.55); }

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.identity-card {
  background: var(--ivory);
  padding: 44px 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease, background-color .5s ease;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.45);
}
.identity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -24px rgba(0, 0, 0, 0.55);
  background: var(--muted-violet);
}
.identity-card:hover .id-num { color: var(--terracotta-soft); }
.identity-card:hover .id-title { color: #fff; }
.identity-card:hover .id-body { color: rgba(255, 255, 255, 0.88); opacity: 1; }
.id-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-violet);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.id-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.12;
  margin-bottom: 20px;
}
.id-body {
  font-size: 13.5px;
  color: var(--mocha);
  opacity: 0.82;
  line-height: 1.75;
  font-weight: 300;
  max-width: 34ch;
}

@media (max-width: 960px) {
  .identity-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ FEATURED / LATEST EPISODES ============ */
.featured {
  padding: var(--section-py) var(--gutter);
  background: var(--ivory);
}
.featured-inner {
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
}
.featured-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.78;
  max-width: 640px;
  margin: -24px auto 56px;
  line-height: 1.8;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  box-shadow: 0 18px 40px -28px rgba(20, 25, 74, 0.2);
}
.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -28px rgba(20, 25, 74, 0.3);
}
.episode-img {
  aspect-ratio: 4 / 3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2a2a2e;
}
.episode-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}
.episode-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}
.episode-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-violet);
}
.episode-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--indigo);
  letter-spacing: 0.005em;
  line-height: 1.25;
  margin-top: 2px;
}
.episode-blurb {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.85;
  line-height: 1.65;
  margin-top: 8px;
}
.episode-play {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 94, 0.25);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}
.episode-play svg { width: 14px; height: 14px; margin-left: 2px; }
.episode-card:hover .episode-play {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.featured-cta { text-align: center; }

.feat-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--indigo);
  width: fit-content;
  transition: all .4s ease;
}
.feat-link svg { width: 14px; height: 14px; transition: transform .3s; }
.feat-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  gap: 18px;
}
.feat-link.dark { color: var(--indigo); border-color: var(--indigo); }

@media (max-width: 800px) {
  .episode-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-sub { margin-bottom: 40px; }
}
/* ============ CTA STRIP (indigo band) ============ */
.cta-strip {
  padding: var(--section-py) var(--gutter);
  text-align: center;
  background: var(--indigo);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 78, 124, 0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  z-index: 2;
  max-width: var(--prose);
  margin: 0 auto;
}
.cta-strip .section-label {
  color: var(--taupe);
  margin-bottom: 28px;
}
.cta-strip .section-label::before,
.cta-strip .section-label::after {
  background: var(--taupe);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.cta-strip h2 em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-soft);
}
.cta-strip p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(244, 239, 232, 0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-strip .btn-dark {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--indigo);
}
.cta-strip .btn-dark:hover {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: calc(var(--nav-h) + 100px) var(--gutter) 120px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-kicker.dark {
  color: var(--terracotta);
  animation: none;
  opacity: 1;
}
.hero-kicker.dark::before,
.hero-kicker.dark::after { background: var(--terracotta); }
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 0.95;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.about-hero-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  display: block;
  font-size: 0.75em;
}
.about-hero-intro {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  max-width: 640px;
}
.about-hero-img {
  position: relative;
  height: 560px;
  overflow: hidden;
  background-image: url('assets/ngao-portrait-bw.jpg');
  background-size: cover;
  background-position: center 18%;
}
.about-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.35) 100%);
}
@media (max-width: 1000px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 60px);
    gap: 48px;
  }
  .about-hero-img { height: 420px; order: -1; }
}

/* ============ STORY ============ */
.story {
  padding: 120px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.story-label {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  height: fit-content;
}
.story-label .section-label { margin-bottom: 0; }
.story-body h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 48px;
  max-width: 680px;
}
.story-body h3 em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.story-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  opacity: 0.82;
  margin-bottom: 28px;
  max-width: 640px;
}
.story-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  float: left;
  line-height: 0.8;
  padding: 8px 12px 0 0;
  color: var(--terracotta);
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-label { position: static; }
}

/* ============ PULL QUOTE ============ */
.pullquote {
  padding: 160px var(--gutter);
  background:
    linear-gradient(135deg, rgba(20, 25, 74, 0.94) 0%, rgba(31, 42, 94, 0.9) 100%),
    url('assets/texture-terracotta.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 620px;
  height: 620px;
  background-image: url('assets/butterfly.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
  filter: brightness(1.5);
}
.pullquote-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pullquote-mark {
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.6;
  color: var(--terracotta-soft);
  opacity: 0.6;
  display: block;
  margin-bottom: -40px;
}
.pullquote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  max-width: 980px;
  margin-bottom: 48px;
}
.pullquote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--terracotta-soft);
}

/* ============ CREDENTIALS ============ */
.credentials {
  padding: 140px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.credentials-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.credentials h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--indigo);
  line-height: 1.05;
}
.credentials-head p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.6;
}
.cred-list {
  list-style: none;
  border-top: 1px solid rgba(31, 42, 94, 0.15);
}
.cred-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(31, 42, 94, 0.1);
  align-items: center;
  transition: all .4s ease;
}
.cred-list li:hover {
  padding-left: 24px;
  background: linear-gradient(90deg, rgba(193, 104, 74, 0.05), transparent);
}
.cred-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
}
.cred-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--indigo);
  line-height: 1.2;
}
.cred-inst {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  text-align: right;
}
@media (max-width: 800px) {
  .credentials-head { grid-template-columns: 1fr; gap: 32px; }
  .cred-list li { grid-template-columns: 40px 1fr; gap: 20px; }
  .cred-inst { grid-column: 1 / -1; text-align: left; padding-left: 60px; font-size: 11px; }
}

/* ============ PRACADEMIC ============ */
.pracademic {
  padding: 140px var(--gutter);
  background: var(--indigo);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pracademic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/texture-stone.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.pracademic-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}
.pracademic h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  color: #fff;
  margin-bottom: 32px;
}
.pracademic h2 em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta-soft);
}
.pracademic p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}
.pracademic-highlight {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin: 48px 0;
}
.pracademic-highlight strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--terracotta-soft);
  display: block;
  margin-bottom: 8px;
}
.pracademic-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 1000px) {
  .pracademic-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--muted-violet);
  color: rgba(255, 255, 255, 0.88);
  padding: 32px var(--gutter) 16px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  height: 92px;
  width: auto;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}
.footer-col a:hover { color: var(--terracotta-soft); }

/* Contact column (replaces Partners) */
.footer-contact-group { margin-bottom: 14px; }
.footer-contact-group:last-child { margin-bottom: 0; }
.footer-contact-group a { display: block; }
.footer-contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  display: block;
  margin-bottom: 6px;
}
.footer-contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--terracotta-soft); }

.footer-middle {
  padding: 18px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.footer-badge img {
  width: 62px;
  height: auto;
  flex-shrink: 0;
  mix-blend-mode: screen;
}
.footer-badge-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
.footer-badge-text a {
  color: var(--terracotta-soft);
  border-bottom: 1px solid rgba(217, 132, 106, 0.4);
  padding-bottom: 1px;
  transition: all .3s ease;
}
.footer-badge-text a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .4s ease;
}
.footer-social a:hover {
  background: var(--muted-violet);
  border-color: var(--muted-violet);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 13px; height: 13px; }

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  flex-wrap: wrap;
  gap: 14px;
  letter-spacing: 0.08em;
}
.footer-credit a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
  transition: all .3s ease;
}
.footer-credit a:hover {
  color: var(--terracotta-soft);
  border-bottom-color: var(--terracotta-soft);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 24px 40px;
    text-align: center;
  }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-top .footer-col { text-align: center; }
  .footer-top .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* ============ CHAT BUBBLE ============ */
.chat-bubble {
  display: none;
}
.chat-bubble:hover {
  transform: scale(1.1) rotate(-5deg);
  background: var(--indigo);
  box-shadow: 0 16px 40px -8px rgba(31, 42, 94, 0.5);
}
.chat-bubble svg { width: 26px; height: 26px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============ ABOUT PAGE V2 (editorial) ============ */
.about-body { background: var(--ivory); }

.about-v2 { width: 100%; }

.about-top {
  padding: calc(var(--nav-h) + 88px) var(--gutter) var(--section-py);
  background: var(--ivory);
}
.about-top-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.about-top-head { margin-bottom: 64px; }
.about-top-head .section-label { margin-bottom: 28px; }

.about-top-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 72px);
  color: var(--indigo);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.about-top-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.about-top-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--mocha);
  opacity: 0.78;
  max-width: 560px;
  margin: 0 auto;
}

.about-top-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto 72px;
}
.about-portrait {
  position: relative;
  overflow: hidden;
  background: #2a2a2e;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 60px -32px rgba(20, 25, 74, 0.3);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.about-portrait:hover img { transform: scale(1.03); }
.about-portrait-left img { object-position: center 30%; }
.about-portrait-right img { object-position: center 20%; }

.about-top-prose {
  max-width: 620px;
  margin: 0 auto;
}
.about-top-lead {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--indigo);
  margin-bottom: 28px;
}
.about-top-lead em {
  font-style: italic;
  color: var(--terracotta);
}
.about-top-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mocha);
  opacity: 0.82;
  letter-spacing: 0.005em;
}

@media (max-width: 780px) {
  .about-top { padding-top: calc(var(--nav-h) + 56px); }
  .about-top-head { margin-bottom: 44px; }
  .about-top-portraits { gap: 16px; margin-bottom: 52px; }
}
/* ============ ABOUT PAGE V3 (final) ============ */
.about-v3 { width: 100%; }

.av3-hero {
  position: relative;
  padding: 0 var(--gutter) clamp(20px, 2.4vw, 32px);
  background: var(--ivory);
}

.av3-hero-stage {
  position: relative;
  padding-top: clamp(48px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.av3-hero-head {
  max-width: var(--content);
  margin: 0 auto 24px;
  text-align: center;
}
.av3-hero-head .section-label { margin-bottom: 24px; color: var(--muted-violet); }
.av3-hero-head .section-label::before,
.av3-hero-head .section-label::after { background: var(--muted-violet); }
.av3-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 76px);
  color: var(--indigo);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.av3-hero-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.av3-hero-ngao {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.av3-hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--mocha);
  opacity: 0.82;
  max-width: 560px;
  margin: 28px auto 0;
}
.av3-hero-o {
  position: relative;
  display: inline-block;
}
.av3-hero-bfly {
  position: absolute;
  width: clamp(90px, 9vw, 132px);
  height: auto;
  top: 0;
  right: 0;
  transform: translate(55%, -58%) rotate(18deg);
  filter: drop-shadow(0 10px 22px rgba(20, 25, 74, 0.3));
  pointer-events: none;
}

.av3-hero-portraits {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  max-width: 880px;
  width: 100%;
  margin: clamp(20px, 2.4vw, 32px) auto 0;
}
.av3-hero-portraits-single {
  grid-template-columns: 1fr;
  max-width: 520px;
}
.av3-hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a2a2e;
  box-shadow: 0 32px 70px -32px rgba(20, 25, 74, 0.45);
}
.av3-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av3-hero-portraits .av3-hero-portrait:first-child img { object-position: 72% 30%; }
.av3-hero-portraits .av3-hero-portrait:last-child img { object-position: 72% 20%; }
@media (max-width: 640px) {
  .av3-hero-portraits { grid-template-columns: 1fr; max-width: 360px; }
}
.av3-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Quote block */
.av3-quote-frame {
  position: relative;
  z-index: 2;
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  margin-top: clamp(32px, 4vw, 56px);
  padding: clamp(28px, 3vw, 44px) var(--gutter);
  border-top: 1px solid var(--warm-taupe);
  border-bottom: 1px solid var(--warm-taupe);
  background: transparent;
}

.av3-quote-block {
  position: relative;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.av3-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(90px, 10vw, 140px);
  line-height: 0.6;
  color: var(--terracotta);
  opacity: 0.3;
  display: block;
  margin-bottom: -48px;
}
.av3-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  color: var(--indigo);
  letter-spacing: -0.005em;
  display: block;
}
.av3-quote em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.av3-quote-lede {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--indigo);
  opacity: 0.78;
  margin-bottom: 20px;
}
.av3-quote-callout {
  display: block;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.18;
  color: var(--indigo);
  font-weight: 400;
}

.av3-hero-prose {
  max-width: 820px;
  margin: clamp(24px, 3vw, 36px) auto 0;
  text-align: center;
}
.av3-hero-prose .intro-body {
  font-size: 15px;
  line-height: 1.9;
}

/* ============ TABS SECTION ============ */
.av3-tabs-section {
  padding: 0;
  background: var(--ivory-warm);
}
.av3-tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.av3-tabs-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 0;
  align-items: stretch;
}
.av3-tabs-media {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.av3-tabs-media-img {
  position: absolute;
  inset: 0;
  background: url('assets/about-butterfly.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.av3-tabs-media:hover .av3-tabs-media-img { transform: scale(1.03); }

.av3-tabs-panel {
  padding: clamp(28px, 3vw, 40px) var(--gutter) clamp(28px, 3vw, 40px) clamp(32px, 4vw, 56px);
}

.av3-tab {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(58, 46, 42, 0.04);
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
  text-align: center;
  white-space: nowrap;
}
.av3-tab:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(193, 104, 74, 0.08);
  transform: translateY(-1px);
}
.av3-tab.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: 0 6px 16px -8px rgba(193, 104, 74, 0.55);
}

.av3-tabs-stack { display: block; }
.av3-tab-content { display: none; animation: av3FadeIn .5s ease; }
.av3-tab-content.active { display: block; }
@keyframes av3FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.av3-tab-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.av3-tab-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.av3-tab-content p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mocha);
  opacity: 0.85;
  margin-bottom: 20px;
}
.av3-tab-lede {
  font-family: var(--font-heading) !important;
  font-style: italic;
  font-size: 19px !important;
  color: var(--indigo) !important;
  opacity: 0.85 !important;
  line-height: 1.55 !important;
  margin-bottom: 36px !important;
}

.av3-highlight {
  display: block;
  margin: 36px 0 12px;
  padding: 28px 32px;
  background: rgba(193, 104, 74, 0.08);
  border: 1px solid rgba(193, 104, 74, 0.22);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.av3-highlight:hover {
  background: rgba(193, 104, 74, 0.12);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -24px rgba(193, 104, 74, 0.45);
}
.av3-highlight-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 12px;
}
.av3-highlight-title {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--indigo);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin: 0 0 10px;
}
.av3-highlight p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mocha);
  opacity: 0.88;
}
.av3-highlight-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .3s ease;
}
.av3-highlight-cta svg { width: 14px; height: 14px; }
.av3-highlight:hover .av3-highlight-cta { gap: 18px; }

.av3-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--indigo);
  transition: all .4s ease;
  margin-top: 12px;
}
.av3-link svg { width: 14px; height: 14px; transition: transform .3s; }
.av3-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  gap: 18px;
}

/* Contribution list (editorial numbered) */
.av3-contrib-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.av3-contrib-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(31, 42, 94, 0.1);
  align-items: start;
}
.av3-contrib-list li:first-child { border-top: 1px solid rgba(31, 42, 94, 0.1); }
.av3-contrib-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta);
  line-height: 1;
}
.av3-contrib-body h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--indigo);
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.av3-contrib-body p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}
.av3-contrib-body em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}

@media (max-width: 960px) {
  .av3-tabs-inner { grid-template-columns: 1fr; gap: 32px; }
  .av3-tabs-media { min-height: 320px; }
  .av3-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
  }
  .av3-tabs-nav::-webkit-scrollbar { display: none; }
  .av3-tab { flex: 0 0 auto; margin-right: 0; font-size: 9px; letter-spacing: 0.12em; padding: 10px 14px; }
  .av3-tabs-section { overflow: hidden; }
  .av3-tabs-inner { grid-template-columns: 1fr !important; }
  .av3-tabs-media { min-height: 240px !important; }
  .av3-tabs-panel { padding: 28px 20px 44px 20px !important; overflow-wrap: break-word; word-wrap: break-word; max-width: 100vw; box-sizing: border-box; }
  .av3-tabs-nav { padding: 0 20px; }
  .av3-tab-content p { font-size: 14px; }
  .av3-contrib-list li { grid-template-columns: 40px 1fr; gap: 12px; }
  .av3-contrib-body h4 { font-size: 11px; letter-spacing: 0.14em; }
}

/* ============ CAREER TIMELINE (horizontal scroll) ============ */
.av3-timeline {
  padding: var(--section-py) 0;
  background: var(--indigo);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.av3-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/texture-stone.jpg');
  background-size: cover;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.av3-timeline-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.av3-timeline-head .section-label { color: var(--taupe); margin-bottom: 20px; }
.av3-timeline-head .section-label::before { background: var(--taupe); }
.av3-timeline-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.av3-timeline-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta-soft);
}
.av3-timeline-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  line-height: 1.6;
}

.av3-timeline-track-wrap {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px var(--gutter) 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) rgba(255,255,255,0.08);
}
.av3-timeline-track-wrap::-webkit-scrollbar { height: 6px; }
.av3-timeline-track-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); }
.av3-timeline-track-wrap::-webkit-scrollbar-thumb { background: var(--terracotta); }

.av3-timeline-track {
  position: relative;
  display: flex;
  gap: 24px;
  padding-top: 32px;
  min-width: min-content;
}
.av3-timeline-rail {
  position: absolute;
  left: 0; right: 0;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(217, 132, 106, 0.6) 8%,
    rgba(217, 132, 106, 0.6) 92%,
    transparent 100%);
}
.av3-tl-card {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: start;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s ease, border-color .4s ease;
}
.av3-tl-card::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(193, 104, 74, 0.2);
}
.av3-tl-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(217, 132, 106, 0.4);
}
.av3-tl-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta-soft);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.av3-tl-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.av3-tl-inst {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 700px) {
  .av3-hero-band { height: clamp(420px, 60vh, 560px); }
  .av3-hero-bfly { transform: translate(20%, -58%) rotate(18deg) !important; }
  .av3-quote-block { margin-top: 40px; }
  .av3-quote-mark { font-size: 72px; margin-bottom: -32px; }
  .av3-quote-bfly { right: 0; top: -20px; }
  .av3-contrib-list li { grid-template-columns: 56px 1fr; gap: 16px; }
  .av3-tl-card { flex-basis: 240px; }
}

@media (max-width: 520px) {
  .about-top-portraits { grid-template-columns: 1fr; max-width: 360px; }
}

/* ============ WORK PAGE ============ */
.work-v1 { width: 100%; }

.work-hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  min-height: clamp(420px, 52vh, 620px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(20, 25, 74, 0.28) 0%,
      rgba(20, 25, 74, 0.14) 45%,
      rgba(20, 25, 74, 0.38) 100%),
    url('assets/work-texture3.jpg');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
}
.insights-hero {
  min-height: clamp(680px, 88vh, 960px);
  align-items: flex-end;
  padding-bottom: clamp(32px, 4vw, 56px);
}

/* Connect hero — golf course backdrop, centred text */
.connect-hero {
  min-height: clamp(560px, 72vh, 820px);
  align-items: center;
}
.connect-hero-bg {
  background:
    linear-gradient(180deg,
      rgba(20, 25, 74, 0.32) 0%,
      rgba(20, 25, 74, 0.2) 45%,
      rgba(20, 25, 74, 0.42) 100%),
    url('assets/golf.JPG') !important;
  background-size: cover !important;
  background-position: center !important;
  transform: none !important;
  filter: brightness(1.08);
}
.connect-hero .work-hero-title em {
  color: var(--indigo);
}

.connect-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.connect-form-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--indigo);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.connect-form-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.connect-form-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mocha);
  opacity: 0.88;
  margin-bottom: 24px;
}
.connect-form-wide {
  max-width: 1280px;
}


/* Form fields */
.connect-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.connect-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.connect-field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-violet);
}
.connect-field input,
.connect-field select {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.connect-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4E7C' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.connect-field input::placeholder {
  color: var(--warm-taupe);
  font-weight: 300;
}
.connect-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.connect-phone-wrap:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 104, 74, 0.12);
}
.connect-phone-prefix {
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--indigo);
  background: var(--ivory-warm);
  border-right: 1px solid rgba(58, 46, 42, 0.14);
  user-select: none;
  flex-shrink: 0;
}
.connect-phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}
.connect-phone-wrap input:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}
.connect-field input[readonly] {
  background: var(--ivory-warm);
  color: var(--indigo);
  cursor: pointer;
}

/* Flatpickr brand overrides */
.flatpickr-calendar {
  font-family: var(--font-body) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px -6px rgba(58, 46, 42, 0.18) !important;
  border: 1px solid rgba(58, 46, 42, 0.1) !important;
  background: var(--ivory) !important;
  padding: 0 !important;
}
.flatpickr-months {
  height: 40px !important;
  align-items: center !important;
}
.flatpickr-months .flatpickr-month {
  background: var(--indigo) !important;
  color: #fff !important;
  border-radius: 9px 9px 0 0 !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}
.flatpickr-current-month {
  font-size: 13px !important;
  padding: 0 !important;
  height: 40px !important;
  line-height: 40px !important;
  left: 24px !important;
  text-align: left !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #fff !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #fff !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px !important;
  top: 0 !important;
  padding: 0 10px !important;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 10px !important;
  height: 10px !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--terracotta) !important;
}
span.flatpickr-weekday {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  color: var(--muted-violet) !important;
  font-size: 10px !important;
}
.flatpickr-day {
  font-family: var(--font-body) !important;
  font-weight: 300 !important;
  font-size: 12px !important;
  color: var(--ink) !important;
  border-radius: 6px !important;
  height: 34px !important;
  line-height: 34px !important;
}
.flatpickr-day.today {
  border-color: var(--terracotta) !important;
}
.flatpickr-day.selected {
  background: var(--muted-violet) !important;
  border-color: var(--muted-violet) !important;
  color: #fff !important;
}
.flatpickr-day:hover {
  background: rgba(193, 104, 74, 0.12) !important;
  border-color: rgba(193, 104, 74, 0.12) !important;
}
.flatpickr-day.flatpickr-disabled {
  color: rgba(58, 46, 42, 0.18) !important;
}
.connect-field input[type="date"] {
  color: var(--ink);
  cursor: pointer;
}
.connect-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(25%) sepia(30%) saturate(600%) hue-rotate(340deg);
  transition: opacity .3s;
}
.connect-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}
.connect-field input[type="date"]::-webkit-datetime-edit {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
}
.connect-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  font-family: var(--font-body);
}
.connect-field input:focus,
.connect-field select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 104, 74, 0.12);
}

/* Two-step booking flow */
.connect-booking-steps {
  margin-top: clamp(24px, 3vw, 40px);
  text-align: left;
}
.connect-step { display: none; animation: av3FadeIn .5s ease; }
.connect-step.active { display: block; }

.connect-step .connect-fields {
  max-width: 560px !important;
  width: 100% !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.connect-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.connect-field input,
.connect-field select,
.connect-field textarea {
  width: 100%;
  box-sizing: border-box;
}

.connect-next {
  width: 100%;
  justify-content: center;
}

.connect-back {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-violet);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 0;
  transition: color .3s ease;
}
.connect-back:hover { color: var(--terracotta); }

/* Calendly container */
.connect-calendly {
  background: transparent;
  max-width: 900px;
  margin: 0 auto;
  min-height: 750px;
}
.connect-calendly iframe {
  min-height: 750px !important;
}

/* Microsoft Bookings embed */
.connect-calendar-embed {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(58, 46, 42, 0.14);
  border-radius: 18px;
  overflow: hidden;
}
.connect-calendar-embed iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

/* Textarea */
.connect-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.connect-field textarea::placeholder {
  color: var(--warm-taupe);
  font-weight: 300;
}
.connect-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 104, 74, 0.12);
}
.connect-field-hint {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  margin-top: 4px;
}
.connect-field label .req {
  color: var(--terracotta);
  margin-left: 2px;
}
.connect-error {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--terracotta);
  text-align: center;
  margin-top: 12px;
  display: none;
}
.connect-error.visible { display: block; }

/* Walk & Talk layout — form left, image right (edge to edge) */
.connect-walk-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: stretch;
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  padding-left: var(--gutter);
}
.connect-walk-layout .connect-fields {
  max-width: 100% !important;
  padding-right: clamp(24px, 3vw, 40px);
  gap: 14px !important;
}
.connect-walk-img {
  margin: 0;
  overflow: hidden;
  height: 0;
  min-height: 100%;
}
.connect-walk-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 30% center;
}
[data-wcontent="walk"] .connect-walk-layout {
  grid-template-columns: 45% 55%;
}
@media (max-width: 900px) {
  .connect-walk-layout {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  .connect-walk-img { display: none; }
  .connect-walk-layout .connect-fields {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
}

/* Booking confirmation */
.connect-confirm {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.14);
  border-radius: 20px;
}
.connect-confirm-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}
.connect-confirm-icon svg { width: 56px; height: 56px; }
.connect-confirm-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 14px;
}
.connect-confirm-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.connect-confirm-msg {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mocha);
  opacity: 0.92;
  margin-bottom: 32px;
}
.connect-confirm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.connect-confirm-details {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 16px;
}
.connect-confirm-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(58, 46, 42, 0.16);
  border-radius: 14px;
  overflow: hidden;
}
.connect-confirm-details li {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid rgba(58, 46, 42, 0.1);
}
.connect-confirm-details li:last-child { border-bottom: none; }
.connect-confirm-details li span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-violet);
  min-width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Insights pill band */
.insights-tabs-band {
  padding: clamp(20px, 2.4vw, 32px) var(--gutter);
  background: var(--ivory-warm);
  border-bottom: 1px solid rgba(58, 46, 42, 0.1);
}
.insights-tabs-band .work-tabs-nav {
  max-width: 1100px;
  margin: 0 auto;
}

.insights-content {
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  background: var(--ivory);
}
/* ============ PODCAST CARDS ============ */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.podcast-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.podcast-card:hover {
  border-color: rgba(193, 104, 74, 0.35);
  box-shadow: 0 12px 32px -18px rgba(20, 25, 74, 0.2);
  transform: translateY(-3px);
}
.podcast-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2e;
  position: relative;
}
.podcast-card-body {
  flex: 1;
  padding: 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.podcast-card-host {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
}
.podcast-card-title {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--indigo);
  line-height: 1.3;
  margin: 4px 0 4px;
}
.podcast-card-blurb {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mocha);
  opacity: 0.88;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.podcast-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.podcast-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-violet);
  background: rgba(74, 78, 124, 0.08);
  border: 1px solid rgba(74, 78, 124, 0.18);
  border-radius: 999px;
  padding: 3px 9px;
}
.podcast-card-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  display: block;
}
.podcast-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(31, 42, 94, 0.7);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
  opacity: 0;
}
.podcast-card:hover .podcast-card-play {
  opacity: 1;
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.podcast-card-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

@media (max-width: 960px) {
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .podcast-grid { grid-template-columns: 1fr; }
}

/* ============ ARTICLE CARDS ============ */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.article-card {
  display: flex;
  align-items: stretch;
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease;
}
.article-card:hover {
  box-shadow: 0 8px 28px -6px rgba(58, 46, 42, 0.16);
  transform: translateY(-2px);
}
.article-card-thumb {
  width: clamp(200px, 26vw, 300px);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article-card-body {
  flex: 1;
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-card-source {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--terracotta);
}
.article-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.3;
  margin: 4px 0 6px;
}
.article-card-blurb {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mocha);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.article-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--muted-violet);
  background: rgba(74, 78, 124, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.article-card-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.article-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  align-self: flex-end;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.article-card-action svg {
  width: 12px;
  height: 12px;
  transition: transform .3s;
}
.article-card:hover .article-card-action {
  gap: 14px;
  color: var(--indigo);
}
.article-card:hover .article-card-action svg {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .article-card { flex-direction: column; }
  .article-card-thumb { width: 100%; height: 180px; }
}

.insights-placeholder {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.85;
  text-align: center;
  margin: 0;
}

/* ============ RESOURCES TAB ============ */
.resources-intro {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.resources-intro-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 20px;
}
.resources-intro-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.resources-intro p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mocha);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.resource-tile {
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.06);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.resource-tile:hover {
  box-shadow: 0 8px 32px -8px rgba(58, 46, 42, 0.15);
  transform: translateY(-2px);
}
.resource-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(31, 42, 94, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-tile-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--indigo);
}
.resource-tile-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.25;
}
.resource-tile-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mocha);
  flex: 1;
}
.resource-tile-source {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-taupe);
  line-height: 1.6;
  font-style: italic;
}
.resource-tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 12px 24px;
  border: 1.5px solid var(--terracotta);
  border-radius: 999px;
  background: transparent;
  transition: all .3s ease;
  align-self: flex-start;
  margin-top: 4px;
}
.resource-tile-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .3s;
}
.resource-tile-btn:hover {
  background: var(--terracotta);
  color: #fff;
}
.resource-tile-btn:hover svg {
  transform: translateY(2px);
  stroke: #fff;
}

@media (max-width: 600px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* ============ BOOK SECTION ============ */
.book-layout {
  display: grid;
  grid-template-columns: clamp(280px, 40vw, 500px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.book-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-cover img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.book-details {
  padding-top: 0;
}
.book-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--indigo);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.book-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  white-space: nowrap;
}
.book-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted-violet);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 0 0 28px;
  max-width: 560px;
}
.book-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mocha);
  opacity: 0.88;
  margin-bottom: 18px;
  max-width: 620px;
}
.book-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-ghost-dark {
  background: transparent;
  border: 1px solid var(--indigo);
  color: var(--indigo);
  border-radius: 999px;
}
.btn-ghost-dark:hover {
  background: var(--indigo);
  color: #fff;
  transform: translateY(-2px);
}

/* Book extract banner — full-width terracotta with portrait */
.book-extract {
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  background: var(--terracotta);
  padding: 0;
  overflow: hidden;
}
.book-extract-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr clamp(240px, 30vw, 400px);
  gap: 0;
  align-items: stretch;
}
.book-extract-text-col {
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-extract-portrait {
  margin: 0;
  overflow: hidden;
}
.book-extract-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.book-extract .section-label.light {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.book-extract .section-label.light::before { background: rgba(255, 255, 255, 0.7); }
.book-extract-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 24px;
  max-width: 860px;
}
.book-extract-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px;
  max-width: 680px;
}
.book-extract-body:last-of-type { margin-bottom: 28px; }
.book-extract-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 6px;
  width: fit-content;
  transition: gap .3s ease, opacity .3s ease;
}
.book-extract-link svg { width: 14px; height: 14px; }
.book-extract-link:hover {
  gap: 18px;
  opacity: 0.85;
}

@media (max-width: 800px) {
  .book-layout { grid-template-columns: 1fr; max-width: 480px; }
  .book-cover { max-width: 280px; margin: 0 auto; }
  .book-extract-inner { grid-template-columns: 1fr; }
  .book-extract-portrait { height: 320px; }
}
.insights-hero-bg {
  background:
    linear-gradient(180deg,
      rgba(20, 25, 74, 0.45) 0%,
      rgba(20, 25, 74, 0.3) 45%,
      rgba(20, 25, 74, 0.65) 100%),
    url('assets/lecturing-portrait.png') !important;
  background-size: cover !important;
  background-position: center 30% !important;
  transform: none !important;
}
.work-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.work-hero-inner .section-label {
  margin-bottom: 24px;
  color: #fff;
}
.work-hero-inner .section-label::before,
.work-hero-inner .section-label::after { background: rgba(255, 255, 255, 0.85); }
.work-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 2px 28px rgba(20, 25, 74, 0.4);
}
.work-hero-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
  text-shadow: 0 0 22px rgba(255, 230, 215, 0.55), 0 2px 14px rgba(255, 255, 255, 0.35);
}
.work-hero-lead {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto;
}

/* SERVICES CONTENT */
.work-tabs {
  padding: 0;
  background: var(--ivory);
}
.work-tabs > .work-tab-content[data-wcontent="education"] {
  padding: clamp(48px, 6vw, 80px) var(--gutter) 0;
}
.work-tabs-nav {
  display: flex;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.work-tab {
  flex: 1 1 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(58, 46, 42, 0.04);
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .work-tabs-nav,
  .insights-tabs-band .work-tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
  }
  .work-tabs-nav::-webkit-scrollbar,
  .insights-tabs-band .work-tabs-nav::-webkit-scrollbar { display: none; }
  .work-tab {
    flex: 0 0 auto;
    font-size: 9px;
    padding: 10px 14px;
    letter-spacing: 0.12em;
  }
}
.work-tab:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(193, 104, 74, 0.08);
  transform: translateY(-1px);
}
.work-tab.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: 0 6px 16px -8px rgba(193, 104, 74, 0.55);
}

.work-tab-content { display: none; animation: av3FadeIn .5s ease; }
.work-tab-content.active { display: block; }

.work-consult-panels {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
.work-consult-panels { flex: 1; min-height: 0; height: 100%; }
.work-consult-panels > .work-tab-content { flex: 1; height: 100%; min-height: 0; }
.work-consult-panels > .work-tab-content.active { display: flex; flex-direction: column; }
.work-consult-panels > .work-tab-content.active > .work-consult-panel {
  flex: 1;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.work-under-construction {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) 32px;
  text-align: center;
  background: var(--ivory-warm);
  border: 1px dashed rgba(58, 46, 42, 0.25);
  border-radius: 18px;
}
.work-under-construction .section-label { margin-bottom: 20px; }
.work-under-construction h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 16px;
}
.work-under-construction h3 em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.work-under-construction p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mocha);
  opacity: 0.82;
}

.work-intro {
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.work-intro-body {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--indigo);
  opacity: 0.88;
}

/* Consulting intro inside right panel */
.work-consult-intro {
  margin: 0 0 clamp(20px, 2.4vw, 28px);
  max-width: 680px;
}
.work-consult-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--indigo);
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.work-consult-headline em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.work-consult-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mocha);
  opacity: 0.88;
  margin: 0;
}

/* CONSULTING LAYOUT — image flush to left edge + tabs on right */
.work-consult-grid {
  display: grid;
  grid-template-columns: clamp(320px, 38vw, 520px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  height: 620px;
}
.work-consult-media {
  position: relative;
  overflow: hidden;
}
.work-consult-portrait {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.work-consult-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.work-consult-portrait img[src*="exec-ed-portrait"] {
  object-position: 0% center;
}
.work-consult-panel {
  padding: clamp(28px, 3.4vw, 48px) clamp(28px, 3.4vw, 48px) clamp(28px, 3.4vw, 48px) clamp(32px, 4vw, 56px);
}

/* Consulting section eyebrow */
.work-consult-eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-violet);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
}
.work-consult-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--muted-violet);
}

/* Consulting list — numbered drop-downs (about-style) */
.work-consult-panel {
  height: 620px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.work-consult-intro {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 36px;
  max-width: 680px;
}
.work-consult-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
}
.work-consult-item {
  flex: 1 1 0;
  min-height: 0;
}
.work-consult-item[open] {
  flex: 0 0 auto;
}
.work-consult-list:has(.work-consult-item[open]) .work-consult-item:not([open]) {
  flex: 0 0 auto;
}
.work-consult-list::-webkit-scrollbar { width: 6px; }
.work-consult-list::-webkit-scrollbar-track { background: transparent; }
.work-consult-list::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: 999px;
}
.work-consult-list::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta-soft);
}
.work-consult-item {
  border-bottom: 1px solid rgba(58, 46, 42, 0.14);
}
.work-consult-item:first-child {
  border-top: 1px solid rgba(58, 46, 42, 0.14);
}
.work-consult-item summary {
  display: grid;
  grid-template-columns: 56px 1fr 20px;
  gap: 16px;
  align-items: center;
  padding: 28px 4px;
  cursor: pointer;
  list-style: none;
}
.work-consult-item summary::-webkit-details-marker { display: none; }
.wcl-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  line-height: 1;
}
.wcl-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
  line-height: 1.3;
}
.wcl-icon {
  position: relative;
  width: 16px;
  height: 16px;
  justify-self: end;
}
.wcl-icon::before,
.wcl-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--indigo);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.wcl-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.wcl-icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.work-consult-item[open] .wcl-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.wcl-body {
  padding: 0 4px 16px 76px;
  margin-top: -4px;
  animation: av3FadeIn .4s ease;
}
.wcl-body > p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mocha);
  opacity: 0.88;
  margin-bottom: 14px;
  max-width: 620px;
}

@media (max-width: 900px) {
  .work-consult-panel { height: auto !important; max-height: none; overflow: visible; }
  .work-consult-list { overflow-y: visible; flex: none; }
  .work-consult-item { flex: none; }
  .wcl-body { padding-left: 56px; }
  .work-consult-item summary { grid-template-columns: 40px 1fr 20px; gap: 12px; padding: 20px 0; }
  .wcl-body > p { max-width: 100%; }
}

/* Service tiles — static compact callouts */
.svc-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}
.svc-tile {
  padding: 14px 18px;
  background: rgba(193, 104, 74, 0.07);
  border: 1px solid rgba(193, 104, 74, 0.22);
  border-radius: 12px;
}
.svc-tile-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}
.svc-tile h4 {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 16px;
  color: var(--indigo);
  line-height: 1.25;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.svc-tile p {
  font-family: var(--font-body);
  font-size: 12.5px !important;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mocha);
  opacity: 0.9;
  margin: 0 !important;
  max-width: none !important;
}
.svc-tile-meta {
  list-style: none;
  padding: 8px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(58, 46, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-tile-meta li {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.85;
  line-height: 1.55;
}
.svc-tile-meta li span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-violet);
  margin-right: 10px;
  display: inline-block;
  min-width: 66px;
}
.svc-tile-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.svc-tile-link:hover {
  background: rgba(193, 104, 74, 0.12);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}
.svc-tile-topics {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-tile-topics li {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--mocha);
  opacity: 0.9;
  padding-left: 14px;
  position: relative;
}
.svc-tile-topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* "Let's connect" CTA inside work dropdowns */
.svc-tile::after,
.wcl-body::after {
  content: '';
  display: table;
  clear: both;
}
.svc-connect-cta {
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap .3s ease, color .3s ease;
}
.svc-connect-cta svg { width: 12px; height: 12px; }
.svc-connect-cta:hover { gap: 14px; color: var(--indigo); }

/* Service mini flip cards (legacy, unused) */
.svc-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 760px;
}
.svc-card {
  height: 150px;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}
.svc-card:focus-visible .svc-inner {
  box-shadow: 0 0 0 3px rgba(193, 104, 74, 0.4);
}
.svc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  transform-style: preserve-3d;
}
.svc-card.is-flipped .svc-inner { transform: rotateY(180deg); }

.svc-face {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-front {
  background: rgba(193, 104, 74, 0.08);
  border: 1px solid rgba(193, 104, 74, 0.28);
}
.svc-card:hover .svc-front {
  background: rgba(193, 104, 74, 0.12);
  border-color: var(--terracotta);
}
.svc-back {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.9);
  transform: rotateY(180deg);
  overflow-y: auto;
}
.svc-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.svc-front h4 {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--indigo);
  line-height: 1.2;
  margin-top: 8px;
  letter-spacing: 0.005em;
}
.svc-hint {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}
.svc-back p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}
.svc-meta {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-meta li {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.svc-meta li span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-right: 8px;
}

@media (max-width: 900px) {
  .work-consult-grid { grid-template-columns: 1fr; height: auto !important; min-height: 0; }
  .work-consult-media { height: 360px; }
  .work-consult-panels,
  .work-consult-panels > .work-tab-content,
  .work-consult-panels > .work-tab-content.active,
  .work-consult-panels > .work-tab-content.active > .work-consult-panel { height: auto !important; min-height: 0; }
  .work-consult-panel { padding: 32px var(--gutter); height: auto !important; }
  .work-approach-inner .work-tabs-nav { justify-content: center; }
}

/* ACCORDION (tightened, about-style) */
.work-accordion {
  border-top: 1px solid var(--warm-taupe);
}
.work-acc {
  border-bottom: 1px solid var(--warm-taupe);
}
.work-acc-head {
  display: grid;
  grid-template-columns: 44px 1fr 26px;
  gap: 18px;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding-left .3s ease;
}
.work-acc-head::-webkit-details-marker { display: none; }
.work-acc-head:hover { padding-left: 12px; }
.work-acc-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  line-height: 1;
}
.work-acc-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--indigo);
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.work-acc-icon {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
  display: inline-block;
}
.work-acc-icon::before,
.work-acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--indigo);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.work-acc-icon::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.work-acc-icon::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.work-acc[open] .work-acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.work-acc-body {
  padding: 4px 4px 28px calc(44px + 18px);
  animation: av3FadeIn .4s ease;
}
.work-acc-body > p { max-width: 720px; font-size: 14px; }
.work-acc-body p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mocha);
  opacity: 0.88;
  margin-bottom: 18px;
}
.work-acc-body p:last-child { margin-bottom: 0; }

.work-offer {
  margin: 18px 0 4px;
  padding: 16px 20px;
  background: rgba(193, 104, 74, 0.06);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 10px 10px 0;
}
.work-offer-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
}
.work-offer h4 {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 17px;
  color: var(--indigo);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: 0.005em;
}
.work-offer p {
  font-size: 13px !important;
  margin-bottom: 10px !important;
}
.work-offer p:last-child { margin-bottom: 0 !important; }
.work-offer-meta {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-offer-meta li {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.88;
  line-height: 1.65;
}
.work-offer-meta li span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-violet);
  margin-right: 14px;
  display: inline-block;
  min-width: 70px;
}
.work-topics {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.work-topics li {
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(58, 46, 42, 0.1);
  font-size: 14px;
  color: var(--mocha);
  opacity: 0.88;
  position: relative;
}
.work-topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: translateY(-50%);
}
.work-topics li:last-child { border-bottom: none; }

/* APPROACH + SERVICES TABS — unified ivory-warm band */
.work-approach-section {
  background: var(--ivory-warm);
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(58, 46, 42, 0.14);
  border-bottom: 1px solid rgba(58, 46, 42, 0.14);
}
.work-approach-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.work-approach-inner .section-label { margin-bottom: 24px; }
.work-approach-inner .work-tabs-nav {
  margin: clamp(32px, 4vw, 48px) auto 0;
}
.work-approach-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--indigo);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.work-approach-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.work-approach-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mocha);
  opacity: 0.88;
  max-width: 760px;
  margin: 0 auto;
}

/* FLIP CARDS — compact */
.flip-grid {
  margin: 20px 0 4px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 720px;
}
.flip-card {
  aspect-ratio: 1 / 1;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}
.flip-card:focus-visible .flip-inner {
  box-shadow: 0 0 0 3px rgba(193, 104, 74, 0.5);
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  padding: 18px 18px;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flip-front {
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.16);
  color: var(--indigo);
}
.flip-back {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.88);
  transform: rotateY(180deg);
  overflow-y: auto;
}
.flip-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.flip-front h4 {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--indigo);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin-top: 10px;
}
.flip-hint {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 10.5px;
  color: var(--muted-violet);
  opacity: 0.75;
  letter-spacing: 0.02em;
}
.flip-back p {
  font-family: var(--font-body);
  font-size: 11.5px !important;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88) !important;
  opacity: 1 !important;
  margin-bottom: 10px !important;
}
.flip-meta {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flip-meta li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.flip-meta li span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-right: 10px;
  display: inline-block;
  min-width: 64px;
}

/* CLIENT REVIEWS — persistent section below tabs */
.work-reviews-section {
  padding: 0 0 clamp(40px, 5vw, 72px);
  background: var(--ivory);
  overflow: hidden;
}

.work-reviews-inline {
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  padding: clamp(16px, 2vw, 28px) var(--gutter);
  border-top: 1px solid var(--warm-taupe);
  border-bottom: 1px solid var(--warm-taupe);
  background: transparent;
}
.work-reviews-inline .work-reviews-head {
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.work-reviews-inline .work-reviews-head .section-label { margin-bottom: 10px; }
.work-reviews-inline .work-reviews-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--indigo);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.work-reviews-inline .work-reviews-head h3 em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--terracotta);
}
.review-grid {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.review-card {
  display: none;
  position: relative;
  padding: 28px 56px 32px;
  background: var(--ivory-warm);
  border: 1px solid rgba(58, 46, 42, 0.12);
  border-radius: 18px;
  text-align: center;
}
.review-card.active {
  display: block;
  animation: reviewFadeIn .5s ease;
}
.review-card.fade-out {
  animation: reviewFadeOut .4s ease forwards;
}
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reviewFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}
.review-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  height: 36px;
  overflow: hidden;
  color: var(--terracotta);
  opacity: 0.28;
  display: block;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--indigo);
  margin: 0;
  padding-bottom: 14px;
}
.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.review-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(58, 46, 42, 0.2);
  background: transparent;
  color: var(--indigo);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.review-arrow:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.review-arrow svg { width: 16px; height: 16px; }
.review-dots {
  display: flex;
  gap: 8px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(58, 46, 42, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s;
}
.review-dot.active {
  background: var(--terracotta);
}
.review-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(58, 46, 42, 0.1);
  border-top: 1px solid rgba(58, 46, 42, 0.12);
}
.review-avatar {
  display: none;
}
.review-attr strong {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.review-attr span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mocha);
  opacity: 0.78;
}

@media (max-width: 900px) {
  .review-card {
    padding: 28px 20px 24px;
    margin: 0 4px;
  }
  .review-card blockquote {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 8px;
  }
  .review-mark {
    font-size: 52px;
    top: 18px;
    left: 18px;
  }
  .review-attr { padding-top: 14px; }
  .review-attr strong { font-size: 12px; }
  .review-attr span { font-size: 11px; }
  .review-nav { gap: 16px; margin-top: 16px; }
  .review-arrow { width: 36px; height: 36px; }
  .review-arrow svg { width: 14px; height: 14px; }
  .work-acc-head { grid-template-columns: 44px 1fr 28px; gap: 16px; }
  .work-acc-body { padding-left: calc(44px + 16px); }
}

/* ============ MOBILE TIGHTENING ============ */
@media (max-width: 600px) {
  .wcl-body { padding-left: 0; padding-right: 0; }
  .svc-tile { padding: 12px 14px; }
  .svc-connect-cta { font-size: 9px; }
  .work-consult-media { height: 260px; }
  .work-consult-headline { font-size: clamp(20px, 5vw, 28px); }
  .book-extract-inner { grid-template-columns: 1fr; }
  .book-extract-portrait { height: 420px; }
  /* Podcast play button always visible on mobile */
  .podcast-card-play { opacity: 1; background: rgba(31, 42, 94, 0.7); }

  /* Footer compact on mobile */
  .footer-middle { padding: 20px 0 !important; }
  .footer-badge { flex-direction: column; text-align: center; gap: 12px; }
  .footer-badge img { margin: 0 auto; }
  .footer-logo { height: 72px; }
}
