/* ====================================================
   HELPING WIGAN THRIVE – Premium CSS Design System
   ==================================================== */

/* --- TOKENS --- */
:root {
  --pink:        hsl(330, 62%, 45%);
  --pink-light:  hsl(330, 62%, 60%);
  --pink-dark:   hsl(330, 62%, 35%);
  --pink-pale:   hsl(330, 60%, 97%);

  --navy:        hsl(220, 40%, 14%);
  --navy-mid:    hsl(220, 35%, 20%);
  --navy-soft:   hsl(220, 30%, 28%);

  --slate:       hsl(215, 20%, 45%);
  --slate-light: hsl(215, 20%, 65%);

  --off-white:   hsl(210, 20%, 97%);
  --white:       #ffffff;

  --text-dark:   hsl(220, 30%, 15%);
  --text-body:   hsl(220, 15%, 30%);
  --text-muted:  hsl(220, 10%, 55%);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.18);

  --trans:       0.25s ease;
  --trans-slow:  0.45s ease;

  --max-w:       1200px;
  --header-h:    76px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- ACCESSIBILITY FOCUS RINGS (WCAG 2.1 AA) --- */
:focus-visible {
  outline: 3px solid var(--pink-light) !important;
  outline-offset: 3px !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: 760px; }
.text-center { text-align: center; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Bitter', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.eyebrow-light { color: var(--pink-light); }

.highlight { color: var(--pink); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(195, 42, 108, 0.35);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 8px 28px rgba(195, 42, 108, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover { background: var(--navy-mid); box-shadow: var(--shadow-lg); }

.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(0,0,0,.25), 0 4px 16px rgba(0,0,0,.15);
  transition: box-shadow var(--trans), background var(--trans);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
.logo { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }

.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--trans), background var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.8rem);
  height: 2px;
  background: var(--pink-light);
  border-radius: 2px;
  transition: transform var(--trans);
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--pink-light); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.social-btn:hover { background: var(--pink); color: var(--white); transform: scale(1.1); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 18, 35, 0.82) 0%,
    rgba(14, 18, 35, 0.65) 50%,
    rgba(195, 42, 108, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 6rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-footnote {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* ==============================
   SECTIONS
   ============================== */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section-light  { background: var(--white); }
.section-mid    { background: var(--off-white); }
.section-dark   { background: var(--navy); }
.section-testimonials { background: var(--navy-mid); }
.section-cta    { background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 60%, hsl(330,50%,55%) 100%); }
.section-split  { background: var(--white); }
.section-charity { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }

.section-header { margin-bottom: 3rem; }
.section-title  { margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-subtitle { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 0.75rem; }
.section-intro  { max-width: 680px; margin-inline: auto; margin-bottom: 3rem; font-size: 1.05rem; }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.grid-reverse { direction: rtl; }
.grid-reverse > * { direction: ltr; }

/* Prose */
.prose p { margin-bottom: 1rem; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--pink); font-weight: 600; text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--trans); }
.prose a:hover { text-decoration-color: var(--pink); }

/* ==============================
   SPLIT / WHY DIFFERENT
   ============================== */
.split-text h2 { color: var(--text-dark); margin-bottom: 1.25rem; }
.split-text p  { margin-bottom: 0.875rem; }

.split-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.card-accent::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(195,42,108,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.card-inner { position: relative; z-index: 1; text-align: center; }
.card-icon  { font-size: 3rem; margin-bottom: 1rem; }
.card-label { color: var(--slate-light); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.card-value { color: var(--white); font-family: 'Bitter', serif; font-size: 1.4rem; font-weight: 700; }

/* ==============================
   STEPS
   ============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.step-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--pink);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon svg { width: 24px; height: 24px; fill: var(--white); }
.step-number { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; color: var(--pink-light); text-transform: uppercase; }
.step-title { color: var(--white); font-family: 'Bitter', serif; font-size: 1.1rem; font-weight: 700; }
.step-desc  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }

/* ==============================
   CHARITY OF THE YEAR
   ============================== */
.charity-text h2  { color: var(--white); margin-bottom: 1.25rem; }
.charity-text p   { color: rgba(255,255,255,0.8); margin-bottom: 0.875rem; }
.charity-text .btn-primary { margin-top: 0.75rem; }
.charity-text a   { color: var(--pink-light); }

.section-light .charity-text h2,
.section-charity.section-light .charity-text h2 { color: var(--text-dark); }
.section-light .charity-text p,
.section-charity.section-light .charity-text p  { color: var(--text-body); }
.section-light .charity-text a,
.section-charity.section-light .charity-text a  { color: var(--pink); }
.section-light .charity-points li { color: var(--text-body); }

.charity-image {
  display: flex;
  justify-content: center;
}
.charity-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.charity-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xl);
}
.charity-brand-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  width: 100%;
  max-width: 420px;
}
.charity-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-body);
  border-left: 3px solid var(--pink);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ==============================
   LOGO CAROUSEL
   ============================== */
