* {
  box-sizing: border-box;
}

html {
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topBarHeight) + var(--navHeight));
}

 :root {
  --topBarHeight: 3.5rem;
  --navHeight: 5.5rem;
}

@font-face {
  font-family: "GeorgiaPro";
  src: url("fonts/GeorgiaPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeorgiaPro";
  src: url("fonts/GeorgiaPro-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sense";
  src: url("fonts/Sense_Reg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  --activeColor: rgb(240, 240, 240);
  --navBgColor: rgb(24, 25, 29);
  --navTextColor: rgb(170, 170, 178);
  --mainBg: rgb(14, 15, 18);
  font-family: "Sense", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  color: var(--activeColor);
  background: radial-gradient(80% 80% at 50% 0%, rgba(255, 255, 255, 0.04), transparent) var(--mainBg);
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

body.has-nav-open {
  overflow: hidden;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader__inner {
  width: min(360px, 70vw);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.site-loader__bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.site-loader__progress {
  display: block;
  height: 100%;
  width: 0%;
  background: #cf202f;
  transition: width 0.2s ease;
}

.site-loader__text {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-nav {
  position: fixed;
  top: var(--topBarHeight);
  left: 0;
  right: 0;
  z-index: 30;
  min-height: var(--navHeight);
  width: 100%;
  background: #cf202f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.6rem;
  padding: 0.4rem 0.5rem;
  width: 2.4rem;
  height: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 1.6rem;
  height: 2px;
  background: var(--activeColor);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  transform: translateX(-50%);
}

.menu-toggle__line:nth-child(1) {
  top: 35%;
}

.menu-toggle__line:nth-child(2) {
  top: 50%;
}

.menu-toggle__line:nth-child(3) {
  top: 65%;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--activeColor);
}

.brand__eyebrow {
  font-size: 0.65rem;
  color: var(--navTextColor);
}

.brand__title {
  font-size: 1rem;
}

.nav-groups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.site-nav__lang {
  display: none;
  align-items: center;
  margin-left: auto;
}

.top-bar__lang {
  display: inline-flex;
}

.nav-close {
  display: none;
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-close:hover,
.nav-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.dropdown {
  position: relative;
  z-index: 1;
}

.dropdown__toggle {
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: normal;
  min-width: auto;
  text-align: left;
  justify-content: center;
  height: 100%;
}

.dropdown__toggle:hover,
.dropdown__toggle:focus-visible {
  color: var(--activeColor);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.dropdown__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown__arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dropdown.is-open .dropdown__arrow,
.dropdown:hover .dropdown__arrow,
.dropdown:focus-within .dropdown__arrow {
  transform: rotate(180deg);
  border-top-color: var(--activeColor);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.6rem;
  min-width: 14rem;
  width: max-content;
  padding: 0.4rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-height: calc(100vh - var(--topBarHeight) - var(--navHeight) - 1rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dropdown__menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown__menu::after {
  content: "▾";
  position: sticky;
  bottom: 0;
  align-self: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.2rem 0 0.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.98));
}

@media (hover: hover) {
  .dropdown:hover .dropdown__menu,
  .dropdown:focus-within .dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.dropdown.is-open .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 961px) {
  .nav-groups .dropdown:last-child .dropdown__menu {
    left: auto;
    right: 0;
  }
}

.dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem 0.75rem;
  flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #f8f8f8;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.5;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: normal;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: var(--topBarHeight);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 8;
}
@media (max-width: 960px) {
  .nav-overlay {
    display: block;
  }
  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}


.dropdown__link:hover,
.dropdown__link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.dropdown__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.dropdown__year {
  color: #ff6b6b;
  font-weight: 800;
  font-family: "GeorgiaPro", Georgia, "Times New Roman", serif;
  min-width: 3.5rem;
  display: block;
  width: 100%;
}
.dropdown__text {
  color: #f3f3f3;
  font-weight: 500;
  line-height: 1.4;
  font-size: 0.92rem;
  display: block;
  width: 100%;
}

.dropdown.is-current .dropdown__toggle {
  color: var(--activeColor);
  border-color: rgba(255, 255, 255, 0.35);
}

.snap-container {
  scroll-snap-type: y mandatory;
}

.snap-section {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.snap-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 50% 30%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
}

.credentials-block {
  background: #000;
  color: #f5f1eb;
}

.credentials-block__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
}

.credentials-block__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 46, 57, 0.9), rgba(198, 46, 57, 0.55));
  margin-bottom: 1.25rem;
}

.credentials-block__title {
  margin: 0 0 1.2rem;
  font-family: "GeorgiaPro", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.credentials-block__intro,
.credentials-block__support {
  max-width: 52rem;
  margin: 0;
  color: rgba(245, 241, 235, 0.88);
  font-size: 1.02rem;
  line-height: 1.45;
}

.credentials-block__logo-row {
  margin-top: 1.15rem;
}

.credentials-block__support {
  margin-top: 2.25rem;
}

.credentials-block__logo {
  display: block;
  width: auto;
  height: auto;
}

.credentials-block__logo--canvet {
  max-width: 9.25rem;
}

.credentials-block__logo--canada {
  max-width: 7.5rem;
}

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 40;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.05rem;
  }
}

.container {
  position: relative;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(1.25rem, 4vw, 2rem);
  row-gap: 0.35rem;
  align-items: center;
  z-index: 1;
}


.section__heading {
  margin: 0 0 0.25rem 0;
  font-family: "GeorgiaPro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.35);
}

.section__heading h1 {
  margin: 0;
  font: inherit;
  font-weight: 600;
}

.section__heading span:first-child {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--navTextColor);
  letter-spacing: 0.12em;
  font-family: "GeorgiaPro", Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.section__image {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-height: none;
  width: 100%;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.35);
  align-self: center;
}

.section__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 25%, rgba(0, 0, 0, 0.25));
  mix-blend-mode: screen;
}

