:root {
  --bg: #060606;
  --text: #e4e4e7;
  --text-dim: #A6A6A6;
  --border: #262626;
  --highlight: #ffffff;
  --mono: Gotham, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  width: 100%;
  margin: 4rem auto;
  padding: 0 1.5rem;
  border: none;
}

.top-section {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.col-left {
  flex: 0.8;
  width: 40%;
}

.main-headshot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  filter: grayscale(20%);
  opacity: 0.9;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.col-right {
  flex: 1.2;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.right-row-images {
  display: flex;
  gap: 0.75rem;
}

.sub-image {
  flex: 1;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  filter: grayscale(20%);
  opacity: 0.9;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.right-row-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-row-text h2 {
  font-size: 1.1em;
  margin-bottom: 0.5rem;
  color: var(--highlight);
  font-weight: 300;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.right-row-text p {
  font-size: 0.85em;
  margin-bottom: 0.25rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.right-row-text p.email {
  color: var(--text);
  margin-top: 0.5rem;
}

.bio-row {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
  max-width: 100%;
}

.bio-row p {
  margin-bottom: 1.5rem;
}

.footer-row {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: var(--text-dim);
  margin-bottom: 3rem;
}

.contact-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-left span {
  display: inline;
  color: var(--text);
  margin-top: 0;
  font-weight: 500;
}

.links-right {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.links-right a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: none;
}

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

.experience-block {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.experience-block .location {
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 2px;
}

.experience-block .location:hover {
  color: var(--highlight);
  cursor: default;
}

.location {
  color: var(--text-dim);
  margin-left: 4px;
  margin-right: 2px;
}

a:hover .location {
  color: var(--highlight);
  cursor: pointer;
}

@media (max-width: 600px) {
  .container {
    margin: 2rem auto;
    padding: 0 1.25rem;
  }

  .top-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .col-left {
    width: 100%;
    flex: auto;
    display: flex;
    justify-content: center;
  }

  .main-headshot {
    width: 150px;
    max-width: 100%;
  }

  .col-right {
    width: 100%;
    flex: auto;
    text-align: center;
  }

  .right-row-text {
    align-items: center;
  }

  .footer-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .contact-left {
    flex-direction: column;
    gap: 0.2rem;
  }

  .links-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}