/* ============================================================
   Prof. Dr. Lalit Singh — Landing Page
   Palette: Deep teal/navy (trust, medical) + gold (prestige)
   Fonts:   Cormorant Garamond (display) + Inter (ui/body)
   ============================================================ */

:root {
  --ink:        #0c2230;   /* deep navy */
  --ink-2:      #143446;
  --teal:       #0e5d6b;   /* primary accent */
  --teal-deep:  #0a4a55;
  --teal-soft:  #e8f1f2;
  --gold:       #c9a24b;   /* prestige */
  --gold-soft:  #f3e8cd;
  --bone:       #f7f4ee;   /* warm cream */
  --paper:      #ffffff;
  --line:       #e5e0d6;
  --line-dark:  rgba(255,255,255,0.12);
  --muted:      #5b6b76;
  --muted-dark: #9db1bd;

  --radius:     14px;
  --radius-sm:  10px;
  --shadow-sm:  0 2px 8px rgba(12, 34, 48, 0.06);
  --shadow-md:  0 8px 30px rgba(12, 34, 48, 0.10);
  --shadow-lg:  0 22px 60px rgba(12, 34, 48, 0.18);

  --container:  1200px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------------------ Typography ------------------ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.1;
}
h3, h4 {
  font-weight: 600;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

p  { margin: 0 0 1em; color: var(--ink-2); }

.section-eyebrow,
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  max-width: 780px;
}
.section-title.light { color: #fff; }

.section-lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
  margin-top: .6em;
}
.section-lede.center { margin-left: auto; margin-right: auto; }
.section-lede.light  { color: #cfd8df; }

.section-head.center { text-align: center; margin: 0 auto 52px; max-width: 820px; }
.section-head.center .section-title { margin-left: auto; margin-right: auto; }

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 34, 48, .18);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14, 93, 107, .35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(12, 34, 48, .2);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-block { width: 100%; }

/* ------------------ Top Banner ------------------ */
.topline {
  position: relative;
  background: linear-gradient(90deg, #0c2230 0%, #0e5d6b 50%, #0c2230 100%);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.topline::before,
.topline::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  background: radial-gradient(closest-side, rgba(201,162,75,.22), transparent 70%);
  pointer-events: none;
}
.topline::before { left: -5%; }
.topline::after  { right: -5%; }
.topline-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 1;
}
.topline-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}
.topline-sep {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,.18);
  flex-shrink: 0;
}
.topline-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: #eaf0f3;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .topline { padding: 10px 0; }
  .topline-inner { gap: 6px; flex-direction: column; }
  .topline-sep { display: none; }
  .topline-title { font-size: .95rem; letter-spacing: .18em; }
  .topline-sub { font-size: .85rem; }
}