.section__image img {
  height: 100%;
  object-fit: cover;
}
.photo-credit {
  margin-top: 0.35rem;
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 0, 0.45);
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.3;
  border-radius: 0.35rem;
}
.photo-credit__caption {
  display: block;
  font-style: normal;
}
.photo-credit__credit {
  display: block;
  font-style: italic;
  font-size: 0.95em;
}

.section__body {
  font-family: "Sense", "Helvetica Neue", Arial, sans-serif;
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  color: rgb(214, 214, 222);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vertical_space {
  margin-top: -200px;
}

.readmorebtn {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #cf202f;
  background: #cf202f;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.readmorebtn:hover,
.readmorebtn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  border-color: #e24b58;
  background: #e24b58;
}

.quote-card {
  position: relative;
  margin-top: 0.75rem;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  background: rgb(4 66 142 / 57%);
  color: #f5f7fb;
  border-radius: 0.8rem;
  overflow: visible;
}

.quote-card__mark {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 0.75rem 0;
}

.quote-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.infobox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  transform: translateX(-100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-sizing: border-box;
}

.infocontent {
  flex: 1;
  overflow-y: auto;
  max-width: 800px;
  margin: 0 auto;
  padding-right: 1rem;
  text-align: left;
  opacity: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}
.infocontent h3 {
  font-family: "GeorgiaPro", Georgia, "Times New Roman", serif;
}
.infocontent p {
  font-family: "Sense", "Helvetica Neue", Arial, sans-serif;
}

.infobox__image {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.closebtn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: 2px solid white;
  color: white;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease;
}

.closebtn:hover {
  background: white;
  color: black;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    top: var(--topBarHeight);
    left: 0;
    right: 0;
    z-index: 30;
    justify-content: space-between;
    background: rgba(20, 21, 25, 0.9);
  }

  .top-bar__lang {
    display: none;
  }

  .site-nav__lang {
    display: inline-flex;
  }
  .dropdown__toggle {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.6rem;
    padding: 0.6rem 0.9rem;
    height: auto;
    font-size: 0.95rem;
    justify-content: space-between;
  }
  .nav-groups {
    will-change: transform;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    max-width: 360px;
    background: rgba(207, 32, 47, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-box-shadow: -30px 0 60px rgba(0, 0, 0, 0.35);
            box-shadow: -30px 0 60px rgba(0, 0, 0, 0.35);
    padding: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.5rem;
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.25s ease, opacity 0.25s ease;
    transition: -webkit-transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    z-index: 31;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    margin: 0;
  }
  .slide-overlay {
    height: 10vh !important;
  }
  .site-nav.nav-open .nav-groups {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: static;
    margin: 0 0 0.5rem 0;
  }
.nav-close {
  display: inline-flex;
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 11;
}
  .dropdown {
    width: 100%;
  }
  .dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    min-width: auto;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
  }
  .dropdown__menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .dropdown.is-open .dropdown__menu {
    display: flex;
  }
  .dropdown__link {
    white-space: normal;
  }
  .nav-overlay {
    display: block;
  }
  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .container {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .section__heading {
    grid-column: 1;
    grid-row: auto;
  }
  .section__image {
    grid-column: 1;
    grid-row: auto;
    max-height: none;
  }
  .section__body {
    grid-column: 1;
    grid-row: auto;
  }
}


@media (max-width: 640px) {
  html {
    scroll-padding-top: 6.5rem;
  }
  .site-nav {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
 .dropdown__toggle {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
  }
  .dropdown__link {
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
  }
  .nav-groups {
    width: 80vw;
    justify-content: flex-start;
    flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .dropdown__menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .dropdown.is-open .dropdown__menu {
    display: flex;
  }
  .snap-section {
    padding: 5rem 0 3rem;
  }

  .credentials-block__inner {
    padding-top: 1.5rem;
    padding-bottom: 2.25rem;
  }

  .credentials-block__title {
    font-size: 1.55rem;
  }

  .credentials-block__intro,
  .credentials-block__support {
    font-size: 0.96rem;
  }

  .credentials-block__support {
    margin-top: 2rem;
  }

}

.section_TFY {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide1.jpg");
  background-size: cover;
  background-position: center;
}

.section_1910 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1910.jpg");
  background-size: cover;
  background-position: center;
}

.section_1914 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section_1914 .container {
  position: relative;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 18vh;
  pointer-events: none;
  z-index: 1;
}

.slide-overlay--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.slide-overlay--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.section_1917_04_10 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section_1918_11_11 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide3.jpg");
  background-size: cover;
  background-position: center;
}

.section_1921_05_15 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide4.jpg");
  background-size: cover;
  background-position: center;
}

