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

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

:root {
  --ink: #1a1814;
  --ink-mid: #3a3835;
  --ink-muted: #6b6760;
  --ink-faint: #a0a09a;
  --bg: #ffffff;
  --rule: rgba(26,24,20,0.1);
  --red: #C8392B;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max: 780px;
  --max-wide: 1080px;
}

html { font-size: 18px; scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

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

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

/* ── PAGE ── */
.page { padding-top: 72px; }

/* ── HERO ── */
.hero {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--ink-muted);
}

.hero-body {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 640px;
  line-height: 1.8;
}

/* ── SECTIONS ── */
section {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3rem;
}

/* ── TWO-COL GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  max-width: var(--max-wide);
}

.col-heading {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.col-heading em {
  font-style: italic;
  color: var(--ink-muted);
}

/* ── BULLET LIST ── */
.bullet-list { list-style: none; }

.bullet-list li {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 1rem 0 1rem 1.4rem;
  border-top: 1px solid var(--rule);
  line-height: 1.65;
  position: relative;
}

.bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

.bullet-list li:last-child { border-bottom: 1px solid var(--rule); }

/* ── ENGAGEMENT STATS ── */
.engagement-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3rem;
}

.engagement-item {
  padding: 1.5rem 2rem 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.engagement-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.engagement-value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

/* ── CONTACT SIGNAL ── */
.contact-signal p {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.4;
  max-width: 640px;
  margin-bottom: 2rem;
}

.cta-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.cta-link:hover { color: var(--red); }

/* ── FULL PAGES ── */
.page-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 3rem 6rem;
}

.page-inner-wide {
  max-width: var(--max-wide);
  padding: 7rem 3rem 6rem;
}

.page-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.page-title em { font-style: italic; color: var(--ink-muted); }

.prose {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-mid);
}

.prose p + p { margin-top: 1.5rem; }

/* ── ABOUT PAGE ── */
.about-page-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  align-items: start;
}

.about-meta { position: sticky; top: 100px; }

.about-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.about-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}

.ventures { list-style: none; margin-top: 0.5rem; }

.ventures li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding: 0.6rem 0;
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}

.ventures li:last-child { border-bottom: 1px solid var(--rule); }

/* ── WRITING ── */
.essay-forthcoming {
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: var(--max);
}

.forthcoming-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.8rem;
}

.forthcoming-desc {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 500px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.5rem;
}

.topic-item {
  padding: 1.2rem 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-mid);
}

/* ── CONTACT PAGE ── */
.contact-intro {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 520px;
}

.contact-email {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 3px;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--red); }

/* ── FOOTER ── */
footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
}

.footer-mark {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.footer-mark span { color: var(--red); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 3rem;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid var(--rule);
}

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

.nav-drawer a {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 4rem 1.5rem; }
  section { padding: 3.5rem 1.5rem; }
  .two-col,
  .about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-meta { position: static; }
  .engagement-row { grid-template-columns: 1fr; }
  .page-inner, .page-inner-wide { padding: 5rem 1.5rem 4rem; }
  footer { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 2rem 1.5rem; }
  .nav-drawer { padding: 2.5rem 1.5rem; }
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible { opacity: 1; transform: none; }
