:root { color-scheme: light; font-family: Inter, Arial, sans-serif; --ink:#171717; --paper:#f3f1ed; --line:#cbc6bc; --orange:#ff7200; --white:#fff; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); }
main { width: min(1060px, calc(100% - 32px)); margin: 0 auto; padding: clamp(40px, 8vw, 92px) 0; }
.eyebrow { margin: 0 0 14px; color: #6d6860; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 8vw, 88px); line-height: .92; letter-spacing: -.065em; }
.lead { max-width: 720px; margin: 24px 0 34px; color: #5e5951; font-size: clamp(16px, 2vw, 20px); line-height: 1.55; }
section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
article { min-height: 300px; display: flex; flex-direction: column; padding: clamp(24px, 4vw, 38px); border: 2px solid var(--ink); border-radius: 24px; background: var(--white); }
article.recommended { background: var(--ink); color: var(--white); }
article > span { color: #78736b; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
article.recommended > span { color: #bcb7af; }
h2 { margin: 28px 0 10px; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.045em; }
article p { max-width: 420px; margin: 0 0 28px; color: #625d55; line-height: 1.5; }
article.recommended p { color: #c8c4bd; }
a { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; margin-top: auto; padding: 0 18px; border-radius: 13px; background: var(--orange); color: #111; font-weight: 850; text-decoration: none; transition: transform 180ms ease, filter 180ms ease; }
a:hover { filter: brightness(.96); transform: translateY(-2px); }
a:active { transform: translateY(0); }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
aside { margin-top: 18px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #ebe8e2; line-height: 1.5; }
@media (max-width: 720px) { section { grid-template-columns: 1fr; } article { min-height: 260px; } }
@media (prefers-reduced-motion: reduce) { a { transition: none; } }
