:root {
  --cream: #fcfcfc;
  --cream-alt: #f2f7f5;
  --charcoal: #353535;
  --charcoal-dark: #262626;
  --ink: #353535;
  --primary: #43aa8b;
  --primary-text: #2f8a6f;
  --secondary: #fdca02;
  --secondary-text: #b38a00;
  --accent: #ec4e20;
  --muted: #6b6b6b;
  --muted-dark: #d9d9d9;
  --seagrass: #43aa8b;
  --seagrass-tint: #e3f4ef;
  --amber: #fdca02;
  --amber-tint: #fff5cc;
  --paprika: #ec4e20;
  --neutral-tint: #f1f4f3;
  --graphite: #353535;
  --map-fill: #fcfcfc;
  --map-outline: rgba(53, 53, 53, 0.5);
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Barlow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.mono {
  font-family: "JetBrains Mono", monospace;
}

.iei-brush {
  font-family: "Caveat Brush", "Casual Brush Script", "Brush Script MT", cursive;
  font-weight: 400;
  color: var(--secondary);
  line-height: 0.9;
  letter-spacing: 0;
}

.iei-h2--dark .iei-brush {
  color: var(--primary);
}

/* NAV */
.iei-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: stretch;
  background: var(--cream);
}

.iei-nav__right {
  flex: 1 1 75%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.iei-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 36px;
  background: var(--cream);
  border-bottom: 1px solid rgba(53, 53, 53, 0.08);
}

.iei-nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 25%;
  text-decoration: none;
  padding: 14px 24px;
  border-right: 1px solid rgba(53, 53, 53, 0.08);
}

.iei-nav__brand img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.iei-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.iei-nav__brand-text strong {
  font-weight: 700;
  font-size: 30px;
  color: var(--charcoal);
}

.iei-nav__brand-text span {
  font-size: 9.5px;
  letter-spacing: 0.03em;
  color: #8a8a8a;
}

.iei-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--graphite);
  text-decoration: none;
  white-space: nowrap;
}

.iei-nav__cta u {
  text-decoration-color: var(--seagrass);
}

.iei-nav__divider {
  width: 1px;
  height: 30px;
  background: rgba(53, 53, 53, 0.15);
  flex-shrink: 0;
}

.iei-nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--seagrass-tint);
  color: var(--seagrass);
}

.iei-nav__cta-icon svg {
  width: 18px;
  height: 18px;
}

.iei-nav__contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.iei-nav__contact-item {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.iei-nav__contact-label {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  color: #8a8a8a;
}

.iei-nav__contact-value {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--graphite);
  white-space: nowrap;
}

.iei-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  background: var(--seagrass);
  padding: 15px 36px;
  border-radius: 18px 0 0 0;
}

.iei-nav__links a {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
  color: rgba(53, 53, 53, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.iei-nav__links a:hover {
  color: #fcfcfc;
}

.iei-nav__links a.is-active {
  color: #fcfcfc;
}

.iei-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 5;
}

.iei-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.iei-nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.iei-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.iei-nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.iei-btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
}

.iei-btn--primary {
  font-size: 15px;
  color: var(--charcoal-dark);
  background: var(--primary);
  padding: 13px 26px;
  transition: transform 0.25s ease;
}

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

.iei-btn--secondary {
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(53, 53, 53, 0.35);
  padding: 12px 24px;
}

.iei-btn--outline {
  font-size: 15px;
  color: #fcfcfc;
  background: transparent;
  border: 1.5px solid rgba(244, 241, 234, 0.4);
  padding: 12px 24px;
}

@media (max-width: 1024px) {
  .iei-nav__contact,
  .iei-nav__divider {
    display: none;
  }
}

