:root {
  --midnight: #1c1c2e;
  --deep-navy: #252540;
  --slate: #4a4a6a;
  --muted-lavender: #8888a0;
  --silver: #b8b8c8;
  --ivory: #faf9f7;
  --warm-white: #f2f0ec;
  --taupe: #a89f91;
  --gold: #9e8c6c;
  --rule: #d8d4cc;
  --text: #2a2a3a;
  --text-light: #5a5a70;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Freight Text Pro', 'Garamond', 'EB Garamond', Georgia, serif;
  color: var(--text);
  background-color: var(--ivory);
  line-height: 1.82;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--slate); text-decoration: none; border-bottom: 1px solid var(--rule); }
a:hover { border-bottom-color: var(--gold); }

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  text-align: center;
}

.masthead-title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--midnight);
}

.masthead-title a { color: var(--midnight); border: none; }
.masthead-title a:hover { border: none; }

.masthead-tagline {
  font-size: 0.72rem;
  color: var(--muted-lavender);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Gill Sans', 'Optima', Arial, sans-serif;
  margin-top: 0.2rem;
}

nav {
  margin-top: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--rule);
}

nav ul { list-style: none; display: flex; justify-content: center; gap: 2rem; }
nav a {
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-family: 'Gill Sans', 'Optima', Arial, sans-serif;
  text-transform: uppercase;
  border: none;
}
nav a:hover { color: var(--midnight); border: none; }

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

main.wide { max-width: 880px; }

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--midnight);
  margin-bottom: 0.3rem;
  text-align: center;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--muted-lavender);
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--midnight);
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}

p { margin-bottom: 1rem; }

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.5rem 0;
}

.editorial-card {
  padding: 1.5rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.editorial-card:nth-child(2n) { border-right: none; }

.editorial-card .category {
  font-family: 'Gill Sans', 'Optima', Arial, sans-serif;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

.editorial-card h3 {
  margin-top: 0.2rem;
  font-size: 0.98rem;
  color: var(--midnight);
}

.editorial-card h3 a { color: var(--midnight); border: none; }
.editorial-card h3 a:hover { color: var(--gold); }

.editorial-card .excerpt {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0.2rem 0 0;
  line-height: 1.55;
}

.aside-box {
  background: var(--warm-white);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-top: 2px solid var(--gold);
  font-size: 0.88rem;
}

.aside-box strong { color: var(--midnight); }

.site-footer {
  background: var(--midnight);
  color: var(--silver);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.68rem;
  font-family: 'Gill Sans', 'Optima', Arial, sans-serif;
}

.footer-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links ul { list-style: none; display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.6rem; }
.footer-links a { color: var(--silver); border: none; }

.footer-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.54rem;
  color: rgba(184,184,200,0.4);
}

@media (max-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card { border-right: none; }
  nav ul { flex-wrap: wrap; gap: 0.8rem; }
  main { padding: 1.5rem 1.2rem; }
  h1 { font-size: 1.4rem; }
}
