@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 70px 30px;
  background-color: #ffffff;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  color: #111111;
  margin: 0;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-top: 4.5rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1.8rem;
  padding-left: 20px;
}

li {
  margin-bottom: 0.6rem;
}

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header / Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.site-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111111;
  padding: 0;
}

/* Sections & Editorial Items */
section {
  margin-bottom: 5.5rem;
}

.editorial-item {
  margin-bottom: 3.5rem;
}

.editorial-item:last-child {
  margin-bottom: 0;
}

.editorial-links {
  margin-top: 1.2rem;
  font-size: 15px;
  display: flex;
  gap: 18px;
}

.editorial-links a {
  text-decoration: underline;
}

.editorial-links a:hover {
  color: #555555;
}

.hero-meta {
  margin-top: 2.5rem;
  font-size: 15px;
}

.hero-meta-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #111111;
}

/* Compact Vertical Timeline */
.timeline-container {
  margin: 2.5rem 0 3.5rem 0;
}

.timeline-stage {
  margin-bottom: 0.6rem;
}

.timeline-stage h3 {
  margin-top: 0;
  margin-bottom: 0.2rem;
  font-size: 1.35rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
}

.timeline-stage p {
  margin-bottom: 0;
  color: #333333;
  font-size: 15.5px;
}

.timeline-arrow {
  margin: 0.4rem 0 0.8rem 1rem;
  color: #777777;
  font-size: 1.2rem;
  line-height: 1;
}

/* Reading Section */
.reading-item {
  margin-bottom: 2.2rem;
}

.reading-item:last-child {
  margin-bottom: 0;
}

.reading-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.reading-desc {
  font-style: italic;
  color: #444444;
  margin-bottom: 0;
}

.archive-item {
  margin-bottom: 3rem;
}

/* Footer */
footer {
  margin-top: 7rem;
  border-top: 1px solid #eaeaea;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  font-size: 15px;
  color: #444444;
}

footer p {
  margin-bottom: 0.8rem;
}

.footer-links {
  margin-top: 2.5rem;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
}

.footer-links a:hover {
  color: #111111;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 40px 20px;
    font-size: 15px;
  }
  
  header {
    margin-bottom: 3.5rem;
  }

  .menu-toggle {
    display: block;
  }
  
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1.5rem 0;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid #eaeaea;
    z-index: 100;
  }

  .site-nav.active {
    display: flex;
  }
  
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
}
