/* =========================================================
   Consultant Daaru — Portfolio Redesign v2
   New palette: Blue-Black · Hunter Green · Warm Amber
   ========================================================= */

:root {
  /* ── DARK THEME (Default) ── */
  --bg:           #08090b;
  --surface:      #0e1117;
  --surface-2:    #151b24;
  --surface-3:    #1c2534;
  --surface-card: #111620;

  /* Brand — Hunter Green */
  --green:        #1a6b5f;
  --green-dark:   #0f4a40;
  --green-deep:   #082e28;
  --green-glow:   rgba(26,107,95,.18);
  --green-light:  #22d9b5;
  --green-vivid:  #3ef5d6;

  /* Accent — Warm Amber Gold */
  --gold:         #d4a853;
  --gold-dark:    #b08030;
  --gold-light:   #e8c070;
  --gold-pale:    #f5dea0;
  --gold-glow:    rgba(212,168,83,.18);
  --gold-subtle:  rgba(212,168,83,.07);

  /* Text */
  --cream:        #e8e2d6;
  --cream-dim:    #b0a898;
  --muted:        #6b7585;
  --muted-light:  #8a95a5;

  /* Borders */
  --border:        rgba(232,226,214,.05);
  --border-mid:    rgba(232,226,214,.11);
  --border-strong: rgba(232,226,214,.20);

  /* Fonts */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-ui:      "DM Sans", "Inter", sans-serif;
  --font-mono:    "DM Mono", "Fira Code", monospace;

  /* System */
  --max:          1300px;
  --ease:         cubic-bezier(.25, 1, .5, 1);
  --ease-spring:  cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
  --shadow:       0 24px 48px rgba(0,0,0,.4);
  --shadow-sm:    0 8px 20px rgba(0,0,0,.25);
  --radius:       3px;
  --radius-lg:    8px;
}

/* LIGHT THEME */
body.light-theme {
  --bg:           #f4f1e6; /* Rich, premium warm cream */
  --surface:      #faf9f5; /* Clean light cream */
  --surface-2:    #e6e2d3; /* Medium warm cream */
  --surface-3:    #dad5c3; /* Deeper cream background accent */
  --surface-card: #faf9f5; /* Clean light cream card */

  --green:        #0d5049; /* High-contrast green */
  --green-dark:   #083833;
  --green-deep:   #e4ecea;
  --green-glow:   rgba(13,80,73,.10);
  --green-light:  #0d5049;
  --green-vivid:  #08332e;

  --gold:         #9e711b; /* High-contrast gold */
  --gold-dark:    #7a540f;
  --gold-light:   #b88a30;
  --gold-pale:    #d4a853;
  --gold-glow:    rgba(158,113,27,.10);
  --gold-subtle:  rgba(158,113,27,.04);

  --cream:        #121211; /* Ultra-dark charcoal for primary headers */
  --cream-dim:    #22211f; /* Dark charcoal for highly visible body texts */
  --muted:        #4e5246; /* Deep olive-grey for sub-texts and captions */
  --muted-light:  #363831; /* Even darker details */

  --border:        rgba(18,18,17,.08);
  --border-mid:    rgba(18,18,17,.16);
  --border-strong: rgba(18,18,17,.28);
  --shadow:       0 20px 40px rgba(13,80,73,.04);
  --shadow-sm:    0 6px 16px rgba(0,0,0,.06);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream-dim);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: #06080a; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3.5rem; } }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--cream);
}
.display em, .accent-italic {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
}
.display strong { font-weight: 700; color: var(--green-light); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
}

.section-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   ACCENT TOP BAR
══════════════════════════════════════════ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 50%, var(--gold) 100%);
  z-index: 200;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 9, 11, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
}
body.light-theme .nav.scrolled {
  background: rgba(248, 246, 240, .93);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .dot { color: var(--gold); }
.logo:hover { color: var(--cream); }

/* Nav links */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { .nav-menu { display: flex; } }

.nav-link {
  position: relative;
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
  padding: .3rem 0;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav right controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.theme-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--cream-dim);
  transition: all .3s var(--ease);
  background: transparent;
}
.theme-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream-dim);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-loc {
  position: absolute;
  bottom: 2rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: #06080a;
  border: none;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--gold-glow);
  color: #06080a;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--green-glow);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}
.btn-sm { padding: .7rem 1.5rem; font-size: .62rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: .74rem; }
.btn .arr { display: inline-block; transition: transform .3s var(--ease-spring); }
.btn:hover .arr { transform: translateX(4px); }

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.section { padding: 7rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 10rem 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 4.5rem;
}
.section-head.centered { text-align: center; align-items: center; }

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .19s; }
.stagger > *:nth-child(4) { transition-delay: .26s; }
.stagger > *:nth-child(5) { transition-delay: .33s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }

