/* ==========================================================================
   Dr. Jacqueline S. Hester — design tokens
   Palette: warm parchment + ink + evergreen + brass/gold ("Aspire Excellence")
   Type: Fraunces (display) / Inter (body + utility)
   Signature device: the "Dual Perspective" split panel — campus level /
   system level — echoing the defining fact of her career throughout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink:        #17160F;
  --ink-soft:   #555347;
  --parchment:  #FBFAF6;
  --linen:      #F1EDE3;
  --hairline:   #E3DECE;
  --ember:      #1E3A2E;   /* evergreen — primary accent */
  --ember-dark: #7D5E2E;   /* deep brass — labels, small marks on light backgrounds (WCAG AA: 5.7:1 on parchment) */
  --clay:       #C9A86A;   /* light gold — accents on dark backgrounds */
  --deep:       #10140F;   /* deep evergreen — dark section backgrounds */

  --on-dark-soft:  rgba(251,250,246,.65);
  --on-dark-faint: rgba(251,250,246,.4);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1160px;
  --edge: clamp(1.5rem, 5vw, 4rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible{
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 1px;
}
.bg-ink a:focus-visible, .fx-hero a:focus-visible, .contact-card a:focus-visible,
.site-footer a:focus-visible, .cta-band a:focus-visible{
  outline-color: var(--clay);
}
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

p{ margin: 0 0 1.1em; color: var(--ink-soft); }

.wrap{ max-width: var(--max); margin: 0 auto; padding-left: var(--edge); padding-right: var(--edge); }

.eyebrow{
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1em;
}
.eyebrow::before{
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ember);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9em 1.7em;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary{
  background: var(--ember);
  color: var(--parchment);
}
.btn-primary:hover{ background: var(--deep); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--parchment); transform: translateY(-2px); }
.btn-ghost.on-dark{ color: var(--parchment); border-color: rgba(250,246,240,0.5); }
.btn-ghost.on-dark:hover{ background: var(--parchment); color: var(--ink); }

/* ---------- nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand{ display: flex; align-items: center; }
.brand img{ height: 54px; width: auto; }
@media (max-width: 860px){
  .brand img{ height: 42px; }
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ember);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ right: 0; }
.nav-links a.active{ color: var(--ink); }
.nav-cta{ display: flex; align-items: center; gap: 1.6rem; }
.nav-cta .btn{ padding: 0.7em 1.3em; font-size: 0.86rem; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--ink); display: block; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

@media (max-width: 860px){
  .nav-links{
    display: none;
    position: fixed;
    top: 75px; left: 0; right: 0;
    height: calc(100vh - 75px);
    background: var(--parchment);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem var(--edge);
    gap: 1.8rem;
    overflow-y: auto;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ font-size: 1.2rem; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ---------- hero ---------- */
