:root { --ink: #1d2630; --paper: #faf8f3; --accent: #d95d39; --gold: #edb347; --muted: #61707c; --line: #e4ded4; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.site-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1180px; margin: auto; padding: 1rem 1.5rem; }
.brand { font-weight: 800; font-size: 1.4rem; letter-spacing: -.07em; }.brand span { color: var(--accent); }
.site-nav { display: flex; gap: 1.5rem; }.site-nav a, .site-nav .nav-button { color: var(--muted); font: inherit; font-weight: 600; }.site-nav .nav-button { border: 0; padding: 0; background: transparent; cursor: pointer; }.site-nav a:hover, .site-nav .nav-button:hover { color: var(--accent); }
.menu-toggle { display: none; }
.hero { min-height: 510px; display: grid; place-items: center; padding: 5rem 1.5rem; background: radial-gradient(circle at 76% 24%, rgba(237,179,71,.65), transparent 17rem), linear-gradient(135deg, #172934, #304c57); color: white; }
.hero > div { width: min(100%, 850px); }.eyebrow, .card-label { color: var(--accent); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; font-size: .75rem; }.hero .eyebrow { color: #ffd482; }.hero h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.1; }.hero h1 { max-width: 750px; font-size: clamp(3.4rem, 8vw, 6.5rem); margin: .25rem 0 1rem; }.hero em { color: #ffd482; }.hero-copy { font-size: 1.2rem; max-width: 630px; color: #e3ebed; }.button { display: inline-block; margin-top: 1.2rem; padding: .8rem 1.15rem; border-radius: .2rem; color: #172934; background: #ffd482; font-weight: 800; }.button:hover { background: white; }
.content-section, .listing-shell, .article-shell { width: min(100% - 3rem, 1120px); margin: 0 auto; padding: 5rem 0; }.section-heading { max-width: 600px; }.section-heading h2, .listing-shell h1, .article-shell h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin: .2rem 0 2.4rem; }.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }.content-card { padding: 1.5rem; border: 1px solid var(--line); background: #fffdf8; border-radius: .4rem; }.content-card h3, .content-card h2 { font-size: 1.55rem; margin: .5rem 0; }.content-card h3 a:hover, .content-card h2 a:hover, .text-link { color: var(--accent); }.text-link { font-weight: 750; }.article-shell { max-width: 760px; }.article-summary { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; color: #43515c; }.article-body { font-size: 1.1rem; }.tag-list { color: var(--muted); font-weight: 650; }.site-footer { padding: 3rem 1.5rem; border-top: 1px solid var(--line); text-align: center; color: var(--muted); }
@media (max-width: 760px) { .menu-toggle { display: block; border: 1px solid var(--line); border-radius: .25rem; padding: .45rem .7rem; background: transparent; color: var(--ink); font: inherit; }.site-nav { display: none; position: absolute; top: 72px; right: 1rem; left: 1rem; padding: 1rem; flex-direction: column; background: white; border: 1px solid var(--line); }.site-nav.open { display: flex; }.card-grid { grid-template-columns: 1fr; }.hero { min-height: 430px; } }

.home-article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.home-article-card { overflow: hidden; border: 1px solid var(--line); border-radius: .5rem; background: #fffdf8; box-shadow: 0 .35rem 1rem rgba(29, 38, 48, .06); }
.home-article-image { display: grid; min-height: 150px; place-items: center; overflow: hidden; background: linear-gradient(135deg, #304c57, #172934); color: #ffd482; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 700; }
.home-article-image img { display: block; width: 100%; height: 180px; object-fit: cover; transition: transform .25s ease; }
.home-article-card:hover .home-article-image img { transform: scale(1.035); }
.home-article-content { padding: 1rem 1.1rem 1.25rem; }
.home-article-content h3 { margin: .35rem 0 0; font-size: 1.35rem; }
.home-article-content h3 a:hover { color: var(--accent); }
.empty-state { padding: 1.5rem; border: 1px solid var(--line); background: #fffdf8; }
