/* ---------- Page-wide colors and typography ---------- */

:root {
  --bg: #fbf8f1;
  --ink: #24211c;
  --muted: #756d5f;
  --rule: #ded5c4;
  --accent: #7d2b25;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16150f;
    --ink: #e8e1d1;
    --muted: #9b917f;
    --rule: #322e25;
    --accent: #d59a86;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
}


/* ---------- Top Bar ---------- */

.site-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 24px 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
}

nav a.active {
  color: var(--accent);
}


/* ---------- Essay Width ---------- */

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ---------- Title Area ---------- */

.main {
  text-align: center;
  padding-top: 115px;
  margin: 0 auto 55px;
  max-width: 500px;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.rule {
  height: 1px;
  background: var(--rule);
  margin: 30px 0 27px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
}

.date {
  margin-top: 29px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
}


/* ---------- Essay ---------- */

article {
  max-width: 650px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
}

.section-number {
  margin-bottom: 17px;
  text-align: center;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 650;
}

h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.quote {
  max-width: 500px;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--muted);
  font-size: 20px;
  font-style: italic;
  font-weight: 350;
  line-height: 1.80;
}
  
article p {
  margin: 0 0 38px;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent);
  font-size: 3.5em;
  line-height: 0.72;
}


/* ---------- Small screens ---------- */

@media (max-width: 600px) {
  .site-header {
    padding-top: 28px;
  }

  .hero {
    padding-top: 70px;
    margin-bottom: 60px;
  }

  article {
    font-size: 23px;
  }

  h2 {
    font-size: 14px;
  }
}
