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

:root {
  --navy:    #1A2744;
  --yellow:  #F2B705;
  --bg:      #FAFAF7;
  --text:    #1A1A1A;
  --muted:   #6B7280;
  --border:  #E5E4DF;
  --yellow-tint: rgba(242, 183, 5, 0.13);
  --light-navy: #2A3F6F;
  --off-white: #F8F8F6;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover {
  color: var(--navy);
  border-bottom-color: var(--yellow);
}

/* ── ISSUE HEADER STRIP (homepage) ── */
.issue-strip {
  background: var(--yellow-tint);
  border-bottom: 1px solid rgba(242, 183, 5, 0.3);
  padding: 2.75rem 1.5rem 3rem;
  text-align: center;
}

.issue-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem;
  font-variant: small-caps;
}

.issue-strip h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.issue-strip .sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  font-weight: 300;
}

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  transition: opacity 0.15s;
}

.read-btn:hover { opacity: 0.85; }

/* ── MAIN WRAPPER ── */
.main {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION DIVIDER ── */
.section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 0 1.25rem;
}

.section-head .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.section-head .rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── THIS ISSUE ── */
.this-issue {
  padding-bottom: 1rem;
}

.issue-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 3px solid var(--yellow);
  margin-bottom: 1.5rem;
}

.issue-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  min-width: 2rem;
  padding-top: 0.1rem;
  user-select: none;
}

.issue-body {}

.issue-topic {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.issue-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.issue-body p {
  font-size: 0.915rem;
  color: #3D3D3D;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.read-more:hover { opacity: 0.65; }

/* ── SUBSCRIBE CALLOUT ── */
.subscribe-callout {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  margin: 2rem 0;
  text-align: center;
}

.subscribe-callout h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.subscribe-callout .tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 0.75rem;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--navy);
  outline: none;
}

.subscribe-form input[type="email"]::placeholder { color: #9CA3AF; }

.subscribe-form button {
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.subscribe-form button:hover { opacity: 0.88; }

.subscribe-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── PAST ISSUES ── */
.past-issues {
  padding-bottom: 3rem;
}

.past-issues table {
  width: 100%;
  border-collapse: collapse;
}

.past-issues thead th {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid var(--border);
}

.past-issues thead th:last-child { text-align: right; }

.past-issues tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}

.past-issues tbody tr:hover { background: rgba(242, 183, 5, 0.06); }

.past-issues td {
  padding: 0.85rem 0;
  vertical-align: middle;
}

.past-issues .td-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  width: 3.5rem;
  padding-right: 1rem;
}

.past-issues .td-date {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  width: 7rem;
  padding-right: 1.25rem;
}

.past-issues .td-title {
  font-size: 0.895rem;
  color: var(--text);
  line-height: 1.4;
}

.past-issues .td-link {
  text-align: right;
  padding-left: 1rem;
}

.past-issues .td-link a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.past-issues .td-link a:hover {
  color: var(--navy);
  border-bottom-color: var(--yellow);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--yellow);
  letter-spacing: 0.03em;
}

/* ── ARCHIVE PAGE ── */
.page-header {
  background: var(--navy);
  padding: 3rem 2rem 2.75rem;
  text-align: center;
}

.page-header-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.page-header p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.archive-body {
  padding: 3.5rem 2rem 1rem;
}

.archive-inner {
  max-width: 680px;
  margin: 0 auto;
}

.issues-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.issues-table thead tr {
  border-bottom: 2px solid var(--navy);
}

.issues-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 1rem 0.75rem 0;
  text-align: left;
}

.issues-table th:last-child { padding-right: 0; }

.issues-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}

.issues-table tbody tr:hover {
  background: rgba(242,183,5,0.04);
}

.issues-table td {
  padding: 1rem 1rem 1rem 0;
  vertical-align: top;
  font-size: 0.875rem;
  color: var(--text);
}

.issues-table td:last-child { padding-right: 0; }

.issue-num-cell {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  font-size: 0.82rem;
}

.issue-date-cell {
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.82rem;
}

.issue-headline {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

.issue-read-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.issue-read-link:hover { opacity: 0.7; }

.archive-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 1.25rem 0 3.5rem;
  border-top: 1px solid var(--border);
}

/* ── ISSUE PAGES ── */
.issue-page-header {
  background: var(--navy);
  padding: 2.75rem 1.5rem 2.25rem;
  text-align: center;
}

.issue-page-header-inner {
  max-width: 680px;
  margin: 0 auto;
}

.issue-page-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: block;
}

.issue-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.issue-page-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.issue-page-back {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
}

.issue-page-back a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.issue-page-back a:hover {
  color: var(--navy);
  border-bottom-color: var(--yellow);
}

.issue-page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Issue section blocks */
.issue-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.issue-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.issue-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.issue-section p {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.78;
  margin-bottom: 1rem;
}

.issue-section p:last-child { margin-bottom: 0; }

/* Q&A items */
.qa-item {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--yellow);
}

.qa-item:last-child { margin-bottom: 0; }

.qa-q {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.qa-a {
  font-size: 0.925rem;
  line-height: 1.72;
  color: #2c2c2c;
}

/* District spotlight */
.district-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.district-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

/* References block */
.refs {
  background: var(--off-white);
  border-left: 3px solid var(--border);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #444;
}

.refs p { margin-bottom: 0; font-family: 'Inter', sans-serif; }

.refs-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.refs ul { padding-left: 1.25rem; }
.refs ul li { margin-bottom: 0.35rem; }
.refs a { color: var(--navy); text-decoration: underline; }

/* Question block (issue-003 style) */
.question-block {
  background: var(--off-white);
  border-left: 4px solid var(--yellow);
  padding: 1.5rem 1.75rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1rem;
}

.question-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* Link block (issue-003 style) */
.link-block {
  background: var(--light-navy);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.link-block p {
  color: rgba(255,255,255,0.9);
  font-size: 0.975rem;
}

.link-block a {
  color: var(--yellow);
  font-weight: 600;
}

/* Three things list (issue-003 style) */
.three-things {
  list-style: none;
  counter-reset: things;
}

.three-things li {
  counter-increment: things;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.three-things li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.things-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.things-text {
  font-size: 0.975rem;
  color: #2a2a2a;
  line-height: 1.75;
}

.things-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* Back link wrap */
.back-link-wrap {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.back-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 1px;
}

/* Subscribe callout variant (full-width, no border-radius) */
.subscribe-callout-full {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  margin: 0;
  border-radius: 0;
}

.subscribe-callout-full h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.subscribe-callout-full .tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.75rem;
}

.subscribe-callout-inner {
  max-width: 480px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links { display: none; }

  .issue-strip { padding: 2rem 1.25rem 2.25rem; }

  .issue-num { font-size: 1.5rem; }

  .subscribe-form { flex-direction: column; }
  .subscribe-form input[type="email"],
  .subscribe-form button { width: 100%; }

  .past-issues .td-date { display: none; }
  .past-issues .td-link { display: none; }

  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }

  .archive-body { padding: 2.5rem 1.25rem 1rem; }
  .subscribe-callout-full { padding: 3rem 1.25rem; }

  .issues-table th:nth-child(2),
  .issues-table td:nth-child(2) { display: none; }
}
