:root {
  --bg: #f6f1e8;
  --panel: #fffaf1;
  --ink: #14201f;
  --muted: #60706e;
  --line: rgba(20,32,31,0.14);
  --accent: #0d5d66;
  --accent-2: #d99b48;
  --danger-bg: #fff1dc;
  --shadow: 0 18px 50px rgba(9, 37, 43, 0.10);
}
* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--ink); }
body { margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(18px, 5vw, 56px); border-bottom: 1px solid var(--line); background: rgba(255,250,241,0.88); position: sticky; top: 0; backdrop-filter: blur(16px); z-index: 5; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--accent); color: white; font-weight: 800; letter-spacing: -0.04em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.site-nav { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; font-size: 14px; }
.site-main { max-width: 1180px; margin: 0 auto; padding: 42px clamp(18px, 5vw, 56px) 72px; }
.hero { padding: clamp(30px, 7vw, 72px); border-radius: 34px; background: linear-gradient(135deg, #fffaf1, #e7f3f1); box-shadow: var(--shadow); margin-bottom: 24px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 800; margin: 0 0 14px; }
h1 { font-size: clamp(36px, 7vw, 76px); line-height: 0.96; letter-spacing: -0.06em; margin: 0 0 20px; }
h2 { font-size: clamp(22px, 3vw, 34px); line-height: 1.04; letter-spacing: -0.04em; margin: 0 0 12px; }
p { line-height: 1.65; }
.lead { font-size: clamp(18px, 2vw, 24px); max-width: 820px; color: var(--muted); margin: 0; }
.notice { margin: 22px 0; padding: 18px 20px; background: var(--danger-bg); border: 1px solid rgba(217,155,72,0.42); border-radius: 22px; line-height: 1.6; }
.grid.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 16px; margin: 24px 0; }
.card, .entity-row, .cta-card, .content-block article, .empty-state { display: block; padding: 22px; border: 1px solid var(--line); background: var(--panel); border-radius: 26px; box-shadow: 0 8px 26px rgba(9,37,43,0.05); }
.card h2 { color: var(--ink); }
.card p, .entity-row span, .muted { color: var(--muted); }
.list-panel { display: grid; gap: 12px; margin: 24px 0; }
.entity-row { display: grid; gap: 6px; color: var(--ink); }
.entity-row:hover { text-decoration: none; border-color: rgba(13,93,102,0.42); }
.content-block { display: grid; gap: 18px; margin: 24px 0; }
.facts { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: 24px; overflow: hidden; border: 1px solid var(--line); margin: 24px 0; }
.facts th, .facts td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.facts th { width: 260px; color: var(--muted); font-weight: 700; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 28px 0; border-color: rgba(13,93,102,0.30); }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 800; white-space: nowrap; }
.button:hover { text-decoration: none; background: #084d55; }
.site-footer { border-top: 1px solid var(--line); padding: 28px clamp(18px, 5vw, 56px); color: var(--muted); background: #efe8da; }
@media (max-width: 760px) {
  .site-header, .cta-card { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .facts th, .facts td { display: block; width: 100%; }
}
