:root {
    --paper: #f7f5f0;
    --ink: #202521;
    --muted: #626962;
    --line: #d8d9d2;
    --accent: #325c4b;
    --accent-soft: #e2e9e3;
    --content-width: 72rem;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.site-header, main, footer {
    width: min(calc(100% - 3rem), var(--content-width));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    border-bottom: 1px solid var(--line);
}

.site-name {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

nav { display: flex; gap: clamp(1rem, 3vw, 2rem); }
nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-decoration: none;
}
nav a:hover { color: var(--ink); }

.intro {
    display: grid;
    grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 7.5rem);
    align-items: center;
    padding-block: 4rem;
}

.portrait {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 0.2rem;
    filter: saturate(0.88);
}

.pronunciation { margin: 0.85rem 0 0; color: var(--muted); font-size: 0.82rem; }
.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
h1 {
    margin-bottom: 1.25rem;
    font-family: inherit;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
}
h2 {
    margin-bottom: 0;
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
}

.intro-copy { max-width: 42rem; }
.intro-copy > p:not(.eyebrow) { max-width: 39rem; color: var(--muted); }
.intro-copy .lede {
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.65;
}
.contact { margin: 2rem 0 0; font-weight: 650; }

.section {
    padding-block: clamp(5rem, 10vw, 8rem);
    border-top: 1px solid var(--line);
    scroll-margin-top: 2rem;
}

.section-heading {
    margin-bottom: 2.5rem;
}
.publication { padding-block: 1.65rem; border-bottom: 1px solid var(--line); }
.publication:first-child { padding-top: 0; }
.publication:last-child { border-bottom: 0; }

.publication h3 {
    max-width: 44rem;
    margin-bottom: 0.45rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
}
.publication p { max-width: 42rem; margin-bottom: 0.15rem; color: var(--muted); font-size: 0.93rem; }
.about-copy {
    max-width: 40rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.65;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 2rem 3rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}
footer p { margin-bottom: 0; }

@media (max-width: 700px) {
    .site-header, main, footer { width: min(calc(100% - 2rem), var(--content-width)); }
    .site-header { min-height: 4.5rem; }
    nav { gap: 1rem; }
    nav a { font-size: 0.8rem; }
    .intro { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro { padding-block: 3.5rem; }
    .portrait-block { width: min(55vw, 12rem); }
    footer { flex-direction: column; gap: 0.35rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
