/*
 * Raghav Dhir for Brampton City Council – Ward 2 & 6
 * Campaign Website Stylesheet
 *
 * Design inspiration: Layout hierarchy modeled after johnfetterman.com
 * All copy and content is original. No donation content included.
 *
 * Author: Campaign Team
 * Stack: Vanilla HTML/CSS/JS – No build step required
 */

/* ============================================================
   IMPORTS & TOKENS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --navy:       #0A1628;
  --navy-mid:   #12223F;
  --navy-light: #1A3358;
  --gold:       #E8A020;
  --gold-dark:  #C8881A;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray-100:   #EEF1F6;
  --gray-200:   #D1D9E6;
  --gray-500:   #6B7A99;
  --gray-700:   #3A4A66;
  --red-accent: #C0392B;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Borders / Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.10);
  --shadow-md:  0 6px 24px rgba(10,22,40,0.15);
  --shadow-lg:  0 16px 48px rgba(10,22,40,0.22);

  /* Transitions */
  --ease: 0.25s ease;
  --ease-slow: 0.45s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--navy); overscroll-behavior-y: none; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* Focus states – WCAG */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section--light { background: var(--off-white); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: inherit;
  margin-bottom: var(--space-md);
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 60ch;
  line-height: 1.7;
}

.section-subtitle--white { color: var(--gray-200); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10,22,40,0.97);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.site-header.hero-top {
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.nav-logo__ward {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--ease), right var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0.85rem;
  right: 0.85rem;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  padding: var(--space-md);
  border-top: 1px solid var(--navy-light);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.nav-drawer.open { display: flex; flex-direction: column; gap: 0.5rem; }

.nav-drawer a {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}

.nav-drawer a:hover { background: var(--navy-light); color: var(--gold); }
.nav-drawer a.nav-cta { background: var(--gold); color: var(--navy) !important; margin-top: 0.5rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-xl) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.footer-brand__ward {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-200);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--gray-200);
  transition: color var(--ease);
}

.footer-col ul a:hover { color: var(--gold); }

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  font-size: 1rem;
  transition: background var(--ease), transform var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================
   HERO (HOME PAGE)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.35) 0%,
    rgba(10,22,40,0.5) 60%,
    rgba(10,22,40,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--nav-height) + var(--space-3xl)) var(--space-3xl);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.1s both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-name {
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.25rem;
  animation: fadeUp 0.8s 0.25s both;
}

.hero-name span { color: var(--gold); }

.hero-slogan {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.4s both;
}

.hero-slogan em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-slogan em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.6;
  border-radius: 2px;
}

.hero-signup {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
  animation: fadeUp 0.8s 0.55s both;
}

.hero-signup .form-fields {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  align-items: flex-start;
}

.hero-signup .form-fields .form-group {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.hero-signup input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
}

.hero-signup input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }

.hero-signup input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.18);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  animation: fadeUp 0.8s 0.7s both;
}

.hero-stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite 1.5s;
}

.hero-scroll svg { width: 20px; opacity: 0.6; }

/* ============================================================
   MEET RAGHAV SECTION
   ============================================================ */
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: center;
}

.meet-photo-wrap {
  position: relative;
}

.meet-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.meet-photo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
  max-width: 160px;
}

.meet-photo-badge strong { font-size: 1.5rem; font-family: var(--font-display); display: block; }

.meet-content p {
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.meet-content .btn { margin-top: var(--space-sm); }

/* ============================================================
   PRIORITIES PREVIEW (HOME)
   ============================================================ */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.priority-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.priority-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.priority-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.priority-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.priority-card .learn-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--ease);
}

.priority-card:hover .learn-link { gap: 0.6rem; }

/* ============================================================
   NEWS / COMMUNITY CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.news-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.news-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
}

.news-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.news-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.news-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  flex: 1;
}

.news-card .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

/* ============================================================
   JOIN BANNER (HOME)
   ============================================================ */
