/*
Theme Name: Stronger Nation Fund
Theme URI: https://strongernationfund.org
Author: Paul Crosby
Author URI: https://crosbycreativeco.com
Description: Custom theme for Stronger Nation Fund
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stronger-nation-fund
*/

/* Google Fonts - Now loaded via functions.php for better performance */
/* @import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@600;700;800&family=Fira+Sans:wght@300;400;500;600&display=swap'); */

/* CSS Variables - UNC Color Palette */
:root {
  --snf-navy: #13294b;
  --snf-blue: #4b9cd3;
  --snf-light-blue: #a4cae1;
  --snf-gray: #8d9092;
  --snf-white: #f9fafb;
  --snf-background: #f9fafb;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  background-color: var(--snf-background);
  color: var(--snf-navy);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: transparent;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.page-id-106 .site-header,
.page-id-108 .site-header,
.page-id-111 .site-header {
  background-color: var(--snf-navy);
}

/* WordPress Admin Bar Adjustments - Must come after base header styles */
body.admin-bar .site-header {
  top: 32px !important;
  z-index: 999;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

.site-header.scrolled {
  background-color: var(--snf-navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  min-height: 70px;
}

.logo a,
.logo .custom-logo-link {
  display: block !important;
  line-height: 0 !important;
  position: relative;
}

.logo img,
.custom-logo,
.custom-logo-link img {
  max-height: 70px !important;
  min-height: 55px !important;
  width: auto !important;
  height: 70px !important;
  display: block !important;
  transition: all 0.3s ease;
  position: relative;
  animation: logoShineFilter 2s ease-in-out 0.5s;
}

/* Logo shine effect using filter brightness */
@keyframes logoShineFilter {
  0%, 20% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.6);
  }
  80%, 100% {
    filter: brightness(1);
  }
}

.site-header.scrolled .logo img,
.site-header.scrolled .custom-logo,
.site-header.scrolled .custom-logo-link img {
  max-height: 55px !important;
  height: 55px !important;
}

.site-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-logo img {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.scrolled .site-logo img {
  height: 55px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: white;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-navigation a:hover {
  color: var(--snf-light-blue);
  border-bottom-color: var(--snf-light-blue);
}

/* Donate Button in Navigation - Multiple selectors for WordPress menu classes */
.main-navigation .btn-donate,
.main-navigation a.btn-donate,
.nav-menu .btn-donate,
.nav-menu li a[href*="donate"],
.main-navigation li a[href*="donate"],
.menu-item a[href*="donate"],
#primary-menu a[href*="donate"],
footer .btn-donate {
  background-color: var(--snf-light-blue) !important;
  color: var(--snf-navy) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  border-bottom: none !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  text-shadow: none !important;
  display: inline-block !important;
}

.main-navigation .btn-donate:hover,
.main-navigation a.btn-donate:hover,
.nav-menu .btn-donate:hover,
.nav-menu li a[href*="donate"]:hover,
.main-navigation li a[href*="donate"]:hover,
.menu-item a[href*="donate"]:hover,
#primary-menu a[href*="donate"]:hover {
  background-color: white !important;
  color: var(--snf-navy) !important;
  border-bottom: none !important;
  transform: translateY(-1px) !important;
}
.main-navigation .btn-donate a {
  color: var(--snf-navy) !important;
  text-shadow: none;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-menu-toggle .hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background-color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.is-active .hamburger:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-active .hamburger:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.1);
  will-change: transform;
}

.hero-slideshow img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(19, 41, 75, 0.88) 0%, rgba(19, 41, 75, 0.75) 50%, rgba(75, 156, 211, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-accent-line {
  width: 120px;
  height: 6px;
  background-color: var(--snf-light-blue);
  margin: 0 auto 30px;
}

.hero-title {
  font-size: clamp(50px, 8vw, 140px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 30px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--snf-light-blue) 0%, #fff 50%, var(--snf-light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--snf-light-blue);
  color: var(--snf-navy);
}

.btn-primary:hover {
  background-color: var(--snf-blue);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(164, 202, 225, 0.3);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--snf-navy);
  color: var(--snf-navy) !important;;
}

.btn-secondary:hover {
  background-color: var(--snf-blue);
  border: 2px solid var(--snf-blue);
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(164, 202, 225, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
  z-index: 3;
  cursor: pointer;
}

.scroll-indicator span {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
  opacity: 0.8;
}

.scroll-indicator svg {
  color: var(--snf-light-blue);
  width: 24px;
  height: 24px;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* About Section */
.about-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--snf-background);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(19, 41, 75, 0.03) 2px,
    rgba(19, 41, 75, 0.03) 4px
  );
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, rgba(19, 41, 75, 0.05), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-eyebrow,
.eyebrow {
  display: inline-block;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--snf-blue);
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--snf-navy);
}