/* ══════════════════════════════════════════
   HERO (index.html)
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 6rem);
  padding: 3rem 0 4rem;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 5rem; }
}
@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 480px; }
}

/* Hero background mesh */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(26,107,95,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(212,168,83,.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* Hero text */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: 40px;
  margin-bottom: 1.5rem;
  background: var(--green-glow);
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: .95;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -.02em;
}
.hero-name .serif-italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-name .bold { font-weight: 700; display: block; }

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.8rem 0;
}
.role-chip {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--cream-dim);
  background: rgba(255,255,255,.02);
}
.role-chip.featured {
  border-color: var(--green);
  color: var(--green-light);
  background: var(--green-glow);
}

.hero-bio {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 55ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.hero-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

/* Hero photo */
.hero-photo { position: relative; }
.hero-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.hero-photo-frame:hover img { transform: scale(1.03); }
.hero-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,9,11,.6) 100%);
  border-radius: var(--radius-lg);
}

/* Floating credential cards */
.cred-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: .9rem 1.2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.cred-card:nth-child(2) { animation-delay: -2s; }
.cred-card:nth-child(3) { animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cred-card.top-left { top: 1.5rem; left: -1.5rem; }
.cred-card.bottom-right { bottom: 3rem; right: -1.5rem; }
@media (max-width: 899px) { .cred-card { display: none; } }

.cred-card .cred-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.cred-card .cred-lbl {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track .bullet { color: var(--green-light); }

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 640px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }

.stat-cell {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.stat-cell:hover { background: var(--surface); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.stat-num span { font-size: .65em; color: var(--green-light); }
.stat-label {
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 20ch;
}

/* ══════════════════════════════════════════
   EXPERTISE TABS
══════════════════════════════════════════ */
.expertise-section { background: var(--surface); }

.expertise-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.exp-tab {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.1rem 1.8rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  margin-bottom: -1px;
  background: none;
}
.exp-tab:hover { color: var(--cream); }
.exp-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.expertise-panels { position: relative; }
.exp-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: center;
}
@media (min-width: 768px) { .exp-panel { grid-template-columns: 1fr 1fr; } }
.exp-panel.active { display: grid; }

.exp-panel-text { display: flex; flex-direction: column; gap: 1.5rem; }
.exp-panel-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border-mid);
  line-height: 1;
  font-weight: 700;
}
.exp-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.15;
}
.exp-panel-body {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 50ch;
}
.exp-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.exp-tag {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green-light);
}

.exp-panel-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.exp-panel-img:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════
   VENTURES BENTO (homepage)
══════════════════════════════════════════ */
.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bento-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .bento-tall { grid-row: 1 / 3; }
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-card);
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  min-height: 280px;
}
.bento-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.bento-card-img {
  flex: 1;
  overflow: hidden;
  min-height: 200px;
}
.bento-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.bento-card:hover .bento-card-img img { transform: scale(1.06); }
.bento-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
}
.bento-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}
.bento-role {
  font-size: .82rem;
  color: var(--muted);
}
.bento-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.bento-card:hover .bento-arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

/* ══════════════════════════════════════════
   PRESS TICKER
══════════════════════════════════════════ */
.press-ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.press-ticker-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 .5rem;
}
.press-ticker-inner::-webkit-scrollbar { display: none; }
.press-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.press-divider {
  width: 1px; height: 2rem;
  background: var(--border-mid);
  flex-shrink: 0;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}
.press-logo-item {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
  transition: color .3s var(--ease);
  letter-spacing: .02em;
}
.press-logo-item:hover { color: var(--cream); }

/* ══════════════════════════════════════════
   TESTIMONIAL (homepage)
══════════════════════════════════════════ */
.testimonial-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 7rem 0;
}
.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.test-quote-mark {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: .5;
  color: var(--green);
  opacity: .3;
  margin-bottom: 1rem;
  font-weight: 700;
}
.test-cards { position: relative; min-height: 180px; }
.test-card {
  opacity: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.test-card.active { opacity: 1; pointer-events: auto; position: relative; inset: auto; }

.test-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 72ch;
}
.test-card cite {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.5rem;
}
.test-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all .3s var(--ease);
}
.test-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: var(--green-dark);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,168,83,.12), transparent);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band .display { color: #fff; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 44ch; margin-top: .8rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.foot {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.foot-main {
  display: grid;
  gap: 3rem;
  padding: 5rem 0 4rem;
}
@media (min-width: 900px) {
  .foot-main { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}
.foot-brand {}
.foot-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 1rem; }
.foot-brand p { font-size: .9rem; color: var(--muted); line-height: 1.65; max-width: 30ch; }
.foot-socials { display: flex; gap: .7rem; margin-top: 1.5rem; }
.foot-social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .75rem;
  transition: all .3s var(--ease);
}
.foot-social-link:hover { border-color: var(--gold); color: var(--gold); }