.section_1921_07_06 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/slide5-5.jpg");
  background-size: cover;
  background-position: center;
}

.section_1925_06 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/Haig.jpg");
  background-size: cover;
  background-position: center;
}
.section_1920s_late {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/The-Legion-Leads-Advocacy-for-Veteran-Care.jpg");
  background-size: cover;
  background-position: center;
}
.section_1930s_support {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1930s.jpg");
  background-size: cover;
  background-position: center;
}
.section_1942_04_27 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/April-27-1942.jpg");
  background-size: cover;
  background-position: center;
}
.section_1943_07 {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/July-1943.jpg");
  background-size: cover;
  background-position: center;
}
.section_1945_1950s {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1945–1950s.jpg");
  background-size: cover;
  background-position: center;
}
.section_1956_membership {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1956.jpg");
  background-size: cover;
  background-position: center;
}
.section_1972_eligibility {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1972.jpg");
  background-size: cover;
  background-position: center;
}
.section_1982_1984_600k {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1982–1984.jpg");
  background-size: cover;
  background-position: center;
}
.section_1990s_modern {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/1990s.jpg");
  background-size: cover;
  background-position: center;
}
.section_2022_covid {
  background-image: linear-gradient(120deg, rgba(59, 0, 0, 0.75), rgba(3, 0, 29, 0.65)), url("images/March–June-2022.jpg");
  background-size: cover;
  background-position: center;
}
.section_2022_covid .section__body p {
  margin: 0 0 0.7em;
}
.section_2022_covid .section__body p:last-child {
  margin-bottom: 0;
}

