:root {
  --blue: #375293;
  --fiord: #405169;
  --white: #ffffff;
  --black: #111111;
  --deep-black: #070707;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Stack Sans Headline", Inter, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--blue);
  font-weight: 900;
  text-underline-offset: 4px;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.site-header {
  color: var(--white);
  background: var(--deep-black);
  font-weight: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 14px 0;
}

.intro {
  min-height: 48vh;
  display: grid;
  grid-template-columns: minmax(260px, 420px) max-content;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(40px, 8vw, 88px);
}

@media (max-width: 1040px) and (min-width: 761px) {
  .intro {
    grid-template-columns: minmax(230px, 340px) max-content;
    gap: 0;
  }

  .logo {
    width: clamp(220px, 28vw, 340px);
  }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  width: clamp(230px, 30vw, 420px);
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

.country-mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 48px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.cta p,
.location-copy p {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.training-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-bottom: clamp(32px, 6vw, 64px);
}

.training-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 115px;
  padding: 18px 14px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: clamp(1.2rem, 2vw, 1.475rem);
  font-weight: 800;
}

.training-strip span:nth-child(1) {
  background-image:
    linear-gradient(rgb(55 82 147 / 30%), rgb(55 82 147 / 30%)),
    url("lev1.png");
}

.training-strip span:nth-child(2) {
  background-image:
    linear-gradient(rgb(55 82 147 / 30%), rgb(55 82 147 / 30%)),
    url("lev2.png");
}

.training-strip span:nth-child(3) {
  background-image:
    linear-gradient(rgb(55 82 147 / 30%), rgb(55 82 147 / 30%)),
    url("lev3.png");
  background-position: center 25%;
}

.location {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: stretch;
}

.location-copy {
  align-self: center;
}

.map-wrap {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--fiord);
}

#map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

#map .leaflet-tile-pane {
  filter: invert(1) hue-rotate(180deg) saturate(0.8) brightness(0.9);
}

.leaflet-marker-icon {
  padding: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgb(0 0 0 / 45%);
  object-fit: contain;
}

.leaflet-control-zoom a {
  color: var(--black);
}

.footer {
  margin-top: clamp(28px, 5vw, 56px);
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
}

.footer-inner p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .intro,
  .location {
    grid-template-columns: 1fr;
  }

  .training-strip {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .header-inner {
    justify-content: center;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .cta p,
  .location-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .map-wrap,
  #map {
    min-height: 360px;
  }

  .footer {
    text-align: center;
  }

  .footer-inner {
    display: block;
  }

  .leaflet-marker-icon {
    padding: 7px;
  }
}

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

  .brand {
    align-items: center;
    justify-content: center;
  }

  .logo {
    width: min(220px, 72vw);
  }
}
