:root {
  --bg: #f2efe8;
  --ink: #171512;
  --muted: #665f55;
  --line: #d8d0c4;
  --accent: #8f5a1c;
  --accent-dark: #6c4312;
  --accent-soft: #f0e0c8;
  --card: rgba(255,253,249,0.95);
  --shadow: 0 18px 42px rgba(42, 34, 21, 0.08);
  --radius: 18px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif; color: var(--ink); background: radial-gradient(circle at top left, rgba(143,90,28,0.14), transparent 28%), linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%); line-height: 1.62; }
a { color: var(--accent-dark); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(12px); background: rgba(251,249,244,0.88); border-bottom: 1px solid rgba(216,208,196,0.75); }
.header-row, .footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 0; }
.brand { text-decoration: none; color: var(--ink); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.03em; }
.site-nav, .footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-nav a, .footer-links a { text-decoration: none; color: var(--muted); font-size: 0.95rem; }
.hero { padding: 88px 0 56px; }
.hero-grid, .section-grid, .cards { display: grid; gap: 22px; }
.hero-grid { grid-template-columns: minmax(0,1.35fr) minmax(280px,0.65fr); align-items: start; gap: 34px; }
.eyebrow, .section-kicker, .card-label, .panel-label { text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.78rem; color: var(--muted); }
.hero h1, .content-section h2 { margin: 0 0 16px; line-height: 1.04; letter-spacing: -0.05em; }
.hero h1 { font-size: clamp(2.8rem,7vw,5rem); max-width: 780px; }
.hero-lead, .section-body p, .card p { font-size: 1.06rem; }
.hero-lead { max-width: 700px; color: var(--muted); margin: 0 0 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.btn-primary { background: var(--accent); color: #fffaf3; }
.btn-secondary { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,0.6); }
.hero-panel, .card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-panel, .card { padding: 22px; }
.panel-quote { margin: 8px 0 18px; font-size: 1.5rem; line-height: 1.2; letter-spacing: -0.03em; }
.panel-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.panel-stack span { padding: 9px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 0.9rem; font-weight: 700; }
.content-section { padding: 72px 0; }
.content-section.alt { background: rgba(255,251,245,0.58); }
.section-grid { grid-template-columns: minmax(220px,0.8fr) minmax(0,1.2fr); gap: 34px; }
.section-intro h2 { font-size: clamp(2rem,4.2vw,3.4rem); }
.section-intro.wide { margin-bottom: 24px; max-width: 860px; }
.cards-three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card h3 { margin: 8px 0 10px; font-size: 1.35rem; letter-spacing: -0.03em; }
.site-footer { border-top: 1px solid rgba(216,208,196,0.7); padding-bottom: 28px; }
.site-footer p { margin: 0; color: var(--muted); }
@media (max-width: 980px) { .hero-grid, .section-grid, .cards-three { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .wrap { width: min(var(--max), calc(100% - 28px)); } .header-row, .footer-row { align-items: flex-start; flex-direction: column; } .hero { padding-top: 60px; } .hero h1 { font-size: clamp(2.3rem,10vw,3.6rem); } }
