:root {
  --ink: #1a1d23;
  --muted: #5b6270;
  --faint: #8890a0;
  --border: #e4e6ea;
  --accent: #d16b4c;
  --bg: #fdfdfc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 740px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.split {
  display: grid;
  grid-template-columns: 160px 1px 1fr;
  gap: 0 3rem;
}

.rule {
  background: var(--border);
}

/* Left column */

.col-left {
  display: flex;
  flex-direction: column;
}

.name {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.15rem;
}

.role {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.location {
  font-family: "Source Code Pro", monospace;
  color: var(--faint);
  margin-bottom: 1.6rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.links a {
  font-family: "Source Code Pro", monospace;
  color: var(--muted);
}

.links a:hover {
  color: var(--accent);
}

.cv-link {
  margin-top: 0.6rem;
  color: var(--ink) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* Right column */

.bio {
  margin: 0 0 2.2rem;
}

.block {
  margin-bottom: 2rem;
}

.block:last-child {
  margin-bottom: 0;
}

.proj-label {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.project {
  margin: 0;
  line-height: 1.6;
}

.project-name {
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
}

.project-tech {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: "Source Code Pro", monospace;
  font-size: 0.8rem;
  color: var(--faint);
}

/* Responsive */

@media (max-width: 560px) {
  .split {
    grid-template-columns: 1fr;
  }
  .rule {
    display: none;
  }
  .col-left {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
}
