@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 500;
  font-display: optional;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("../fonts/eb-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1f1b16;
  --rule: #d9d0c3;
  --soft: #8c8378;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

.landing {
  width: min(100%, 38rem);
  min-height: 100%;
  display: grid;
  place-content: center;
  gap: 3rem;
  text-align: center;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 2.5rem);
}

.brand {
  display: grid;
  justify-items: center;
  font-family: "EB Garamond", Georgia, serif;
}

.logo {
  width: clamp(150px, 26vw, 270px);
  height: auto;
  justify-self: center;
}

.brand h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.block {
  display: grid;
  gap: 0.4rem;
}

.kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.08rem;
  transition: border-color 140ms ease, opacity 140ms ease;
}

a:hover {
  border-color: var(--ink);
  opacity: 0.82;
}
