@charset "UTF-8";
/* =============================================
   SEED – Uniting All People in Canada
   Main Stylesheet  |  Max-width: 1400px
   Colors: #0C9293 | #264057 | #4FBBBD | #FFFFFF
   ============================================= */
:root {
  --teal-deep: #0C9293;
  --navy: #264057;
  --teal-light: #4FBBBD;
  --white: #FFFFFF;
  --grey-dark: #3d3d3d;
  --grey-mid: #6c757d;
  --grey-light: #b0b8c1;
  --grey-bg: #f5f7f8;
  --grey-border: #dde3e8;
  --teal-deep-10: rgba(12,146,147,0.10);
  --teal-deep-20: rgba(12,146,147,0.20);
  --navy-90: rgba(38,64,87,0.9);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --section-pad: 4rem;
  --container: 1900px;
  --shadow-sm: 0 2px 8px rgba(38,64,87,0.08);
  --shadow-md: 0 6px 24px rgba(38,64,87,0.13);
  --shadow-lg: 0 16px 48px rgba(38,64,87,0.18);
  --trans: 0.3s ease;
  --trans-slow: 0.6s ease;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

#site-header .header-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 96px;
  gap: 1rem;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}

#site-header .logo {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

#site-header .main-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

#site-header .nav-list {
  display: flex !important;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#site-header .header-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-shrink: 0;
}

#site-header .mobile-nav {
  display: none;
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  #site-header .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  #site-header .main-nav {
    display: none !important;
  }
  #site-header .hamburger {
    display: flex !important;
  }
  #site-header .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  #site-header .header-actions .btn-ghost-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  #site-header .header-inner {
    padding: 0 1rem;
  }
  /* logo-text kept visible — name shown at all sizes */
  #site-header .logo-text {
    display: flex !important;
  }
  #site-header .logo-name {
    display: block !important;
  }
}
/* ── Reset ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

em {
  font-style: italic;
  color: var(--teal-deep);
}

p {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ── Layout ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 7rem;
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-mid);
}

/* removed broken selector: site-header .header-inner (was missing #) */
/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-link {
  background: none;
  color: var(--teal-deep);
  border: none;
  padding: 0;
  font-weight: 500;
}

.btn-link:hover {
  color: var(--navy);
  text-decoration: underline;
}

.btn-white {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Primary Nav button */
.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--teal-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--teal-deep);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn-primary-nav:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   PREVIOUS EVENTS PAGE
   ============================================ */
.events-list-section {
  background: var(--white);
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.event-card:last-child {
  margin-bottom: 0;
}

/* Alternate sides: reversed card flips image to right */
.event-card-reverse {
  direction: rtl;
}

.event-card-reverse > * {
  direction: ltr;
}

/* ── Event image ─── */
.event-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(38, 64, 87, 0.12);
}

.event-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.04);
}

/* Floating date badge */
.event-date {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(38, 64, 87, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  min-width: 70px;
}

.event-date-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.35rem;
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.event-date-year {
  font-size: 0.7rem;
  color: var(--grey-mid);
  letter-spacing: 0.08em;
}

/* ── Event content ─── */
.event-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--teal-deep-10);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
}

.event-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}

.event-desc {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

.event-meta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--grey-border);
}

/* ── Responsive YouTube embed ─── */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(38, 64, 87, 0.1);
  margin-top: 0.5rem;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Event gallery (small thumbnails) ─── */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.event-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
}

.event-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 64, 87, 0.18);
}

/* ── Responsive — events ─── */
@media (max-width: 1024px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .event-card-reverse {
    direction: ltr;
  }
  .event-image img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .event-image img {
    height: 240px;
  }
  .event-date {
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.65rem 0.85rem;
    min-width: 60px;
  }
  .event-date-day {
    font-size: 1.5rem;
  }
  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-gallery img {
    height: 100px;
  }
  .event-meta-row {
    gap: 1rem;
  }
}
/* ── HEADER ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform 0.4s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Three-column grid: logo | nav | actions */
.header-inner {
  display: grid;
  align-items: center;
  height: 96px;
  padding: 0 2.5rem;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  width: 74px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  align-items: flex-start;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Desktop Nav — centered ── */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-dark);
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-deep);
  background: var(--teal-deep-10);
}

.caret {
  font-size: 0.87rem;
  transition: transform var(--trans);
}

.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--trans);
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  color: var(--grey-dark);
  transition: all var(--trans);
}

.dropdown li a:hover {
  color: var(--teal-deep);
  background: var(--teal-deep-10);
  padding-left: 1.5rem;
}

/* ── Header Actions — pill buttons ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Sign In — ghost pill */
.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--grey-border);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost-nav:hover {
  background: var(--teal-deep-10);
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

/* Support Us — filled pill */
.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background: var(--teal-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--teal-deep);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary-nav:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Logged-in user menu */
.header-user-menu {
  position: relative;
}

.header-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 175px;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.user-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.user-dropdown li a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  color: var(--grey-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.user-dropdown li a:hover {
  background: var(--teal-deep-10);
  color: var(--navy);
}

/* ── Hamburger ── */
/* 44x44px touch target (padding enlarges the hit area, bars stay 26x18) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 9px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Mobile Nav ── */
/* Positioned absolutely BELOW the header so opening it does not
   stretch the header grid. Scrolls internally if menu is long.
   visibility toggle keeps hidden links out of the keyboard tab order. */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, visibility 0s linear 0.4s;
  z-index: 999;
}

.mobile-nav.open {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
  transition: max-height 0.4s ease, visibility 0s;
}

.mobile-nav-list {
  padding: 1rem 2rem 1.5rem;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--grey-border);
}

