:root {
  --navy: #102d61;
  --blue: #1f5fae;
  --sky: #eaf5fc;
  --red: #d92332;
  --ink: #102342;
  --muted: #607089;
  --line: #d9e3ec;
  --white: #ffffff;
  --paper: #f7f9fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 45, 97, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell,
.hero-shell,
.results-shell,
.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
}

.brand img {
  width: 112px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: #cbd7e4;
}

.district-name {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #3f5069;
  font-size: 14px;
  font-weight: 700;
}

nav a,
.text-link,
.inline-arrow {
  transition: color 160ms ease;
}

nav a:hover,
.text-link:hover,
.inline-arrow:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(217, 35, 50, 0.16);
  color: white;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #be1927;
  box-shadow: 0 16px 32px rgba(217, 35, 50, 0.22);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 95, 174, 0.35);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  justify-self: end;
  padding: 0 18px;
  box-shadow: none;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.96) 0 10%, transparent 31%),
    linear-gradient(114deg, #eef8fd 0%, #e6f3fb 61%, #d7eaf7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 82px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  top: -260px;
  left: -190px;
}

.hero-shell {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 72px 0 66px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 25px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(53px, 5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em {
  color: var(--red);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 31px;
  color: #4e617a;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.text-link {
  padding: 12px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.text-link span,
.inline-arrow span {
  margin-left: 8px;
  color: var(--red);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
}

.proof-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.hero-proof p,
.portrait-card p {
  margin: 0;
}

.hero-proof strong,
.hero-proof span,
.portrait-card strong,
.portrait-card span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 13px;
}

.hero-proof span {
  color: #718096;
  font-size: 12px;
}

.hero-portrait {
  position: relative;
  min-height: 650px;
  align-self: end;
}

.hero-portrait > img {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 0;
  width: min(100%, 510px);
  max-height: 620px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 20px rgba(16, 45, 97, 0.13));
}

.portrait-ring {
  position: absolute;
  z-index: 1;
  width: 430px;
  height: 430px;
  right: 8px;
  bottom: 72px;
  border: 58px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.portrait-grid {
  position: absolute;
  z-index: 1;
  width: 180px;
  height: 140px;
  right: -22px;
  top: 63px;
  opacity: 0.42;
  background-image: radial-gradient(var(--blue) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
}

.portrait-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(16, 45, 97, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(16, 45, 97, 0.14);
  padding: 13px 16px;
}

.portrait-card-top {
  top: 126px;
  left: -8px;
}

.portrait-card-bottom {
  right: -6px;
  bottom: 54px;
}

.portrait-card-icon {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: #fff1f2;
  color: var(--red);
  font-size: 15px;
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 3px solid #c9efd7;
  border-radius: 50%;
  background: #1c9b51;
  box-sizing: content-box;
}

.portrait-card strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 12px;
}

.portrait-card p span {
  color: #77859a;
  font-size: 10px;
}

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

.results-shell {
  min-height: 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.results-shell article {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 31px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.results-shell article:first-child {
  padding-left: 0;
}

.results-shell article:last-child {
  border-right: 0;
  padding-right: 0;
}

.results-shell strong {
  color: white;
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.results-shell span {
  color: #b9c9df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.5;
  text-transform: uppercase;
}

.why-section {
  padding: 108px 0 116px;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  justify-content: space-between;
  gap: 110px;
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--red);
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 51px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.why-copy {
  padding-top: 31px;
}

.why-copy p {
  margin-bottom: 20px;
  color: #5e6e83;
  font-size: 16px;
  line-height: 1.78;
}

.inline-arrow {
  display: inline-flex;
  margin-top: 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.leadership-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--paper);
}

.leadership-section::after {
  content: "18";
  position: absolute;
  right: -30px;
  bottom: -105px;
  color: rgba(16, 45, 97, 0.035);
  font-family: Georgia, serif;
  font-size: 360px;
  font-weight: 700;
  line-height: 1;
}

.leadership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 92px;
}

.leadership-photo {
  position: relative;
  min-height: 545px;
}

.leadership-photo::before {
  content: "";
  position: absolute;
  width: 77%;
  height: 92%;
  top: -18px;
  left: -18px;
  border: 2px solid #a8c5dd;
}

.leadership-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: 39% center;
  box-shadow: 0 28px 64px rgba(16, 45, 97, 0.15);
}

.leadership-caption {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: 0;
  width: 82%;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--navy);
  color: white;
  padding: 20px 24px;
}

.caption-line {
  width: 31px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--red);
}

