/* ============================================================
   STANLEY T. LEWIS, MD, MPH — EXECUTIVE AUTHORITY WEBSITE
   Palette: Navy #071D49, White #FFFFFF, Gold #C8A55B
   Type:    Fraunces (display serif) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --navy: #071D49;
  --navy-2: #0B2557;
  --navy-3: #0F2D6A;
  --navy-ink: #04122E;
  --white: #FFFFFF;
  --ivory: #FAF8F3;
  --bone: #F1ECE1;
  --gold: #C8A55B;
  --gold-light: #E0C485;
  --gold-deep: #A98744;
  --text: #1A1F2E;
  --text-soft: #4B5468;
  --text-mute: #8089A0;
  --line: rgba(7, 29, 73, 0.10);
  --line-light: rgba(7, 29, 73, 0.06);

  --radius-sm: 8px;
  --radius:   14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(7, 29, 73, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 29, 73, 0.10);
  --shadow-lg: 0 30px 80px rgba(7, 29, 73, 0.15);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--navy); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: absolute; left: -1000px; top: 0; padding: 10px 16px;
  background: var(--navy); color: white; z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--navy);
  margin: 0;
}
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
em { font-style: italic; color: var(--gold-deep); }

p { margin: 0 0 1em; color: var(--text-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,165,91,.18);
}

.section-head { max-width: 880px; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head__eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 18px;
}
.section-head__title { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-head__title--light { color: var(--white); }
.section-head--light .section-head__eyebrow { color: var(--gold); }
.section-head--light .section-head__title { color: var(--white); }
.section-head--light .section-head__title em { color: var(--gold); }

.lede { font-size: 1.18rem; line-height: 1.6; color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; font-weight: 600; font-size: .95rem;
  border-radius: 999px; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 24px rgba(200,165,91,.35); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); box-shadow: 0 14px 32px rgba(200,165,91,.45); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(7,29,73,.20);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* Inverse buttons when over navy backgrounds */
.hero .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.30); }
.hero .btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(7,29,73,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* =================== NAVIGATION =================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(7,29,73,.06);
  transition: background .3s ease, border-color .3s ease;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); border-bottom-color: rgba(7,29,73,.12); }
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.nav__brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: .95rem;
  letter-spacing: .03em;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.nav__brand-sub { font-size: .68rem; color: var(--text-mute); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--text);
  position: relative; padding: 6px 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px var(--gutter) 24px;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  padding: 14px 4px; font-weight: 500; color: var(--navy);
  border-bottom: 1px solid var(--line-light);
}
.nav__mobile a.btn { border: none; margin-top: 12px; justify-content: center; }
.nav__mobile.is-open { display: flex; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav .btn--gold { display: none; }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-ink) 0%, var(--navy) 60%, var(--navy-2) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,165,91,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,165,91,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .35;
}
.hero__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px; right: -120px;
}
.hero__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #2A5BBA 0%, transparent 70%);
  bottom: -100px; left: -80px; opacity: .55;
}
.hero__helix {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: helixDrift 18s ease-in-out infinite;
}
@keyframes helixDrift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__content { animation: fadeUp .9s ease both; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--white);
  margin: 24px 0 28px;
  font-weight: 400;
}
.hero__title-line {
  display: block; opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.hero__title-line:nth-child(1) { animation-delay: .15s; }
.hero__title-line:nth-child(2) { animation-delay: .30s; color: var(--gold); }
.hero__title-line:nth-child(3) { animation-delay: .45s; }
.hero__title-tagline {
  display: block; font-size: .55em; color: rgba(255,255,255,.85);
  font-weight: 300; letter-spacing: -.01em; margin-top: 18px;
  opacity: 0; animation: fadeUp .8s ease .6s forwards;
}
.hero__title-tagline em { color: var(--gold); font-style: italic; }

.hero .eyebrow { color: var(--gold); }

.hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 560px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp .8s ease .75s forwards;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
  opacity: 0; animation: fadeUp .8s ease .9s forwards;
}

.hero__meta {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 40px); flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease 1.05s forwards;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-num {
  font-family: var(--serif); font-size: 1.9rem; color: var(--gold);
  font-weight: 600; line-height: 1;
}
.hero__meta-label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__meta-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

.hero__portrait-wrap {
  position: relative;
  opacity: 0; animation: fadeIn 1.2s ease .3s forwards;
}
.hero__portrait-frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 1 / 1;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(200,165,91,.20);
  background: var(--navy-2);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s ease;
}
.hero__portrait-frame:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.hero__portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__portrait-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(7,29,73,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--gold); font-weight: 600; font-size: .78rem;
  letter-spacing: .05em;
  border: 1px solid rgba(200,165,91,.30);
}
.hero__portrait-badge i { color: var(--gold); }