/* ------------------ Navbar ------------------ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 244, 238, 0.78);
  border-bottom: 1px solid rgba(12,34,48,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--teal));
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 4px 12px rgba(12,34,48,.25);
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand-text small {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex; gap: 32px;
  margin-left: auto; margin-right: 24px;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.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 var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 10px 20px; font-size: .88rem; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(14,93,107,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(201,162,75,.10), transparent 60%),
    var(--bone);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(12,34,48,.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(12,34,48,.04) 95%);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: .55;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .eyebrow {
  background: rgba(14, 93, 107, .08);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal-deep);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(14,93,107,.15);
}
.hero h1 {
  margin-top: 24px;
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.hero-name {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
}
.hero-credentials {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  font-weight: 600;
}
.hero-role {
  font-size: 1.06rem;
  color: var(--ink-2);
  margin: 12px 0 0;
  font-weight: 500;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--teal-deep);
  margin-top: 10px;
}
.hero-lede {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 18px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-stats li {
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.hero-stats li.in-view { opacity: 1; transform: none; }
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero-stats span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Portrait */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
}
.portrait-image {
  position: absolute; inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a3c50, #0c2230);
  box-shadow:
    0 40px 80px -30px rgba(12,34,48,.55),
    0 10px 30px -10px rgba(12,34,48,.35),
    inset 0 0 0 1px rgba(255,255,255,.05);
}
.portrait-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.05) contrast(1.03);
}
.portrait-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(closest-side, rgba(201,162,75,.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.portrait-badge {
  position: absolute;
  bottom: -34px; right: -34px;
  width: 146px; height: 146px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f5d98a 0%, #d4af5a 45%, #a8852f 100%);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 22px 50px rgba(201,162,75,.55),
    0 0 0 10px var(--bone),
    0 0 0 11px rgba(201,162,75,.45),
    inset 0 2px 4px rgba(255,255,255,.5),
    inset 0 -3px 6px rgba(139,100,24,.35);
  font-family: 'Fraunces', serif;
  z-index: 2;
  animation: badge-float 4s ease-in-out infinite;
}
/* Outer pulse ring */
.portrait-badge::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,75,.55);
  animation: badge-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
/* Inner shimmer highlight */
.portrait-badge::after {
  content: "";
  position: absolute;
  top: 10%; left: 18%;
  width: 28%; height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.55), transparent 70%);
  pointer-events: none;
}
.portrait-badge-ring {
  position: absolute; inset: 8px;
  border: 1.5px dashed rgba(12,34,48,.45);
  border-radius: 50%;
  animation: badge-rotate 22s linear infinite;
}
.portrait-badge-inner {
  display: flex; flex-direction: column; align-items: center;
  line-height: 1;
  text-align: center;
  z-index: 1;
}
.portrait-badge-inner .big {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 4px 0;
  color: #0c2230;
  letter-spacing: .04em;
}
.portrait-badge-inner .small {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0c2230;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  line-height: 1;
}
.portrait-badge-inner .small:last-child {
  font-family: 'Manrope', sans-serif;
  font-size: .6rem;
  letter-spacing: .3em;
  font-weight: 800;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes badge-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.18); opacity: 0;  }
  100% { transform: scale(1.18); opacity: 0;  }
}
@keyframes badge-rotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-badge,
  .portrait-badge::before,
  .portrait-badge-ring { animation: none !important; }
}

.portrait-caption {
  margin-top: 48px;
  text-align: center;
  max-width: 360px;
}
.portrait-caption span {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
.portrait-caption em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------ Trust Strip ------------------ */
.trust-strip {
  background: var(--ink);
  color: #d8e0e5;
  padding: 28px 0;
}
.trust-strip .container {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.trust-label {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 20px;
  font-size: .88rem;
  color: #d8e0e5;
}
.trust-items .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.25);
}

/* ------------------ Sections ------------------ */
.section {
  padding: 110px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.section.in-view { opacity: 1; transform: none; }
.section-alt { background: var(--paper); }
.section-dark {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(14,93,107,.3), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(201,162,75,.15), transparent 60%),
    linear-gradient(180deg, #0b1e2a, #0c2230);
  color: #d8e0e5;
}
.section-dark p { color: #c2cdd4; }
.section-contact {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(14,93,107,.4), transparent 60%),
    linear-gradient(180deg, #0c2230, #081621);
  color: #d8e0e5;
  padding: 100px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.grid-2.aligned { align-items: stretch; }

/* ------------------ About ------------------ */
.mission-card {
  margin-top: 28px;
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), var(--teal-deep));
  color: #e8f1f2;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,162,75,.25), transparent 70%);
}
.mission-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.mission-card p {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #f2f6f7;
  margin: 0;
}

.highlight-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
}
.highlight-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px; align-items: start;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.highlight-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.highlight-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  padding-top: 4px;
}
.highlight-list h4 { margin: 0 0 6px; font-size: 1.15rem; }
.highlight-list p  { margin: 0; color: var(--muted); font-size: .95rem; }