.logos-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 0.5rem;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  width: 120px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  filter: grayscale(0.3);
  transition: filter var(--trans), transform var(--trans);
}
.logo-item:hover { filter: grayscale(0); transform: scale(1.05); }
.logo-item img { max-width: 100%; max-height: 60px; object-fit: contain; }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================
   SOCIAL FOLLOW
   ============================== */
.social-follow {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.follow-btn svg { width: 18px; height: 18px; fill: currentColor; }
.follow-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.follow-btn.facebook { background: #1877F2; color: var(--white); }
.follow-btn.linkedin { background: #0A66C2; color: var(--white); }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonial-carousel { position: relative; max-width: 720px; margin-inline: auto; }
.testimonial-track { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeSlide 0.5s ease; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
}
.testimonial-quote-icon {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--pink);
  font-family: Georgia, serif;
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-logo { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; }
.testimonial-cite { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-name { color: var(--white); font-weight: 700; font-size: 0.95rem; }
.testimonial-role { color: rgba(255,255,255,0.55); font-size: 0.825rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.t-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background var(--trans), transform var(--trans);
}
.t-btn svg { width: 18px; height: 18px; }
.t-btn:hover { background: var(--pink); transform: scale(1.08); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background var(--trans), transform var(--trans);
}
.t-dot.active { background: var(--pink); transform: scale(1.3); }

/* ==============================
   CTA
   ============================== */
.cta-text { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 1rem; }
.cta-text strong { color: var(--white); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2.25rem 0; }
.cta-tagline { color: rgba(255,255,255,0.5); font-style: italic; font-size: 0.95rem; margin-top: 1.5rem; }

/* ==============================
   FOOTER
   ============================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-main { padding-block: clamp(3rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background var(--trans), color var(--trans);
}
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social-btn:hover { background: var(--pink); color: var(--white); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--pink-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.6rem; }
.contact-icon { width: 16px; height: 16px; fill: var(--pink-light); flex-shrink: 0; }
.footer-contact-list a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color var(--trans); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ==============================
   PAGE HERO (inner pages)
   ============================== */
.page-hero {
  padding-top: var(--header-h);
  padding-bottom: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero.no-wave::after {
  display: none !important;
}
.page-hero.no-wave {
  padding-bottom: 2rem;
}
.page-hero-inner {
  padding-block: clamp(3rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 0.75rem; }
.page-eyebrow  { color: var(--pink-light); display: block; margin-bottom: 0.5rem; }

/* ==============================
   BOARD MEMBERS GRID
   ============================== */
.board-intro { margin-bottom: 3rem; }
.board-intro h2 { color: var(--text-dark); margin-bottom: 1rem; }
.board-intro p  { font-size: 1.05rem; }
.board-intro a  { color: var(--pink); font-weight: 600; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(0,0,0,0.05);
}
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.board-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.board-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.board-card:hover .board-photo img { transform: scale(1.04); }

.board-company-badge-overlay {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  padding: 0.35rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid var(--white);
}
.board-company-badge-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.board-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.board-name    { font-family: 'Bitter', serif; font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.15rem; }
.board-company { font-size: 0.85rem; font-weight: 700; color: var(--pink); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.board-bio     { font-size: 0.875rem; line-height: 1.65; color: var(--text-body); margin-bottom: 1.25rem; }

.board-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.board-company-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--trans);
}
.board-company-link:hover {
  background: var(--pink);
  color: var(--white);
}
.board-linkedin-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0077b5;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans);
}
.board-linkedin-icon:hover {
  transform: scale(1.1);
}
.board-linkedin-icon svg { width: 14px; height: 14px; fill: currentColor; }

/* Board CTA box */
.board-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-top: 1rem;
}
.board-cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.board-cta-inner p  { color: rgba(255,255,255,0.75); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; font-size: 1.05rem; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h2 { color: var(--text-dark); margin-bottom: 0.75rem; }
.contact-info p  { font-size: 1.05rem; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--pink);
  transition: box-shadow var(--trans);
}
.contact-item:hover { box-shadow: var(--shadow-md); }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--pink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; fill: var(--white); }
.contact-item-text { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.contact-item-value a { color: var(--text-dark); transition: color var(--trans); }
.contact-item-value a:hover { color: var(--pink); }

.contact-ways { margin-top: 2rem; }
.contact-ways h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--text-dark); }
.contact-ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-way-card {
  padding: 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.contact-way-card:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.contact-way-card .icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-way-card h4  { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.contact-way-card p   { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.contact-form-wrap .form-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.04em; }
.form-label .req { color: var(--pink); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(195,42,108,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 16px rgba(195,42,108,0.3);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(195,42,108,0.4); }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: hsl(140, 60%, 97%);
  border-radius: var(--radius-md);
  border: 1.5px solid hsl(140, 40%, 80%);
  color: hsl(140, 45%, 30%);
  font-weight: 600;
  margin-top: 1rem;
}

/* ==============================
   ANIMATIONS
   ============================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-left, .animate-slide-right, .animate-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.animate-slide-left  { transform: translateX(-30px); }
.animate-slide-right { transform: translateX(30px); }
.in-view.animate-slide-left, .in-view.animate-slide-right, .in-view.animate-step {
  opacity: 1;
  transform: translate(0);
}

/* ==============================
   IMPACT TRACKER & PLEDGE METER
   ============================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--trans), box-shadow var(--trans);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.stat-number {
  font-family: 'Bitter', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pledge-meter-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.pledge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.pledge-title h3 {
  color: var(--white);
  font-size: 1.3rem;
}
.pledge-target {
  background: var(--pink);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pledge-bar-bg {
  width: 100%;
  height: 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.pledge-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-light) 100%);
  border-radius: 8px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pledge-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* ==============================
   IMPACT STORIES / CASE STUDIES
   ============================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.story-header-badge {
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.story-year {
  background: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xl);
}
.story-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.story-title {
  font-family: 'Bitter', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.story-highlights {
  list-style: none;
  margin-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.story-highlights li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.story-highlights li::before {
  content: '✓';
  color: var(--pink);
  font-weight: bold;
}
.story-quote {
  font-style: italic;
  font-size: 0.875rem;
  background: var(--off-white);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--pink);
  margin-top: auto;
}

/* ==============================
   DIRECTORY FILTERS & SEARCH
   ============================== */
.directory-controls {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.directory-search {
  position: relative;
  width: 100%;
}
.directory-search input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 2.8rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.directory-search input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(195,42,108,0.12);
}
.search-icon-svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-body);
  border: 1px solid rgba(0,0,0,0.1);
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* ==============================
   COMMUNITY FOOTPRINT MAP GRID
   ============================== */
.borough-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.area-chip:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
}
.area-name {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.area-detail {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==============================
   MULTI-STEP WIZARD
   ============================== */
.wizard-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.1);
  z-index: 0;
  transform: translateY(-50%);
}
.wizard-step-node {
  position: relative;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--trans);
}
.wizard-step-node.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.wizard-step-node.completed {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.wizard-pane {
  display: none;
}
.wizard-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.track-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.track-option {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans);
}
.track-option:hover, .track-option.selected {
  border-color: var(--pink);
  background: var(--pink-pale);
}
.track-option .icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.track-option h4 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.track-option p { font-size: 0.8rem; color: var(--text-body); margin: 0; }

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--trans);
}
.checkbox-card:hover, .checkbox-card input:checked + span {
  color: var(--pink-dark);
}
.checkbox-card input:checked ~ span { font-weight: 700; }

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

