:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --bg-accent: #efe6d7;
  --surface: rgba(255, 251, 244, 0.76);
  --border: rgba(48, 39, 27, 0.14);
  --text: #201913;
  --muted: #5c5147;
  --accent: #9a4f2d;
  --shadow: 0 24px 80px rgba(54, 35, 20, 0.08);
}
* { box-sizing: border-box; }
html { font-size: 16px; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at top left, rgba(154,79,45,.1), transparent 32%), linear-gradient(180deg, rgba(255,255,255,.45), transparent 45%), var(--bg); color: var(--text); font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; }
body::before { content: ""; position: fixed; inset: 0; background-image: linear-gradient(rgba(32,25,19,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(32,25,19,.025) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.page-shell { position: relative; z-index: 1; width: min(100%, 980px); margin: 0 auto; padding: 28px 20px 48px; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 24px; }
.site-mark { color: inherit; text-decoration: none; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-note { margin: 0; color: var(--muted); font-size: .95rem; }
.hero { padding: clamp(48px, 12vw, 120px) clamp(22px, 5vw, 48px); border: 1px solid var(--border); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.eyebrow,.status-label { margin: 0; color: var(--accent); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 11ch; margin: 14px 0 18px; font-size: clamp(3rem,8vw,5.75rem); line-height: .92; font-weight: 600; }
.intro { max-width: 32rem; margin: 0; color: var(--muted); font-size: clamp(1.05rem,2.8vw,1.25rem); line-height: 1.65; }
.status-card { width: fit-content; margin-top: 36px; padding: 16px 18px; border: 1px solid rgba(154,79,45,.18); border-radius: 18px; background: var(--bg-accent); }
.status-text { margin: 8px 0 0; font-size: 1rem; }
.projects { margin-top: 72px; padding-top: 30px; border-top: 1px solid var(--border); }
.section-heading { max-width: 36rem; }
.section-title { margin: 12px 0 10px; font-size: clamp(1.8rem,4vw,2.5rem); line-height: 1.08; font-weight: 600; }
.section-copy { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.project-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; margin-top: 26px; }
.project-card { display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.42); }
.project-meta { margin: 0; color: var(--accent); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { margin: 10px 0 12px; font-size: 1.35rem; }
.project-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.project-summary { flex: 1; }
.project-notes { max-width: 36rem; margin-top: 36px; }
.project-list { margin: 10px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.page-link { display: inline-flex; align-items: center; margin-top: 18px; color: var(--text); text-decoration: none; border-bottom: 1px solid rgba(32,25,19,.28); padding-bottom: 4px; }
.page-link:hover,.page-link:focus-visible { border-color: var(--text); }
@media (max-width:720px) { .site-header { flex-direction: column; align-items:flex-start; } .hero { padding:36px 22px; border-radius:22px; } h1 { max-width:100%; } .projects { margin-top:52px; } }