@media (max-width: 1024px) {
  /* Nav collapses to the hamburger at the same tier that already hides the
     contact block below -- the 8-link row had no room from ~760-1024px and
     was wrapping link text mid-word instead of fitting on one line. */
  .iei-nav {
    flex-direction: column;
    position: relative;
  }

  .iei-nav__brand {
    flex: 0 0 auto;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(53, 53, 53, 0.08);
    padding-right: 64px;
  }

  .iei-nav__brand img {
    height: 40px;
  }

  .iei-nav__toggle {
    display: flex;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .iei-nav__top {
    padding: 12px 20px;
  }

  .iei-nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    padding: 8px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 32px rgba(53, 53, 53, 0.2);
    z-index: 30;
  }

  .iei-nav__links.is-open {
    display: flex;
  }

  .iei-nav__links a {
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(252, 252, 252, 0.15);
  }

  .iei-nav__links a:last-child {
    border-bottom: 0;
  }

  .iei-nav__cta-label {
    display: none;
  }
}

@media (max-width: 420px) {
  .iei-nav__top {
    padding: 10px 16px;
  }

  .iei-nav__brand {
    padding: 12px 16px;
    padding-right: 60px;
  }
}

/* HERO SLIDESHOW */
.iei-hero-slideshow {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 62vw, 640px);
  background: var(--cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.iei-hero-slideshow.is-loaded {
  opacity: 1;
  transform: translateY(0);
}


.iei-pixels {
  position: relative;
  z-index: 2;
  display: grid;
}

.iei-pixels > div {
  background: transparent;
}

.iei-eyebrow-pill {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--primary-text);
  background: rgba(67, 170, 139, 0.16);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.iei-hero-slide {
  position: absolute;
  inset: 0;
  /* Split layout: copy in its own solid column, photo in the other, so the
     headline never sits on the image and the photo stays unveiled. */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: var(--cream);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.iei-hero-slide::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  background-image: var(--hero-slide-img);
  background-size: cover;
  background-position: center;
}

.iei-hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.iei-hero-slide__panel {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  /* Left edge lines up with the 1180px content gutter used by the
     sections below, so the hero copy shares their alignment. */
  padding-left: calc(max(0px, (100vw - 1180px) / 2) + 36px);
  padding-right: clamp(28px, 4vw, 60px);
}

.iei-hero-slide__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 18px;
}

.iei-hero-slide__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.18;
  color: var(--seagrass);
  margin: 0 0 30px;
}

.iei-hero-slide__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: #fcfcfc;
  background: var(--amber);
  padding: 14px 30px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.iei-hero-slide__cta:hover,
.iei-hero-slide__cta:focus-visible,
.iei-hero-slide__cta:active {
  background: var(--paprika);
}

.iei-hero-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(252, 252, 252, 0.85);
  color: var(--seagrass);
  cursor: pointer;
  transition: background 0.2s ease;
}

.iei-hero-slideshow__arrow:hover {
  background: #fcfcfc;
}

.iei-hero-slideshow__arrow svg {
  width: 22px;
  height: 22px;
}

/* Both arrows live on the photo column -- the light pill had no contrast
   against the cream copy column. */
.iei-hero-slideshow__arrow--prev {
  left: calc(55% + 20px);
}

.iei-hero-slideshow__arrow--next {
  right: 20px;
}

.iei-hero-slideshow__dots {
  position: absolute;
  left: calc(max(0px, (100vw - 1180px) / 2) + 36px);
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.iei-hero-slideshow__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(53, 53, 53, 0.22);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.iei-hero-slideshow__dot.is-active {
  background: var(--seagrass);
  transform: scale(1.15);
}

.iei-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  /* Phones and tablets: stack the photo above a solid copy panel instead of
     splitting into columns -- below ~900px the two columns get too narrow to
     hold a headline without ragging it into six lines. */
  .iei-hero-slideshow {
    min-height: 0;
    height: auto;
  }

  .iei-hero-slide {
    position: relative;
    inset: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
  }

  /* Only the active slide occupies flow; the rest stack under it and fade. */
  .iei-hero-slide:not(.is-active) {
    position: absolute;
    inset: 0;
  }

  .iei-hero-slide::before {
    content: "";
    display: block;
    width: 100%;
    /* Grows with the viewport but caps out, so the photo band never
       swallows the fold on wider phones / small tablets. */
    height: clamp(200px, 62vw, 320px);
    background-image: var(--hero-slide-img);
    background-size: cover;
    background-position: center;
  }

  .iei-hero-slide__panel {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 28px clamp(24px, 5vw, 44px) 60px;
  }

  .iei-hero-slide__eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .iei-hero-slide__heading {
    font-size: clamp(26px, 6.2vw, 34px);
    line-height: 1.22;
    margin: 0 0 22px;
  }

  .iei-hero-slide__cta {
    padding: 13px 26px;
  }

  /* Keep the arrows on the photo band, clear of the headline. */
  .iei-hero-slideshow__arrow {
    width: 36px;
    height: 36px;
    top: 0;
    /* Half the photo band height above, so the arrows centre on the image. */
    margin-top: clamp(100px, 31vw, 160px);
    transform: translateY(-50%);
    background: rgba(252, 252, 252, 0.92);
    box-shadow: 0 1px 3px rgba(53, 53, 53, 0.22);
  }

  .iei-hero-slideshow__arrow--prev {
    left: 10px;
  }

  .iei-hero-slideshow__arrow--next {
    right: 10px;
  }

  /* Dots now sit on cream, so they need a dark inactive state. */
  .iei-hero-slideshow__dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
  }
}

