/* Broadside News Group — Broadsheet Heritage Design */
/* EB Garamond (headlines) + Libre Franklin (body/nav) */

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

:root {
  --ink: #1a1a1a;
  --ink-light: #2d2d2d;
  --ink-muted: #555;
  --ink-faint: #888;
  --parchment: #f7f3eb;
  --parchment-dark: #ede8dc;
  --parchment-deep: #e2dace;
  --cream: #faf8f4;
  --rule: #c4b9a4;
  --rule-dark: #8a7e6b;
  --accent: #6b1d1d;
  --accent-light: #8b2e2e;
  --white: #fff;
}

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

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== MASTHEAD ===== */
.masthead {
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.masthead a { color: var(--parchment-dark); text-decoration: none; }
.masthead a:hover { color: var(--white); }

/* ===== HEADER / NAMEPLATE ===== */
.nameplate {
  text-align: center;
  padding: 2.5rem 1rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.nameplate-rule-top {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1.2rem;
  height: 4px;
  background: var(--ink);
  position: relative;
}

.nameplate-rule-top::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
}

.nameplate h1 {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.nameplate-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.nameplate-dateline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 1rem;
  font-weight: 500;
}

.nameplate-rule-bottom {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 1px;
  background: var(--rule-dark);
}

/* ===== NAVIGATION ===== */
.nav-bar {
  background: var(--cream);
  border-bottom: 3px double var(--rule);
  padding: 0;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-bar a {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border-left: 1px solid var(--rule);
  transition: color 0.2s, background 0.2s;
}

.nav-bar a:first-child { border-left: none; }

.nav-bar a:hover, .nav-bar a.active {
  color: var(--accent);
  background: var(--parchment);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/hero-press.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(26, 20, 14, 0.75) 40%,
    rgba(40, 30, 18, 0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 750px;
}

.hero-ornament {
  font-size: 1.4rem;
  color: rgba(196, 185, 164, 0.5);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-kicker {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.5);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--parchment);
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(247, 243, 235, 0.65);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== EDITORIAL FIGURE ===== */
.editorial-figure {
  margin: 2.5rem 0;
  text-align: center;
}

.editorial-figure img {
  width: 100%;
  max-width: 900px;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) contrast(1.1);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.editorial-figure figcaption {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}

/* ===== STAT BLOCKS ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.stat-block {
  padding: 1.8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.stat-number {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* ===== MAIN CONTENT ===== */
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

/* Section headers — broadsheet style */
.section-header {
  text-align: center;
  margin: 3rem 0 2rem;
  position: relative;
}

.section-header::before,
.section-header::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--rule);
  width: calc(50% - 120px);
}

.section-header::before { left: 0; }
.section-header::after { right: 0; }

.section-header h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
  background: var(--parchment);
  padding: 0 1rem;
  position: relative;
}

.section-header:first-child { margin-top: 0; }

/* Drop cap */
.drop-cap::first-letter {
  font-family: 'EB Garamond', Georgia, serif;
  float: left;
  font-size: 4.2rem;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.15rem;
  color: var(--accent);
  font-weight: 700;
}

/* Body text */
.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.body-text strong { color: var(--ink); font-weight: 600; }

.body-text a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.body-text a:hover { text-decoration-color: var(--accent); }

/* Blockquote — editorial style */
blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: var(--cream);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.7;
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ===== PROPERTIES GRID ===== */
.properties-tier {
  margin-bottom: 2.5rem;
}

.tier-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}

.property-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  list-style: none;
}

.property-item {
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.property-item:hover {
  border-color: var(--rule-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.property-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.property-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.property-name a:hover { border-bottom-color: var(--accent); }

.property-beat {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-weight: 400;
}

/* ===== POLICY SECTIONS ===== */
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.policy-section:last-child { border-bottom: none; }

.policy-section h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.policy-section ol, .policy-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}

/* ===== LEADERSHIP ===== */
.leadership-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.leadership-info h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.leadership-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.leadership-info p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: var(--parchment-dark);
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(247,243,235,0.5);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 0.6rem;
}

.footer-nav-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(247,243,235,0.55);
  text-decoration: none;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: var(--parchment); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(247,243,235,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(247,243,235,0.45);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--parchment); }

/* ===== SMALL CAPS UTILITY ===== */
.small-caps {
  font-variant: small-caps;
  letter-spacing: 0.06em;
}

/* ===== HAIRLINE RULE ===== */
.hairline {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 2rem 0;
}

.double-rule {
  border: none;
  height: 3px;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  margin: 2rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nameplate h1 { font-size: 2.2rem; }
  .hero { min-height: 400px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-content { padding: 2rem 1.2rem; }
  .stat-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stat-block { padding: 1.2rem; }
  .editorial-figure img { height: 180px; }
  .nav-inner { flex-wrap: wrap; justify-content: center; }
  .nav-bar a { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
  .section-header::before, .section-header::after { width: calc(50% - 80px); }
  .leadership-card { flex-direction: column; }
  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 1rem; }
  .property-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nameplate h1 { font-size: 1.7rem; }
  .content-wrap { padding: 1.5rem 1rem 2rem; }
}
