:root {
  --coral: #D94838;
  --navy: #0D1B2A;
  --sun: #F2B705;
  --sand: #F4F1ED;
  --stone: #57534E;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--sand);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ----------------- NAVBAR ----------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 1.5rem;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--coral);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 900;
  font-size: 1.125rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1;
}

.logo-subtitle {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--stone);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.8);
  text-decoration: none;
  border-radius: 9999px;
  transition: color 0.2s ease;
}

.nav-link.active {
  color: var(--coral);
}

.nav-link:hover {
  color: var(--navy);
}

/* ----------------- HERO SECTION ----------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 7rem;
  padding-top: 10rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark backdrop concentrated on the left behind text, opening up to show people on the right */
  background: linear-gradient(
    90deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.75) 35%,
    rgba(13, 27, 42, 0.35) 65%,
    rgba(13, 27, 42, 0.15) 100%
  );
}

@media (max-width: 768px) {
  /* On mobile where text spans full-width, blend both left and bottom darkeners */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.4) 0%,
      rgba(13, 27, 42, 0.85) 60%,
      rgba(13, 27, 42, 0.95) 100%
    );
  }
}

.hero-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .hero-container {
    padding: 0 3rem;
  }
}

.hero-content {
  max-width: 56rem;
}

.hero-kicker {
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.sparkle {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.text-coral {
  color: var(--coral);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  padding: 0.625rem 1.25rem;
}

.btn-coral {
  background-color: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background-color: #c43a2b;
}

.btn-translucent {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-translucent:hover {
  background-color: rgba(255, 255, 255, 0.25);
}


/* ==================== DESIGN TOKENS ==================== */
:root {
  --color-sand: #F4F1ED;
  --color-navy: #0D1B2A;
  --color-coral: #D94838;
  --color-sun: #F2B705;
  --color-stone: #57534E;
  --color-white: #FFFFFF;
  --font-family: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-sand);
  color: #1C1917;
  -webkit-font-smoothing: antialiased;
}

/* ==================== BUTTONS & INTERACTION ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* ==================== UNIVERSAL BTN-SWEEP BEHAVIOR ==================== */
.btn-sweep {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s ease;
}

.btn-sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn-sweep:hover::after {
  transform: translateY(0);
}

.btn-sweep svg {
  fill: currentColor;
  transition: fill 0.2s ease;
}

/* --- 1. NAVY BUTTONS (Header & Section CTAs) --- */
/* Base: Navy background, White text */
.btn-navy, 
.btn-nav-cta {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Sweep: Coral fill on hover */
.btn-navy.btn-sweep::after,
.btn-nav-cta.btn-sweep::after {
  background-color: var(--color-coral);
}

/* Text remains crisp white on Coral sweep */
.btn-navy.btn-sweep:hover,
.btn-nav-cta.btn-sweep:hover {
  color: var(--color-white);
}


/* --- 2. CORAL BUTTONS (Hero, Ribbon, Subscribe CTAs) --- */
/* Base: Coral background, White text */
.btn-coral {
  background-color: var(--color-coral);
  color: var(--color-white);
}

/* Sweep: White fill on hover */
.btn-coral.btn-sweep::after {
  background-color: var(--color-white);
}

/* Text flips to Dark Navy on White sweep */
.btn-coral.btn-sweep:hover {
  color: var(--color-navy);
}


/* --- 3. SUN / YELLOW BUTTONS (Footer Start a conversation) --- */
/* Base: Sun background, Navy text */
.btn-footer-cta {
  background-color: var(--color-sun);
  color: var(--color-navy);
}

/* Sweep: Coral fill on hover */
.btn-footer-cta.btn-sweep::after {
  background-color: var(--color-coral);
}

/* Text flips to White on Coral sweep */
.btn-footer-cta.btn-sweep:hover {
  color: var(--color-white);
}

.icon-arrow {
  margin-left: 0.375rem;
}

/* ==================== NAVBAR (TRANSPARENT TO SCROLLED GLASS) ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  pointer-events: none; /* Allows clicks through empty space outside .nav-container */
  transition: top 0.3s ease, padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Default state: Offset by the top utility bar */
.navbar.has-top-bar {
  top: 36px;
}

/* Base floating pill container */
.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: auto; /* Re-enable pointer events on interactive nav bar */
  transition: background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== SCROLLED STATE ==================== */
/* Pull flush to the top edge when scrolled past the top bar */
.navbar.is-scrolled,
.navbar.has-top-bar.is-scrolled {
  top: 0;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar.is-scrolled .nav-container {
  background-color: rgba(13, 27, 42, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
}

/* ==================== WORDPRESS ADMIN BAR COMPATIBILITY ==================== */
body.admin-bar .navbar {
  top: 32px;
}

body.admin-bar .navbar.has-top-bar {
  top: calc(32px + 36px);
}

body.admin-bar .navbar.is-scrolled,
body.admin-bar .navbar.has-top-bar.is-scrolled {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px;
  }

  body.admin-bar .navbar.has-top-bar {
    top: calc(46px + 36px);
  }

  body.admin-bar .navbar.is-scrolled,
  body.admin-bar .navbar.has-top-bar.is-scrolled {
    top: 46px;
  }
}

/* --- Brand / Logo Container --- */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  height: 100%;
}

/* --- Brand Logo Image --- */
.brand-logo-img {
  height: 2.25rem;          /* Matches the 36px height of the navbar element */
  width: auto;              /* Preserves natural aspect ratio */
  max-height: 100%;         /* Keeps the image constrained within the container */
  object-fit: contain;      /* Prevents stretching or distortion */
  display: block;
  flex-shrink: 0;           /* Prevents shrinking on smaller viewports */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35)); /* Subtle contrast over any background */
}

/* Optional adjustment if replacing the text entirely with a full logo image */
.brand-logo-img.full-logo {
  height: 2.5rem;
  max-width: 180px;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(217, 72, 56, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-subtitle {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* --- Navigation Links --- */
/* --- Navigation Links --- */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list li a,
.nav-link {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.nav-menu-list li a:hover,
.nav-link:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Active State: works with both .active and WordPress native .current-menu-item */
.nav-menu-list li.current-menu-item a,
.nav-menu-list li.current_page_item a,
.nav-link.active {
  color: var(--color-coral);
  background-color: rgba(255, 255, 255, 0.12);
  text-shadow: none;
}

/* --- CTA & Mobile Toggle --- */
.btn-nav-cta {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure Menu Toggle Button is Visible on Mobile */
.menu-toggle-btn {
  display: flex !important; /* Force visibility on small screens */
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--color-navy, #0d1b2a);
  color: var(--color-white, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 60;
}

/* Hide toggle button on desktop screens */
@media (min-width: 992px) {
  .menu-toggle-btn {
    display: none !important;
  }
}

/* ==================== MOBILE MENU ==================== */

/* ==================== MOBILE MENU DRAWER ==================== */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999 !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: env(safe-area-inset-top, 0px); /* Respect iOS notch */
}

.mobile-menu-drawer.is-open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
}

.mobile-drawer-header .logo-title {
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.menu-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-close-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-list li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-list li.current-menu-item a,
.mobile-nav-list li.current_page_item a,
.mobile-nav-list li a:hover {
  color: var(--color-coral);
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-drawer-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.mobile-menu-active {
  overflow: hidden;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-col-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-sun);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.text-coral {
  color: var(--color-coral);
}

.btn-footer-cta {
  margin-top: 2.5rem;
  background-color: var(--color-sun);
  color: var(--color-navy);
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

.btn-footer-cta:hover {
  color: var(--color-navy);
}

.footer-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.footer-link-list,
.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info {
  font-size: 0.875rem;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--color-sun);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.social-icon-btn:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .footer-container {
    padding: 7rem 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-col-main {
    grid-column: span 6;
  }

  .footer-col-nav {
    grid-column: 8 / span 3;
  }

  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .btn-nav-cta {
    display: none;
  }

}

/* ==================== GLOBAL LAYOUT & TYPOGRAPHY ==================== */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-coral);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--color-navy);
}

/* ==================== 1. STATS & EVENTS RIBBON ==================== */
.stats-ribbon {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.stats-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.stats-col-impact {
  background-color: var(--color-coral);
  color: var(--color-white);
  padding: 3.5rem 2rem;
}

.metrics-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.stats-col-events {
  background-color: var(--color-sun);
  color: var(--color-navy);
  padding: 3.5rem 2rem;
}

.events-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(13, 27, 42, 0.15);
  padding-bottom: 0.5rem;
  font-weight: 600;
}

.event-title {
  font-size: 0.95rem;
}

.event-date {
  font-size: 0.85rem;
  opacity: 0.75;
}

.stats-col-cta {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stats-cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

/* ==================== 2. OUR BELIEF ==================== */
.belief-section {
  background-color: var(--color-sand);
}

.belief-heading {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 48rem;
  margin-bottom: 4rem;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.belief-card {
  display: flex;
  flex-direction: column;
}

.pillar-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  color: rgba(217, 72, 56, 0.18);
  margin-bottom: 1rem;
  font-family: inherit;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--color-stone);
  line-height: 1.65;
}

/* ==================== 3. EDITORIAL MARQUEE ==================== */
.marquee-strip {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.25rem;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== 4. PROJECTS ==================== */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  position: relative;
  height: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0) 60%);
}

.project-content {
  position: relative;
  z-index: 10;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.tag-coral {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.tag-sun {
  background-color: var(--color-sun);
  color: var(--color-navy);
}

.project-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-white);
}

/* ==================== 5. CALLOUT QUOTE ==================== */
.quote-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding: 6rem 1.5rem;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.quote-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.75);
}

.quote-content {
  max-width: 56rem;
}

.quote-lead {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.quote-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* ==================== 6. VALUES ==================== */
.values-section {
  background-color: var(--color-sand);
  margin-top: -3rem;
  position: relative;
  z-index: 20;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(13, 27, 42, 0.05);
}

.value-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(242, 183, 5, 0.15);
  color: var(--color-coral);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--color-stone);
  line-height: 1.6;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (min-width: 768px) {
  .section {
    padding: 7rem 3rem;
  }

  .stats-grid {
    grid-template-columns: 5fr 4fr 3fr;
  }

  .belief-grid,
  .projects-grid,
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== TOP UTILITY BAR ==================== */
.top-bar {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.top-bar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item:hover {
  color: var(--color-sun);
}

.top-bar-cta {
  background-color: var(--color-coral);
  color: var(--color-white);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.top-bar-cta:hover {
  opacity: 0.9;
}

/* Adjust fixed navbar position when top-bar is present */
.navbar.has-top-bar {
  top: 36px;
}

@media (max-width: 768px) {
  .top-bar-info {
    display: none;
  }
  .top-bar-container {
    justify-content: flex-end;
  }
}

/* ==================== HERO ADJUSTMENTS ==================== */
.hero-banner-tag {
  display: inline-block;
  color: var(--color-white);
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  letter-spacing: 0.05em;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 38rem;
  line-height: 1.4;
  border-radius: 4px;
}

.btn-white-solid {
  background-color: var(--color-white);
  color: var(--color-navy);
  gap: 0.5rem;
}

.btn-white-solid:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ==================== SUPPORTED BY / PARTNERS ==================== */
.partners-section {
  background-color: var(--color-white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.partners-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  align-items: center;
  justify-items: center;
  max-width: 68rem;
  margin: 0 auto;
}

.partner-card {
  width: 100%;
  max-width: 220px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 6rem 1.5rem 2.5rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

/* --- Top CTA Banner --- */
.footer-top-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-top-cta {
    flex-direction: row;
    align-items: flex-end;
  }
}

.footer-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-sun);
  margin-bottom: 1rem;
}

.footer-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.btn-footer-cta {
  background-color: var(--color-sun);
  color: var(--color-navy);
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-footer-cta:hover {
  color: var(--color-navy);
}

/* --- 4-Column Grid --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1.1fr 1.1fr;
    gap: 2.5rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-section-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.footer-reg-info {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--color-coral);
  padding-left: 0.75rem;
}

.footer-reg-info strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer-link-list,
.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--color-sun);
}

/* --- Banking Card --- */
.banking-card {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.banking-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sun);
  margin-bottom: 0.35rem;
}

.banking-card strong {
  color: var(--color-white);
}

/* --- Social Buttons --- */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.social-icon-btn:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
}

/* --- Newsletter Form --- */
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-input:focus {
  border-color: var(--color-coral);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-subscribe {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-size: 0.85rem;
}

.btn-subscribe:hover {
  background-color: #c43a2b;
}

.newsletter-disclaimer {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* --- Bottom Copyright --- */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==================== BELIEF & STORY SECTION ==================== */
.belief-section {
  background-color: var(--color-sand);
  padding: 6rem 1.5rem;
}

/* --- Top Story Layout --- */
.belief-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 3rem;
  align-items: center;
  margin-bottom: 7rem;
}

@media (min-width: 992px) {
  .belief-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Photo Stacking */
.story-media-stack {
  position: relative;
  min-height: 440px;
}

.story-main-img-card {
  width: 82%;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.12);
}

.story-img, .story-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-floating-video-card {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 55%;
  height: 220px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 4px solid var(--color-sand);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: var(--color-coral);
  color: var(--color-white);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: #c43a2b;
}

/* Story Narrative Column */
.story-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.story-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-stone);
  margin-bottom: 2.25rem;
}

/* Action Pathways (Donate & Volunteer) */
.action-pathways {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pathway-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
}

.pathway-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgba(242, 183, 5, 0.2);
  color: var(--color-coral);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pathway-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-navy);
}

