@font-face {
  font-family: 'TTHovesMedium';
  src: url('TTHovesMedium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ChronicleDisp';
  src: url('ChronicleDisp-Roman.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'ChronicleDisp', "Times New Roman", Times, serif;
  line-height: 1.4;
  letter-spacing: 0.7px;
}
body {
  display: block;
}
#container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
header img {
  width: auto;
  max-width: 100%;
  height: 120px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.about-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.about-section .column {
  width: 48%;
}
.about-left {
  font-family: 'TTHovesMedium', sans-serif;
  font-weight: normal;
}
.about-left p {
  font-size: 1.12rem;
  line-height: 1.55;
  margin-bottom: 1em;
  opacity: 0.95;
}
.substack-wrap {
  text-align: center;
  margin: 0;
}
.substack-btn {
  display: inline-block;
  padding: 18px 22px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-family: 'TTHovesMedium', sans-serif;
  letter-spacing: 0.5px;
  background: transparent;
  border-radius: 3px;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease;
  font-size: 0.98rem;
  line-height: 1;
}
.substack-btn:hover,
.substack-btn:focus {
  background: #fff;
  color: #000;
  outline: none;
  transform: translateY(-2px);
}
h2, h3 {
  font-family: 'TTHovesMedium', sans-serif;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.1em;
  font-size: 1.9rem;
}
.projects-section {
  margin-top: 60px;
}
.projects-section h2 {
  margin-bottom: 1.5em;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.project {
  background: #fff;
  color: #000;
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-start;
  min-height: 120px;
}
.project p {
  margin: 0;
  line-height: 1.45;
  color: inherit;
  font-family: 'ChronicleDisp', serif;
  font-size: 0.98rem;
}
.project a {
  color: #000;
  text-decoration: underline;
}
.staff-section {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}
.staff-col {
  flex: 1 1 50%;
  min-width: 0;
}
p {
  margin-bottom: 1em;
  line-height: 1.4;
}
a {
  color: #fff;
  text-decoration: underline;
}
a:hover,
a:focus {
  text-decoration: underline;
}
@media (max-width: 768px) {
  #container {
    width: 90%;
    max-width: 600px;
    padding: 20px 0;
  }
  .about-section {
    flex-direction: column;
    gap: 20px;
  }
  .about-section .column {
    width: 100%;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  h2, h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
  header img {
    height: 100px;
  }
  .substack-btn {
    padding: 18px 24px;
    display: inline-block;
    width: auto;
  }
  .staff-section {
    flex-direction: column;
    gap: 18px;
  }
  .project {
    padding: 18px;
  }
}
@media (max-width: 420px) {
  body {
    font-size: 15px;
  }
  h2 {
    font-size: 1rem;
  }
}