.section_intro {
  background-image: url("images/poster.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.intro-gradient {
  position: absolute;
  left: 0;
  width: 100%;
  height: 18vh;
  pointer-events: none;
  z-index: 1;
}

.intro-gradient--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.intro-gradient--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.section_intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(3, 0, 29, 0.55));
  z-index: 1;
  pointer-events: none;
}

.section_intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  z-index: 0;
}

body.intro-video-fixed .section_intro__video {
  position: fixed;
  top: var(--topBarHeight);
  left: 0;
  right: 0;
  height: calc(100vh - var(--topBarHeight));
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.section_intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.section_intro .section__heading {
  grid-column: auto;
}

.section_intro .section__body {
  grid-column: auto;
  max-width: 720px;
}

.section_foundations_intro {
  background: #16131d;
  padding: 1.5rem 0;
  min-height: 50vh;
}

.section_foundations_intro .container {
  grid-template-columns: 1fr;
  text-align: center;
  row-gap: 0.35rem;
}

.section_foundations_intro .section__heading {
  grid-column: 1;
}

.section_foundations_intro .section__body {
  grid-column: 1;
  margin: 0 auto;
  max-width: 800px;
}

.section_growth_intro {
  background: #111018;
  padding: 1.5rem 0;
  min-height: 50vh;
}

.section_growth_intro .container {
  grid-template-columns: 1fr;
  text-align: center;
  row-gap: 0.35rem;
}

.section_growth_intro .section__heading {
  grid-column: 1;
}

.section_growth_intro .section__body {
  grid-column: 1;
  margin: 0 auto;
  max-width: 900px;
}

.section_modern_intro {
  background: #0f1320;
  padding: 1.5rem 0;
  min-height: 50vh;
}

.section_modern_intro .container {
  grid-template-columns: 1fr;
  text-align: center;
  row-gap: 0.35rem;
}

.section_modern_intro .section__heading {
  grid-column: 1;
}

.section_modern_intro .section__body {
  grid-column: 1;
  margin: 0 auto;
  max-width: 900px;
}

.section_1921_05_15 .container {
  row-gap: 0.25rem;
  align-items: center;
}

.section_1921_05_15 .section__image {
  max-height: none;
  align-self: stretch;
}

.section_1921_05_15 .section__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slide3-gradient {
  position: absolute;
  left: 0;
  width: 100%;
  height: 18vh;
  pointer-events: none;
  z-index: 1;
}

.slide3-gradient--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.slide3-gradient--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

/* Reinstate top bar styles */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--topBarHeight);
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  gap: 1rem;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-bar__logo {
  height: 2.4rem;
  width: auto;
}

.top-bar__badge {
  height: 2.6rem;
  width: auto;
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.top-link--lang {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.top-link:hover,
.top-link:focus-visible {
  text-decoration: underline;
}

.top-separator {
  color: #777;
  font-weight: 600;
  margin: 0 0.25rem;
}

@media (max-width: 960px) {
  .top-bar {
    padding: 0 1rem;
  }

  .top-bar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .top-bar__right {
    gap: 0.75rem;
  }

  .top-bar__logo {
    height: 2.1rem;
  }

  .top-bar__badge {
    height: 2.3rem;
  }

  .top-link {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .top-link--lang {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }

.top-bar__left,
.top-bar__right {
  gap: 0.6rem;
}

  .top-bar__logo {
    height: 1.8rem;
  }

  .top-bar__badge {
    height: 2rem;
  }

.top-link {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.top-link--lang {
  font-size: 0.64rem;
  padding: 0.18rem 0.34rem;
}
}

@media (max-width: 960px) {
  .vertical_space {
    margin-top: 0;
  }
}