.pathway-desc {
  font-size: 0.9rem;
  color: var(--color-stone);
  margin: 0.25rem 0 0.85rem;
  line-height: 1.4;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* --- Philosophy 3-Pillars --- */
.belief-header-wrap {
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  padding-top: 5rem;
}

.belief-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 46rem;
  margin-bottom: 3.5rem;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .belief-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.belief-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.08);
}

.pillar-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(217, 72, 56, 0.2);
  margin-bottom: 0.75rem;
  display: block;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--color-stone);
  line-height: 1.6;
}

/* ==================== PROGRAMMES SHOWCASE ==================== */
.programmes-section {
  background-color: var(--color-sand);
  padding: 6rem 1.5rem;
}

.programmes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .programmes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.programme-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.08);
}

.programme-thumb-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.programme-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.programme-card:hover .programme-thumb {
  transform: scale(1.05);
}

.programme-thumb-wrapper .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.programme-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.programme-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.programme-desc {
  font-size: 0.95rem;
  color: var(--color-stone);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.programme-inline-link {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-coral);
  text-decoration: none;
  transition: color 0.15s ease;
  align-self: flex-start;
}

.programme-inline-link:hover {
  color: var(--color-navy);
}

/* Programme Card Title & Link Resets */
.programme-card .programme-title a {
  color: var(--color-navy, #0d1b2a);
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  transition: color 0.2s ease;
}

.programme-card .programme-title a:hover,
.programme-card .programme-title a:focus {
  color: var(--color-coral, #d94838);
  text-decoration: none;
}

.programme-card .programme-title a:visited {
  color: var(--color-navy, #0d1b2a);
}

/* "Learn more →" Link Styling */
.programme-card .programme-inline-link {
  color: var(--color-coral, #d94838);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.programme-card .programme-inline-link:hover {
  color: var(--color-navy, #0d1b2a);
  gap: 0.5rem;
  text-decoration: none;
}

/* ==================== INFOGRAPHIC SPOTLIGHT ==================== */
.infographic-feature-card {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.06);
}

@media (min-width: 992px) {
  .infographic-feature-card {
    padding: 4.5rem;
  }
}

.infographic-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .infographic-feature-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.infographic-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.infographic-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-stone);
  margin-bottom: 2.5rem;
}

.infographic-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.info-stat {
  display: flex;
  flex-direction: column;
}

.info-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
}

.info-stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-stone);
  margin-top: 0.4rem;
}

