:root {
  --ink: #1a1a1a;
  --ink-light: #555;
  --ink-muted: #999;
  --cream: #faf8f5;
  --sand: #f0ebe4;
  --warm: #c9b99a;
  --accent: #8b7355;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1.15rem; font-weight: 400; margin: 1.5rem 0 0.5rem; }

p { max-width: 640px; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); }
a:hover { color: var(--accent); }

ul, ol { margin: 0.5rem 0 1rem 1.5rem; max-width: 640px; }
li { margin-bottom: 0.3rem; }

/* ── Layout ── */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
header {
  border-bottom: 1px solid var(--sand);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 720px;
}
.site-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
}
nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a {
  font-size: 0.8rem;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}
nav a:hover, nav a.active { color: var(--ink); }

/* Mobile nav */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  padding: 0.25rem;
}
@media (max-width: 600px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }
  nav.open { display: flex; }
  nav a { font-size: 0.9rem; }
}

/* ── Main content ── */
main {
  padding: 3rem 0 5rem;
}

/* ── Subtle dividers ── */
.divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 2.5rem 0;
}

/* ── Info blocks ── */
.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.info-row dt {
  color: var(--ink-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.info-row dd { color: var(--ink); }

@media (max-width: 480px) {
  .info-row { grid-template-columns: 1fr; gap: 0.1rem; }
}

/* ── Podcast embed ── */
.podcast-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--sand);
}
.podcast-item:first-of-type { border-top: 1px solid var(--sand); }
.podcast-item h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.podcast-item p { font-size: 0.85rem; color: var(--ink-light); margin: 0; }
.podcast-item a {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
}

/* ── Button ── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  border: none;
  border-radius: 2px;
  margin-top: 1rem;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.8; color: var(--cream); }

/* ── Muted small text ── */
.muted { color: var(--ink-muted); font-size: 0.85rem; }
.small { font-size: 0.85rem; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--sand);
  padding: 2.5rem 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
footer a { color: var(--ink-muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