.quote{
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ember-dark);
  border-left: 2px solid var(--ember);
  padding-left: 1rem;
  margin: 1.6rem 0 2.2rem;
}
.role-pills{ display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.role-pills span{
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
  border-radius: 40px;
  padding: 0.45em 0.9em;
}
.hero-ctas{ display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- stats band ---------- */
.stats{
  background: var(--deep);
  color: var(--parchment);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.stats .wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat b{
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--parchment);
}
.stat b em{ font-style: normal; color: var(--clay); font-size: 0.7em; }
.stat span{
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--on-dark-soft);
}
@media (max-width: 760px){
  .stats .wrap{ grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
}

/* ---------- section basics ---------- */
.section{ padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head{ max-width: 640px; margin-bottom: 3rem; }
.section-head p{ font-size: 1.08rem; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow{ justify-content: center; }
.section-head.center .eyebrow::before{ display:none; }

.bg-linen{ background: var(--linen); }
.bg-ink{ background: var(--deep); color: var(--parchment); }
.bg-ink .eyebrow{ color: var(--clay); }
.bg-ink p{ color: var(--on-dark-soft); }
.bg-ink h2, .bg-ink h3{ color: var(--parchment); }

/* ---------- dual perspective (signature device) ---------- */
.dual{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.dual-divider{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--ember-dark);
}
.dual-divider .line{ flex: 1; width: 1px; background: var(--hairline); }
.dual-divider span{
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dual-panel{ padding: 0.5rem 0; }
.dual-panel .tag{
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 0.28em 0.7em;
  margin-bottom: 1.1rem;
}
.dual-panel h3{ font-size: 1.6rem; margin-bottom: 0.5rem; }
.dual-panel .role-line{ font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.9rem; }

@media (max-width: 760px){
  .dual{ grid-template-columns: 1fr; }
  .dual-divider{ flex-direction: row; padding: 0.5rem 0; }
  .dual-divider .line{ width: auto; height: 1px; }
  .dual-divider span{ writing-mode: horizontal-tb; }
}

/* ---------- expertise grid ---------- */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card{
  background: var(--parchment);
  border: 1px solid var(--hairline);
  padding: 2rem 1.8rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.card::before{
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover{ transform: translateY(-4px); }
.card:hover::before{ transform: scaleX(1); }
.card h4{ font-size: 1.12rem; margin-bottom: 0.5rem; }
.card p{ font-size: 0.95rem; margin-bottom: 0; }
a.card{ display: block; text-decoration: none; }

@media (max-width: 900px){ .grid-3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid-3{ grid-template-columns: 1fr; } }

.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 620px){ .grid-2{ grid-template-columns: 1fr; } }

/* ---------- recognition / quote band ---------- */
.recognition{
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
}
.recognition blockquote{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  max-width: 780px;
  margin: 0 auto 1.2rem;
  color: var(--parchment);
}
.recognition cite{ font-style: normal; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--clay); text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ember);
  color: var(--parchment);
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.cta-band h2{ color: var(--parchment); }
.cta-band p{ color: var(--on-dark-soft); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary{ background: var(--parchment); color: var(--ink); }
.cta-band .btn-primary:hover{ background: var(--clay); color: var(--ink); }

/* ---------- footer ---------- */
.site-footer{
  background: var(--deep);
  color: var(--on-dark-soft);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251,250,246,0.14);
}
.footer-top img{ height: 30px; margin-bottom: 1rem; }
.footer-top p{ color: var(--on-dark-soft); font-size: 0.92rem; max-width: 320px; }
.footer-col h5{
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a{ text-decoration: none; color: var(--on-dark-soft); font-size: 0.94rem; transition: color 0.25s var(--ease); }
.footer-col a:hover{ color: var(--parchment); }
.footer-bottom{
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--on-dark-faint);
}
@media (max-width: 760px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- inner page hero ---------- */
.page-hero{
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--hairline);
}
.page-hero h1{ font-size: clamp(2.3rem, 4.6vw, 3.3rem); max-width: 780px; }
.page-hero .lede{ font-size: 1.15rem; max-width: 680px; }

/* ---------- about page ---------- */
.bio{ max-width: 720px; }
.bio h3{ font-size: 1.3rem; margin-top: 2.2rem; }
.bio p{ font-size: 1.03rem; }

.timeline{ display: flex; flex-direction: column; gap: 0; }
.timeline-item{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--hairline);
}
.timeline-item:last-child{ border-bottom: 1px solid var(--hairline); }
.timeline-item .years{ font-family: var(--display); font-size: 1.05rem; color: var(--ember-dark); }
.timeline-item h4{ font-size: 1.12rem; margin-bottom: 0.35rem; }
.timeline-item p{ margin-bottom: 0; font-size: 0.97rem; }
@media (max-width: 600px){
  .timeline-item{ grid-template-columns: 1fr; gap: 0.4rem; }
}

.edu-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.edu-list li{ padding-bottom: 1.4rem; border-bottom: 1px solid var(--hairline); }
.edu-list li:last-child{ border-bottom: none; }
.edu-degree{ font-family: var(--display); font-size: 1.15rem; }
.edu-school{ font-size: 0.92rem; color: var(--ink-soft); }

.pull-figure{ position: sticky; top: 100px; }
.pull-figure img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.about-grid{ display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
  .pull-figure{ position: static; max-width: 320px; }
}

/* ---------- speaking page ---------- */
.topic-list{ display: flex; flex-direction: column; }
.topic{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.6rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--hairline);
}
.topic:last-child{ border-bottom: 1px solid var(--hairline); }
.topic .cat{
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember-dark);
}
.topic h3{ font-size: 1.35rem; margin-bottom: 0.5rem; }
@media (max-width: 620px){
  .topic{ grid-template-columns: 1fr; gap: 0.6rem; }
}

.format-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 760px){ .format-grid{ grid-template-columns: 1fr; } }
.format-card{ border: 1px solid var(--hairline); padding: 2rem; text-align: center; }
.format-card .eyebrow{ justify-content: center; }
.format-card .eyebrow::before{ display: none; }

.audience-tags{ display: flex; flex-wrap: wrap; gap: 0.7rem; }
.audience-tags span{
  border: 1px solid var(--hairline);
  padding: 0.5em 1em;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--parchment);
}