.foot-col h5 {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.foot-col a, .foot-col span {
  display: block;
  font-size: .88rem;
  color: var(--cream-dim);
  margin-bottom: .6rem;
  transition: color .25s;
}
.foot-col a:hover { color: var(--gold); }

.foot-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.foot-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
}
@media (min-width: 600px) {
  .foot-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.foot-admin-link {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--border-strong);
  text-transform: uppercase;
  transition: color .3s;
}
.foot-admin-link:hover { color: var(--muted); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,11,.95) 0%, rgba(8,9,11,.65) 40%, rgba(8,9,11,.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  width: 100%;
}
.page-hero-content .eyebrow { margin-bottom: 1rem; }
.page-hero-content .display { font-size: clamp(2.8rem, 6vw, 6rem); }
.page-lede {
  margin-top: 1.5rem;
  max-width: 60ch;
  color: rgba(232,226,214,.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT PAGE — CHAPTER BIO
══════════════════════════════════════════ */
.bio-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) { .bio-grid { grid-template-columns: 360px 1fr; gap: 6rem; } }

.bio-photo-col {
  position: sticky;
  top: 6rem;
}
.bio-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 360px;
}
.bio-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bio-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,9,11,.7) 100%);
}
.bio-credentials {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.bio-cred {
  background: var(--surface);
  padding: 1.2rem 1rem;
}
.bio-cred .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.bio-cred .l {
  margin-top: .3rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Bio chapters */
.bio-chapters { display: flex; flex-direction: column; gap: 3.5rem; }
.bio-chapter { border-top: 1px solid var(--border); padding-top: 2.5rem; }
.bio-chapter-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .8rem;
}
.bio-chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.bio-chapter p { color: var(--cream-dim); font-size: 1rem; line-height: 1.78; margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   ZIGZAG TIMELINE
══════════════════════════════════════════ */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-mid);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .timeline::before { left: 1.5rem; }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .timeline-item { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .timeline-item.right .timeline-card { order: 2; }
  .timeline-item.right .timeline-year { order: 1; text-align: right; }
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--border-strong);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .timeline-year { justify-content: flex-end; } }
.timeline-item.right .timeline-year { justify-content: flex-start; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: .5rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .timeline-dot { left: 1.5rem; }
  .timeline-year { padding-left: 3.5rem; font-size: 2rem; }
}

.timeline-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.timeline-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.timeline-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.timeline-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.timeline-card:hover .timeline-card-img img { transform: scale(1.05); }
.timeline-card-content {
  padding: 1.8rem;
}
.timeline-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: .4rem;
}
.timeline-card .org {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .8rem;
}
.timeline-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   VALUES STRIP (about)
══════════════════════════════════════════ */
.values-strip {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .values-strip { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--surface);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s var(--ease);
}
.value-card:hover { background: var(--surface-2); }
.value-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
}
.value-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   EDUCATION (Redesigned Premium Layout)
══════════════════════════════════════════ */
.edu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .edu-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .edu-grid { grid-template-columns: repeat(3, 1fr); } }

.edu-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.edu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.edu-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212,168,83,.05);
}
.edu-card:hover::before {
  opacity: 1;
}
.edu-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.2rem;
  border: 1px solid rgba(34,217,181,.15);
}
.edu-card-year {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
}
.edu-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.25;
}
.edu-card .school {
  font-size: .88rem;
  color: var(--muted-light);
}
.edu-card-details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.edu-card-details ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.edu-card-details li {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  gap: .5rem;
  line-height: 1.4;
}
.edu-card-details li::before {
  content: "✦";
  color: var(--gold);
  font-size: .65rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   VENTURES PAGE — ALTERNATING SECTIONS
══════════════════════════════════════════ */
.venture-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.venture-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) { .venture-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.venture-grid.flip > *:first-child { order: 2; }
.venture-grid.flip > *:last-child { order: 1; }
@media (max-width: 899px) {
  .venture-grid.flip > * { order: unset; }
}

.venture-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.venture-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.venture-img:hover img { transform: scale(1.04); }
.venture-img-badge {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: .5rem .9rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.venture-text { display: flex; flex-direction: column; gap: 1.5rem; }
.venture-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border-mid);
  font-weight: 700;
  line-height: 1;
}
.venture-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.15;
}
.venture-role-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  background: var(--green-glow);
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green-light);
}
.venture-desc { font-size: .95rem; color: var(--cream-dim); line-height: 1.75; }
.venture-pillars { display: flex; flex-wrap: wrap; gap: .5rem; }
.venture-pillar {
  font-size: .78rem;
  padding: .35rem .8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}
