@font-face {
  font-family: "Sandevistan Corporate Minimal";
  src:
    url("../fonts/sandevistan-corporate-minimal-wordmark.woff2") format("woff2"),
    url("../fonts/sandevistan-corporate-minimal-wordmark.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0041, U+0044, U+0045, U+0049, U+004E, U+004F, U+0050, U+0053, U+0054, U+0056;
}

:root {
  --background: #f4f1ea;
  --foreground: #151515;
  --secondary: #3a3935;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 4.8vw, 64px);
}

.identity {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 980px;
  margin-top: -7vh;
  text-align: center;
}

.identity h1 {
  margin: 0;
  font-family: "Sandevistan Corporate Minimal", Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 8.2vw, 112px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.identity p {
  margin: clamp(16px, 2.2vw, 24px) 0 0;
  color: var(--secondary);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.35;
}

.footer {
  display: block;
  color: var(--secondary);
  font-size: clamp(13px, 1.08vw, 15px);
  font-weight: 400;
  line-height: 1.58;
}

.company {
  margin: 0;
  font-style: normal;
}

.company span {
  display: block;
}

@media (max-width: 680px) {
  .page {
    min-height: 100svh;
    padding: 28px 24px 30px;
  }

  .identity {
    margin-top: -4vh;
  }

  .identity h1 {
    font-size: clamp(32px, 10.5vw, 60px);
    letter-spacing: 0.035em;
  }

}
