:root {
    --bg: #FAFAF7;
    --bg-subtle: #F2EFE8;
    --bg-highlight: #F5E6D8;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --accent: #A0522D;
    --accent-dark: #8B4513;
    --separator: #E5E2DB;

    --font-serif: ui-serif, Georgia, "Times New Roman";
    --font-sans: system-ui;

    --max-width: 680px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-serif), serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
header.site-header {
    padding: 5.5rem 0 3.5rem;
    text-align: left;
}

.portrait {
    width: 132px;
    height: 132px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-subtle);
    display: block;
    flex-shrink: 0;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: var(--font-serif), serif;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 0.6rem;
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- SECTIONS ---------- */
section {
    padding: 3rem 0;
}

section + section {
    border-top: 1px solid var(--separator);
}

h2 {
    font-family: var(--font-serif), serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--text);
}

h3 {
    font-family: var(--font-serif), serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
}

p {
    margin: 0 0 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: var(--text);
}

em {
    font-style: italic;
}

/* ---------- LINKS ---------- */
a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
}

a:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

/* ---------- HIGHLIGHT ---------- */
.highlight {
    background: var(--bg-highlight);
    padding: 0.05em 0.25em;
    border-radius: 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ---------- PULL QUOTE ---------- */
blockquote {
    margin: 2rem 0;
    padding: 0.25rem 0 0.25rem 1.5rem;
    border-left: 3px solid var(--accent);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

blockquote p {
    margin: 0;
}

/* ---------- BULLETS ---------- */
ul.editorial {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

ul.editorial li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

ul.editorial li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 500;
}

ul.editorial.small {
    font-size: 1rem;
}

/* ---------- ONE-COLUMN SUMMARY ---------- */
.one-col {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background: var(--bg-subtle);
    border-radius: 3px;
}

.one-col h4 {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-family: var(--font-sans), sans-serif;
}

.one-col ul.editorial li {
    font-size: 0.97rem;
    line-height: 1.55;
}

/* ---------- TWO-COLUMN COMPARISON ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.two-col > div {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background: var(--bg-subtle);
    border-radius: 3px;
}

.two-col h4 {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-family: var(--font-sans), sans-serif;
}

.two-col ul.editorial li {
    font-size: 0.97rem;
    line-height: 1.55;
}

/* ---------- SERVICE BLOCKS ---------- */
.service-block {
    margin-top: 3rem;
}

.service-block:first-of-type {
    margin-top: 2.5rem;
}

.service-block .service-num {
    display: block;
    font-family: var(--font-sans), sans-serif;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-block h3 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.service-list {
    margin: 0;
}

.service-list li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.service-list li:last-child {
    margin-bottom: 0;
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

/* ---------- RESOURCES ---------- */
.link-sections {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-sections > li {
    padding: 1.5rem 0;
}

.link-sections > li:first-child {
    padding-top: 0.25rem;
}

.link-sections > li:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.link-sections .label {
    display: block;
    font-family: var(--font-sans), sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    font-weight: 500;
}

.link-sections .links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-sections .links li {
    padding: 0.35rem 0;
    line-height: 1.5;
    font-size: 1.05rem;
}

.link-sections .links li:first-child {
    padding-top: 0;
}

.link-sections .links li:last-child {
    padding-bottom: 0;
}

.link-sections .links a {
    border-bottom: 1px solid var(--separator);
}

.link-sections .links a:hover {
    border-bottom-color: var(--accent-dark);
}

.link-sections .links .annotation {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-intro {
    color: var(--text);
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--separator);
}

.contact-list li:first-child {
    padding-top: 0.25rem;
}

.contact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.contact-list .label {
    display: block;
    font-family: var(--font-sans), sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.contact-list .value {
    margin-bottom: 0.2rem;
    display: block;
}

.contact-list .value a {
    border-bottom: 1px solid var(--separator);
}

.contact-list .value a:hover {
    border-bottom-color: var(--accent-dark);
}

.contact-list .desc {
    font-size: 1rem;
    line-height: 1.5;
}

/* ---------- FOOTER ---------- */
footer.site-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--separator);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-sans), sans-serif;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    header.site-header {
        padding: 2.5rem 0 2rem;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    section {
        padding: 3rem 0;
    }

    .two-col,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