.venture-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.venture-meta span {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
}
.venture-meta strong { color: var(--cream-dim); font-size: .85rem; font-family: var(--font-body); font-weight: 400; }

/* Partner strip */
.partner-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.partner-name {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.partner-name:hover { color: var(--cream); }

/* ══════════════════════════════════════════
   WRITING PAGE
══════════════════════════════════════════ */
.featured-article {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s var(--ease);
}
@media (min-width: 640px) { .featured-article { grid-template-columns: 1fr auto; align-items: start; } }
.featured-article:hover { border-color: var(--gold); }
.featured-article::before {
  content: "Featured";
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--gold);
  padding: .3rem .7rem;
  border-radius: 2px;
}
.featured-article-cat {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .5rem;
}
.featured-article-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: .8rem;
}
.featured-article-pub {
  font-size: .85rem;
  color: var(--muted);
}
.featured-article-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: .5rem;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.featured-article:hover .featured-article-arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

/* Filter tags */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s var(--ease);
  background: transparent;
}
.filter-btn:hover { border-color: var(--cream-dim); color: var(--cream-dim); }
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }

/* Press list */
.press-list { display: flex; flex-direction: column; }
.press-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  cursor: pointer;
  transition: background .25s;
}
@media (min-width: 640px) {
  .press-item { grid-template-columns: 3rem 1fr 160px 100px; }
}
.press-item:hover { background: var(--surface); padding-left: .8rem; padding-right: .8rem; margin: 0 -.8rem; border-radius: var(--radius); }
.pi-num {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--border-strong);
  padding-top: .2rem;
}
.pi-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.3;
  transition: color .25s;
}
.press-item:hover .pi-title { color: var(--gold); }
.pi-pub { font-size: .85rem; color: var(--muted); }
.pi-cat {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  text-align: right;
  display: none;
}
@media (min-width: 640px) { .pi-cat { display: block; } }

/* Pitch CTA */
.pitch-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 3rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .pitch-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.pitch-cta p { font-size: .95rem; color: var(--muted); max-width: 50ch; }

/* Article modal */
.article-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,11,.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.article-modal.open { opacity: 1; pointer-events: auto; }
.article-modal-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  max-width: 660px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}
.article-modal.open .article-modal-card { transform: none; }
.am-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.am-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); font-weight: 400; line-height: 1.3; }
.am-meta { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-light); }
.am-body { font-size: .95rem; color: var(--cream-dim); line-height: 1.75; }

/* ══════════════════════════════════════════
   SPEAKING PAGE
══════════════════════════════════════════ */
.speak-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.speak-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.speak-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,rgba(8,9,11,1) 0%,rgba(8,9,11,.55) 40%,rgba(8,9,11,.25) 100%);
}
.speak-hero-content { position: relative; z-index: 2; padding-top: 8rem; width: 100%; }

/* Engagement rows */
.engage-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.engage-row {
  display: grid;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--surface-card);
  align-items: center;
  transition: background .3s var(--ease);
}
@media (min-width: 640px) { .engage-row { grid-template-columns: 60px 1fr auto; } }
.engage-row:hover { background: var(--surface-2); }
.engage-icon-box {
  width: 52px; height: 52px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.engage-row:hover .engage-icon-box {
  border-color: var(--green);
  background: var(--green-glow);
}
.engage-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: .4rem;
}
.engage-text p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.engage-pill {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Past engagements */
.past-events { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  gap: 1rem 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 640px) { .event-row { grid-template-columns: 100px 1fr auto; } }
.event-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.event-details h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: .3rem;
}
.event-details p { font-size: .85rem; color: var(--muted); }
.event-topic {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  white-space: nowrap;
}

/* Speak gallery */
.speak-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .speak-gallery { grid-template-columns: repeat(3, 1fr); } }
.speak-gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.speak-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.speak-gallery-item:hover img { transform: scale(1.06); }

/* Booking split */
.booking-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .booking-split { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.booking-detail-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.booking-detail-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1rem;
}
.booking-detail-card ul { display: flex; flex-direction: column; gap: .6rem; }
.booking-detail-card li {
  display: flex;
  gap: .8rem;
  font-size: .9rem;
  color: var(--muted);
}
.booking-detail-card li::before { content: "–"; color: var(--green-light); flex-shrink: 0; }

/* ══════════════════════════════════════════
   CONTACT PAGE — SPLIT LAYOUT
══════════════════════════════════════════ */
.contact-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .contact-split { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.contact-info-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 6rem;
}
.contact-info-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-info-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.contact-info-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 400;
}
.contact-info-title { font-size: .88rem; color: var(--muted); margin-top: .2rem; }

