:root {
  --navy: #0d2d53;
  --navy-deep: #08233f;
  --ink: #10233c;
  --green: #08764f;
  --green-dark: #05623f;
  --line: #dbe4ea;
  --paper: #f4f7f6;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(13, 45, 83, .12), 0 8px 24px rgba(13, 45, 83, .06);
}

.utility-bar {
  min-height: 54px;
  color: var(--white);
  background: var(--navy);
}

.utility-inner,
.main-inner,
.contact-links,
.utility-actions,
.social-links {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 54px;
  justify-content: space-between;
  gap: 28px;
}

.contact-links { gap: 22px; }

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.utility-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: .92;
}

.utility-actions { gap: 20px; }

.header-search {
  position: relative;
  width: 275px;
}

.header-search input {
  width: 100%;
  height: 34px;
  padding: 0 43px 0 17px;
  border: 0;
  border-radius: 999px;
  outline: 2px solid transparent;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  transition: outline-color 200ms cubic-bezier(.23, 1, .32, 1);
}

.header-search input:focus { outline-color: #59b898; }

.header-search button {
  position: absolute;
  top: 0;
  right: 4px;
  width: 36px;
  height: 34px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-search svg { width: 100%; height: 100%; fill: var(--ink); }

.social-links { gap: 9px; }

.social-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 200ms cubic-bezier(.23, 1, .32, 1), background-color 200ms cubic-bezier(.23, 1, .32, 1);
}

.social-icon:hover { transform: translateY(-2px); background: #d7efe7; }
.social-tiktok { font-size: 18px; }
.social-youtube svg { width: 19px; height: 19px; fill: currentColor; }

.main-bar { background: var(--white); }

.main-inner {
  min-height: 88px;
  gap: 30px;
}

.brand {
  display: flex;
  flex: 0 0 198px;
  align-items: center;
}

.brand img {
  display: block;
  width: 198px;
  height: 64px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
}

.desktop-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.desktop-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms cubic-bezier(.23, 1, .32, 1);
}

.desktop-menu > li > a::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.desktop-menu > li > a:hover,
.desktop-menu > li:focus-within > a { color: var(--green); }
.desktop-menu > li > a:hover::after,
.desktop-menu > li:focus-within > a::after { transform: scaleX(1); }

.menu-parent > a { padding-right: 30px !important; }

.menu-parent > a::before {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-70%) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  z-index: 40;
  border-top: 3px solid var(--green);
  border-radius: 0 0 10px 10px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(8, 35, 63, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms cubic-bezier(.23, 1, .32, 1), transform 180ms cubic-bezier(.23, 1, .32, 1), visibility 180ms;
}

.menu-parent:hover > .dropdown-menu,
.menu-parent:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-menu {
  left: 0;
  width: 270px;
  margin: 0;
  padding: 10px;
  list-style: none;
  transform: translateY(10px);
}

.menu-parent:hover > .about-menu,
.menu-parent:focus-within > .about-menu { transform: translateY(0); }

.about-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 5px;
  color: #20364f;
  font-size: 13px;
  font-weight: 600;
}

.about-menu a:hover { color: var(--green); background: #edf7f3; }

.training-menu {
  left: 50%;
  display: grid;
  width: 750px;
  grid-template-columns: 245px 1fr;
  overflow: hidden;
  transform: translate(-50%, 10px);
}

.menu-parent:hover > .training-menu,
.menu-parent:focus-within > .training-menu { transform: translate(-50%, 0); }

.training-menu-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.menu-eyebrow {
  margin-bottom: 10px;
  color: #8ed8bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.training-menu-intro strong {
  font-size: 20px;
  line-height: 1.35;
}

.training-menu-intro a {
  margin-top: 25px;
  color: #c8f1e2;
  font-size: 12px;
  font-weight: 700;
}

.training-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0;
  padding: 18px 20px;
  list-style: none;
}

.training-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #e4ebe8;
  color: #1b3450;
  font-size: 13px;
  font-weight: 700;
}

.training-links a span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.training-links a:hover { color: var(--green); }

.consultation-button {
  flex: 0 0 auto;
  padding: 15px 21px;
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(8, 118, 79, .18);
  transition: background-color 200ms cubic-bezier(.23, 1, .32, 1), transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.consultation-button:hover { background: var(--green-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
}

.mobile-menu-backdrop,
.mobile-offcanvas { display: none; }

.course-hero {
  position: relative;
  z-index: 2;
  padding: 0 0 58px;
  background:
    radial-gradient(circle at 50% 88%, rgba(58, 191, 141, .28), transparent 42%),
    linear-gradient(180deg, #0c2e4f 0%, #0a3d49 57%, #0a5546 100%);
}

.course-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 118px;
  background: linear-gradient(180deg, rgba(8, 44, 62, 0), rgba(7, 75, 66, .72) 62%, #0a5446 100%);
  content: "";
}

.course-hero > .shell {
  width: 100%;
  max-width: none;
}

.course-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}

.course-banner img {
  display: block;
  width: 100%;
  height: clamp(390px, 28.6vw, 550px);
  object-fit: cover;
  object-position: center;
}

.course-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  background: linear-gradient(180deg, transparent, rgba(7, 55, 61, .62));
  content: "";
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(4, 33, 58, .4);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 200ms cubic-bezier(.23, 1, .32, 1), transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.hero-arrow:hover { background: rgba(6, 116, 82, .85); transform: translateY(-50%) scale(1.06); }
.hero-arrow svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; }
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }

.slider-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding-top: 18px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(217, 241, 232, .45);
}

