:root {
  --blue-950: #061f55;
  --blue-900: #073785;
  --blue-800: #0754bb;
  --blue-700: #1269d1;
  --blue-100: #e7f2ff;
  --gold-700: #b36f03;
  --gold-600: #d89010;
  --gold-500: #f0b33d;
  --gold-100: #fff3d7;
  --sky: #dcecff;
  --ink: #162646;
  --muted: #60708a;
  --paper: #f8fbff;
  --white: #ffffff;
  --line: #c9ddf4;
  --shadow: 0 22px 50px rgba(6, 31, 85, 0.18);
  --radius: 8px;
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(18, 105, 209, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 5px solid var(--gold-600);
  border-bottom: 1px solid rgba(6, 31, 85, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-950);
  min-width: 240px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-500);
  background: linear-gradient(145deg, var(--blue-900), var(--blue-950));
  border: 3px solid var(--gold-500);
  border-radius: 6px;
  font-size: 24px;
  box-shadow: 0 3px 0 rgba(179, 111, 3, 0.35);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--blue-950);
  font-size: 0.93rem;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--blue-100);
}

.site-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(180deg, var(--blue-800), var(--blue-950));
  box-shadow: inset 0 0 0 1px rgba(240, 179, 61, 0.25);
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding: clamp(18px, 3vw, 34px) clamp(14px, 3vw, 34px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 14%, var(--blue-800) 14%, var(--blue-950) 68%, #ffffff 68%);
}

.hero::before,
.hero::after {
  position: absolute;
  top: 23%;
  color: rgba(255, 255, 255, 0.36);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 12vw, 12rem);
  line-height: 1;
}

.hero::before {
  content: "‹";
  left: 2vw;
  transform: rotate(-18deg);
}

.hero::after {
  content: "›";
  right: 2vw;
  transform: rotate(18deg);
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--gold-500);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 50px rgba(6, 31, 85, 0.24);
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1080px, calc(100% - 24px));
  margin: clamp(18px, 2.6vw, 34px) auto 0;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--gold-500);
  border-top-width: 6px;
  border-bottom: 8px solid var(--blue-900);
  border-radius: 24px 24px 42px 42px;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--blue-950);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(240, 179, 61, 0.22);
}

.page-hero {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(180deg, var(--blue-800), var(--blue-950));
  border-bottom: 5px solid var(--gold-500);
}

.page-hero-card {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  border: 3px solid var(--gold-500);
  border-bottom: 8px solid var(--blue-900);
  border-radius: 24px 24px 42px 42px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(240, 179, 61, 0.22);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button.primary {
  color: var(--blue-950);
  background: linear-gradient(180deg, #ffd36d, var(--gold-600));
  border-color: var(--gold-700);
  box-shadow: 0 5px 0 rgba(179, 111, 3, 0.24);
}

.button.secondary {
  color: var(--blue-950);
  border-color: var(--blue-800);
  background: var(--white);
}

.intro-band {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--blue-950);
  background:
    linear-gradient(90deg, rgba(7, 84, 187, 0.12), transparent 20%, transparent 80%, rgba(7, 84, 187, 0.12)),
    var(--gold-100);
  border-top: 4px solid var(--gold-600);
  border-bottom: 4px solid var(--gold-600);
}

.intro-band div {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-band p {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  line-height: 1.2;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.1rem;
  line-height: 1.25;
}

.section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mission-panel,
.commitment,
.callout,
.contact-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-panel {
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 84, 187, 0.95), rgba(6, 31, 85, 1));
  border: 2px solid var(--gold-500);
  border-top-width: 7px;
}

.mission-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.45;
}

.panel-title {
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.feature-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.values-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 31, 85, 0.06);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-700);
  font-weight: 900;
}

.feature-grid p,
.values-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.values-section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(180deg, var(--blue-800), var(--blue-950));
  border-top: 5px solid var(--gold-500);
  border-bottom: 5px solid var(--gold-500);
}

.values-section .section-heading,
.values-grid {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading.light h2,
.section-heading.light p,
.values-grid h3,
.values-grid p {
  color: var(--white);
}

.section-heading.light p,
.values-grid p {
  color: rgba(255, 255, 255, 0.78);
}

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

.values-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 179, 61, 0.42);
}

.parent-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.commitment {
  padding: 28px;
  color: var(--blue-950);
  background: var(--gold-100);
  border: 2px solid rgba(216, 144, 16, 0.5);
}

.commitment strong,
.callout strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.callout strong a,
.zlhc-callout h3 a {
  color: inherit;
  text-decoration: none;
}

.commitment p,
.callout p {
  margin: 10px 0 0;
}

.enrollment {
  border-top: 1px solid var(--line);
}

.enrollment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.apply-art {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.apply-art img {
  width: 100%;
  height: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 128px;
  padding: 18px;
  color: var(--blue-950);
  background: linear-gradient(180deg, var(--white), #f5f9ff);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius);
  font-weight: 800;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(180deg, var(--blue-800), var(--blue-950));
  border: 2px solid var(--gold-500);
  border-radius: 6px;
}

.callout {
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--gold-500);
  border-left-width: 8px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(6, 31, 85, 0.08);
}

.faq-sidebar a {
  padding: 9px 11px;
  color: var(--blue-950);
  border-radius: 7px;
  font-weight: 800;
}

.faq-sidebar a:hover,
.faq-sidebar a:focus-visible {
  background: var(--blue-100);
}

.faq-content {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
}

.faq-group {
  scroll-margin-top: 130px;
}

.faq-group h2 {
  margin-bottom: 20px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f8fbff);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-950);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

details a {
  color: var(--blue-900);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(216, 144, 16, 0.55);
  text-underline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, var(--blue-800), var(--blue-950));
  border-top: 5px solid var(--gold-500);
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  color: var(--blue-950);
  background: var(--white);
  border: 2px solid var(--gold-500);
}

.contact-card a {
  color: var(--blue-900);
  font-size: 1.18rem;
  font-weight: 850;
}

.contact-card span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 34px 18px 42px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-950);
  border-top: 4px solid var(--gold-500);
}

.footer-cross {
  color: var(--gold-500);
  font-size: 32px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
}

@media (max-width: 1040px) {
  .feature-grid,
  .values-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-content,
  .enrollment-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .apply-art {
    width: min(430px, 100%);
  }

  .faq-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 0;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 4px;
    padding-bottom: 4px;
  }

  .site-nav a {
    text-align: center;
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .hero-content {
    width: min(100% - 24px, 640px);
    margin: 16px auto 0;
    padding: 22px;
    border-radius: 18px 18px 24px 24px;
  }

  .split,
  .parent-band,
  .contact-section,
  .enrollment-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .values-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .faq-sidebar {
    grid-template-columns: 1fr;
  }
}
