/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Old Standard TT', Georgia, 'Times New Roman', serif;
  background: #f5f1eb;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #1a1a1a; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: #1a1a1a;
  color: #d4c9b8;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Masthead ──────────────────────────────────────────────── */
.masthead {
  text-align: center;
  padding: 1.5rem 0 0.25rem;
  background: #f5f1eb;
}
.masthead-rule {
  height: 2px;
  background: #1a1a1a;
  margin: 0.5rem 0;
}
.masthead-rule + .masthead-rule { margin-top: 0; }
.logo {
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0.5rem 0 0.15rem;
}
.tagline {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

/* ─── Navigation ────────────────────────────────────────────── */
.main-nav {
  border-top: 1px solid #1a1a1a;
  border-bottom: 3px double #1a1a1a;
  background: #f5f1eb;
  margin-bottom: 1.5rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  padding: 0.15rem 0;
}
.main-nav a.active {
  border-bottom: 2px solid #1a1a1a;
}
.main-nav a:hover {
  text-decoration: none;
  border-bottom: 2px solid #888;
}

/* ─── Main Grid ─────────────────────────────────────────────── */
.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.hero { grid-column: 1 / 2; grid-row: 1 / 2; }
.sidebar { grid-column: 2 / 3; grid-row: 1 / 2; border-left: 1px solid #ccc; padding-left: 1.75rem; }
.bottom-row { grid-column: 1 / -1; grid-row: 2 / 3; }

/* ─── Hero Article ──────────────────────────────────────────── */
.hero-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #c41e1e;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}
.hero-headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.hero-byline {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
}
.hero-headshot {
  float: right;
  width: 180px;
  margin: 0 0 1rem 1.25rem;
  text-align: center;
}
.hero-headshot img {
  width: 100%;
  display: block;
  border: 1px solid #bbb;
}
.hero-headshot span {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: #666;
  line-height: 1.4;
  margin-top: 0.35rem;
}
.hero-image {
  margin: 0 0 1rem;
}
.hero-image img {
  width: 100%;
  display: block;
  border: 1px solid #bbb;
}
.hero-image figcaption {
  font-size: 0.78rem;
  font-style: italic;
  color: #555;
  line-height: 1.5;
  margin-top: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px solid #ddd;
}
.hero-body p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  text-align: justify;
  text-indent: 1.5em;
}
.hero-body p:first-child { text-indent: 0; }
.hero-body p:first-child::first-line { font-variant: small-caps; }

.article-continued {
  text-align: right;
  font-size: 0.85rem;
  color: #888;
  text-indent: 0 !important;
}

/* ─── Sidebar ───────────────────────────────────────────────── */
.sidebar-article {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ddd;
}
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.sidebar-article h3 a:hover { text-decoration: underline; }
.sidebar-article p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.55;
}
.sidebar-divider {
  height: 3px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin: 0.25rem 0 1.25rem;
}

/* ─── Bottom Row ────────────────────────────────────────────── */
.bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  border-top: 3px double #1a1a1a;
  padding-top: 1.5rem;
}
.bottom-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.bottom-article h3 a:hover { text-decoration: underline; }
.bottom-article p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.55;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: #999;
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.7;
}
.footer-rule {
  height: 1px;
  background: #333;
  margin-bottom: 1rem;
}
.footer-small {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.25rem;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .logo { font-size: 2.25rem; }
  .main-grid {
    grid-template-columns: 1fr;
  }
  .hero { grid-column: 1; }
  .sidebar {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    padding-left: 0;
    border-top: 3px double #1a1a1a;
    padding-top: 1.25rem;
  }
  .bottom-row {
    grid-template-columns: 1fr;
    grid-column: 1;
  }
  .hero-headline { font-size: 1.5rem; }
}