.slider-dots button.active { width: 28px; background: #6ce0b5; }

.bsa-introduction {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.introduction-photo,
.introduction-overlay,
.introduction-grid {
  position: absolute;
  inset: 0;
}

.introduction-photo {
  z-index: -3;
  background-image: url("../assets/bsa-field/field-03.jpg");
  background-position: center 43%;
  background-size: cover;
  filter: saturate(.72) contrast(1.05);
  transform: scale(1.035);
}

.introduction-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 29, 49, .94) 0%, rgba(6, 45, 56, .88) 43%, rgba(3, 43, 37, .91) 100%),
    linear-gradient(180deg, rgba(11, 54, 61, .18), rgba(4, 43, 37, .78));
}

.introduction-grid {
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
}

.bsa-introduction::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(56, 185, 138, 0), rgba(104, 220, 177, .55) 48%, rgba(56, 185, 138, 0));
  content: "";
}

.bsa-introduction::after {
  position: absolute;
  right: -190px;
  bottom: -280px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(131, 224, 190, .27);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(131, 224, 190, .045), 0 0 0 156px rgba(131, 224, 190, .035);
  content: "";
}

.introduction-inner {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  align-items: center;
  gap: clamp(56px, 6vw, 100px);
  padding-block: 48px 43px;
}

.introduction-media { position: relative; }

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.64 / 1;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(0, 16, 27, .38);
}

.media-frame::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 25, 43, .04) 35%, rgba(3, 25, 43, .88) 100%);
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 72px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--green);
  box-shadow: 0 12px 35px rgba(0, 27, 36, .28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 200ms cubic-bezier(.23, 1, .32, 1), background-color 200ms cubic-bezier(.23, 1, .32, 1);
}