.leadership-caption p {
  margin: 0;
}

.leadership-caption strong,
.leadership-caption span {
  display: block;
}

.leadership-caption strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.leadership-caption p span {
  color: #b8c8dd;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.leadership-copy h2 {
  max-width: 600px;
  margin-bottom: 25px;
  font-size: clamp(38px, 3.7vw, 53px);
}

.leadership-lead,
.advantage-intro {
  margin-bottom: 33px;
  color: #5e6e83;
  font-size: 16px;
  line-height: 1.78;
}

.coaching-points {
  display: grid;
  gap: 17px;
}

.coaching-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.coaching-points article > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid #c7d7e6;
  border-radius: 50%;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.coaching-points p {
  margin: 0;
  color: #6a7890;
  font-size: 13px;
  line-height: 1.65;
}

.coaching-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 14px;
}

.award-row {
  display: flex;
  height: 68px;
  align-items: center;
  gap: 23px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.award-row img:first-child {
  width: 72px;
  height: 62px;
  object-fit: contain;
}

.award-row img:last-child {
  width: 108px;
  height: 55px;
  object-fit: contain;
}

.award-row > span {
  width: 1px;
  height: 38px;
  background: #ccd8e4;
}

.opportunities-section {
  padding: 118px 0 112px;
  background: white;
}

.section-heading {
  max-width: 750px;
}

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

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 18px;
}

.centered-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #66768b;
  font-size: 16px;
  line-height: 1.75;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.opportunity-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  padding: 30px 31px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.opportunity-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -74px;
  bottom: -74px;
  border: 18px solid #edf4f9;
  border-radius: 50%;
}

.opportunity-card:hover {
  transform: translateY(-6px);
  border-color: #b9cee0;
  box-shadow: 0 24px 48px rgba(16, 45, 97, 0.1);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.card-number {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.card-label {
  color: #8a98aa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.opportunity-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 27px;
  letter-spacing: -0.025em;
}

.opportunity-card > p {
  margin-bottom: 28px;
  color: #68788c;
  font-size: 14px;
  line-height: 1.75;
}

.opportunity-card > a {
  position: absolute;
  z-index: 2;
  bottom: 31px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.opportunity-card > a span {
  margin-left: 8px;
  color: var(--red);
}

.fit-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  border-left: 3px solid var(--red);
  background: var(--paper);
  padding: 21px 27px;
}

.fit-note p,
.fit-note .inline-arrow {
  margin: 0;
}

.fit-note p {
  color: #69778a;
  font-size: 13px;
}

.fit-note strong {
  color: var(--navy);
}

.advantage-section {
  overflow: hidden;
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 94px;
}

.advantage-visual {
  position: relative;
  min-height: 640px;
}

.advantage-visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 47% center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.advantage-visual::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -25px;
  width: 34%;
  height: 74%;
  border: 2px solid rgba(255,255,255,0.28);
}

.advantage-seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 138px;
  height: 138px;
  right: -42px;
  bottom: -12px;
  place-items: center;
  border: 8px solid var(--navy);
  border-radius: 50%;
  background: white;
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
}

.advantage-seal img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 50%;
}

.advantage-copy .section-kicker {
  color: #89c1e8;
}

.advantage-copy h2 {
  margin-bottom: 22px;
  color: white;
}

