:root {
  --rk-bg: #f5f1ec;
  --rk-card: rgba(255,255,255,0.84);
  --rk-text: #16212b;
  --rk-muted: rgba(22,33,43,0.80);
  --rk-accent: #945834;
  --rk-forest: #213531;
  --rk-border: rgba(22,33,43,0.10);
  --rk-soft: rgba(148,88,52,0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--rk-text);
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(148,88,52,0.14), transparent 60%),
    var(--rk-bg);
}
a { color: var(--rk-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #6d3f22; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 18px; }
.hero { padding: 40px 0 24px; }
.badge {
  display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(148,88,52,0.10);
  color: var(--rk-accent); font-weight: 700; font-size: 13px; letter-spacing: .02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; margin: 16px 0 12px; font-family: Georgia, Cambria, "Times New Roman", serif; }
h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.15; margin: 0 0 12px; font-family: Georgia, Cambria, "Times New Roman", serif; }
h3 { font-size: 1.08rem; line-height: 1.25; margin: 0 0 8px; }
p, li, td, th { font-size: 1.02rem; line-height: 1.75; color: var(--rk-muted); }
.hero-grid, .grid { display: grid; gap: 18px; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.28fr .92fr; align-items: start; } .grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.card {
  background: var(--rk-card); border: 1px solid var(--rk-border); border-radius: 24px;
  box-shadow: 0 24px 70px rgba(18,22,28,0.08); padding: 24px;
}
.section { padding: 18px 0; }
.breadcrumbs, .meta { font-size: .95rem; color: var(--rk-muted); }
.list { margin: 0; padding-left: 18px; }
.cta-row { display:flex; flex-wrap:wrap; gap:12px; margin-top: 18px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height: 48px; border-radius: 999px; padding: 0 18px; font-weight: 700; text-decoration:none; }
.btn-primary { background: var(--rk-forest); color: #fff; }
.btn-primary:hover { color: #fff; background: #162725; }
.btn-secondary { background: #fff; color: var(--rk-forest); border:1px solid var(--rk-border); }
.table-wrap { overflow:auto; border-radius: 20px; border: 1px solid var(--rk-border); }
table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.72); }
th, td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rk-border); }
th { color: var(--rk-forest); font-size: .95rem; background: rgba(33,53,49,0.05); }
.note {
  margin-top: 12px; padding: 14px 16px; border-radius: 18px; background: var(--rk-soft); border: 1px solid rgba(148,88,52,0.15);
  color: var(--rk-muted); font-size: .96rem;
}
.notice {
  margin-top: 14px; padding: 18px; border-radius: 20px; background: rgba(33,53,49,0.06); border: 1px solid rgba(33,53,49,0.12);
}
.pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.pill { display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px; background:#fff; border:1px solid var(--rk-border); color:var(--rk-forest); font-size:.92rem; font-weight:600; }
.footer { padding: 32px 0 60px; }
.footer .links { display:flex; flex-wrap:wrap; gap: 10px 18px; }
.logo { height: 34px; width: auto; }
.muted { color: var(--rk-muted); }
.small { font-size: .95rem; }
strong { color: var(--rk-forest); }