.section-title .text-light-blue {
  color: var(--snf-light-blue);
}

.text-light-blue {
  color: var(--snf-light-blue);
}

.section-accent-line,
.accent-line {
  width: 96px;
  height: 6px;
  background-color: var(--snf-light-blue);
  margin: 0 auto 30px;
  display: block;
}

.section-intro {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-weight: 400 !important;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #67787F;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-grid,
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: 24px;
  line-height: 1.7;
  color: var(--snf-gray);
  margin-bottom: 24px;
}

.about-stats,
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  border-left: 4px solid var(--snf-light-blue);
  padding-left: 16px;
}

.stat-number {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--snf-navy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--snf-gray);
  margin-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: white;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: rgba(19, 41, 75, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(19, 41, 75, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--snf-navy);
  transform: scale(1.1);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--snf-navy);
}

.value-card:hover .value-icon svg {
  color: white;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* About Section Specific Styles */
.about-section .eyebrow {
  color: var(--snf-blue);
  font-weight: 700;
}

.about-section .accent-line {
  background-color: var(--snf-blue);
}

.value-description {
  font-size: 14px;
  color: var(--snf-gray);
  line-height: 1.5;
}

/* Issues Section */
.issues-section {
  padding: 120px 0;
  background: #13294b;
  position: relative;
  overflow: hidden;
  color: white;
}

.issues-section .eyebrow {
  color: var(--snf-light-blue);
}

.issues-section .section-title {
  color: white;
}

.issues-section .section-title .text-navy {
  color: var(--snf-light-blue);
}

.issues-section .accent-line {
  background-color: var(--snf-light-blue);
}

/* Subtle dot pattern */
.issues-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Top-left glow */
.issues-section::after {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 156, 211, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Bottom-right glow - using a pseudo element on the container */
.issues-grid::before {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(164, 202, 225, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.issue-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  position: relative;
  height: 400px;
  cursor: pointer;
}

.issue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(19, 41, 75, 0.9) 0%, rgba(75, 156, 211, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.issue-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 80px 0;
  border-color: transparent var(--snf-light-blue) transparent transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.issue-card:hover::before {
  opacity: 1;
}

.issue-card:hover::after {
  opacity: 1;
}

.issue-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.issue-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.issue-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.issue-card:hover .issue-description {
  opacity: 1;
  max-height: 150px;
}

.issue-btn {
  color: var(--snf-light-blue);
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
}

.issue-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.issue-card:hover .issue-btn {
  opacity: 1;
  transform: translateY(0);
  color: white;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--snf-background);
  position: relative;
}

.contact-section .eyebrow {
  color: var(--snf-light-blue);
  font-weight: 700;
}

.contact-section .accent-line {
  background-color: var(--snf-blue);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(19, 41, 75, 0.03) 2px,
    rgba(19, 41, 75, 0.03) 4px
  );
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, rgba(19, 41, 75, 0.05), transparent);
  pointer-events: none;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border: solid #CFDBE3 1px;
    mix-blend-mode: luminosity;
    max-width: 1024px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 5px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--snf-navy);
}

