:root {
  --navy: #1F2F6F;
  --navy-dark: #14204B;
  --gold: #F0B13A;
  --sky: #67B9F6;
  --sky-soft: #DCEBFF;
  --white: #FFFFFF;
  --panel-white: #f8fbff;
  --panel-border: #dbe7f3;
  --text-dark: #1b2b54;
  --text-body: #2d3d67;
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-hero: 0 20px 42px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 42%, var(--navy-dark) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

.site-shell { min-height: 100vh; }
.page-wrap { max-width: 1152px; margin: 0 auto; padding: 0 24px 28px; }

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(103, 185, 246, 0.25);
  padding: 32px 0 20px;
}

.brand-line {
  color: var(--sky);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.district-line {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}
.nav-links a:hover { text-decoration: underline; }

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(103, 185, 246, 0.35);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  width: 320px;
  height: 320px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid var(--sky);
  box-shadow: var(--shadow-hero);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy { min-width: 0; }
.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(103,185,246,0.12);
  color: var(--sky);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-title {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-subtitle {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}
.hero-text {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--sky-soft);
  font-size: 1.125rem;
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}
.hero-button-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.hero-button-secondary {
  border: 2px solid var(--sky);
  color: var(--white);
  background: transparent;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.panel-grid-top { margin-top: 12px; }

.info-panel {
  background: var(--panel-white);
  border-radius: 10px;
  padding: 16px 16px 14px;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(202, 219, 237, 0.95);
}

.panel-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.panel-heading-line {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 8px;
  border-radius: 99px;
  background: #1e88ea;
}

.panel-body { margin-top: 14px; }
.panel-body-split {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
}
.panel-icon-column {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2px;
}

.info-panel p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.55;
}
.lead-text {
  font-weight: 500;
  margin-bottom: 10px !important;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.check-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.3;
}
.check-list .icon-circle {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  background: transparent;
  color: #1e88ea;
}
.check-list .icon-circle svg { width: 16px; height: 16px; }

.stacked-list {
  margin-top: 12px;
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fcfdff;
}
.list-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: var(--text-dark);
  font-size: 0.98rem;
}
.list-row + .list-row { border-top: 1px solid var(--panel-border); }

.icon-circle {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b75d0 0%, #1957b7 100%);
  color: var(--white);
}
.icon-circle svg { width: 17px; height: 17px; }

.contact-panel {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  border: 2px solid rgba(86, 170, 255, 0.8);
  border-radius: 10px;
  background: linear-gradient(180deg, #06245b 0%, #041f4e 100%);
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
  overflow: hidden;
}
.contact-left, .contact-right {
  padding: 16px 18px;
}
.contact-right {
  border-left: 2px solid rgba(86, 170, 255, 0.62);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.icon-circle-gold {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.icon-circle-gold svg { width: 24px; height: 24px; }

.contact-title-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}
.contact-title-row h2 {
  margin: 0;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-title-row p {
  margin: 6px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.93);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-divider {
  width: min(340px, 100%);
  height: 1px;
  background: rgba(194, 225, 255, 0.42);
  margin: 14px 0 12px;
}
.contact-link-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}
.contact-link-row + .contact-link-row { margin-top: 10px; }
.contact-link-row a {
  color: rgba(255,255,255,0.96);
  font-size: 0.94rem;
  word-break: break-word;
}
.qr-title {
  margin: 0 0 10px;
  color: var(--sky);
  font-size: 1.12rem;
  font-weight: 700;
}
.qr-frame {
  width: min(100%, 188px);
  margin: 0 auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}
.qr-image { width: 100%; }

.footer {
  padding: 12px 10px 4px;
  text-align: center;
  color: rgba(255,255,255,0.97);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
  }
  .hero-photo-wrap { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .page-wrap { padding: 0 14px 24px; }
  .top-nav { padding: 18px 0 16px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
  }
  .nav-links-open { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 16px;
  }
  .hero-photo-frame {
    width: 288px;
    height: 288px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .panel-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-right {
    border-left: none;
    border-top: 2px solid rgba(86, 170, 255, 0.62);
  }
}