/* SHARED SECTION */
.iei-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 36px;
}

.iei-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--secondary-text);
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.iei-eyebrow--dark {
  color: var(--secondary);
}

.iei-h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--ink);
  margin: 0;
}

.iei-h2 .iei-brush {
  font-size: 1.22em;
}

.iei-h2--dark {
  color: #fcfcfc;
}

.iei-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* DESCRIPTOR */
.iei-descriptor {
  background: var(--cream);
}

.iei-theme-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.iei-theme-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--graphite);
}

.iei-theme-card--seagrass {
  background: var(--seagrass-tint);
}

.iei-theme-card--amber {
  background: var(--amber-tint);
}

.iei-theme-card--neutral {
  background: var(--neutral-tint);
}

.iei-theme-card__motif {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(53, 53, 53, 0.16);
}

.iei-theme-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--seagrass);
}

.iei-theme-card--amber .iei-theme-card__icon {
  color: var(--amber);
}

.iei-theme-card__icon svg {
  width: 26px;
  height: 26px;
}

.iei-theme-card__label {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(53, 53, 53, 0.7);
}

.iei-theme-card__title {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--graphite);
}

.iei-theme-card__link {
  position: relative;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--paprika);
  margin-top: 4px;
}

.iei-descriptor__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.iei-descriptor__media {
  position: relative;
  min-height: clamp(360px, 40vw, 480px);
}

.iei-descriptor__dots {
  position: absolute;
  left: -6px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(var(--paprika) 2.5px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.85;
  z-index: 2;
}

.iei-descriptor__accent {
  position: absolute;
  top: 10px;
  right: 6px;
  width: 46px;
  height: 46px;
  border-top: 5px solid var(--amber);
  border-right: 5px solid var(--amber);
  border-radius: 0 14px 0 0;
  z-index: 2;
}

.iei-descriptor__photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(53, 53, 53, 0.16);
}

.iei-descriptor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iei-descriptor__photo--main {
  right: 0;
  bottom: 0;
  width: 82%;
  height: 78%;
}

.iei-descriptor__photo--secondary {
  left: 0;
  top: 0;
  width: 52%;
  height: 46%;
  border: 6px solid var(--cream);
  z-index: 1;
}

.iei-descriptor__text {
  max-width: 620px;
}

.iei-descriptor__eyebrow {
  font-family: var(--font-body);
}

.iei-descriptor__heading {
  font-family: var(--font-heading);
  color: var(--graphite);
  margin-bottom: 12px;
}

.iei-descriptor__tagline {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--paprika);
  font-size: 17px;
  margin: 0 0 18px;
}

.iei-descriptor__text .iei-body {
  font-family: var(--font-body);
}

.iei-descriptor__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.iei-btn--amber {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  background: var(--amber);
  padding: 13px 26px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.iei-btn--amber:hover {
  background: var(--paprika);
}

.iei-descriptor__watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  text-decoration: none;
  cursor: pointer;
}

.iei-descriptor__play {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--seagrass);
  color: var(--seagrass);
  font-size: 12px;
}

