:root {
    --bg: #f7f3ec;
    --surface: #fefcf6;
    --border: #c9b48a;
    --text: #1a1614;
    --text-muted: #5a4d44;
    --accent: #7a2d2a;
    --font-serif-head: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-serif-body: 'Lora', Georgia, 'Times New Roman', serif;
    --font-meta: system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-serif-body);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3 {
    font-family: var(--font-serif-head);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-style: italic;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Header */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    font-family: var(--font-serif-head);
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.brand:hover { color: var(--accent); }

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-family: var(--font-serif-body);
    color: var(--text-muted);
}

.nav a {
    transition: color 0.15s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

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

/* Hero */
.hero {
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--border);
}

.lede {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 40px;
}

.quill {
    display: block;
    margin-top: 8px;
}

/* Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

/* Programs */
.program {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.program:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.program-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
}

.serial {
    font-family: var(--font-meta);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.program p {
    color: var(--text-muted);
    max-width: 640px;
}

/* Approach */
.approach p {
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 24px;
}

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

/* Recent Work */
.work-row {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.work-row:first-of-type { border-top: 0; padding-top: 0; }
.work-row:last-child { padding-bottom: 0; }

.work-year {
    font-family: var(--font-meta);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    width: 90px;
    flex-shrink: 0;
}

.work-desc {
    color: var(--text);
    font-size: 16px;
}

/* Press */
.quote {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.quote:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.quote blockquote {
    font-family: var(--font-serif-head);
    font-style: italic;
    font-size: 1.15em;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 12px;
}

.quote figcaption {
    font-family: var(--font-meta);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Contact */
.contact { padding: 64px 0; }

.contact h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.contact address {
    color: var(--text-muted);
    font-size: 16px;
    font-style: normal;
}

.contact a {
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

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

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    font-family: var(--font-meta);
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 700px) {
    .container { padding: 0 20px; }
    .nav { flex-wrap: wrap; gap: 12px 18px; font-size: 13px; }
    .hero { padding: 64px 0 56px; }
    section { padding: 56px 0; }
    h1 { margin-bottom: 20px; }
    .lede { font-size: 16px; }
    .work-year { width: 64px; font-size: 11px; }
    .work-desc { font-size: 15px; }
    .quote blockquote { font-size: 1.05em; }
}
