:root {
  --navy: #06356a;
  --blue: #84cff0;
  --green: #a8d72f;
  --yellow: #ffc817;
  --red: #f75b65;
  --orange: #ff8a34;
  --ink: #08244a;
  --muted: #5d6a7b;
  --paper: #fbf7e9;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(8, 36, 74, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 53, 106, 0.08);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 10px 30px rgba(8, 36, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.05;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand small {
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 42px;
  aspect-ratio: 1;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--navy);
}

.brand-mark span {
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  top: 8px;
  left: 8px;
  background: var(--blue);
}

.brand-mark span:nth-child(2) {
  top: 8px;
  right: 8px;
  background: var(--green);
}

.brand-mark span:nth-child(3) {
  bottom: 8px;
  left: 8px;
  background: var(--red);
}

.brand-mark span:nth-child(4) {
  bottom: 8px;
  right: 8px;
  background: var(--yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: clamp(36px, 6vw, 92px);
  padding: clamp(24px, 4vw, 54px) clamp(20px, 6vw, 84px) 34px;
  overflow: hidden;
}

.hero > *,
.split-section > *,
.apprentice > *,
.support > *,
.contact > * {
  min-width: 0;
}

.hero::after,
.requirements-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 6%;
  width: 210px;
  height: 210px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.75;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.1rem, 6vw, 5.85rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
}

.compact-title {
  font-size: clamp(1rem, 2vw, 2rem);
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.hero p,
.section-copy,
.content-panel p,
.apprentice p,
.support p,
.contact p {
  max-width: 680px;
}

.hero-copy {
  width: 100%;
  max-width: 950px;
}

.hero-copy > p:last-of-type,
.apprentice p,
.support p,
.contact p {
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(255, 200, 23, 0.35);
}

.button.secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual img {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 3;
  width: min(88%, 480px);
  max-height: 630px;
  object-fit: contain;
}

.shape {
  position: absolute;
  border-radius: 999px;
}

.shape-red {
  top: 2%;
  left: 9%;
  width: 68px;
  height: 210px;
  background: var(--red);
}

.shape-blue {
  top: 30%;
  left: 20%;
  width: 115px;
  height: 115px;
  border: 12px solid var(--blue);
  background: transparent;
}

.shape-green {
  right: 0;
  bottom: 0;
  width: 72px;
  height: 230px;
  background: var(--green);
}

.shape-yellow {
  top: 15%;
  right: 8%;
  width: 100px;
  height: 100px;
  border: 9px solid var(--yellow);
  background: transparent;
}

.seal-card {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 58px;
  width: min(250px, 64%);
  padding: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.seal-card strong,
.seal-card small {
  display: block;
}

.seal-card strong {
  font-size: 0.9rem;
}

.seal-card small {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 900;
}

.seal-ring {
  display: inline-grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 10px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
}

section {
  position: relative;
}

.intro-band,
.requirements-band,
.process {
  padding: clamp(58px, 9vw, 108px) clamp(20px, 6vw, 84px);
}

.intro-band {
  background: var(--navy);
  color: var(--white);
}

.intro-band h2,
.intro-band h3,
.intro-band .eyebrow {
  color: var(--white);
}

.intro-band h2 {
  font-size: clamp(1rem, 2vw, 2rem);
}

.intro-grid,
.eligibility-grid,
.timeline,
.requirements-list {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.intro-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section,
.apprentice,
.support,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(58px, 9vw, 112px) clamp(20px, 6vw, 84px);
}

.split-section {
  background: linear-gradient(90deg, transparent 0 52%, var(--paper) 52% 100%);
}

.photo-panel,
.contact-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 92px 0 92px;
  background: var(--blue);
}

.photo-panel img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 981px) {
  .photo-panel,
  .contact-photo {
    height: 260px;
    min-height: 600px;
  }

  .photo-panel {
    height: 338px;
    min-height: 33px;
  }
}

.content-panel {
  max-width: 680px;
}

.content-panel .eyebrow {
  font-size: 1.56rem;
}

.content-panel h2 {
  font-size: clamp(1rem, 2vw, 2rem);
}

.color-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  border-radius: 50%;
  vertical-align: middle;
}

.dot.blue {
  background: var(--blue);
}
.dot.green {
  background: var(--green);
}
.dot.yellow {
  background: var(--yellow);
}
.dot.orange {
  background: var(--orange);
}
.dot.red {
  background: var(--red);
}

blockquote {
  margin: 0;
  padding: 14px 22px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eligibility {
  padding: clamp(58px, 9vw, 108px) clamp(20px, 6vw, 84px);
}

.centered {
  margin: 0 auto;
  text-align: center;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.eligibility-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.eligibility-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 36, 74, 0.11);
}

.eligibility-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: top center;
}

.eligibility-grid h3,
.eligibility-grid p {
  padding: 0 22px;
}

.eligibility-grid h3 {
  margin-top: 22px;
}

.eligibility-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.requirements-band {
  overflow: hidden;
  background: var(--paper);
}

.requirements-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.requirements-list article {
  padding: 26px;
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 36, 74, 0.08);
}

.requirements-list article:nth-child(2) {
  border-left-color: var(--yellow);
}

.requirements-list article:nth-child(3) {
  border-left-color: var(--green);
}

.requirements-list strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.requirements-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.apprentice {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
}

.apprentice img,
.support img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 92px 0 92px 0;
  background: var(--green);
}

.process {
  background: var(--navy);
}

.process h2,
.process h3,
.process .eyebrow {
  color: var(--white);
}

.process .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.timeline article {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.timeline h3 {
  color: var(--navy);
}

.timeline p {
  color: var(--muted);
}

.support {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  background: var(--paper);
}

.contact {
  align-items: stretch;
  background: var(--white);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.contact-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(20px, 6vw, 84px);
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero,
  .split-section,
  .apprentice,
  .support,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .split-section {
    background: var(--paper);
  }

  .intro-grid,
  .eligibility-grid,
  .requirements-list,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 2.65rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 30px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .hero-copy,
  .hero-copy p,
  .hero-copy h1,
  .hero-actions {
    width: 100%;
    max-width: 320px;
  }

  .button {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
    margin-inline: -10px;
  }

  .hero-visual img {
    width: 92%;
  }

  .seal-card {
    bottom: 22px;
  }

  .intro-grid,
  .eligibility-grid,
  .requirements-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .photo-panel,
  .contact-photo {
    min-height: 420px;
    border-radius: 0 60px 0 60px;
  }

  .eligibility-grid img {
    height: 260px;
  }

  .apprentice img,
  .support img {
    border-radius: 60px 0 60px 0;
  }

  .site-footer {
    display: grid;
  }
}
