* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #13795b;
  --teal-deep: #0e5a44;
  --gold: #a8893a;
  --sage: #5a7063;
  --evergreen: #1f3d2a;
  --wash: #f0f7f4;
  --ink: #495057;
  --ink-muted: rgba(73, 80, 87, 0.55);
}

@font-face {
  font-family: 'Archivo Narrow';
  src: url('fonts/ArchivoNarrow-VariableFont_wght.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Albert Sans';
  src: url('fonts/AlbertSans-VariableFont_wght.ttf') format('truetype');
  font-display: swap;
}

::selection {
  background-color: color-mix(in srgb, var(--teal) 14%, transparent);
  color: var(--teal-deep);
}

body {
  font-family: 'Albert Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, var(--wash), white 72%)
    white;
  padding: 8vh 1rem 0;
}

.logo {
  height: clamp(72px, 12vw, 120px);
  width: auto;
}

.title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--teal);
  text-align: center;
  padding: 0 1rem;
}

.title .highlight {
  color: var(--gold);
}

.icons {
  margin-top: 4vh;
  display: flex;
  gap: clamp(1rem, 4vw, 2rem);
}

.icons a {
  display: inline-flex;
  text-decoration: none;
  transition: transform 300ms ease;
}

.icons a:hover {
  transform: translateY(-2px);
}

.icons .icon {
  width: clamp(24px, 6vw, 32px);
  height: clamp(24px, 6vw, 32px);
  fill: var(--sage);
  transition: fill 350ms ease;
}

.icons a:hover .icon {
  fill: var(--evergreen);
}

.copyright {
  margin-top: auto;
  padding: clamp(1.5rem, 4vw, 2rem) 1rem 1rem;
  text-align: center;
}

.copyright hr {
  width: 40px;
  height: 1px;
  background: var(--ink-muted);
  border: 0;
  margin: 0 auto 1rem;
}

.copyright p {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
