:root {
  --navy: #14233c;
  --navy-deep: #0e1a2e;
  --ochre: #c8922a;
  --offwhite: #f6f2ea;
  --ink: #1d2433;
  --ink-soft: #4a5366;
}

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

body {
  background: var(--offwhite);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.65;
}

/* Masthead */
.masthead {
  background: var(--navy);
  color: var(--offwhite);
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 6px solid var(--ochre);
}

.masthead-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.masthead-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.4rem;
}

.masthead-title {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.masthead-rule {
  width: 64px;
  border-bottom: 2px solid var(--ochre);
  margin: 1.6rem auto;
}

.masthead-byline {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(246, 242, 234, 0.75);
}

/* Content */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

/* Issue card */
.issue-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(20, 35, 60, 0.15);
}

.issue-cover {
  aspect-ratio: 3 / 4;
  background: var(--navy-deep);
  border: 1px solid var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.issue-cover-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.issue-cover-note {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: rgba(246, 242, 234, 0.55);
}

.issue-number {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.6rem;
}

.issue-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.issue-dek {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* About */
.about {
  padding-top: 3rem;
}

.about h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.about p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-bio {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(246, 242, 234, 0.7);
  text-align: center;
  padding: 2.2rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
}

.footer-note {
  margin-top: 0.4rem;
  color: rgba(246, 242, 234, 0.45);
}

@media (max-width: 560px) {
  .issue-card {
    grid-template-columns: 1fr;
  }
  .issue-cover {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* Essay page */
.essay-topbar {
  background: var(--navy);
  border-bottom: 4px solid var(--ochre);
  padding: 1rem 1.5rem;
  text-align: center;
}

.essay-home {
  color: var(--offwhite);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.essay {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.essay-head { text-align: center; }

.essay-issue {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}

.essay-title {
  font-size: clamp(2rem, 6vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.essay-dek {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}

.essay-cover {
  margin: 0 auto 2.6rem;
  max-width: 420px;
}

.essay-cover img {
  width: 100%;
  display: block;
  border: 1px solid rgba(20, 35, 60, 0.25);
}

.essay-body p {
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
}

.essay-body p:first-of-type::first-letter {
  font-size: 3.2em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding-right: 0.09em;
  color: var(--navy);
}

.essay-end {
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(20, 35, 60, 0.15);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.essay-sig {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.essay-note { margin-bottom: 0.8rem; }

.essay-end a { color: var(--navy); }

/* Issue card cover image + title link */
.issue-cover-link { display: block; }

.issue-cover-img {
  width: 100%;
  display: block;
  border: 1px solid rgba(20, 35, 60, 0.25);
}

.issue-title-link {
  color: var(--navy);
  text-decoration: none;
}

.issue-title-link:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .issue-cover-link {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* Site nav */
.site-nav {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(246, 242, 234, 0.75);
  text-decoration: none;
  padding-bottom: 2px;
}

.site-nav a:hover { color: var(--offwhite); }

.site-nav a.nav-current {
  color: var(--ochre);
  border-bottom: 1px solid var(--ochre);
}

.masthead-nav { margin-top: 1.6rem; }

/* About page */
.about-body { text-align: left; }

.social-links {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--navy);
  padding: 0.6rem 1.4rem;
}

.social-link:hover {
  background: var(--navy);
  color: var(--offwhite);
}
