/* ============================================
   BETH CARRIGG FOR LEXINGTON COUNTY COUNCIL
   Global Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Montserrat:wght@400;500;600;700;800;900&family=Lora:ital@0;1&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #1e3a5f;
  --navy-dark:  #152b47;
  --navy-light: #2a4f7c;
  --red:        #b8091c;
  --red-dark:   #960717;
  --white:      #f0ebe2;
  --gray-light: #e6dfd4;
  --gray-mid:   #e0e4ea;
  --gray-text:  #555f6e;
  --black:      #1a1a1a;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     4px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--red);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  font-variant: small-caps;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-variant: normal; font-family: 'Montserrat', sans-serif; }

p {
  margin-bottom: 1rem;
  color: var(--gray-text);
  font-size: 1rem;
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--gray-light);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 90px 5%;
}

.section-padding-sm {
  padding: 60px 5%;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-red { color: var(--red) !important; }

.bg-navy { background: var(--navy); }
.bg-gray { background: var(--gray-light); }
.bg-white { background: var(--white); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 1.5rem;
}

.divider-left {
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.95rem;
}

/* --- HEADER & NAVIGATION --- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f7f3ee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 120px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.site-logo {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 1.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(192, 16, 15, 0.06);
}

.nav-donate {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
}

.nav-donate:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Social icons in header */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 1.5rem;
}

.header-social a {
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition);
}

.header-social a:hover {
  color: var(--red);
}

/* Mobile donate button — hidden on desktop */
.mobile-donate {
  display: none;
}

