:root {
  --leaf-green: #007A4D;
  --gold-yellow: #F9A818;
  --chili-red: #E23D28;
  --democratic-blue: #002395;
  --warm-ivory: #FAF9F6;
  --pure-black: #000000;
  --true-white: #FFFFFF;
  --dark-charcoal: #1F1F1F;
  --soft-gray: #E9E9E9;
  --text-gray: #5A5A5A;
}

/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--warm-ivory);
  color: var(--pure-black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--true-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  width: 145px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 34px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 3px;
  background: var(--leaf-green);
  transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.ward-button {
  background: var(--gold-yellow);
  color: var(--pure-black);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.ward-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(250, 249, 246, 1) 0%,
      rgba(250, 249, 246, 0.94) 55%,
      rgba(250, 249, 246, 0.75) 100%
    );
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--leaf-green);
  opacity: 0.08;
}

.hero::before {
  content: "";
  position: absolute;
  right: 100px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--gold-yellow);
  opacity: 0.14;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 850px;
}

.hero-label,
.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--democratic-blue);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  max-width: 1000px;
}

.hero h2 {
  margin-top: 22px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--leaf-green);
  font-weight: 900;
}

.hero p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 18px;
  color: var(--text-gray);
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold-yellow);
  color: var(--pure-black);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--pure-black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--pure-black);
  color: var(--true-white);
}

/* =========================
   INTRO
========================= */

.movement-intro {
  padding: 95px 0 50px;
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  text-align: center;
  margin: 0 auto;
}

.section-heading h2,
.civic-help-content h2,
.final-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--text-gray);
}

/* =========================
   TWO PATHS
========================= */

.choice-section {
  padding: 45px 0 95px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choice-card {
  min-height: 470px;
  padding: 42px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.civic-card {
  background: var(--gold-yellow);
}

.campaign-card {
  background: var(--leaf-green);
  color: var(--true-white);
}

.choice-number {
  position: absolute;
  right: 30px;
  top: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 92px;
  font-weight: 900;
  opacity: 0.1;
}

.choice-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.choice-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  font-weight: 900;
}

.choice-subtitle {
  font-weight: 700;
  font-size: 20px;
  margin: 24px 0 12px;
}

.choice-card p {
  max-width: 520px;
  font-size: 17px;
}

.choice-button {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 18px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.dark-button {
  background: var(--pure-black);
  color: var(--true-white);
}

.light-button {
  background: var(--true-white);
  color: var(--leaf-green);
}

/* =========================
   PRIORITIES
========================= */

.priorities-section {
  padding: 95px 0;
  background: var(--true-white);
}

.priority-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.priority-card {
  min-height: 300px;
  padding: 32px;
  color: var(--true-white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.priority-red {
  background: var(--chili-red);
}

.priority-blue {
  background: var(--democratic-blue);
}

.priority-green {
  background: var(--leaf-green);
}

.priority-number {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 900;
  opacity: 0.35;
}

.priority-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 1.1;
  margin-top: 10px;
}

.priority-card p {
  margin-top: 18px;
  flex-grow: 1;
}

.priority-card a {
  margin-top: 28px;
  font-weight: 700;
}

/* =========================
   WARD SECTION
========================= */

.ward-section {
  background: var(--democratic-blue);
  color: var(--true-white);
  padding: 70px 0;
}

.ward-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.ward-inner h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
}

.ward-inner p {
  max-width: 660px;
  margin-top: 10px;
  font-size: 18px;
}

.light-label {
  color: var(--gold-yellow);
}

.ward-search-button {
  background: var(--gold-yellow);
  color: var(--pure-black);
  white-space: nowrap;
}

/* =========================
   CIVIC HELP
========================= */

.civic-help-section {
  padding: 100px 0;
}

.civic-help-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.civic-help-content p {
  margin: 20px 0 28px;
  font-size: 18px;
  color: var(--text-gray);
}

.help-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.help-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: var(--true-white);
  border: 1px solid var(--soft-gray);
  border-radius: 10px;
  padding: 24px;
}

.help-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-green);
  color: var(--true-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.help-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
}

