:root {
  --bg: #e0d4fc;
  --bg-soft: #d7c8ed;
  --text: #2f2551;
  --muted: #5e5487;
  --accent: #6e5b9a;
  --accent-2: #b29ce4;
  --card: rgba(255, 255, 255, 0.98);
  --line: rgba(66, 50, 110, 0.16);
  --shadow: 0 18px 40px rgba(66, 50, 110, 0.18);
  --radius: 28px;
}

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

body {
  font-family: "Space Grotesk", "Avenir", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #f8f4ff 0%, #efe8ff 55%)
    fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  opacity: 0.55;
  filter: blur(0px);
}

.bg-shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(110, 91, 154, 0.42), transparent 70%);
  top: -120px;
  right: -80px;
}

.bg-shape-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(178, 156, 228, 0.35), transparent 70%);
  bottom: -200px;
  left: -180px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(224, 212, 252, 0.92), rgba(224, 212, 252, 0));
  backdrop-filter: blur(8px);
  z-index: 5;
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 15px;
  color: var(--muted);
}

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

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  padding: 20px 64px 0;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text h1 span {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  margin-top: 12px;
}

.hero-text h1 em {
  color: var(--accent);
  font-style: normal;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.primary,
.ghost {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary {
  background: var(--accent);
  color: #ffffff;
}

.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.stat-number {
  font-size: 1.1rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(66, 50, 110, 0.12);
  transform: translateY(0);
  animation: floatIn 900ms ease-out forwards;
}

.portrait {
  background: linear-gradient(135deg, rgba(110, 91, 154, 0.22), rgba(178, 156, 228, 0.24)),
    url("assets/headshot.jpg") center 48%/cover no-repeat;
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 320px;
}

.card-body {
  padding: 24px 28px;
}

.card-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.card-body ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.section {
  padding: 80px 64px;
}

.section-title {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
  font-family: "Fraunces", "Times New Roman", serif;
}

.section-title p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 200px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 91, 154, 0.35);
}

.timeline {
  display: grid;
  gap: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(110, 91, 154, 0.18);
  margin-top: 6px;
}

.timeline-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.section-cta {
  margin-top: 28px;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight {
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  min-height: 220px;
}

.tag {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #4b3f7a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact {
  padding-bottom: 120px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.footer {
  padding: 32px 64px 48px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .nav {
    padding: 20px 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .section {
    padding: 64px 32px;
  }

  .footer {
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stats {
    flex-direction: column;
    gap: 16px;
  }
}
