/*
Theme Name: Eveleigh Bridge Alliance
Theme URI: https://eveleighbridgealliance.org.au
Author: Eveleigh Bridge Alliance
Author URI: https://eveleighbridgealliance.org.au
Description: Official theme for the Eveleigh Bridge Alliance community campaign website. Clean, accessible and brand-aligned.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eba
Tags: community, campaign, one-page, accessibility-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Brand tokens from style guide V1
   ============================================================ */
:root {
  /* Primary palette */
  --eba-blue:        #005ca3;
  --eba-blue-dark:   #004b87;
  --eba-blue-light:  #1a74bb;
  --eba-black:       #1a1a1a;
  --eba-white:       #ffffff;
  --eba-putty:       #eae9e2;
  /* Secondary palette */
  --eba-maroon:      #5b3039;
  --eba-gold:        #dbc273;
  --eba-silver:      #dde5e9;
  --eba-orange:      #ef4822;
  /* Text */
  --eba-text:        #1a1a1a;
  --eba-text-light:  #555555;
  --eba-text-muted:  #888888;
  /* Spacing */
  --eba-section-pad: clamp(64px, 8vw, 100px);
  --eba-gutter:      clamp(24px, 8vw, 10vw);
  /* Typography */
  --eba-font-primary:   'Lato', sans-serif;
  --eba-font-secondary: 'Andada Pro', serif;
  /* Borders */
  --eba-radius:      4px;
  --eba-border:      1px solid #e0dfd8;
  /* Shadows */
  --eba-shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --eba-shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --eba-shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
  /* Transitions */
  --eba-transition:  0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--eba-font-primary);
  color: var(--eba-text);
  background-color: var(--eba-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--eba-blue);
  text-decoration: none;
  transition: color var(--eba-transition);
}
a:hover { color: var(--eba-blue-dark); }
a:focus-visible {
  outline: 2px solid var(--eba-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--eba-font-primary);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--eba-black);
}

h1 { font-size: clamp(36px, 5vw, 68px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 28px); }
h4 { font-size: clamp(16px, 1.5vw, 20px); }

p {
  font-family: var(--eba-font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--eba-text-light);
}

.eba-eyebrow {
  font-family: var(--eba-font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eba-blue);
  margin-bottom: 14px;
  display: block;
}

.eba-serif-heading {
  font-family: var(--eba-font-secondary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.eba-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--eba-gutter);
}

.eba-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
}

.eba-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.eba-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--eba-font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--eba-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--eba-transition), color var(--eba-transition),
              border-color var(--eba-transition), transform var(--eba-transition),
              box-shadow var(--eba-transition);
  white-space: nowrap;
}
.eba-btn:hover { transform: translateY(-2px); }
.eba-btn:active { transform: translateY(0); }

.eba-btn-primary {
  background: var(--eba-blue);
  color: var(--eba-white);
  border-color: var(--eba-blue);
}
.eba-btn-primary:hover {
  background: var(--eba-blue-dark);
  border-color: var(--eba-blue-dark);
  color: var(--eba-white);
  box-shadow: 0 6px 24px rgba(0, 92, 163, 0.3);
}

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

.eba-btn-white {
  background: var(--eba-white);
  color: var(--eba-blue);
  border-color: var(--eba-white);
}
.eba-btn-white:hover {
  background: var(--eba-putty);
  border-color: var(--eba-putty);
  color: var(--eba-blue);
}

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

.eba-btn-orange {
  background: var(--eba-orange);
  color: var(--eba-white);
  border-color: var(--eba-orange);
}
.eba-btn-orange:hover {
  background: #d43c14;
  border-color: #d43c14;
  color: var(--eba-white);
}

.eba-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--eba-transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--eba-gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo svg { width: 38px; height: 38px; }

