:root {
  --school-navy: #103b57;
  --school-navy-dark: #082c42;
  --school-teal: #087c78;
  --school-teal-dark: #05615f;
  --school-gold: #f1b82d;
  --school-ink: #18313f;
  --school-muted: #61727c;
  --school-line: #dbe5e8;
  --school-soft: #eef6f5;
  --school-sand: #fff8e6;
  --school-white: #ffffff;
  --school-shadow: 0 18px 45px rgba(10, 49, 70, .11);
  --school-radius: 22px;
  --school-shell: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--school-ink);
  background: #f7fafb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--school-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--school-navy);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--school-gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .65em;
  color: var(--school-navy-dark);
  font-weight: 750;
  line-height: 1.18;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p {
  margin: 0 0 1.1em;
}

.site-shell {
  width: min(100% - 32px, var(--school-shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--school-navy-dark);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.utility-bar {
  color: #dcebed;
  background: var(--school-navy-dark);
  font-size: 13px;
}

.utility-inner,
.utility-left,
.utility-actions {
  display: flex;
  align-items: center;
}

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

.utility-left,
.utility-actions {
  gap: 22px;
}

.utility-bar a,
.utility-bar button {
  color: inherit;
  text-decoration: none;
}

.utility-bar i {
  margin-right: 6px;
  color: var(--school-gold);
}

.vision-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch .mod-languages,
.language-switch ul {
  margin: 0;
}

.language-switch ul {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.language-switch li {
  display: block;
}

.language-switch a {
  display: grid;
  min-width: 31px;
  height: 28px;
  place-items: center;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-switch .lang-active a,
.language-switch a:hover {
  color: var(--school-navy-dark);
  background: var(--school-gold);
  border-color: var(--school-gold);
}

.brand-bar {
  position: relative;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--school-line);
}

.brand-inner {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.school-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.school-logo {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 8px 15px rgba(8, 68, 78, .18));
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-kicker {
  margin-bottom: 4px;
  color: var(--school-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--school-navy-dark);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

.brand-copy > span:last-child {
  margin-top: 4px;
  color: var(--school-muted);
  font-size: 13px;
}

.header-contact,
.header-contact > a {
  display: flex;
  align-items: center;
}

.header-contact {
  flex: 0 1 410px;
  justify-content: flex-end;
  gap: 16px;
}

.header-contact > a {
  gap: 13px;
  color: var(--school-ink);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.header-contact small {
  display: block;
  margin-bottom: 2px;
  color: var(--school-teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-icon,
.search-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--school-teal);
  border: 0;
  border-radius: 50%;
}

.search-toggle {
  cursor: pointer;
}

.search-toggle:hover {
  background: var(--school-navy);
}

.header-search {
  padding-bottom: 18px;
}

.header-search .search,
.header-search form {
  display: flex;
  max-width: 560px;
  margin-left: auto;
}

.header-search input[type="search"],
.header-search input[type="text"] {
  width: 100%;
  height: 46px;
  padding: 0 15px;
  color: var(--school-ink);
  background: #f3f7f8;
  border: 1px solid var(--school-line);
  border-radius: 12px;
}

.navigation-bar {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #fff;
  background: var(--school-teal);
  box-shadow: 0 8px 26px rgba(4, 64, 73, .15);
}

.navigation-inner {
  min-height: 58px;
}

.main-navigation .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation .menu > li {
  position: relative;
}

.main-navigation .menu a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.main-navigation .menu > li.active > a,
.main-navigation .menu > li:hover > a,
.main-navigation .menu > li:focus-within > a {
  color: var(--school-navy-dark);
  background: var(--school-gold);
}

.main-navigation .parent > a::after {
  margin-left: 7px;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
}

.main-navigation .nav-child {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  display: block;
  visibility: hidden;
  width: 260px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--school-shadow);
  list-style: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.main-navigation li:hover > .nav-child,
.main-navigation li:focus-within > .nav-child {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-navigation .nav-child a {
  min-height: 0;
  padding: 11px 12px;
  color: var(--school-ink);
  border-radius: 8px;
  font-size: 14px;
}

.main-navigation .nav-child li.active > a,
.main-navigation .nav-child a:hover,
.main-navigation .nav-child a:focus {
  color: var(--school-teal-dark);
  background: var(--school-soft);
}

.menu-toggle,
.submenu-toggle {
  display: none;
}

.site-main {
  min-height: 55vh;
  padding: 34px 0 64px;
}

.site-home .site-main {
  padding-top: 26px;
}

.content-shell {
  min-width: 0;
}

.component-area,
.item-page,
.blog,
.blog-featured {
  min-width: 0;
}

.item-page,
.blog,
.category-list,
.contact-category {
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: var(--school-radius);
  box-shadow: 0 8px 30px rgba(16, 59, 87, .07);
}

.site-home .item-page,
.site-home .blog-featured {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-header h1,
.page-header h2,
.item-page > .page-header h2 {
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--school-line);
}

.breadcrumbs-wrap {
  margin-bottom: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--school-muted);
  background: transparent;
  list-style: none;
  font-size: 13px;
}

.breadcrumb li + li::before {
  margin-right: 7px;
  color: #9babb2;
  content: "/";
}

.breadcrumb .divider,
.breadcrumb .icon-location {
  display: none;
}

.alert {
  margin-bottom: 20px;
  padding: 15px 18px;
  background: var(--school-sand);
  border: 1px solid #efd17e;
  border-radius: 12px;
}

.school-home {
  display: grid;
  gap: 28px;
}

.school-hero {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 70px);
  color: #fff;
  background-color: var(--school-navy);
  background-position: center;
  background-size: cover;
  border-radius: 28px;
  box-shadow: var(--school-shadow);
  isolation: isolate;
}

.school-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 38, 57, .92) 0%, rgba(5, 54, 66, .67) 52%, rgba(5, 54, 66, .12) 100%);
}

.school-hero-content {
  max-width: 740px;
}

.school-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--school-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.school-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -.025em;
}

.school-hero p {
  max-width: 650px;
  color: #e5f0f1;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.school-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.school-button,
.school-button:visited {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 19px;
  color: var(--school-navy-dark);
  background: var(--school-gold);
  border: 2px solid var(--school-gold);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.school-button:hover,
.school-button:focus {
  color: var(--school-navy-dark);
  background: #ffd05b;
  transform: translateY(-2px);
}

.school-button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .55);
}

.school-button.secondary:hover {
  color: var(--school-navy-dark);
  background: #fff;
}

.school-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(16, 59, 87, .06);
}

