/* ===== MOCKUP MATCH: tokens, header, hero, impact strip, mission ===== */

:root {
  --color-primary: #f36b21;
  --color-primary-hover: #dc5a14;
  --color-primary-soft: rgba(243, 107, 33, 0.14);
  --color-secondary: #1f7a4d;
  --color-secondary-mid: #186640;
  --color-secondary-soft: rgba(31, 122, 77, 0.1);
  --color-accent: #e0b33a;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-ui: "Poppins", system-ui, sans-serif;
  --header-h: 5.4rem;
}

body {
  background: #ffffff;
  font-family: var(--font-body);
}

/* Header — transparent on hero; dark pill after scroll */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0;
  pointer-events: none;
  background: transparent;
}

.site-header__inner {
  pointer-events: auto;
  width: min(1280px, calc(100% - 1.5rem));
  margin: 0.85rem auto 0;
  min-height: 4.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    margin 0.28s ease,
    padding 0.28s ease,
    border-radius 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    gap 0.28s ease;
}

.site-header.is-scrolled .site-header__inner {
  margin-top: 0.55rem;
  gap: 0.85rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background:
    radial-gradient(120% 140% at 92% 50%, rgba(243, 107, 33, 0.18), transparent 42%),
    linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 55%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  padding-left: 0.1rem;
  margin-right: 0.75rem;
}

.site-header.is-scrolled .brand {
  margin-right: 0.15rem;
}