/* ------------------ Cards ------------------ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px; margin: 0 auto;
}
.card {
  padding: 36px 30px;
  background: var(--bone);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease),
              box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.section-alt .card { background: var(--paper); }
.card.in-view { opacity: 1; transform: none; }
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14,93,107,.25);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.gold { background: rgba(201,162,75,.18); color: var(--gold); }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: .96rem; margin: 0; }

.card-on-dark {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.card-on-dark h3 { color: #fff; }
.card-on-dark p  { color: #b8c5cd; }

/* ------------------ Panels ------------------ */
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.panel-title {
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.panel-title::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 48px; height: 2px; background: var(--gold);
}
.panel-dark {
  background: linear-gradient(135deg, var(--ink), var(--teal-deep));
  color: #e8f1f2;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.panel-dark .panel-title { color: #fff; border-color: rgba(255,255,255,.12); }

.tick-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.55;
}
.tick-list li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(14,93,107,.14);
}
.tick-list.light li { color: #d8e0e5; }
.tick-list.light li::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,.18);
}
.tick-list strong { color: var(--ink); }
.tick-list.light strong { color: #fff; }

/* ------------------ In Practice (photo band) ------------------ */
.in-practice {
  padding: 110px 0;
  background: var(--bone);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.in-practice.in-view { opacity: 1; transform: none; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 560px;
}
.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #1a3c50;
  cursor: default;
  transition: transform .5s var(--ease);
}
.photo-card:hover { transform: translateY(-4px); }
.photo-card.photo-tall { grid-row: span 2; }
.photo-card:not(.photo-tall) { grid-column: span 1; }
.photo-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}
.photo-card:hover .photo-img { transform: scale(1.06); }
.photo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,22,33,.85) 100%);
}
.photo-card figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: #fff;
}
.photo-card .tag {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(12,34,48,.6);
  border-radius: 999px;
  margin-bottom: 10px;
}
.photo-card h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.3rem;
}
.photo-card p {
  color: #d8e0e5;
  margin: 0;
  font-size: .9rem;
}

/* ------------------ Parallax Quote Band ------------------ */
.quote-band {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.quote-band-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  filter: grayscale(.25) contrast(1.05);
}
.quote-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,34,48,.92), rgba(10,74,85,.85));
  z-index: -1;
}
.quote-band-inner {
  max-width: 860px;
  text-align: center;
}
.quote-mark {
  width: 56px; height: 56px;
  color: var(--gold);
  margin: 0 auto 18px;
  display: block;
  opacity: .9;
}
.quote-band blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
}
.quote-band cite span {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quote-band cite em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  color: #c2cdd4;
  font-size: .9rem;
}

/* ------------------ Mentorship ------------------ */
.mentorship {
  margin-top: 56px;
  padding: 48px;
  background: var(--paper);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line);
}
.mentorship h3 { font-size: 1.7rem; margin-top: 12px; max-width: 300px; }
.mentorship ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
}
.mentorship ul li {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--bone);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mentorship ul strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.mentorship ul span { font-size: .95rem; color: var(--muted); }

/* Mentorship variant with photo */
.mentorship-with-image {
  grid-template-columns: 0.9fr 1.2fr;
  padding: 0;
  overflow: hidden;
}
.mentorship-with-image .mentorship-photo {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mentorship-with-image .mentorship-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,34,48,.12), rgba(12,34,48,0) 60%);
}
.mentorship-with-image .mentorship-body {
  padding: 40px 44px;
}
.mentorship-with-image h3 { margin-top: 14px; }
.mentorship-with-image ul { margin-top: 24px; }