.media-play:hover { background: #dff7ed; transform: translate(-50%, -50%) scale(1.06); }
.media-play svg { width: 29px; height: 29px; fill: currentColor; transform: translateX(2px); }

.media-caption {
  position: absolute;
  right: 34px;
  bottom: 31px;
  left: 34px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.media-caption span {
  color: #b5e9d6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.media-caption strong { max-width: 260px; font-size: 20px; line-height: 1.3; text-align: right; }

.media-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}

.signature-line { width: 58px; height: 1px; background: #75d5b1; }

.introduction-content { position: relative; z-index: 2; }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: #9ce2c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-kicker span { width: 34px; height: 2px; background: #60cba4; }

.introduction-content h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.introduction-lead {
  margin: 14px 0 18px;
  color: #bcead9;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.mission-statement {
  position: relative;
  margin-bottom: 17px;
  padding: 15px 22px 14px 50px;
  border-top: 1px solid rgba(159, 226, 201, .48);
  border-bottom: 1px solid rgba(159, 226, 201, .48);
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
}

.mission-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  color: #76d7b3;
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.mission-statement p {
  margin: 0;
  color: #f4fffb;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
}

.mission-source {
  display: block;
  margin-top: 9px;
  color: #9ce2c8;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.introduction-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.75;
}

.leader-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.leader-strip img {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(157, 226, 200, .7);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.leader-strip div { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 8px; }
.leader-strip span { grid-column: 1 / -1; color: #9ce2c8; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.leader-strip strong { color: var(--white); font-size: 15px; }
.leader-strip small { color: rgba(255,255,255,.65); font-size: 11px; }

.introduction-link {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: color 200ms cubic-bezier(.23, 1, .32, 1), background-color 200ms cubic-bezier(.23, 1, .32, 1), transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.introduction-link:hover { color: var(--navy); background: var(--white); transform: translateY(-2px); }
.introduction-link span { font-size: 18px; }

.bsa-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 34%, rgba(74, 198, 151, .21), transparent 27%),
    radial-gradient(circle at 7% 108%, rgba(22, 141, 105, .24), transparent 36%),
    linear-gradient(112deg, #061e36 0%, #073b43 58%, #07503f 100%);
}

.bsa-hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(2, 29, 38, .38));
  content: "";
}

.bsa-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 86px 86px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
}

.bsa-hero-orbit {
  position: absolute;
  right: -238px;
  bottom: -392px;
  z-index: -1;
  width: 790px;
  height: 790px;
  border: 1px solid rgba(139, 229, 195, .23);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(139, 229, 195, .035), 0 0 0 184px rgba(139, 229, 195, .025);
}

.bsa-hero-inner {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  padding-block: 62px 54px;
}

.bsa-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.bsa-hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
  color: #99e5c9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bsa-hero-kicker span {
  width: 42px;
  height: 2px;
  background: #68d6ad;
}

.bsa-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(45px, 4.55vw, 70px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.bsa-hero h1 em {
  color: #82dfbd;
  font-style: normal;
  font-weight: inherit;
}

.bsa-hero-lead {
  max-width: 680px;
  margin: 24px 0 25px;
  color: rgba(241, 252, 248, .84);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.bsa-hero-mission {
  position: relative;
  max-width: 690px;
  margin: 0;
  padding: 17px 24px 16px 50px;
  border-top: 1px solid rgba(159, 226, 201, .38);
  border-bottom: 1px solid rgba(159, 226, 201, .38);
  background: linear-gradient(90deg, rgba(255, 255, 255, .09), transparent 90%);
}

.bsa-hero-quote {
  position: absolute;
  top: 9px;
  left: 15px;
  color: #75d8b4;
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.bsa-hero-mission p {
  margin: 0;
  color: #f2fcf8;
  font-size: 14px;
  font-style: italic;
  font-weight: 520;
  line-height: 1.64;
}

.bsa-hero-mission cite {
  display: block;
  margin-top: 8px;
  color: #92dfc3;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bsa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 27px;
}

.bsa-hero-primary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border-radius: 8px;
  color: #05382d;
  background: #83dfbd;
  box-shadow: 0 15px 34px rgba(0, 22, 31, .22);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 200ms cubic-bezier(.23, 1, .32, 1), transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.bsa-hero-primary span { font-size: 19px; }
.bsa-hero-primary:hover { background: #a2ead0; transform: translateY(-2px); }
.bsa-hero-primary:active { transform: translateY(0); }

.bsa-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  color: #e2f4ed;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms cubic-bezier(.23, 1, .32, 1), color 180ms cubic-bezier(.23, 1, .32, 1);
}

.bsa-hero-secondary span { color: #78dab6; }
.bsa-hero-secondary:hover { border-color: #8ee2c3; color: #fff; }

.bsa-hero-leader {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.bsa-hero-photo-stage {
  position: relative;
  width: min(430px, 100%);
  margin-right: 14px;
}

.bsa-hero-photo-stage::before {
  position: absolute;
  inset: -28px -28px 33px 38px;
  z-index: -1;
  border-radius: 30px 30px 96px 30px;
  background: rgba(116, 218, 178, .11);
  content: "";
}

.bsa-hero-photo-outline {
  position: absolute;
  inset: -16px 23px 18px -16px;
  z-index: -1;
  border: 1px solid rgba(145, 225, 195, .45);
  border-radius: 27px 27px 88px 27px;
}

.bsa-hero-photo-stage > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 24px 24px 82px 24px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 31px 72px rgba(0, 16, 29, .38);
}

.bsa-hero-leader-card {
  position: absolute;
  right: 24px;
  bottom: -29px;
  left: -32px;
  display: grid;
  min-height: 100px;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 17px 21px;
  border-left: 4px solid var(--green);
  border-radius: 5px 14px 14px 5px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 19px 42px rgba(0, 18, 29, .27);
}

.bsa-hero-leader-card::before {
  grid-row: 1 / 4;
  width: 34px;
  height: 34px;
  align-self: center;
  border: 8px solid #0b7956;
  border-right-color: #0c4260;
  border-radius: 50%;
  content: "";
  transform: rotate(-28deg);
}

.bsa-hero-leader-card span {
  color: #577067;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.bsa-hero-leader-card strong {
  margin-top: 1px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.bsa-hero-leader-card small { color: #647970; font-size: 10px; font-weight: 600; }

.bsa-hero-principles {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .19);
}

.bsa-hero-principles > div {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 17px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.bsa-hero-principles > div:first-child { padding-left: 0; }
.bsa-hero-principles > div:last-child { border-right: 0; }

.bsa-hero-principles span {
  color: #77d8b4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.bsa-hero-principles strong {
  max-width: 260px;
  color: #d8ebe4;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.bsa-hero-primary:focus-visible,
.bsa-hero-secondary:focus-visible { outline: 2px solid #b1efd8; outline-offset: 4px; }

@media (max-width: 1180px) {
  .bsa-hero-inner { grid-template-columns: minmax(0, 1.12fr) minmax(320px, .78fr); gap: 54px; }
  .bsa-hero h1 { font-size: clamp(43px, 5vw, 58px); }
  .bsa-hero-photo-stage { width: min(380px, 100%); }
  .bsa-hero-principles > div { padding-inline: 20px; }
}

@media (max-width: 900px) {
  .bsa-hero-inner { min-height: 560px; grid-template-columns: minmax(0, 1fr) minmax(280px, 330px); gap: 38px; padding-block: 54px 49px; }
  .bsa-hero h1 { font-size: clamp(40px, 5.7vw, 50px); }
  .bsa-hero-lead { margin-block: 19px 20px; font-size: 15px; }
  .bsa-hero-mission { padding-right: 16px; }
  .bsa-hero-photo-stage { margin-right: 0; }
  .bsa-hero-leader-card { right: 8px; left: -18px; }
  .bsa-hero-principles strong { font-size: 11px; }
}

@media (max-width: 700px) {
  .bsa-hero-inner { grid-template-columns: 1fr; gap: 49px; padding-block: 48px 64px; }
  .bsa-hero-copy { max-width: 620px; }
  .bsa-hero h1 { max-width: 600px; font-size: clamp(38px, 10.4vw, 50px); }
  .bsa-hero-lead { max-width: 590px; }
  .bsa-hero-leader { justify-content: center; }
  .bsa-hero-photo-stage { width: min(340px, calc(100% - 16px)); }
  .bsa-hero-photo-stage::before { inset: -18px -17px 25px 26px; }
  .bsa-hero-leader-card { right: 10px; bottom: -35px; left: 10px; }
  .bsa-hero-principles { grid-template-columns: 1fr; }
  .bsa-hero-principles > div,
  .bsa-hero-principles > div:first-child { min-height: 58px; padding-inline: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .bsa-hero-principles > div:last-child { border-bottom: 0; }
}

@media (max-width: 420px) {
  .bsa-hero-inner { padding-top: 43px; }
  .bsa-hero-kicker { margin-bottom: 16px; font-size: 10px; }
  .bsa-hero h1 { font-size: 38px; }
  .bsa-hero-lead { font-size: 14px; line-height: 1.68; }
  .bsa-hero-mission { padding: 15px 14px 14px 43px; }
  .bsa-hero-mission p { font-size: 13px; }
  .bsa-hero-actions { align-items: stretch; flex-direction: column; }
  .bsa-hero-primary { width: 100%; }
  .bsa-hero-secondary { align-self: flex-start; }
  .bsa-hero-photo-stage { width: min(320px, calc(100% - 12px)); }
  .bsa-hero-leader-card { min-height: 92px; padding: 14px; }
  .bsa-hero-leader-card::before { width: 29px; height: 29px; border-width: 7px; }
  .bsa-hero-leader-card strong { font-size: 19px; }
}

.program-directory {
  --program-parallax-y: 0px;
  --program-parallax-y-reverse: 0px;
  position: relative;
  overflow: hidden;
  padding: 75px 0 96px;
  color: var(--ink);
  background: #f7f8f6;
}

.program-background {
  position: absolute;
  inset: -190px 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.program-background::before {
  position: absolute;
  inset: 0;
  background-image:
    url("./assets/program-line-pattern.svg"),
    url("./assets/program-line-pattern.svg"),
    url("./assets/program-line-pattern.svg");
  background-position:
    calc(100% + 70px) 4%,
    -220px 49%,
    calc(100% + 80px) 94%;
  background-repeat: no-repeat;
  background-size:
    min(54vw, 780px) auto,
    min(48vw, 690px) auto,
    min(60vw, 860px) auto;
  content: "";
  opacity: .82;
  transform: translate3d(0, var(--program-parallax-y), 0);
  will-change: transform;
}

.program-background::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 94% 9%, rgba(47, 170, 125, .095), rgba(47, 170, 125, 0) 20%),
    radial-gradient(circle at 8% 51%, rgba(13, 53, 90, .065), rgba(13, 53, 90, 0) 18%),
    radial-gradient(circle at 91% 93%, rgba(47, 170, 125, .12), rgba(47, 170, 125, 0) 22%);
  content: "";
  transform: translate3d(0, var(--program-parallax-y-reverse), 0);
  will-change: transform;
}

.program-orbit {
  display: none;
}

.orbit-one { top: 50px; right: 9%; width: 380px; height: 380px; }
.orbit-two { top: 115px; right: 13%; width: 250px; height: 250px; }
.program-inner { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .program-background::before,
  .program-background::after {
    transform: none;
    will-change: auto;
  }
}

.program-heading {
  display: block;
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.program-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.program-kicker span { width: 34px; height: 2px; background: var(--green); }

.program-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.11;
}

.program-heading-note {
  max-width: 620px;
  margin: 18px auto 0;
  padding: 0;
  border: 0;
}

.program-heading-note p { margin: 0; color: #52675e; font-size: 14px; line-height: 1.7; }

.program-heading-note a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.program-heading-note a span { font-size: 18px; }

.program-jump {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
  border: 0;
}

.program-jump button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-bottom: 2px solid #c8d3ce;
  color: #304a40;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: color 200ms cubic-bezier(.23, 1, .32, 1), background-color 200ms cubic-bezier(.23, 1, .32, 1);
}

.program-jump button:last-child { border-right: 0; }
.program-jump button span { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.program-jump button:hover,
.program-jump button.active { color: var(--green); border-bottom-color: var(--green); background: transparent; }
.program-jump button.active { font-weight: 800; }

.program-carousel {
  scroll-margin-top: 24px;
  padding-top: 25px;
  border-top: 1px solid #b8c9c1;
}

.program-carousel + .program-carousel {
  margin-top: 46px;
  padding-top: 38px;
}

.program-carousel-head {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.program-carousel-head p {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
}

.program-carousel-head p > span {
  color: var(--green);
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -.055em;
}

.program-carousel-head strong {
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.program-carousel-controls { display: flex; gap: 8px; }

.program-carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid #9db7ac;
  border-radius: 50%;
  color: var(--navy-deep);
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: color 200ms cubic-bezier(.23, 1, .32, 1), background-color 200ms cubic-bezier(.23, 1, .32, 1), border-color 200ms cubic-bezier(.23, 1, .32, 1);
}

.program-carousel-arrow:not(:disabled):hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.program-carousel-arrow:not(:disabled):hover svg {
  color: #fff;
  stroke: #fff !important;
}

.program-carousel-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-carousel-arrow:disabled {
  opacity: .38;
  cursor: default;
}

.program-carousel-arrow:disabled:hover {
  color: var(--navy-deep);
  border-color: #9db7ac;
  background: transparent;
}

.program-carousel-viewport {
  overflow: hidden;
  margin-inline: -8px;
  padding: 8px;
}

.program-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.program-carousel-track::-webkit-scrollbar { display: none; }

.program-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5dfda;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(8, 35, 63, .075);
  scroll-margin-inline: 8px;
  scroll-snap-align: start;
}

.program-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  background: var(--navy);
}

.program-card-visual > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.23, 1, .32, 1);
}

.program-card:hover .program-card-visual > img:first-child { transform: scale(1.025); }

.program-card-logo {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 55px;
  height: 25px;
  padding: 3px 5px;
  border-radius: 3px;
  background: rgba(255,255,255,.94);
  object-fit: contain;
}

.program-card-body {
  display: flex;
  min-height: 225px;
  flex: 1;
  flex-direction: column;
  padding: 17px 18px 15px;
}

.program-card-body > small {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.program-card-body h3 {
  min-height: 48px;
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.program-card-body ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 16px;
  padding: 0;
  color: #4f6259;
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.program-card-body li { position: relative; padding-left: 16px; }
.program-card-body li::before { position: absolute; top: .58em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #25a878; content: ""; }

.program-card-body > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card-body > a span { color: var(--green); font-size: 16px; }
.program-card-body > a:hover { color: var(--green); }

.partner-voices {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  color: var(--ink);
  background: #eef3f0;
}

.partner-voices-pattern {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: min(54vw, 760px);
  aspect-ratio: 1.46 / 1;
  opacity: .46;
  background: url("./assets/program-line-pattern.svg") right bottom / contain no-repeat;
  pointer-events: none;
}

.partner-voices-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1180px);
}

.partner-voices-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: end;
  gap: 60px;
  margin-bottom: 30px;
}

.partner-voices-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partner-voices-kicker span { width: 34px; height: 2px; background: var(--green); }

.partner-voices-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.partner-voices-heading > p { margin: 0 0 3px; color: #566b62; font-size: 14px; line-height: 1.65; }

.partner-voice-card {
  display: grid;
  grid-template-columns: minmax(360px, 40%) minmax(0, 1fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-deep);
  box-shadow: 0 25px 65px rgba(4, 32, 54, .18);
}

.partner-voice-person { position: relative; min-height: 470px; overflow: hidden; background: #cdd8d3; }

.partner-portrait,
.partner-avatar {
  background-image: url("./assets/partner-portrait-sprite.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

.partner-portrait {
  position: absolute;
  inset: 0;
  background-size: 200% auto;
  transition: opacity 220ms cubic-bezier(.23, 1, .32, 1);
}
.portrait-01 { background-position: 0 0; }
.portrait-02 { background-position: 100% 0; }
.portrait-03 { background-position: 0 100%; }
.portrait-04 { background-position: 100% 100%; }

.partner-voice-person::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(180deg, rgba(4, 30, 51, 0), rgba(4, 30, 51, .88));
  content: "";
}

.partner-person-caption {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  z-index: 1;
  display: grid;
  color: var(--white);
}

.partner-person-caption > span { margin-bottom: 5px; color: #8ee1c2; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.partner-person-caption strong { font-size: 25px; font-weight: 800; letter-spacing: -.025em; }
.partner-person-caption small { max-width: 390px; margin-top: 5px; color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.45; }

.partner-voice-content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 58px 58px 50px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 45%),
    var(--navy-deep);
}

.partner-voice-content::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(108, 218, 177, .13);
  border-radius: 50%;
  content: "";
}

.partner-quote-mark {
  position: absolute;
  top: 26px;
  right: 48px;
  color: rgba(111, 219, 179, .18);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.partner-feedback-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #86dbbb;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.partner-feedback-status span { width: 22px; height: 1px; background: #86dbbb; }

.partner-voice-content blockquote {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 24px 0 42px;
  color: #f7fbf9;
  font-size: clamp(21px, 1.75vw, 27px);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.partner-voice-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.partner-voice-meta p { display: grid; gap: 3px; margin: 0; }
.partner-voice-meta strong { color: var(--white); font-size: 14px; }
.partner-voice-meta p span { color: rgba(255,255,255,.65); font-size: 11px; }

.partner-voice-progress { width: 110px; height: 2px; overflow: hidden; background: rgba(255,255,255,.2); }
.partner-voice-progress span { display: block; width: 100%; height: 100%; background: #73d9b3; transform: scaleX(0); transform-origin: left; }
.partner-voice-progress.running span { animation: partnerVoiceProgress 7s linear forwards; }

@keyframes partnerVoiceProgress {
  to { transform: scaleX(1); }
}

.partner-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid #aabdb4;
  border-bottom: 1px solid #aabdb4;
}

.partner-selector-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid #bacac3;
  background: transparent;
  color: #53675e;
  cursor: pointer;
  text-align: left;
  transition: background-color 200ms cubic-bezier(.23, 1, .32, 1), color 200ms cubic-bezier(.23, 1, .32, 1);
}

.partner-selector-item:last-child { border-right: 0; }
.partner-selector-item:hover,
.partner-selector-item.active { color: var(--navy-deep); background: rgba(255,255,255,.72); }

.partner-avatar {
  display: block;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 50%;
  filter: grayscale(.45);
}

.partner-selector-item.active .partner-avatar { border-color: var(--green); filter: none; }
.partner-selector-item > span:last-child { display: grid; gap: 2px; }
.partner-selector-item strong { font-size: 12px; font-weight: 800; }
.partner-selector-item small { overflow: hidden; color: #73867d; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.partner-prototype-note { margin: 12px 0 0; color: #74867e; font-size: 10px; line-height: 1.5; text-align: right; }

.client-sectors {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfcfb 0%, #f3f7f5 72%, #eef5f1 100%);
}

.client-sectors::before {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(9, 71, 59, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 71, 59, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.client-sectors-orbit {
  position: absolute;
  right: -220px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(17, 132, 98, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(17, 132, 98, .025), 0 0 0 164px rgba(17, 132, 98, .022);
}

.client-sectors-inner { position: relative; z-index: 1; }

.client-sectors-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  align-items: end;
  gap: 62px;
  margin-bottom: 34px;
}

.client-sectors-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.client-sectors-kicker span { width: 34px; height: 2px; background: var(--green); }

.client-sectors-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.client-sectors-heading > p {
  max-width: 450px;
  margin: 0 0 3px;
  color: #566b62;
  font-size: 14px;
  line-height: 1.65;
}

.client-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.client-sector-group {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #d8e3de;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(4, 43, 59, .075);
}

.client-sector-group-head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 16px 12px 14px;
  color: var(--white);
  background: var(--navy-deep);
}

.client-sector-group-head::after {
  position: absolute;
  right: -18px;
  bottom: -39px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
}

.client-sector-group-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 10px;
  color: #92e1c4;
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.client-sector-group-head h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -.015em;
  line-height: 1.25;
}

.client-sector-group-head small {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 720;
  white-space: nowrap;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 88px;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: #e5ece9;
  list-style: none;
}

.client-logo-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 88px;
  place-items: center;
  padding: 13px 11px;
  background: #fff;
}

.client-logo-item::after {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transform-origin: center;
  transition: opacity 200ms cubic-bezier(.23, 1, .32, 1), transform 220ms cubic-bezier(.23, 1, .32, 1);
}

.client-logo-item:hover::after { opacity: 1; transform: scaleX(1); }

.client-logo-placeholder {
  background: #fff;
  pointer-events: none;
}

.client-logo-placeholder::after { display: none; }

.client-logo-item img {
  display: block;
  width: auto;
  max-width: 88px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: none;
}

.client-logo-item.client-logo-wide img { max-width: 108px; }

.client-sector-group-large { grid-column: span 1; }

.event-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
  border-radius: 12px;
  background: var(--navy);
}

.event-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.23, 1, .32, 1);
}

.event-visual:hover img { transform: scale(1.035); }

.event-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(4, 25, 45, .9) 100%);
  content: "";
}

.event-visual > span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.event-visual small { color: #8de0c1; font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.event-visual strong { color: var(--white); font-size: 13px; line-height: 1.35; }

.news-events {
  position: relative;
  padding: 82px 0 95px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 31, 52, .97), rgba(4, 66, 51, .93)),
    url("../assets/duc-giang/event-02.jpg") center 44% / cover;
}

.news-events::before {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
}

.news-events .shell { position: relative; z-index: 1; }

.news-events-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.news-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #91dfc2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-kicker span { width: 32px; height: 2px; background: #67d0aa; }

.news-events-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
}

.news-events-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  color: #d8f5ea;
  font-size: 12px;
  font-weight: 700;
}

.news-events .event-visual { box-shadow: 0 15px 32px rgba(0, 15, 27, .28); }

.site-footer {
  color: var(--white);
  background: #061c33;
}

.footer-inquiry {
  color: var(--navy-deep);
  border-top: 1px solid #c3d7cd;
  background:
    radial-gradient(circle at 84% 18%, rgba(17, 132, 98, .1), transparent 29%),
    #edf4f0;
}

.footer-inquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: 72px;
  padding-block: 46px 49px;
}

.footer-inquiry-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-inquiry-kicker span { width: 34px; height: 2px; background: var(--green); }

.footer-inquiry h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.13;
  text-wrap: balance;
}