.brand__logo {
  height: 3.35rem;
  width: auto;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    height 0.28s ease,
    width 0.28s ease,
    padding 0.28s ease,
    background 0.28s ease,
    border-radius 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.is-scrolled .brand__logo {
  height: 2.85rem;
  width: 2.85rem;
  padding: 0.28rem;
  background: #ffffff;
  border-radius: 0.65rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand__name {
  display: block;
  color: #ffffff;
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: font-size 0.28s ease;
}

.site-header.is-scrolled .brand__name {
  font-size: clamp(0.92rem, 0.82rem + 0.4vw, 1.12rem);
}

.brand__tag {
  display: block;
  color: #f36b21;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header.is-scrolled .brand__tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.nav__list {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0 0.35rem 0 0;
  min-width: 0;
}

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.55rem 0.58rem;
  border-radius: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, font-size 0.2s ease, padding 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav__item:hover > .nav__link,
.nav__item:focus-within > .nav__link {
  color: #ff8a4c;
}

.site-header.is-scrolled .nav__link {
  font-size: 0.74rem;
  padding: 0.48rem 0.48rem;
}

.nav__chevron {
  width: 0.62rem;
  height: 0.62rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav__item:hover .nav__chevron,
.nav__item:focus-within .nav__chevron {
  transform: translateY(1px);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 14.5rem;
  margin-top: 0.35rem;
  padding: 0.45rem;
  background: #ffffff;
  border-radius: 0.85rem;
  border: 1px solid rgba(26, 43, 52, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 30;
}

/* Invisible bridge to prevent hover loss across vertical gap */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -0.85rem;
  left: 0;
  right: 0;
  height: 0.85rem;
}

.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown,
.nav__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__dropdown a {
  display: block;
  padding: 0.58rem 0.8rem;
  border-radius: 0.5rem;
  color: #24322c;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav__dropdown a:hover {
  background: #fff4ec;
  color: #f36b21;
}

.nav__submenu {
  position: relative;
}

.nav__submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.58rem 0.8rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #24322c;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav__submenu-trigger:hover,
.nav__submenu:focus-within > .nav__submenu-trigger,
.nav__submenu.is-open > .nav__submenu-trigger {
  background: #fff4ec;
  color: #f36b21;
}

.nav__submenu-chevron {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  opacity: 0.65;
}

.nav__submenu-panel {
  position: absolute;
  top: 0;
  left: calc(100% + 0.25rem);
  min-width: 14rem;
  padding: 0.45rem;
  background: #ffffff;
  border-radius: 0.85rem;
  border: 1px solid rgba(26, 43, 52, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 35;
}

/* Invisible bridge to prevent hover loss across horizontal gap */
.nav__submenu-panel::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.75rem;
  width: 0.75rem;
}

.nav__submenu:hover > .nav__submenu-panel,
.nav__submenu:focus-within > .nav__submenu-panel,
.nav__submenu.is-open > .nav__submenu-panel {
  opacity: 1;
  visibility: visible;
}

.nav__submenu-panel a {
  display: block;
  padding: 0.58rem 0.8rem;
  border-radius: 0.5rem;
  color: #24322c;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav__submenu-panel a:hover {
  background: #fff4ec;
  color: #f36b21;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding-right: 0.1rem;
}

.btn--donate {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.55rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a33 0%, #f36b21 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(243, 107, 33, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--donate:hover {
  background: linear-gradient(180deg, #ff8a4c 0%, #e85f16 100%);
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 14px 30px rgba(243, 107, 33, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

@media (min-width: 1180px) {
  .nav__list { display: flex; }
  .nav-toggle { display: none; }

  .site-header:not(.is-scrolled) .site-header__inner {
    gap: 1.6rem;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
  }

  .site-header:not(.is-scrolled) .brand {
    margin-right: 1rem;
  }

  .site-header.is-scrolled .site-header__inner {
    padding: 0.45rem 0.55rem 0.45rem 0.6rem;
  }

  .site-header.is-scrolled .nav__link {
    font-size: 0.76rem;
    padding: 0.48rem 0.42rem;
  }
}

@media (min-width: 1320px) {
  .nav__link {
    font-size: 0.82rem;
    padding: 0.5rem 0.55rem;
  }

  .site-header.is-scrolled .nav__link {
    font-size: 0.8rem;
  }

  .brand__name {
    font-size: 1.28rem;
  }

  .site-header.is-scrolled .brand__name {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: calc(100% - 1rem);
    margin-top: 0.65rem;
    min-height: 3.85rem;
  }

  .site-header.is-scrolled .site-header__inner {
    padding: 0.35rem 0.4rem;
  }

  .brand__logo {
    height: 2.85rem;
  }

  .site-header.is-scrolled .brand__logo {
    height: 2.5rem;
    width: 2.5rem;
  }

  .brand__name {
    font-size: 0.92rem;
    max-width: 10rem;
    white-space: normal;
    line-height: 1.1;
  }

  .site-header.is-scrolled .brand__name {
    font-size: 0.86rem;
    max-width: 9.5rem;
  }

  .brand__tag {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .btn--donate {
    min-height: 2.35rem;
    padding: 0 0.9rem;
    font-size: 0.8rem;
  }
}

.nav-panel {
  position: fixed;
  inset: 5.5rem 0.75rem auto;
  z-index: 100;
  max-height: calc(100dvh - 6.25rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-panel__list { list-style: none; margin: 0; padding: 0; }
.nav-panel__link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-top: 1px solid #e8eeea;
  background: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  font: inherit;
  font-weight: 600;
  color: #17241f;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.nav-panel__sub { display: none; padding: 0 0 0.75rem 0.75rem; }
.nav-panel__sub.is-open { display: block; }
.nav-panel__sub a {
  display: block;
  padding: 0.4rem 0;
  color: #4d5d56;
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-panel__link--nested {
  margin-top: 0.15rem;
  padding-left: 0;
}
.nav-panel__sub--nested {
  padding-left: 1rem;
}
.nav-panel__actions { margin-top: 1rem; }

@media (min-width: 1180px) {
  .nav-panel { display: none !important; }
}

/* Hero — full bleed mockup */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background: #0b1210;
  padding: 6.5rem 0 7.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__slide:nth-child(1) img { object-position: 68% center; }
.hero__slide:nth-child(2) img { object-position: 55% center; }
.hero__slide:nth-child(3) img { object-position: 50% center; }
.hero__slide:nth-child(4) img { object-position: 45% center; }
.hero__slide:nth-child(5) img { object-position: 60% center; }

.hero__slide.is-active img {
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.88) 0%, rgba(8, 14, 12, 0.62) 38%, rgba(8, 14, 12, 0.22) 62%, rgba(8, 14, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 14, 12, 0.35) 0%, transparent 28%, rgba(8, 14, 12, 0.55) 100%);
  pointer-events: none;
}

.hero__controls {
  position: absolute;
  right: max(1rem, calc((100% - 1240px) / 2));
  bottom: 7.25rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__arrow {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero__arrow svg {
  width: 1rem;
  height: 1rem;
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero__dot.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(40rem, calc(100% - 2rem));
  max-width: 40rem;
  margin: 0;
  margin-left: max(1rem, calc((100% - 1240px) / 2));
  padding: 0;
  text-align: left;
}

.hero__texts {
  position: relative;
  width: 100%;
}

.hero__text {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
  pointer-events: none;
}

.hero__text.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__kicker,
.hero__title,
.hero__sub,
.hero__proof {
  text-align: left;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb087;
}

.hero__kicker-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(243, 107, 33, 0.25);
}

.hero__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.25rem + 2.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__sub {
  margin: 0.95rem 0 0;
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.hero__cta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(243, 107, 33, 0.4);
}

.btn--primary:hover { background: var(--color-primary-hover); }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn__icon { width: 1em; height: 1em; }

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 2rem;
  text-align: left;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -0.55rem;
}

.hero__avatars img:first-child { margin-left: 0; }
.hero__avatars img:nth-child(1) { object-position: 20% 20%; }
.hero__avatars img:nth-child(2) { object-position: 50% 30%; }
.hero__avatars img:nth-child(3) { object-position: 80% 25%; }

.hero__proof-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__proof-label {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__video-card {
  position: absolute;
  right: max(1rem, calc((100% - 1240px) / 2));
  bottom: 6.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 17rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.hero__video-card:hover { transform: translateY(-3px); }

.hero__video-play {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fff;
  color: #12201a;
}

.hero__video-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.hero__video-text strong {
  font-size: 0.9rem;
  color: #fff;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  z-index: 4;
  display: block;
}

/* Floating impact strip */
.impact-strip {
  position: relative;
  z-index: 5;
  margin-top: -3.25rem;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
}

.impact-strip__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(16, 30, 24, 0.12);
  border: 1px solid #eef2f0;
}

@media (min-width: 900px) {
  .impact-strip__card {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 1.5rem 1.75rem;
    gap: 0.75rem;
  }
}

.impact-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.impact-strip__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.impact-strip__icon svg { width: 1.2rem; height: 1.2rem; }
.impact-strip__icon--green { background: #e6f6ec; color: #1f7a4d; }
.impact-strip__icon--orange { background: #ffeee3; color: #f36b21; }
.impact-strip__icon--blue { background: #e8f1ff; color: #2f6fed; }
.impact-strip__icon--purple { background: #f1e9ff; color: #7a3ff2; }
.impact-strip__icon--gold { background: #fff5db; color: #c69010; }

.impact-strip__value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #14241c;
  line-height: 1.1;
}

.impact-strip__label {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #667872;
  font-weight: 500;
}

/* Mission / Purpose — mockup match */
.mission {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: #f7f8fa;
  overflow: hidden;
}

.mission__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mission__dots {
  position: absolute;
  background-image: radial-gradient(circle, rgba(90, 110, 125, 0.38) 1.35px, transparent 1.45px);
  background-size: 12px 12px;
  background-repeat: repeat;
}

.mission__dots--left {
  left: max(0.35rem, calc((100% - 1240px) / 2 - 0.5rem));
  top: 42%;
  width: 72px;
  height: 120px;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
}

.mission__dots--tr {
  top: 0.75rem;
  right: max(0.25rem, calc((100% - 1240px) / 2 - 1.5rem));
  width: 220px;
  height: 170px;
  background-size: 13px 13px;
  opacity: 0.42;
  mask-image:
    radial-gradient(ellipse 70% 65% at 78% 22%, #000 20%, transparent 72%),
    linear-gradient(225deg, #000 18%, transparent 68%);
  -webkit-mask-image:
    radial-gradient(ellipse 70% 65% at 78% 22%, #000 20%, transparent 72%),
    linear-gradient(225deg, #000 18%, transparent 68%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.mission__curves {
  position: absolute;
  left: max(-1.5rem, calc((100% - 1240px) / 2 - 3rem));
  bottom: -1.25rem;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  color: rgba(110, 128, 142, 0.28);
}

/* Mission & Vision: stacked on phones/tablets, two columns on desktop */
.mission__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center; /* vertically centers both columns against each other */
}

@media (min-width: 960px) {
  .mission__layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.mission__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mission__photo {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.mission__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .mission__photos { gap: 0.75rem; }
  /* Taller crop so the two side-by-side photos aren't thin strips */
  .mission__photo { aspect-ratio: 4 / 5; border-radius: 14px; }
}

.mission__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission__eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #1f7a4d;
}

.mission__title {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f3d2e;
}

.mission__title span {
  color: #f36b21;
}

.mission__mv {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.mv-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid transparent;
}

.mv-card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.mv-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.mv-card__label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.mv-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.mv-card--mission {
  background: #eaf6ef;
  border-color: rgba(31, 122, 77, 0.16);
  color: #0f3d2e;
}

.mv-card--mission .mv-card__icon {
  background: rgba(31, 122, 77, 0.14);
  color: #1f7a4d;
}

.mv-card--mission .mv-card__label {
  color: #1f7a4d;
}

.mv-card--vision {
  background: #fff1e8;
  border-color: rgba(243, 107, 33, 0.16);
  color: #4a2a12;
}

.mv-card--vision .mv-card__icon {
  background: rgba(243, 107, 33, 0.14);
  color: #f36b21;
}

.mv-card--vision .mv-card__label {
  color: #f36b21;
}

.mv-card--vision .mv-card__text {
  color: #6b4a35;
}

.btn--mission {
  margin-top: 1.35rem;
  background: #0f3d2e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.22);
}

.btn--mission:hover { background: #186640; }

.mission__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 14px 36px rgba(26, 43, 52, 0.08);
  border: 1px solid rgba(226, 232, 236, 0.9);
}

.feature-card h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #15261e;
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: currentColor;
}

.feature-card--green h3 { color: #1f7a4d; }
.feature-card--orange h3 { color: #f36b21; }
.feature-card--blue h3 { color: #2f6fed; }
.feature-card--purple h3 { color: #7a3ff2; }

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #667872;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
}

.feature-card__icon svg { width: 1.15rem; height: 1.15rem; }
.feature-card__icon--green { background: #e6f6ec; color: #1f7a4d; }
.feature-card__icon--orange { background: #ffeee3; color: #f36b21; }
.feature-card__icon--blue { background: #e8f1ff; color: #2f6fed; }
.feature-card__icon--purple { background: #f1e9ff; color: #7a3ff2; }

.wa-fab { display: none !important; }

@media (max-width: 900px) {
  .hero__controls {
    right: auto;
    left: max(1rem, calc((100% - 1240px) / 2));
    bottom: 5.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 5.5rem;
  }

  .hero__content {
    max-width: none;
    width: min(40rem, calc(100% - 2rem));
    margin-left: max(1rem, calc((100% - 1240px) / 2));
    text-align: left;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide img,
  .hero__text {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .brand__name {
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: none;
  }
  .brand__logo { height: 2.8rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .mission__cards { grid-template-columns: 1fr; }
  .impact-strip { margin-top: -2.25rem; }
}

/* ===== SDGs — mockup match ===== */
.sdgs {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #f4f6f8;
  overflow: hidden;
}

.sdgs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sdgs__map {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(920px, 92%);
  transform: translate(-50%, -50%);
  color: #9aa7b2;
}

.sdgs__leaf {
  position: absolute;
  top: -0.5rem;
  right: max(0.5rem, calc((100% - 1240px) / 2 - 1rem));
  width: clamp(110px, 14vw, 180px);
  color: #7a9e8a;
}

.sdgs > .container {
  position: relative;
  z-index: 1;
}

.sdgs__head {
  max-width: 44rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.sdgs__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sdgs__eyebrow svg {
  flex-shrink: 0;
}

.sdgs__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.sdgs__title span {
  color: #1f7a4d;
}

.sdgs__lede {
  margin: 0.9rem auto 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
  font-weight: 400;
}

.sdgs__rule {
  width: min(16rem, 70%);
  height: 3px;
  margin: 1.35rem auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #e5243b 0%,
    #dda63a 16%,
    #4c9f38 32%,
    #c5192d 48%,
    #ff3a21 64%,
    #26bde2 80%,
    #19486a 100%
  );
}

.sdgs__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.sdg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 1.15rem 0.85rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(26, 43, 52, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sdg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 43, 52, 0.1);
}

.sdg-card__num {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 0.35rem;
  background: var(--sdg);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.sdg-card__title {
  margin: 0 0 0.85rem;
  min-height: 2.6em;
  color: var(--sdg);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.sdg-card__icon {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 0.85rem;
  color: var(--sdg);
}

.sdg-card__icon svg {
  width: 100%;
  height: 100%;
}

.sdg-card__desc {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #5c6b74;
}

.sdg-card__bar {
  display: block;
  width: 2.25rem;
  height: 3px;
  border-radius: 999px;
  background: var(--sdg);
  margin-top: auto;
}

/* Kill old image-tile SDG styles */
.sdg-item { display: none; }

@media (max-width: 1100px) {
  .sdgs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sdgs {
    padding: 3.5rem 0 4rem;
  }

  .sdgs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .sdg-card {
    padding: 1rem 0.7rem 1.1rem;
  }

  .sdg-card__title {
    min-height: 2.8em;
    font-size: 0.68rem;
  }

  .sdgs__leaf {
    width: 90px;
    opacity: 0.85;
  }
}

/* ===== Our Impact (replaces story-video) ===== */
.story-video {
  display: none;
}

.our-impact {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.our-impact__head {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.our-impact__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.our-impact__eyebrow-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(243, 107, 33, 0.12);
  color: #f36b21;
}

.our-impact__eyebrow-icon svg {
  width: 0.65rem;
  height: 0.65rem;
  margin-left: 1px;
}

.our-impact__title {
  margin: 0;
  font-size: clamp(1.2rem, 0.75rem + 2.1vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
  white-space: nowrap;
}

.our-impact__title span {
  color: #f36b21;
}

@media (max-width: 420px) {
  .our-impact__title {
    white-space: normal;
    font-size: 1.35rem;
  }
}

.our-impact__lede {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.our-impact__main {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(16rem, 0.85fr);
  gap: 1.15rem;
  align-items: stretch;
  margin-bottom: 1.15rem;
}

.our-impact__video.video-frame {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #0b1218;
  box-shadow: 0 12px 32px rgba(15, 30, 53, 0.12);
  aspect-ratio: 16 / 9;
  min-height: 100%;
}

.our-impact .video-frame iframe,
.our-impact .video-frame__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.our-impact .video-frame__facade {
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  background: #0b1218;
  cursor: pointer;
}

.our-impact .video-frame__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-impact .video-frame__facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.15), rgba(8, 16, 28, 0.45));
  pointer-events: none;
}

.our-impact .video-frame__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #f36b21;
  color: #fff;
  box-shadow: 0 10px 28px rgba(243, 107, 33, 0.45);
  transition: transform 0.2s ease;
}

.our-impact .video-frame__facade:hover .video-frame__play {
  transform: scale(1.08);
}

.our-impact .video-frame__play svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 3px;
}

.impact-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
  padding: 0.35rem 1.35rem;
  border-radius: 1.15rem;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 30, 53, 0.18);
  background-color: #0f1e35;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 15%, rgba(243, 107, 33, 0.14), transparent 42%),
    linear-gradient(165deg, #13233a 0%, #0f1e35 55%, #0c192c 100%);
  background-size: 14px 14px, auto, auto;
}

.impact-panel__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-panel__item:last-child {
  border-bottom: none;
}

.impact-panel__icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.2rem;
  border-radius: 0.55rem;
  background: rgba(243, 107, 33, 0.14);
  color: #f36b21;
}

.impact-panel__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.impact-panel__value {
  margin: 0;
  color: #f36b21;
  font-size: clamp(1.85rem, 1.5rem + 1vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact-panel__label {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.impact-panel__note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.impact-features {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
  border: 1px solid rgba(26, 43, 52, 0.08);
  border-radius: 1.15rem;
  background: #f6f7f9;
}

.impact-features__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.impact-features__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(243, 107, 33, 0.12);
  color: #f36b21;
  flex-shrink: 0;
}

.impact-features__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.impact-features__item strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2b34;
}

.impact-features__item p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6b7a83;
}

@media (max-width: 980px) {
  .our-impact__main {
    grid-template-columns: 1fr;
  }

  .impact-panel {
    padding: 0.5rem 1.25rem;
  }

  .impact-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .our-impact {
    padding: 3.5rem 0 4rem;
  }

  .impact-features {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .impact-panel__item {
    padding: 1rem 0;
  }
}

/* ===== Success Stories — mockup match ===== */
.stories {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
  overflow: hidden;
}

.stories__head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.stories__eyebrow {
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stories__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.stories__title span {
  color: #f36b21;
}

.stories__lede {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.stories__shell {
  position: relative;
}

.stories__carousel.carousel {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1.5rem;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories__carousel.carousel::-webkit-scrollbar {
  display: none;
}

.stories .carousel__slide {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}

@media (min-width: 700px) {
  .stories .carousel__slide {
    flex-basis: calc((100% - 2 * 1.15rem) / 3);
  }
}

@media (min-width: 1100px) {
  .stories .carousel__slide {
    flex-basis: calc((100% - 3 * 1.15rem) / 4);
  }
}

.stories .story-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 43, 52, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stories .story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(26, 43, 52, 0.12);
}

.stories .story-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #eef1f4;
}

.stories .story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}

.stories .story-card:hover .story-card__media img {
  transform: scale(1.04);
}

.story-card__quote {
  position: absolute;
  left: 1rem;
  bottom: -1.05rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #ffffff;
  color: #f36b21;
  box-shadow: 0 6px 16px rgba(26, 43, 52, 0.12);
}

.story-card__quote svg {
  width: 0.95rem;
  height: 0.95rem;
}

.stories .story-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.65rem 1.2rem 1.25rem;
}

.stories .story-card__meta {
  margin: 0;
  color: #f36b21;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}

.stories .story-card__title {
  margin: 0;
  color: #1a2b34;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.stories .story-card__text {
  margin: 0;
  flex: 1;
  color: #6b7a83;
  font-size: 0.86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: 0.55rem;
  min-height: 2.45rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid #f36b21;
  background: transparent;
  color: #f36b21;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.story-card__more svg {
  width: 0.95rem;
  height: 0.95rem;
}

.story-card__more:hover {
  background: #f36b21;
  color: #fff;
  transform: translateY(-1px);
}

.stories__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.stories__arrow {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: none;
  border-radius: 50%;
  background: rgba(243, 107, 33, 0.12);
  color: #f36b21;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.stories__arrow:hover {
  background: rgba(243, 107, 33, 0.2);
  transform: translateY(-1px);
}

.stories__arrow svg {
  width: 1rem;
  height: 1rem;
}

.stories__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stories__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5dbe1;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.stories__dot.is-active {
  width: 1.2rem;
  border-radius: 999px;
  background: #f36b21;
}

.stories .carousel-nav {
  display: none;
}

@media (max-width: 640px) {
  .stories {
    padding: 3.5rem 0 4rem;
  }

  .stories .story-card__body {
    padding: 1.5rem 1rem 1.15rem;
  }
}

/* ===== Events — mockup match ===== */
.events {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #f7f5f1;
  overflow: hidden;
}

.events__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.events__dots-bg {
  position: absolute;
  top: 1.5rem;
  left: max(1rem, calc((100% - 1240px) / 2));
  width: 120px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(243, 107, 33, 0.28) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.events__bunting {
  position: absolute;
  top: 0.75rem;
  right: max(1rem, calc((100% - 1240px) / 2));
  width: min(200px, 28vw);
  opacity: 0.7;
}

.events > .container {
  position: relative;
  z-index: 1;
}

.events__head {
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2.25rem;
  text-align: center;
}

.events__head-copy {
  max-width: 100%;
  text-align: center;
}

.events__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.events__title span {
  color: #f36b21;
}

.events__lede {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.events__all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  min-height: 2.6rem;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid #f36b21;
  border-radius: 999px;
  color: #f36b21;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.events__all svg {
  width: 0.95rem;
  height: 0.95rem;
}

.events__all:hover {
  background: #f36b21;
  color: #fff;
}

.events__shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.events__carousel.carousel {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.1rem 0.85rem;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events__carousel.carousel::-webkit-scrollbar {
  display: none;
}

.events .carousel__slide {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}

@media (min-width: 700px) {
  .events .carousel__slide {
    flex-basis: calc((100% - 2 * 1.1rem) / 3);
  }
}

@media (min-width: 1100px) {
  .events .carousel__slide {
    flex-basis: calc((100% - 3 * 1.1rem) / 4);
  }
}

.events__arrow {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #f36b21;
  box-shadow: 0 6px 18px rgba(26, 43, 52, 0.1);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.events__arrow:hover {
  transform: translateY(-1px);
  background: #fff7f2;
}

.events__arrow svg {
  width: 1rem;
  height: 1rem;
}

.events .event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 43, 52, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.events .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(26, 43, 52, 0.12);
}

.events .event-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1f4;
}

.events .event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.event-card__date {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  min-width: 3.35rem;
  padding: 0.4rem 0.45rem 0.45rem;
  border-radius: 0.55rem;
  background: #f36b21;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 6px 16px rgba(243, 107, 33, 0.35);
}

.event-card__day {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.event-card__my {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}

.events .event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.05rem 1.05rem 1.15rem;
}

.event-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #f36b21;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card__cat-icon {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
}

.event-card__cat-icon svg {
  width: 100%;
  height: 100%;
}

.events .event-card__title {
  margin: 0;
  color: #1a2b34;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events .event-card__text {
  margin: 0;
  flex: 1;
  color: #6b7a83;
  font-size: 0.84rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.event-card__more {
  text-decoration: none;
}
.event-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.45rem;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.7rem;
  background: #f36b21;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.event-card__more svg {
  width: 0.95rem;
  height: 0.95rem;
}

.event-card__more:hover {
  background: #dc5a14;
  transform: translateY(-1px);
}

.events__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 0.35rem 0 1.5rem;
}

.events__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5dbe1;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.events__dot.is-active {
  width: 1.2rem;
  border-radius: 999px;
  background: #f36b21;
}

.events__features {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-radius: 1.15rem;
  background: #fff8f2;
  border: 1px solid rgba(243, 107, 33, 0.08);
}

.events__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.events__feature-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 107, 33, 0.45);
  color: #f36b21;
  background: #fff;
}

.events__feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.events__features strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2b34;
}

.events__features p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6b7a83;
}

.events .carousel-nav {
  display: none;
}

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

  .events__head-copy {
    text-align: center;
    margin-inline: auto;
  }

  .events__eyebrow {
    justify-content: center;
  }

  .events__lede {
    margin-inline: auto;
  }

  .events__all {
    justify-self: center;
  }

  .events__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .events {
    padding: 3.5rem 0 4rem;
  }

  .events__shell {
    grid-template-columns: 1fr;
  }

  .events__arrow {
    display: none;
  }

  .events__features {
    grid-template-columns: 1fr;
  }
}

/* ===== Digital Directory — mockup match ===== */
.directory {
  position: relative;
  padding: 4.5rem 0 4.75rem;
  background: #032019;
  color: #fff;
  overflow: hidden;
}

.directory__world {
  position: absolute;
  inset: 8% 5% 18%;
  background-image: radial-gradient(rgba(79, 129, 113, 0.22) 1.2px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  pointer-events: none;
  opacity: 0.55;
}

.directory__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.directory__copy {
  max-width: 34rem;
}

.directory__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory__eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f36b21;
  box-shadow: 0 0 0 4px rgba(243, 107, 33, 0.22);
}

.directory__title {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.directory__tagline {
  margin: 0.55rem 0 0;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  font-weight: 700;
  color: #fff;
}

.directory__tagline span {
  color: #f36b21;
}

.directory__tagline::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: #f36b21;
}

.directory__lede {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.directory__highlights {
  margin-top: 1.5rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(127, 176, 156, 0.28);
  background: rgba(8, 42, 33, 0.72);
  backdrop-filter: blur(8px);
}

.directory__highlights-label {
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.directory__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.directory__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(79, 129, 113, 0.35);
  color: #9fd4bc;
  flex-shrink: 0;
}

.directory__icon svg {
  width: 1rem;
  height: 1rem;
}

.directory__item p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.directory__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.directory__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.directory__btn svg {
  width: 1rem;
  height: 1rem;
}

.directory__btn:hover {
  transform: translateY(-1px);
}

.directory__btn--primary {
  background: #f36b21;
  color: #fff;
  border: 1.5px solid #f36b21;
}

.directory__btn--primary:hover {
  background: #dc5a14;
  border-color: #dc5a14;
}

.directory__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.directory__btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.directory__stage {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.directory__map {
  position: relative;
  width: min(100%, 36rem);
  aspect-ratio: 1 / 1;
}

.directory__map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
  border-radius: 1rem;
}

.directory__presence {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: min(15.5rem, 58%);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  color: #0f3d2e;
}

.directory__presence-title {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f3d2e;
}

.directory__presence-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.directory__presence-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #245244;
}

.directory__presence-list strong {
  color: #0f3d2e;
  font-weight: 800;
}

.directory__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.directory__dot--orange { background: #f36b21; }
.directory__dot--green { background: #2f9e6a; }
.directory__dot--blue { background: #3b82f6; }
.directory__dot--purple { background: #8b5cf6; }

.directory__banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(127, 176, 156, 0.28);
  background: rgba(8, 42, 33, 0.85);
}

.directory__banner-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: rgba(79, 129, 113, 0.4);
  color: #9fd4bc;
}

.directory__banner-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.directory__banner p {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.directory__banner em {
  font-style: normal;
  font-weight: 700;
  color: #8fe0b0;
}

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

  .directory__stage {
    min-height: 26rem;
    order: -1;
  }

  .directory__presence {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

@media (max-width: 640px) {
  .directory {
    padding: 3.5rem 0 3.75rem;
  }

  .directory__stage {
    min-height: 22rem;
  }

  .directory__presence {
    width: min(13.5rem, 70%);
    padding: 0.85rem 0.9rem;
  }

  .directory__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .directory__banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .directory__banner p {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0.75rem;
  }
}

/* ===== Partners — mockup match ===== */
.partners {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #f7f8fa;
  overflow: hidden;
}

.partners__world {
  position: absolute;
  inset: 18% 8% 28%;
  background-image: radial-gradient(rgba(150, 165, 175, 0.35) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, #000 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 15%, transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}

.partners > .container {
  position: relative;
  z-index: 1;
}

.partners__head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.partners__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partners__eyebrow::before,
.partners__eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: #f36b21;
  border-radius: 999px;
}

.partners__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.partners__title span {
  color: #f36b21;
}

.partners__lede {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.partners__shell {
  margin-bottom: 1.5rem;
}

/* Replace the scrolling carousel with a static wrapped grid */
.partners__carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 across → ~4 rows for 13 logos */
  gap: 20px;
  overflow: visible;      /* was overflow-x: auto / scroll */
  scroll-snap-type: none; /* remove if present */
}

.partners__carousel .carousel__slide {
  scroll-snap-align: unset;
}

/* Nav arrows + dots are no longer needed */
.partners__nav {
  display: none;
}

@media (max-width: 720px) {
  .partners__carousel {
    grid-template-columns: repeat(2, 1fr);  /* 2 across on mobile → cleaner rows */
  }
}

.partners .carousel__slide {
  flex: 0 0 min(150px, 42vw);
  scroll-snap-align: start;
}

@media (min-width: 700px) {
  .partners .carousel__slide {
    flex-basis: calc((100% - 5 * 1rem) / 6);
  }
}

@media (min-width: 1100px) {
  .partners .carousel__slide {
    flex-basis: calc((100% - 7 * 1rem) / 8);
  }
}

.partner-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(26, 43, 52, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 43, 52, 0.1);
}

.partner-card img {
  width: 100%;
  object-fit: contain;
  scale: 1.1;
}

.partners__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.partners__arrow {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: none;
  border-radius: 50%;
  background: rgba(243, 107, 33, 0.12);
  color: #f36b21;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.partners__arrow:hover {
  background: rgba(243, 107, 33, 0.2);
  transform: translateY(-1px);
}

.partners__arrow svg {
  width: 1rem;
  height: 1rem;
}

.partners__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.partners__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5dbe1;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.partners__dot.is-active {
  width: 1.2rem;
  border-radius: 999px;
  background: #f36b21;
}

.partners__banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.15rem;
  background: #fff3ea;
  border: 1px solid rgba(243, 107, 33, 0.12);
}

.partners__banner-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(243, 107, 33, 0.12);
  color: #f36b21;
}

.partners__banner-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.partners__banner-copy strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1a2b34;
}

.partners__banner-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #6b7a83;
}

.partners__banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.55rem;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid #f36b21;
  border-radius: 999px;
  color: #f36b21;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.partners__banner-cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.partners__banner-cta:hover {
  background: #f36b21;
  color: #fff;
}

/* Kill old marquee */
.partners__marquee,
.partners__track,
.partner-logo {
  display: none !important;
  animation: none !important;
}

@media (max-width: 800px) {
  .partners__banner {
    grid-template-columns: auto 1fr;
  }

  .partners__banner-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .partners {
    padding: 3.5rem 0 4rem;
  }

  .partners__banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partners__banner-icon {
    margin-inline: auto;
  }
}

/* ===== YouTube feed — mockup match ===== */
.yt-feed {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #fff1ea;
  overflow: hidden;
}

.yt-feed__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.yt-feed__dots {
  position: absolute;
  left: max(1rem, calc((100% - 1240px) / 2));
  top: 1.35rem;
  width: 110px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(243, 107, 33, 0.3) 1.3px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.yt-feed__dots::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12rem;
  width: 90px;
  height: 70px;
  background-image: radial-gradient(circle, rgba(255, 0, 51, 0.18) 1.3px, transparent 1.5px);
  background-size: 14px 14px;
}

.yt-feed__waves {
  position: absolute;
  right: max(1rem, calc((100% - 1240px) / 2));
  bottom: 1.25rem;
  width: 150px;
  height: 75px;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(243, 107, 33, 0.16) 43%, transparent 46%),
    radial-gradient(ellipse at center, transparent 55%, rgba(255, 0, 51, 0.1) 56%, transparent 59%);
  background-size: 100% 100%;
}

.yt-feed__waves::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: -18rem;
  width: 120px;
  height: 55px;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(243, 107, 33, 0.12) 49%, transparent 52%);
}

.yt-feed > .container {
  position: relative;
  z-index: 1;
}

.yt-feed__head {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.yt-feed__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.yt-feed__eyebrow::before,
.yt-feed__eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: #f36b21;
  border-radius: 999px;
}

.yt-feed__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.yt-feed__title span {
  color: #ff0033;
}

.yt-feed__lede {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.yt-feed__channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  box-shadow: 0 8px 24px rgba(26, 43, 52, 0.06);
}

.yt-feed__avatar {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff7f2;
  padding: 0.35rem;
  border: 1px solid rgba(243, 107, 33, 0.15);
}

.yt-feed__channel-name {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a2b34;
}

.yt-feed__verified {
  flex-shrink: 0;
}

.yt-feed__channel-meta {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: #6b7a83;
}

.yt-feed__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

/* Official-style YouTube | 401 badge button */
.yt-badge-btn {
  display: inline-flex;
  align-items: stretch;
  height: 1.55rem;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  line-height: 1;
}

.yt-badge-btn__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.55rem;
  background: #c4302b;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: Arial, Helvetica, sans-serif;
}

.yt-badge-btn__mark {
  display: inline-grid;
  place-items: center;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
  background: #fff;
  color: #c4302b;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.yt-badge-btn__count {
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-left: none;
  color: #555;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}

.yt-badge-btn:hover .yt-badge-btn__brand {
  background: #b02a26;
}

.yt-feed__subscribe {
  display: none;
}

.yt-feed__visit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid #f36b21;
  border-radius: 999px;
  color: #f36b21;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.yt-feed__visit svg:last-child {
  width: 0.95rem;
  height: 0.95rem;
}

.yt-feed__visit:hover {
  background: #f36b21;
  color: #fff;
}

.yt-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.yt-feed__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7a83;
}

.yt-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(26, 43, 52, 0.06);
  border-radius: 1.15rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(26, 43, 52, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 43, 52, 0.12);
}

.yt-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b1218;
  overflow: hidden;
}

.yt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.yt-card:hover .yt-card__media img {
  transform: scale(1.04);
}

.yt-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #ff0033;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 0, 51, 0.35);
}

.yt-card__play svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 2px;
}

.yt-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.05rem 1.05rem 1.15rem;
}

.yt-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #f36b21;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yt-card__cat-icon {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
}

.yt-card__cat-icon svg {
  width: 100%;
  height: 100%;
}

.yt-card__title {
  margin: 0;
  color: #1a2b34;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card__text {
  margin: 0;
  flex: 1;
  color: #6b7a83;
  font-size: 0.84rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 43, 52, 0.08);
  color: #7a8891;
  font-size: 0.78rem;
}

.yt-card__meta > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.yt-card__meta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.yt-card__arrow {
  color: #f36b21;
}

.yt-feed__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.yt-feed__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: 0.85rem;
  background: #f36b21;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(243, 107, 33, 0.28);
  transition: background 0.18s ease, transform 0.18s ease;
}

.yt-feed__more svg:last-child {
  width: 1rem;
  height: 1rem;
}

.yt-feed__more:hover {
  background: #dc5a14;
  transform: translateY(-1px);
}

.yt-feed__frame {
  display: none !important;
}

.yt-feed__frame .electricblaze-id-2UhxFrT {
  display: none !important;
}

@media (max-width: 980px) {
  .yt-feed__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .yt-feed__channel {
    grid-template-columns: auto 1fr;
  }

  .yt-feed__visit {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .yt-feed__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .yt-feed__actions .yt-feed__subscribe,
  .yt-feed__actions .yt-feed__visit {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .yt-feed {
    padding: 3.5rem 0 4rem;
  }
}

.yt-feed__visit {
  display: none !important;
}

/* ===== Social Presence — mockup cards ===== */
.social-presence {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #eef2f8;
  overflow: hidden;
}

.social-presence__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.social-presence__dots {
  position: absolute;
  width: 110px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(47, 111, 237, 0.28) 1.3px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}

.social-presence__dots--tl {
  top: 1.25rem;
  left: max(1rem, calc((100% - 1240px) / 2));
}

.social-presence__dots--br {
  right: max(1rem, calc((100% - 1240px) / 2));
  bottom: 1.25rem;
  background-image: radial-gradient(circle, rgba(243, 107, 33, 0.22) 1.3px, transparent 1.5px);
}

.social-presence__wave {
  position: absolute;
  right: max(2rem, calc((100% - 1240px) / 2 + 1rem));
  top: 1.5rem;
  width: 140px;
  height: 60px;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(47, 111, 237, 0.14) 43%, transparent 46%),
    radial-gradient(ellipse at center, transparent 55%, rgba(122, 63, 242, 0.1) 56%, transparent 59%);
}

.social-presence > .container {
  position: relative;
  z-index: 1;
}

.social-presence__head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.social-presence__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-presence__eyebrow::before,
.social-presence__eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: #f36b21;
  border-radius: 999px;
}

.social-presence__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.35rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b34;
}

.social-presence__title span {
  color: #f36b21;
}

.social-presence__lede {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #6b7a83;
}

.social-presence__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.35rem 1rem 1.2rem;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 1.15rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(26, 43, 52, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 43, 52, 0.1);
}

.social-card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.35rem;
  border-radius: 50%;
}