.mobile-nav-list li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: color var(--trans);
}

.mobile-nav-list li a:hover {
  color: var(--teal-deep);
}

.mobile-cta {
  border: none !important;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem !important;
}

/* ── WordPress Admin Bar offsets ──────────────── */
/* WP injects a fixed admin bar (32px desktop / 46px <=782px) for
   logged-in users; the sticky header must sit below it. */
body.admin-bar .site-header {
  top: 32px;
} /* header is 96px tall */
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
/* Below 600px the admin bar scrolls away with the page */
@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}
/* ── Responsive ── */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between; /* logo left, actions right */
    position: relative; /* anchor for absolute .mobile-nav */
  }
  .header-actions .btn-ghost-nav {
    display: none;
  }
  .header-actions {
    gap: 0.4rem;
  }
}
@media (max-width: 480px) {
  .header-inner {
    padding: 0 1rem;
  }
  /* Logo text always visible — name stays, only the tagline hides on tiny screens */
  .logo-text {
    display: flex !important;
  }
  .logo-name {
    font-size: 0.85rem !important;
    display: block !important;
  }
  .logo-tagline {
    display: none;
  }
  .btn-primary-nav {
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
  }
}
/* ────────────────────────────────────────────────
   HERO SLIDER
   ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(38, 64, 87, 0.82) 52%, rgba(12, 146, 147, 0.45) 60%, rgba(38, 64, 87, 0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 2rem;
}

.slide-badge {
  display: inline-block;
  background: rgba(79, 187, 189, 0.287);
  border: 1px solid rgba(78, 187, 189, 0.6);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.slide-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.slide-title em {
  color: var(--teal-light);
  font-style: italic;
}

.slide-desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Arrow navigation ─── */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-prev {
  left: 1.5rem;
}

.hero-next {
  right: 1.5rem;
}

.hero-prev:hover, .hero-next:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  box-shadow: 0 4px 16px rgba(12, 146, 147, 0.4);
}

/* ── Dots ─── */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  padding: 0;
  flex-shrink: 0;
}

.dot.active {
  background: var(--teal-light);
  width: 28px;
  border-radius: 5px;
}

/* ── Slide progress bar ─── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-deep));
  z-index: 15;
  pointer-events: none;
  border-radius: 0 2px 0 0;
  will-change: width;
}

/* ── MISSION STRIP ─────────────────────────────── */
.mission-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.mission-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 2.5rem;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.mission-item .mission-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 146, 147, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.mission-item div {
  display: flex;
  flex-direction: column;
}

.mission-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.mission-item span {
  font-size: 0.83rem;
  color: var(--grey-mid);
}

.mission-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-border);
  flex-shrink: 0;
}

/* ── ABOUT SECTION (HOMEPAGE) ────────────────── */
.about-section {
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-img-main {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--teal-deep);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--grey-dark);
  line-height: 1.7;
  font-weight: 400;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================
   PARTNERS — fancy edition
   ============================================ */
.partners-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(12, 146, 147, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.partners-track-wrap {
  overflow: visible;
  position: relative;
  z-index: 1;
}

.partners-track {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.partner-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 130px;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(38, 64, 87, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  overflow: hidden;
}

.partner-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo::after {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-4px) rotate(-15deg);
  transition: all 0.4s ease;
}

.partner-logo:hover {
  border-color: var(--teal-light);
  box-shadow: 0 14px 40px rgba(12, 146, 147, 0.18);
  transform: translateY(-6px);
}

.partner-logo:hover::before {
  transform: scaleX(1);
}

.partner-logo:hover::after {
  opacity: 0.7;
  transform: translateY(0) rotate(0deg);
}

.partner-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.01em;
  transition: color var(--trans);
}

.partner-logo:hover span {
  color: var(--teal-deep);
}

/* ── CTA BAND ──────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band-text p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   CONTACT — pretty outlines
   ============================================ */
.contact-section {
  background: var(--white);
  position: relative;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.4rem 1.4rem 1.6rem;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal-deep), var(--teal-light));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 10px 30px rgba(12, 146, 147, 0.12);
  transform: translateX(4px);
}

.contact-info-card:hover::before {
  width: 6px;
}

.contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 146, 147, 0.1), rgba(79, 187, 189, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
  transition: transform var(--trans);
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-light));
}

.contact-info-card:hover .contact-icon svg {
  color: var(--white);
  transform: scale(1.1);
}

.contact-info-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
  transition: color var(--trans);
}

.contact-info-card a:hover {
  color: var(--teal-deep);
}

/* ── Social Section ─── */
.contact-social {
  margin-top: 0.5rem;
  padding: 1.25rem 1.4rem 1.25rem 1.6rem;
  border: 1.5px dashed var(--grey-border);
  border-radius: var(--radius-md);
  background: var(--grey-bg);
  transition: all var(--trans);
}

.contact-social:hover {
  border-style: solid;
  border-color: var(--teal-light);
  background: var(--white);
}

.contact-social h4 {
  font-size: 0.78rem;
  color: var(--teal-deep);
  margin-bottom: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(12, 146, 147, 0.3);
}

