*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #f2f1ec;
  color: #111;
  font-family: "Archivo", Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.shell {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 100vh;
}

aside {
  border-right: 1px solid #111;
  padding: 1.25rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.name {
  margin: 0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

aside nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.aside-meta {
  margin-top: auto;
  font-size: 0.72rem;
  line-height: 1.4;
  font-weight: 600;
}

main { padding: 1.5rem 2rem 4rem; }

.hero p {
  margin: 0 0 1rem;
  color: #e10600;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0 0 3rem;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero span { color: #e10600; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

th, td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid #111;
}

th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #111;
}

.split h2 {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split p { margin: 0; max-width: 34rem; line-height: 1.5; }

@media (max-width: 720px) {
  .shell { grid-template-columns: 1fr; }
  aside {
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid #111;
  }
  .aside-meta { display: none; }
  .split { grid-template-columns: 1fr; }
}
