.homepage {
  --blue-950: #001d2e;
  --blue-900: #003954;
  --blue-800: #005c87;
  --blue-700: #0072a6;
  --blue-100: #e7f7fd;
  --gold: #f6c22f;
  --green: #168a42;
  --ink: #132533;
  --muted: #617483;
  --line: #dce8ee;
  --bg: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 44, 70, 0.16);
  --shadow-soft: 0 14px 45px rgba(0, 44, 70, 0.07);
  --container: 1180px;
  background: #ffffff;
  color: var(--ink);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.heroSlider {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  background: #001d2e;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
}

.slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.slideActive {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slideShade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(246, 194, 47, 0.34), transparent 24%),
    linear-gradient(110deg, rgba(0, 29, 46, 0.96) 0%, rgba(0, 57, 84, 0.88) 45%, rgba(0, 114, 166, 0.36) 100%);
}

.slideContent {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 88px);
}

.slideCopy {
  max-width: 760px;
  color: #ffffff;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slideCopy h1,
.sectionHeading h2,
.introCopy h2,
.labPanel h2,
.contactText h2 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}

.slideCopy h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  font-weight: 900;
}

.slideCopy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.buttonPrimary {
  background: var(--gold);
  color: var(--blue-950);
  box-shadow: 0 16px 45px rgba(246, 194, 47, 0.25);
}

.buttonOutline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.buttonLight {
  background: #ffffff;
  color: var(--blue-900);
}

.heroCard {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.heroCardLabel {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  background: var(--blue-100);
  padding: 7px 13px;
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heroCard h2 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.16;
}

.finder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.finderItem {
  flex: 1 1 0;
  min-width: 112px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 12px 9px;
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.finderItemActive {
  border-color: var(--blue-700);
  background: var(--blue-700);
  color: var(--white);
}

.finderCopy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.finderAction {
  margin-top: 18px;
}

.sliderControls {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: max(20px, calc((100vw - var(--container)) / 5));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.sliderButton,
.dot {
  cursor: pointer;
  border: 0;
}

.sliderButton {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 29, 46, 0.56);
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 29, 46, 0.22);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sliderButton:hover,
.sliderButton:focus-visible {
  border-color: rgba(246, 194, 47, 0.88);
  background: rgba(0, 57, 84, 0.82);
  transform: translateY(-1px);
}

.sliderButton:focus-visible {
  outline: 3px solid rgba(246, 194, 47, 0.36);
  outline-offset: 3px;
}

.sliderDots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.dotActive {
  background: var(--gold);
}

.quickCards {
  position: relative;
  z-index: 4;
  margin-top: -40px;
  padding-block: 0 30px;
  background: transparent;
}

.quickGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quickCard,
.featureCard,
.trainingCard,
.newsCard,
.campusTile {
  border-radius: 20px;
  text-decoration: none;
}

.quickCard {
  display: block;
  min-height: 172px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(0, 45, 72, 0.13);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.quickCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 114, 166, 0.28);
}

.quickCard span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.quickCard strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.125rem;
  line-height: 1.2;
}

.quickCard p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.62;
}

.sectionPad {
  padding-block: 96px;
}

.sectionMuted {
  background: var(--bg);
}

.featuredBand {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(120deg, rgba(0, 29, 46, 0.94), rgba(0, 114, 166, 0.78)),
    url("/images/millingworks.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.featuredBand::after {
  position: absolute;
  inset: auto -130px -210px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246, 194, 47, 0.3), transparent 68%);
  content: "";
}

.featuredBand .container {
  position: relative;
  z-index: 1;
}

.featuredBand .sectionHeading h2 {
  color: var(--white);
}

.featuredBand .sectionHeading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.introGrid,
.splitLayout,
.labGrid,
.contactGrid,
.technologyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.introGrid {
  align-items: center;
  gap: clamp(34px, 4vw, 48px);
}

.introCopy h2,
.sectionHeading h2,
.labPanel h2,
.contactText h2 {
  margin-top: 12px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
}

.introCopy p:not(.eyebrow),
.sectionHeading p:not(.eyebrow),
.labPanel p:not(.eyebrow),
.contactText p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.officialNote {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  background: #e9f6ed;
  padding: 7px 12px;
  color: #168a42;
  font-size: 0.76rem;
  font-weight: 900;
}

.statsRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.statsRow div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  padding: 16px;
}

.statsRow strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.45rem;
  line-height: 1;
}

.statsRow span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.introPanel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-950);
  padding: clamp(20px, 2.4vw, 26px);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.introPanel h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  line-height: 1.18;
}

.introPanel > p:not(.panelEyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.panelEyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.videoFrame {
  position: relative;
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #00131f;
}

.videoFrame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spotlightGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.spotlightCard {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 12px;
}

.spotlightCard h4 {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1.2;
}

.spotlightCard p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.45;
}

.sectionHeading {
  max-width: 780px;
}

.sectionHeadingCentered {
  margin-inline: auto;
  text-align: center;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.featureSlider {
  margin-top: 36px;
  overflow: hidden;
}

.featureSliderViewport {
  overflow: hidden;
  padding: 3px;
}

.featureSliderControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.featureSliderControls > button {
  display: inline-flex;
  height: 42px;
  min-width: 76px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.featureSliderControls > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featureSliderControls > div button {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: #c9d8df;
  cursor: pointer;
}

.featureSliderControls > div .featureDotActive {
  background: var(--gold);
}

.featureSliderTrack {
  --feature-gap: 22px;
  --feature-visible: 3;
  display: flex;
  gap: 22px;
  align-items: stretch;
  transform: translateX(
    calc(
      var(--feature-index) * -1 *
        ((100% - (var(--feature-gap) * (var(--feature-visible) - 1))) / var(--feature-visible) + var(--feature-gap))
    )
  );
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.featureCard {
  display: flex;
  flex: 0 0 calc((100% - (var(--feature-gap) * (var(--feature-visible) - 1))) / var(--feature-visible));
  min-height: 310px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 14px 45px rgba(0, 44, 70, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.featureCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 114, 166, 0.25);
  box-shadow: var(--shadow);
}

.featureIcon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-100), white);
  color: var(--blue-700);
  font-weight: 900;
}

.featureCard h3,
.serviceRow h3,
.labList h3,
.campusBody h3,
.trainingCard h3,
.newsCard h3 {
  margin: 18px 0 0;
  color: var(--blue-950);
  font-size: 1.2rem;
  line-height: 1.28;
}

.featureCard p,
.serviceRow p,
.labList p,
.campusBody p,
.trainingCard p,
.newsCard p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.miniList,
.campusList {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.miniList li,
.campusList li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.miniList li::before,
.campusList li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.textLink {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.stickyHeading {
  position: sticky;
  top: 240px;
}

.services {
  position: relative;
  background: var(--blue-950);
  color: var(--white);
}

.services::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(0, 29, 46, 0.94), rgba(0, 114, 166, 0.78)),
    url("/images/millingworks.jpg");
  background-position: center;
  background-size: cover;
  content: "";
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .sectionHeading h2 {
  color: var(--white);
}

.services .sectionHeading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.serviceStack {
  display: grid;
  gap: 16px;
}

.serviceRow {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 24px;
}

.serviceRow span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.labBand {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: #ffffff;
}

.labPanel h2,
.labPanel p {
  color: #ffffff;
}

.labPanel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.labList {
  display: grid;
  gap: 16px;
}

.labList article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.labList h3,
.labList p {
  color: #ffffff;
}

.labList p {
  color: rgba(255, 255, 255, 0.78);
}

.campusHeading {
  max-width: 820px;
}

.campusGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.campusTile {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.campusTileAccent {
  border-color: rgba(0, 114, 166, 0.35);
}

.campusPhoto {
  position: relative;
  min-height: 280px;
}

.campusImage,
.newsImage {
  object-fit: cover;
}

.campusPhoto span {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 114, 166, 0.86);
  padding: 9px 13px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.campusBody {
  padding: 28px;
}

.trainingTools {
  margin-top: 28px;
}

.trainingTools input,
.contactForm input,
.contactForm select,
.contactForm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  padding: 13px 14px;
  color: #102033;
  outline: none;
}

.trainingTools input:focus,
.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-color: #0072a6;
  box-shadow: 0 0 0 3px rgba(0, 114, 166, 0.16);
}

.trainingGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trainingCard {
  min-height: 160px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(0, 44, 70, 0.06);
}

.technologyGrid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.techList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.techList a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 12px 16px;
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
}

.techList a::after {
  content: "";
}

.newsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.newsCard {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.newsPhoto {
  position: relative;
  min-height: 210px;
}

.newsCard div:last-child {
  padding: 22px;
}

.newsCard span {
  color: #0072a6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsCard a {
  color: inherit;
  text-decoration: none;
}

.contact {
  background: var(--blue-950);
  color: var(--white);
}

.contact .eyebrow,
.contactText h2 {
  color: var(--white);
}

.contact .eyebrow {
  color: var(--gold);
}

.contactText p {
  color: rgba(255, 255, 255, 0.78);
}

.contactDetails {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.contactDetails a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contactForm {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 55px rgba(0, 44, 70, 0.1);
}

.contactForm label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-size: 0.86rem;
  font-weight: 900;
}

.emptyTraining {
  grid-column: 1 / -1;
  border: 1px dashed #b8ccd8;
  border-radius: 8px;
  padding: 24px;
  color: #526273;
  text-align: center;
}

.siteFooter {
  background: #00131f;
  color: #cbd5e1;
}

.siteFooter .container {
  width: min(1080px, calc(100% - 56px));
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  padding-block: 56px;
}

.footerBrand {
  max-width: 360px;
}

.footerLogoMark {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.footerLogo {
  width: 82px;
  height: auto;
}

.footerDescription {
  max-width: 34rem;
  margin-top: 20px;
  text-align: justify;
  text-justify: inter-word;
}

.siteFooter p,
.siteFooter a {
  color: #aebdcc;
  font-size: 0.92rem;
  line-height: 1.7;
}

.siteFooter a {
  display: block;
  margin-top: 9px;
  text-decoration: none;
  transition: color 180ms ease;
}

.siteFooter a:hover {
  color: #f6c22f;
}

.siteFooter h2,
.siteFooter h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1rem;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 20px;
  color: #8da0b2;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .heroSlider {
    min-height: 860px;
  }

  .slideContent,
  .introGrid,
  .splitLayout,
  .labGrid,
  .contactGrid,
  .technologyGrid {
    grid-template-columns: 1fr;
  }

  .heroCard,
  .stickyHeading {
    position: static;
  }

  .quickGrid,
  .featureGrid,
  .trainingGrid,
  .newsGrid,
  .footerGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featureSliderTrack {
    --feature-visible: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .heroSlider {
    min-height: 940px;
  }

  .slideContent {
    min-height: auto;
    padding-block: 48px 118px;
  }

  .sliderControls {
    bottom: 24px;
    left: 12px;
  }

  .slideCopy h1 {
    font-size: clamp(1.72rem, 9vw, 2.45rem);
  }

  .slideCopy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .heroCard {
    padding: 20px;
  }

  .spotlightGrid {
    grid-template-columns: 1fr;
  }

  .spotlightCard {
    padding: 14px;
  }

  .spotlightCard h4 {
    font-size: 0.95rem;
  }

  .spotlightCard p {
    font-size: 0.84rem;
  }

  .finder {
    margin: 18px 0;
  }

  .finderItem {
    flex-basis: 100%;
  }

  .heroActions,
  .footerBottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quickGrid,
  .featureGrid,
  .campusGrid,
  .trainingGrid,
  .newsGrid,
  .footerGrid,
  .statsRow {
    grid-template-columns: 1fr;
  }

  .quickCards {
    margin-top: 0;
    padding-top: 24px;
    background: #f4f8fb;
  }

  .featureSliderTrack {
    --feature-visible: 1;
    --feature-gap: 16px;
    gap: 16px;
  }

  .featureSliderControls {
    gap: 10px;
  }

  .featureSliderControls > div {
    max-width: 140px;
    overflow: hidden;
  }

  .serviceRow {
    grid-template-columns: 1fr;
  }

  .serviceStack {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .button,
  .quickCard,
  .featureSliderTrack {
    animation: none;
    transition: none;
  }
}
