@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --ink: #1a1a18;
  --ink-mid: #5a5a56;
  --ink-light: #9a9a94;
  --paper: #faf9f6;
  --paper-mid: #f0ede6;
  --border: rgba(26,26,24,0.12);
  --border-mid: rgba(26,26,24,0.22);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 10px;
  --max: 860px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f0ede6;
    --ink-mid: #a8a49c;
    --ink-light: #6a6660;
    --paper: #161614;
    --paper-mid: #1e1e1c;
    --border: rgba(240,237,230,0.1);
    --border-mid: rgba(240,237,230,0.2);
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0 1.75rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 4rem;
}

.nav-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--ink-mid);
}

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

/* LAYOUT */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding-bottom: 5rem; }

/* TYPOGRAPHY */
.kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.16;
  margin-bottom: 1.5rem;
}

h1 em { font-style: italic; }

h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 1.25rem;
}

h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 560px;
  margin-bottom: 2rem;
}

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
}

.body-text p { margin-bottom: 1rem; }

/* DIVIDER */
hr {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 3rem 0;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.82; }

.btn-ghost {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  background: none;
  color: var(--ink);
  border-radius: var(--radius);
  border: 0.5px solid var(--border-mid);
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.15s;
}

.btn-ghost:hover { background: var(--paper-mid); }

/* CREDENTIAL GRID */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.cred-item {
  border-left: 1.5px solid var(--border-mid);
  padding-left: 1.25rem;
}

.cred-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.cred-label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-mid);
}

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .topics-grid { grid-template-columns: 1fr; }
}

/* TIMELINE ASIDE */
.aside-box {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--paper-mid);
}

.aside-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

.timeline-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-mid);
  margin-top: 7px;
  flex-shrink: 0;
}

.t-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mid);
}

.t-date {
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* SPEAKING TOPICS */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.topic-card {
  background: var(--paper-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.topic-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.topic-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* AUDIENCE PILLS */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}

.pill {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 0.5px solid var(--border-mid);
  color: var(--ink-mid);
}

/* QUOTE */
.pull-quote {
  border-left: 2px solid var(--border-mid);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.pull-quote cite {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-style: normal;
}

/* FORM */
.form-field { margin-bottom: 14px; }

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 5px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--ink);
  border: 0.5px solid var(--border-mid);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--ink-mid);
}

.form-field textarea { height: 90px; resize: vertical; }

/* WRITING PAGE */
.writing-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.writing-placeholder {
  border: 0.5px dashed var(--border-mid);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 14px;
}

.footer-note {
  font-size: 12px;
  color: var(--ink-light);
}
