:root {
  --ink: #19362c;
  --muted: #596a60;
  --paper: #f8f6f0;
  --white: #fffefa;
  --line: #dcded3;
  --accent: #ad452a;
  --soft: #e7eee5;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #e6e8e1; color: var(--ink); font: 16px/1.65 var(--sans); }
button, input, textarea { font: inherit; color: inherit; }
button, summary { cursor: pointer; }
a { color: inherit; text-underline-offset: .22em; }
a:hover { color: var(--accent); }
a, button, input, textarea, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0 0 1em; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(3rem, 5.2vw, 4.7rem); margin-bottom: .4em; }
h2 { font-size: clamp(2.1rem, 3.4vw, 3.1rem); }
h3 { font-size: 1.4rem; line-height: 1.3; }
em { color: var(--accent); font-weight: 400; }
.site-shell { max-width: 1440px; margin: auto; min-height: 100vh; background: var(--paper); }
.wrap { width: min(1120px, calc(100% - 80px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 20px; top: 15px; z-index: 100; background: var(--white); padding: 10px; }
.site-header { display: flex; justify-content: space-between; align-items: center; min-height: 104px; gap: 24px; }
.brand { display: inline-flex; gap: 11px; align-items: center; text-decoration: none; font-size: 22px; font-weight: 650; letter-spacing: -.8px; }
.brandmark { display: grid; place-items: center; width: 35px; height: 35px; background: var(--ink); color: var(--paper); border-radius: 50%; font: italic 27px var(--serif); }
.site-header nav { display: flex; align-items: center; gap: 27px; font-size: 14px; }
.site-header nav a { text-decoration: none; }
.site-header nav a[aria-current] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.site-header .contact-link { border: 1px solid var(--ink); border-radius: 5px; padding: 9px 15px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 22px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: center; padding-block: 55px 80px; }
.lede { max-width: 580px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero .lede { max-width: 490px; margin: 25px 0 30px; }
.actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 28px; background: var(--ink); color: var(--white); border: 1px solid var(--ink); border-radius: 5px; padding: 14px 21px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .15s; }
.button:hover { background: #2b5343; color: white; }
.text-link { font-size: 14px; font-weight: 550; text-decoration: underline; text-decoration-color: #abb5a8; }
.home-portrait { display: block; width: 100%; max-width: 360px; height: auto; border-radius: 8px; justify-self: center; }
.interests { display: flex; justify-content: space-around; gap: 20px; border-block: 1px solid var(--line); padding-block: 23px; font-size: 13px; color: var(--muted); }
.interests span + span { border-left: 1px solid var(--line); padding-left: 40px; }
.writing-section { padding-block: 75px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > a { white-space: nowrap; margin-bottom: 6px; }
.article-list { display: grid; gap: 30px; }
.article-card { display: grid; grid-template-columns: .83fr 1.5fr; gap: 38px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.article-image { display: block; overflow: hidden; border-radius: 8px; background: #e6e8df; }
.article-image img { width: 100%; aspect-ratio: 1.75; object-fit: cover; transition: transform .2s; }
.article-image:hover img { transform: scale(1.025); }
.article-card h3 { max-width: 570px; font: 400 clamp(1.55rem, 2.4vw, 2rem)/1.14 var(--serif); letter-spacing: -.02em; margin-bottom: 12px; }
.article-card h3 a { text-decoration: none; }
.article-copy > p:not(.meta) { color: var(--muted); font-size: 15px; max-width: 550px; }
.meta { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: 11px; letter-spacing: .02em; margin-bottom: 14px; }
.mentoring-note { display: flex; justify-content: space-between; align-items: center; gap: 45px; border-radius: 10px; padding: 45px 50px; background: #eee7ed; margin-bottom: 85px; }
.mentoring-note h2 em { color: #765381; }
.mentoring-note h2 { margin-bottom: 20px; }
.mentoring-note p:not(.eyebrow) { max-width: 510px; color: var(--muted); margin-bottom: 0; }
.mentoring-note > a { flex-shrink: 0; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 30px; border-top: 1px solid var(--line); }
.site-footer p { color: var(--muted); font-size: 11px; margin: 9px 0 0; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; }
.footer-links a { text-decoration: none; }
.footer-links button { padding: 0; border: 0; background: none; font: inherit; text-decoration: underline; }
.page-intro { padding-block: 55px 40px; }
.page-intro .lede { margin-top: 25px; }
.page-intro + .writing-section { padding-top: 0; }
.about-grid { display: grid; grid-template-columns: .8fr 1.25fr; gap: 80px; padding-bottom: 85px; }
.about-photo { background: var(--soft); border-radius: 10px; padding: 25px; align-self: start; }
.about-photo img { mix-blend-mode: multiply; border-radius: 6px; width: 100%; }
.about-photo p { font-size: 11px; color: var(--muted); margin: 17px 0 0; }
.about-copy > p { font-size: 18px; color: var(--muted); }
.about-copy h2 { font-size: 2rem; margin-top: 35px; }
.tags { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin-bottom: 35px; list-style: none; }
.tags li { border: 1px solid var(--line); padding: 6px 11px; border-radius: 4px; font-size: 12px; }
.mentoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; padding-bottom: 85px; }
.mentoring-grid h2 { font-size: 2rem; }
.topic-list { padding-left: 20px; margin-bottom: 25px; }
.topic-list li { padding: 7px 0; }
.muted { color: var(--muted); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 30px; }
.contact-form label { display: block; font-size: 14px; margin-bottom: 7px; }
.contact-form label span { color: var(--muted); font-size: 12px; }
.contact-form input:not(.honeypot), .contact-form textarea { display: block; width: 100%; border: 1px solid #aebaae; border-radius: 4px; background: var(--paper); padding: 10px 12px; margin-bottom: 20px; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .honeypot { display: none; }
.form-note { font-size: 12px; color: var(--muted); }
.article-header { max-width: 840px; padding-block: 45px 30px; }
.article-header > a { display: inline-block; margin-bottom: 35px; }
.article-header h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); }
.byline { font-size: 13px; color: var(--muted); margin-top: 25px; }
.prose { max-width: 760px; font-size: 18px; line-height: 1.85; padding-bottom: 80px; overflow-wrap: anywhere; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-top: 1.5em; scroll-margin-top: 25px; }
.prose h3 { margin-top: 1.5em; }
.prose h2 a { text-decoration: none; }
.prose p, .prose li { color: #344e41; }
.prose li p { margin-bottom: .4em; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 30px 0; padding: 5px 25px; font-family: var(--serif); }
.prose img { margin: 28px auto; border-radius: 6px; }
.prose pre { overflow-x: auto; background: #edf0e8; padding: 20px; border-radius: 6px; font-size: 14px; line-height: 1.65; }
.prose code { font-size: .85em; }
.prose table { display: block; overflow-x: auto; border-collapse: collapse; max-width: 100%; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px; text-align: left; }
.article-end { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 30px; }
.article-end > p { font: italic 30px var(--serif); color: var(--accent); margin-bottom: 15px; }
.offer-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 80px; }
.offer-list article { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 25px; }
.offer-list h2 { font-size: 2rem; }
@media (max-width: 950px) {
  .hero { gap: 30px; }
  .about-grid, .mentoring-grid { gap: 35px; }
  .mentoring-note { padding: 35px; }
}
@media (max-width: 700px) {
  .wrap { width: calc(100% - 40px); }
  .site-header { flex-wrap: wrap; padding-block: 23px; gap: 20px; }
  .site-header nav { width: 100%; justify-content: space-between; gap: 12px; font-size: 12px; }
  .site-header .contact-link { padding: 6px 8px; white-space: nowrap; }
  .hero { grid-template-columns: 1fr; padding-block: 25px 45px; gap: 38px; }
  .hero h1 { font-size: clamp(2.85rem, 9.5vw, 4rem); }
  .hero .lede { margin-top: 22px; }
  .interests { justify-content: start; flex-wrap: wrap; gap: 9px 20px; padding-block: 18px; }
  .interests span + span { padding-left: 0; border: 0; }
  .writing-section { padding-block: 45px; }
  .section-heading { align-items: start; flex-direction: column; gap: 15px; }
  .article-card { grid-template-columns: 1fr; gap: 20px; }
  .article-card h3 { font-size: 1.8rem; }
  .article-image img { aspect-ratio: 2; }
  .mentoring-note { flex-direction: column; align-items: start; padding: 28px; margin-bottom: 45px; gap: 25px; }
  .site-footer { flex-direction: column; align-items: start; }
  .footer-links { gap: 13px 20px; }
  .page-intro { padding-block: 30px; }
  .about-grid, .mentoring-grid, .offer-list { grid-template-columns: 1fr; padding-bottom: 50px; gap: 30px; }
  .about-photo { max-width: 420px; }
  .contact-form { padding: 22px; }
  .article-header { padding-top: 25px; }
  .article-header h1 { font-size: 2.5rem; }
  .prose { font-size: 17px; padding-bottom: 45px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
@media print {
  .site-header nav, .site-footer, .skip-link, #cc-main { display: none !important; }
  body, .site-shell { background: white; }
  .wrap { width: 100%; }
  .prose { max-width: none; }
}