.help-item p {
  color: var(--text-gray);
  margin-top: 4px;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  padding: 80px 0;
  background: var(--gold-yellow);
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.final-buttons {
  display: flex;
  gap: 12px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--dark-charcoal);
  color: var(--true-white);
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-logo {
  width: 145px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a:hover {
  color: var(--gold-yellow);
}

.compliance-area {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px 0;
}

.compliance-area summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gold-yellow);
}

.compliance-content {
  margin-top: 16px;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  background: #151515;
  text-align: center;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
/* =========================
   HOMEPAGE HERO POLISH
========================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.hero-panel {
  background: var(--true-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-panel-top strong {
  color: var(--leaf-green);
}

.hero-panel-card {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.civic-mini-card {
  background: var(--gold-yellow);
  color: var(--pure-black);
}

.ims-mini-card {
  background: var(--leaf-green);
  color: var(--true-white);
}

.mini-number {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  opacity: 0.5;
}

.hero-panel-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-panel-card p {
  margin: 0;
  font-size: 15px;
  color: inherit;
}

.hero-panel-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-gray);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-panel-footer strong,
.hero-panel-footer span {
  display: block;
}

.hero-panel-footer span {
  color: var(--leaf-green);
  margin-top: 3px;
}


@media (max-width: 950px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 650px;
  }

}
/* Fix campaign hub text contrast */

.ims-card,
.ims-card h2,
.ims-card h3,
.ims-card p {
  color: #ffffff;
}

.ims-card p {
  opacity: 0.95;
}

.ims-card .section-label {
  color: #ffffff;
}

.ims-card .btn {
  background: #ffffff;
  color: #007A4D;
}
/* FORCE ALL TEXT INSIDE GREEN AND BLUE PANELS TO BLACK */

.ims-card,
.ims-card *,
.blue-card,
.blue-card *,
.blue-box,
.blue-box *,
.democratic-blue-card,
.democratic-blue-card * {
  color: #000000 !important;
  opacity: 1 !important;
}
/* =========================================================
   FIX GREEN CAMPAIGN CARD TEXT
========================================================= */

.campaign-card,
.campaign-card h1,
.campaign-card h2,
.campaign-card h3,
.campaign-card h4,
.campaign-card p,
.campaign-card span,
.campaign-card strong,
.campaign-card a {
  color: #000000 !important;
  opacity: 1 !important;
}


/* Keep campaign card button readable */

.campaign-card .light-button {
  background: #ffffff !important;
  color: #007A4D !important;
}
/* =========================================================
   WHITE HEADINGS + BLACK BODY TEXT
========================================================= */


/* -------------------------
   PRIORITY CARDS
------------------------- */

.priority-card h2,
.priority-card h3,
.priority-card .priority-number,
.priority-card a {
  color: #ffffff !important;
}

.priority-card p,
.priority-card span:not(.priority-number) {
  color: #000000 !important;
}


/* -------------------------
   WARD BLUE SECTION
------------------------- */

.ward-section h1,
.ward-section h2,
.ward-section h3,
.ward-section .section-label,
.ward-section .light-label {
  color: #ffffff !important;
}

.ward-section p,
.ward-section span,
.ward-section div,
.ward-section a:not(.btn) {
  color: #000000 !important;
}


/* Keep the yellow ward button readable */
.ward-section .ward-search-button,
.ward-section .ward-search-button * {
  color: #000000 !important;
}


/* -------------------------
   FINAL CTA YELLOW SECTION
------------------------- */

.final-cta h1,
.final-cta h2,
.final-cta h3,
.final-cta .section-label {
  color: #ffffff !important;
}

.final-cta p,
.final-cta span,
.final-cta div,
.final-cta a:not(.btn) {
  color: #000000 !important;
}


/* Keep buttons readable */
.final-cta .btn-primary,
.final-cta .btn-primary * {
  color: #000000 !important;
}

.final-cta .btn-outline,
.final-cta .btn-outline * {
  color: #000000 !important;
}
/* Darken Civic Hub supporting text */

.civic-card .choice-subtitle,
.civic-card p {
  color: #000000 !important;
  opacity: 1 !important;
}
/* Clickable hero path cards */

.hero-path-card {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
}

.hero-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.civic-path {
  background: #F9A818;
  color: #000000;
}

.ims-path {
  background: #007A4D;
  color: #ffffff;
}

.hero-path-card h3,
.hero-path-card p {
  margin: 0;
}

.hero-path-card p {
  margin-top: 8px;
}
/* =========================
   HERO CARD TEXT COLOURS
========================= */

/* Yellow Civic Hub card */
.civic-path h3,
.civic-path p {
  color: #1f1f1f !important;
}

.civic-path .mini-number {
  color: rgba(0, 0, 0, 0.45) !important;
}


/* Green IMS card */
.ims-path h3,
.ims-path p {
  color: #000000 !important;
}

.ims-path .mini-number {
  color: rgba(0, 0, 0, 0.5) !important;
}
/* Bubble around the two IMS buttons */

/* Wider, flatter bubble around IMS buttons */

.ims-button-bubble {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  min-width: 260px;
}

.ims-mini-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
}

