@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white: #FFFFFF;
  --ink: #14141A;
  --mid: #6B7280;
  --light: #A3A3AD;
  --rule: #E9E7EE;
  --bg-warm: #FAFAFC;
  --purple: #8B5CF6;
  --pink: #EC4899;
  --blue: #3B82F6;
  --gradient: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
  --gradient-2: linear-gradient(90deg, var(--purple), var(--pink));
  --glow: rgba(139, 92, 246, 0.28);
}

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

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.serif { font-family: 'Cormorant Garamond', serif; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

::selection { background: var(--purple); color: #fff; }

/* ---------- Top accent line ---------- */
.accent-bar {
  height: 3px;
  background: var(--gradient);
}

/* ---------- Nav ---------- */
nav {
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover { color: var(--ink); border-color: var(--purple); }

/* ---------- Hero ---------- */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 40px 88px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.hero-photo {
  position: relative;
  width: 220px;
  height: 220px;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.9;
}
.hero-photo img {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
}
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
h1.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 30px;
}
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-2);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 999px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 20px -6px var(--glow);
}
.btn-grad:hover {
  box-shadow: 0 14px 34px -6px var(--glow), 0 0 0 1px rgba(139,92,246,0.15);
  transform: translateY(-2px);
}
.btn-grad:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px -6px var(--glow);
}

/* ---------- Thoughts section ---------- */
.thoughts {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 40px 120px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.thoughts h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.thoughts-sub {
  font-size: 15px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.thought-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thought-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.thought-card::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.thought-card:hover,
.thought-card:focus-visible {
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 18px 40px -18px var(--glow), 0 2px 10px rgba(20,20,26,0.04);
  transform: translateY(-3px);
}
.thought-card:hover::before,
.thought-card:focus-visible::before { opacity: 1; }
.thought-card:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px var(--glow);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 28px 56px;
  color: var(--light);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
}

/* ---------- Bio page ---------- */
.bio-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.bio-header .avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.bio-header .avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient);
}
.bio-header img {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  display: block;
}
.bio-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 4px;
}
.bio-header p {
  color: var(--mid);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
}

.bio-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 40px 110px;
}
.bio-section {
  padding: 44px 0;
  border-top: 1px solid var(--rule);
}
.bio-section:first-child { border-top: none; }
.bio-section .section-label { margin-bottom: 18px; }
.bio-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 16px;
}
.bio-section .lead {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--ink);
}
.bio-section .lead:last-of-type { margin-bottom: 0; }
.bio-section .lead strong { font-weight: 500; color: var(--purple); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 26px;
}
.stat {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label2 {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.entry-list { list-style: none; }
.entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.entry:last-child { border-bottom: none; padding-bottom: 0; }
.entry:first-child { padding-top: 0; }
.entry .role {
  display: block;
  font-weight: 500;
  font-size: 15.5px;
  margin-bottom: 4px;
}
.entry .desc {
  display: block;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.7;
}
.entry .desc.note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--purple);
}

.interests-text {
  font-size: 16px;
  line-height: 1.85;
}

.disclaimer-section {
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 40px 44px;
  border-top: none;
  margin-top: 8px;
}
.disclaimer-section .lead {
  color: var(--mid);
  font-size: 13.5px;
  line-height: 1.8;
}

@media (max-width: 720px) {
  nav { padding: 18px 24px; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding: 56px 24px 60px; text-align: left; }
  .hero-photo, .hero-photo img, .hero-photo::before { width: 160px; height: 160px; }
  h1.hero-name { font-size: 38px; }
  .thoughts { padding: 8px 24px 90px; }
  .thought-card { padding: 22px 24px; font-size: 17px; }
  .bio-header { padding: 48px 24px 8px; }
  .bio-body { padding: 24px 24px 90px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .disclaimer-section { padding: 28px 24px; }
}