@media (max-width: 980px) {
  .iei-theme-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .iei-descriptor__body {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .iei-descriptor__media {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .iei-theme-cards {
    grid-template-columns: 1fr;
  }
}

/* IMPACT */
.iei-impact {
  background: var(--cream);
}

.iei-impact h2 {
  font-family: var(--font-heading);
  text-transform: capitalize;
  text-align: left;
}

.iei-impact__intro {
  font-family: var(--font-body);
  max-width: 780px;
}

.iei-impact__link {
  font-weight: 700;
  color: var(--paprika);
  text-decoration: underline;
  margin-left: 6px;
}

.iei-impact__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.iei-impact__photo {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
}

.iei-impact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iei-impact__box {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 152px;
  padding: 16px;
  border-radius: 12px;
  background: var(--amber-tint);
  box-shadow: 0 12px 26px rgba(53, 53, 53, 0.15);
}

.iei-impact__box strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--graphite);
  line-height: 1;
}

.iei-impact__box span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--graphite);
  line-height: 1.35;
}

.iei-impact__box--1 {
  top: -22px;
  left: 2%;
}

.iei-impact__box--2 {
  bottom: -22px;
  left: 31%;
}

.iei-impact__box--3 {
  top: -22px;
  right: 31%;
}

.iei-impact__box--4 {
  bottom: -22px;
  right: 2%;
}

@media (max-width: 980px) {
  .iei-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iei-impact__photo:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .iei-impact__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .iei-impact__photo:last-child {
    grid-column: auto;
  }

  .iei-impact__box {
    width: 132px;
    padding: 12px 14px;
  }

  .iei-impact__box--1 {
    top: -18px;
    left: -8px;
  }

  .iei-impact__box--2 {
    bottom: -18px;
    left: auto;
    right: -8px;
  }

  .iei-impact__box--3 {
    top: calc(33.33% - 18px);
    right: -8px;
  }

  .iei-impact__box--4 {
    bottom: -18px;
    right: 2%;
    left: auto;
  }
}

/* MAP */
.iei-map {
  background: var(--cream);
}

.iei-map__heading {
  font-family: var(--font-heading);
  color: var(--seagrass);
}

.iei-map__intro {
  font-family: var(--font-body);
  max-width: 780px;
  margin-bottom: 48px;
}

.iei-map__stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 960px;
}

.gbz-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 70% 12%, #fffdf5 0%, var(--amber-tint) 55%, #ffedb3 100%);
  box-shadow:
    0 1px 0 #fff inset,
    0 18px 40px -24px rgba(53, 53, 53, 0.25),
    0 0 0 1px var(--muted-dark);
}

.gbz-svg,
.gbz-leaders {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gbz-leaders {
  pointer-events: none;
}

.gbz-leader {
  opacity: 0;
  animation: gbz-fade 0.5s ease forwards;
}

@keyframes gbz-fade {
  to {
    opacity: 0.85;
  }
}

.gbz-dot {
  position: absolute;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gbz-core {
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: var(--seagrass);
  box-shadow: 0 0 0 3px #fff, 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gbz-dot.on .gbz-core {
  transform: translate(-50%, -50%) scale(1);
}



.gbz-dot.on .gbz-pulse {
  animation: gbz-ping 1.9s ease-out 0.35s infinite;
}

@keyframes gbz-ping {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
}

.gbz-card {
  position: absolute;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  background: #fff;
  border: 1px solid var(--muted-dark);
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: 0 10px 26px -14px rgba(53, 53, 53, 0.5);
  min-width: 120px;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 3;
}

.gbz-card.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gbz-card-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--graphite);
}

.gbz-card-elev {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
  font-variant-numeric: tabular-nums;
}

/* Compact per-valley icon row, mobile-only fallback for .gbz-icon-pin (see
   the @media (max-width: 860px) block below and the JS comment in gb-map.js
   for why: valleys sit too close together on a narrow frame for scattered
   map icons not to collide). Hidden on desktop. */
.gbz-card-icons {
  display: none;
  gap: 5px;
  margin-top: 6px;
}

.gbz-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--cream-alt);
  border: 1px solid var(--muted-dark);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gbz-card.on .gbz-chip {
  opacity: 1;
  transform: scale(1);
}

