/* ===================================================
   SID GOYAL FOR WARD 5 — CAMPAIGN WEBSITE STYLESHEET
   =================================================== */

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

:root {
  --navy:       #0D1F4E;
  --navy-dark:  #091540;
  --navy-mid:   #162961;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --light-gray: #EEF0F5;
  --mid-gray:   #7A8299;
  --dark-gray:  #2C3352;
  --text:       #1A2340;
  --text-light: #5A637A;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(13, 31, 78, 0.10);
  --shadow-lg:  0 8px 48px rgba(13, 31, 78, 0.16);
  --transition: 0.25s ease;

  --nav-h:      72px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.section {
  padding: 96px 0;
}
.section-tint   { background: var(--light-gray); }
.section-light  { background: var(--off-white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,31,78,0.25);
}
.btn-outline:hover {
  background: rgba(13,31,78,0.05);
  border-color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--light-gray);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-nav-gold {
  background: var(--white);
  color: var(--navy) !important;
  border: 2px solid var(--gold);
}
.btn-nav-gold:hover {
  background: var(--gold);
}

.btn-full { width: 100%; text-align: center; }

/* ======================================================
   NAVIGATION
   ====================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 20px rgba(13,31,78,0.06);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.logo-ward {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-links li a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ======================================================
   HERO
   ====================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 55%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(13,31,78,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle wave pattern */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  opacity: 0.6;
  background-size: cover;
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 160px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text h1 .accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-vote-date {
  display: inline-flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
}
.vote-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.vote-date {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-image-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(160deg, #091540 0%, #162961 100%);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}

.hero-photo {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ======================================================
   BANNER STRIP
   ====================================================== */
.banner-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
}
.banner-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.banner-inner span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.about-image-col {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #091540 0%, #162961 100%);
}

.about-img-secondary {
  margin-top: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-img-secondary img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(9,21,64,0.75));
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 20px 14px 10px;
  font-family: var(--font-head);
  letter-spacing: .04em;
}

.about-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: var(--shadow);
}
.about-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gold);
}

.about-text-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text-col .lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-text-col p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-quote {
  margin-top: 24px;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}

/* ======================================================
   PLATFORM — THREE PILLARS
   ====================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid rgba(13,31,78,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pillar-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pillar-tagline {
  font-size: 0.88rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.pillar-list li strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

/* ======================================================
   COMMUNITY
   ====================================================== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.community-stat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.community-stat:hover {
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.stat-text strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.stat-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.internet-voting-callout {
  display: flex;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
}

.callout-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.callout-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.callout-body p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  max-width: 520px;
}

/* ======================================================
   TIMELINE
   ====================================================== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 8px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--off-white);
}

.timeline-dot-gold {
  background: var(--gold);
  border-color: var(--navy);
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-date {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.timeline-date.highlight-date {
  color: var(--navy);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}

.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

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

/* ======================================================
   GET INVOLVED (ACCENT SECTION)
   ====================================================== */
.section-accent {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(13,31,78,0.05) 0%, transparent 55%),
    var(--white);
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.involve-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.involve-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.involve-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.involve-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.involve-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  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(13,31,78,0.08);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-light); }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--gold);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-item a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover {
  background: var(--gold);
}
.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.social-link:hover svg {
  color: var(--navy);
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 24px;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

/* ======================================================
   RESPONSIVE — TABLET (≤ 900px)
   ====================================================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 200px;
  }

  .hero-text h1 .accent { display: inline; }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-vote-date {
    margin: 0 auto;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 280px;
    border-radius: 50%;
    padding: 6px;
  }

  .hero-photo {
    aspect-ratio: 1/1;
    object-position: top;
    border-radius: 50%;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-col {
    max-width: 380px;
    margin: 0 auto;
  }

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

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

  .contact-info-card {
    position: static;
  }

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

  .internet-voting-callout {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ======================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ====================================================== */
@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(13,31,78,0.12);
  }

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

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .btn-nav {
    text-align: center;
    margin-top: 8px;
    padding: 14px 16px;
    font-size: 0.95rem;
  }

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

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

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .banner-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .timeline::before { left: 20px; }

  .timeline-dot {
    width: 42px;
    height: 42px;
  }
}

/* ======================================================
   SCROLL REVEAL ANIMATIONS
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ======================================================
   DONATE SECTION
   ====================================================== */
.donate-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .donate-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.donate-rules {
  list-style: none;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donate-rules li {
  font-size: .95rem;
  color: var(--text-light);
}

.donate-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-lg);
}
.donate-card-inner {
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 40px 36px;
  text-align: center;
}
.donate-icon { font-size: 2.5rem; margin-bottom: 12px; }
.donate-card-inner h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.donate-step {
  font-size: .92rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.donate-email {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 0 0 20px;
  letter-spacing: .02em;
  word-break: break-all;
}
.donate-note {
  font-size: .8rem;
  color: var(--mid-gray);
  margin-top: 14px;
}
.donate-note a { color: var(--navy-mid); text-decoration: underline; }

.involve-card-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 100%);
  color: var(--navy);
}
.involve-card-gold h4,
.involve-card-gold p { color: var(--navy); }