.contact-info-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact-info-value { font-size: .9rem; color: var(--cream-dim); }
.contact-info-socials { display: flex; gap: .6rem; }
.contact-social-btn {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--cream-dim);
  transition: all .25s var(--ease);
  background: transparent;
}
.contact-social-btn:hover { border-color: var(--gold); color: var(--gold); }

.contact-location {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .85rem;
  color: var(--muted);
}

/* Contact form */
.contact-form-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 400;
}
.contact-form-wrap p { font-size: .9rem; color: var(--muted); margin-top: .3rem; }

/* Form elements */
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--cream);
  width: 100%;
  transition: border-color .25s var(--ease);
  appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
body.light-theme .field input,
body.light-theme .field textarea,
body.light-theme .field select {
  background: var(--surface);
}

.form-row { display: grid; gap: 1rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-msg {
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
  line-height: 1.5;
}
.form-msg.ok { background: var(--green-glow); border: 1px solid var(--green); color: var(--green-light); }
.form-msg.err { background: rgba(200,60,60,.1); border: 1px solid rgba(200,60,60,.3); color: #e08080; }

/* ══════════════════════════════════════════
   CALENDAR & SCHEDULER
══════════════════════════════════════════ */
.calendar-wrapper {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.calendar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
}
.calendar-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  color: var(--cream-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: all .25s var(--ease);
  background: transparent;
}
.calendar-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  padding: 1rem;
  background: var(--border);
}
.calendar-weekday {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem 0;
  background: var(--surface-2);
}
.calendar-day {
  background: var(--surface-2);
  text-align: center;
  padding: .7rem .3rem;
  font-size: .88rem;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all .2s var(--ease);
  border-radius: 2px;
}
.calendar-day:hover:not(.disabled):not(.selected) {
  background: var(--green-glow);
  color: var(--green-light);
}
.calendar-day.today { color: var(--gold); font-weight: 600; }
.calendar-day.selected { background: var(--gold); color: #06080a; font-weight: 700; }
.calendar-day.disabled { opacity: .25; cursor: not-allowed; }

.slots-wrapper { padding: 0 1rem 1rem; }
.slots-title {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
  padding: 1rem 0 0;
}
.slots-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot-chip {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  padding: .6rem 1.2rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all .2s var(--ease);
  background: transparent;
}
.slot-chip:hover:not(.disabled) { border-color: var(--gold); color: var(--gold); }
.slot-chip.selected { background: var(--gold); border-color: var(--gold); color: #06080a; }
.slot-chip.disabled { opacity: .3; cursor: not-allowed; }

/* ══════════════════════════════════════════
   AFFILIATIONS
══════════════════════════════════════════ */
.affil-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.affil-pill {
  padding: .9rem 1.8rem;
  border: 1px solid var(--border-mid);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transition: all .3s var(--ease);
}
.affil-pill:hover { border-color: var(--green-light); background: var(--green-glow); }
.affil-abbr {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
}
.affil-full { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════════════════
   LINK ARROW
══════════════════════════════════════════ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: .9rem; color: var(--gold); }

/* ══════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════ */
.photo-gallery {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .photo-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .photo-gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: grayscale(.2);
}
.gallery-img:hover img { transform: scale(1.07); filter: grayscale(0); }

/* ══════════════════════════════════════════
   AWARDS (about page)
══════════════════════════════════════════ */
.awards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
.award-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.award-img img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════
   ADMIN PAGE
══════════════════════════════════════════ */
.admin-pin-gate {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}
.admin-pin-gate h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
}
.admin-pin-gate p { font-size: .9rem; color: var(--muted); max-width: 36ch; }
.admin-pin-gate input {
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  color: var(--cream);
  text-align: center;
  letter-spacing: .4em;
  width: 200px;
}
.admin-pin-gate input:focus { outline: none; border-color: var(--gold); }
.admin-pin-error {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  color: #e08080;
  text-transform: uppercase;
  min-height: 1.2rem;
}

/* Admin layout */
.admin-wrap { padding: 8rem 0 4rem; max-width: 1100px; margin: 0 auto; }
.admin-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; gap: 0; }
.admin-tab {
  padding: .9rem 1.8rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  margin-bottom: -1px;
  background: none;
}
.admin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.tag-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--muted);
}
.chip {
  display: inline-block;
  font-size: .78rem;
  padding: .4rem .9rem;
  background: var(--surface-2);
  border-radius: 2px;
  color: var(--cream-dim);
  border: 1px solid var(--border);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
}
.scroll-hint span {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--border-strong), transparent);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════
   RESPONSIVE HELPERS
