/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--black-mountain);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
p{margin:0 0 12px}
h1,h2,h3{line-height:1.15; margin:0 0 12px}
h1{font-size:clamp(34px,4vw,48px); letter-spacing:-0.02em}
h3{font-size:18px}
p{font-size:16px}
small{color:var(--muted)}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:var(--section-pad) 0;
}
.section--surface{background:var(--surface)}
.section__head{
  text-align:center;
  max-width:760px;
  margin:0 auto 26px;
}

/* SECTION PILL (ONLY HEADING STYLE) */
.section-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--green-hill);
  background:rgba(74,148,67,.12);
  border:1px solid rgba(74,148,67,.25);
  padding:10px 18px;           /* slightly bigger */
  border-radius:999px;
  font-size:20px;
  letter-spacing:-0.01em;
  margin-bottom:12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--yellow-sun);
  color:var(--black-mountain);
  box-shadow:0 10px 20px rgba(255,212,0,.25);
}
.btn--ghost{
  background:transparent;
  border-color:var(--border);
}

/* Navbar */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}
.brand__mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(255,212,0,.95), rgba(13,183,225,.9));
}
.nav__links{
  display:flex;
  gap:18px;
  font-weight:600;
}
.nav__links a{
  padding:8px 10px;
  border-radius:10px;
}
.nav__actions{display:flex; gap:10px}
.nav__toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
}

/* Hero */
.hero{padding:99px 0 74px}
.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.hero__card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero__cta{margin-top:18px}
.hero__sub{
  color:var(--muted);
  max-width:52ch;
}

/* Grids */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 24px rgba(35,31,32,.06);
  padding:18px;
}
.card__icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(13,183,225,.12);
  border:1px solid rgba(13,183,225,.18);
  margin-bottom:12px;
  font-weight:900;
}

/* Stats */
.stats{
 
  padding:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat{
  padding:14px;
  border-radius:14px;
  background:rgba(191,205,49,.10);
  border:1px solid rgba(191,205,49,.20);
  text-align: center;
  
}
.stat__num{font-weight:900;font-size:22px;color: #065341;}
.stat__label{font-weight:700}
.stat__desc{color:var(--muted);font-size:14px}

/* Slider */
.hero-slider__track{display:flex;transition:transform .5s ease}
.hero-slider__slide{min-width:100%}
.hero-slider__img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:#eef3f6;
}
.hero-slider__dots{
  position:absolute;
  bottom:14px;
  left:0;right:0;
  display:flex;
  justify-content:center;
  gap:8px;
}
.hero-slider__dot{
  width:9px;height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.7);
  background:rgba(35,31,32,.25);
}
.hero-slider__dot.is-active{
  background:var(--yellow-sun);
}

/* Footer */
.footer{
  background:#0c0f10;
  color:#eef2f4;
  padding:42px 0;
  margin-top:30px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:18px;
}
.footer__title{font-weight:800;margin-bottom:10px}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:22px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
}


/* ===============================
   NAV SUBMENU (PROGRAMS)
================================ */

.nav__item {
  position: relative;
}

.nav__parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__caret {
  font-size: 0.7em;
  opacity: 0.7;
}

.nav__submenu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(35,31,32,.12);
  padding: 8px;
  display: none;
  z-index: 100;
}

.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.nav__submenu a:hover {
  background: rgba(74,148,67,.08);
}

/* Show submenu on hover (desktop) */
.has-submenu:hover .nav__submenu {
  display: block;
}

.card__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;

  /* REMOVE box look */
  background: none;
  border: none;
  border-radius: 0;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(3);   /* try 2.5 – 3.5 */
}
.deepei{
	color:#065341;
}

.success-title{
  text-align:center;
  font-size:clamp(26px, 2.8vw, 40px);
  font-weight:900;
  margin:0;
  letter-spacing:-0.02em;
}

.success-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.success-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(35,31,32,.06);
  display:flex;
  flex-direction:column;
}

.success-img-wrap{
  width:100%;
  height:220px;
  overflow:hidden;
  background:#1f4d2b; /* your green background */
}