.contact-form-wrapper button {
    min-width: 30%;
    text-transform: uppercase !important;
    font-size: 20px !important;
    font-family: "Fira Sans Extra Condensed" !important;
    background-color: var(--snf-navy) !important;

}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1024px;
  margin: 30px auto;
  gap: 20px;
}

.contact-info-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(164, 202, 225, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background-color: var(--snf-light-blue);
  transform: scale(1.1);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--snf-light-blue);
}

.contact-card:hover .contact-icon svg {
  color: var(--snf-navy);
}

.contact-label {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 14px;
  color: var(--snf-navy);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--snf-navy);
}

.contact-detail a:hover {
  color: var(--snf-blue);
}

/* Footer */
.site-footer {
  background-color: var(--snf-navy);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--snf-light-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}
.snf-footer-flex {
    display: flex;
    column-gap: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .about-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .issues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(19, 41, 75, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 100px 20px 40px;
    overflow-y: auto;
  }

  .main-navigation.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Stack about section on mobile */
  .about-grid,
  .about-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    max-width: 400px;
  }

  .main-navigation li {
    width: 100%;
    text-align: center;
  }

  .main-navigation a {
    font-size: 24px;
    padding: 15px 20px;
    display: block;
    border-bottom: 2px solid transparent;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-section,
  .issues-section,
  .contact-section {
    padding: 80px 0;
  }

  .values-grid,
  .issues-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-section,
  .issues-section,
  .contact-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 24px 16px;
  }
}

/* ==========================================
   ISSUE MODAL STYLES
   ========================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 41, 75, 0.85);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.is-open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
  background: white;
  transform: rotate(90deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.modal-close svg {
  color: var(--snf-navy);
}

.modal-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(19, 41, 75, 0.8) 0%, 
    rgba(19, 41, 75, 0.4) 50%, 
    transparent 100%);
}

.modal-body {
  padding: 40px 48px;
}

.modal-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.modal-description {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--snf-gray);
  line-height: 1.8;
  white-space: pre-line;
}

.modal-description p {
  margin-bottom: 16px;
}

.modal-description p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-container {
    padding: 0;
    align-items: flex-start;
  }

  .modal-content {
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-image-wrapper {
    height: 200px;
    border-radius: 0;
  }

  .modal-body {
    padding: 32px 24px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-description {
    font-size: 16px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Ensure issue-link button styles work for both <a> and <button> */
.issue-link {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
}

/* Issue Card Icon Badge */
.issue-icon-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  background-color: var(--snf-light-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.issue-card:hover .issue-icon-badge {
  background-color: white;
  transform: scale(1.1);
}

.issue-icon-badge svg {
  width: 28px;
  height: 28px;
  color: var(--snf-navy);
}

.issue-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.issue-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top,
    rgba(19, 41, 75, 0.9) 0%,
    rgba(19, 41, 75, 0.6) 30%,
    rgba(19, 41, 75, 0.3) 60%,
    transparent 100%);
  z-index: 1;
}

.issue-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive - Issues Grid */
@media (max-width: 1400px) {
  .issues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .issues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .issues-grid {
    grid-template-columns: 1fr;
  }
}

/* Modal Icon Badge */
.modal-icon-badge {
  position: absolute;
  bottom: 24px;
  left: 32px;
  width: 64px;
  height: 64px;
  background-color: var(--snf-light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal-icon-badge svg {
  width: 32px;
  height: 32px;
  color: var(--snf-navy);
}

/* Footer Disclaimer */
.footer-disclaimer {
  font-size: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  background-color: #2C3F5A;
  border-radius: 4px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 1);
}

/* Modal Short Title Overlay */
.modal-short-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.2;
  max-width: 80%;
}

@media (max-width: 768px) {
  .modal-short-title {
    font-size: 32px;
  }
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 10px;
}