══════════════════════════════════════════ */
@media (max-width: 767px) {
  .section { padding: 5rem 0; }
  .section-head { margin-bottom: 3rem; }
  .hero-grid { padding-top: 5rem; }
  .bento-card { min-height: 220px; }
}

/* ══════════════════════════════════════════
   LIGHTBOX / IMAGE VIEWER
══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4,5,7,.97);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: scale(.95);
  transition: transform .35s var(--ease);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 65vh;
  object-fit: contain;
  display: block;
}
.lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.3;
}
.lightbox-desc {
  font-size: .9rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.65;
}
.lightbox-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
  transition: gap .3s;
}
.lightbox-link:hover { gap: .9rem; color: var(--gold); }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .25s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: all .25s;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: -1.5rem; }
.lightbox-next { right: -1.5rem; }
@media (max-width: 767px) { .lightbox-prev { left: .5rem; } .lightbox-next { right: .5rem; } }

/* Timeline card — tap to view overlay */
.timeline-card-img {
  cursor: pointer;
  position: relative;
}
.timeline-card-img::after {
  content: "Tap to view";
  position: absolute;
  bottom: .8rem; right: .8rem;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(8,9,11,.75);
  color: var(--gold);
  padding: .3rem .7rem;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .25s;
}
.timeline-card-img:hover::after { opacity: 1; }

/* ══════════════════════════════════════════
   MOMENTS OF IMPACT — CATEGORIZED GALLERY
══════════════════════════════════════════ */
.impact-categories {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.impact-cat {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.impact-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.impact-cat-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
}
.impact-cat-badge {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green);
  padding: .3rem .8rem;
  border-radius: 2px;
}
.impact-gallery {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .impact-gallery { grid-template-columns: repeat(3, 1fr); } }
.impact-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.impact-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .3s;
  filter: brightness(.9);
}
.impact-img:hover img { transform: scale(1.07); filter: brightness(1); }
.impact-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,11,.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: .8rem;
  opacity: 0;
  transition: opacity .3s;
}
.impact-img:hover .impact-img-overlay { opacity: 1; }
.impact-img-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.impact-view-more {
  display: flex;
  justify-content: flex-end;
  margin-top: .8rem;
}

/* ══════════════════════════════════════════
   ENGAGE ROWS — CLICKABLE WITH ACCORDION
══════════════════════════════════════════ */
.engage-row {
  cursor: pointer;
}
.engage-row .engage-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out), opacity .3s;
  opacity: 0;
  grid-column: 1 / -1;
}
.engage-row.expanded .engage-expand {
  max-height: 400px;
  opacity: 1;
}
.engage-expand-inner {
  padding: 1.2rem 0 0 74px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.2rem;
}
@media (max-width: 639px) { .engage-expand-inner { padding-left: 0; } }
.engage-expand-inner h5 {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .2rem;
}
.engage-expand-inner p {
  font-size: .9rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 65ch;
}
.engage-expand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.engage-expand-tag {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}
.engage-row .engage-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  transition: all .3s, transform .3s var(--ease-spring);
  flex-shrink: 0;
  margin-left: auto;
}
.engage-row.expanded .engage-toggle-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════
   EVENT ROWS — CLICKABLE WITH EXPAND
══════════════════════════════════════════ */
.event-row {
  cursor: pointer;
  transition: background .25s, padding .25s;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.event-row:hover {
  background: var(--surface);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-radius: var(--radius);
}
.event-expand {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .3s;
  opacity: 0;
}
.event-row.expanded .event-expand {
  max-height: 300px;
  opacity: 1;
}
.event-expand-inner {
  padding: 1rem 0 .5rem;
  border-top: 1px dashed var(--border-mid);
  margin-top: .8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.event-expand-inner p { font-size: .88rem; color: var(--cream-dim); line-height: 1.6; }
.event-expand-inner a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .25s;
}
.event-expand-inner a:hover { gap: .8rem; }

/* ══════════════════════════════════════════
   CONTACT PAGE — FULL HERO
══════════════════════════════════════════ */
.contact-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,9,11,.97) 0%, rgba(8,9,11,.7) 50%, rgba(26,107,95,.15) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
}
.contact-hero-content .eyebrow { margin-bottom: 1rem; }
.contact-hero-content .display { font-size: clamp(3rem, 7vw, 6rem); }
.contact-hero-content .page-lede { max-width: 55ch; }
.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2.5rem;
}
.contact-hero-badge {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  border: 1px solid var(--border-mid);
  border-radius: 30px;
  color: var(--cream-dim);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.contact-hero-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT PAGE — REDESIGNED FORM SECTION
══════════════════════════════════════════ */
.contact-page-bg {
  background: var(--bg);
  position: relative;
}
.contact-page-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(26,107,95,.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,168,83,.05) 0%, transparent 55%);
  pointer-events: none;
}
.contact-split-v2 {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) { .contact-split-v2 { grid-template-columns: 380px 1fr; gap: 6rem; } }