.join-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding-block: var(--space-xl);
  text-align: center;
}

.join-banner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.join-banner p {
  font-size: 1.125rem;
  color: rgba(10,22,40,0.75);
  margin-bottom: var(--space-lg);
}

.join-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding-block: calc(var(--nav-height) + var(--space-xl)) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.12) 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.page-hero__sub {
  font-size: 1.125rem;
  color: var(--gray-200);
  max-width: 55ch;
}

/* About bio grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-photo {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-photo-label {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
}

.about-photo-label strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }

.about-body h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.about-body p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: var(--space-lg);
}

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

.timeline-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-dot {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

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

.timeline-content p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.timeline-period {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.value-card h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; color: var(--gray-700); line-height: 1.55; }

/* ============================================================
   PRIORITIES PAGE
   ============================================================ */
.priority-detail {
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--gray-200);
}

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

.priority-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.priority-detail.alt .priority-detail-grid {
  grid-template-columns: 2fr 1fr;
}

.priority-detail.alt .priority-detail-text { order: -1; }

.priority-number {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--gray-100);
}

.priority-detail-aside {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  text-align: center;
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.priority-detail-aside .priority-icon-lg {
  font-size: 4rem;
  margin-bottom: var(--space-sm);
}

.priority-detail-aside h3 {
  font-size: 2.5rem;
  color: var(--navy);
}

.priority-detail-aside .priority-sum {
  font-size: 1rem;
  color: var(--gray-700);
  margin-top: 0.5rem;
  line-height: 1.55;
}

.priority-detail-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.priority-detail-text p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.priority-bullet-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.priority-bullet-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.priority-bullet-list li::before {
  content: '';
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
}

/* ============================================================
   FORMS (VOLUNTEER & CONTACT)
   ============================================================ */
.form-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.form-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.form-info p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.contact-detail__icon {
  font-size: 1.5rem;
  min-width: 2.5rem;
  text-align: center;
}

.contact-detail__text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); }
.contact-detail__text span   { font-size: 1rem; color: var(--navy); font-weight: 500; }

.campaign-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
}

.form-group .error-msg {
  font-size: 0.78rem;
  color: #C0392B;
  display: none;
}

.form-group .error-msg.show { display: block; }

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

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--navy);
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  width: 20px; height: 20px;
  min-width: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  background: var(--off-white);
  cursor: pointer;
  position: relative;
  transition: border-color var(--ease), background var(--ease);
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}

.form-success.show { display: block; }

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.form-success h3 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--gray-700); }

/* ============================================================
   VOLUNTEER PAGE SPECIFICS
   ============================================================ */
.how-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.how-help-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.how-help-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.how-help-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.how-help-card p  { font-size: 0.9rem; color: var(--gray-500); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   DECORATIVE
   ============================================================ */
.gold-bar {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }

.bg-stripes {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(232,160,32,0.05) 10px,
    rgba(232,160,32,0.05) 20px
  );
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .priority-detail-grid,
  .priority-detail.alt .priority-detail-grid { grid-template-columns: 1fr; }
  .priority-detail.alt .priority-detail-text { order: 0; }
  .priority-detail-aside { position: static; }
  .priority-number { font-size: 5rem; }
}

@media (max-width: 900px) {
  .meet-grid   { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .form-section-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .meet-photo-badge { right: 0; bottom: -1rem; }
}

@media (max-width: 600px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats  { flex-direction: column; gap: var(--space-sm); }
  .hero-signup { max-width: 100%; }
  .hero-signup .form-fields { flex-direction: column; }
  .hero-signup .form-fields .form-group { width: 100%; }
  .hero-signup input[type="email"] { min-width: unset; width: 100%; }
  .hero-signup .btn { width: 100%; text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .join-banner-actions { flex-direction: column; align-items: center; }
  .news-grid { grid-template-columns: 1fr; }
}
