/* ============================================
   SAMANTHA ELIZABETH JUNE FOR CONGRESS
   Campaign Website Stylesheet
   ============================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Color Palette */
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #2a3d5c;
  --red: #c41e3a;
  --red-hover: #a81830;
  --red-light: #e8314f;
  --gold: #d4a843;
  --gold-hover: #c19730;
  --gold-light: #f0c95e;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-light: #f8f9fa;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-accent: 'Merriweather', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--red-hover);
}

/* ---- Skip Link (Accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-sm) var(--space-lg);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 10px;
  color: var(--white);
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

blockquote {
  font-family: var(--font-accent);
  font-style: italic;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn-donate {
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header.scrolled {
  background: rgba(15, 26, 46, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: var(--header-height);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-xs);
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-donate-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}

.nav-donate-btn:hover,
.nav-donate-btn:focus-visible {
  background: var(--red-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  background: 
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-party-label {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-section h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hero-slogan {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: var(--space-2xl);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(8px); }
  60% { transform: rotate(45deg) translateY(4px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PROMISE BANNER
   ============================================ */
.promise-banner {
  background: var(--gold);
  padding: var(--space-xl) 0;
  text-align: center;
}

.promise-quote {
  font-family: var(--font-heading);
}

.promise-quote p {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.promise-quote cite {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   SECTION HEADERS (Shared)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0 auto var(--space-lg);
  border-radius: 2px;
}

.section-divider-light {
  background: var(--gold);
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-header-light h2 {
  color: var(--white);
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  border: 3px solid rgba(212, 168, 67, 0.3);
}

.about-quick-facts {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.fact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--navy);
  font-size: 1.4rem;
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ============================================
   FAITH SECTION
   ============================================ */
.faith-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.faith-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.faith-content {
  position: relative;
  z-index: 2;
}

.faith-message {
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.faith-lead {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

/* Hat image in faith section */
.faith-hat-image {
  max-width: 320px;
  margin: var(--space-xl) auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(212, 168, 67, 0.35);
}

.hat-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 60%;
}

.scripture-quote {
  padding: var(--space-xl) var(--space-2xl);
  border-left: 4px solid var(--gold);
  margin: var(--space-xl) 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.scripture-quote p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.scripture-quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.faith-message > p:last-of-type {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}

/* Scripture Cards Grid */
.faith-scriptures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.scripture-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.scripture-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.scripture-card p {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.scripture-card cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Esther Quote */
.esther-quote {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-2xl);
  text-align: center;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 67, 0.05);
}

.esther-quote p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.esther-quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   ISSUES SECTION — Feature Spotlight Layout
   ============================================ */
.issues-section {
  padding: var(--space-4xl) 0;
  background: var(--off-white);
}

/* Issue Feature — Alternating spotlight cards */
.issue-feature {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.issue-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Accent strip (numbered sidebar) */
.issue-feature__accent {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.issue-feature__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0.25;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}

/* Body content area */
.issue-feature__body {
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-xl);
}

.issue-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.issue-feature__icon svg {
  width: 28px;
  height: 28px;
}

.issue-feature h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-md);
}

.issue-feature__desc {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

.issue-feature__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.issue-feature__points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.6;
}

.issue-feature__points li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.issue-feature__points--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
}

/* Stats row (for trafficking section) */
.issue-feature__stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 0.7;
}

/* --- Light variant (Issue 1) --- */
.issue-feature--light {
  background: var(--white);
}

.issue-feature--light .issue-feature__accent {
  background: linear-gradient(180deg, var(--red), var(--red-hover));
}

.issue-feature--light .issue-feature__number {
  color: var(--white);
  opacity: 0.35;
}

.issue-feature--light .issue-feature__icon {
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
}

.issue-feature--light h3 {
  color: var(--navy);
}

.issue-feature--light .issue-feature__desc {
  color: var(--text-secondary);
}

.issue-feature--light .issue-feature__points li {
  color: var(--text-secondary);
}

.issue-feature--light .issue-feature__points li svg {
  color: var(--red);
}

/* --- Dark variant (Issue 2) --- */
.issue-feature--dark {
  background: var(--navy);
  grid-template-columns: 1fr 100px;
}

.issue-feature--dark .issue-feature__accent {
  background: linear-gradient(180deg, var(--gold), var(--gold-hover));
}

.issue-feature--dark .issue-feature__number {
  color: var(--navy);
  opacity: 0.3;
}

