:root {
  --panel-gray: #e7e7e7;
  --text-black: #111111;
  --pill-black: #08090c;
  --yellow-1: #fff39a;
  --yellow-2: #f0dd3f;
  --yellow-3: #e7cc13;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text-black);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

.landing {
  --s: 1;
  width: min(100vw, 633px);
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}

.top-panel {
  background: var(--panel-gray);
  text-align: center;
  height: calc(497px * var(--s));
  padding: 0;
}

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

.logo-image {
  width: calc(554px * var(--s));
  height: auto;
  margin: calc(53px * var(--s)) auto 0;
  display: block;
}

.flag-image {
  width: calc(189px * var(--s));
  height: auto;
  margin: calc(13px * var(--s)) auto 0;
  display: block;
}

.pill {
  margin: calc(13px * var(--s)) auto 0;
  width: calc(595px * var(--s));
  height: calc(80px * var(--s));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(40px * var(--s));
  background: var(--pill-black);
  color: #ffffff;
  font-size: calc(24px * var(--s));
  font-weight: 900;
  letter-spacing: calc(0.2px * var(--s));
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.headline {
  margin: 0;
  height: calc(99px * var(--s));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(180deg, var(--yellow-1) 0%, var(--yellow-2) 56%, var(--yellow-3) 100%);
  box-shadow: 0 -1px 22px rgba(0, 0, 0, 0.25) inset;
  font-size: calc(24px * var(--s));
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: calc(0.2px * var(--s));
  text-align: center;
}

.gallery-section {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.gallery-section img,
.bottom-photo img {
  width: 100%;
  display: block;
}

.site-strip {
  margin: 0;
  min-height: calc(86px * var(--s));
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(8px * var(--s)) 0;
}

.site-strip p {
  margin: 0;
  font-size: calc(24px * var(--s));
  font-weight: 900;
  letter-spacing: calc(0.5px * var(--s));
  line-height: 1.1;
  color: #046A38;
  background: linear-gradient(90deg, #f6f6f8 0%, #ccccc9 52%, #efedef 100%);
  padding: calc(8px * var(--s)) calc(14px * var(--s));
  border-radius: calc(6px * var(--s));
  display: inline-block;
  max-width: calc(100% - (24px * var(--s)));
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

.bottom-photo {
  margin: 0;
  padding: 0;
  height: calc(432px * var(--s));
  position: relative;
}

.bottom-photo img {
  height: 100%;
  object-fit: cover;
}

.special-units-card {
  position: absolute;
  left: calc(20px * var(--s));
  bottom: calc(38px * var(--s));
  width: min(calc(330px * var(--s)), calc(100% - (40px * var(--s))));
  background: rgba(239, 239, 239, 0.95);
  border-left: calc(7px * var(--s)) solid #f0d43a;
  padding: calc(16px * var(--s)) calc(16px * var(--s)) calc(14px * var(--s))
    calc(16px * var(--s));
  box-shadow: 0 calc(6px * var(--s)) calc(16px * var(--s)) rgba(0, 0, 0, 0.12);
}

.special-units-card h3 {
  margin: 0 0 calc(10px * var(--s));
  font-size: calc(17px * var(--s));
  line-height: 1.1;
  letter-spacing: calc(0.25px * var(--s));
  color: #111111;
}

.special-units-card p {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: calc(11.5px * var(--s));
  line-height: 1.42;
  color: #4e5964;
}

.bottom-strip {
  height: calc(46px * var(--s));
  background: linear-gradient(90deg, #f6f6f8 0%, #ccccc9 52%, #efedef 100%);
}

.page-footer {
  background: #101114;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: calc(22px * var(--s)) calc(22px * var(--s)) calc(24px * var(--s));
}

.footer-year {
  margin: 0 0 calc(10px * var(--s));
  color: #b9c1cb;
  font-size: calc(12.5px * var(--s));
  font-weight: 800;
  letter-spacing: calc(0.7px * var(--s));
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  max-width: calc(560px * var(--s));
  color: #eef2f6;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: calc(13.5px * var(--s));
  line-height: 1.45;
}

@media (max-width: 633px) {
  .landing {
    --s: calc(100vw / 633px);
  }
}