/* ── Contact Form ─── */
.contact-form-wrap {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 8px 32px rgba(38, 64, 87, 0.06);
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--teal-deep);
  border-left: 3px solid var(--teal-deep);
  border-radius: var(--radius-lg) 0 0 0;
  pointer-events: none;
}

.contact-form-wrap::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  right: -1.5px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--teal-light);
  border-right: 3px solid var(--teal-light);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--teal-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-dark);
  background: var(--grey-bg);
  transition: all var(--trans);
  outline: none;
  appearance: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--teal-light);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(12, 146, 147, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-light);
}

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

.form-success {
  display: none;
  text-align: center;
  color: var(--teal-deep);
  font-weight: 600;
  padding: 0.85rem;
  background: rgba(12, 146, 147, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(12, 146, 147, 0.3);
}

.form-success.visible {
  display: block;
}

/* ============================================
   WORDPRESS PAGE.PHP — free content from container
   ============================================ */
.page-content,
.page-content > .container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-content .page-title {
  display: none;
}

.page-content section .container {
  max-width: 1400px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
/* ── Eyebrow label (small uppercase) ─── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.eyebrow.centered-eyebrow {
  display: block;
}

.eyebrow.eyebrow-light {
  color: var(--teal-light);
}

/* ── PAGE BANNER ─── */
.page-banner {
  position: relative;
  padding: 7rem 0 5rem;
  background: linear-gradient(135deg, rgba(38, 64, 87, 0.92), rgba(12, 146, 147, 0.85)), url("https://seedsimcoe.wpcomstaging.com//srv/htdocs/wp-content/uploads/2026/05/SEED_IFTAR_2026.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 187, 189, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(38, 64, 87, 0.2) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(79, 187, 189, 0.18);
  border: 1px solid rgba(79, 187, 189, 0.4);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.page-banner-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-banner-title em {
  color: var(--teal-light);
}

.page-banner-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--teal-light);
  transition: color var(--trans);
}

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

.breadcrumb-sep {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 500;
}

/* ── MISSION / VISION / VALUES ─── */
.mvv-section {
  background: var(--grey-bg);
}

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

.mvv-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.mvv-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 18px 50px rgba(12, 146, 147, 0.15);
  transform: translateY(-8px);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card-featured {
  background: linear-gradient(160deg, var(--navy), #1a3349);
  border-color: var(--navy);
  color: var(--white);
}

.mvv-card-featured::before {
  background: linear-gradient(90deg, var(--teal-light), var(--white));
  transform: scaleX(1);
}

.mvv-card-featured .mvv-title {
  color: var(--white);
}

.mvv-card-featured .mvv-text {
  color: rgba(255, 255, 255, 0.78);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 146, 147, 0.1), rgba(79, 187, 189, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.mvv-card-featured .mvv-icon {
  background: rgba(79, 187, 189, 0.2);
}

.mvv-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-deep);
}

.mvv-card-featured .mvv-icon svg {
  color: var(--teal-light);
}

.mvv-card:hover .mvv-icon {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-light));
  transform: scale(1.05) rotate(-5deg);
}

.mvv-card:hover .mvv-icon svg {
  color: var(--white);
}

.mvv-card-featured:hover .mvv-icon {
  background: var(--teal-light);
}

.mvv-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.mvv-text {
  font-size: 0.97rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* =============================================
   SEED – Uniting All People in Canada
   About Us Page Stylesheet
   ============================================= */
:root {
  /* Colors */
  --teal-deep: #0C9293;
  --navy: #264057;
  --teal-light: #4FBBBD;
  --white: #FFFFFF;
  --grey-dark: #3d3d3d;
  --grey-mid: #6c757d;
  --grey-light: #b0b8c1;
  --grey-bg: #f5f7f8;
  --grey-border: #dde3e8;
  /* Typography */
  --font-display: Garamond, serif;
  --font-body: "Jost", system-ui, sans-serif;
  /* Layout & Effects */
  --container: 1900px;
  --shadow-sm: 0 2px 8px rgba(38,64,87,0.08);
  --shadow-md: 0 6px 24px rgba(38,64,87,0.13);
  --shadow-lg: 0 16px 48px rgba(38,64,87,0.18);
  --trans: 0.3s ease;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ── Reset & Typography ─────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

em {
  font-style: italic;
  color: var(--teal-deep);
}

p {
  font-size: 1rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ── Layout & Globals ───────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-mid);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.centered-eyebrow {
  display: block;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ── PAGE BANNER ────────────────────────────── */
.page-banner {
  position: relative;
  padding: 7rem 0 5rem;
  background: linear-gradient(135deg, rgba(38, 64, 87, 0.92), rgba(12, 146, 147, 0.85)), url("https://seedsimcoe.wpcomstaging.com//srv/htdocs/wp-content/uploads/2026/05/SEED_IFTAR_2026.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(38, 64, 87, 0.2) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(79, 187, 189, 0.18);
  border: 1px solid rgba(79, 187, 189, 0.4);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.page-banner-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-banner-title em {
  color: var(--teal-light);
}

.page-banner-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--teal-light);
  transition: color var(--trans);
}

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

.breadcrumb-sep {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 500;
}

/* ── OUR STORY ──────────────────────────────── */
.about-section {
  background: var(--white);
}

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

/* The Bulletproof Rounded Image Wrapper Fix */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.about-image-wrap:hover .about-img-main {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--teal-deep);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--grey-dark);
  line-height: 1.7;
  font-weight: 400;
}

/* ── MISSION / VISION / VALUES ──────────────── */
.mvv-section {
  background: var(--grey-bg);
}

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

.mvv-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.mvv-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 18px 50px rgba(12, 146, 147, 0.15);
  transform: translateY(-8px);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card-featured {
  background: linear-gradient(160deg, var(--navy), #1a3349);
  border-color: var(--navy);
  color: var(--white);
}

.mvv-card-featured::before {
  background: linear-gradient(90deg, var(--teal-light), var(--white));
  transform: scaleX(1);
}

.mvv-card-featured .mvv-title {
  color: var(--white);
}

.mvv-card-featured .mvv-text {
  color: rgba(255, 255, 255, 0.78);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 146, 147, 0.1), rgba(79, 187, 189, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}

.mvv-card-featured .mvv-icon {
  background: rgba(79, 187, 189, 0.2);
}

.mvv-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-deep);
}