.issue-feature--dark .issue-feature__body {
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.issue-feature--dark .issue-feature__icon {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.issue-feature--dark h3 {
  color: var(--white);
}

.issue-feature--dark .issue-feature__desc {
  color: rgba(255, 255, 255, 0.8);
}

.issue-feature--dark .issue-feature__points li {
  color: rgba(255, 255, 255, 0.8);
}

.issue-feature--dark .issue-feature__points li svg {
  color: var(--gold);
}

.issue-feature--dark .stat-number {
  color: var(--gold);
}

.issue-feature--dark .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Accent variant (Issue 3) --- */
.issue-feature--accent {
  background: var(--white);
  border: 2px solid var(--light-gray);
  box-shadow: var(--shadow-md);
}

.issue-feature--accent .issue-feature__accent {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
}

.issue-feature--accent .issue-feature__number {
  color: var(--white);
  opacity: 0.3;
}

.issue-feature--accent .issue-feature__icon {
  background: rgba(26, 39, 68, 0.08);
  color: var(--navy);
}

.issue-feature--accent h3 {
  color: var(--navy);
}

.issue-feature--accent .issue-feature__desc {
  color: var(--text-secondary);
}

.issue-feature--accent .issue-feature__points li {
  color: var(--text-secondary);
}

.issue-feature--accent .issue-feature__points li svg {
  color: var(--navy);
}

/* Additional Commitments */
.additional-commitments {
  text-align: center;
  margin-top: var(--space-3xl);
}

.additional-commitments h3 {
  margin-bottom: var(--space-xl);
  color: var(--navy);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.commitment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.commitment-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.commitment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.commitment-icon svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   JOIN / SIGNUP SECTION
   ============================================ */
.join-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}

.join-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.signup-wrapper {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.signup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.signup-card h3 {
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--navy);
}

.signup-card > p {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.required {
  color: var(--red);
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.form-group input::placeholder {
  color: var(--medium-gray);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-top: var(--space-md);
  margin-bottom: 0;
}

/* Signup Success */
.signup-success {
  text-align: center;
  padding: var(--space-xl) 0;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #28a745;
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.signup-success h4 {
  margin-bottom: var(--space-sm);
  color: var(--navy);
}

.signup-success p {
  color: var(--text-secondary);
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.donate-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.donate-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.donate-card h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--navy);
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.amount-btn {
  padding: 1rem;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.amount-btn:hover {
  border-color: var(--navy);
  background: rgba(26, 39, 68, 0.03);
}

.amount-btn.active {
  border-color: var(--red);
  background: rgba(196, 30, 58, 0.06);
  color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.custom-amount-wrapper {
  margin-bottom: var(--space-xl);
}

.custom-amount-wrapper label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.custom-amount-input {
  position: relative;
}

.dollar-sign {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--medium-gray);
}

.custom-amount-input input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.custom-amount-input input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.donate-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--medium-gray);
  margin-top: var(--space-lg);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--navy-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-slogan {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: var(--gold);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: var(--space-xl);
  text-align: center;
}

.fec-disclaimer {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.fec-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .issue-feature {
    grid-template-columns: 80px 1fr;
  }

  .issue-feature--dark {
    grid-template-columns: 1fr 80px;
  }

  .issue-feature__points--two-col {
    grid-template-columns: 1fr;
  }

  .faith-scriptures {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .commitments-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: var(--space-2xl);
    gap: var(--space-sm);
    transition: right var(--transition-base);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: var(--space-md);
    text-align: center;
  }

  .nav-donate-btn {
    margin-top: var(--space-md);
  }

  /* Hero adjustments */
  .hero-section {
    padding-top: calc(var(--header-height) + var(--space-2xl));
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Form adjustments */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Issue features - mobile stack */
  .issue-feature,
  .issue-feature--dark {
    grid-template-columns: 1fr;
  }

  .issue-feature__accent {
    padding: var(--space-md);
  }

  .issue-feature__number {
    writing-mode: horizontal-tb;
    font-size: 2rem;
  }

  .issue-feature__body {
    padding: var(--space-xl);
  }

  .issue-feature--dark .issue-feature__body {
    padding: var(--space-xl);
  }

  .issue-feature__stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .issue-feature__points--two-col {
    grid-template-columns: 1fr;
  }

  /* Donation amounts */
  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Commitments */
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .footer-links li {
    margin-bottom: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-party-label {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }

  .signup-card,
  .donate-card {
    padding: var(--space-xl);
  }

  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .amount-btn {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  #header,
  .hero-scroll-indicator,
  .mobile-menu-toggle,
  .nav-donate-btn,
  .btn,
  .signup-form,
  .donate-card {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem;
    background: none;
  }

  .hero-content h1,
  .hero-section h1 {
    color: #000;
    text-shadow: none;
  }

  section {
    break-inside: avoid;
    padding: 1.5rem 0;
  }
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================ */
.legal-hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-effective {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
}

.legal-content-section {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--white);
}

.legal-container {
  max-width: var(--container-narrow);
}

.legal-article h2 {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--light-gray);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article h3 {
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-article p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.legal-article ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
}

.legal-article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.legal-article a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-article a:hover {
  color: var(--red-hover);
}

.legal-article strong {
  color: var(--text-primary);
}

.legal-back {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-gray);
}

/* Footer legal links list */
.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.footer-legal-links li {
  margin-bottom: var(--space-sm);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-xl);
  }

  .legal-article h2 {
    margin-top: var(--space-xl);
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .footer-legal-links li {
    margin-bottom: 0;
  }
}