.stat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--school-teal), var(--school-gold));
}

.stat-card strong {
  display: block;
  color: var(--school-navy-dark);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--school-muted);
  font-size: 14px;
}

.school-section {
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: var(--school-radius);
}

.school-section.soft {
  background: var(--school-soft);
  border-color: transparent;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--school-muted);
  font-size: 17px;
}

.school-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.school-link-card {
  position: relative;
  display: flex;
  min-height: 165px;
  flex-direction: column;
  padding: 23px;
  color: var(--school-ink);
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.school-link-card:hover,
.school-link-card:focus {
  color: var(--school-ink);
  border-color: #9bcac7;
  box-shadow: 0 14px 30px rgba(8, 124, 120, .11);
  transform: translateY(-3px);
}

.school-link-card i {
  margin-bottom: 20px;
  color: var(--school-teal);
  font-size: 28px;
}

.school-link-card strong {
  margin-bottom: 7px;
  color: var(--school-navy-dark);
  font-size: 18px;
}

.school-link-card span {
  color: var(--school-muted);
  font-size: 14px;
}

.director-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  color: #fff;
  background: var(--school-navy-dark);
  border-radius: var(--school-radius);
  box-shadow: var(--school-shadow);
}

.director-photo {
  min-height: 430px;
  background-position: center;
  background-size: cover;
}

.director-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.director-copy h2,
.director-copy h3 {
  color: #fff;
}

.director-copy .role {
  color: var(--school-gold);
  font-weight: 750;
}

.director-copy blockquote {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #dce8eb;
  border-left: 3px solid var(--school-gold);
  font-size: 17px;
}

.school-page-hero {
  display: grid;
  overflow: hidden;
  min-height: 320px;
  grid-template-columns: 1fr 1fr;
  margin: calc(0px - clamp(22px, 4vw, 42px)) calc(0px - clamp(22px, 4vw, 42px)) 34px;
  background: var(--school-navy-dark);
  border-radius: var(--school-radius) var(--school-radius) 0 0;
}

.school-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  color: #dce9eb;
}

.school-page-hero-copy h1 {
  color: #fff;
}

.school-page-hero-image {
  min-height: 320px;
  background-position: center;
  background-size: cover;
}

.school-lead {
  max-width: 850px;
  color: #425d6a;
  font-size: 18px;
}

.school-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.school-info-card {
  padding: 25px;
  background: var(--school-soft);
  border: 1px solid #d9ece9;
  border-radius: 16px;
}

.school-info-card > :last-child {
  margin-bottom: 0;
}

.people-grid,
.book-grid,
.stars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.person-card,
.book-card,
.star-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 17px;
  box-shadow: 0 9px 25px rgba(16, 59, 87, .07);
}

.person-card img,
.star-card > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center top;
}

.person-card-body,
.book-card-body,
.star-card-body {
  padding: 20px;
}

.person-card-body h3,
.book-card-body h3,
.star-card-body h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.person-card-body p,
.book-card-body p,
.star-card-body p {
  margin: 0;
  color: var(--school-muted);
  font-size: 14px;
}