.footer-column {
  color: white;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
  margin-top: 30px;
  margin-left: auto;
}

.footer-contact strong {
  color: white;
  font-weight: 600;
}

.footer-contact a {
  color: var(--snf-light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

 @media screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    ul.footer-links {
        flex-direction: column;
    }
    .footer-logo img {
        margin-left: initial !important;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

/* Transition properties for all animated elements */
.section-header,
.about-text,
.value-card,
.stat-item,
.issue-card,
.contact-form,
.hero-content {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated in state */
.section-header.animate-in,
.about-text.animate-in,
.value-card.animate-in,
.stat-item.animate-in,
.issue-card.animate-in,
.contact-form.animate-in,
.hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content special animation (fade up and scale) */
.hero-content {
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.animate-in {
  transform: translateY(0) scale(1);
}

/* Section headers slide in from left with underline animation */
.section-header {
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.animate-in {
  transform: translateX(0);
}

/* Accent line grows in */
.accent-line,
.hero-accent-line {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.section-header.animate-in .accent-line,
.section-header.animate-in .hero-accent-line,
.hero-content.animate-in .accent-line,
.hero-content.animate-in .hero-accent-line {
  transform: scaleX(1);
}

/* Value cards - slide up and rotate in */
.value-card {
  transform: translateY(50px) rotate(-2deg);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card.animate-in {
  transform: translateY(0) rotate(0deg);
}

/* Issue cards - 3D flip effect */
.issue-card {
  transform: perspective(1000px) rotateY(-15deg) translateY(40px);
  transform-style: preserve-3d;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.issue-card.animate-in {
  transform: perspective(1000px) rotateY(0deg) translateY(0);
}

/* Stats counter effect */
.stat-item {
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.animate-in {
  transform: translateY(0) scale(1);
}

/* Contact form - slide from bottom */
.contact-form {
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form.animate-in {
  transform: translateY(0);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .section-header,
  .about-text,
  .value-card,
  .stat-item,
  .issue-card,
  .contact-form,
  .hero-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   ========================================== */

/* Compact Hero Banner for Legal Pages */
.legal-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--snf-navy) 0%, rgba(19, 41, 75, 0.95) 50%, var(--snf-blue) 100%);
  margin-top: 100px;
  overflow: hidden;
}

/* Subtle pattern overlay */
.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* Glow effects */
.legal-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(164, 202, 225, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.legal-hero-overlay {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(75, 156, 211, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.legal-hero-content .hero-accent-line {
  width: 80px;
  height: 4px;
  background-color: var(--snf-light-blue);
  margin: 0 auto 24px;
}

.legal-hero-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legal-last-updated {
  font-family: 'Fira Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--snf-light-blue);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Legal Content Section */
.legal-content-section {
  padding: 80px 0 120px;
  background-color: var(--snf-background);
  position: relative;
}

/* Subtle diagonal pattern */
.legal-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(19, 41, 75, 0.02) 2px,
    rgba(19, 41, 75, 0.02) 4px
  );
  pointer-events: none;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: white;
  padding: 60px 80px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(19, 41, 75, 0.08);
}

/* Legal Section Styling */
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(19, 41, 75, 0.1);
}

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

.legal-section-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--snf-light-blue);
  display: inline-block;
}

.legal-subsection-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  margin: 32px 0 16px;
  letter-spacing: 0.5px;
}

.legal-section p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

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

.legal-section a {
  color: var(--snf-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-section a:hover {
  color: var(--snf-navy);
  border-bottom-color: var(--snf-navy);
}

/* Legal Lists */
.legal-list {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-list li {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
  position: relative;
}

.legal-list li strong {
  color: var(--snf-navy);
  font-weight: 600;
}

/* Ordered list styling */
ol.legal-list {
  counter-reset: legal-counter;
  list-style: none;
  padding-left: 32px;
}

ol.legal-list li {
  counter-increment: legal-counter;
}

ol.legal-list li::before {
  content: counter(legal-counter) ".";
  position: absolute;
  left: -32px;
  color: var(--snf-blue);
  font-weight: 600;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 18px;
}

/* Unordered list styling */
ul.legal-list {
  list-style: none;
}

ul.legal-list li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--snf-light-blue);
  border-radius: 50%;
}

/* Address blocks */
.legal-address {
  background: rgba(19, 41, 75, 0.03);
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid var(--snf-light-blue);
  margin: 20px 0;
}

.legal-address p {
  margin: 0;
  line-height: 1.6;
}

.legal-address strong {
  color: var(--snf-navy);
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .legal-content-wrapper {
    padding: 50px 60px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    min-height: 260px;
    margin-top: 85px;
  }

  .legal-hero-content {
    padding: 40px 20px;
  }

  .legal-content-section {
    padding: 60px 0 80px;
  }

  .legal-content-wrapper {
    padding: 40px 24px;
    margin: 0 16px;
    border-radius: 4px;
  }

  .legal-section-title {
    font-size: 24px;
  }

  .legal-subsection-title {
    font-size: 18px;
  }

  .legal-section p,
  .legal-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-hero {
    min-height: 220px;
  }

  .legal-hero-title {
    font-size: 28px;
  }

  .legal-content-wrapper {
    padding: 32px 20px;
    margin: 0 12px;
  }

  .legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .legal-section-title {
    font-size: 22px;
  }

  .legal-address {
    padding: 20px 16px;
  }
}

/* ==========================================
   ABOUT SENATOR PAGE
   ========================================== */

/* ----- Hero ----- */
.senator-hero {
  background: var(--snf-navy);
  padding: 140px 0 100px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern */
.senator-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Corner glow */
.senator-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 156, 211, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.senator-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.senator-hero-text {
  max-width: 560px;
}

.senator-eyebrow {
  display: inline-block;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--snf-light-blue);
  margin-bottom: 16px;
}

.senator-hero-text .hero-accent-line {
  width: 80px;
  height: 4px;
  background-color: var(--snf-light-blue);
  margin: 0 0 32px;
}

.senator-hero-title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin: 0 0 28px;
}

.senator-name-highlight {
  background: linear-gradient(135deg, var(--snf-light-blue) 0%, #fff 50%, var(--snf-light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.senator-hero-tagline {
  font-family: 'Fira Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 28px;
}

.senator-hero-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(164, 202, 225, 0.3);
  border-radius: 4px;
  color: var(--snf-light-blue);
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.senator-hero-state svg {
  color: var(--snf-light-blue);
  flex-shrink: 0;
}

/* Portrait Frame */
.senator-hero-portrait {
  position: relative;
  flex-shrink: 0;
}

.portrait-frame {
  position: relative;
  width: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Decorative accent block behind the portrait */
.portrait-accent {
  position: absolute;
  top: 20px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--snf-light-blue);
  border-radius: 8px;
  z-index: 0;
  opacity: 0.4;
}

/* ----- Committee Ribbon ----- */
.senator-committees {
  background: white;
  padding: 60px 0;
  border-bottom: 1px solid rgba(19, 41, 75, 0.08);
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.committee-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid rgba(19, 41, 75, 0.08);
  transition: all 0.3s ease;
}

.committee-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: var(--snf-light-blue);
}

.committee-icon {
  width: 56px;
  height: 56px;
  background: rgba(19, 41, 75, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.committee-card:hover .committee-icon {
  background: var(--snf-navy);
}

.committee-icon svg {
  color: var(--snf-navy);
  transition: color 0.3s ease;
}

.committee-card:hover .committee-icon svg {
  color: white;
}

.committee-card h3 {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  margin-bottom: 6px;
}

.committee-card p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  color: var(--snf-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- Policy Champion Section ----- */
.senator-policy {
  padding: 120px 0 100px;
  background-color: var(--snf-background);
  position: relative;
  overflow: hidden;
}

.senator-policy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(19, 41, 75, 0.02) 2px,
    rgba(19, 41, 75, 0.02) 4px
  );
  pointer-events: none;
}

.policy-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.policy-sidebar {
  position: sticky;
  top: 140px;
}

.policy-heading {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  line-height: 1.05;
  margin-bottom: 20px;
}

.policy-sidebar .accent-line {
  margin: 0;
}

.policy-content {
  position: relative;
  z-index: 1;
}

.policy-lead {
  font-size: 22px !important;
  font-weight: 400;
  color: var(--snf-navy) !important;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--snf-light-blue);
}

.policy-content p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 24px;
}

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

/* ----- Policy Pillars ----- */
.policy-pillars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(19, 41, 75, 0.06);
  position: relative;
  z-index: 1;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 8px 16px;
  text-align: center;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(19, 41, 75, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
  background: var(--snf-navy);
}

.pillar-icon svg {
  color: var(--snf-navy);
  transition: color 0.3s ease;
}

.pillar:hover .pillar-icon svg {
  color: white;
}

.pillar-label {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--snf-navy);
}

.pillar-divider {
  width: 1px;
  height: 60px;
  background: rgba(19, 41, 75, 0.12);
  flex-shrink: 0;
}

/* ----- Personal Story Section ----- */
.senator-story {
  padding: 120px 0;
  background: var(--snf-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Dot pattern */
.senator-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Top-left glow */
.senator-story::after {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 156, 211, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.story-heading {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}

.story-content p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

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

/* ----- Timeline ----- */
.story-timeline {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--snf-light-blue), rgba(164, 202, 225, 0.2));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

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

.timeline-marker {
  position: absolute;
  left: -34px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--snf-navy);
  border: 3px solid var(--snf-light-blue);
  border-radius: 50%;
  z-index: 1;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--snf-light-blue);
  transform: translateX(6px);
}

.timeline-label {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--snf-light-blue);
  display: block;
  margin-bottom: 6px;
}

.timeline-card p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* ----- CTA Section ----- */
.senator-cta {
  padding: 100px 0;
  background: var(--snf-background);
  text-align: center;
  position: relative;
}

.senator-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(19, 41, 75, 0.02) 2px,
    rgba(19, 41, 75, 0.02) 4px
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--snf-navy);
  margin-bottom: 20px;
}

.cta-inner .hero-accent-line {
  transform: scaleX(1);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .senator-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .senator-hero-text {
    max-width: 100%;
  }

  .senator-hero-text .hero-accent-line {
    margin: 0 auto 32px;
  }

  .senator-hero-state {
    margin: 0 auto;
  }

  .senator-hero-portrait {
    margin: 0 auto;
  }

  .portrait-frame {
    width: 320px;
  }

  .portrait-accent {
    right: -12px;
    top: 16px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-sidebar {
    position: static;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .senator-hero {
    margin-top: 85px;
    padding: 100px 0 80px;
  }

  .senator-hero-title {
    font-size: 48px;
  }

  .portrait-frame {
    width: 280px;
  }

  .committees-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .committee-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .committee-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .senator-policy,
  .senator-story {
    padding: 80px 0;
  }

  .policy-heading,
  .story-heading {
    font-size: 36px;
  }

  .policy-pillars {
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px;
  }

  .pillar-divider {
    display: none;
  }

  .pillar {
    width: calc(33.333% - 8px);
    min-width: 100px;
  }

  .senator-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .senator-hero {
    padding: 80px 0 60px;
  }

  .senator-hero-title {
    font-size: 40px;
  }

  .senator-hero-tagline {
    font-size: 17px;
  }

  .portrait-frame {
    width: 240px;
  }

  .portrait-accent {
    display: none;
  }

  .pillar {
    width: calc(50% - 8px);
  }
}