/* Nav Facebook icon — hidden on desktop, shown in mobile menu */
.nav-social-item {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- FOOTER --- */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 5% 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-main {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.7);
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

/* --- CARDS --- */
.card {
  background: #f0ebe2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--red);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 16, 15, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 1.3rem;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  background: #ffffff;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-control::placeholder {
  color: #aab0ba;
  font-weight: 400;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item label {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  cursor: pointer;
  margin-bottom: 0;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 0.5rem;
}

/* --- ALERTS --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 90px;
  }

  .header-social {
    display: none;
  }

  .logo-img {
    height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #f7f3ee;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 5% 2.5rem;
    box-shadow: var(--shadow-md);
    gap: 0;
    margin-right: 0;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-mid);
    border-radius: 0;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
  }

  /* Remove border from Contact (li before donate) */
  .nav-links li:nth-child(5) a {
    border-bottom: none;
  }

  .nav-donate {
    display: inline-block !important;
    margin-top: 2rem !important;
    border-radius: var(--radius) !important;
    padding: 14px 50px !important;
    font-size: 1rem !important;
    border-bottom: none !important;
    width: auto !important;
  }

  .nav-social-item {
    display: flex !important;
    justify-content: center;
    padding: 1.5rem 0 0 !important;
    border-bottom: none !important;
    width: 100%;
  }

  .nav-facebook {
    color: var(--navy) !important;
    font-size: 1.5rem;
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border-bottom: none !important;
  }

  .nav-facebook:hover {
    color: var(--red) !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-padding {
    padding: 60px 5%;
  }
}


@media (max-width: 480px) {
  .btn-lg {
    padding: 15px 30px;
  }
}
/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* --- Hero --- */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 43, 71, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Slogan */
.hero-slogan {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.hero-slogan-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.3rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.slogan-star {
  color: var(--red);
  font-size: 0.85em;
}

/* Mobile slogan strip — hidden on desktop */
.signup-mobile-slogan {
  display: none;
  background: var(--navy-dark);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.signup-mobile-slogan-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.signup-mobile-slogan-text:last-child {
  margin-bottom: 0;
}

/* Signup Card */
.signup-card {
  background: rgba(21, 43, 71, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 780px;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.5fr 0.7fr;
}

/* Photo column */
.signup-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.signup-photo-img {
  position: absolute;
  inset: 0;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Form column */
.signup-form-wrap {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.signup-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.signup-form-wrap .form-group {
  margin-bottom: 1rem;
}

.signup-form-wrap .btn {
  margin-top: 0.5rem;
}

.signup-control {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: var(--white) !important;
  padding: 11px 14px !important;
}

.signup-control::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

.signup-control:focus {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.6) !important;
  box-shadow: none !important;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .signup-card {
    max-width: 840px;
  }
}

@media (max-width: 1024px) {
  .signup-card {
    max-width: 700px;
    grid-template-columns: 1fr 1.3fr;
  }
}

@media (max-width: 768px) {
  /* Hide pond background on mobile */
  .home-hero {
    min-height: auto;
    background: none;
    overflow: hidden;
  }

  .hero-bg {
    display: none;
  }

  .hero-slogan {
    display: none;
  }

  .hero-content {
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .hero-signup {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Card goes full width, stacked */
  .signup-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    min-height: auto;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    background: var(--navy);
  }

  .signup-mobile-slogan {
    display: block;
  }

  /* Photo bust — fixed height, cropped from waist up */
  .signup-photo {
    min-height: 380px;
    max-height: 380px;
    width: 100%;
  }

  .signup-photo-img {
    object-position: top center;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .signup-form-wrap {
    padding: 2rem 1.5rem;
  }

  .signup-logo {
    max-width: 200px;
    margin-bottom: 1.25rem;
  }
}








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

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1rem;
  transition: var(--transition);
}

.read-more:hover {
  gap: 0.7rem;
  color: var(--red-dark);
}

/* --- Meet Beth Strip --- */
.meet-strip {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 500px;
}

.meet-strip-image {
  overflow: hidden;
  position: relative;
}

.meet-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s ease;
}

.meet-strip:hover .meet-strip-image img {
  transform: scale(1.03);
}

.meet-strip-content {
  background: #f0ebe2;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meet-strip-content h2 {
  margin: 0.5rem 0 0;
}

.meet-strip-content p {
  margin: 1rem 0;
}

.meet-strip-content .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* --- Quote Strip --- */
.quote-strip {
  text-align: center;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  border: none;
  background: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.quote-cite {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* --- CTA Section --- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cta-card {
  background: #f0ebe2;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.cta-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cta-featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cta-featured h3,
.cta-featured p {
  color: var(--white);
}

.cta-featured p {
  color: rgba(255,255,255,0.8);
}

.cta-featured:hover {
  border-color: var(--navy-light);
}

.cta-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.cta-featured .cta-icon {
  color: var(--white);
}

.cta-card h3 {
  margin-bottom: 0.75rem;
}

.cta-card .btn {
  margin-top: 1.5rem;
}

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

  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .meet-strip {
    grid-template-columns: 1fr;
  }

  .meet-strip-image {
    height: 350px;
  }

  .meet-strip-content {
    padding: 60px 5%;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* --- Bio Section --- */
.bio-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 600px;
}

.bio-image {
  overflow: hidden;
  position: relative;
  background: var(--gray-mid);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bio-content {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-content h2 {
  margin: 0.5rem 0 0;
}

.bio-content p {
  margin-top: 1rem;
}

.bio-content blockquote {
  margin: 1.5rem 0;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-item {
  background: #f0ebe2;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-item .card-icon {
  margin: 0 auto 1.25rem;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* --- Timeline --- */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-mid);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2.5rem;
}

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

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  transform: translateX(50%);
}

.timeline-content h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin: 0;
}

/* --- About CTA --- */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bio-section {
    grid-template-columns: 1fr;
  }

  .bio-image {
    height: 400px;
  }

  .bio-content {
    padding: 60px 5%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.5rem;
  }
}
/* ============================================
   ISSUES PAGE STYLES
   ============================================ */

.issue-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-mid);
  align-items: start;
}

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

.issue-block-alt {
  background: var(--gray-light);
  padding: 3rem 0;
  position: relative;
}

.issue-block-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -9999px;
  right: -9999px;
  background: var(--gray-light);
  z-index: -1;
}

.issue-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============================================
   ISSUE INFOGRAPHIC COMPONENTS
   ============================================ */

/* Shared header & footer */
.infographic-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius) var(--radius) 0 0;
}

.infographic-header i {
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.infographic-header strong {
  color: var(--white);
}

.infographic-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
}

.infographic-footer i {
  flex-shrink: 0;
}

.infographic-footer strong {
  color: var(--white);
}

.infographic-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.infographic-section-label i {
  color: var(--red);
}

/* ---- Roads Infographic ---- */
.roads-infographic {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}

.infographic-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: #f0ebe2;
  padding: 1.75rem;
}

.infographic-col {
  padding: 0 1rem;
}

.infographic-divider-v {
  width: 1px;
  background: var(--gray-mid);
  margin: 0 0.5rem;
}

.road-stat-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.road-stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid var(--navy);
  background: var(--gray-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.road-stat-item-alert {
  border-left-color: var(--red);
}

.road-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.road-stat-item-alert .road-stat-number {
  color: var(--red);
}

.road-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
}

.road-reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.road-reality-item {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: center;
}

.road-reality-item-cost {
  grid-column: 1 / -1;
  background: var(--red);
}

.road-reality-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

.road-reality-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-top: 0.25rem;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

/* ---- Property Tax Infographic ---- */
.tax-infographic {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}

.tax-flow {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f0ebe2;
  padding: 2rem 1.75rem;
}

.tax-flow-step {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
}

.tax-flow-step-columbia {
  background: var(--navy);
}

.tax-flow-step-county {
  background: var(--navy-light);
}

.tax-flow-step-you {
  background: var(--gray-light);
  border: 2px solid var(--gray-mid);
}

.tax-flow-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.tax-flow-step-columbia .tax-flow-icon,
.tax-flow-step-county .tax-flow-icon {
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.tax-flow-step-you .tax-flow-icon {
  color: var(--navy);
}

.tax-flow-label {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.tax-flow-step-columbia .tax-flow-label,
.tax-flow-step-county .tax-flow-label {
  color: var(--white);
}

.tax-flow-step-you .tax-flow-label {
  color: var(--navy);
}

.tax-flow-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.6rem;
}

.tax-flow-step-columbia .tax-flow-sub,
.tax-flow-step-county .tax-flow-sub {
  color: rgba(255,255,255,0.6);
}

.tax-flow-step-you .tax-flow-sub {
  color: var(--gray-text);
}

.tax-flow-desc {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.tax-flow-step-columbia .tax-flow-desc,
.tax-flow-step-county .tax-flow-desc {
  color: rgba(255,255,255,0.9);
  -webkit-font-smoothing: antialiased;
}

.tax-flow-step-you .tax-flow-desc {
  color: var(--gray-text);
}

.tax-flow-arrow {
  font-size: 1.4rem;
  color: var(--red);
  padding: 0 0.75rem;
  flex-shrink: 0;
}

.tax-callout-box {
  display: flex;
  align-items: stretch;
  background: var(--navy-dark);
  margin: 0 1.75rem 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.tax-callout-left {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
}

.tax-callout-flag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
}

.tax-callout-right {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .infographic-body {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .infographic-divider-v {
    display: none;
  }

  .infographic-col {
    padding: 0;
  }

  .infographic-col + .infographic-col {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-mid);
  }

  /* Make all reality items full width on mobile */
  .road-reality-grid {
    grid-template-columns: 1fr;
  }

  .road-reality-item {
    grid-column: 1 / -1;
  }

  .tax-flow {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.5rem;
  }

  .tax-flow-step {
    width: 100%;
  }

  .tax-flow-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .tax-callout-box {
    margin: 0 1.25rem 1.25rem;
    flex-direction: column;
  }

  .tax-callout-left {
    width: 100%;
    padding: 0.75rem 1.25rem;
    justify-content: flex-start;
  }

  .tax-callout-flag {
    max-width: none;
    font-size: 0.8rem;
  }

  .infographic-footer {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    padding: 1rem 1.25rem;
  }
}



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

.issue-callout p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
}



.issue-body p {
  margin-top: 1rem;
}

.issue-points {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.issue-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.issue-points li i {
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .issue-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .issue-block-alt {
    padding: 2rem 0;
  }

  .issue-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}
/* ============================================
   NEWS PAGE STYLES
   ============================================ */

/* --- Resolution Page --- */
.resolution-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.resolution-back:hover {
  color: var(--red);
  gap: 0.75rem;
}

.resolution-page-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.resolution-page-icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.resolution-page-header h2 {
  color: #ffffff;
  margin: 0.25rem 0 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.resolution-page-header p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem !important;
}

.resolution-page-body {
  background: #ffffff;
  border: 1px solid var(--gray-mid);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
}

.resolution-page-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}

.resolution-page-body em {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

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

.resolution-resolved p {
  margin-bottom: 0.75rem;
}

.resolution-resolved p:last-child {
  margin-bottom: 0;
}

.resolution-rule {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-top: 2rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .resolution-page-header {
    flex-direction: column;
    gap: 1rem;
  }

  .resolution-page-body {
    padding: 1.5rem;
  }
}

/* --- News image placeholder (when no image available) --- */
.news-featured-image--placeholder {
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  min-height: 200px;
}

.news-featured-image--resolution {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 240px;
  padding: 2rem;
}

.resolution-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.resolution-badge i {
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

.resolution-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* --- House Resolution Block --- */
.resolution-block {
  margin: 0 0 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid var(--gray-mid);
}

.resolution-inner {
  background: var(--gray-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
}

.resolution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy);
  padding: 1rem 1.5rem;
  color: var(--white);
}

.resolution-header i {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.resolution-header strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.resolution-header span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.resolution-body {
  padding: 1.75rem 2rem;
}

.resolution-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.resolution-body p strong {
  font-style: normal;
  color: var(--navy);
}

@media (max-width: 768px) {
  .resolution-body {
    padding: 1.25rem;
  }

  .news-featured-image--placeholder,
  .news-featured-image--resolution {
    min-height: 140px;
  }
}

.news-card-image--placeholder {
  background: var(--navy);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  padding: 1.5rem;
}

.news-card-image--placeholder .news-panel-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.25);
}

.news-card-image--placeholder .news-panel-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.4;
}

.news-featured-image--placeholder {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 360px;
  padding: 2rem;
  position: relative;
}

.news-featured-image--placeholder .news-panel-icon {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.2);
}

.news-featured-image--placeholder .news-panel-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}

