:root {
  --bg: #0e0e0e;
  --fg: #e8e6e1;
  --muted: #8a857c;
  --accent: #c8a96a;
  --accent-hi: #e8c98a;
  --rule: #2a2a2a;
  --max: 640px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font: 18px/1.65 Georgia, "Times New Roman", serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.topnav__brand {
  font-family: Georgia, serif;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.2;
}

.topnav__name {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.topnav__tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.04em;
}

.topnav__sep {
  color: var(--muted);
  font-size: 0.85rem;
}

.topnav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topnav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: color 0.15s ease;
}

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

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 6rem;
  scroll-margin-top: 4rem;
}

h1 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

h2 {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 3rem 0 1.25rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.portrait {
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: contrast(1.05) brightness(0.98);
  display: block;
}

p {
  margin: 0 0 1.1rem;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.links iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: none;
  border-radius: 2px;
  background: #1a1a1a;
}

.email {
  height: 1.7rem;
  width: auto;
  display: block;
}

section { margin-top: 0; scroll-margin-top: 4rem; }

@media (max-width: 600px) {
  main { padding: 2rem 1.25rem 4rem; }
  h1 { font-size: 2rem; }
  .topnav {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }
  .topnav__links { gap: 1.25rem; }
  .topnav__name { font-size: 1rem; }
  .topnav__tagline, .topnav__sep { font-size: 0.8rem; }
}