.footer-inquiry-copy > p {
  max-width: 760px;
  margin: 15px 0 0;
  color: #536b61;
  font-size: 14px;
  line-height: 1.7;
}

.footer-inquiry-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-phone {
  display: grid;
  gap: 2px;
  padding: 2px 0 13px;
  border-bottom: 1px solid #a9c1b6;
}

.footer-phone small {
  color: #687c73;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-phone strong {
  color: var(--navy-deep);
  font-size: 27px;
  font-weight: 820;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.footer-consult {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 19px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(5, 98, 63, .17);
  font-size: 13px;
  font-weight: 780;
  transition: background-color 200ms cubic-bezier(.23, 1, .32, 1), transform 200ms cubic-bezier(.23, 1, .32, 1);
}

.footer-consult span { font-size: 19px; }
.footer-consult:hover { background: var(--green-dark); transform: translateY(-2px); }
.footer-consult:active { transform: translateY(0); }

.site-footer-main {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background:
    linear-gradient(118deg, rgba(6, 28, 51, .99), rgba(5, 48, 55, .98)),
    #061c33;
}

.site-footer-main::before {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
}

.footer-orbit {
  position: absolute;
  right: -210px;
  bottom: -390px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(103, 208, 170, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(103, 208, 170, .025), 0 0 0 170px rgba(103, 208, 170, .022);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(210px, .64fr) minmax(280px, .86fr);
  gap: 78px;
  padding-bottom: 53px;
}

.footer-logo {
  display: block;
  width: min(245px, 100%);
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
}

.footer-logo img { display: block; width: 100%; height: auto; }

.footer-tagline {
  max-width: 460px;
  margin: 21px 0 28px;
  color: #d6e7e0;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.65;
}

.footer-company {
  margin: 0 0 8px;
  color: #7bd8b5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.footer-brand address {
  max-width: 540px;
  color: #a9beb6;
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.footer-navigation h3,
.footer-contact h3 {
  margin: 3px 0 21px;
  color: #fff;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -.015em;
}

.footer-navigation ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-navigation li { border-bottom: 1px solid rgba(255, 255, 255, .11); }

.footer-navigation a {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #b9cdc5;
  font-size: 12px;
  font-weight: 620;
  transition: color 180ms cubic-bezier(.23, 1, .32, 1), padding-left 180ms cubic-bezier(.23, 1, .32, 1);
}

.footer-navigation a span { color: #64cca5; }
.footer-navigation a:hover { padding-left: 4px; color: #fff; }

.footer-contact-list { display: grid; gap: 18px; }

.footer-contact-list a {
  display: grid;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-contact-list small {
  color: #7bd8b5;
  font-size: 9px;
  font-weight: 770;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-contact-list strong {
  color: #e9f4f0;
  font-size: 14px;
  font-weight: 690;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-contact-list a:first-child strong {
  font-size: 22px;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: #b9cdc5;
  font-size: 12px;
  font-weight: 650;
  transition: color 180ms cubic-bezier(.23, 1, .32, 1);
}

.footer-facebook span { color: #64cca5; }
.footer-facebook:hover { color: #fff; }

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: #829b91;
  font-size: 10px;
  font-weight: 620;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bcd2c9;
  transition: color 180ms cubic-bezier(.23, 1, .32, 1);
}

.footer-bottom a span { color: #65cca6; font-size: 16px; }
.footer-bottom a:hover { color: #fff; }
.footer-consult:focus-visible,
.footer-phone:focus-visible,
.footer-navigation a:focus-visible,
.footer-contact a:focus-visible,
.footer-bottom a:focus-visible { outline: 2px solid #8de0c1; outline-offset: 4px; }

@media (max-width: 1180px) {
  .shell { width: min(100% - 32px, 1080px); }
  .utility-email { display: none; }
  .main-inner { gap: 20px; }
  .brand { flex-basis: 160px; }
  .brand img { width: 160px; height: 58px; }
  .desktop-menu > li > a { padding-inline: 10px; font-size: 12px; }
  .menu-parent > a { padding-right: 24px !important; }
  .menu-parent > a::before { right: 9px; }
  .consultation-button { padding-inline: 15px; font-size: 13px; }
  .training-menu { width: 680px; grid-template-columns: 220px 1fr; }
  .introduction-inner { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 48px; }
  .introduction-content h2 { font-size: 30px; }
  .program-heading { max-width: 760px; }
  .program-jump { flex-wrap: wrap; }
  .program-card { flex-basis: calc((100% - 32px) / 3); }
}

@media (max-width: 900px) {
  .utility-bar { min-height: 48px; }
  .utility-inner { min-height: 48px; }
  .header-search { width: min(42vw, 260px); }
  .main-inner { min-height: 76px; justify-content: space-between; }
  .brand img { height: 54px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { display: none; }
  .consultation-button { margin-left: 0; }
  body.menu-open { overflow: hidden; }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(4, 24, 43, .66);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms cubic-bezier(.23, 1, .32, 1), visibility 180ms;
  }

  .mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: flex;
    width: min(88vw, 420px);
    height: 100dvh;
    flex-direction: column;
    background: #f8faf9;
    box-shadow: -24px 0 60px rgba(4, 24, 43, .25);
    transform: translateX(104%);
    visibility: hidden;
    transition: transform 240ms cubic-bezier(.23, 1, .32, 1), visibility 240ms;
  }

  .mobile-offcanvas.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .offcanvas-head {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .offcanvas-brand img {
    display: block;
    width: 154px;
    height: 54px;
    object-fit: contain;
  }

  .offcanvas-close {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
  }

  .offcanvas-close span {
    position: absolute;
    top: 20px;
    left: 11px;
    width: 19px;
    height: 2px;
    background: var(--navy);
  }

  .offcanvas-close span:first-child { transform: rotate(45deg); }
  .offcanvas-close span:last-child { transform: rotate(-45deg); }

  .mobile-search {
    position: relative;
    margin: 18px 18px 8px;
  }

  .mobile-search input {
    width: 100%;
    height: 46px;
    padding: 0 48px 0 15px;
    border: 1px solid #d5e0dc;
    border-radius: 7px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
  }

  .mobile-search input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(8, 118, 79, .1); }

  .mobile-search button {
    position: absolute;
    top: 2px;
    right: 3px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 0;
    background: transparent;
  }

  .mobile-search svg { width: 100%; height: 100%; fill: var(--navy); }

  .slinky-menu {
    position: relative;
    flex: 1;
    overflow: hidden;
  }

  .slinky-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 13px 18px 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms cubic-bezier(.23, 1, .32, 1), opacity 180ms cubic-bezier(.23, 1, .32, 1);
  }

  .slinky-panel.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .slinky-panel.is-behind {
    opacity: .2;
    transform: translateX(-24%);
  }

  .slinky-label {
    padding: 13px 3px 9px;
    color: #648073;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .slinky-list { display: grid; }

  .slinky-list > a,
  .slinky-list > button {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 3px;
    border: 0;
    border-bottom: 1px solid #dce5e1;
    background: transparent;
    color: var(--navy-deep);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }

  .slinky-list > button > span:last-child {
    color: var(--green);
    font-size: 28px;
    font-weight: 400;
  }

  .numbered-list > a { justify-content: flex-start; font-size: 14px; }

  .menu-number {
    flex: 0 0 25px;
    color: var(--green);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
  }

  .slinky-back {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green);
    font-size: 13px;
    font-weight: 750;
  }

  .slinky-back span { font-size: 23px; font-weight: 400; }

  .offcanvas-contact {
    display: grid;
    gap: 4px;
    padding: 16px 18px 19px;
    color: var(--white);
    background: var(--navy);
  }

  .offcanvas-contact span { color: #bad4c9; font-size: 11px; font-weight: 650; text-transform: uppercase; }
  .offcanvas-contact a { font-size: 17px; font-weight: 800; }
  .course-hero { padding: 0 0 62px; }
  .course-banner { border-radius: 0; }
  .introduction-inner { grid-template-columns: 1fr; gap: 42px; padding-block: 58px 54px; }
  .media-frame { max-width: 680px; margin-inline: auto; }
  .media-signature { max-width: 680px; margin-inline: auto; margin-top: 18px; }
  .introduction-content { max-width: 680px; margin-inline: auto; }
  .program-directory { padding: 68px 0 80px; }
  .program-heading-note { max-width: 620px; }
  .program-card { flex-basis: calc((100% - 16px) / 2); }
  .partner-voices { padding: 70px 0 66px; }
  .partner-voices-heading { grid-template-columns: 1fr; gap: 15px; }
  .partner-voices-heading > p { max-width: 650px; }
  .partner-voice-card { grid-template-columns: minmax(270px, 38%) minmax(0, 1fr); }
  .partner-voice-content { padding: 44px 38px 40px; }
  .partner-selector-item { grid-template-columns: 46px minmax(0, 1fr); padding-inline: 11px; }
  .partner-avatar { width: 43px; height: 43px; }
  .client-sectors { padding: 68px 0 78px; }
  .client-sectors-heading { grid-template-columns: 1fr; gap: 15px; }
  .client-sectors-heading > p { max-width: 650px; }
  .client-sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-visuals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-events { padding: 67px 0 76px; }
}

@media (max-width: 640px) {
  .shell { width: calc(100% - 24px); }
  .utility-inner { gap: 12px; }
  .utility-link { font-size: 12px; }
  .header-search { display: none; }
  .social-links { gap: 6px; }
  .social-icon { width: 27px; height: 27px; font-size: 18px; }
  .brand, .brand img { width: 142px; flex-basis: 142px; }
  .consultation-button { display: none; }
  .course-banner { border-radius: 0; }
  .course-banner img {
    height: clamp(220px, 60vw, 300px);
    min-height: 0;
    object-position: 44% center;
  }
  .bsa-introduction { min-height: auto; }
  .introduction-inner { padding-block: 52px; }
  .media-frame { aspect-ratio: 1.16 / 1; border-radius: 14px; }
  .media-frame img { object-position: center; }
  .media-play { width: 60px; height: 60px; }
  .media-caption { right: 25px; bottom: 24px; left: 25px; display: grid; }
  .media-caption strong { font-size: 17px; text-align: left; }
  .introduction-content h2 { font-size: 26px; }
  .introduction-content h2 br { display: none; }
  .mission-statement { padding-right: 17px; padding-left: 45px; }
  .leader-strip { margin-top: 20px; }
  .program-directory { padding: 46px 0 58px; }
  .program-heading { margin-bottom: 24px; }
  .program-heading h2 { font-size: 31px; }
  .program-heading h2 br { display: none; }
  .program-heading-note { padding-left: 17px; }
  .program-jump {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-right: -12px;
    margin-left: -12px;
    padding-inline: 12px;
    border: 0;
    scrollbar-width: none;
  }
  .program-jump::-webkit-scrollbar { display: none; }
  .program-jump button,
  .program-jump button:nth-child(-n+3) {
    flex: 0 0 155px;
    min-height: 52px;
    border: 1px solid #b8cbc2;
    border-right: 0;
    border-bottom: 1px solid #b8cbc2;
  }
  .program-jump button:last-child { border-right: 1px solid #b8cbc2; }
  .program-carousel { padding-top: 20px; }
  .program-carousel + .program-carousel { margin-top: 34px; padding-top: 30px; }
  .program-carousel-head { align-items: flex-start; }
  .program-carousel-head p { display: grid; gap: 3px; }
  .program-carousel-head p > span { font-size: 23px; }
  .program-carousel-head strong { max-width: 230px; font-size: 16px; line-height: 1.35; }
  .program-carousel-arrow { width: 38px; height: 38px; }
  .program-carousel-viewport { overflow: visible; margin-right: -12px; padding-right: 12px; }
  .program-card { flex: 0 0 min(82vw, 330px); }
  .program-card-body { min-height: 215px; padding: 15px 16px 14px; }
  .program-card-body h3 { min-height: 0; font-size: 16px; }
  .partner-voices { padding: 55px 0 50px; }
  .partner-voices-pattern { right: -130px; bottom: -80px; width: 640px; opacity: .33; }
  .partner-voices-heading { margin-bottom: 23px; }
  .partner-voices-heading h2 { font-size: 32px; }
  .partner-voices-heading > p { font-size: 13px; }
  .partner-voice-card { grid-template-columns: 1fr; min-height: 0; border-radius: 14px; }
  .partner-voice-person { min-height: 330px; }
  .partner-person-caption { right: 22px; bottom: 21px; left: 22px; }
  .partner-person-caption strong { font-size: 22px; }
  .partner-voice-content { min-height: 365px; padding: 38px 23px 30px; }
  .partner-quote-mark { top: 19px; right: 20px; font-size: 105px; }
  .partner-voice-content blockquote { margin: 20px 0 31px; font-size: 20px; }
  .partner-voice-meta { align-items: start; flex-direction: column; gap: 18px; }
  .partner-voice-progress { width: 100%; }
  .partner-selector {
    display: flex;
    overflow-x: auto;
    margin-right: -12px;
    padding-right: 12px;
    border-bottom: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .partner-selector::-webkit-scrollbar { display: none; }
  .partner-selector-item { flex: 0 0 190px; border-bottom: 1px solid #bacac3; scroll-snap-align: start; }
  .partner-selector-item:last-child { border-right: 1px solid #bacac3; }
  .partner-prototype-note { text-align: left; }
  .client-sectors { padding: 54px 0 62px; }
  .client-sectors-heading { margin-bottom: 24px; }
  .client-sectors-heading h2 { font-size: 32px; }
  .client-sectors-heading > p { font-size: 13px; }
  .client-sector-grid {
    display: flex;
    overflow-x: auto;
    margin-inline: -12px;
    padding: 0 12px 12px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .client-sector-grid::-webkit-scrollbar { display: none; }
  .client-sector-group { flex: 0 0 min(88vw, 356px); border-radius: 15px; scroll-snap-align: start; }
  .client-sector-group-head { min-height: 64px; }
  .client-logo-item { min-height: 82px; padding: 11px 9px; }
  .client-logo-item img { max-width: 74px; max-height: 49px; }
  .client-logo-item.client-logo-wide img { max-width: 91px; }
  .event-visuals {
    display: flex;
    overflow-x: auto;
    margin-inline: -12px;
    padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .event-visuals::-webkit-scrollbar { display: none; }
  .event-visual { flex: 0 0 82vw; scroll-snap-align: start; }
  .news-events { padding: 55px 0 64px; }
  .news-events-heading { align-items: start; flex-direction: column; gap: 15px; }
  .news-events-heading h2 { font-size: 31px; }
}

@media (max-width: 900px) {
  .footer-inquiry-inner { grid-template-columns: 1fr; gap: 29px; padding-block: 40px 44px; }
  .footer-inquiry-actions { grid-template-columns: minmax(220px, .8fr) minmax(260px, 1fr); align-items: end; }
  .footer-grid { grid-template-columns: 1.1fr .9fr; gap: 46px 54px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { margin-bottom: 20px; }
}

@media (max-width: 640px) {
  .footer-inquiry-inner { gap: 25px; padding-block: 35px 39px; }
  .footer-inquiry h2 { font-size: 27px; line-height: 1.18; }
  .footer-inquiry-copy > p { margin-top: 13px; font-size: 13px; }
  .footer-inquiry-actions { grid-template-columns: 1fr; gap: 12px; }
  .footer-phone strong { font-size: 25px; }
  .site-footer-main { padding-top: 43px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; padding-bottom: 39px; }
  .footer-brand { grid-column: auto; }
  .footer-logo { width: 210px; }
  .footer-tagline { margin-block: 18px 23px; font-size: 14px; }
  .footer-navigation h3,
  .footer-contact h3 { margin-bottom: 15px; }
  .footer-bottom { min-height: 86px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; padding-block: 18px; }
}
