:root {
  --ink: #171614;
  --paper: #f4f1ea;
  --muted: #8a857c;
  --rule: #d9d4c8;
  --accent: #b5482e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 5vw, 4rem);
}
main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 8.5rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
p {
  margin: 24px 0;
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-size: 24px;
  margin-right: 24px;
}
a:hover { color: var(--accent); border-color: var(--accent); }
.side p {
  margin: 0;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
}

@media screen and (max-width: 767px){
  main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }

  h1 {
    font-size: 6rem;
  }

  p {
    font-size: 1.35rem;
  }
}