/* Infographic Image Frame */
.infographic-poster-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(13, 27, 42, 0.12);
  background-color: var(--color-navy);
}

.infographic-poster-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  background-color: var(--color-white);
  padding: 6rem 1.5rem;
}

.gallery-subtitle {
  font-size: 1rem;
  color: var(--color-stone);
  margin-top: 0.5rem;
  max-width: 38rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==================== FEATURED BLOG SECTION ==================== */
.blog-section {
  background-color: var(--color-sand);
  padding: 6rem 1.5rem;
}

.featured-blog-card {
  position: relative;
  min-height: 480px;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.12);
}

@media (min-width: 768px) {
  .featured-blog-card {
    min-height: 540px;
    padding: 3.5rem;
  }
}

.featured-blog-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog-card:hover .featured-blog-img {
  transform: scale(1.03);
}

.featured-blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.95) 0%,
    rgba(13, 27, 42, 0.6) 45%,
    rgba(13, 27, 42, 0.2) 100%
  );
}

.featured-blog-content {
  position: relative;
  z-index: 10;
  max-width: 44rem;
}

.featured-blog-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.featured-blog-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* ==================== TEAM & MEMBERSHIP ==================== */
.team-membership-section {
  background-color: var(--color-sand);
  padding: 6rem 1.5rem;
}