.success-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center top; /* 👈 KEY FIX */
  display:block;
}

.success-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:210px;           /* keeps card heights aligned */
}

.success-name{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.success-desc{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

/* Full-width button like screenshot */
.success-btn{
  margin-top:auto;
  display:block;
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #2f3a4a;
  background:#fff;
  color:#2f3a4a;
  font-weight:700;
  transition:background .15s ease, transform .15s ease;
}
.success-btn:hover{
  background:rgba(47,58,74,.06);
  transform:translateY(-1px);
}

/* Responsive */
@media (max-width: 992px){
  .success-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 576px){
  .success-grid{ grid-template-columns:1fr; }
  .success-img-wrap{ height:200px; }
}

/* ==============================
   LATEST UPDATES (2-CARD LAYOUT)
================================= */

.updates-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap:22px;

  /* Center the grid */
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}

/* Responsive */
@media (max-width: 768px){
  .updates-grid{
    grid-template-columns:1fr;
    max-width:100%;
  }
}







/* ======================================
   NEWS + COURSES (Two Column List Section)
====================================== */

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

/* Column title */
.nc-title{
  margin:0 0 18px;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 1200;
  letter-spacing: -0.02em;
}

/* Item row */
.nc-item{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items:start;
  padding: 14px 0;
}

.nc-item + .nc-item{
  border-top: 1px solid var(--border);
}

/* Thumbnail */
.nc-thumb{
  width: 90px;
  height: 70px;
  overflow:hidden;
  border-radius: 10px;
  background:#e9eef3;
  display:block;
}

.nc-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Meta */
.nc-meta{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.nc-date{
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.nc-heading{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
}

.nc-heading:hover{
  text-decoration: underline;
}

.nc-link{
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}

.nc-link:hover{
  color: var(--black-mountain);
}

/* Responsive */
@media (max-width: 992px){
  .news-courses{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}



/* ======================================
   VOICES OF IMPACT (Image + Testimonials)
====================================== */

.vo-title-wrap{
  text-align:center;
  margin-bottom:28px;
}

.vo-title{
  margin:0;
  font-size:clamp(26px, 2.8vw, 40px);
  font-weight:900;
  letter-spacing:-0.02em;
  color:var(--green-hill);
}

/* Main grid */
.voices-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap:28px;
  align-items:Center;
}

/* Left image */
.voices-left{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(35,31,32,.06);
}

.voices-img{
  width:100%;
  height:100%;
  max-height: 420px;
  object-fit:cover;
  display:block;
}

/* Right side cards */
.voices-right{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(35,31,32,.06);
}

/* Individual testimonial block */
.vo-card{
  padding:18px 18px 16px;
}

.vo-card + .vo-card{
  border-top:1px solid var(--border);
}

.vo-quote{
  margin:0 0 12px;
  font-style:italic;
  line-height:1.75;
  color: rgba(35,31,32,.85);
}

/* Person details */
.vo-person{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.vo-name{
  font-weight:900;
  color:var(--green-hill);
}

.vo-meta{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

/* Responsive */
@media (max-width: 992px){
  .voices-grid{
    grid-template-columns: 1fr;
  }
  .voices-img{
    max-height: 360px;
  }
}


/* ==============================
   PARTNER LOGO CAROUSEL (MARQUEE)
================================= */

.partners-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 18px;
  padding: 10px 0;
}

/* nice fade edges */
.partners-marquee:before,
.partners-marquee:after{
  content:"";
  position:absolute;
  top:0;
  width:60px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.partners-marquee:before{
  left:0;
  background: linear-gradient(to right, var(--surface), rgba(247,249,251,0));
}
.partners-marquee:after{
  right:0;
  background: linear-gradient(to left, var(--surface), rgba(247,249,251,0));
}

.partners-track{
  display:flex;
  gap: 26px;
  align-items:center;
  width: max-content;
  animation: partnersScroll 18s linear infinite;
}

.partner-logo{
  flex: 0 0 auto;
  width: 160px;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(35,31,32,.06);
  padding: 10px 14px;
}

.partner-logo img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display:block;
  filter: none;
}

/* pause on hover */
.partners-marquee:hover .partners-track{
  animation-play-state: paused;
}

@keyframes partnersScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 576px){
  .partner-logo{
    width: 130px;
    height: 62px;
  }
  .partners-track{
    gap: 18px;
    animation-duration: 16s;
  }
}

.hero__card{
  position: relative; /* anchor absolute children */
}

.hero-slider{
  position: relative; /* anchor dots to the slider itself */
}

.hero-slider__viewport{
  overflow: hidden;   /* keep slides clipped inside */
}

.hero-slider__dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;         /* keep dots above image */
}

.impact-image-wrap{
  margin-top: 28px;
  display: flex;
  justify-content: center;   /* center horizontally */
}

.impact-image-wrap img{
  height: 300px;
  width: auto;
  max-width: 100%;
  display: block;
}
.brand__logo{
  height:45px;        /* adjust if needed */
  width: auto;
  display: block;
}


/* ==========================
   GYLC Footer (Image Match)
========================== */

.gylc-footer{
  background:#0b0c0c;
  color:#ffffff;
  padding: 48px 0 26px;
}

.gylc-footer__top{
  display:grid;
  grid-template-columns: 260px 1.2fr 1fr .7fr;
  gap: 46px;
  align-items:start;
}

/* Logo */
.gylc-footer__logo img{
  max-width: 240px;
  height: auto;
  display:block;
}

/* Headings */
.gylc-footer__heading{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color:#ffffff;
}

.gylc-footer__heading--spaced{
  margin-top: 18px;
}

/* Text */
.gylc-footer__text{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

/* Links */
.gylc-footer__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.gylc-footer__link{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-size: 13px;
  font-weight: 700;
}

.gylc-footer__link:hover{
  text-decoration: underline;
  color:#fff;
}

/* Yellow link style like screenshot */
.gylc-footer__link--yellow{
  color: var(--yellow-sun); /* #FFD400 */
}

/* Social */
.gylc-footer__social{
  display:flex;
  gap: 10px;
}

.gylc-footer__social-btn{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:#ffffff;
  color:#0b0c0c;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
}

.gylc-footer__social-btn:hover{
  transform: translateY(-1px);
}

/* Bottom legal lines */
.gylc-footer__bottom{
  margin-top: 34px;
  text-align:center;
}

.gylc-footer__legal{
  margin: 0 auto 10px;
  max-width: 900px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.gylc-footer__copy{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

/* Responsive */
@media (max-width: 992px){
  .gylc-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .gylc-footer__logo{
    grid-column: 1 / -1;
  }
  .gylc-footer__logo img{
    max-width: 220px;
  }
}

@media (max-width: 576px){
  .gylc-footer__top{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Projects Hero Section
========================= */

.projects-hero{
  padding: 90px 0;
  background:#f7f9fb;
}

.projects-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
}

.projects-hero__content h2{
  font-size: 34px;
  font-weight: 800;
  color: #2f6b4f;
  margin-bottom: 18px;
}

.projects-hero__content p{
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* Image Card */
.projects-hero__image{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.projects-hero__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Decorative Green Curves */
.projects-hero__image::before,
.projects-hero__image::after{
  content: "";
  position: absolute;
  background: ;
  z-index: 2;
}

.projects-hero__image::before{
  width: 120px;
  height: 120px;
  top: -40px;
  left: -40px;
  border-radius: 50%;
}

.projects-hero__image::after{
  width: 160px;
  height: 160px;
  bottom: -60px;
  right: -60px;
  border-radius: 50%;
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px){
  .projects-hero__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .projects-hero__content p{
    margin: 0 auto;
  }
}



/* ===============================
   Completed Initiatives Section
================================ */

.initiatives {
  padding: 90px 0;
  background: #ffffff;
}

.initiatives__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 36px;
}

/* Grid */
.initiatives__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.initiative-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden; /* IMPORTANT: allows image to span full width */
  display: flex;
  flex-direction: column;
}

/* Full-width image */
.initiative-card__image {
  width: 100%;
  height: 200px;
}

.initiative-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body (padding ONLY here) */
.initiative-card__body {
  padding: 22px 22px 26px;
}

/* Title */
.initiative-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  color:#111;
  margin-bottom: 10px;
}

/* Paragraph */
.initiative-card__body p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

/* List */
.initiative-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.initiative-list li {
  font-size: 16px;
  color: #333;
  padding-left: 14px;
  margin-bottom: 8px;
  position: relative;
}

.initiative-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f6b4f;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
  .initiatives__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .initiatives__grid {
    grid-template-columns: 1fr;
  }

  .initiative-card__image {
    height: 180px;
  }
}


/* =========================
   Mini CTA Section
========================= */

.cta-mini{
  background:#f7f9fb;
  padding: 60px 0 80px;
  text-align:center;
}

.cta-mini__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
  color: var(--green-hill);
}

.cta-mini__buttons{
  display:flex;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base button */
.cta-mini__btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

/* Icon */
.cta-mini__icon{
  font-size: 14px;
  line-height: 1;
}

/* Filled button */
.cta-mini__btn--primary{
  background: var(--green-hill);
  color:#fff;
  border-color: var(--green-hill);
}

.cta-mini__btn--primary:hover{
  filter: brightness(0.95);
}

/* Outline button */
.cta-mini__btn--outline{
  background:#ffffff;
  color: rgba(35,31,32,.75);
}

.cta-mini__btn--outline:hover{
  background: rgba(35,31,32,.04);
}

/* Responsive */
@media (max-width: 520px){
  .cta-mini__btn{
    width: 240px;
    justify-content:center;
  }
}




/* Ensure submenu items position correctly */
.nav__item {
  position: relative;
}

/* Base submenu */
.nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 1000;
}

/* Show submenu on hover */
.nav__item:hover > .nav__submenu {
  display: block;
}

/* Second-level submenu (right aligned) */
.nav__submenu--right {
  top: 0;
  left: 100%;
  margin-left: 6px;
}

/* Submenu links */
.nav__submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}

.nav__submenu a:hover {
  background: #f4f6f8;
}

/* Caret alignment */
.nav__caret {
  margin-left: 6px;
  font-size: 12px;
}



.rh-hero__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(35, 31, 32, .92);
}

.initiatives__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #2f6b4f;
  margin-bottom: 48px;
}