.gbz-icon-pin {
  --dx: 0px;
  --dy: 0px;
  position: absolute;
  width: 26px;
  height: 26px;
  transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--muted-dark);
  box-shadow: 0 6px 14px -8px rgba(53, 53, 53, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gbz-icon-pin.on {
  opacity: 1;
  transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1);
}

.gbz-title {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 4;
  pointer-events: none;
  transition: all 0.6s ease;
  max-width: 60%;
}

.gbz-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seagrass);
}

.gbz-head {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 3px;
  color: var(--graphite);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gbz-legend {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--muted-dark);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  box-shadow: 0 10px 26px -16px rgba(53, 53, 53, 0.4);
}

.gbz-legend.on {
  opacity: 1;
  transform: none;
}

.gbz-legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gbz-legend-ic {
  display: inline-flex;
  width: 22px;
  justify-content: center;
}

.gbz-legend-tx {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--graphite);
  white-space: nowrap;
}

.gbz-replay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
  color: var(--seagrass);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--muted-dark);
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, background 0.2s ease;
  box-shadow: 0 6px 16px -10px rgba(53, 53, 53, 0.5);
}

.gbz-replay.on {
  opacity: 1;
  pointer-events: auto;
}

.gbz-replay:hover {
  background: #fff;
}

.gbz-replay:focus-visible {
  outline: 2px solid var(--seagrass);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  /* A wider frame gives the JS-driven mobile anchor layout (a single
     alternating-side column, see ANCHORS_MOBILE in gb-map.js) enough
     vertical room that stacked callout cards don't touch. */
  .gbz-frame {
    aspect-ratio: 4 / 5;
  }

  .gbz-title {
    max-width: 72%;
  }

  .gbz-head {
    font-size: 16px;
  }

  .gbz-card {
    min-width: 92px;
    padding: 6px 8px;
  }

  .gbz-card-name {
    font-size: 11px;
  }

  .gbz-card-elev {
    font-size: 9.5px;
  }

  /* Too many valleys sit too close together on this narrow frame for
     scattered on-map icons not to collide with a neighbour's — fall back to
     the compact per-card icon row instead (see .gbz-card-icons above). */
  .gbz-icon-pin {
    display: none;
  }

  .gbz-card-icons {
    display: flex;
  }

  .gbz-legend {
    align-self: stretch;
    gap: 6px 14px;
    padding: 8px 10px;
  }

  .gbz-legend-tx {
    font-size: 10px;
  }

  .gbz-legend-ic {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gbz-leader,
  .gbz-pulse {
    animation: none !important;
  }

  .gbz-card,
  .gbz-icon-pin,
  .gbz-core,
  .gbz-legend,
  .gbz-title {
    transition: none !important;
  }
}

/* PARTNERS */
.iei-partners {
  background: var(--cream-alt);
}

.iei-partners__heading {
  font-family: var(--font-heading);
  color: var(--seagrass);
}

.iei-partners__intro {
  font-family: var(--font-body);
  max-width: 720px;
  margin-bottom: 44px;
}

.iei-partners__marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.iei-partners__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: iei-partners-scroll 40.8s linear infinite;
}

.iei-partners__marquee:hover .iei-partners__track,
.iei-partners__marquee:focus-within .iei-partners__track {
  animation-play-state: paused;
}

@keyframes iei-partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* Track holds two identical copies of the logo list back-to-back, so
       shifting exactly half its width lands on a visually identical frame
       and the loop restarts with no visible seam. */
    transform: translateX(-50%);
  }
}

.iei-partners__logo {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--muted-dark);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px -18px rgba(53, 53, 53, 0.3);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.iei-partners__logo:hover {
  box-shadow: 0 16px 30px -18px rgba(53, 53, 53, 0.4);
  transform: translateY(-3px);
}

.iei-partners__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 620px) {
  .iei-partners__logo {
    width: 120px;
    height: 120px;
    padding: 14px;
  }

  .iei-partners__track {
    animation-duration: 31.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iei-partners__track {
    animation: none;
    overflow-x: auto;
  }

  .iei-partners__marquee {
    overflow-x: auto;
  }
}

/* GALLERY */
.iei-gallery {
  background: var(--cream);
}

.iei-gallery h2 {
  margin-bottom: 34px;
}

.iei-gallery__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 16px;
}