/* --- Block 1: Team Showcase Grid --- */
.team-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .team-showcase-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.team-image-card {
  position: relative;
  height: 380px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.12);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-image-card:hover .team-img {
  transform: scale(1.04);
}

.team-image-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.team-info-card {
  background: linear-gradient(145deg, #11263c 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.15);
}

@media (min-width: 768px) {
  .team-info-card {
    padding: 3.5rem;
  }
}

.team-heading {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.team-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 32rem;
}

/* --- Block 2: Membership Packages Banner --- */
.membership-card {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.05);
}

@media (min-width: 768px) {
  .membership-card {
    padding: 3.5rem 4rem;
  }
}

.membership-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .membership-content {
    flex-direction: row;
    align-items: center;
  }
}

.membership-copy {
  max-width: 44rem;
}

.membership-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
}

.membership-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-stone);
}

.membership-action {
  flex-shrink: 0;
}

/* ==================== REPORT & MEDIA SECTION ==================== */
.report-media-section {
  background-color: var(--color-white);
  padding: 6rem 1.5rem;
}

/* --- Annual Report Card --- */
.report-card {
  background-color: var(--color-sand);
  border-radius: 2rem;
  padding: 2.5rem 1.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
}

@media (min-width: 768px) {
  .report-card {
    padding: 3.5rem;
  }
}

.report-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .report-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.report-viewer-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.1);
  background-color: var(--color-white);
}

.report-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Dual Media Grid (Podcast & Feed) --- */
.media-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .media-dual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.media-card {
  background-color: var(--color-sand);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-card-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--color-navy);
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.media-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-stone);
  margin-bottom: 2rem;
}

.embed-wrapper {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
}

.audio-iframe {
  display: block;
}

.social-embed-box {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.feed-placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-navy);
}

.feed-placeholder p {
  font-size: 0.95rem;
  color: var(--color-stone);
  max-width: 22rem;
  line-height: 1.5;
}


