:root {
  --ink: #0d0d0d;
  --paper: #f5f2ec;
  --cream: #ede9e0;
  --gold: #c8a96e;
  --gold-light: #e8d5a3;
  --warm-grey: #8a8279;
  --mid: #4a4540;
  --accent: #2d5a3d;
  --accent-light: #4a8a60;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--ink);
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding: 8rem 4rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero-name em {
  font-style: italic;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

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

.btn-outline {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(74,69,64,0.4);
  cursor: pointer;
  transition: all 0.25s;
}

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

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-box {
  background: rgba(245,242,236,0.05);
  border: 1px solid rgba(200,169,110,0.15);
  padding: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.4s; }
.stat-box:nth-child(2) { animation-delay: 0.55s; }
.stat-box:nth-child(3) { animation-delay: 0.7s; }
.stat-box:nth-child(4) { animation-delay: 0.85s; }

.stat-box:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.35);
  transition: all 0.3s;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* SECTION BASE */
section { padding: 7rem 5rem; }

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--gold); }

.section-lead {
  font-size: 1rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ABOUT */
#about {
  background: var(--ink);
  color: var(--paper);
}

#about .section-title { color: var(--paper); }
#about .section-lead { color: rgba(245,242,236,0.65); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245,242,236,0.75);
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--gold-light);
  font-weight: 500;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.credential-item {
  padding: 1.5rem;
  border: 1px solid rgba(200,169,110,0.2);
  position: relative;
  transition: all 0.3s;
}

.credential-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.credential-item:hover {
  border-color: rgba(200,169,110,0.4);
  background: rgba(200,169,110,0.05);
}

.credential-role {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.credential-org {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.credential-desc {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.55);
  line-height: 1.6;
}

/* PROJECTS */
#projects {
  background: var(--cream);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.project-card {
  background: var(--paper);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.project-card:hover::after { width: 100%; }

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.project-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.project-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent);
  background: rgba(45,90,61,0.05);
}

.project-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}

/* INITIATIVES */
#initiatives { background: var(--paper); }

.initiatives-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.initiative-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(200,169,110,0.3);
  transition: all 0.3s;
}

.initiative-item:hover {
  border-top-color: var(--gold);
  padding-left: 0.5rem;
}

.initiative-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.initiative-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.initiative-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

/* EXPERIENCE */
#experience {
  background: var(--ink);
  color: var(--paper);
}

#experience .section-title { color: var(--paper); }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.exp-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.exp-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.exp-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.exp-org {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.5);
  margin-bottom: 0.75rem;
}

.exp-detail {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.55);
  line-height: 1.7;
}

/* SPEAKING */
#speaking {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#speaking::before {
  content: 'SPEAK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 300;
  color: rgba(200,169,110,0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.speaking-inner {
  position: relative;
  z-index: 1;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.topic-card {
  background: var(--paper);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}

.topic-card:hover {
  transform: translateX(6px);
  box-shadow: -6px 0 0 var(--gold);
}

.topic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.topic-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
}

.speaking-cta {
  background: var(--ink);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.speaking-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--paper);
  max-width: 500px;
  line-height: 1.4;
}

.speaking-cta-text em { font-style: italic; color: var(--gold); }

/* CONTACT */
#contact {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 8rem 5rem;
}

#contact .section-title { color: var(--paper); text-align: center; }
#contact .section-title em { color: var(--gold); }

.contact-sub {
  font-size: 1rem;
  color: rgba(245,242,236,0.6);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 0.25rem;
  transition: all 0.25s;
  display: inline-block;
  margin-bottom: 3rem;
}

.contact-email:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover { color: var(--gold); }

/* FOOTER */
footer {
  background: #080808;
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200,169,110,0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--warm-grey);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(138,130,121,0.5);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

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

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

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-right { background: var(--ink); padding: 3rem 1.5rem; }
  .hero-left { padding: 6rem 1.5rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .initiatives-list { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 2rem 1.5rem; }
}
