:root {
  --ink: #2c2216;
  --brown: #2c2317;
  --gold: #9a7638;
  --gold-light: #c2a25f;
  --cream: #f9f5ec;
  --paper: #fffdf8;
  --muted: #706657;
  --line: rgba(74, 58, 32, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.7; }
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(249,245,236,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; font-family: Georgia, serif; font-weight: 700; letter-spacing: .04em; font-size: 20px; }
.nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: #5e5446; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }
.nav .proposal { background: var(--gold); color: #fff; padding: 10px 16px; border-radius: 3px; }
.hero { background: var(--brown); color: #fbf7ee; padding: 90px 0 84px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #dcc08a; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-light); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.12; }
h1 { max-width: 900px; margin: 22px 0 22px; font-size: clamp(40px, 6.2vw, 72px); letter-spacing: -.025em; }
.lead { max-width: 770px; margin: 0; color: rgba(251,247,238,.78); font-size: clamp(17px, 2vw, 21px); }
.breadcrumb { margin-bottom: 24px; color: rgba(251,247,238,.58); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.meta { margin-top: 28px; color: rgba(251,247,238,.58); font-size: 13px; }
.page { padding: 76px 0 96px; }
.layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(230px, 1fr); gap: 70px; align-items: start; }
.article h2 { margin: 48px 0 14px; font-size: clamp(28px, 4vw, 40px); }
.article h3 { margin: 30px 0 8px; font-size: 23px; }
.article p, .article li { color: #554c40; font-size: 17px; }
.article ul, .article ol { padding-left: 23px; }
.article li { margin: 9px 0; }
.article a { color: #76581f; font-weight: 600; }
.note { margin: 34px 0; padding: 24px 26px; background: #f2eadc; border-left: 4px solid var(--gold); border-radius: 4px; }
.note p { margin: 0; }
.cta { margin-top: 54px; padding: 34px; background: var(--brown); color: #fbf7ee; border-radius: 8px; }
.cta h2 { margin: 0 0 12px; font-size: 32px; }
.cta p { color: rgba(251,247,238,.78); }
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button { display: inline-flex; padding: 12px 18px; border-radius: 3px; background: var(--gold); color: #fff !important; text-decoration: none; font-size: 14px; font-weight: 700; }
.button.secondary { background: transparent; border: 1px solid rgba(255,255,255,.32); }
.sidebar { position: sticky; top: 104px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.sidebar h2 { margin: 0 0 14px; font-size: 24px; }
.sidebar a { display: block; padding: 12px 0; color: #5b5144; text-decoration: none; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.45; }
.sidebar a:hover { color: var(--gold); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 38px; }
.card { display: flex; flex-direction: column; min-height: 280px; padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; text-decoration: none; box-shadow: 0 12px 28px rgba(44,35,23,.04); }
.card .tag { color: var(--gold); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.card h2 { margin: 18px 0 12px; font-size: 29px; }
.card p { margin: 0; color: var(--muted); }
.card .read { margin-top: auto; padding-top: 24px; color: var(--gold); font-weight: 700; }
.site-footer { padding: 46px 0; background: var(--brown); color: rgba(251,247,238,.72); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-inner a { color: #fff; }
.whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 60; padding: 13px 17px; border-radius: 999px; background: #25d366; color: #fff; text-decoration: none; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
@media (max-width: 820px) {
  .nav a:not(.proposal) { display: none; }
  .hero { padding: 68px 0 60px; }
  .layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .cards { grid-template-columns: 1fr; }
  .page { padding: 56px 0 76px; }
}