/* ==================== PAGE HEADER (INNER PAGES) ==================== */
.page-header {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 10rem 1.5rem 4rem;
}

@media (min-width: 768px) {
  .page-header {
    padding: 13rem 3rem 5rem;
  }
}

.page-title {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0.75rem 0 1.5rem;
}

.page-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
}

/* ==================== CONTACT SECTION & FORM ==================== */
.contact-section {
  background-color: var(--color-sand);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 7rem 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 3rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

/* --- Left Details Column --- */
.contact-subheading {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-stone);
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: var(--color-navy);
  color: var(--color-sun);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(13, 27, 42, 0.15);
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone);
  margin-bottom: 0.2rem;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.detail-value.link {
  text-decoration: none;
  transition: color 0.15s ease;
}

.detail-value.link:hover {
  color: var(--color-coral);
}

/* --- Right Form Card Column --- */
.contact-form {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 3rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone);
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  background-color: var(--color-sand);
  border: 1px solid rgba(13, 27, 42, 0.08);
  color: var(--color-navy);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-coral);
  background-color: var(--color-white);
}

.form-textarea {
  height: auto;
  padding: 1rem;
  resize: none;
}

.btn-submit {
  align-self: flex-start;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  gap: 0.6rem;
}


/* ==================== PRICING & MEMBERSHIP PLANS ==================== */
.pricing-plans-section {
  background-color: var(--color-sand);
  padding: 6rem 1.5rem;
}

.section-heading-centered {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 4.5rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-stone);
  margin-top: 0.75rem;
}

/* 3-Column Plan Cards Grid */
.pricing-images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .pricing-images-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-image-card {
  background-color: var(--color-white);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 12px 35px rgba(13, 27, 42, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.1);
}

.pricing-image-card.featured-plan {
  border: 2px solid var(--color-coral);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(217, 72, 56, 0.35);
}

/* Image Placeholder Box */
.pricing-img-wrapper {
  width: 100%;
  height: 280px;
  background-color: var(--color-navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pricing-image-card:hover .pricing-plan-img {
  transform: scale(1.05);
}

.pricing-card-footer {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.plan-card-desc {
  font-size: 0.95rem;
  color: var(--color-stone);
  line-height: 1.55;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Full Poster/Infographic Banner Box */
.full-plan-poster-card {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 16px 45px rgba(13, 27, 42, 0.06);
}

@media (min-width: 768px) {
  .full-plan-poster-card {
    padding: 3.5rem;
  }
}

.poster-card-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.poster-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.poster-sub {
  font-size: 1rem;
  color: var(--color-stone);
}

.poster-image-box {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
}

.full-poster-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== FAQ SECTION (CENTERED) ==================== */
.faq-section {
  background-color: var(--color-white);
  padding: 6rem 1.5rem 8rem;
}

/* Centers the restricted-width container horizontally */
.faq-section .container.max-w-4xl {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

/* Heading remains bold on the left side of the centered block */
.faq-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.04em;
  margin-bottom: 3.5rem;
  text-align: left;
}

/* FAQ item list */
.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  width: 100%;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-stone);
  width: 100%;
}

/* ==================== FULL-HEIGHT PRICING IMAGE ADJUSTMENTS ==================== */

/* Allow the container to grow to the full natural height of the image */
.pricing-img-wrapper {
  width: 100%;
  height: auto;               /* Removes the 280px fixed height */
  min-height: unset;
  background-color: transparent;
  overflow: hidden;
  display: block;
}

/* Ensure the full long graphic displays without cropping */
.pricing-plan-img {
  width: 100%;
  height: auto;               /* Allows natural aspect ratio */
  display: block;
  object-fit: contain;        /* Shows complete image area */
  transition: transform 0.4s ease;
}

/* Subtle zoom effect stays bounded inside the rounded card */
.pricing-image-card:hover .pricing-plan-img {
  transform: scale(1.02);
}

/* Footer CTA stays attached at the base */
.pricing-card-footer {
  padding: 1.5rem;
  background-color: var(--color-white);
  border-top: 1px solid rgba(13, 27, 42, 0.06);
}

/* 2-Column Responsive Layout */
.pricing-images-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-images-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== BLOG GRID & ARCHIVE ==================== */
/* ==================== BLOG GRID LAYOUT ==================== */
.blog-archive-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-blog-card {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured Top Post Banner */
.featured-blog-card {
  position: relative;
  min-height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  background-color: var(--color-navy);
}

.featured-blog-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.featured-blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.2) 0%, rgba(13, 27, 42, 0.88) 100%);
  z-index: 2;
}

.featured-blog-content {
  position: relative;
  z-index: 3;
  max-width: 44rem;
}

.featured-blog-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0.75rem 0;
  line-height: 1.2;
}

.featured-blog-title a {
  color: #ffffff;
  text-decoration: none;
}