.mvv-card-featured .mvv-icon svg {
  color: var(--teal-light);
}

.mvv-card:hover .mvv-icon {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-light));
  transform: scale(1.05) rotate(-5deg);
}

.mvv-card:hover .mvv-icon svg {
  color: var(--white);
}

.mvv-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.mvv-text {
  font-size: 0.97rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ── WHAT WE DO (Pillars) ───────────────────── */
.pillars-section {
  background: var(--white);
}

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

/* Bulletproof Rounded Card Setup */
.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 0px solid transparent;
  transition: all var(--trans);
  border-radius: 20px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.pillar-card:hover {
  border-left: 6px solid var(--teal-light);
  box-shadow: 0 10px 30px rgba(38, 64, 87, 0.08);
  transform: translateY(-4px);
}

.pillar-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.pillar-card:hover .pillar-image {
  transform: scale(1.05);
}

.pillar-body {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal-deep);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: opacity var(--trans);
}

.pillar-card:hover .pillar-number {
  opacity: 1;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar-text {
  font-size: 0.97rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── WHAT WE DO (Pillars) ───────────────────── */
.pillars-section {
  background: var(--white);
}

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

/* Bulletproof rounded card */
.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 0px solid transparent;
  transition: all var(--trans);
  border-radius: 20px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.pillar-card:hover {
  border-left: 6px solid var(--teal-light);
  box-shadow: 0 10px 30px rgba(38, 64, 87, 0.08);
  transform: translateY(-4px);
}

/* Image wrapper — the card already clips to 20px, so DROP the inner
   border-radius on the wrapper and the image. Double-clipping caused
   visible seams between the image and the body on some browsers.   */
.pillar-image-wrapper {
  position: relative;
  overflow: hidden;
  /* Aspect ratio keeps the photo proportional at every width instead
     of forcing a fixed 520px height that becomes a tall, over-cropped
     portrait on narrow screens. 4:3 reads as a landscape photo. */
  aspect-ratio: 4/3;
}

.pillar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.pillar-card:hover .pillar-image {
  transform: scale(1.05);
}

.pillar-body {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--teal-deep);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: opacity var(--trans);
}

.pillar-card:hover .pillar-number {
  opacity: 1;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar-text {
  font-size: 0.97rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ─────────────────────────────── */
/* Tablet: keep two columns but slightly shorter image */
@media (max-width: 1024px) {
  .pillar-image-wrapper {
    aspect-ratio: 16/11;
  }
  .pillar-body {
    padding: 22px 24px;
  }
}
/* Mobile: stack to one column. With the card now full-width, a 4:3
   image would be enormous — switch to 16:9 so it reads as a banner
   above each block instead of dominating the screen. */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pillar-image-wrapper {
    aspect-ratio: 16/9;
  }
  .pillar-body {
    padding: 20px 20px 22px;
  }
  .pillar-number {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
  }
  .pillar-title {
    font-size: 1.35rem;
  }
  /* Disable the hover lift/border-left on touch devices — those add a
     6px shift that re-flows the column on every tap. */
  .pillar-card:hover {
    border-left: 0px solid transparent;
    transform: none;
    box-shadow: none;
  }
}
@media (max-width: 480px) {
  .pillar-image-wrapper {
    aspect-ratio: 3/2;
  }
  .pillar-body {
    padding: 18px 16px 20px;
  }
  .pillar-title {
    font-size: 1.2rem;
  }
  .pillar-text {
    font-size: 0.92rem;
  }
}
/* ============================================
   BOARD OF DIRECTORS SECTION
   ============================================ */
/* RESET AND LOCKDOWN */
#seed-board-section {
  all: revert;
  display: block;
  width: 100%;
  padding: 4rem 0;
  background: #f5f7f8;
}

#seed-board-section * {
  box-sizing: border-box !important;
}

#seed-board-section .board-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 2rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

#seed-board-section .board-card {
  flex: 0 0 300px !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  border: 1px solid #dde3e8 !important;
  text-align: center !important;
}

#seed-board-section img {
  max-width: 150px !important;
  height: 150px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin-bottom: 1.5rem !important;
}