.contact-card-v2 {
  background: linear-gradient(145deg, var(--surface-card), var(--surface-2));
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 6rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.contact-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.contact-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .8s var(--ease);
}
.contact-card-v2:hover .contact-card-photo img { transform: scale(1.03); }
.contact-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,11,.8) 0%, transparent 50%);
}
.contact-card-photo-label {
  position: absolute;
  bottom: 1.2rem; left: 1.5rem; right: 1.5rem;
}
.contact-card-photo-label .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
.contact-card-photo-label .title {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}
.contact-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item-v2 {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface-3);
  border: 1px solid var(--border);
  transition: border-color .25s, background .25s;
}
.contact-item-v2:hover { border-color: var(--gold); background: var(--gold-subtle); }
.contact-item-icon-v2 {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--green-glow);
  border: 1px solid rgba(34,217,181,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.contact-item-text-v2 {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-item-lbl-v2 {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item-val-v2 {
  font-size: .92rem;
  color: var(--cream-dim);
  font-weight: 500;
}
.contact-social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.contact-social-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .8rem .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .75rem;
  transition: all .25s;
  background: var(--surface-3);
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-social-v2:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }
.contact-social-v2 svg { color: var(--green-light); }

/* Contact form right side v2 */
.contact-form-v2 {
  background: var(--surface-card);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.contact-form-v2::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--gold));
}
.contact-form-head {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-form-head h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}
.contact-form-head p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-calendar-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
  display: block;
}


