:root {
  --navy: #3f2a63;
  --navy-deep: #24143f;
  --blue-light: #eadcff;
  --blue-soft: #f6f0ff;
  --green-dark: #7a4eb0;
  --green-muted: #f1e8fb;
  --ink: #241f2f;
  --ink-soft: #4c435a;
  --muted: #70677c;
  --paper: #fcfbff;
  --white: #ffffff;
  --line: #e4d9ef;
  --shadow: 0 20px 45px rgba(47, 31, 77, 0.14);
  --radius: 24px;
  --header-hero-gradient: linear-gradient(135deg, #4b2e83 42%, #c8a2c8 100%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #f7f0fb);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.site-header {
  background: var(--header-hero-gradient);
  color: var(--white);
  padding: 22px clamp(20px, 5vw, 72px) 64px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
  border-bottom-color: var(--blue-light);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
}

.hero {
  max-width: 1180px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.04rem;
}

.hero-graphic {
  position: relative;
  min-height: 380px;
  width: 100%;
  align-self: center;
  isolation: isolate;
}

.hero-disk {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-disk--large {
  width: clamp(208px, 29vw, 296px);
  height: clamp(208px, 29vw, 296px);
  right: clamp(0px, 0.8vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(226, 204, 255, 0.58);
  z-index: 1;
}

.hero-disk--medium {
  width: clamp(140px, 20vw, 202px);
  height: clamp(140px, 20vw, 202px);
  right: clamp(172px, 24vw, 254px);
  bottom: clamp(26px, 7%, 46px);
  background: rgba(156, 114, 202, 0.56);
  z-index: 2;
}

.hero-disk--small {
  width: clamp(96px, 13.8vw, 134px);
  height: clamp(96px, 13.8vw, 134px);
  right: clamp(198px, 28.5vw, 278px);
  top: clamp(46px, 11.2%, 80px);
  background: rgba(191, 160, 230, 0.55);
  z-index: 3;
}

.hero-art {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  width: 220px;
  height: 220px;
  background: rgba(207, 230, 246, 0.6);
  top: 36px;
  right: 34px;
}

.orb-two {
  width: 160px;
  height: 160px;
  background: rgba(24, 63, 52, 0.74);
  bottom: 42px;
  left: 34px;
}

.line-grid {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.monogram {
  position: absolute;
  right: 34px;
  bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.6rem;
  color: rgba(255, 255, 255, 0.78);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-content {
  background: var(--white);
  margin-top: -36px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}

.page-content .eyebrow { color: var(--green-dark); }

.page-content p { color: var(--muted); max-width: 820px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 72px;
}

.section-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  min-height: 230px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.section-card:hover,
.section-card:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d8c3ea;
}

.card-number {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.section-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 16px 0 10px;
}

.section-card p { color: var(--muted); margin: 0; }

.page-header {
  background: var(--header-hero-gradient);
  color: var(--white);
  padding: 22px clamp(20px, 5vw, 72px) 74px;
}

.page-hero {
  max-width: 1180px;
  margin: 54px auto 0;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0 0 14px;
}

.page-hero p { color: rgba(255,255,255,0.78); max-width: 760px; }

.placeholder-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.page-content > .placeholder-list:first-child {
  margin-top: 0;
}

.placeholder-item {
  border-left: 4px solid var(--green-dark);
  background: var(--green-muted);
  padding: 18px 20px;
  border-radius: 14px;
}

.placeholder-item h2,
.placeholder-item h3 { margin: 0 0 8px; color: var(--navy); }

.cv-experience-list {
  margin: 0;
  padding-left: 1.25em;
}

.cv-experience-list li { margin: 0 0 2px; }

.cv-experience-list li:last-child { margin-bottom: 0; }

.cv-affiliations > p {
  margin: 0 0 4px;
}

.cv-affiliations > p:not(:first-of-type) {
  margin-top: 10px;
}

.institution-logo-inline {
  height: 1em;
  width: auto;
  vertical-align: -0.15em;
  margin-right: 0.35em;
}

.site-footer {
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer a { color: var(--navy); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; }
  .hero-graphic { min-height: 300px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .top-nav { align-items: flex-start; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    z-index: 10;
    background: rgba(36, 20, 63, 0.96);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .brand-subtitle { max-width: 230px; }
  .card-grid { grid-template-columns: 1fr; }
  .page-content { margin-top: -28px; }
}


/* Reputation-focused content block: creates readable, indexable official-profile content without cluttering the design. */
.seo-profile-block {
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(122, 78, 176, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(47, 31, 77, 0.08);
}

.seo-profile-block h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.seo-profile-block p {
  color: var(--ink-soft);
  line-height: 1.75;
}


body {
  font-family: Palatino, 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
}