/* ── CTA BAND ───────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band-text p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-main {
    height: 380px;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  .section-pad {
    padding: 4rem 0;
  }
  .page-banner {
    padding: 5rem 0 3.5rem;
  }
  .page-banner-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band-actions {
    justify-content: center;
  }
  .pillar-image-wrapper {
    height: 250px;
  }
  .pillar-body {
    padding: 1.5rem 1.75rem;
  }
}
/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.site-footer {
  position: relative;
}

.footer-wave {
  display: block;
  line-height: 0;
  background: var(--white);
  margin-bottom: -2px;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer-body {
  background: linear-gradient(160deg, #172f47 0%, #0e2235 55%, #0a3535 100%);
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.footer-glow-tl {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(12, 146, 147, 0.18) 0%, transparent 70%);
}

.footer-glow-br {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(79, 187, 189, 0.12) 0%, transparent 70%);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

/* Get in Touch column */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item,
.footer-contact-item a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.87rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--trans);
}

/* 2. Target the icons directly, even if they are nested inside a link */
.footer-contact-item svg,
.footer-contact-item a svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal-light) !important; /* Explicitly forces the Explore accent */
}

/* 3. Optional: Allows the contact links to turn bright white on hover, matching Explore */
.footer-contact-item a:hover {
  color: var(--white) !important;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 52px;
  height: 56px;
  filter: brightness(1.1);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-logo-tag {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.footer-registered {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

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

.fs-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--trans);
}

.fs-link svg {
  width: 16px;
  height: 16px;
}

.fs-link:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 146, 147, 0.4);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(79, 187, 189, 0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.58);
  transition: all var(--trans);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a::before {
  content: "›";
  font-size: 0.9rem;
  color: var(--teal-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--trans);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-input {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  padding: 0.7rem 1.2rem;
  background: var(--teal-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.03em;
}

.newsletter-btn:hover {
  background: #0aa5a6;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 146, 147, 0.45);
}

.footer-divider-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 0 2.5rem;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(79, 187, 189, 0.35), transparent);
}

.footer-divider-icon {
  font-size: 1.1rem;
  opacity: 0.75;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.4rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-copy strong {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--trans);
}

.footer-bottom-links a:hover {
  color: var(--teal-light);
}

/* ── BACK TO TOP ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--trans);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — LARGE TABLET
   ═══════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-main {
    height: 380px;
  }
  .about-image-badge {
    right: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* About page tablet */
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .impact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }
  /* Layout */
  .container {
    padding: 0 2rem;
  }
  .section-pad {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-title {
    margin-bottom: 0.75rem;
  }
  /* Header */
  .header-inner {
    height: 96px;
  }
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .btn-primary-nav {
    display: none;
  }
  /* Hero slider — mobile overhaul */
  .hero-section {
    height: 72vh;
    min-height: 460px;
    max-height: 640px;
  }
  .slide-overlay {
    background: linear-gradient(to bottom, rgba(38, 64, 87, 0.15) 0%, rgba(38, 64, 87, 0.5) 40%, rgba(38, 64, 87, 0.88) 78%, rgba(38, 64, 87, 0.97) 100%);
  }
  .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    padding: 1.25rem 1.25rem 5.25rem;
    max-width: 100%;
  }
  .slide-badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.7rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.1em;
  }
  .slide-title {
    font-size: clamp(1.7rem, 6vw, 2rem);
    margin-bottom: 0.55rem;
    line-height: 1.15;
  }
  .slide-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.84);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .slide-actions .btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.83rem;
  }
  /* Arrows: tappable, 44×44 min target */
  .hero-prev,
  .hero-next {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    opacity: 1;
    top: 38%;
  }
  .hero-prev {
    left: 0.75rem;
  }
  .hero-next {
    right: 0.75rem;
  }
  .hero-prev:hover,
  .hero-next:hover {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    box-shadow: 0 4px 16px rgba(12, 146, 147, 0.45);
  }
  /* Dots: 28×28 tap area, visual via ::after */
  .hero-dots {
    bottom: 1.75rem;
    gap: 0.25rem;
  }
  .dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dot::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .dot.active {
    width: 28px;
    background: transparent;
    border-radius: 50%;
  }
  .dot.active::after {
    width: 22px;
    border-radius: 4px;
    background: var(--teal-light);
  }
  /* Mission */
  .mission-strip {
    padding: 1rem 0;
  }
  .mission-strip-inner {
    flex-direction: column;
    gap: 0;
  }
  .mission-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }
  .mission-item {
    padding: 1rem 1.5rem;
  }
  /* About (homepage) */
  .about-grid {
    gap: 3rem;
  }
  .about-content-col {
    gap: 1rem;
  }
  .about-actions {
    margin-top: 1rem;
  }
  /* ============================================
     PARTNERS — fancy edition
     ============================================ */
  .partners-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .partners-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(12, 146, 147, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .partners-track-wrap {
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  .partners-track {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
  }
  .partner-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 130px;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(38, 64, 87, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    overflow: hidden;
  }
  .partner-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-deep), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .partner-logo::after {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(-4px) rotate(-15deg);
    transition: all 0.4s ease;
  }
  .partner-logo:hover {
    border-color: var(--teal-light);
    box-shadow: 0 14px 40px rgba(12, 146, 147, 0.18);
    transform: translateY(-6px);
  }
  .partner-logo:hover::before {
    transform: scaleX(1);
  }
  .partner-logo:hover::after {
    opacity: 0.7;
    transform: translateY(0) rotate(0deg);
  }
  .partner-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.01em;
    transition: color var(--trans);
  }
  .partner-logo:hover span {
    color: var(--teal-deep);
  }
  /* ── CTA BAND ──────────────────────────────────── */
  .cta-band {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
  }
  .cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .cta-band-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .cta-band-text p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
  }
  .cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
  /* Contact */
  .contact-grid {
    gap: 3rem;
  }
  .contact-info {
    gap: 1rem;
  }
  .contact-form-wrap {
    padding: 2rem;
  }
  .contact-form {
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /* About page sections (mobile) */
  .page-banner {
    padding: 5rem 0 3.5rem;
  }
  .page-banner-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .impact-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .mvv-card {
    padding: 2rem 1.5rem;
  }
  .pillar-card {
    padding: 1.5rem 1.75rem;
  }
  /* Footer */
  .footer-body {
    padding-top: 3rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-divider-inner {
    padding-bottom: 1.5rem;
  }
  .footer-bottom {
    padding: 1rem 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  /* Back to top */
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
/* ============================================================

   SEED — Previous Events Page  |  CSS ADDITIONS
   Append this entire block to the bottom of your style.css.
   Do NOT replace your existing file — add after it.

   ============================================================ */
/* ── Event card spacing & divider ──────────────────────────── */
/* Overrides the base .event-card margin-bottom from style.css  */
.events-list-section .event-card {
  padding-bottom: 7rem;
  margin-bottom: 5rem;
}

.events-list-section .event-card:not(:last-child) {
  border-bottom: 1px solid var(--grey-border);
}

.events-list-section .event-card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .events-list-section .event-card {
    padding-bottom: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .events-list-section .event-card {
    padding-bottom: 3rem;
    margin-bottom: 2.5rem;
  }
}
/* ── Page-banner override for Events page ─── */
.page-banner-events {
  background: linear-gradient(135deg, rgba(38, 64, 87, 0.92), rgba(12, 146, 147, 0.8)), url("https://seedsimcoe.wpcomstaging.com//srv/htdocs/wp-content/uploads/2026/05/SEED_IFTAR_2026.jpeg") center/cover no-repeat;
}

/* Replace the URL above with your preferred events banner photo */
/* ── Event Stats Strip ──────────────────────────────────────── */
.events-stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 1.75rem 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.events-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.events-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 3rem;
}

.events-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.events-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.events-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-border);
  flex-shrink: 0;
}