.featured-blog-excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Standard Grid Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-thumb {
  position: relative;
  height: 200px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--color-stone, #57537e);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--color-coral);
}

.blog-card-excerpt {
  font-size: 0.925rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--color-coral);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ==================== SINGLE POST LAYOUT & SIDEBAR ==================== */
.single-post-header {
  padding-bottom: 3.5rem;
}

.back-link {
  display: inline-block;
  color: var(--color-sun, #f2b705);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.85;
}

.post-meta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.post-date-hero {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.single-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
}

/* 2-Column Grid Layout */
.single-post-content-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.single-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .single-post-grid {
    grid-template-columns: 1fr 340px;
  }
}

/* Featured Image */
.single-post-featured-image {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.single-post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Article Body Typography */
.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3748;
}

.entry-content p {
  margin-bottom: 1.75rem;
}

.post-footer-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.tags-label {
  font-weight: 700;
  color: var(--color-navy);
}

/* ==================== SIDEBAR WIDGETS ==================== */
.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-sand);
}

/* Recent Posts Widget List */
.sidebar-recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-link {
  text-decoration: none;
  display: block;
}

.recent-post-date {
  font-size: 0.775rem;
  color: var(--color-stone, #57537e);
  display: block;
  margin-bottom: 0.25rem;
}

.recent-post-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.recent-post-link:hover .recent-post-title {
  color: var(--color-coral);
}

/* Sidebar CTA Card */
.sidebar-cta-card {
  background-color: var(--color-navy);
  color: #ffffff;
}

.sidebar-cta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.75rem 0;
  line-height: 1.25;
}

.sidebar-cta-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ==================== PAGINATION STYLING ==================== */
.pagination-wrapper {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-navy);
  background-color: transparent;
  border: 1px solid rgba(13, 27, 42, 0.15);
  transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers:hover {
  background-color: rgba(13, 27, 42, 0.05);
  color: var(--color-navy);
}

.pagination-wrapper .page-numbers.current {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
  color: #ffffff;
}

.pagination-wrapper .page-numbers.dots {
  border: none;
  padding: 0.5rem 0.25rem;
}

/* ==================== EVENTS GRID & CARDS ==================== */
.events-archive-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.event-card-media {
  position: relative;
  height: 240px;
  background-color: var(--color-navy);
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-navy) 0%, #1e3a5f 100%);
}

/* Event Badge on Card */
.event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.35rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  min-width: 52px;
}

.event-badge-month {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-coral);
}

.event-badge-day {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-navy);
}

.event-badge-year {
  font-size: 0.65rem;
  color: #718096;
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-status-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.event-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.event-card-title a {
  color: var(--color-navy);
  text-decoration: none;
}

.event-card-title a:hover {
  color: var(--color-coral);
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #4a5568;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-card-excerpt {
  font-size: 0.925rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.55;
  flex-grow: 1;
}

/* Single Event Poster */
.event-featured-poster {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.5rem;
}

.event-featured-poster img {
  width: 100%;
  height: auto;
  display: block;
}

/* Event Details List in Sidebar */
.event-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.event-details-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  padding-bottom: 0.5rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-coral);
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* ==================== PROGRAMMES ARCHIVE & CARDS ==================== */
.programmes-archive-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.programmes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .programmes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programmes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styling Matching Prototype */
.programme-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.programme-card-media {
  position: relative;
  height: 240px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.programme-card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

.programme-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.programme-card:hover .programme-card-img {
  transform: scale(1.04);
}

.programme-card-body {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.programme-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.programme-card-title a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.programme-card-title a:hover {
  color: var(--color-coral);
}

.programme-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555e6c;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.programme-card-link {
  color: var(--color-coral);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s ease;
}

.programme-card-link:hover {
  transform: translateX(4px);
}

/* ==================== SINGLE PROGRAMME 3-PHOTO SHOWCASE ==================== */
.programme-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .programme-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.programme-showcase-item {
  border-radius: 1rem;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.programme-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-cta-box {
  margin-top: 3.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #ffffff;
  border-left: 4px solid var(--color-coral);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cta-box-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.cta-box-email {
  color: var(--color-coral);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.cta-box-email:hover {
  text-decoration: underline;
}

/* ==================== GALLERY FILTER BAR ==================== */
.gallery-archive-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-navy);
  border: 1px solid rgba(13, 27, 42, 0.15);
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.gallery-filter-btn:hover {
  background-color: rgba(13, 27, 42, 0.05);
  color: var(--color-navy);
}

.gallery-filter-btn.active {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
  color: #ffffff;
}

/* ==================== GALLERY ALBUM GRID ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card-inner {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-card-thumb {
  position: relative;
  height: 220px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.05);
}

.gallery-count-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  flex-grow: 1;
}

.gallery-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.gallery-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ==================== SINGLE ALBUM VIEW ==================== */
.single-gallery-section {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.album-description {
  margin-bottom: 3rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}

.album-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .album-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .album-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.album-photo-item {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  background-color: #f1f5f9;
}

.album-photo-link {
  display: block;
  height: 260px;
  overflow: hidden;
}

.album-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.album-photo-link:hover img {
  transform: scale(1.04);
}

.album-photo-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #64748b;
  background-color: #ffffff;
  border-top: 1px solid rgba(13, 27, 42, 0.05);
}

/* ==================== TEAM PAGE STYLES ==================== */
.team-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.team-intro-header {
  margin-bottom: 4rem;
}

.team-intro-header .section-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-top: 0.75rem;
}

/* Row-by-Row Member Layout */
.team-members-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team-member-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .team-member-row {
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
  }
}

/* Photo Column & Orange Accent Border */
.team-photo-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .team-photo-wrapper {
    height: 260px;
  }
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
}

/* Info Column */
.team-member-name {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 900;
  color: var(--color-navy, #0d1b2a);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.team-member-role {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-coral, #d94838);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.team-member-role svg {
  flex-shrink: 0;
}

.team-member-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5568;
}

.team-member-bio p {
  margin-bottom: 1rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}

/* Left Column Styles */
.contact-main-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--color-navy, #0d1b2a);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-main-subheading {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2.75rem;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon-badge {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background-color: var(--color-navy, #0d1b2a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-details {
  display: flex;
  flex-direction: column;
}