.advantage-intro {
  max-width: 620px;
  color: #bdcde0;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  min-height: 150px;
  padding: 25px 26px 23px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.advantage-list article:nth-child(odd) {
  padding-right: 31px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.advantage-list article:nth-child(even) {
  padding-left: 28px;
}

.advantage-list article > span {
  color: #79b9e5;
  font-family: Georgia, serif;
  font-size: 12px;
}

.advantage-list h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 14px;
}

.advantage-list p {
  margin: 0;
  color: #aebfd5;
  font-size: 12px;
  line-height: 1.7;
}

.district-life {
  padding: 118px 0 126px;
  background: #f4f8fb;
}

.life-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 48px;
}

.life-heading > p {
  margin-bottom: 4px;
  color: #65758a;
  font-size: 15px;
  line-height: 1.75;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  grid-template-rows: 245px 245px;
  gap: 18px;
}

.photo-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy);
}

.photo-grid .photo-large {
  grid-row: 1 / 3;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.photo-grid .photo-large img {
  object-position: center 44%;
}

.photo-grid figure:nth-child(2) img {
  object-position: center 35%;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-grid figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 25, 52, 0.72));
}

.photo-grid figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 19px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 76% 50%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(112deg, #d52333 0%, #b81328 100%);
  color: white;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  top: -220px;
  left: -150px;
  border: 65px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  align-items: center;
  gap: 100px;
}

.light-kicker {
  color: #ffd8dc;
}

.cta-copy h2 {
  max-width: 690px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(41px, 4vw, 57px);
}

.cta-copy > p {
  max-width: 650px;
  margin-bottom: 31px;
  color: #ffe1e4;
  font-size: 16px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.button-light {
  border-color: white;
  background: white;
  box-shadow: 0 15px 36px rgba(91, 0, 11, 0.25);
  color: var(--red);
}

.button-light:hover {
  background: #f7f9fc;
}

.location-link {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.location-link:hover {
  text-decoration: underline;
}

.cta-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 21px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(110, 0, 13, 0.18);
  box-shadow: 0 22px 55px rgba(94, 0, 11, 0.18);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.cta-card > img {
  width: 105px;
  height: 132px;
  object-fit: cover;
  object-position: center top;
}

.cta-card div > span {
  display: block;
  margin-bottom: 7px;
  color: #ffccd1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-card h3 {
  margin: 0 0 7px;
  color: white;
  font-family: Georgia, serif;
  font-size: 24px;
}

.cta-card p {
  margin-bottom: 13px;
  color: #ffe1e4;
  font-size: 11px;
  line-height: 1.6;
}

.cta-card a {
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.cta-card a span {
  margin-left: 6px;
}

footer {
  padding: 49px 0 32px;
  background: #091f44;
  color: white;
}

.footer-top,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 105px;
  height: 40px;
  border-radius: 2px;
  background: white;
  padding: 4px 8px;
}

.footer-brand span {
  color: #9fb3ce;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 25px;
  color: #d6e1ef;
  font-size: 12px;
  font-weight: 700;
}

.social-links a:hover,
.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

.footer-legal {
  align-items: flex-start;
  padding-top: 26px;
}

.footer-legal > p {
  max-width: 650px;
  margin: 0;
  color: #7f96b4;
  font-size: 9px;
  line-height: 1.75;
}

.footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px;
  color: #7f96b4;
  font-size: 9px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr 0.78fr;
    gap: 10px;
  }

  .hero-copy {
    padding: 66px 0 60px;
  }

  .hero-portrait,
  .hero-shell {
    min-height: 600px;
  }

  .portrait-card-top {
    left: -34px;
  }

  .portrait-card-bottom {
    right: -5px;
  }

  .results-shell {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
  }

  .results-shell article,
  .results-shell article:first-child,
  .results-shell article:last-child {
    padding: 18px;
  }

  .results-shell article:nth-child(2) {
    border-right: 0;
  }

  .why-grid {
    gap: 60px;
  }

  .leadership-grid,
  .advantage-grid {
    gap: 55px;
  }

  .leadership-photo > img {
    height: 470px;
  }

  .leadership-photo {
    min-height: 505px;
  }

  .opportunity-card {
    padding: 27px 24px;
  }

  .advantage-visual,
  .advantage-visual > img {
    min-height: 560px;
    height: 560px;
  }

  .advantage-seal {
    right: -20px;
  }

  .life-heading,
  .cta-shell {
    gap: 55px;
  }

  .cta-shell {
    grid-template-columns: 1fr 0.68fr;
  }

  .cta-card {
    grid-template-columns: 78px 1fr;
    padding: 18px;
  }

  .cta-card > img {
    width: 78px;
    height: 112px;
  }
}