/* ── Event Filter Bar ───────────────────────────────────────── */
.events-filter-section {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 74px; /* matches .site-header height */
  z-index: 90;
  transition: box-shadow var(--trans);
}

.events-filter-section.shadowed {
  box-shadow: var(--shadow-md);
}

.events-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.35rem;
  border: 1.5px solid var(--grey-border);
  border-radius: 100px;
  background: var(--white);
  color: var(--grey-mid);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--teal-light);
  color: var(--teal-deep);
  background: rgba(12, 146, 147, 0.05);
}

.filter-btn.active {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 146, 147, 0.3);
}

/* ── Event Meta Items (icons + text inside .event-meta-row) ── */
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-mid);
}

.event-meta-item svg {
  color: var(--teal-deep);
  flex-shrink: 0;
}

/* ── Online event badge on image ───────────────────────────── */
.event-online-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(12, 146, 147, 0.35);
}

/* ── Events filter: hide/show cards ────────────────────────── */
.event-card[data-hidden] {
  display: none;
}

/* ── No-results state ──────────────────────────────────────── */
.events-no-results {
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.events-no-results[hidden] {
  display: none;
}

.events-no-results-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.events-no-results h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.events-no-results p {
  color: var(--grey-mid);
}

/* ── Lightbox ───────────────────────────────────────────────── */
.seed-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 22, 34, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.seed-lightbox.seed-lightbox-visible {
  opacity: 1;
}

/* hidden attribute overrides flex when closed */
.seed-lightbox[hidden] {
  display: none !important;
}

.seed-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seed-lightbox-inner img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  display: block;
  transition: opacity 0.25s ease;
}

.seed-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  z-index: 2;
}

.seed-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.seed-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  z-index: 2;
}

.seed-lightbox-prev {
  left: 1.25rem;
}

.seed-lightbox-next {
  right: 1.25rem;
}

.seed-lightbox-nav:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  box-shadow: 0 4px 16px rgba(12, 146, 147, 0.4);
}

.seed-lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
}

/* ── Gallery — pointer & focus ring ───────────────────────── */
.event-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
}

.event-gallery img:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 2px;
}

