@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --blue: #304b98;
  --blue-dark: #1d2d5d;
  --orange: #ef4d25;
  --accent: #ef4d25;
  --font-site: "Arimo", Arial, Helvetica, sans-serif;
  --ink: #172033;
  --muted: #687386;
  --line: #dce2ec;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-site);
  line-height: 1.6;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.fa-solid {
  flex: 0 0 auto;
  font-size: 1.15em;
  line-height: 1;
}

.button .fa-solid,
button.button .fa-solid,
.calendar-button .fa-solid,
.footer-certified .fa-solid {
  font-size: 1.2em;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #304b98;
}

.site-header .container {
  width: min(1120px, calc(100% - 40px));
  max-width: 1120px;
  padding: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 104px;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 40px 10px 35px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover {
  color: #ffd8cf;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(239, 77, 37, 0.18);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 29px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(239, 77, 37, 0.3);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.calendar-button {
  --btn-front: var(--orange);
  --btn-edge-mid: #c93a1b;
  --btn-edge-dark: #8f2714;
  --btn-text: var(--white);
  --btn-glow: rgba(239, 77, 37, 0.34);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px 2px;
  border: 0;
  border-radius: 12px;
  color: var(--btn-text);
  background: linear-gradient(to left, var(--btn-edge-dark) 0%, var(--btn-edge-mid) 8%, var(--btn-edge-mid) 92%, var(--btn-edge-dark) 100%);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
  outline-offset: 4px;
  cursor: pointer;
  transition: filter 250ms ease, box-shadow 250ms ease;
  user-select: none;
  touch-action: manipulation;
}

.calendar-button::before,
.calendar-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
}