.iei-gallery__tile {
  position: relative;
  min-height: 430px;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--charcoal-dark);
  border: 1px solid rgba(53, 53, 53, 0.08);
  isolation: isolate;
}

.iei-gallery__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
  z-index: -2;
}

.iei-gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 38, 38, 0.06) 0%, rgba(38, 38, 38, 0.28) 42%, rgba(38, 38, 38, 0.82) 100%),
    linear-gradient(90deg, rgba(38, 38, 38, 0.25), rgba(38, 38, 38, 0));
  z-index: -1;
}

.iei-gallery__tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.iei-gallery__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 86px);
  padding: 7px 10px;
  border: 1px solid rgba(67, 170, 139, 0.75);
  border-radius: 999px;
  background: rgba(38, 38, 38, 0.38);
  color: var(--primary);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.iei-gallery__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(252, 252, 252, 0.92);
  color: var(--charcoal-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.iei-gallery__arrow:hover {
  transform: translate(2px, -2px);
  background: var(--primary);
}

.iei-gallery__tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fcfcfc;
}

.iei-gallery__tile figcaption strong {
  display: block;
  max-width: 280px;
  font-weight: 700;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 0.98;
  margin-bottom: 10px;
}

.iei-gallery__tile figcaption small {
  display: block;
  max-width: 280px;
  min-height: 42px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 12px;
  line-height: 1.32;
  margin-bottom: 14px;
}

.iei-gallery__tile figcaption a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(252, 252, 252, 0.94);
  color: var(--charcoal-dark);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.iei-gallery__tile figcaption a span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .iei-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iei-gallery__tile {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .iei-gallery__grid {
    grid-template-columns: 1fr;
  }

  .iei-gallery__tile {
    min-height: 410px;
    border-radius: 18px;
  }

  .iei-gallery__tile figcaption strong {
    font-size: clamp(28px, 10vw, 38px);
  }
}

@media (max-width: 400px) {
  .iei-gallery__tile {
    min-height: 380px;
  }

  .iei-gallery__tag {
    font-size: 9px;
  }
}

/* INVOLVE */
.iei-involve {
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.iei-involve__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 36px;
  position: relative;
  z-index: 2;
}

.iei-involve__inner p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 520px;
  margin: 16px 0 32px;
}

/* VOLUNTEER PAGE */
.iei-volunteer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 36px 104px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.iei-volunteer__intro {
  position: sticky;
  top: 96px;
}

.iei-volunteer__intro h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--ink);
}

.iei-volunteer__intro h1 .iei-brush {
  font-size: 1.2em;
}

.iei-volunteer__intro p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.iei-volunteer__form {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  border-radius: 8px;
  background: var(--cream-alt);
}

.iei-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iei-volunteer__form label,
.iei-volunteer__form legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.iei-volunteer__form label {
  display: grid;
  gap: 8px;
}

.iei-volunteer__form input,
.iei-volunteer__form select,
.iei-volunteer__form textarea {
  width: 100%;
  border: 1px solid rgba(53, 53, 53, 0.16);
  border-radius: 6px;
  background: rgba(252, 252, 252, 0.88);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
}

.iei-volunteer__form textarea {
  resize: vertical;
  min-height: 120px;
}

.iei-volunteer__form input:focus,
.iei-volunteer__form select:focus,
.iei-volunteer__form textarea:focus {
  outline: 3px solid rgba(67, 170, 139, 0.32);
  border-color: var(--primary-text);
}

.iei-volunteer__form fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(53, 53, 53, 0.12);
  border-radius: 8px;
}

.iei-volunteer__form legend {
  padding: 0 8px;
}

.iei-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 8px;
}

.iei-check-grid label,
.iei-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.iei-check-grid input,
.iei-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--primary);
}

.iei-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.iei-form-actions button {
  border: 0;
  cursor: pointer;
}