.site-logo-text {
  font-family: var(--eba-font-primary);
  font-weight: 900;
  font-size: 11px;
  line-height: 1.25;
  color: var(--eba-black);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.site-logo:hover .site-logo-text { color: var(--eba-blue); }

/* Primary nav */
.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.primary-navigation a {
  font-family: var(--eba-font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--eba-black);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 3px;
  transition: color var(--eba-transition), background var(--eba-transition);
  white-space: nowrap;
}
.primary-navigation a:hover { color: var(--eba-blue); background: var(--eba-putty); }
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--eba-blue);
  font-weight: 700;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--eba-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px var(--eba-gutter) 80px;
  max-width: 680px;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--eba-font-secondary);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--eba-gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-content h1 {
  color: var(--eba-white);
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 500px;
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  animation: scrollBounce 2.4s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 10px;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll svg {
  width: 18px; height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--eba-blue);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--eba-transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }

.stat-number {
  font-family: var(--eba-font-primary);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--eba-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--eba-font-primary);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION: ABOUT / INTRO
   ============================================================ */
.about-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
}

.about-image {
  position: relative;
}

.about-image img,
.about-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--eba-radius);
  display: block;
}

.about-image .image-placeholder {
  background: linear-gradient(135deg, var(--eba-putty) 0%, #d0cdc4 100%);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--eba-gold);
  border-radius: 2px;
  z-index: -1;
}

/* ============================================================
   SECTION: THE GREAT DIVIDE
   ============================================================ */
.divide-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-putty);
}

.divide-section .eba-eyebrow { color: var(--eba-maroon); }

.divide-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eba-card {
  background: var(--eba-white);
  border-radius: var(--eba-radius);
  overflow: hidden;
  box-shadow: var(--eba-shadow-sm);
  transition: transform var(--eba-transition), box-shadow var(--eba-transition);
}
.eba-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--eba-shadow-lg);
}

.card-image {
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.eba-card:hover .card-image img { transform: scale(1.04); }

.card-image-placeholder {
  width: 100%; height: 100%;
}
.card-image-placeholder.palette-1 {
  background: linear-gradient(135deg, #8a7a60 0%, #6a6850 50%, #4a5840 100%);
}
.card-image-placeholder.palette-2 {
  background: linear-gradient(135deg, #506070 0%, #405060 50%, #304050 100%);
}
.card-image-placeholder.palette-3 {
  background: linear-gradient(135deg, #7a6850 0%, #605840 50%, #504830 100%);
}

.card-body { padding: 28px; }
.card-body h3 { font-size: 18px; margin-bottom: 10px; }
.card-body p  { font-size: 14px; margin-bottom: 18px; }

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--eba-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}
.card-link::after { content: '→'; }
.card-link:hover  { color: var(--eba-blue-dark); gap: 8px; }

/* ============================================================
   SECTION: MISSION (dark band)
   ============================================================ */
.mission-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-black);
}

.mission-section .eba-eyebrow { color: var(--eba-gold); }
.mission-section h2 { color: var(--eba-white); }
.mission-section h2 em { font-style: italic; color: var(--eba-gold); }
.mission-section p  { color: rgba(255,255,255,0.68); }

.mission-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--eba-radius);
  overflow: hidden;
}

.mission-tile {
  aspect-ratio: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mission-tile:nth-child(1) { background: var(--eba-blue); }
.mission-tile:nth-child(2) { background: var(--eba-maroon); }
.mission-tile:nth-child(3) { background: var(--eba-gold); }
.mission-tile:nth-child(4) { background: var(--eba-orange); }

.mission-tile-num {
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  margin-bottom: 8px;
}
.mission-tile:nth-child(3) .mission-tile-num { color: rgba(0,0,0,0.12); }

.mission-tile-label {
  font-family: var(--eba-font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--eba-white);
  line-height: 1.35;
}
.mission-tile:nth-child(3) .mission-tile-label { color: var(--eba-black); }

/* ============================================================
   SECTION: THE "11 MINUTE SAVE" / KEY FACTS
   ============================================================ */
.impact-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-white);
}

