:root {
  --navy: #132a4a;
  --navy-deep: #0b1a30;
  --gold: #b8964e;
  --gold-soft: #d4b978;
  --ink: #2a3140;
  --muted: #5c6575;
  --line: rgba(19, 42, 74, 0.12);
  --paper: #f7f4ef;
  --white: #ffffff;
  --penn-red: #990000;
  --shadow: 0 18px 50px rgba(11, 26, 48, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--paper);
  min-height: 100vh;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(184, 150, 78, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(19, 42, 74, 0.14), transparent 50%),
    linear-gradient(180deg, #ebe6dc 0%, var(--paper) 35%, #f3efe8 100%);
}

.page {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 2.1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  margin-bottom: 2.75rem;
  animation: rise 0.7s ease both;
}

.photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid var(--white);
  box-shadow:
    0 0 0 1px rgba(184, 150, 78, 0.45),
    0 14px 32px rgba(11, 26, 48, 0.22);
}

.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.identity h1 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.title {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.lede {
  color: var(--muted);
  max-width: 38ch;
  font-size: 1.02rem;
}

.section {
  margin-bottom: 2.6rem;
  animation: rise 0.8s ease both;
}

.section:nth-of-type(1) { animation-delay: 0.05s; }
.section:nth-of-type(2) { animation-delay: 0.1s; }
.section:nth-of-type(3) { animation-delay: 0.15s; }
.section:nth-of-type(4) { animation-delay: 0.2s; }

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.prose p + p {
  margin-top: 1em;
}

.prose {
  color: var(--ink);
  max-width: 62ch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11, 26, 48, 0.05);
}

.stat-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.role-meta h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}

.org {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.timeline p:last-child {
  color: var(--muted);
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-1px);
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
}

.edu-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.35rem;
  align-items: center;
}

.edu-logo {
  width: 100%;
  height: auto;
  display: block;
}

.edu-text h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.edu-text p {
  color: var(--muted);
  font-size: 1rem;
}

.footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .page {
    width: min(100% - 1.5rem, 920px);
    padding-top: 1.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.6rem 1.35rem;
    gap: 1.35rem;
  }

  .lede {
    margin-inline: auto;
  }

  .photo {
    width: 170px;
    height: 170px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .edu-row {
    grid-template-columns: 160px 1fr;
    gap: 1rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }
}
