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

:root {
  --black:    #0f0f0f;
  --dark:     #111827;
  --dark2:    #1f2937;
  --dark3:    #374151;
  --red:      #a32d2d;
  --red-dark: #7b1d1d;
  --red-light:#fcebeb;
  --amber:    #b45309;
  --amber-light:#fef3c7;
  --green:    #064e3b;
  --blue:     #1e3a5f;
  --white:    #ffffff;
  --gray:     #6b7280;
  --gray-light:#f3f4f6;
  --body:     #1f2937;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Georgia', sans-serif;
  --max-w:    1100px;
  --radius:   6px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 62px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

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

.nav-links a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  padding: 0.4rem 1rem !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-dark:hover { background: var(--red); color: var(--white); }

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(163,45,45,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 1.5rem 4rem 3rem;
}

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--amber);
  margin-top: 1.2rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #d1d5db;
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #4b5563;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── NUMBERS SECTION ── */
.numbers-section {
  background: var(--dark2);
  padding: 5rem 0;
  text-align: center;
}

.numbers-section .section-label { color: #9ca3af; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.number-card {
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
}

.number-card--dark { background: var(--dark3); }
.number-card--amber { background: var(--amber); }
.number-card--red { background: var(--red-dark); }

.number-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.number-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.number-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.numbers-caption {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.numbers-caption strong { color: var(--white); }

/* ── QUESTIONS SECTION ── */
.questions-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.questions-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.question-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: start;
}

.question-item:first-child { border-top: 1px solid #e5e7eb; }

.question-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #e5e7eb;
  line-height: 1;
  padding-top: 0.1rem;
}

.question-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.question-body p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── AMENDMENT SECTION ── */
.amendment-section {
  background: var(--gray-light);
  padding: 5.5rem 0;
}

.amendment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.amendment-text p {
  color: #374151;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.amendment-clarify {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #78350f !important;
  font-size: 0.97rem !important;
}

.callout-box {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
}

.callout-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.callout-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.callout-box p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ── MESSAGE SECTION ── */
.message-section {
  background: var(--dark);
  padding: 6rem 0;
  text-align: center;
}

.message-inner { max-width: 720px; margin: 0 auto; }

.message-section .section-label { color: #9ca3af; }

.message-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 1rem 0;
  font-style: normal;
}

.message-slogan {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--amber);
  margin: 1.5rem 0;
  line-height: 1;
}

.message-body {
  color: #9ca3af;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.message-section .btn { margin-top: 2rem; }

/* ── VOICES SECTION ── */
.voices-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.voice-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.voice-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.voice-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.voice-cred {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.voice-quote {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.voices-section .btn-outline { color: var(--red); border-color: var(--red); }
.voices-section .btn-outline:hover { background: var(--red); color: var(--white); }

/* ── HISTORY SECTION ── */
.history-section {
  background: var(--red-dark);
  padding: 5rem 0;
}

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

.history-section .section-label { color: rgba(255,255,255,0.6); }

.history-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.history-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.history-inner strong { color: var(--white); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 5.5rem 0;
  background: var(--gray-light);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-section > .container > p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.cta-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: left;
  transition: all var(--transition);
  display: block;
}

.cta-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(163,45,45,0.1);
  transform: translateY(-2px);
}

.cta-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.cta-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.cta-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.footer-mission {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.4rem; }
.footer ul li a { font-size: 0.9rem; color: #6b7280; transition: color var(--transition); }
.footer ul li a:hover { color: var(--white); }

.footer-col p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }
.footer-col p a { color: #9ca3af; text-decoration: underline; }
.footer-col p a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: #4b5563; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--dark);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.page-header .section-label { color: #9ca3af; }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-header .lead {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 680px;
  line-height: 1.65;
  padding-left: 1.5rem;
}

/* ── CONTENT BLOCKS ── */
.content-section { padding: 4.5rem 0; }
.content-section + .content-section { padding-top: 0; }

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}

.content-section p {
  color: #374151;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.alert-box {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.alert-box p {
  color: var(--red-dark) !important;
  font-size: 0.97rem !important;
  margin-bottom: 0 !important;
}

.alert-box strong { color: #7b1d1d; }

.info-box {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.info-box p { color: #78350f !important; font-size: 0.97rem !important; margin-bottom: 0 !important; }

.dark-box {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.dark-box p { color: #9ca3af !important; }
.dark-box h3 { color: var(--white) !important; }
.dark-box strong { color: var(--white); }

/* ── TIMELINE ── */
.timeline { margin: 2rem 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.timeline-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}

.timeline-content h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.95rem !important;
  color: var(--gray) !important;
  margin-bottom: 0 !important;
}

/* ── LEADER CARDS (leaders page) ── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.leader-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.leader-card-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.leader-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.2rem;
}

.leader-cred {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}

.leader-body {
  padding: 0 1.5rem 1.5rem;
}

.leader-body p {
  font-size: 0.97rem !important;
  color: #374151 !important;
}

/* ── ACTION ITEMS ── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.action-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.75rem;
}

.action-card-num {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.action-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.action-card p { font-size: 0.95rem; color: #374151; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ── DOCUMENT CARDS ── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.doc-card {
  background: var(--gray-light);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.doc-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.doc-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); }
.doc-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; flex: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--dark); padding: 1rem 0; border-bottom: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 1.5rem; }
  .nav-toggle { display: block; }

  .numbers-grid { grid-template-columns: 1fr; gap: 1rem; }
  .amendment-grid { grid-template-columns: 1fr; gap: 2rem; }
  .voices-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .leader-grid { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }

  .hero-content { padding: 3rem 1.5rem; }
}

@media (max-width: 600px) {
  .cta-grid { grid-template-columns: 1fr; }
  .question-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .question-num { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ── UTILITIES ── */
.bg-dark { background: var(--dark); }
.bg-gray { background: var(--gray-light); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

hr.divider { border: none; border-top: 1px solid #e5e7eb; margin: 2.5rem 0; }
hr.divider-dark { border: none; border-top: 1px solid #1f2937; margin: 2.5rem 0; }