@media (max-width: 740px) {
  .nav-shell,
  .hero-shell,
  .results-shell,
  .section-shell {
    width: min(100% - 32px, 600px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 88px;
  }

  .brand-divider,
  .district-name {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero-shell {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    padding: 54px 0 18px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(47px, 13.5vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-proof {
    display: none;
  }

  .hero-portrait {
    width: min(100%, 440px);
    min-height: 470px;
    margin: 0 auto;
  }

  .hero-portrait > img {
    right: 0;
    max-height: 480px;
  }

  .portrait-ring {
    width: 340px;
    height: 340px;
    right: 4%;
    bottom: 38px;
    border-width: 46px;
  }

  .portrait-grid {
    right: -20px;
    top: 30px;
  }

  .portrait-card-top {
    top: 76px;
    left: 0;
  }

  .portrait-card-bottom {
    right: -2px;
    bottom: 28px;
  }

  .results-shell {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0;
  }

  .results-shell article {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .results-shell article:nth-child(3),
  .results-shell article:nth-child(4) {
    border-bottom: 0;
  }

  .results-shell strong {
    font-size: 22px;
  }

  .why-section {
    padding: 75px 0 82px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-copy {
    padding-top: 0;
  }

  .leadership-section,
  .opportunities-section,
  .advantage-section,
  .district-life {
    padding: 78px 0;
  }

  .leadership-grid,
  .advantage-grid,
  .life-heading,
  .cta-shell {
    grid-template-columns: 1fr;
    gap: 47px;
  }

  .leadership-photo {
    width: calc(100% - 14px);
    min-height: 410px;
    margin-left: 14px;
  }

  .leadership-photo > img {
    height: 390px;
  }

  .leadership-caption {
    right: -14px;
    width: 90%;
  }

  .leadership-copy h2 {
    font-size: 39px;
  }

  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    min-height: 325px;
  }

  .card-topline {
    margin-bottom: 38px;
  }

  .fit-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .advantage-visual {
    width: calc(100% - 20px);
    min-height: 470px;
  }

  .advantage-visual > img {
    height: 470px;
    min-height: 470px;
  }

  .advantage-seal {
    width: 110px;
    height: 110px;
    right: -20px;
  }

  .advantage-seal img {
    width: 82px;
    height: 82px;
  }

  .advantage-list {
    grid-template-columns: 1fr;
  }

  .advantage-list article,
  .advantage-list article:nth-child(odd),
  .advantage-list article:nth-child(even) {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
  }

  .life-heading {
    gap: 20px;
    margin-bottom: 31px;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 340px 230px 230px;
  }

  .photo-grid .photo-large {
    grid-row: auto;
  }

  .final-cta {
    padding: 78px 0 93px;
  }

  .cta-shell {
    gap: 43px;
  }

  .cta-copy h2 {
    font-size: 42px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location-link {
    text-align: center;
  }

  .cta-card {
    grid-template-columns: 100px 1fr;
  }

  .cta-card > img {
    width: 100px;
    height: 125px;
  }

  footer {
    padding-bottom: 90px;
  }

  .footer-top,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal > div {
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    display: flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 4px;
    background: var(--red);
    box-shadow: 0 14px 35px rgba(47, 0, 6, 0.32);
    color: white;
    font-size: 13px;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