.nav-link{
  color:#555;
  text-decoration:none;
  padding:8px 14px;
  font-weight:500;
}

.nav-link.active{
  color:#1f6b4f;
  font-weight:700;
 
}



/* ===== FORCE Menu button vertical centering on MOBILE ===== */
@media (max-width: 768px) {

  /* 1) Make the header right side align items vertically */
  header .container,
  .header,
  .header__grid,
  .header__inner,
  .header__row,
  .header__actions,
  .nav,
  .nav__right {
    align-items: center !important;
  }

  /* 2) FORCE ALL header buttons/links to be centered */
  header button,
  header .btn,
  header a.btn,
  header a,
  header button span,
  header a span {
    line-height: 1 !important;
  }

  /* 3) MOST IMPORTANT: Target the Menu button itself
        (this catches typical mobile toggles) */
  button.menu,
  .menu-btn,
  .menu-button,
  .nav-toggle,
  .header__menu,
  .header__toggle,
  .mobile-menu__toggle,
  button[aria-label="Menu"],
  button[aria-expanded],
  button[data-menu],
  button[data-nav-toggle] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 44px !important;
    padding: 0 16px !important;      /* no top/bottom padding */
    line-height: 1 !important;
    box-sizing: border-box !important;
  }

  /* 4) If the Menu text is inside a span, force it too */
  button.menu span,
  .menu-btn span,
  .menu-button span,
  .nav-toggle span,
  .header__menu span,
  .header__toggle span,
  .mobile-menu__toggle span {
    display: inline-block !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translateY(0) !important;
  }

  /* 5) Last-resort fallback: if something STILL pushes it up,
        force centering using line-height = height */
  button.menu,
  .menu-btn,
  .menu-button,
  .nav-toggle,
  .header__menu,
  .header__toggle,
  .mobile-menu__toggle {
    line-height: 44px !important;
  }
}