/* ==============================
   ACCESSIBILITY & BADGES
   ============================== */
.a11y-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}
.a11y-badge svg { width: 14px; height: 14px; fill: var(--pink-light); }


/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .step-card-wide { grid-column: span 1; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-ways-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--navy);
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-xl);
  }
  .main-nav.open .nav-list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .main-nav.open .nav-link { padding: 0.85rem 1rem; font-size: 1rem; border-radius: var(--radius-md); color: rgba(255,255,255,0.85); }
  .main-nav.open .nav-link::after { display: none; }
  .main-nav.open .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
  .main-nav.open .nav-link.active { background: rgba(195,42,108,0.2); color: var(--pink-light); }

  .burger { display: flex; }
  .header-social { display: none; }

  .hero-content { padding-block: 4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 480px) {
  .social-follow { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-ways-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ==============================
   BEFORE & AFTER IMPACT TOGGLE
   ============================== */
.ba-toggle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: 2rem;
}
.ba-nav {
  display: flex;
  background: var(--navy);
  padding: 0.5rem;
  gap: 0.5rem;
}
.ba-btn {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.ba-btn.active {
  background: var(--pink);
  color: var(--white);
}
.ba-btn:hover:not(.active) {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.ba-content {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) { .ba-content { grid-template-columns: 1fr; } }
.ba-state-box {
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
}
.ba-state-box.before {
  background: #f8fafc;
  border-left: 4px solid #94a3b8;
}
.ba-state-box.after {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
}
.ba-state-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.ba-state-box.before .ba-state-tag { background: #e2e8f0; color: #475569; }
.ba-state-box.after .ba-state-tag  { background: #dcfce7; color: #15803d; }
.ba-state-title { font-family: 'Bitter', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.ba-state-desc  { font-size: 0.875rem; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ==============================
   INTERACTIVE WIGAN BOROUGH SVG MAP
   ============================== */
.wigan-map-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 850px) { .wigan-map-container { grid-template-columns: 1fr; } }

.wigan-svg-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
}
.wigan-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}
.township-group {
  cursor: pointer;
  transition: all 0.3s ease;
}
.township-path {
  fill: var(--off-white);
  stroke: var(--navy);
  stroke-width: 2;
  transition: fill 0.3s ease, transform 0.3s ease;
}
.township-group:hover .township-path,
.township-group.active .township-path {
  fill: var(--pink);
  stroke: var(--navy);
}
.township-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  fill: var(--navy);
  pointer-events: none;
  transition: fill 0.3s ease;
}
.township-group:hover .township-label-text,
.township-group.active .township-label-text {
  fill: var(--white);
}

.map-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.map-info-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(195,42,108,0.2) 0%, transparent 70%);
}
.map-info-title { font-family: 'Bitter', serif; font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--white); }
.map-info-township { color: var(--pink-light); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.map-info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.map-stat-box { background: rgba(255,255,255,0.08); padding: 0.75rem; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); }
.map-stat-val { font-size: 1.25rem; font-weight: 800; color: var(--pink-light); }
.map-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.75); }