/* ══════════════════════════════════════════
   HERO SLIDER & CHAPTER GRID LAYOUT
══════════════════════════════════════════ */
.hero-slide {
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero-slide.active {
  opacity: 1;
}
@media (min-width: 768px) {
  .chapter-grid-layout {
    grid-template-columns: 1.3fr 0.7fr !important;
  }
}


/* ══════════════════════════════════════════
   ALTERNATING COLORS FOR AREAS OF ENGAGEMENT
══════════════════════════════════════════ */
.engage-list .engage-row:nth-child(odd) {
  background: var(--surface-card);
}
.engage-list .engage-row:nth-child(even) {
  background: var(--surface-2);
}

/* Light Theme Alternating Cream/White */
body.light-theme .engage-list .engage-row:nth-child(odd) {
  background: #ffffff;
}
body.light-theme .engage-list .engage-row:nth-child(even) {
  background: #f6f4eb; /* Premium cream tint */
  border-top: 1.5px solid rgba(26, 26, 24, 0.05);
  border-bottom: 1.5px solid rgba(26, 26, 24, 0.05);
}


/* ══════════════════════════════════════════
   ALTERNATING COLORS FOR PAST ENGAGEMENTS
══════════════════════════════════════════ */
.past-events .event-row {
  padding: 1.8rem 1.5rem !important;
  border-bottom: 1px solid var(--border);
  transition: background .25s var(--ease);
}
.past-events .event-row:nth-child(odd) {
  background: var(--surface-card);
}
.past-events .event-row:nth-child(even) {
  background: var(--surface-2);
}
.past-events .event-row:hover {
  background: var(--surface-3) !important;
}

/* Light Theme Past Engagements Alternating */
body.light-theme .past-events .event-row:nth-child(odd) {
  background: #ffffff;
}
body.light-theme .past-events .event-row:nth-child(even) {
  background: #f6f4eb;
  border-top: 1.5px solid rgba(26, 26, 24, 0.05);
  border-bottom: 1.5px solid rgba(26, 26, 24, 0.05);
}
body.light-theme .past-events .event-row:hover {
  background: #eae7db !important;
}


/* ══════════════════════════════════════════
   SPEAKING PAGE CARDS LAYOUT (ENGAGE & PAST)
══════════════════════════════════════════ */
/* Areas of Engagement Cards Grid */
.engage-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: transparent !important;
}
@media (min-width: 900px) {
  .engage-list {
    grid-template-columns: 1fr 1fr;
  }
}
.engage-row {
  border: 1px solid var(--border-mid) !important;
  border-radius: var(--radius-lg) !important;
  background: var(--surface-card) !important;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease) !important;
  padding: 2.2rem !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  min-height: 240px;
}
@media (min-width: 640px) {
  .engage-row {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.engage-row:hover {
  background: var(--surface-2) !important;
  border-color: var(--gold) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(212, 168, 83, 0.06);
}

/* Past Speaking Events Cards Grid */
.past-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .past-events {
    grid-template-columns: 1fr 1fr;
  }
}
.event-row {
  border: 1px solid var(--border-mid) !important;
  border-radius: var(--radius-lg) !important;
  background: var(--surface-card) !important;
  padding: 2.2rem !important;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease) !important;
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  margin: 0 !important;
}
@media (min-width: 640px) {
  .event-row {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.event-row:hover {
  background: var(--surface-2) !important;
  border-color: var(--green-light) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(34, 217, 181, 0.06);
  padding-left: 2.2rem !important; /* Keep padding consistent on hover */
  padding-right: 2.2rem !important;
}

/* Light Theme Card Overrides */
body.light-theme .engage-row {
  background: #ffffff !important;
  border-color: rgba(26, 26, 24, 0.08) !important;
}
body.light-theme .engage-row:hover {
  background: #fdfcf7 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 16px 36px rgba(184, 138, 48, 0.08);
}
body.light-theme .event-row {
  background: #ffffff !important;
  border-color: rgba(26, 26, 24, 0.08) !important;
}
body.light-theme .event-row:hover {
  background: #fdfcf7 !important;
  border-color: var(--green) !important;
  box-shadow: 0 16px 36px rgba(26, 107, 95, 0.08);
}


/* ══════════════════════════════════════════
   LIGHT THEME — CREAM + FULL LEGIBILITY OVERRIDES
══════════════════════════════════════════ */

/* Nav bar */
body.light-theme .nav {
  background: rgba(244, 241, 230, 0.95);
  border-bottom-color: rgba(18,18,17,0.10);
}
body.light-theme .nav.scrolled {
  background: rgba(244, 241, 230, 0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
body.light-theme .nav-link {
  color: var(--cream-dim);
}
body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
  color: var(--green);
}
body.light-theme .logo {
  color: var(--cream);
}
body.light-theme .logo svg {
  color: var(--gold);
}

/* Body text universally dark on cream */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme p,
body.light-theme li,
body.light-theme span,
body.light-theme blockquote {
  color: var(--cream-dim);
}
body.light-theme .display,
body.light-theme .hero-name,
body.light-theme .section-head h2,
body.light-theme .bio-chapter-title {
  color: var(--cream);
}
body.light-theme .eyebrow {
  color: var(--gold);
}
body.light-theme em {
  color: var(--green);
}

/* Mobile menu */
body.light-theme .mobile-menu {
  background: #f0ecd8;
  border-right: 1px solid var(--border-mid);
}
body.light-theme .mobile-menu a {
  color: var(--cream-dim);
}

/* Top bar accent */
body.light-theme .top-bar {
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0.7;
}

/* Buttons */
body.light-theme .btn-ghost {
  color: var(--cream);
  border-color: var(--border-mid);
}
body.light-theme .btn-ghost:hover {
  background: var(--surface-2);
}

/* Card surfaces */
body.light-theme .bento-card {
  background: var(--surface-card);
  border: 1px solid var(--border-mid);
}
body.light-theme .bento-card-body .bento-title {
  color: var(--cream);
}
body.light-theme .bento-card-body .bento-role {
  color: var(--muted);
}

/* Footer */
body.light-theme .foot {
  background: #e8e4d2;
  border-top: 1px solid var(--border-mid);
}
body.light-theme .foot-brand p,
body.light-theme .foot-col a,
body.light-theme .foot-col span {
  color: var(--muted);
}
body.light-theme .foot-col h5 {
  color: var(--cream);
}
body.light-theme .foot-bottom {
  background: #dedad0;
  color: var(--muted);
}

/* Stat cells */
body.light-theme .stat-num {
  color: var(--green);
}
body.light-theme .stat-label {
  color: var(--muted);
}

/* Timeline */
body.light-theme .timeline-year {
  color: var(--green);
  font-weight: 700;
}
body.light-theme .timeline-card {
  background: var(--surface-card);
  border: 1px solid var(--border-mid);
}
body.light-theme .timeline-card h4,
body.light-theme .timeline-card .org {
  color: var(--cream);
}
body.light-theme .timeline-card p {
  color: var(--muted);
}

/* Venture sections */
body.light-theme .venture-text h2 {
  color: var(--cream);
}
body.light-theme .venture-pillar {
  background: var(--surface-2);
  color: var(--cream-dim);
}

/* Testimonials */
body.light-theme .testimonial-section {
  background: var(--surface-2);
}
body.light-theme .test-card blockquote {
  color: var(--cream);
}
body.light-theme .test-card cite {
  color: var(--muted);
}

/* Press ticker */
body.light-theme .press-ticker {
  background: var(--surface-2);
}
body.light-theme .press-logo-item {
  color: var(--muted);
}