.person-card.director {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
}

.person-card.director img {
  height: 100%;
  min-height: 360px;
}

.person-card.director .person-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.school-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.school-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 230px;
  background: #dce7e9;
  border-radius: 14px;
}

.school-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .25s ease;
}

.school-gallery a:hover img,
.school-gallery a:focus img {
  transform: scale(1.035);
}

.school-gallery a::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: rgba(6, 45, 64, .8);
  border-radius: 50%;
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.school-gallery.uniform-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.school-gallery.uniform-gallery a {
  min-height: 330px;
}

.school-gallery.uniform-gallery img {
  min-height: 330px;
}

.facility-list,
.club-list {
  display: grid;
  gap: 22px;
  margin: 28px 0;
}

.facility-card,
.club-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: .9fr 1.1fr;
  background: var(--school-soft);
  border: 1px solid #d9eae8;
  border-radius: 18px;
}

.facility-card img,
.club-card > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.facility-card-copy,
.club-card-copy {
  padding: clamp(24px, 4vw, 42px);
}

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

.room-list li {
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--school-line);
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.school-table,
.category-list table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.school-table th,
.school-table td,
.category-list th,
.category-list td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--school-line);
}

.school-table thead,
.category-list thead {
  color: #fff;
  background: var(--school-navy);
}

.school-table tbody tr:last-child > *,
.category-list tbody tr:last-child > * {
  border-bottom: 0;
}

.school-table tbody tr:nth-child(even) {
  background: #f6f9fa;
}

.document-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 750;
  white-space: nowrap;
}

.book-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-column: 1 / -1;
}

.book-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.book-meta span,
.school-tag {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--school-teal-dark);
  background: var(--school-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.star-card {
  position: relative;
}

.star-diploma {
  display: block;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  margin-top: 28px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 19px;
  background: var(--school-soft);
  border-radius: 14px;
}

.contact-item i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--school-teal);
  border-radius: 50%;
}

.contact-item strong {
  display: block;
  color: var(--school-navy-dark);
}

.contact-item a,
.contact-item span {
  color: var(--school-muted);
}

.map-card {
  overflow: hidden;
  min-height: 410px;
  background: #dbe6e8;
  border-radius: 18px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
}

.school-links-section {
  padding: 36px 0;
  background: #eaf3f3;
  border-top: 1px solid #d8e8e7;
}

.school-links-module h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.school-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.school-resource-grid a {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--school-ink);
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.school-resource-grid a:hover,
.school-resource-grid a:focus {
  border-color: var(--school-teal);
  box-shadow: 0 8px 20px rgba(8, 124, 120, .09);
}

.school-resource-grid i {
  color: var(--school-teal);
  font-size: 21px;
}

.site-footer {
  color: #d4e1e4;
  background: var(--school-navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr .6fr;
  gap: clamp(28px, 5vw, 70px);
  padding-top: 48px;
  padding-bottom: 42px;
}

.footer-about {
  display: flex;
  gap: 16px;
}

.footer-about img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.footer-about strong,
.footer-contact strong,
.footer-nav strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-about p {
  margin: 5px 0 0;
  color: #aebfc4;
  font-size: 13px;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a,
.footer-nav a {
  margin-bottom: 8px;
  color: #c8d8dc;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact i {
  width: 20px;
  color: var(--school-gold);
}

.footer-bottom {
  color: #93aab0;
  background: rgba(0, 0, 0, .16);
  font-size: 12px;
}

.footer-bottom .site-shell {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-developer a {
  color: var(--school-gold);
  font-weight: 700;
  text-decoration: none;
}

.footer-developer a:hover,
.footer-developer a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 34px;
  background: rgba(3, 24, 34, .93);
}

.image-viewer img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

.image-viewer p {
  position: absolute;
  bottom: 8px;
  left: 50%;
  max-width: 90vw;
  margin: 0;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}

.image-viewer-close {
  position: absolute;
  top: 12px;
  right: 18px;
  width: 45px;
  height: 45px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.pagination,
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--school-line);
  border-radius: 8px;
  text-decoration: none;
}

.vision-mode {
  --school-navy: #000;
  --school-navy-dark: #000;
  --school-teal: #000;
  --school-teal-dark: #000;
  --school-gold: #ffeb3b;
  --school-ink: #000;
  --school-muted: #111;
  --school-line: #000;
  --school-soft: #fff;
  --school-sand: #fff;
  background: #fff;
  filter: grayscale(1);
  font-size: 19px;
}

.vision-mode .school-hero::before {
  background: rgba(0, 0, 0, .86);
}

.vision-mode a {
  text-decoration: underline;
}

.vision-mode .navigation-bar,
.vision-mode .utility-bar,
.vision-mode .site-footer {
  border-color: #fff;
}