.hero__portrait-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle at 30% 30%, rgba(200,165,91,.30) 0%, transparent 60%);
  z-index: -1; filter: blur(40px);
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px;
  z-index: 5;
}
.hero__scroll span {
  width: 3px; height: 8px; background: var(--gold); border-radius: 3px;
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(16px); opacity: .3; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__portrait-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero__portrait-frame { transform: none; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__scroll { display: none; }
}

/* =================== TRUST BAR =================== */
.trust {
  background: var(--ivory);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
}
.trust__item i {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--white); color: var(--gold-deep);
  font-size: 1.05rem; border: 1px solid var(--line);
  flex-shrink: 0;
}
.trust__item strong {
  display: block; font-family: var(--serif); font-size: 1.05rem;
  color: var(--navy); font-weight: 600; line-height: 1.2;
}
.trust__item span { font-size: .82rem; color: var(--text-mute); }

@media (max-width: 1000px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

/* =================== ABOUT =================== */
.about { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.about__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
  align-items: start; margin-bottom: clamp(60px, 8vw, 100px);
}
.about__story p { margin-bottom: 1.2em; }
.about__story strong { color: var(--navy); font-weight: 600; }

.about__card { padding: 32px; }
.about__card-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold-deep); font-family: var(--sans); font-weight: 700;
}
.about__card-title i { font-size: 1.1rem; }
.about__list { list-style: none; padding: 0; margin: 0 0 24px; }
.about__list li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line-light);
  font-size: .92rem;
}
.about__list li:last-child { border-bottom: none; }
.about__list li span { color: var(--text-mute); }
.about__list li strong { color: var(--navy); font-weight: 600; text-align: right; }

@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 36px; } }

/* Timeline */
.timeline { position: relative; padding-top: 20px; }
.timeline__list {
  list-style: none; padding: 0; margin: 0;
  position: relative;
}
.timeline__list::before {
  content: ""; position: absolute;
  left: 90px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--gold) 0%, rgba(200,165,91,.1) 100%);
}
.timeline__item {
  position: relative;
  display: grid; grid-template-columns: 90px 1fr; gap: 32px;
  padding: 14px 0;
}
.timeline__year {
  font-family: var(--serif); font-size: 1.35rem; color: var(--navy);
  font-weight: 600; line-height: 1.2;
  position: relative; padding-right: 24px; text-align: right;
}
.timeline__year::after {
  content: ""; position: absolute; right: -6px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--white);
}
.timeline__body { padding: 18px 24px; }
.timeline__body h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 6px; }
.timeline__body p { margin: 0; font-size: .95rem; }
.timeline__body--accent {
  background: linear-gradient(135deg, rgba(200,165,91,.10), rgba(200,165,91,.02));
  border-color: rgba(200,165,91,.35);
}

@media (max-width: 600px) {
  .timeline__list::before { left: 60px; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 20px; }
  .timeline__year { font-size: 1.1rem; padding-right: 16px; }
}

/* =================== RESEARCH =================== */
.research { padding: clamp(80px, 10vw, 140px) 0; background: var(--ivory); }
.journal-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.journal-row__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .82rem; color: var(--navy); font-weight: 500;
}
.journal-row__chip i { color: var(--gold-deep); font-size: .8rem; }

.research__controls {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.research__search {
  position: relative; flex: 1; min-width: 280px;
}
.research__search i {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--text-mute);
}
.research__search input {
  width: 100%; padding: 14px 18px 14px 46px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); font-size: .95rem; color: var(--navy);
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.research__search input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,165,91,.18);
}
.research__filters { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 500; color: var(--text-soft);
  font-family: inherit;
  transition: all .25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--navy); }
.chip.is-active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.pubs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pub {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  background: var(--white); padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pub:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,165,91,.35);
}
.pub__year {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--gold-deep); line-height: 1; padding-top: 4px;
  border-right: 1px solid var(--line); padding-right: 16px;
  text-align: right;
}
.pub__title {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 600; line-height: 1.3; margin-bottom: 10px;
  color: var(--navy);
}
.pub__authors { font-size: .85rem; margin-bottom: 10px; color: var(--text-soft); }
.pub__authors strong { color: var(--navy); }
.pub__meta {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  font-size: .82rem; margin-bottom: 12px;
}
.pub__journal { font-weight: 600; color: var(--navy); font-style: italic; }
.pub__vol { color: var(--text-mute); }
.pub__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  background: rgba(7,29,73,.06); color: var(--navy);
}
.tag--gold { background: rgba(200,165,91,.18); color: var(--gold-deep); }

