:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3ec;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --soft: #ecfdf5;
  --soft-blue: #f1f5f9;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 780px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 227, 236, 0.9);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.brand-main { font-weight: 850; font-size: 1.25rem; }
.brand-local { margin-top: 4px; color: var(--muted); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.015em; }
nav { display: flex; gap: 22px; }
nav a { text-decoration: none; color: var(--muted); font-weight: 650; }
nav a:hover { color: var(--text); }

.hero { padding: 98px 0 82px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { margin: 0; max-width: 850px; font-size: clamp(2.75rem, 6.6vw, 5.35rem); }
h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3rem); }
h3 { margin: 12px 0 10px; font-size: 1.55rem; }
.lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.33rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.primary { background: var(--accent); color: white; }
.primary:hover { background: var(--accent-dark); }
.secondary { border: 1px solid var(--line); background: var(--surface); }
.secondary:hover { border-color: #b8c5d3; }

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.card-kicker { margin: 0 0 8px; color: var(--muted); font-weight: 700; }
.card h2 { font-size: 1.65rem; }
.card p { color: var(--muted); }
.text-link { color: var(--accent); font-weight: 800; text-decoration: none; }

.section { padding: 82px 0; border-top: 1px solid var(--line); }
.section p { font-size: 1.1rem; color: var(--muted); }
.section-heading { max-width: 680px; margin-bottom: 34px; }

.campaign-section { background: var(--surface); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.principle {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.principle p { margin-bottom: 0; font-size: 1rem; }
.principle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.statement-section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
  background: var(--soft-blue);
}
blockquote {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.contact-section { background: var(--soft); }
.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}
.contact-box > div:first-child { max-width: 690px; }
.contact-box p { margin-bottom: 0; }
.contact-box a:not(.button) { color: var(--accent-dark); font-weight: 800; }
.contact-actions { margin-top: 0; flex-shrink: 0; }

.site-footer { padding: 30px 0; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-inner a { text-decoration: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .principles { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { padding-top: 60px; }
  .contact-box, .footer-inner { align-items: flex-start; flex-direction: column; }
  .contact-actions { margin-top: 8px; }
  nav { gap: 12px; font-size: 0.9rem; }
  nav a:nth-child(2) { display: none; }
  .wrap { width: min(100% - 28px, 1120px); }
}

@media (max-width: 460px) {
  .brand-local { display: none; }
  nav a { font-size: 0.84rem; }
  h1 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
}