.social-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2b34;
}

.social-card__cta {
  font-size: 0.86rem;
  color: #6b7a83;
}

.social-card__go {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.65rem;
  border-radius: 50%;
  color: #fff;
}

.social-card__go svg {
  width: 1rem;
  height: 1rem;
}

.social-card--facebook {
  border-color: rgba(24, 119, 242, 0.28);
}
.social-card--facebook .social-card__icon {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}
.social-card--facebook .social-card__go {
  background: #1877f2;
}

.social-card--x {
  border-color: rgba(15, 20, 25, 0.18);
}
.social-card--x .social-card__icon {
  background: rgba(15, 20, 25, 0.08);
  color: #0f1419;
}
.social-card--x .social-card__go {
  background: #0f1419;
}

.social-card--instagram {
  border-color: rgba(225, 48, 108, 0.28);
}
.social-card--instagram .social-card__icon {
  background: linear-gradient(135deg, rgba(253, 29, 29, 0.12), rgba(225, 48, 108, 0.14), rgba(131, 58, 180, 0.12));
  color: #e1306c;
}
.social-card--instagram .social-card__go {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf);
}

.social-card--linkedin {
  border-color: rgba(10, 102, 194, 0.28);
}
.social-card--linkedin .social-card__icon {
  background: rgba(10, 102, 194, 0.12);
  color: #0a66c2;
}
.social-card--linkedin .social-card__go {
  background: #0a66c2;
}