.research__empty {
  text-align: center; padding: 40px;
  color: var(--text-mute); font-size: .95rem;
}
.research__empty i { color: var(--gold); margin-right: 8px; }
.pub.is-hidden { display: none; }

@media (max-width: 800px) { .pubs { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .pub { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px; }
  .pub__year { font-size: 1.3rem; padding-right: 10px; }
}

/* =================== LEADERSHIP =================== */
.leadership { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.leader-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.leader-card {
  padding: 32px; position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid var(--line);
  transition: all .35s ease; cursor: default;
}
a.leader-card { cursor: pointer; }
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,165,91,.35); }
.leader-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.leader-card__role {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep);
}
.leader-card__head i { color: var(--text-mute); transition: color .3s ease, transform .3s ease; }
.leader-card:hover .leader-card__head i { color: var(--gold-deep); transform: translate(2px, -2px); }
.leader-card h3 {
  font-size: 1.35rem; margin-bottom: 12px;
}
.leader-card p { font-size: .92rem; margin-bottom: 18px; }
.leader-card__tag {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(7,29,73,.06); color: var(--navy);
  font-size: .72rem; font-weight: 600;
}

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

/* Impact stats */
.impact-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 48px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.impact-stats::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,165,91,.25) 0%, transparent 70%);
  pointer-events: none;
}
.impact-stat { position: relative; }
.impact-stat__num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.impact-stat__suffix {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold);
  margin-left: 2px;
}
.impact-stat__label {
  display: block; margin-top: 10px; font-size: .82rem;
  color: rgba(255,255,255,.7); line-height: 1.4;
}
@media (max-width: 800px) { .impact-stats { grid-template-columns: repeat(2, 1fr); padding: 32px; } }
@media (max-width: 480px) { .impact-stats { grid-template-columns: 1fr; } }

/* =================== MEDIA =================== */
.media { padding: clamp(80px, 10vw, 140px) 0; background: var(--ivory); }
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 64px;
}
.media-card {
  padding: 32px; position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  transition: all .35s ease; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,165,91,.4); }
.media-card__outlet {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: var(--gold-deep); margin-bottom: 14px; display: block;
}
.media-card h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.35; margin-bottom: 12px; }
.media-card__date { font-size: .8rem; color: var(--text-mute); letter-spacing: .05em; }
.media-card__icon {
  position: absolute; top: 24px; right: 24px;
  font-size: 1.4rem; color: var(--line); transition: color .3s ease;
}
.media-card:hover .media-card__icon { color: var(--gold); }

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

/* Awards */
.awards { padding: 40px; background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--line); }
.awards__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.5rem;
  margin-bottom: 28px; color: var(--navy);
}
.awards__title i { color: var(--gold); }
.awards__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.award {
  padding: 20px; background: var(--ivory); border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.award__year {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  margin-bottom: 10px;
}
.award strong { display: block; color: var(--navy); margin-bottom: 4px; font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.award span { font-size: .85rem; color: var(--text-mute); }

@media (max-width: 800px) { .awards__grid { grid-template-columns: 1fr; } .awards { padding: 28px; } }

/* =================== VISION =================== */
.vision {
  position: relative; overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--navy);
  color: var(--white);
}
.vision__bg { position: absolute; inset: 0; pointer-events: none; }
.vision__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,165,91,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,165,91,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
}
.vision__lede {
  font-size: 1.25rem; line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 760px; margin-bottom: 56px;
  font-family: var(--serif); font-weight: 300; font-style: italic;
}
.vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.vision-card {
  padding: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  transition: all .35s ease;
  backdrop-filter: blur(10px);
}
.vision-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,165,91,.40);
  transform: translateY(-4px);
}
.vision-card i {
  font-size: 1.6rem; color: var(--gold); margin-bottom: 18px;
  display: block;
}
.vision-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.vision-card p { color: rgba(255,255,255,.7); margin: 0; font-size: .92rem; }

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

