:root {
  --ink: #141414;
  --paper: #f2ede3;
  --red: #d8262c;
  --blue: #1c4f9c;
  --yellow: #f2b705;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ============ Header ============ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2rem; height: 64px;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
header .name {
  font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  text-decoration: none; font-size: .95rem;
  display: flex; align-items: center; gap: .6rem;
}
header .name::before {
  content: ""; width: 14px; height: 14px; background: var(--red);
  border-radius: 50%; display: inline-block;
}
nav { display: flex; height: 100%; }
nav a {
  display: flex; align-items: center; padding: 0 1.1rem;
  text-decoration: none; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  border-left: 3px solid var(--ink);
  transition: background .15s, color .15s;
}
nav a:hover { background: var(--ink); color: var(--paper); }

/* ============ Content ============ */
main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
}
h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: .95; font-weight: 700; text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
h1::before {
  content: ""; width: 20px; height: 20px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
}
section.block { border-top: 3px solid var(--ink); padding: 1.75rem 0; }
h2 {
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .9rem; display: flex; align-items: center; gap: .6rem;
}
h2::before { content: ""; width: 12px; height: 12px; background: var(--yellow); display: inline-block; }
section.block p { max-width: 42rem; font-weight: 500; }
section.block p + p { margin-top: 1em; }
section.block a { border-bottom: 2px solid var(--yellow); text-decoration: none; }
section.block img.email-img { height: 1.1em; width: auto; vertical-align: -0.2em; }
section.block a:hover { color: var(--blue); }

/* ============ Footer ============ */
footer {
  padding: 3rem 2rem;
  background: var(--ink); color: var(--paper);
}
footer p { font-size: .78rem; opacity: .6; }
footer a { color: inherit; text-decoration: none; border-bottom: 2px solid var(--yellow); }
footer a:hover { color: var(--yellow); }

@media (max-width: 860px) {
  header { padding: 0 1rem; }
  main, footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
