@font-face {
  font-family: "Montserrat ExtraLight";
  src: url("https://www.thymosinternational.com/Fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #9c0c35;
  --foreground: #d1e5f5;
  --container-width: 780px;
  --line-height: 430px;
  --line-width: 2px;
  --content-offset: 60px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat ExtraLight", Montserrat, Arial, sans-serif;
  font-weight: 200;
  color: var(--foreground);
  background: var(--background);
}

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

.courtesy-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--background);
}

.hero {
  position: relative;
  width: min(var(--container-width), calc(100% - clamp(32px, 8vw, 96px)));
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
}

.hero__line {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--line-width);
  height: min(var(--line-height), 58vh);
  background: var(--foreground);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--content-offset));
  margin-left: var(--content-offset);
  padding-top: clamp(76px, 16.4vh, 126px);
}

.hero__headline {
  width: min(715px, 100%);
}

.hero__contact {
  margin: clamp(30px, 4.7vh, 36px) 0 0;
  font-size: clamp(15px, 1.55vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.hero__contact a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.hero__contact a:hover,
.hero__contact a:focus-visible {
  text-decoration: underline;
}

.hero__logo {
  width: min(370px, 68vw);
  margin-top: clamp(48px, 8.9vh, 68px);
}

.site-footer {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.1vh, 24px);
  width: min(var(--container-width), calc(100% - 32px));
  transform: translateX(-50%);
  font-size: clamp(9px, 0.9vw, 12px);
  line-height: 1.4;
  text-align: center;
  color: var(--foreground);
}

@media (max-width: 720px) {
  :root {
    --content-offset: clamp(28px, 9vw, 48px);
  }

  .courtesy-page {
    overflow-y: auto;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: 100svh;
  }

  .hero__line {
    height: clamp(250px, 52vh, 430px);
  }

  .hero__content {
    padding-top: clamp(72px, 14vh, 104px);
    padding-bottom: 100px;
  }

  .hero__contact {
    max-width: 24rem;
  }
}

@media (max-width: 430px) {
  :root {
    --content-offset: 24px;
  }

  .hero {
    width: calc(100% - 24px);
  }

  .hero__line {
    width: 1.5px;
    height: 320px;
  }

  .hero__content {
    width: calc(100% - var(--content-offset));
    padding-top: 82px;
  }

  .hero__contact {
    font-size: 14px;
  }

  .hero__logo {
    width: min(300px, 76vw);
  }
}

@media (max-height: 640px) and (min-width: 721px) {
  .hero__content {
    padding-top: 72px;
  }

  .hero__contact {
    margin-top: 26px;
  }

  .hero__logo {
    margin-top: 36px;
  }
}
