@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:ital@1&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1f2937;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   BRAND VARIABLES
   ============================================================ */
:root {
  --navy:        #0D1F4E;
  --cobalt:      #1976D2;
  --red:         #E8001C;
  --gold:        #D4A017;
  --white:       #FFFFFF;
  --cloud:       #F5F7FA;
  --text:        #1f2937;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.6rem;
}

.section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

/* Nav brand — campaign logo, top-left */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  height: 72px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 44px;
  }
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links li a {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--cobalt);
}

.nav-links li a.active {
  color: var(--cobalt);
}

/* Donate button */
.btn-donate,
.btn-nav {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-donate:hover,
.btn-nav:hover {
  opacity: 0.88;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn-nav {
  font-size: 1.2rem;
  padding: 0.7rem 2rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--navy);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 0;
  padding-left: max(24px, calc((100vw - 1160px) / 2 + 24px));
}

.hero-label {
  display: block;
  margin-bottom: 1.25rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.6rem;
}

.hero-label-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.hero-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--gold);
  margin-top: 1.5rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.88;
  color: var(--white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Hero subscribe form */
.hero-subscribe {
  margin-top: 2.5rem;
}

.hero-subscribe-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  display: block;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 400px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

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

.btn-subscribe {
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  opacity: 0.88;
}

#subscribe-message {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  min-height: 1.4em;
  color: var(--gold);
}

/* Hero photo column */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   CHANGE / ACCOUNTABILITY SECTION
   ============================================================ */
.change-section {
  background: var(--white);
  padding: 5rem 0;
}

.change-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.change-quote-block {
  border-left: 4px solid var(--red);
  padding-left: 2rem;
}

.change-pullquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.6;
  color: var(--gold);
}

.change-attribution {
  margin-top: 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.change-text h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.change-text p {
  margin-bottom: 1.25rem;
  color: #374151;
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-top: 0.5rem;
}

.page-hero-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 1rem;
  max-width: 560px;
}

/* ============================================================
   PLATFORM PILLARS SECTION
   ============================================================ */
.pillars-section {
  background: var(--navy);
  padding: 5rem 0;
}

.pillars-section .section-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar-card {
  background: var(--cloud);
  border-top: 4px solid var(--navy);
  padding: 2rem;
}

.pillar-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
}

/* Gold divider */
.gold-divider {
  border: none;
  border-top: 2px solid var(--gold);
  width: 100%;
  margin: 0;
}

/* ============================================================
   PLATFORM PRIORITIES SECTION
   ============================================================ */
.priorities-section {
  background: var(--white);
  padding: 5rem 0;
}

.priorities-section .section-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.priority-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.priority-row:first-of-type {
  border-top: 1px solid var(--border);
}

.priority-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--cobalt);
  line-height: 1;
  padding-top: 0.15rem;
}

.priority-body h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.priority-body p {
  color: #374151;
  font-size: 1rem;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.cta-strip h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: #374151;
}

.about-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About gallery */
.gallery-section {
  background: var(--cloud);
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ENDORSEMENTS
   ============================================================ */
.endorsers-section {
  background: var(--cloud);
  padding: 5rem 0;
}

.endorsers-section .section-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.endorser-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
}

.endorser-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.endorser-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  display: block;
}

.endorser-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}

.endorser-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.endorser-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Business grid */
.business-section {
  background: var(--white);
  padding: 5rem 0;
}

.business-section .section-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.business-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.business-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 0.75rem;
}

.business-img-logo {
  object-fit: contain;
  padding: 1.5rem;
  background: #f9fafb;
}

.business-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.business-owner {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   JOIN SECTION
   ============================================================ */
.join-section {
  background: var(--white);
  padding: 5rem 0;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

/* Form styles */
.join-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.join-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.join-form label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.join-form label .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.join-form input:focus {
  border-color: var(--cobalt);
}

.checkbox-group {
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.checkbox-group legend {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.checkbox-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.checkbox-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
}

.checkbox-options input[type="checkbox"] {
  accent-color: var(--cobalt);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  opacity: 0.88;
}

#join-form-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  min-height: 1.4em;
}

/* Join sidebar panel */
.join-panel {
  background: var(--navy);
  padding: 2.5rem;
  color: var(--white);
}

.join-panel h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.join-panel ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.join-panel ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.join-panel ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.join-panel-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.join-panel-contact a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--navy);
  padding: 5rem 0;
}

.events-coming {
  background: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.events-coming h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.events-coming p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: #374151;
}

.events-coming .subscribe-form {
  margin: 0 auto;
  max-width: 420px;
}

.events-coming .subscribe-form input[type="email"] {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-right: none;
}

.events-coming .subscribe-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.events-coming .subscribe-form input[type="email"]:focus {
  border-color: var(--cobalt);
}

.events-coming #subscribe-message {
  color: #22c55e;
}

/* Upcoming event card */
.events-list {
  background: var(--white);
  padding: 4.5rem 0 5rem;
}

.event-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13,31,78,0.08);
}

.event-card-banner {
  background: var(--cobalt);
  color: var(--white);
  padding: 2.25rem 2rem;
  text-align: center;
}

.event-card-banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.event-card-body {
  padding: 1.75rem 2rem 2rem;
  text-align: center;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-bottom: 1.25rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--navy);
}

.event-card-meta span::before {
  content: '·';
  margin-right: 0.6rem;
  color: var(--gold);
  font-weight: 700;
}

.event-card-meta span:first-child::before { display: none; }

.event-card-body p {
  color: #374151;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.event-card .btn-primary {
  display: inline-block;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
  background: var(--white);
  padding: 5rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 0.85rem;
  line-height: 1.3;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 1.5rem 0 1.25rem;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lang-switcher button {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: 0;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: background 0.15s, color 0.15s;
}

.lang-switcher button:hover {
  color: #fff;
}

.lang-switcher button.active {
  background: var(--gold);
  color: var(--navy);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-email {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
}

.footer-email a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-email a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-disclaimer p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-disclaimer a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    justify-content: center;
    align-items: center;
  }
  .footer-logo {
    height: 100px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 4rem 24px 3rem;
    order: 1;
  }

  .hero-right {
    order: 2;
    height: 360px;
  }

  .hero-photo {
    min-height: 360px;
    height: 360px;
  }

  .hero-name {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  /* Change section */
  .change-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Page hero */
  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 480px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Endorsers */
  .endorser-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Business */
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Join */
  .join-grid {
    grid-template-columns: 1fr;
  }

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

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Endorsers */
  .endorser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Business */
  .business-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .gallery-grid img {
    height: 160px;
  }

  /* Hero */
  .hero-name {
    font-size: clamp(3.5rem, 20vw, 5.5rem);
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  /* Checkbox options */
  .checkbox-options {
    grid-template-columns: 1fr;
  }
}