.social-card--youtube {
  border-color: rgba(255, 0, 51, 0.28);
}
.social-card--youtube .social-card__icon {
  background: rgba(255, 0, 51, 0.12);
  color: #ff0033;
}
.social-card--youtube .social-card__go {
  background: #ff0033;
}

.social-presence__row,
.social-presence__link,
.social-presence__widgets {
  display: none !important;
}

@media (max-width: 980px) {
  .social-presence__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .social-presence {
    padding: 3.5rem 0 4rem;
  }

  .social-presence__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Newsletter — mockup match ===== */
.newsletter {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: #eef6f1;
  overflow: hidden;
}

.newsletter__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.newsletter__dots {
  position: absolute;
  width: 110px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(31, 122, 77, 0.28) 1.3px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.newsletter__dots--tl {
  top: 1.25rem;
  left: max(1rem, calc((100% - 1240px) / 2));
}

.newsletter__dots--br {
  right: max(1rem, calc((100% - 1240px) / 2));
  bottom: 1.25rem;
}

.newsletter__wave {
  position: absolute;
  right: max(2rem, calc((100% - 1240px) / 2 + 1rem));
  top: 1.5rem;
  width: 140px;
  height: 60px;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(31, 122, 77, 0.14) 43%, transparent 46%),
    radial-gradient(ellipse at center, transparent 55%, rgba(31, 122, 77, 0.1) 56%, transparent 59%);
}

.newsletter > .container {
  position: relative;
  z-index: 1;
}

.newsletter__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 1.75rem 2rem;
  align-items: center;
  padding: 1.75rem 1.75rem 1.65rem;
  background: #ffffff;
  border: 1px solid rgba(31, 122, 77, 0.1);
  border-radius: 1.35rem;
  box-shadow: 0 14px 36px rgba(15, 61, 46, 0.08);
}