.impact-table-wrap {
  overflow-x: auto;
  border-radius: var(--eba-radius);
  border: var(--eba-border);
  box-shadow: var(--eba-shadow-sm);
}

.impact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--eba-font-primary);
}

.impact-table th {
  background: var(--eba-blue);
  color: var(--eba-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
}

.impact-table td {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--eba-text);
  border-bottom: var(--eba-border);
  vertical-align: middle;
}
.impact-table tr:last-child td { border-bottom: none; }
.impact-table tr:nth-child(even) td { background: var(--eba-putty); }

.impact-table td.before { font-weight: 700; color: var(--eba-maroon); }
.impact-table td.after  { font-weight: 700; color: #2d7a4f; }

/* ============================================================
   SECTION: PROPOSED BRIDGE
   ============================================================ */
.proposal-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-putty);
}

.proposal-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.proposal-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--eba-border);
  border-radius: var(--eba-radius);
  overflow: hidden;
  background: var(--eba-white);
}

.proposal-step {
  padding: 40px 28px;
  border-right: var(--eba-border);
  position: relative;
  transition: background var(--eba-transition);
}
.proposal-step:last-child { border-right: none; }
.proposal-step:hover { background: var(--eba-putty); }

.step-num {
  font-family: var(--eba-font-secondary);
  font-size: 52px;
  font-weight: 800;
  color: #e4e2da;
  line-height: 1;
  margin-bottom: 14px;
}

.step-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-done   { background: #e6f2ec; color: #2d7a4f; }
.badge-active { background: var(--eba-blue); color: white; }
.badge-next   { background: var(--eba-silver); color: #666; }

.step-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--eba-black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--eba-text-light);
  line-height: 1.65;
}

/* ============================================================
   SECTION: COMPARISON TABLE
   ============================================================ */
.comparison-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--eba-font-primary);
  border-radius: var(--eba-radius);
  overflow: hidden;
  box-shadow: var(--eba-shadow-sm);
}

.comparison-table th {
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}
.comparison-table th:first-child { background: var(--eba-black); color: white; }
.comparison-table th:nth-child(2) { background: var(--eba-maroon); color: white; }
.comparison-table th:nth-child(3) { background: var(--eba-blue); color: white; }

.comparison-table td {
  padding: 16px 28px;
  font-size: 14px;
  color: var(--eba-text);
  border-bottom: var(--eba-border);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--eba-putty); }
.comparison-table td:first-child { font-weight: 700; }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  border: var(--eba-border);
  border-radius: var(--eba-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--eba-font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--eba-black);
  transition: background var(--eba-transition);
}
.faq-question:hover { background: var(--eba-putty); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--eba-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--eba-transition);
}
.faq-icon svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 2.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--eba-text-light);
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SECTION: EXPERIENCE THE DIVIDE
   ============================================================ */
.experience-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-maroon);
}

.experience-section .eba-eyebrow { color: var(--eba-gold); }
.experience-section h2 { color: var(--eba-white); }
.experience-section p  { color: rgba(255,255,255,0.72); }

.walk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: var(--eba-radius);
  overflow: hidden;
}

.walk-step {
  background: rgba(255,255,255,0.06);
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--eba-transition);
}
.walk-step:last-child { border-right: none; }
.walk-step:hover { background: rgba(255,255,255,0.1); }

.walk-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eba-gold);
  margin-bottom: 14px;
}

.walk-step h4 { color: var(--eba-white); font-size: 16px; margin-bottom: 10px; }
.walk-step p  { color: rgba(255,255,255,0.65); font-size: 14px; }

/* ============================================================
   SECTION: CAMPAIGN SUPPORTERS
   ============================================================ */
.supporters-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-white);
}

.supporters-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.supporter-logo {
  height: 48px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--eba-transition), opacity var(--eba-transition);
}
.supporter-logo:hover { filter: grayscale(0%); opacity: 1; }