/* =================== A28 =================== */
.a28 { padding: clamp(80px, 10vw, 140px) 0; background: var(--ivory); }
.a28__wrap {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid rgba(200,165,91,.30);
  position: relative; overflow: hidden;
}
.a28__wrap::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,165,91,.20) 0%, transparent 70%);
  pointer-events: none;
}
.a28__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 24px;
}
.a28__title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 20px;
}
.a28__mission { font-size: 1.05rem; line-height: 1.6; margin-bottom: 32px; color: var(--text); }
.a28__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 36px;
}
.a28__pillar {
  padding: 18px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.a28__pillar strong {
  display: block; font-family: var(--serif); font-size: 1.05rem;
  color: var(--navy); margin-bottom: 4px;
}
.a28__pillar span { font-size: .82rem; color: var(--text-mute); }
.a28__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.a28__visual {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 320px;
}
.a28__molecule {
  position: relative; width: 240px; height: 240px;
}
.a28__molecule span {
  position: absolute; width: 28px; height: 28px;
  background: var(--navy); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7,29,73,.08);
  animation: orbit 16s linear infinite;
}
.a28__molecule span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); background: var(--gold); animation-delay: 0s; }
.a28__molecule span:nth-child(2) { top: 25%; right: 0; animation-delay: -2.6s; }
.a28__molecule span:nth-child(3) { bottom: 25%; right: 0; animation-delay: -5.3s; background: var(--gold); }
.a28__molecule span:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -8s; }
.a28__molecule span:nth-child(5) { bottom: 25%; left: 0; animation-delay: -10.6s; background: var(--gold); }
.a28__molecule span:nth-child(6) { top: 25%; left: 0; animation-delay: -13.3s; }
.a28__molecule::after {
  content: ""; position: absolute; inset: 30%;
  border-radius: 50%; border: 2px dashed rgba(7,29,73,.20);
  animation: rotateSlow 30s linear infinite;
}
@keyframes orbit {
  0% { transform: translateX(-50%) rotate(0deg) translateX(0) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg) translateX(0) rotate(-360deg); }
}
@keyframes rotateSlow { 100% { transform: rotate(360deg); } }
.a28__label {
  margin-top: 28px; padding: 10px 18px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
}

@media (max-width: 900px) {
  .a28__wrap { grid-template-columns: 1fr; gap: 40px; }
  .a28__pillars { grid-template-columns: 1fr; }
}

/* =================== SPEAKING =================== */
.speaking { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.speaking-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-bottom: 56px;
}
.speak-card { padding: 30px; transition: all .35s ease; }
.speak-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,165,91,.40); }
.speak-card__icon {
  font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; display: block;
}
.speak-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.speak-card ul {
  list-style: none; padding: 0; margin: 0;
}
.speak-card ul li {
  font-size: .88rem; padding: 8px 0; color: var(--text-soft);
  border-bottom: 1px solid var(--line-light);
  position: relative; padding-left: 16px;
}
.speak-card ul li:last-child { border-bottom: none; }
.speak-card ul li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.speaking__cta {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 40px; border-radius: var(--radius-xl);
  background: var(--ivory); text-align: center;
}
.speaking__cta p {
  font-family: var(--serif); font-size: 1.3rem; color: var(--navy);
  margin: 0; font-weight: 500;
}

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

/* =================== CONTACT =================== */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--navy-ink) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,165,91,.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  position: relative;
}
.contact__intro p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: 24px; max-width: 480px; }
.contact__list {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.contact__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact__list li i { color: var(--gold); font-size: 1.1rem; width: 22px; }
.contact__list li a { color: var(--white); }
.contact__list li a:hover { color: var(--gold); }

.contact__form {
  padding: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  color: var(--white);
}
.contact__form-title {
  color: var(--white); margin-bottom: 24px; font-size: 1.4rem;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .82rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: .03em;
  color: rgba(255,255,255,.85);
}
.field input,
.field select,
.field textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.45); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 4px rgba(200,165,91,.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1L7 7L13 1' stroke='%23C8A55B' stroke-width='2'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.field select option { background: var(--navy); color: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__legal {
  margin: 16px 0 0;
  font-size: .78rem; color: rgba(255,255,255,.55); text-align: center;
}

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } .field-row { grid-template-columns: 1fr; } .contact__form { padding: 28px; } }

/* =================== FOOTER =================== */
.footer {
  background: var(--navy-ink); color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer__brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.footer__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1rem;
}
.footer__brand strong { display: block; color: var(--white); font-family: var(--serif); font-size: 1.1rem; }
.footer__brand span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.footer__bio p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 360px; }
.footer__col h4 {
  color: var(--gold); font-family: var(--sans); font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer__col a:hover { color: var(--gold); }
.footer__col a i { margin-right: 6px; }

.footer__bottom {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.45);
}

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
