:root {
  --paper: #FCFBF8;
  --card: #FFFFFF;
  --ink: #1A1815;
  --ink-soft: #55504A;
  --ink-faint: #8A8478;
  --coral-dark: #C24A2B;
  --coral-mid: #6B655B;
  --coral-tint: #F7F3EC;
  --coral-line: #C24A2B;
  --hairline: #E7E3DA;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --display: "Fraunces", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
header.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 28px;
  padding-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.site-name {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
nav.main { display: flex; gap: 22px; flex-wrap: wrap; }
nav.main a {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 2px;
}
nav.main a:hover { color: var(--coral-dark); }
nav.main a.active {
  color: var(--coral-dark);
  border-bottom: 2px solid var(--coral-line);
}

/* Hero */
.hero { background: var(--coral-tint); position: relative; overflow: hidden; }
.hero .wrap {
  padding-top: 56px;
  padding-bottom: 48px;
}
.hero .wrap > div { max-width: 58%; }
.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 36%;
  object-fit: cover;
  object-position: center 22%;
  border: none;
  border-radius: 0;
}
@media (max-width: 720px) {
  .hero .wrap > div { max-width: 100%; }
  .hero-portrait {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 24px;
    display: block;
    border-radius: 12px;
  }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 18px;
}
.hero p.dek {
  font-size: 18px;
  font-style: italic;
  color: var(--coral-mid);
  max-width: 560px;
}

/* Page title band (interior pages) */
.pagehead { background: var(--coral-tint); }
.pagehead .wrap { padding-top: 48px; padding-bottom: 40px; }
.pagehead h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--ink);
}
.pagehead p {
  font-style: italic;
  color: var(--coral-mid);
  margin-top: 8px;
  max-width: 620px;
}

/* Sections */
section { padding: 44px 0; }
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
h2.sec {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--ink);
}
h3.sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-mid);
  margin: 28px 0 12px;
}

/* Hero artwork */
.heroart { margin: 0; }
.heroart img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--card);
}
.heroart figcaption {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 10px;
  text-align: center;
}

/* Featured post */
.featured {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 28px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
.featured > div { min-width: 0; flex: 1; }
.f-img {
  width: 210px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  display: none;
}
@media (max-width: 720px) {
  .featured { flex-direction: column; }
  .f-img { width: 100%; }
}

/* Conversations strip */
.convo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.convo figure { margin: 0; }
.convo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  display: block;
}
.convo figcaption {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .convo { grid-template-columns: 1fr; }
}
.featured .f-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  margin: 6px 0 8px;
}
.featured .f-title a { color: var(--ink); text-decoration: none; }
.featured .f-title a:hover { color: var(--coral-dark); }
.featured .f-dek { color: var(--ink-soft); font-size: 16.5px; max-width: 560px; }
.featured .f-meta { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; }

/* Writing list rows */
.worklist { list-style: none; }
.worklist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
.worklist li:last-child { border-bottom: none; }
.worklist .t { font-size: 17.5px; }
.worklist .t a { color: var(--ink); text-decoration: none; }
.worklist .t a:hover { color: var(--coral-dark); text-decoration: underline; text-decoration-color: var(--coral-line); }
.worklist .m {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* Book cards */
.books { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.book {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.book .cover {
  width: 92px;
  height: 138px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--hairline);
  background: var(--coral-tint);
  flex-shrink: 0;
}
.book > div { min-width: 0; }
.book h4 { font-family: var(--display); font-weight: 500; font-size: 17px; line-height: 1.4; margin-bottom: 6px; }
.book h4 em { font-style: italic; }
.book .meta { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); margin-bottom: 8px; }
.book p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.award {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  background: var(--coral-tint);
  color: var(--coral-dark);
  border-radius: 999px;
  padding: 3px 11px;
  margin-top: 10px;
}

/* Callout band (subscribe / booking) */
.callout {
  background: var(--coral-tint);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.callout p { font-style: italic; color: var(--coral-mid); font-size: 16.5px; }
.callout .swmark {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  display: block;
}
.swband { margin: 0; }
.swband img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--hairline);
}
.btn {
  font-family: var(--sans);
  font-size: 14px;
  background: var(--coral-dark);
  color: #FCFBF8;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: #9A3820; }
.btn.ghost {
  background: transparent;
  color: var(--coral-dark);
  border: 1px solid var(--coral-line);
}

/* Two-column about */
.bio-grid { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.bio-grid img { width: 100%; border-radius: 10px; display: block; }
.photo-credit { font-family: var(--sans); font-size: 11.5px; color: var(--ink-faint); margin-top: 8px; }
.bio-grid p + p { margin-top: 14px; }
@media (max-width: 720px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-grid img { max-width: 320px; }
}

/* CV blocks */
.cvblock { margin-bottom: 30px; }
.cvblock ul { list-style: none; }
.cvblock li { padding: 7px 0; border-bottom: 1px solid var(--hairline); font-size: 16px; }
.cvblock li:last-child { border-bottom: none; }
.cvblock li .yr { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); margin-left: 8px; }

/* Speaking topics */
.topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.topic {
  border-left: 3px solid var(--coral-line);
  padding: 4px 0 4px 16px;
}
.topic h4 { font-family: var(--display); font-weight: 500; font-size: 17px; margin-bottom: 4px; }
.topic p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* Forms */
form.contact { display: grid; gap: 14px; max-width: 560px; }
form.contact label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}
form.contact input, form.contact select, form.contact textarea {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
}
form.contact input:focus, form.contact select:focus, form.contact textarea:focus {
  outline: 2px solid var(--coral-line);
  border-color: var(--coral-line);
}

/* Footer */
footer.site {
  border-top: 1px solid var(--hairline);
  margin-top: 30px;
}
footer.site .wrap {
  padding-top: 30px;
  padding-bottom: 44px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
}
footer.site a { color: var(--ink-soft); text-decoration: none; }
footer.site a:hover { color: var(--coral-dark); }