.newsletter__copy {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(26, 43, 52, 0.1);
}

.newsletter__eyebrow {
  margin: 0 0 0.7rem;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter__title {
  margin: 0;
  color: #0f3d2e;
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.newsletter__lede {
  margin: 0.75rem 0 0;
  max-width: 26rem;
  color: #6b7a83;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter__perks {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.newsletter__perks li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 5.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #245244;
}

.newsletter__perk-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #e6f4ec;
  color: #1f7a4d;
  border: 1px solid rgba(31, 122, 77, 0.18);
}

.newsletter__perk-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.newsletter__form-wrap {
  min-width: 0;
}

.newsletter__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.75rem 0.85rem;
  align-items: end;
}

.newsletter .field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.newsletter .field label {
  margin: 0;
  color: #5c6b74;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter .field label span {
  color: #f36b21;
}

.newsletter .field input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d7dde3;
  border-radius: 0.75rem;
  background: #fff;
  color: #1a2b34;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.newsletter .field input::placeholder {
  color: #9aa7b0;
}

.newsletter .field input:focus {
  border-color: #1f7a4d;
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.14);
}

.newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: #0f3d2e;
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}

.newsletter__submit svg {
  width: 1rem;
  height: 1rem;
}

.newsletter__submit:hover {
  background: #186640;
  transform: translateY(-1px);
}