.contact-method-label {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-stone, #57537e);
  margin-bottom: 0.2rem;
}

.contact-method-value,
.contact-method-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy, #0d1b2a);
  text-decoration: none;
  line-height: 1.35;
  margin: 0;
}

.contact-method-link:hover {
  color: var(--color-coral, #d94838);
}

/* Right Column: Contact Card Box */
.contact-card-box {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.05);
}

@media (min-width: 640px) {
  .contact-card-box {
    padding: 3rem;
  }
}

/* Universal Form Styling (Themes both fallback & Shortcode Plugins) */
.theme-contact-form,
.wpforms-form,
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row-dual {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group,
.wpforms-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label,
.wpforms-field-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5568;
}

.form-group input,
.form-group textarea,
.wpforms-field input,
.wpforms-field textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background-color: #f3f1ed;
  font-size: 0.95rem;
  color: var(--color-navy, #0d1b2a);
  font-family: inherit;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  background-color: #ffffff;
  border-color: var(--color-coral, #d94838);
  box-shadow: 0 0 0 3px rgba(217, 72, 56, 0.15);
}

.contact-card-box button[type="submit"],
.wpforms-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* CF7 Grid Alignment */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* Spinner and Response Output */
.wpcf7-spinner {
  margin: 0.5rem 0 0 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==================== HOMEPAGE HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-navy, #0d1b2a);
  padding-top: calc(36px + 6rem); /* Accommodates .top-bar and sticky header */
  padding-bottom: 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.75) 55%,
    rgba(13, 27, 42, 0.85) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 52rem;
}

.hero-eyebrow {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: calc(36px + 5rem);
    padding-bottom: 4rem;
  }
}

/* Video Modal Popup */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(6px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.video-modal-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-modal-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==================== INFOGRAPHIC EXPAND LIGHTBOX ==================== */
.infographic-expand-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.infographic-zoom-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.775rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.infographic-expand-btn:hover .infographic-zoom-badge {
  background: var(--color-coral);
  transform: translateY(-2px);
}

/* Modal Popup Styles */
.infographic-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.infographic-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.infographic-modal-dialog {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infographic-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

.infographic-modal-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.report-media-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.report-card {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(13, 27, 42, 0.05);
}

.report-header {
  margin-bottom: 2rem;
}

.report-viewer-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #f8f9fa;
  border: 1px solid rgba(13, 27, 42, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-viewer-wrapper .report-iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

/* Ensure plugin flipbook shortcodes expand to container */
.report-viewer-wrapper ._df_book,
.report-viewer-wrapper .df-container {
  width: 100% !important;
  height: 580px !important;
}

/* ==================== MEMBERSHIP & PRICING ==================== */
.members-packages-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.packages-intro-header {
  margin-bottom: 4.5rem;
}

.tier-category-header {
  margin-bottom: 2rem;
  text-align: center;
}

.tier-category-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.tier-category-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* 3-Tier Grid */
.membership-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .membership-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Card Shell */
.pricing-card {
  background: #ffffff;
  border-radius: 1.75rem;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Featured 'Most Popular' Tier */
.pricing-card.popular-plan {
  border: 2.5px solid var(--color-coral);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-coral);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

/* Headers */
.pricing-card-header {
  padding: 2.25rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.pricing-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-coral);
  margin-bottom: 0.5rem;
}

.pricing-package-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pricing-package-target {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 48px;
}

.pricing-cost {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.cost-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
}

.cost-period {
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Card Body */
.pricing-card-body {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-stone, #57537e);
  margin-bottom: 0.85rem;
}

.pricing-feature-list,
.pricing-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-feature-list li,
.pricing-impact-list li {
  font-size: 0.925rem;
  line-height: 1.5;
  color: #334155;
  position: relative;
  padding-left: 1.4rem;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-weight: 800;
}

.pricing-impact-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-sun);
  font-weight: 800;
}

.pricing-card-footer {
  padding: 0 2rem 2rem;
}

/* ==================== À LA CARTE SECTION ==================== */
.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .alacarte-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.alacarte-card {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2.5rem;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.alacarte-header {
  margin-bottom: 1.75rem;
}

.alacarte-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}

.alacarte-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.alacarte-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.alacarte-item {
  border-top: 1px solid rgba(13, 27, 42, 0.06);
  padding-top: 1.25rem;
}

.alacarte-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.item-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
}

.item-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--color-coral);
  white-space: nowrap;
}

