:root {
  --bg: #fbfafc;
  --bg-alt: #ffffff;
  --ink: #1c1a21;
  --ink-soft: #5d5965;
  --green: #6d4fa3;
  --green-deep: #241d33;
  --peach: #a98fd6;
  --peach-soft: #efeaf7;
  --border: #e6e2ec;
  --radius: 16px;
  --container: 1140px;
  --serif: "Fraunces", serif;
  --sans: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--peach-soft); color: var(--green-deep); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

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

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 252, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-dot { color: var(--peach); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.btn-nav {
  background: var(--green);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--green-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-inner { display: block; }

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-photo-wrap {
  position: relative;
  width: 200px;
  margin: 0 auto 32px;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(36, 29, 51, 0.22);
}

.hero-photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--green), var(--peach), var(--peach-soft), var(--green));
  opacity: 0.9;
}

.hero-text h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.2rem);
  margin-bottom: 24px;
}

.credential {
  display: block;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 12px;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 34px;
}

.hero-lede em {
  font-family: var(--serif);
  color: var(--green);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 79, 163, 0.28);
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--peach-soft);
  border-radius: 999px;
  padding: 7px 16px;
}

.hero-badges abbr { text-decoration: none; }

/* hero ribbon */
.hero-ribbon {
  position: relative;
  margin-top: 10px;
}

.hero-ribbon svg {
  display: block;
  width: 100%;
  height: clamp(110px, 16vw, 200px);
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--green-deep);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 16rem;
  line-height: 1;
  color: rgba(169, 143, 214, 0.14);
  pointer-events: none;
}

.quote-band blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: #f4f1f9;
  max-width: 880px;
  margin: 0 auto 20px;
  line-height: 1.45;
}

.quote-band cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--peach);
  letter-spacing: 0.04em;
}

/* ---------- Credibility strip ---------- */
.cred-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.cred-label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
}

.cred-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
}

.cred-item {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 18px;
}


/* ---------- Instagram ---------- */
.ig-embed-wrap {
  display: flex;
  justify-content: center;
}

.ig-handle {
  color: var(--green);
  font-weight: 600;
}

.ig-handle:hover { text-decoration: underline; }

.ig-cta {
  text-align: center;
  margin-top: 28px;
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section:nth-of-type(even) { background: var(--bg-alt); }

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-heading h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.about-text strong { color: var(--ink); }

.about-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--peach);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.section:nth-of-type(even) .stat-card { background: var(--bg); }

.stat-card h3 {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 8px;
}

.stat-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Specialties ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.focus-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.section:nth-of-type(even) .focus-card { background: var(--bg); }

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(28, 26, 33, 0.08);
  border-color: var(--peach);
}

.focus-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.focus-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.focus-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Story ---------- */
.story-inner { max-width: 760px; margin: 0 auto; }

.story-lead {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 26px;
}

.story-inner > p:not(.story-lead) {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.story-timeline {
  margin-top: 32px;
  border-left: 2px solid var(--peach);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid var(--bg);
  box-shadow: 0 0 0 2px var(--peach);
}

.section:nth-of-type(even) .timeline-item::before { border-color: var(--bg-alt); }

.timeline-year {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}

.timeline-item p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Publications ---------- */
.publication-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(28, 26, 33, 0.05);
}

.section:nth-of-type(even) .publication-card { background: var(--bg); }

.publication-meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 14px;
}

.publication-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.publication-card h3 a:hover { color: var(--green); }

.publication-authors {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.publication-authors strong { color: var(--green); }

.publication-card > p:not(.publication-meta):not(.publication-authors) {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.read-link {
  font-weight: 600;
  color: var(--green);
  border-bottom: 2px solid var(--peach);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.read-link:hover { color: var(--green-deep); }

/* ---------- Support group ---------- */
.support { text-align: center; }

.support .section-heading { margin-bottom: 36px; }

.support-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-lede { margin-top: 16px; color: var(--ink-soft); }

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section:nth-of-type(even) .social-card { background: var(--bg); }

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28, 26, 33, 0.08);
  border-color: var(--green);
}

.social-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--peach-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card strong { display: block; font-size: 1.02rem; }
.social-card small { color: var(--ink-soft); font-size: 0.84rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 38px 0;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-note { opacity: 0.75; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 64px 0 0; }
  .hero-ribbon { margin-top: 56px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .focus-grid { grid-template-columns: 1fr; }
  .social-links { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    display: none;
  }

  .nav-links.open { display: flex; }

  .footer-inner { justify-content: center; text-align: center; }

  .cred-inner { flex-direction: column; gap: 8px; }
}
