:root {
  --navy: #0e2a47;
  --ink: #122033;
  --paper: #f4f7fb;
  --line: #d7e0ea;
  --muted: #5b6b7c;
  --accent: #1a6ea8;
  --accent-dark: #145887;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--accent-dark); }
img { max-width: 100%; display: block; }

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #d7e6f4;
  font-size: 0.82rem;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.04em;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(160deg, #2a8fd4, var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand strong { display: block; font-size: 1.02rem; line-height: 1.15; }
.brand small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.links { display: flex; gap: 18px; flex-wrap: wrap; }
.links a { text-decoration: none; color: var(--navy); font-size: 0.95rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 650;
  font-family: inherit;
}
.btn.ghost {
  background: #fff;
  color: var(--navy) !important;
  border: 1px solid var(--line);
}

.hero {
  padding: 64px 0 36px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}
h1, h2, h3 { font-family: "Source Serif 4", Georgia, serif; line-height: 1.18; margin: 8px 0 14px; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 36rem; }
.hero-art {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(14, 42, 71, 0.16);
  background: var(--navy);
}
.hero-art img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.section { padding: 52px 0; }
.band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.card img.photo {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 16px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.muted { color: var(--muted); }
.page { padding: 48px 0 20px; max-width: 760px; }
.page.wide { max-width: 1120px; }
.prose p { margin: 0 0 14px; }
.list { padding-left: 1.15rem; }
.list li { margin: 6px 0; }

footer.site {
  background: var(--navy);
  color: #d7e6f4;
  padding: 40px 0 22px;
  margin-top: 20px;
}
footer a { color: #eaf3fb; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
.legal-line { opacity: 0.75; font-size: 0.85rem; margin-top: 26px; }

@media (max-width: 860px) {
  .hero, .cards, .foot { grid-template-columns: 1fr; }
  .links { display: none; }
}