/* ==============================
   EMBEDDABLE WEB BADGE GENERATOR
   ============================== */
.badge-section-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 850px) { .badge-section-card { grid-template-columns: 1fr; text-align: center; } }

.badge-preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hwt-badge-graphic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--pink);
  box-shadow: 0 0 24px rgba(195,42,108,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--white);
  transition: transform 0.3s ease;
}
.hwt-badge-graphic:hover { transform: scale(1.06) rotate(3deg); }
.hwt-badge-graphic .badge-top { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.hwt-badge-graphic .badge-mid { font-family: 'Bitter', serif; font-size: 0.95rem; font-weight: 700; color: var(--pink-light); margin: 0.2rem 0; }
.hwt-badge-graphic .badge-bot { font-size: 0.65rem; font-weight: 700; background: var(--pink); padding: 0.15rem 0.5rem; border-radius: var(--radius-xl); color: var(--white); }

.embed-code-wrapper {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.embed-code-text {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--pink-light);
  word-break: break-all;
  white-space: pre-wrap;
  user-select: all;
  margin-bottom: 0.75rem;
}
.copy-code-btn {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.copy-code-btn:hover { background: var(--pink-dark); }

/* ==============================
   2026 NOMINATION COUNTDOWN & FAQ
   ============================== */
.nomination-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 850px) { .nomination-faq-grid { grid-template-columns: 1fr; } }

.countdown-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.time-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  min-width: 70px;
}
.time-val { font-size: 1.75rem; font-weight: 800; color: var(--pink-light); font-family: 'Bitter', serif; }
.time-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); }