/* ── Responsive — additions ─────────────────────────────────── */
@media (max-width: 1024px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .event-card-reverse {
    direction: ltr;
  }
  .event-image img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .event-image img {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .events-stat {
    padding: 0.5rem 1.5rem;
  }
  .events-stat-divider {
    height: 36px;
  }
  .events-filter-bar {
    gap: 0.4rem;
  }
  .filter-btn {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
  }
  .seed-lightbox-nav {
    display: none;
  } /* swipe handles navigation on mobile */
  .seed-lightbox-counter {
    bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .events-stats-inner {
    gap: 0.25rem;
  }
  .events-stat {
    padding: 0.5rem 1rem;
  }
  .events-stat-divider {
    display: none;
  }
}
/* ═══════════════════════════════════════════════════════════════
   SEED — Login Page (CSS-ONLY, NO TEMPLATE REQUIRED)
   ──────────────────────────────────────────────────────────────
   Styles the EXISTING Theme My Login form at /login/ as it
   already renders on your site. No PHP changes, no template
   assignment, no markup edits.

   ► PASTE INTO: WordPress Admin → Appearance → Customize →
     Additional CSS.  (Putting it there avoids the unclosed-
     media-query bug in style.css that's burying other rules.)

   Targets the .tml wrapper TML outputs, the captcha block, the
   remember-me row, the Register/Lost-password links, and the
   submit button visible in the screenshot.
   ═══════════════════════════════════════════════════════════════ */
/* Page background — soft branded gradient behind the card.
   :has() is supported in every current browser; if a visitor's
   browser is too old, they simply get the plain white background
   and the rest still works. */
body:has(.tml) {
  background: radial-gradient(900px 500px at 85% -10%, rgba(12, 146, 147, 0.1), transparent 60%), radial-gradient(700px 450px at -10% 100%, rgba(79, 187, 189, 0.1), transparent 55%), #f5f7f8 !important;
}

/* Push the card down off the sticky header, center it, give it
   breathing room. The selector is highly specific so it overrides
   anything the theme might inject. */
.tml,
body .tml {
  display: block !important;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 460px !important;
  margin: 4rem auto 6rem !important;
  padding: 2.75rem 2.5rem 2.25rem !important;
  background: #ffffff !important;
  border: 1px solid #dde3e8 !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 48px rgba(38, 64, 87, 0.18) !important;
  position: relative !important;
  overflow: hidden !important;
  font-family: "Jost", system-ui, sans-serif !important;
}

/* Top accent bar */
.tml::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0C9293, #4FBBBD);
}

/* Corner glow */
.tml::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 146, 147, 0.1), transparent 70%);
  pointer-events: none;
}

/* Card heading — TML may or may not print one. Add a synthetic
   one above the username field via ::before on the form. */
.tml form {
  margin: 0;
  padding: 0;
  position: relative;
}

.tml > form::before {
  content: "Welcome back";
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #264057;
  text-align: center;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.tml > form::after {
  /* Decorative subtitle below the synthetic heading */
  content: "Sign in to your SEED account";
  display: none; /* enable if you want a subtitle */
}

/* Labels — uppercase navy */
.tml label {
  display: block !important;
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #264057 !important;
  margin: 0 0 0.45rem !important;
}

/* Field rows — TML wraps each field in its own div/p */
.tml p,
.tml .tml-field-wrap,
.tml .tml-field-group {
  margin: 0 0 1.1rem !important;
  padding: 0 !important;
}

/* Inputs */
.tml input[type=text],
.tml input[type=email],
.tml input[type=password],
.tml input[type=number],
.tml input[type=url] {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  color: #3d3d3d !important;
  background: #f5f7f8 !important;
  border: 1.5px solid #dde3e8 !important;
  border-radius: 6px !important;
  outline: none !important;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
}

.tml input[type=text]:hover,
.tml input[type=email]:hover,
.tml input[type=password]:hover,
.tml input[type=number]:hover {
  border-color: #4FBBBD !important;
  background: #ffffff !important;
}

.tml input[type=text]:focus,
.tml input[type=email]:focus,
.tml input[type=password]:focus,
.tml input[type=number]:focus {
  background: #ffffff !important;
  border-color: #0C9293 !important;
  box-shadow: 0 0 0 4px rgba(12, 146, 147, 0.1) !important;
}

/* ── Captcha row ("Prove your humanity 7 + 6 =") ─────────────── */
/* TML's math captcha plugins render the equation as plain text
   alongside an inline number input. Pin everything onto one line
   and give it a tinted panel so it looks intentional. */
.tml p:has(> input[type=number]),
.tml .captcha,
.tml [class*=captcha] {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  padding: 0.9rem 1rem !important;
  background: #f5f7f8 !important;
  border: 1px dashed #dde3e8 !important;
  border-radius: 6px !important;
}

.tml p:has(> input[type=number]) label,
.tml .captcha label {
  display: inline !important;
  width: 100% !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #264057 !important;
  margin: 0 0 0.25rem !important;
}

.tml input[type=number] {
  display: inline-block !important;
  width: 80px !important;
  padding: 0.45rem 0.6rem !important;
  text-align: center !important;
}

/* ── Remember Me row ─────────────────────────────────────────── */
.tml p.forgetmenot,
.tml .tml-rememberme-wrap,
.tml p:has(> input[type=checkbox]) {
  display: flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.tml p.forgetmenot label,
.tml p:has(> input[type=checkbox]) label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  margin: 0 !important;
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #6c757d !important;
  cursor: pointer !important;
}

.tml input[type=checkbox] {
  width: 17px !important;
  height: 17px !important;
  accent-color: #0C9293 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* ── Submit button ─────────────────────────────────────────── */
.tml input[type=submit],
.tml button[type=submit],
.tml #wp-submit {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  padding: 0.95rem 1rem !important;
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0C9293, #4FBBBD) !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
  text-shadow: none !important;
}

.tml input[type=submit]:hover,
.tml button[type=submit]:hover,
.tml #wp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(12, 146, 147, 0.32);
  filter: brightness(1.06);
}

/* ── Register + Lost password links ─────────────────────────── */
/* TML usually outputs these as a <ul class="tml-links"> or as
   loose <p><a>...</a></p> rows. Catch both. */
.tml .tml-links,
.tml > ul,
.tml > nav {
  list-style: none !important;
  margin: 1.4rem 0 0 !important;
  padding: 1.1rem 0 0 !important;
  border-top: 1px solid #dde3e8 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 1.75rem !important;
  flex-wrap: wrap !important;
}

