:root {
  --navy: #1b2a4a;
  --navy-light: #2d4373;
  --navy-dark: #0f1a30;
  --red: #b91c1c;
  --red-light: #ef4444;
  --white: #ffffff;
  --cream: #faf9f6;
  --gold: #b8860b;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --green: #166534;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, nav, .btn, .nav-link, .issue-label, .cta-banner, .footer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

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

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.9rem 0;
  letter-spacing: 0.02em;
}

.nav-brand span { color: var(--red-light); }

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

.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem 1rem;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}

.nav-link:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem !important;
  margin: 0.5rem 0 0.5rem 0.5rem;
  font-weight: 700;
}

.nav-cta:hover { background: var(--red-light); }

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185,28,28,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  position: relative;
}

.hero .tagline {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 0.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero .office {
  font-size: 0.9rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

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

/* ===== VOTE BANNER ===== */
.vote-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.vote-banner a { color: var(--white); text-decoration: underline; }

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== WHY KAHN ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== ISSUES ===== */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.issue-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-top: 4px solid var(--navy);
  transition: transform 0.15s, box-shadow 0.15s;
}

.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.issue-card.full-width {
  grid-column: 1 / -1;
}

.issue-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.issue-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.issue-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.issue-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}

.issue-card a:hover { text-decoration: underline; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  background: var(--gray-200);
  border-radius: 0.75rem;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-facts {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-facts li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 0.75rem;
}

.about-facts li span:first-child {
  font-weight: 700;
  min-width: 100px;
  color: var(--navy);
}

/* ===== ISSUES DETAIL ===== */
.issue-detail {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.issue-detail:last-child { border-bottom: none; }

.issue-detail h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.issue-detail .position-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  border-left: 3px solid var(--navy);
  padding-left: 1.25rem;
}

.talking-points {
  list-style: none;
  padding: 0;
}

.talking-points li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.talking-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== GET INVOLVED ===== */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.involve-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.involve-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.involve-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.involve-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

/* ===== EMAIL SIGNUP ===== */
.signup-section {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.signup-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.signup-section p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.signup-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}

.signup-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.9rem;
  font-family: inherit;
}

.signup-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* ===== VOTE INFO ===== */
.vote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vote-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.vote-card .date-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vote-card .date-month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.vote-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.vote-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== QUOTE ===== */
.quote-section {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.quote-text {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.quote-attr {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer a { color: rgba(255,255,255,0.9); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover { text-decoration: underline; }

.paid-for {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.05rem; }
  .why-grid { grid-template-columns: 1fr; }
  .issues-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .vote-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-link { padding: 0.75rem 1.5rem; }
  .nav-cta { margin: 0.5rem 1.5rem; text-align: center; }
  .section { padding: 2.5rem 0; }
}