/* ACCORDION FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Bitter', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--trans);
}
.faq-trigger:hover { color: var(--pink); }
.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--pink);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-panel {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}
.faq-panel p { font-size: 0.9rem; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ==============================
   EXECUTIVE PRINT-READY PDF PACK
   ============================== */
#print-pack-document {
  display: none;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm 12mm 10mm 12mm;
  }
  
  html, body {
    background: #ffffff !important;
    color: #0e1421 !important;
    font-size: 9.5pt !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide all standard web layout elements */
  body > *:not(#print-pack-document) {
    display: none !important;
  }

  /* Display dedicated PDF Pack container */
  #print-pack-document {
    display: block !important;
    width: 100% !important;
  }

  .pdf-page {
    page-break-after: always;
    break-after: page;
    background: #ffffff;
    box-sizing: border-box;
    padding-bottom: 10pt;
  }
  .pdf-page:last-child {
    page-break-after: avoid;
    break-after: avoid;
  }

  .pdf-header {
    background: #0e1421 !important;
    color: #ffffff !important;
    padding: 14pt 18pt;
    border-radius: 6pt;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14pt;
  }
  .pdf-title {
    font-family: 'Bitter', serif;
    font-size: 16pt;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 2pt 0;
  }
  .pdf-sub {
    font-size: 8.5pt;
    color: #f472b6 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .pdf-credit {
    text-align: right;
    font-size: 8pt;
    color: rgba(255,255,255,0.75) !important;
  }

  .pdf-intro-text {
    font-size: 9pt;
    line-height: 1.45;
    color: #334155 !important;
    margin-bottom: 12pt;
  }

  .pdf-section-title {
    font-family: 'Bitter', serif;
    font-size: 11pt;
    font-weight: 700;
    color: #0e1421 !important;
    border-bottom: 1.5pt solid #c32a6c;
    padding-bottom: 2pt;
    margin: 12pt 0 8pt 0;
  }

  .pdf-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6pt;
    margin-bottom: 12pt;
  }
  .pdf-stat-card {
    background: #f8fafc !important;
    border: 1pt solid #cbd5e1 !important;
    border-radius: 4pt;
    padding: 6pt 8pt;
    text-align: center;
  }
  .pdf-stat-val {
    font-family: 'Bitter', serif;
    font-size: 13pt;
    font-weight: 800;
    color: #c32a6c !important;
  }
  .pdf-stat-lbl {
    font-size: 7pt;
    font-weight: 700;
    color: #475569 !important;
    text-transform: uppercase;
  }

  .pdf-pledge-box {
    background: #f1f5f9 !important;
    border-left: 3.5pt solid #c32a6c !important;
    padding: 8pt 10pt;
    border-radius: 4pt;
    margin-bottom: 12pt;
  }

  .pdf-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8pt;
    margin-bottom: 12pt;
  }
  .pdf-case-card {
    background: #ffffff !important;
    border: 1pt solid #cbd5e1 !important;
    border-radius: 4pt;
    padding: 8pt;
  }
  .pdf-case-title { font-family: 'Bitter', serif; font-size: 9pt; font-weight: 700; color: #0e1421 !important; margin-bottom: 3pt; }
  .pdf-case-body  { font-size: 7.8pt; line-height: 1.35; color: #334155 !important; }

  .pdf-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5pt;
    margin-bottom: 12pt;
  }
  .pdf-board-item {
    background: #f8fafc !important;
    border: 1pt solid #e2e8f0 !important;
    border-radius: 3pt;
    padding: 5pt 7pt;
  }
  .pdf-board-name { font-weight: 700; font-size: 8.5pt; color: #0e1421 !important; margin: 0; }
  .pdf-board-comp { font-size: 7.5pt; font-weight: 700; color: #c32a6c !important; text-transform: uppercase; margin: 1pt 0; }
  .pdf-board-role { font-size: 7pt; color: #64748b !important; margin: 0; }

  .pdf-footer-bar {
    border-top: 1pt solid #e2e8f0;
    padding-top: 6pt;
    display: flex;
    justify-content: space-between;
    font-size: 7.5pt;
    color: #64748b !important;
    margin-top: 10pt;
  }
}