.tml .tml-links li,
.tml > ul > li {
  list-style: none !important;
  margin: 0 !important;
}

.tml .tml-links a,
.tml > ul a,
.tml > nav a {
  font-family: "Jost", system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #6c757d !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.tml .tml-links a:hover,
.tml > ul a:hover,
.tml > nav a:hover {
  color: #0C9293 !important;
}

/* Errors */
.tml .tml-errors,
.tml #login_error {
  list-style: none !important;
  margin: 0 0 1.25rem !important;
  padding: 0.85rem 1.1rem !important;
  background: #fdf1f1 !important;
  border-left: 4px solid #d9534f !important;
  border-radius: 6px !important;
  color: #8a2e2b !important;
  font-size: 0.88rem !important;
}

/* Mobile Fix */
@media (max-width: 520px) {
  .tml,
  body .tml {
    width: calc(100% - 2rem) !important;
    margin: 2.5rem auto 4rem !important;
    padding: 2rem 1.4rem 1.75rem !important;
  }
  .tml > form::before {
    font-size: 1.6rem;
  }
}
/* =============================================================
   SEED — Targeted Fixes (appended)
   ============================================================= */
/* 1. REMOVE ALL HERO SLIDER ARROWS (all screen sizes) */
.hero-prev,
.hero-next {
  display: none !important;
}

/* 2. HERO SLIDER — tighter mobile height */
@media (max-width: 768px) {
  .hero-section {
    height: 58vh !important;
    min-height: 380px !important;
    max-height: 520px !important;
  }
  .slide-content {
    padding-bottom: 4.5rem !important;
  }
}
@media (max-width: 480px) {
  .hero-section {
    height: 52vh !important;
    min-height: 340px !important;
    max-height: 460px !important;
  }
}
/* 3. ABOUT-US IMAGE BADGE — keep inside card on mobile */
@media (max-width: 1024px) {
  .about-image-badge {
    right: 1rem !important;
    bottom: 1rem !important;
  }
}
@media (max-width: 768px) {
  .about-image-badge {
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    padding: 0.9rem 1.25rem !important;
  }
  .badge-year {
    font-size: 1.55rem !important;
  }
}
/* 4. BOARD OF DIRECTORS — centre images on all screen sizes */
#seed-board-section .board-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

#seed-board-section .img-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 0 1.5rem !important;
}

#seed-board-section .img-wrap img,
#seed-board-section .board-card img {
  display: block !important;
  margin: 0 auto !important;
  max-width: 150px !important;
  width: 150px !important;
  height: 150px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
  flex-shrink: 0 !important;
}

#seed-board-section .board-card h3,
#seed-board-section .board-card p {
  text-align: center !important;
  width: 100% !important;
}

#seed-board-section .board-role {
  color: var(--teal-deep) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.75rem !important;
}

@media (max-width: 600px) {
  #seed-board-section .board-grid {
    flex-direction: column !important;
    align-items: center !important;
  }
  #seed-board-section .board-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 340px !important;
  }
}
/* 5. FILTER BAR — properly sticky, horizontally scrollable on mobile */
.events-filter-section {
  position: sticky !important;
  top: 72px !important;
  z-index: 90 !important;
  background: var(--grey-bg, #f5f7f8) !important;
  border-bottom: 1px solid var(--grey-border, #dde3e8) !important;
}

body.admin-bar .events-filter-section {
  top: 128px !important;
}

@media (max-width: 782px) {
  body.admin-bar .events-filter-section {
    top: 142px !important;
  }
}
@media (max-width: 600px) {
  body.admin-bar .events-filter-section {
    top: 72px !important;
  }
}
@media (max-width: 768px) {
  .events-filter-section {
    padding: 0.85rem 0 !important;
  }
  .events-filter-bar {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 2px !important;
    gap: 0.4rem !important;
  }
  .events-filter-bar::-webkit-scrollbar {
    display: none !important;
  }
  .filter-btn {
    flex-shrink: 0 !important;
  }
}
/* 6. INLINE IMAGE / ICON SIZE CORRECTIONS */
/* Footer & header logos — explicit sizes so height:auto doesn't collapse them */
.footer-logo-img {
  width: 52px !important;
  height: 56px !important;
  flex-shrink: 0 !important;
}

.logo-image {
  width: 74px !important;
  height: 80px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

/* Footer social icons */
.fs-link svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
}

/* MVV section icons */
.mvv-icon svg {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0 !important;
}

/* Filter button icons */
.filter-btn img.filter-icon,
.filter-btn svg.filter-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}

/* Event tag icon (e.g. Iftar png) */
.event-tag-icon {
  width: 18px !important;
  height: 18px !important;
  display: inline !important;
  vertical-align: middle !important;
}

/* About us main image responsive heights */
.about-img-main {
  height: 520px !important;
}

@media (max-width: 1024px) {
  .about-img-main {
    height: 380px !important;
  }
}
@media (max-width: 768px) {
  .about-img-main {
    height: 280px !important;
  }
}
@media (max-width: 480px) {
  .about-img-main {
    height: 220px !important;
  }
}
/* 7. SMALL-SCREEN CONTAINER PADDING & CTA BAND */
@media (max-width: 480px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .cta-band-inner {
    flex-direction: column !important;
    text-align: center !important;
  }
  .cta-band-actions {
    justify-content: center !important;
  }
  .page-banner {
    padding: 4rem 0 3rem !important;
  }
}