:root {
  --paper: #f4f1e8;
  --ink: #202a27;
  --muted: #4f5d56;
  --green: #173f35;
  --rust: #b85536;
  --line: #ded8ca;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 50% 0, #fffdf8 0, var(--paper) 58%); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
.shell { width: min(1120px, 100%); margin: 0 auto; padding: 42px 22px 80px; }
.hero { min-height: 62vh; padding: 54px 0 38px; display: grid; align-content: center; }
.brand { margin-bottom: 52px; display: inline-flex; align-items: center; gap: 12px; font: 700 22px Georgia, serif; }
.brand img { border-radius: 12px; box-shadow: 0 10px 26px rgba(23,63,53,.16); }
.eyebrow { margin: 0 0 13px; color: var(--rust); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 0; font: 500 clamp(46px, 9vw, 92px)/.96 Georgia, "Times New Roman", serif; letter-spacing: -2.8px; }
.lede { max-width: 660px; margin: 28px 0 0; color: var(--muted); font: 19px/1.7 Georgia, serif; }
.actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.actions a { min-height: 48px; padding: 0 20px; border-radius: 10px; display: inline-grid; place-items: center; font-size: 14px; font-weight: 750; text-decoration: none; }
.primary { background: var(--green); color: #fffdf5; box-shadow: 0 10px 24px rgba(23,63,53,.16); }
.secondary { border: 1px solid var(--line); background: rgba(255,253,248,.7); color: var(--green); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cards article { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,253,248,.72); box-shadow: 0 10px 30px rgba(55,52,44,.05); }
.cards span { color: var(--rust); font-size: 12px; font-weight: 800; }
.cards h2 { margin: 40px 0 10px; font: 24px Georgia, serif; }
.cards p { margin: 0; color: var(--muted); line-height: 1.65; }

@media (max-width: 760px) {
  .shell { padding: 28px 16px 58px; }
  .brand { margin-bottom: 44px; }
  h1 { font-size: clamp(44px, 16vw, 68px); }
  .lede { font-size: 17px; }
  .actions { display: grid; }
  .cards { grid-template-columns: 1fr; }
  .cards article { min-height: 0; }
  .cards h2 { margin-top: 28px; }
}
