/* Fonts */
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/neuehaasgrottext-55roman-trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/neuehaasgrottext-56italic-trial.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/neuehaasgrottext-65medium-trial.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/neuehaasgrottext-75bold-trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Header */
header {
  margin-bottom: 32px;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.tagline {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
}

.links-row {
  font-size: 14px;
}

.links-row a {
  color: #07c;
  text-decoration: none;
}

.links-row a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  margin-bottom: 28px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

p {
  margin-bottom: 10px;
}

/* Links */
a {
  color: #07c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 6px;
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #999;
}

/* Responsive — already works at this simplicity, but tighten padding on small screens */
@media (max-width: 500px) {
  .container {
    padding: 24px 16px 60px;
  }

  .profile-pic {
    width: 110px;
    height: 110px;
  }

  h1 {
    font-size: 24px;
  }
}