.ims-mini-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;

  background: #ffffff;
  color: #007A4D !important;

  border-radius: 999px;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;

  text-decoration: none;
  transition: 0.2s ease;
  pointer-events: auto !important;
}

.ims-mini-button:hover {
  background: #F9A818;
  color: #000000 !important;
  transform: translateY(-2px);
}
.core-intro {
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 28px;
}

.core-intro p {
  color: #222222;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.core-intro strong {
  color: #007A4D;
  font-weight: 900;
}
/* =========================================
   GOVERNANCE FRAMEWORK
========================================= */

.governance-framework {
  background: #FAF9F6;
  padding: 70px 0;
}

.governance-framework .section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.governance-framework .section-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin: 10px 0 15px;
  color: #000000;
}

.governance-framework .section-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
}


/* GOVERNANCE BOXES */

.governance-box {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-left: 5px solid #002395;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.governance-box summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #000000;
  list-style: none;
}

.governance-box summary::-webkit-details-marker {
  display: none;
}

.governance-box summary::after {
  content: "+";
  float: right;
  color: #007A4D;
  font-size: 24px;
  font-weight: 900;
}

.governance-box[open] summary::after {
  content: "−";
}

.governance-text {
  padding: 0 24px 24px;
}

.governance-text h4 {
  color: #007A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  margin: 18px 0 6px;
}

.governance-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 12px;
}
/* =========================================
   LEADER IMPACT CASE STUDY
========================================= */

.leader-impact-section {
  background: #171717;
  color: #ffffff;
}

.leader-impact-section .section-heading h2,
.leader-impact-section .section-heading p {
  color: #ffffff;
}

.leader-impact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  margin-top: 40px;
}

.leader-metrics {
  display: grid;
  gap: 18px;
}

.leader-metric {
  background: #222222;
  border-left: 5px solid #F9A818;
  padding: 24px;
  border-radius: 10px;
}

.leader-metric strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #F9A818;
  margin-bottom: 8px;
}

.leader-metric span {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.leader-case-study {
  background: #222222;
  padding: 30px;
  border-radius: 12px;
}

.leader-case-study h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #F9A818;
  margin-bottom: 8px;
}

.leader-case-study p {
  color: #eeeeee;
  line-height: 1.7;
  margin-bottom: 22px;
}


/* =========================================
   LEADER TRUST STATEMENT
========================================= */

.leader-trust-section {
  background: #f3f3f3;
}

.leader-trust-card {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 45px 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 0.7;
  color: #002395;
  margin-bottom: 18px;
}

.leader-trust-card p {
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
  color: #222222;
  margin-bottom: 18px;
}

.leader-trust-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #007A4D;
}