/* ------------------ Conference cards ------------------ */
.conf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.conf-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  opacity: 0; transform: translateY(16px);
}
.conf-card.in-view { opacity: 1; transform: none; }
.conf-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.conf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.conf-role {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}
.conf-card h4 {
  font-size: 1.35rem;
  margin: 14px 0 20px;
  min-height: 3em;
}
.conf-year {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ------------------ Timeline (Awards) ------------------ */
.timeline {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 88px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--teal), transparent);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 14px 0;
}
.tl-year {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  padding-top: 18px;
  position: relative;
}
.tl-year::after {
  content: "";
  position: absolute;
  right: -17px; top: 28px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bone), 0 0 0 6px rgba(201,162,75,.4);
}
.tl-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .3s var(--ease);
}
.tl-card.in-view { opacity: 1; transform: none; }
.tl-card:hover { box-shadow: var(--shadow-md); }
.tl-card h4 { margin: 6px 0 4px; font-size: 1.2rem; }
.tl-card p  { margin: 0; color: var(--muted); font-size: .95rem; }
.tl-tag {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.tl-tag.international { background: rgba(14,93,107,.12); color: var(--teal-deep); }
.tl-tag.national      { background: rgba(201,162,75,.18); color: #8a6a1f; }
.tl-tag.state         { background: rgba(12,34,48,.08); color: var(--ink); }
.tl-tag.humanitarian  { background: #ffe1dd; color: #a73a26; }

/* ------------------ Contact ------------------ */
.contact-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 20px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding-top: 3px;
}
.contact-list a,
.contact-list span {
  color: #eaf0f3;
  font-size: 1.02rem;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form-sub { color: var(--muted); margin-bottom: 22px; font-size: .95rem; }
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bone);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14,93,107,.14);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  margin: 14px 0 0;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* ------------------ Footer ------------------ */
.footer {
  background: #081621;
  color: #c2cdd4;
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-footer .brand-text strong,
.brand-footer .brand-text small { color: #fff; }
.footer-tagline {
  margin-top: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #9db1bd;
  max-width: 340px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-cols a,
.footer-cols span {
  display: block;
  color: #c2cdd4;
  font-size: .95rem;
  margin-bottom: 10px;
  transition: color .2s var(--ease);
}
.footer-cols a:hover { color: #fff; }

.footer-base {
  padding: 22px 0;
  background: #050f18;
}
.footer-base .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: .82rem;
  color: #6a7a85;
}
.footer-powered {
  color: #8695a0;
}
.footer-powered a {
  color: var(--gold);
  font-weight: 600;
  transition: color .2s var(--ease);
  border-bottom: 1px solid transparent;
}
.footer-powered a:hover {
  color: #e2c179;
  border-bottom-color: currentColor;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .portrait-frame { max-width: 360px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .conf-grid { grid-template-columns: 1fr; }
  .mentorship { grid-template-columns: 1fr; padding: 36px; gap: 24px; }
  .mentorship-with-image { padding: 0; gap: 0; }
  .mentorship-with-image .mentorship-photo { min-height: 260px; }
  .mentorship-with-image .mentorship-body { padding: 32px 28px; }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
    height: auto;
  }
  .photo-card.photo-tall { grid-row: span 1; grid-column: span 2; }

  .quote-band { padding: 100px 0; }
  .quote-band-bg { background-attachment: scroll; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    height: auto;
  }
  .photo-card.photo-tall { grid-row: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bone);
    flex-direction: column;
    gap: 0;
    padding: 12px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .section { padding: 72px 0; }
  .hero { padding: 48px 0 72px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-actions .btn { flex: 1; }

  .timeline::before { left: 8px; }
  .timeline li { grid-template-columns: 1fr; gap: 10px; padding-left: 34px; }
  .tl-year { text-align: left; padding-top: 0; }
  .tl-year::after { left: -30px; right: auto; top: 8px; }

  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .form-row { grid-template-columns: 1fr; }

  .portrait-badge { width: 110px; height: 110px; bottom: -22px; right: -22px; }
  .portrait-badge-inner .big { font-size: 1rem; }
  .portrait-badge-inner .small { font-size: 1.15rem; }
  .portrait-badge-inner .small:last-child { font-size: .52rem; }

  .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-text small { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .mentorship { padding: 28px 22px; }
  .panel, .contact-form { padding: 28px 22px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .section, .hero-stats li, .card, .tl-card, .conf-card {
    opacity: 1 !important; transform: none !important;
  }
}
