:root {
  --brand: #17605a;
  --brand-dark: #0d3937;
  --accent: #b9853b;
  --ink: #172321;
  --text: rgba(23, 35, 33, 0.84);
  --muted: rgba(23, 35, 33, 0.64);
  --line: rgba(23, 96, 90, 0.16);
  --page: #f6f8f7;
  --surface: #ffffff;
  --soft: #e9f2f0;
  --shadow: 0 18px 50px rgba(22, 39, 37, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--page); color: var(--text); font-size: 16px; line-height: 1.6; }
a { color: inherit; }
.wrap { width: min(980px, calc(100% - 32px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: #fff; }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 8px; background: var(--brand); color: #fff; font-weight: 900; }
.brand strong { display: block; color: var(--ink); line-height: 1.2; }
.brand small { display: block; color: var(--muted); }
.nav { display: flex; flex-wrap: wrap; gap: 8px; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 760; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { background: var(--soft); color: var(--brand-dark); }
.page { padding: 54px 0 72px; }
.panel { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); padding: 30px; }
.kicker { margin: 0 0 10px; color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--ink); font-size: clamp(32px, 5vw, 48px); line-height: 1.1; letter-spacing: 0; }
h2 { color: var(--ink); font-size: 25px; margin-top: 30px; }
h3 { color: var(--ink); }
p, li { color: var(--muted); }
.info-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.info-table th, .info-table td { border-bottom: 1px solid var(--line); padding: 14px; text-align: left; vertical-align: top; }
.info-table th { width: 34%; color: var(--ink); background: var(--soft); }
.footer { padding: 32px 0; background: #101a19; color: rgba(255,255,255,.72); }
.footer a { color: rgba(255,255,255,.86); text-decoration: none; margin-right: 14px; }
@media (max-width: 700px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
}