.calendar-button::before {
  z-index: -2;
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.calendar-button::after {
  z-index: -1;
  background: var(--btn-front);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.calendar-button > * {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.calendar-button:hover {
  color: var(--btn-text);
  filter: brightness(110%);
  box-shadow: 0 16px 32px var(--btn-glow);
  text-decoration: none;
}

.calendar-button:hover::after,
.calendar-button:hover > * {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.calendar-button:hover::before {
  transform: translateY(5px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.calendar-button:active::after,
.calendar-button:active > * {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.calendar-button:active::before {
  transform: translateY(1px);
  transition: transform 34ms;
}

.calendar-button:focus:not(:focus-visible) {
  outline: none;
}

.nav-toggle {
  --btn-front: var(--orange);
  --btn-edge-mid: #c93a1b;
  --btn-edge-dark: #8f2714;
  --btn-glow: rgba(239, 77, 37, 0.34);
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(to left, var(--btn-edge-dark) 0%, var(--btn-edge-mid) 8%, var(--btn-edge-mid) 92%, var(--btn-edge-dark) 100%);
  cursor: pointer;
  isolation: isolate;
  outline-offset: 4px;
  transition: filter 250ms ease, box-shadow 250ms ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
}

.nav-toggle::before {
  z-index: -2;
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.nav-toggle::after {
  z-index: -1;
  background: var(--btn-front);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.nav-toggle .fa-solid {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  color: var(--white);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  filter: brightness(110%);
  box-shadow: 0 16px 32px var(--btn-glow);
}

.nav-toggle:hover::after,
.nav-toggle:hover .fa-solid,
.nav-toggle[aria-expanded="true"]::after,
.nav-toggle[aria-expanded="true"] .fa-solid {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.nav-toggle:hover::before,
.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(5px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.nav-toggle:active::after,
.nav-toggle:active .fa-solid {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.nav-toggle:active::before {
  transform: translateY(1px);
  transition: transform 34ms;
}

.nav-toggle:focus:not(:focus-visible) {
  outline: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 850px;
  color: var(--white);
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--blue-dark);
  transition: opacity 700ms ease, visibility 700ms ease, transform 1600ms ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide::after,
.page-hero::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(239, 77, 37, 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  padding: 0 0 300px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: calc(0.92rem + 2px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.1;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: inherit;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  max-width: 760px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button.button {
  --btn-front: var(--orange);
  --btn-edge-mid: #c93a1b;
  --btn-edge-dark: #8f2714;
  --btn-text: var(--white);
  --btn-glow: rgba(239, 77, 37, 0.34);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px 14px;
  border: 0;
  border-radius: 12px;
  color: var(--btn-text);
  background: linear-gradient(to left, var(--btn-edge-dark) 0%, var(--btn-edge-mid) 8%, var(--btn-edge-mid) 92%, var(--btn-edge-dark) 100%);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  outline-offset: 4px;
  transition: filter 250ms ease, box-shadow 250ms ease;
  user-select: none;
  touch-action: manipulation;
}

.button::before,
.button::after,
button.button::before,
button.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
}

.button::before,
button.button::before {
  z-index: -2;
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button::after,
button.button::after {
  z-index: -1;
  background: var(--btn-front);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button > *,
button.button > * {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button.secondary {
  --btn-front: var(--white);
  --btn-edge-mid: #d7deec;
  --btn-edge-dark: #96a4bf;
  --btn-text: var(--blue-dark);
  --btn-glow: rgba(255, 255, 255, 0.42);
}

.button.outline {
  --btn-front: var(--orange);
  --btn-edge-mid: #c93a1b;
  --btn-edge-dark: #8f2714;
  --btn-text: var(--white);
  --btn-glow: rgba(239, 77, 37, 0.34);
}

.button:hover,
.button.outline:hover {
  color: var(--btn-text);
  filter: brightness(110%);
  text-decoration: none;
  box-shadow: 0 16px 32px var(--btn-glow);
}

.button:hover::after,
.button:hover > *,
button.button:hover::after,
button.button:hover > * {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:hover::before,
button.button:hover::before {
  transform: translateY(5px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:active::after,
.button:active > *,
button.button:active::after,
button.button:active > * {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button:active::before,
button.button:active::before {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button:focus:not(:focus-visible),
button.button:focus:not(:focus-visible) {
  outline: none;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.services-support-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 75, 152, 0.98) 0%, rgba(22, 38, 86, 0.98) 58%, rgba(239, 77, 37, 0.94) 145%),
    url("../images/7568675867.png") center / cover;
}

.services-support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(239, 77, 37, 0.14));
  pointer-events: none;
}

.services-support-section .container {
  position: relative;
  z-index: 1;
}

.services-support-section h2,
.services-support-section .section-heading div > p:not(.eyebrow) {
  color: var(--white);
}

.services-support-section .section-heading div > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
}

.services-support-section .card {
  color: var(--ink);
  background: var(--white);
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 24px;
  margin-bottom: 34px;
}

.section-heading-stacked {
  display: block;
}

.section-heading-stacked > div {
  max-width: 760px;
}

.section-heading-stacked h2 {
  white-space: nowrap;
}

.section-heading-stacked div > p:not(.eyebrow) {
  margin-top: 14px;
}

.section-heading > p,
.section-heading div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 8px 0 0;
  padding-left: 0;
  border-left: 0;
  color: var(--blue-dark);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.55;
}

.section-heading > p {
  flex: 0 0 100%;
}

.grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

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

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

.card,
.news-card,
.resource-card,
.team-card,
.contact-card,
.event-row {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card::before,
.news-card::before,
.resource-card::before,
.team-card::before,
.contact-card::before,
.event-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--orange);
  z-index: 1;
}

.news-card:has(img)::before,
.team-card:has(img)::before {
  display: none;
}

.card:hover,
.news-card:hover,
.resource-card:hover,
.team-card:hover,
.contact-card:hover,
.event-row:hover {
  border-color: rgba(48, 75, 152, 0.22);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.11);
  transform: translateY(-2px);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.card-button {
  align-self: flex-start;
  margin-top: 12px;
}

.card > .button:last-child {
  margin-top: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.video-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(4, 15, 43, 0.22);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 5px solid var(--orange);
  aspect-ratio: 16 / 9;
  color: var(--white);
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(4, 15, 43, 0.52));
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--orange);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: transform 240ms cubic-bezier(0.3, 0.7, 0.4, 1.5), box-shadow 240ms ease;
}

.play-button .fa-solid {
  margin-left: 4px;
  font-size: 1.75rem;
}

.video-thumb:hover img {
  filter: brightness(1.08);
  transform: scale(1.05);
}

.video-thumb:hover .play-button {
  box-shadow: 0 18px 42px rgba(239, 77, 37, 0.34);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-body {
  padding: 22px 24px 26px;
}

.video-card-body .eyebrow {
  margin-bottom: 8px;
}

.video-card-body h3,
.video-card-body p {
  color: var(--ink);
}

.video-card-body h3 {
  margin-bottom: 6px;
}

.video-card-body p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 15, 43, 0.82);
  backdrop-filter: blur(8px);
}

.video-lightbox.is-open {
  display: flex;
}

body.has-video-lightbox {
  overflow: hidden;
}

.video-lightbox-panel {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-lightbox iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(4, 15, 43, 0.34);
  cursor: pointer;
}

.video-lightbox-close .fa-solid {
  font-size: 1.2rem;
}

.icon-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.icon-list li {
  padding-left: 26px;
  background: linear-gradient(var(--orange), var(--orange)) 0 0.72em / 10px 10px no-repeat;
}

.image-panel {
  min-height: 360px;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  background: url("../images/iStock-1369508585.jpg") center / cover;
  box-shadow: var(--shadow);
}

.photo-panel {
  width: 100%;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-preview {
  background: var(--white);
}

.about-modern {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.about-copy {
  max-width: 590px;
}

.about-copy .lead {
  max-width: none;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 600;
}

.about-copy .button {
  margin-top: 26px;
}

.about-photo-modern {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-detail-grid {
  margin-top: 32px;
}

.about-detail-card {
  min-height: 245px;
}

.about-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.about-card-heading .fa-solid,
.about-card-heading .about-mark {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
  color: var(--orange);
  font-size: 2rem;
  object-fit: contain;
}

.about-card-heading h3 {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.service-tiles {
  margin-top: -168px;
  position: relative;
  z-index: 3;
  padding-bottom: 36px;
}

.service-tile {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.18);
  text-decoration: none;
}

.service-tile::before,
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-tile::before {
  background-image: var(--tile-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.tile-certification {
  --tile-image: url("../images/young-cafe-owner.jpg_s1024x1024wisk20c2uPyXbkFsgTn8ME06sbwru3qZxAU1RKAxToamzfivkg.jpg");
}

.tile-assessment {
  --tile-image: url("../images/iStock-1354244046-1-e1667585843357.jpg");
}

.tile-consultation {
  --tile-image: url("../images/iStock-1306107221-1.jpg");
}

.tile-programs {
  --tile-image: url("../images/iStock-1245229656-1-e1667585797209.jpg");
}

.service-tile::after {
  background:
    linear-gradient(180deg, rgba(48, 75, 152, 0.5), rgba(15, 31, 77, 0.62)),
    rgba(48, 75, 152, 0.42);
}

.service-tile:hover::before {
  transform: scale(1.05);
}

.service-tile:hover {
  color: var(--white);
  text-decoration: none;
}

.service-tile-content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  transform: translateY(0) scale(1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.service-tile:hover .service-tile-content {
  transform: translateY(-8px) scale(1.08);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.service-tile:active .service-tile-content {
  transform: translateY(-2px) scale(1.03);
  transition: transform 34ms;
}

.line-icon,
.service-icon {
  width: auto;
  height: auto;
  color: var(--white);
  font-size: 5.35rem;
  line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.service-tile h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-arrow {
  position: absolute;
  top: 48%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-arrow::before {
  content: "";
  width: 28px;
  height: 28px;
  border: solid rgba(255, 255, 255, 0.92);
  border-width: 0 3px 3px 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-arrow:hover {
  opacity: 1;
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

.hero-arrow.left::before {
  transform: rotate(135deg);
}

.hero-arrow.right::before {
  transform: rotate(-45deg);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 248px;
  z-index: 2;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.hero-dots button.is-active {
  width: 48px;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(239, 77, 37, 0.36);
}

.stat {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: 96px 0;
  color: var(--white);
  background: url("../images/7568675867.png") center / cover;
}

.page-hero .container {
  position: relative;
  max-width: 920px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

.hero h1,
.page-hero h1 {
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.heading-line {
  display: block;
}

.hero .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 15px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
}

.crumbs {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.crumbs a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.crumbs a:hover,
.crumbs a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.crumbs span {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eaf0ff;
  font-weight: 700;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  border-top: 5px solid var(--orange);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card-body {
  padding: 20px;
}

.team-card-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(48, 75, 152, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 9px 18px rgba(48, 75, 152, 0.16);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.social-icons a:hover {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 26px rgba(239, 77, 37, 0.24);
  transform: translateY(-2px);
}

.social-icons .fa-brands {
  font-size: 1.25rem;
}

.news-card {
  overflow: hidden;
}

.news-card img {
  width: 100%;
  border-top: 5px solid var(--orange);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-body {
  padding: 22px;
}

.testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  height: 430px;
  min-height: 430px;
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 31, 66, 0.95), rgba(48, 75, 152, 0.94)),
    url("../images/iStock-863497498-2-1.jpg") center / cover;
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.14);
}

.testimonial-track {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 430px;
}

.testimonial-slide {
  display: none;
  grid-template-columns: 74px minmax(0, 1fr);
  align-content: center;
  gap: 26px;
  height: 100%;
  min-height: 430px;
  padding: 48px 92px;
  animation: testimonialFade 420ms ease;
}

.testimonial-slide.is-active {
  display: grid;
}

.quote-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-size: 1.8rem;
  box-shadow: 0 12px 25px rgba(239, 77, 37, 0.25);
}

.testimonial-slide blockquote {
  margin: 0;
}

.testimonial-slide p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.testimonial-author {
  grid-column: 2;
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

.testimonial-author strong {
  color: var(--white);
  font-size: 1.25rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-arrow.left {
  left: 22px;
}

.testimonial-arrow.right {
  right: 22px;
}

.testimonial-arrow:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-arrow .fa-solid {
  font-size: 1.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dots button {
  width: 32px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(48, 75, 152, 0.22);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-dots button.is-active {
  width: 48px;
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(239, 77, 37, 0.26);
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-event {
  color: var(--white);
  background: var(--orange);
}

.card-meta,
.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-weight: 800;
}

.text-link .fa-solid {
  font-size: 1.08em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filters button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filters button .fa-solid {
  font-size: 1.05em;
}

.filters button.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.event-list {
  display: grid;
  gap: 26px;
}

.event-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
  border-color: rgba(48, 75, 152, 0.14);
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.08);
}

.update-row {
  background: #fbfcff;
}

.update-row .event-date {
  border-left-color: var(--blue);
}

.event-date {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 86px;
  border-left: 4px solid var(--orange);
  color: var(--blue-dark);
  background: #f5f7fb;
  text-transform: uppercase;
}

.event-date span {
  font-size: 0.74rem;
  font-weight: 800;
}

.event-date strong {
  font-size: 2rem;
  line-height: 1;
}

.event-body h3 {
  color: #07183c;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 500;
}

.event-body p {
  max-width: 860px;
}

.event-meta {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.event-actions a span {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.event-actions a .fa-solid {
  font-size: 1.08em;
}

.event-list-actions {
  gap: 12px;
  margin-top: 18px;
}

.event-meta-divider {
  color: var(--muted);
  font-weight: 800;
}

.rsvp-section .split {
  align-items: start;
}

.payment-note {
  display: grid;
  gap: 4px;
  max-width: 430px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
}

.payment-note strong {
  color: var(--blue-dark);
}

.payment-note span {
  color: var(--muted);
}

.registration-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.event-registration-card {
  border-color: rgba(48, 75, 152, 0.2);
  background:
    linear-gradient(180deg, rgba(196, 222, 249, 0.78) 0%, rgba(232, 239, 249, 0.94) 48%, #ffffff 100%);
  box-shadow: 0 20px 48px rgba(23, 32, 51, 0.14);
}

.event-registration-card h2,
.event-registration-card h3,
.event-copy-placeholder h2 {
  margin-bottom: 8px;
}

.event-registration-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.event-registration-card-head .eyebrow {
  margin: 0;
}

.event-registration-card-head strong {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}

.event-registration-meta {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.event-registration-meta span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.event-registration-meta .fa-solid {
  margin-top: 3px;
  color: var(--orange);
}

.event-registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.event-registration-actions .button {
  justify-self: start;
  flex: 0 0 176px;
  width: 176px;
  height: 50px;
  min-height: 50px;
  padding: 0 16px;
  line-height: 1;
}

.event-registration-actions .button::before,
.event-registration-actions .button::after {
  height: 50px;
}

.event-registration-actions .button > * {
  transform: translateY(-4px);
}

.event-registration-actions .button span {
  white-space: nowrap;
}

.event-copy-placeholder {
  align-self: start;
  background: var(--white);
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.event-detail-copy {
  display: grid;
  gap: 22px;
}

.event-detail-copy .contact-card,
.event-flyer-card,
.event-sponsor-card {
  background: var(--white);
}

.event-detail-copy h2,
.event-detail-copy h3,
.event-flyer-card h2 {
  margin-bottom: 10px;
}

.event-detail-copy p:last-child,
.event-detail-copy ul:last-child {
  margin-bottom: 0;
}

.event-detail-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.event-detail-logo {
  display: block;
  width: min(100%, 560px);
  max-height: 190px;
  object-fit: contain;
  object-position: left center;
  margin: 22px 0 0;
  border-radius: 6px;
  background: var(--white);
}

.event-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}

.event-registration-card .event-detail-actions {
  margin: 12px 0 0;
}

.event-detail-sidebar {
  display: grid;
  gap: 22px;
  align-self: start;
  position: sticky;
  top: 128px;
}

.event-flyer-card {
  position: sticky;
  top: 128px;
  padding: 18px;
}

.event-detail-sidebar .event-flyer-card {
  position: static;
}

.event-flyer-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.16);
}

.flyer-lightbox-trigger {
  position: relative;
  display: block;
  border-radius: 6px;
  outline-offset: 4px;
}

.flyer-lightbox-trigger::after {
  content: "\f00e";
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(23, 32, 51, 0.78);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.22);
}

.event-flyer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.event-flyer-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.event-sponsor-card {
  padding: 18px;
}

.event-sponsor-logo {
  display: block;
  width: min(100%, 260px);
  margin: 8px auto 0;
}

.flyer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 15, 43, 0.84);
  backdrop-filter: blur(8px);
}

.flyer-lightbox.is-open {
  display: flex;
}

body.has-flyer-lightbox {
  overflow: hidden;
}

.flyer-lightbox-panel {
  position: relative;
  width: min(100%, 960px);
  max-height: calc(100vh - 56px);
}

.flyer-lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 56px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.flyer-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(4, 15, 43, 0.34);
  cursor: pointer;
}

.compact-grid {
  gap: 14px;
}

.payment-panel {
  padding: 18px;
  border: 1px dashed rgba(48, 75, 152, 0.36);
  border-radius: 8px;
  background: #f8faff;
}

.payment-panel h3 {
  margin-bottom: 8px;
}

.coop-rsvp-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(48, 75, 152, 0.2);
  border-radius: 8px;
  background: #f8faff;
}

.coop-rsvp-panel[hidden] {
  display: none;
}

.coop-rsvp-panel h3 {
  margin: 0;
}

.coop-rsvp-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.coop-rsvp-panel .button {
  justify-self: start;
  margin-top: 4px;
}

.event-price,
.form-message {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.thank-you-section .container {
  max-width: 760px;
}

.thank-you-card {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.thank-you-card > .fa-solid {
  color: var(--orange);
  font-size: 3rem;
}

.thank-you-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.resource-grid {
  align-items: stretch;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  padding: 26px;
}

.resource-card h3 {
  margin: 0;
}

.resource-card p {
  margin: 0;
}

.resource-card .button .fa-solid,
.resource-feature .button .fa-solid {
  font-size: 0.95em;
}

.resource-card .button:last-child,
.resource-card .card-button {
  align-self: flex-start;
  margin-top: auto;
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: stretch;
}

.resource-feature-panel,
.resource-feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.resource-feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 360px;
  padding: 34px;
  color: var(--white);
  background: var(--orange);
}

.resource-feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: rgba(255, 255, 255, 0.72);
}

.resource-feature-panel img {
  width: min(280px, 100%);
  margin: 0 auto 8px;
  border-radius: 4px;
}

.resource-feature-panel h3,
.resource-feature-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
}

.resource-feature-panel .button {
  --btn-front: var(--white);
  --btn-edge-mid: #d7deec;
  --btn-edge-dark: #96a4bf;
  --btn-text: var(--orange);
  --btn-glow: rgba(255, 255, 255, 0.36);
  align-self: flex-start;
  margin-top: auto;
}

.resource-feature-image {
  min-height: 360px;
}

.resource-feature-image::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 5px;
  background: var(--orange);
}

.resource-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.resource-card-feature {
  min-height: 320px;
}

.resource-card-feature img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.resource-card-feature.image-only {
  padding: 0;
}

.resource-card-feature.image-only::before {
  z-index: 2;
}

.resource-card-feature.image-only img {
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.required-label::after,
.form-check span::after {
  content: " *";
  color: var(--orange);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(48, 75, 152, 0.16);
  border-color: var(--blue);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.application-form .form-full,
.application-form .application-upload-grid {
  grid-column: 1 / -1;
}

.application-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
}

.form-check input {
  width: auto;
  margin-top: 4px;
}

.application-form .button {
  justify-self: start;
  margin-top: 12px;
}

.policy-card {
  padding: 30px;
}

.policy-card h3 {
  margin-top: 26px;
  font-size: 1.25rem;
}

.policy-card .button {
  margin-top: 14px;
}

.cta-band {
  position: relative;
  isolation: isolate;
  padding: 74px 0;
  color: var(--white);
  background: url("../images/iStock-1178861746.jpg") center / cover;
}

.page-hero .container,
.cta-band .container {
  position: relative;
  z-index: 1;
}

.footer-band {
  position: relative;
  padding: 72px 0 58px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 31, 66, 0.92), rgba(48, 75, 152, 0.96)),
    url("../images/3655656.jpg") center / cover;
  border-top: 7px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.72fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
}

.footer-band a {
  color: var(--white);
}

.footer-band h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.55rem;
}

.footer-band h3 {
  color: var(--white);
}

.footer-about p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.92);
}

.footer-lead {
  max-width: 390px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin: 22px 0 26px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.footer-social a:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-links-wrap,
.footer-news-wrap {
  padding-top: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--orange);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-contact h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact .fa-solid {
  width: 18px;
  margin-top: 4px;
  color: var(--orange);
}

.footer-certified {
  --btn-front: var(--white);
  --btn-edge-mid: #d7deec;
  --btn-edge-dark: #96a4bf;
  --btn-text: var(--orange);
  --btn-glow: rgba(255, 255, 255, 0.42);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 14px;
  border-radius: 12px;
  color: var(--btn-text);
  background: linear-gradient(to left, var(--btn-edge-dark) 0%, var(--btn-edge-mid) 8%, var(--btn-edge-mid) 92%, var(--btn-edge-dark) 100%);
  font-weight: 900;
  text-transform: uppercase;
  isolation: isolate;
  outline-offset: 4px;
  transition: filter 250ms ease, box-shadow 250ms ease;
  user-select: none;
  touch-action: manipulation;
}

.footer-certified::before,
.footer-certified::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
}

.footer-certified::before {
  z-index: -2;
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.footer-certified::after {
  z-index: -1;
  background: var(--btn-front);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.footer-certified > * {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.footer-band .footer-certified {
  color: var(--btn-text);
}

.footer-certified:hover {
  color: var(--btn-text);
  filter: brightness(110%);
  box-shadow: 0 16px 32px var(--btn-glow);
  text-decoration: none;
}

.footer-certified:hover::after,
.footer-certified:hover > * {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.footer-certified:hover::before {
  transform: translateY(5px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.footer-certified:active::after,
.footer-certified:active > * {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.footer-certified:active::before {
  transform: translateY(1px);
  transition: transform 34ms;
}

.footer-certified:focus:not(:focus-visible) {
  outline: none;
}

.footer-news-grid {
  display: grid;
  gap: 14px;
}

.footer-news-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-news-card img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-news-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-news-meta {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-news-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-transform: none;
}

.footer-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-read-more:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-read-more .fa-solid {
  font-size: 1.08em;
}

.copyright {
  padding: 14px 20px;
  color: var(--white);
  background: var(--orange);
  text-align: center;
  font-size: 0.9rem;
}

.copyright a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-top: 5px solid var(--blue);
    border-radius: 8px;
    background: var(--orange);
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 6px;
    color: var(--white);
    text-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--white);
    background: rgba(48, 75, 152, 0.26);
    text-shadow: none;
  }

  .site-nav a::after {
    display: none;
  }

  .calendar-button {
    display: none;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .application-form,
  .application-upload-grid,
  .about-modern,
  .split,
  .registration-card-grid,
  .event-detail-layout,
  .resource-feature,
  .video-grid,
  .footer-grid,
  .footer-news-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-sidebar,
  .event-flyer-card {
    position: static;
  }

  .resource-feature-panel,
  .resource-feature-image,
  .resource-feature-image img {
    min-height: 300px;
  }

  .about-modern {
    gap: 32px;
  }

  .section-heading .filters {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-dots {
    bottom: 214px;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .topbar-inner,
  .section-heading {
    display: block;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 54px 0 170px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.6rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  .about-photo-modern {
    aspect-ratio: 4 / 3;
  }

  .about-detail-card {
    min-height: auto;
  }

  .section-heading-stacked h2 {
    white-space: normal;
  }

  .footer-news-card {
    grid-template-columns: 1fr;
  }

  .footer-news-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .testimonial-shell,
  .testimonial-track {
    height: auto;
    min-height: 560px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    min-height: 560px;
    padding: 34px 28px 82px;
  }

  .testimonial-author {
    grid-column: auto;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .testimonial-arrow:hover {
    transform: scale(1.04);
  }

  .testimonial-arrow.left {
    left: 28px;
  }

  .testimonial-arrow.right {
    right: 28px;
  }

  .hero-dots {
    bottom: 126px;
  }

  .video-lightbox {
    padding: 18px;
  }

  .video-lightbox-close {
    top: -54px;
    right: 0;
  }

  .section {
    padding: 56px 0;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-tiles {
    margin-top: -92px;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .event-date {
    width: 82px;
  }

}