.item-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Sign-up Form Section */
.become-member-wrapper {
  scroll-margin-top: 5rem;
}

.form-control-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background-color: #f3f1ed;
  font-size: 0.95rem;
  color: var(--color-navy);
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.form-control-select:focus {
  background-color: #ffffff;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(217, 72, 56, 0.15);
}

/* Contact Form 7 Dropdown & Sizing Alignment */
.wpcf7-form .form-row-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .wpcf7-form .form-row-dual {
    grid-template-columns: 1fr 1fr;
  }
}

.wpcf7-form select.form-control-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background-color: #f3f1ed;
  font-size: 0.95rem;
  color: var(--color-navy, #0d1b2a);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: auto;
}

.wpcf7-form select.form-control-select:focus {
  background-color: #ffffff;
  border-color: var(--color-coral, #d94838);
  box-shadow: 0 0 0 3px rgba(217, 72, 56, 0.15);
}

.wpcf7-form input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background-color: #f3f1ed;
  font-size: 0.95rem;
  color: var(--color-navy, #0d1b2a);
  font-family: inherit;
  outline: none;
}

.wpcf7-form input[type="tel"]:focus {
  background-color: #ffffff;
  border-color: var(--color-coral, #d94838);
  box-shadow: 0 0 0 3px rgba(217, 72, 56, 0.15);
}

/* ==================== ABOUT PAGE ==================== */
.about-intro-section {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.about-hero-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-navy, #0d1b2a);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.about-hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Legal / NPO Credentials Bar */
.about-credentials-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background-color: #f1f5f9;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #475569;
  border: 1px solid rgba(13, 27, 42, 0.05);
}

.cred-label {
  font-weight: 600;
}

.cred-val {
  font-weight: 800;
  color: var(--color-navy, #0d1b2a);
}

.cred-divider {
  color: #cbd5e1;
}

.cred-badge {
  font-weight: 700;
  color: var(--color-coral, #d94838);
}

/* Vision & Mission Cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vision-mission-card {
  padding: 2.75rem 2.25rem;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vision-mission-card .vm-quote {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-navy, #0d1b2a);
  margin-top: 0.75rem;
  letter-spacing: -0.015em;
}

/* Impact & Split Column Section */
.about-impact-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-split-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
  }
}

/* Stacked Photos */
.about-images-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-photo-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-primary {
  height: 380px;
}

.photo-secondary {
  height: 320px;
}

/* Impact Content Column */
.about-impact-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-navy, #0d1b2a);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.about-action-pathways {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-pathway-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pathway-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: var(--color-coral, #d94838);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pathway-label {
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy, #0d1b2a);
}

.pathway-desc {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0.35rem 0 1rem;
  line-height: 1.5;
}

/* PhotoSwipe Mobile UI Enhancements */
.pswp__button--close {
  background-color: rgba(13, 27, 42, 0.6) !important;
  border-radius: 50% !important;
  margin: 1rem 1rem 0 0 !important;
  width: 44px !important;
  height: 44px !important;
  opacity: 0.9 !important;
}

.pswp__button--close:hover {
  background-color: var(--color-coral, #d94838) !important;
  opacity: 1 !important;
}

.pswp__button--arrow {
  width: 48px !important;
  height: 64px !important;
}

/* Ensure grid thumbnails maintain uniform height */
.album-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .album-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .album-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.album-photo-item {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 280px;
  background-color: #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.album-photo-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.album-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.album-photo-link:hover img {
  transform: scale(1.04);
}

/* Footer Quick Links List */
.footer-col .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col .footer-link-list li {
  margin: 0;
  padding: 0;
}

.footer-col .footer-link-list li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover & Visited State Resets */
.footer-col .footer-link-list li a:hover,
.footer-col .footer-link-list li a:focus {
  color: var(--color-coral, #d94838);
  text-decoration: none;
  transform: translateX(3px);
}

.footer-col .footer-link-list li a:visited {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col .footer-link-list li a:visited:hover {
  color: var(--color-coral, #d94838);
}