/* --- News Section Headers --- */
.news-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-section-header h2 {
  margin-bottom: 0.5rem;
}

/* --- Statements & Releases Section --- */
.news-statements-section {
  background: var(--gray-light);
}

/* --- Featured Post --- */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid var(--gray-mid);
  align-items: center;
}

.news-featured:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-featured-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}

.news-featured-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.news-featured-content p {
  margin-bottom: 1.5rem;
}

/* --- News Two-Card Layout (for when only 2 articles are active) --- */
.news-two-card {
  max-width: 480px;
}

/* --- News Grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: #f0ebe2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-body h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  transition: var(--transition);
}

.read-more:hover {
  gap: 0.7rem;
  color: var(--red-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-featured-image img {
    height: 260px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   GET INVOLVED PAGE STYLES
   ============================================ */

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

.way-card {
  background: #f0ebe2;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.way-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--red);
  transform: translateY(-4px);
}

.way-card .card-icon {
  margin: 0 auto 1.25rem;
}

.way-card h3 {
  margin-bottom: 0.75rem;
}

/* --- Involved Layout --- */
.involved-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.involved-info h2 {
  margin: 0.5rem 0 0;
}

.involved-info p {
  margin-top: 1rem;
}

.volunteer-perks {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.volunteer-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.volunteer-perks li i {
  color: var(--red);
  font-size: 1rem;
}

/* --- Form Card --- */
.form-card {
  background: #f0ebe2;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
}

.form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

/* --- Select styling --- */
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231e3a5f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* --- Sign Note --- */
.sign-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--gray-light);
  border-left: 3px solid var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.sign-note i {
  color: var(--navy);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sign-note p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .involved-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ways-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .involved-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-card {
    padding: 1.75rem;
  }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

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

.contact-info h2 {
  margin: 0.5rem 0 0;
}

.contact-info > p {
  margin-top: 1rem;
}

/* ============================================
   POLICY PAGE STYLES
   ============================================ */

.policy-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-wrap h2 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-mid);
}