/* ---------- contact page ---------- */
.contact-grid{ display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }
.checklist{ list-style: none; margin: 1.6rem 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li{ padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.checklist li::before{ content: '—'; position: absolute; left: 0; color: var(--ember); }

.contact-card{ background: var(--deep); color: var(--parchment); padding: 2.6rem; }
.contact-card h3{ color: var(--parchment); font-size: 1.3rem; }
.contact-card .method{ display: block; padding: 1.1rem 0; border-top: 1px solid rgba(251,250,246,0.14); }
.contact-card .method:first-of-type{ border-top: none; }
.contact-card .method-label{ display:block; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.3rem; }
.contact-card .method-value{ font-family: var(--display); font-size: 1.2rem; text-decoration: none; color: var(--parchment); }
.contact-card .method-value:hover{ color: var(--clay); }

/* ---------- framework rail ---------- */
.rail{ display: flex; gap: 0; margin-top: 3rem; position: relative; flex-wrap: wrap; }
.rail::before{ content: ''; position: absolute; top: 19px; left: 6%; right: 6%; height: 1px; background: var(--hairline); }
.node{ flex: 1; min-width: 140px; text-align: center; position: relative; padding: 0 10px; }
.node .num{ font-size: 0.72rem; letter-spacing: 0.2em; color: var(--ember-dark); font-weight: 700; }
.node .dot{
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--parchment); border: 1.5px solid var(--ember-dark);
  margin: 0.8rem auto 0; position: relative; z-index: 2;
}
.node.lit .dot{ background: var(--ember); border-color: var(--ember); }
.node .name{ margin-top: 1.1rem; font-family: var(--display); font-size: 1.08rem; line-height: 1.2; }
.node .name small{ display: block; font-family: var(--body); font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.4rem; font-weight: 400; }
@media (max-width: 760px){
  .rail{ gap: 1.6rem 0; }
  .node{ min-width: 50%; }
  .rail::before{ display: none; }
}
.rail-compact .node{ min-width: 108px; padding: 0 6px; }
.rail-compact .node .name{ font-size: 0.92rem; margin-top: 0.9rem; }
.rail-compact .node .name small{ font-size: 0.72rem; }
@media (max-width: 900px){
  .rail-compact{ gap: 1.6rem 0; }
  .rail-compact .node{ min-width: 33%; }
  .rail-compact::before{ display: none; }
}
@media (max-width: 560px){
  .rail-compact .node{ min-width: 50%; }
}

/* ---------- media page ---------- */
.media-embed{
  position: relative; width: 100%; max-width: 880px; margin: 0 auto;
  aspect-ratio: 16/9; overflow: hidden; box-shadow: 0 26px 64px -30px rgba(23,22,15,0.35);
}
.media-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-caption{ text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.media-cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1rem; }
@media (max-width: 820px){ .media-cols{ grid-template-columns: 1fr; gap: 2.4rem; } }

.press-list{ list-style: none; margin: 1.6rem 0 0; padding: 0; }
.press-list li{ border-top: 1px solid var(--hairline); }
.press-list li:last-child{ border-bottom: 1px solid var(--hairline); }
.press-list a{
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline;
  padding: 1rem 0; width: 100%; color: var(--ink); transition: color 0.2s var(--ease);
}
.press-list a:hover{ color: var(--ember); }
.press-list a span{
  color: var(--ink-soft); font-size: 0.76rem; flex-shrink: 0;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.press-list a:hover span{ color: var(--ember); }
.flag-note{ font-size: 0.8rem; color: var(--ember-dark); margin-top: 1rem; }

/* ---------- 2026 speaking calendar ---------- */
.eng-2026{ margin-top: 3.5rem; border-top: 1px solid var(--hairline); padding-top: 2.5rem; }
.stages-h{ font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.eng-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 0 3.5rem; margin-top: 1.6rem; }
.eng-item{ padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.eng-item .t{ font-family: var(--display); font-size: 1.04rem; line-height: 1.3; color: var(--ink); }
.eng-item .m{ font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.4rem; }
.eng-item .m b{ color: var(--ember-dark); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.72rem; }
@media (max-width: 760px){ .eng-list{ grid-template-columns: 1fr; } }
.eng-prior{ margin-top: 2rem; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.7; }
.eng-prior b{ color: var(--ink); font-weight: 600; }

/* ---------- awards / recognition ---------- */
.awards-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 3rem; margin-top: 2.5rem; }
.award{ border-left: 2px solid var(--ember-dark); padding: 0.2rem 0 0.2rem 1.4rem; }
.award .y{ font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember-dark); font-weight: 700; }
.award h4{ font-family: var(--display); font-weight: 500; font-size: 1.15rem; margin: 0.4rem 0 0.3rem; }
.award p{ font-size: 0.92rem; margin-bottom: 0; color: var(--ink-soft); }
.award a{ color: var(--ember); font-weight: 500; border-bottom: 1px solid var(--ember); text-decoration: none; }
@media (max-width: 760px){ .awards-grid{ grid-template-columns: 1fr; } }

/* ---------- scholarship / credentials ---------- */
.twocol{ display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
@media (max-width: 820px){ .twocol{ grid-template-columns: 1fr; gap: 2rem; } }
.credlist dt{ font-family: var(--display); font-size: 1.05rem; margin-top: 1.4rem; }
.credlist dt:first-child{ margin-top: 0; }
.credlist dd{ color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.credlist dd a{ color: var(--ember); font-weight: 500; border-bottom: 1px solid var(--ember); text-decoration: none; }
.pub{ padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.pub:last-child{ border-bottom: none; }
.pub h4{ font-family: var(--display); font-weight: 500; font-size: 1.05rem; line-height: 1.3; margin-bottom: 0.3rem; }
.pub p{ color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 0; }
.pub a{ color: var(--ember); font-weight: 500; border-bottom: 1px solid var(--ember); text-decoration: none; }

/* ---------- inline photo grid (e.g. program/event photos within bio copy) ---------- */
.photo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0 0.5rem;
}
.photo-grid img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--linen);
}
@media (max-width: 560px){
  .photo-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Futurist hero (Home only) — dark, cinematic opening statement.
   Animated particle network stands in for "the future of work" she leads;
   evokes a neural network / data field rather than any literal 3D scene.
   ========================================================================== */
.fx-hero{
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--deep);
  overflow: hidden;
  color: var(--parchment);
}
.fx-hero canvas{ position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.fx-hero .fx-glow{
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 55% 46% at 50% 50%, rgba(201,168,106,0.16) 0%, rgba(16,20,15,0) 68%);
}
.fx-hero .wrap{ position: relative; z-index: 4; display: block; }
.fx-inner{ max-width: 760px; margin: 0 auto; padding: 0 var(--edge); }
.fx-eyebrow-wrap{ perspective: 700px; margin-bottom: 2.2rem; }
.fx-eyebrow{
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0;
  transform: rotateX(0deg) rotateY(0deg);
  will-change: transform;
  text-shadow: 0 0 26px rgba(201,168,106,0.45);
}
@media (max-width: 620px){
  .fx-eyebrow{ font-size: 1.5rem; letter-spacing: 0.08em; }
}
.fx-logo-wrap{
  position: relative;
  isolation: isolate;
  width: min(420px, 62vw);
  margin: 0 auto 1.8rem;
  perspective: 900px;
  animation: fx-logo-float 6s ease-in-out infinite;
}
.fx-logo-wrap::before{
  content: '';
  position: absolute;
  inset: -22%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(201,168,106,0.4) 0%, rgba(201,168,106,0) 68%);
  animation: fx-logo-glow 4.5s ease-in-out infinite;
  pointer-events: none;
}
.fx-logo{
  width: 100%;
  cursor: pointer;
  filter: drop-shadow(0 0 34px rgba(201,168,106,0.28));
  transition: filter 0.4s var(--ease);
  transform: rotateX(0deg) rotateY(0deg);
  will-change: transform, filter;
}
.fx-logo:hover{ filter: drop-shadow(0 0 46px rgba(201,168,106,0.5)); }
@keyframes fx-logo-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-9px); }
}
@keyframes fx-logo-glow{
  0%, 100%{ opacity: 0.55; transform: scale(0.94); }
  50%{ opacity: 1; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce){
  .fx-logo{ transition: none; }
  .fx-logo-wrap, .fx-logo-wrap::before{ animation: none; }
}
.fx-hero h1{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin: 0 auto 1.4rem;
  max-width: 22ch;
}
.fx-hero h1 em{ font-style: italic; color: var(--clay); }
.fx-hero .fx-sub{
  color: var(--on-dark-soft);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto 1.8rem;
}
.role-pills.on-dark span{ color: var(--on-dark-soft); border-color: rgba(251,250,246,0.22); }
.fx-hero .role-pills{ justify-content: center; margin-bottom: 2.2rem; }
.fx-hero .hero-ctas{ justify-content: center; }
.fx-hero .btn-ghost.on-dark{ color: var(--parchment); border-color: rgba(251,250,246,0.5); }
.fx-hero .btn-ghost.on-dark:hover{ background: var(--parchment); color: var(--ink); }

.fx-scroll{
  position: absolute; left: 50%; bottom: 2.4rem; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-dark-faint);
}
.fx-scroll .line{ width: 1px; height: 28px; background: linear-gradient(var(--clay), transparent); animation: fx-scroll-pulse 2.2s ease-in-out infinite; }
@keyframes fx-scroll-pulse{ 0%,100%{ opacity:0.3; } 50%{ opacity:1; } }
@media (prefers-reduced-motion: reduce){ .fx-scroll .line{ animation: none; opacity: 0.6; } }

@media (max-width: 620px){
  .fx-hero h1{ font-size: 1.5rem; }
  .fx-logo-wrap{ width: 78vw; }
}
