:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-alt: #eef7ff;
  --text: #17324a;
  --muted: #5b7187;
  --primary: #55b8f6;
  --primary-deep: #1f5a8d;
  --accent: #e2388c;
  --border: rgba(23, 50, 74, 0.1);
  --shadow: 0 18px 45px rgba(22, 47, 72, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fdff 0%, #eef7ff 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--primary-deep);
}

.nav nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.two-col,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  max-width: 18ch;
}

h2 { font-size: clamp(1.8rem, 2.5vw, 2.8rem); }
h3 { font-size: 1.15rem; }

.tagline {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.6rem;
}

.lead,
.section-heading p,
.card p,
li,
blockquote,
.notice {
  color: var(--muted);
}

.hero-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(226, 56, 140, 0.24);
}

.button.secondary {
  background: white;
  color: var(--primary-deep);
  border-color: rgba(31, 90, 141, 0.2);
}

.hero-points,
.region-list {
  padding-left: 1.2rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: rgba(255,255,255,0.62);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.person-card.featured {
  border-color: rgba(226, 56, 140, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(254,242,249,1) 100%);
}

.meta {
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.6rem;
}

blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
  font-size: 1.1rem;
}

.notice {
  display: inline-block;
  background: #fff3fa;
  color: #9a2a61;
  border: 1px solid rgba(226, 56, 140, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .cards-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .nav nav {
    justify-content: flex-start;
  }

  h1 { max-width: none; }
}