.policy-wrap h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-wrap h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.policy-wrap p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-list {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-list li {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.6;
  list-style: disc;
}

.policy-callout {
  background: var(--gray-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.policy-callout p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.policy-contact {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}

.policy-contact p {
  margin-bottom: 0.5rem;
}

.policy-contact a {
  color: var(--navy);
  font-weight: 600;
}

.policy-contact a:hover {
  color: var(--red);
}

/* --- Donate Modal --- */
.donate-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 50, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.donate-modal-overlay.open {
  display: flex;
}

.donate-modal {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 620px;
  width: 100%;
  overflow: hidden;
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.donate-modal-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.donate-modal-header h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
}

.donate-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.donate-modal-close:hover {
  color: #ffffff;
}

.donate-modal-body {
  padding: 2rem;
}

.donate-modal-body p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

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

.donate-modal-address p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: nowrap;
}

.donate-modal-footer {
  padding: 0 2rem 2rem;
}

.donate-modal-footer .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 480px) {
  .donate-modal-header {
    padding: 1.25rem 1.5rem;
  }

  .donate-modal-body {
    padding: 1.5rem;
  }

  .donate-modal-footer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .donate-modal-address p {
    white-space: normal;
  }
}

/* ============================================
   POLICY PAGE STYLES
   ============================================ */

.policy-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-wrap h2 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-mid);
}

.policy-wrap h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-wrap h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.policy-wrap p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-list {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-list li {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.6;
  list-style: disc;
}

.policy-callout {
  background: var(--gray-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.policy-callout p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.policy-contact {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}

.policy-contact p {
  margin-bottom: 0.5rem;
}

.policy-contact a {
  color: var(--navy);
  font-weight: 600;
}

.policy-contact a:hover {
  color: var(--red);
}