.iei-form-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .iei-volunteer {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .iei-volunteer__intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .iei-volunteer {
    padding: 46px 22px 76px;
  }

  .iei-volunteer__form {
    padding: 20px;
  }

  .iei-form-grid,
  .iei-check-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE */
.iei-contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 36px 104px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.iei-contact__intro {
  position: sticky;
  top: 96px;
}

.iei-contact__intro h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--ink);
}

.iei-contact__intro p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.iei-contact__details-heading {
  display: block;
  margin: 40px 0 14px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--secondary-text);
  text-transform: uppercase;
}

.iei-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.iei-contact__details-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iei-contact__details-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--seagrass-tint);
  color: var(--primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iei-contact__details-icon svg {
  width: 18px;
  height: 18px;
}

.iei-contact__details-value {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.iei-contact__form {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(53, 53, 53, 0.1);
  border-radius: 8px;
  background: var(--cream-alt);
}

.iei-contact__form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.iei-contact__form input,
.iei-contact__form textarea {
  width: 100%;
  border: 1px solid rgba(53, 53, 53, 0.16);
  border-radius: 6px;
  background: rgba(252, 252, 252, 0.88);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
}

.iei-contact__form textarea {
  resize: vertical;
  min-height: 140px;
}

.iei-contact__form input:focus,
.iei-contact__form textarea:focus {
  outline: 3px solid rgba(67, 170, 139, 0.32);
  border-color: var(--primary-text);
}

.iei-contact__form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.iei-contact__form-actions button {
  border: 0;
  cursor: pointer;
}

.iei-contact__alert {
  margin: 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.iei-contact__alert--success {
  background: var(--seagrass-tint);
  color: var(--primary-text);
  border: 1px solid rgba(67, 170, 139, 0.35);
}

.iei-contact__alert--error {
  background: #fdeae2;
  color: #b3390f;
  border: 1px solid rgba(236, 78, 32, 0.35);
}

@media (max-width: 860px) {
  .iei-contact {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .iei-contact__intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .iei-contact {
    padding: 46px 22px 76px;
  }

  .iei-contact__form {
    padding: 20px;
  }
}

/* FOOTER */
.iei-footer {
  background: var(--charcoal-dark);
  border-top: 1px solid rgba(244, 241, 234, 0.1);
}

.iei-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.iei-footer__col {
  min-width: 0;
}

.iei-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.iei-footer__brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.iei-footer__brand span {
  font-weight: 700;
  font-size: 15px;
  color: #fcfcfc;
}

.iei-footer__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0 0 22px;
  max-width: 360px;
}

.iei-footer__subscribe {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.iei-footer__subscribe input {
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(252, 252, 252, 0.04);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: #fcfcfc;
  font-family: inherit;
}

.iei-footer__subscribe input::placeholder {
  color: #8a8a8a;
}

.iei-footer__subscribe input:focus {
  outline: none;
  border-color: var(--primary);
}

.iei-footer__subscribe button {
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: #fcfcfc;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.iei-footer__subscribe button:hover {
  background: var(--primary-dark);
}

.iei-footer__heading {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 18px;
}

.iei-footer__heading--social {
  margin-top: 28px;
}

.iei-footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.iei-footer__links a {
  font-size: 13.5px;
  color: #c9c9c9;
  text-decoration: none;
}

.iei-footer__links a:hover {
  color: #fcfcfc;
}

.iei-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.iei-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #c9c9c9;
  line-height: 1.5;
}

.iei-footer__contact a {
  color: #c9c9c9;
  text-decoration: none;
}

.iei-footer__contact a:hover {
  color: #fcfcfc;
}

.iei-footer__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-top: 1px;
}

.iei-footer__icon svg {
  width: 100%;
  height: 100%;
}

.iei-footer__social {
  display: flex;
  gap: 10px;
}

.iei-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(252, 252, 252, 0.06);
  color: #fcfcfc;
}

.iei-footer__social a svg {
  width: 16px;
  height: 16px;
}

.iei-footer__social a:hover {
  background: var(--primary);
}

.iei-footer__bottom {
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  padding: 18px 36px;
}

.iei-footer__copy {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 10.5px;
  color: rgba(252, 252, 252, 0.35);
}

@media (max-width: 860px) {
  .iei-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }

  .iei-footer__bottom {
    padding: 16px 24px;
  }
}