.supporter-text-logo {
  font-family: var(--eba-font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--eba-text-muted);
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border: 2px solid #e8e7e0;
  border-radius: 3px;
  transition: border-color var(--eba-transition), color var(--eba-transition);
}
.supporter-text-logo:hover {
  border-color: var(--eba-blue);
  color: var(--eba-blue);
}

/* ============================================================
   SECTION: CTA BAND
   ============================================================ */
.cta-band {
  background: var(--eba-blue);
  padding: 80px var(--eba-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 { color: var(--eba-white); margin-bottom: 8px; }
.cta-band-text p  {
  font-family: var(--eba-font-secondary);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.72);
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION: CONTACT / WRITE TO MINISTER
   ============================================================ */
.contact-section {
  padding: var(--eba-section-pad) var(--eba-gutter);
  background: var(--eba-putty);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--eba-white);
  border-radius: var(--eba-radius);
  padding: 40px;
  box-shadow: var(--eba-shadow-md);
}

.eba-form-group {
  margin-bottom: 20px;
}

.eba-form-group label {
  display: block;
  font-family: var(--eba-font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--eba-black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.eba-form-group input,
.eba-form-group textarea,
.eba-form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--eba-font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--eba-black);
  background: var(--eba-white);
  border: 1px solid #d8d6ce;
  border-radius: var(--eba-radius);
  transition: border-color var(--eba-transition), box-shadow var(--eba-transition);
  outline: none;
}

.eba-form-group input:focus,
.eba-form-group textarea:focus,
.eba-form-group select:focus {
  border-color: var(--eba-blue);
  box-shadow: 0 0 0 3px rgba(0, 92, 163, 0.12);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--eba-black);
  padding: 72px var(--eba-gutter) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-wrap svg { width: 32px; height: 32px; }

.footer-org-name {
  font-family: var(--eba-font-primary);
  font-weight: 900;
  font-size: 14px;
  color: var(--eba-white);
  line-height: 1.2;
}

.footer-tagline {
  font-family: var(--eba-font-secondary);
  font-size: 14px;
  font-style: italic;
  color: var(--eba-gold);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--eba-font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--eba-transition);
}
.footer-col ul a:hover { color: var(--eba-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ============================================================
   PAGE TEMPLATE: Eveleigh at a Glance (table page)
   ============================================================ */
.glance-table-wrap { overflow-x: auto; }
.glance-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--eba-font-primary);
}
.glance-table th {
  background: var(--eba-blue);
  color: white;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}
.glance-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--eba-text);
  border-bottom: var(--eba-border);
  vertical-align: top;
  line-height: 1.6;
}
.glance-table tr:nth-child(even) td { background: var(--eba-putty); }
.glance-table td:first-child { font-weight: 700; color: var(--eba-black); width: 220px; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  background: var(--eba-blue);
  color: white;
  font-weight: 700;
  left: 6px;
  padding: 8px 20px;
  position: absolute;
  top: -100px;
  z-index: 99999;
  text-decoration: none;
  border-radius: 0 0 var(--eba-radius) var(--eba-radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 6px; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .proposal-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .primary-navigation { display: none; }
  .primary-navigation.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0;
    background: white;
    flex-direction: column;
    padding: 24px var(--eba-gutter);
    overflow-y: auto;
    z-index: 999;
  }
  .primary-navigation.open ul { flex-direction: column; gap: 4px; }
  .primary-navigation.open a { font-size: 16px; padding: 12px 16px; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .eba-grid-2 { grid-template-columns: 1fr; }
  .divide-header { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .walk-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .mission-tiles { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .proposal-steps { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .eba-btn-group { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .menu-toggle, .eba-btn { display: none; }
  body { font-size: 12pt; }
  a::after { content: ' (' attr(href) ')'; font-size: 10pt; }
}