.newsletter__note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  color: #6b7a83;
  font-size: 0.8rem;
  line-height: 1.4;
}

.newsletter__note-icon {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #1f7a4d;
  flex-shrink: 0;
}

.newsletter__note-icon svg {
  width: 100%;
  height: 100%;
}

.newsletter__status {
  margin: 0.55rem 0 0;
  min-height: 1.2em;
  font-size: 0.86rem;
}

.newsletter__status[data-state="success"] {
  color: #1f7a4d;
}

.newsletter__status[data-state="error"] {
  color: #c5192d;
}

@media (max-width: 980px) {
  .newsletter__panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .newsletter__copy {
    padding-right: 0;
    padding-bottom: 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(26, 43, 52, 0.1);
  }

  .newsletter__form {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter__submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .newsletter {
    padding: 3.5rem 0 4rem;
  }

  .newsletter__panel {
    padding: 1.35rem 1.15rem;
  }

  .newsletter__form {
    grid-template-columns: 1fr;
  }

  .newsletter__perks {
    justify-content: space-between;
  }
}

/* ===== Sitewide polish: hover & motion ===== */
@media (prefers-reduced-motion: no-preference) {
  .btn,
  .btn--mission,
  .btn--donate,
  .directory__btn,
  .partners__banner-cta,
  .yt-feed__more,
  .story-card__more,
  .event-card__more,
  .newsletter__submit,
  .nav__link,
  .footer a {
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      background-color 0.22s ease,
      color 0.22s ease,
      border-color 0.22s ease;
  }

  .btn .btn__icon,
  .btn svg:last-child,
  .btn--mission .btn__icon,
  .directory__btn svg,
  .partners__banner-cta svg,
  .yt-feed__more svg,
  .story-card__more svg,
  .event-card__more svg {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .btn:hover .btn__icon,
  .btn:hover svg:last-child,
  .btn--mission:hover .btn__icon,
  .directory__btn:hover svg,
  .partners__banner-cta:hover svg,
  .yt-feed__more:hover svg,
  .story-card__more:hover svg,
  .event-card__more:hover svg {
    transform: translateX(4px);
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 30, 40, 0.18);
  }

  .btn--primary:hover {
    box-shadow: 0 16px 36px rgba(243, 107, 33, 0.45);
  }

  .btn--whatsapp:hover {
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
  }

  .btn--donate:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(243, 107, 33, 0.4);
  }

  .btn--mission:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 61, 46, 0.28);
  }

  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  }

  /* Mission feature + MV cards */
  .feature-card,
  .mv-card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.22s ease,
      background-color 0.22s ease;
  }

  .feature-card__icon,
  .mv-card__icon {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
  }

  .feature-card h3::after {
    transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.22s ease;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(26, 43, 52, 0.14);
    border-color: rgba(243, 107, 33, 0.22);
  }

  .feature-card:hover .feature-card__icon {
    transform: translateY(-3px) scale(1.08);
  }

  .feature-card:hover h3::after {
    width: 2.75rem;
  }

  .mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(26, 43, 52, 0.1);
  }

  .mv-card:hover .mv-card__icon {
    transform: scale(1.08);
  }

  .mv-card--mission:hover {
    background: #e1f3e9;
    border-color: rgba(31, 122, 77, 0.28);
  }

  .mv-card--vision:hover {
    background: #ffe8da;
    border-color: rgba(243, 107, 33, 0.28);
  }

  /* Impact strip */
  .impact-strip__item {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .impact-strip__icon {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  }

  .impact-strip__item:hover {
    transform: translateY(-4px);
  }

  .impact-strip__item:hover .impact-strip__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(26, 43, 52, 0.12);
  }

  .impact-panel__item {
    transition: transform 0.28s ease, background-color 0.28s ease;
    border-radius: 0.85rem;
    margin-inline: -0.35rem;
    padding-inline: 0.35rem;
  }

  .impact-panel__icon {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .impact-panel__item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.06);
  }

  .impact-panel__item:hover .impact-panel__icon {
    transform: scale(1.08);
  }

  /* SDG cards */
  .sdg-card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.22s ease;
  }

  .sdg-card__icon,
  .sdg-card__num,
  .sdg-card__bar {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sdg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(26, 43, 52, 0.14);
    border-color: color-mix(in srgb, var(--sdg) 35%, transparent);
  }

  .sdg-card:hover .sdg-card__icon {
    transform: scale(1.1);
  }

  .sdg-card:hover .sdg-card__num {
    transform: scale(1.06);
  }

  .sdg-card:hover .sdg-card__bar {
    transform: scaleX(1.15);
  }

  /* Stories / events / YouTube */
  .stories .story-card,
  .events .event-card,
  .yt-card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.22s ease;
  }

  .stories .story-card:hover,
  .events .event-card:hover,
  .yt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(26, 43, 52, 0.16);
  }

  .stories .story-card:hover .story-card__media img,
  .events .event-card:hover .event-card__media img,
  .yt-card:hover .yt-card__media img {
    transform: scale(1.07);
  }

  .story-card__quote {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .stories .story-card:hover .story-card__quote {
    transform: scale(1.08) rotate(-4deg);
  }

  /* Partners */
  .partner-card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.22s ease,
      filter 0.32s ease;
  }

  .partner-card img {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
  }

  .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(26, 43, 52, 0.12);
  }

  .partner-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.05);
  }

  .partners__banner {
    transition: transform 0.32s ease, box-shadow 0.32s ease;
  }

  .partners__banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 61, 46, 0.18);
  }

  /* Social */
  .social-card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.22s ease,
      background-color 0.22s ease;
  }

  .social-card__icon,
  .social-card__go {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(26, 43, 52, 0.14);
  }

  .social-card:hover .social-card__icon {
    transform: scale(1.1);
  }

  .social-card:hover .social-card__go {
    transform: translateX(5px);
  }

  .social-card--facebook:hover { border-color: rgba(24, 119, 242, 0.35); }
  .social-card--x:hover { border-color: rgba(15, 20, 25, 0.28); }
  .social-card--instagram:hover { border-color: rgba(225, 48, 108, 0.35); }
  .social-card--linkedin:hover { border-color: rgba(10, 102, 194, 0.35); }
  .social-card--youtube:hover { border-color: rgba(255, 0, 51, 0.35); }

  /* Directory / newsletter / arrows */
  .directory__btn:hover,
  .newsletter__submit:hover {
    transform: translateY(-3px);
  }

  .newsletter__field input,
  .newsletter__field select {
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  }

  .newsletter__field input:focus,
  .newsletter__field select:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
  }

  .hero__arrow,
  .stories__arrow,
  .events__arrow,
  .partners__arrow {
    transition:
      transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.22s ease,
      color 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
  }

  .hero__arrow:hover,
  .stories__arrow:hover,
  .events__arrow:hover,
  .partners__arrow:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(243, 107, 33, 0.25);
  }

  .hero__video-card {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
  }

  .hero__video-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  }

  .our-impact .video-frame__play {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  }

  .our-impact .video-frame__facade:hover .video-frame__play {
    transform: scale(1.12);
    box-shadow: 0 16px 36px rgba(243, 107, 33, 0.55);
  }

  .yt-badge-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .yt-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 0, 51, 0.22);
  }

  .site-footer a:hover {
    color: #f36b21;
  }
}

