:root { color-scheme: light; --bg: #f5efe5; --panel: #fffdf8; --text: #1d1d1d; --muted: #5b564f; --accent: #c4532b; --line: rgba(29, 29, 29, 0.12); } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; font-family: "Georgia", "Times New Roman", serif; color: var(--text); background: radial-gradient(circle at top left, rgba(196, 83, 43, 0.18), transparent 30%), linear-gradient(135deg, #f8f1e7, #efe6d8); } .page { width: min(980px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0; } .eyebrow { margin: 0 0 12px; font: 700 0.85rem/1.2 Arial, sans-serif; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); } h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 0.95; } .lead { width: min(42rem, 100%); margin: 20px 0 36px; font-size: 1.15rem; line-height: 1.65; color: var(--muted); } .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; } .card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 248, 0.8); backdrop-filter: blur(10px); } .card h2 { margin: 0 0 10px; font-size: 1.35rem; } .card p { margin: 0; line-height: 1.55; color: var(--muted); }