/* ===== Scroll section transitions ===== */
html {
  scroll-behavior: smooth;
}

/* Reveal animations start elements offset sideways (e.g. 48px right);
   clip that so phones don't widen the page and push the header/menu
   off-screen. `clip` (not `hidden`) keeps position: sticky working. */
main {
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 40px, 0);
    transition:
      opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  }

  [data-reveal="left"] {
    transform: translate3d(-48px, 24px, 0);
  }

  [data-reveal="right"] {
    transform: translate3d(48px, 24px, 0);
  }

  [data-reveal="scale"] {
    transform: translate3d(0, 28px, 0) scale(0.96);
  }

  [data-reveal="fade"] {
    transform: none;
    filter: blur(8px);
  }

  [data-reveal].is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  [data-reveal-delay="1"] { transition-delay: 100ms; }
  [data-reveal-delay="2"] { transition-delay: 180ms; }
  [data-reveal-delay="3"] { transition-delay: 260ms; }
  [data-reveal-delay="4"] { transition-delay: 340ms; }

  /* Stagger children as section enters */
  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0ms;
  }

  [data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
    transition-delay: calc(var(--stagger, 0) * 90ms + 80ms);
  }

  /* Soft section entrance glow / lift */
  [data-section] {
    transition: opacity 0.6s ease;
  }

  [data-section].is-inview .mission__decor,
  [data-section].is-inview .sdgs__bg,
  [data-section].is-inview .events__decor,
  [data-section].is-inview .yt-feed__decor,
  [data-section].is-inview .directory__world,
  [data-section].is-inview .partners__world,
  [data-section].is-inview .social-presence__decor,
  [data-section].is-inview .newsletter__decor {
    animation: decorFloatIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes decorFloatIn {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Headings gently rise when their section is active */
  [data-section] .stories__head,
  [data-section] .sdgs__head,
  [data-section] .events__head,
  [data-section] .partners__head,
  [data-section] .yt-feed__head,
  [data-section] .social-presence__head,
  [data-section] .our-impact__head {
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Mobile polish (all pages)
   Readable minimum text sizes, ~44px tap targets, no iOS zoom-on-focus,
   and a header that fits the full brand name on small phones.
   ========================================================================== */
@media (max-width: 640px) {
  /* "SKILLING INDIA" was 8px */
  .brand__tag {
    font-size: 0.625rem;
  }

  /* Small labels that dropped below 12px */
  /* `body` prefix so page stylesheets loaded later (about.css etc.) don't win */
  body .hero__kicker,
  body .mv-card__label,
  body .mv-box__label,
  body .sdg-card__title,
  body .directory__highlight,
  body .directory__highlights-label,
  body .newsletter .field label,
  body .newsletter .field label span {
    font-size: 0.75rem;
  }

  /* Back links, contact-card actions and inline email links */
  body .contact-card__cta,
  body .detail-back,
  body .lf-back,
  body .about-prose a[href^="mailto:"],
  body .about-prose a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Justified text leaves large word gaps on narrow screens */
  body [style*="justify"],
  body .detail-body p {
    text-align: left !important;
  }

  /* Footer phone / email links: taller tap area. Footer menus only need it
     on legacy pages (team/*, team.php), whose old theme CSS shrinks them. */
  body:has(.floating-wpp) .footer__links a {
    display: inline-block;
    padding: 0.5rem 0;
  }
  .footer__contact a {
    display: inline-block;
    padding: 0.55rem 0;
  }

  /* Breadcrumb links */
  .page-hero__crumb a,
  .lf-crumb a,
  .jr-crumb a {
    display: inline-block;
    padding: 0.6rem 0;
  }

  /* Hero slider dots: keep the look, enlarge the invisible hit area */
  .hero__dot {
    position: relative;
  }
  .hero__dot::after {
    content: "";
    position: absolute;
    inset: -1rem -0.3rem;
  }

  /* Form fields: 16px text stops iOS Safari zooming in on focus */
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  select,
  textarea {
    font-size: 16px;
  }
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]),
  select {
    min-height: 44px;
  }
}

/* ==========================================================================
   Floating Donate button
   Below the desktop-nav breakpoint (1180px) the header only shows the logo
   and the menu toggle; Donate moves to a floating button, bottom-right.
   ========================================================================== */
.donate-fab {
  display: none;
}

@media (max-width: 1179.98px) {
  .nav__actions .btn--donate {
    display: none;
  }

  .donate-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 90; /* above page content, below the open nav panel (100) */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0 1.25rem;
    border-radius: 999px;
    background: #f36b21;
    color: #fff;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(243, 107, 33, 0.38), 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }

  .donate-fab:hover,
  .donate-fab:focus-visible {
    background: #e05a12;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(243, 107, 33, 0.45), 0 2px 6px rgba(0, 0, 0, 0.18);
  }

  .donate-fab:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
  }

  /* Legacy pages (team/*) still load the old floating WhatsApp button in
     the same corner; stack Donate above it instead of overlapping. */
  body:has(.floating-wpp) .donate-fab {
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 5rem);
  }

  /* The open menu has its own Donate button */
  .nav-panel.is-open ~ .donate-fab {
    opacity: 0;
    pointer-events: none;
  }

  /* Keep the last footer line clear of the floating button */
  .footer__copy {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 1179.98px) and (prefers-reduced-motion: reduce) {
  .donate-fab { transition: none; }
}
