/* SECTION 1: HERO */
.hero {
   min-height: 80vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding-top: 180px;
   padding-bottom: 80px;
   text-align: center;
   background: linear-gradient(180deg,
         var(--bg-paper) 0%,
         rgba(35, 87, 216, 0.03) 100%);
}

.hero__container {
   max-width: 900px;
}

.hero__title {
   font-family: var(--font-head);
   font-size: clamp(2.2rem, 5vw, 3.4rem);
   font-weight: 700;
   line-height: 1.1;
   color: var(--text-main);
   margin-bottom: 24px;
   letter-spacing: -0.02em;
}

.hero__title br {
   display: block;
}

.hero__subtitle {
   font-size: clamp(1rem, 2.5vw, 1.25rem);
   color: var(--text-muted);
   max-width: 600px;
   margin: 0 auto 40px;
   line-height: 1.7;
}

.hero__cta {
   display: inline-block;
   padding: 14px 32px;
   font-size: 1rem;
   font-weight: 600;
   color: var(--primary);
   background: transparent;
   border: 2px solid var(--primary);
   border-radius: 9999px;
   transition: var(--transition-smooth);
}

.hero__cta:hover {
   background: var(--primary);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(35, 87, 216, 0.25);
}


/* SECTION 2: HERO SLIDESHOW — Strict Split Layout */
.hero-slideshow {
    padding: 24px 0 88px;
}

.hero-slideshow__container {
    position: relative;
    display: grid;
    width: min(calc(100vw - 32px), 1440px);
    min-height: 500px;
    margin: 0 auto;
    border-radius: clamp(20px, 2.5vw, 32px);
    overflow: hidden;
    background: #faf5ee;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.08);
    isolation: isolate;
}

/* --- Slide --- */
.hero-slide {
    position: relative;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    z-index: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 780ms linear;
}

.hero-slide.is-active,
.hero-slide.was-active {
    visibility: visible;
}

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

.hero-slide.was-active {
    opacity: 0;
    z-index: 1;
}

/* --- Media Panel (Left: 57%) --- */
.hero-slide__media {
    flex: 0 0 57%;
    min-height: 100%;
    overflow: hidden;
    background: #e8e2d8;
}

.hero-slide__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-object-position, 50% 50%);
}

/* --- Text Panel (Right: 43%) --- */
.hero-slide__content {
    flex: 0 0 43%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(28px, 3.5vw, 56px);
    background: #faf5ee;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-slide__content-inner {
    max-width: 42ch;
    transform: translate3d(0, 16px, 0);
    opacity: 0;
    transition:
        transform 680ms cubic-bezier(0.16, 1, 0.3, 1) 180ms,
        opacity 680ms ease 180ms;
}

.hero-slide.is-active .hero-slide__content-inner {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.hero-slide__title {
    margin: 0;
    color: var(--text-main, #1a1a1a);
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-slide__subtitle {
    margin: 14px 0 0;
    color: var(--text-muted, #555);
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.65;
}

/* --- Controls (over media panel) --- */
.hero-slideshow__controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 57%;
    height: 100%;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(12px, 1.5vw, 24px);
    pointer-events: none;
}

.hero-slideshow__btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition:
        transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
        background 240ms ease,
        box-shadow 240ms ease;
}

.hero-slideshow__btn:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.hero-slideshow__btn svg {
    width: 20px;
    height: 20px;
}

/* --- Indicators --- */
.hero-slideshow__indicators {
    position: absolute;
    left: 50%;
    bottom: clamp(14px, 2vw, 22px);
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-slideshow__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        width 220ms cubic-bezier(0.16, 1, 0.3, 1),
        background 220ms ease;
}

.hero-slideshow__dot:hover,
.hero-slideshow__dot.is-active {
    background: var(--primary, #2357D8);
    width: 28px;
    transform: translateY(-1px);
}

/* --- Empty state --- */
.hero-slideshow__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 32px;
    text-align: center;
    color: var(--text-muted, #555);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    background: #faf5ee;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide__content-inner,
    .hero-slideshow__btn,
    .hero-slideshow__dot {
        transition: none !important;
        animation: none !important;
    }
}



/* SECTION 3: MISSION */
.mission {
   background: var(--bg-paper);
}

.mission__content {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
}

.mission__title {
   font-family: var(--font-head);
   font-size: clamp(2rem, 4vw, 2.5rem);
   color: var(--text-main);
   margin-bottom: 24px;
}

.mission__text {
   font-size: clamp(1.1rem, 2vw, 1.25rem);
   line-height: 1.8;
   color: var(--text-muted);
}

[data-reveal] {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity 780ms var(--ease-premium), transform 780ms var(--ease-premium);
}

[data-reveal].is-visible {
   opacity: 1;
   transform: translateY(0);
}

/* GUIDED BY PURPOSE — Section Header */
.guided-section {
   padding-bottom: 0;
}

.guided-section__header {
   text-align: center;
   padding: 80px 0 48px;
}

.guided-section__title {
   font-family: var(--font-head);
   font-size: clamp(2rem, 4vw, 2.5rem);
   color: var(--text-main);
   margin-bottom: 16px;
}

.guided-section__subtitle {
   font-size: clamp(1rem, 2vw, 1.15rem);
   color: var(--text-muted);
   max-width: 600px;
   margin: 0 auto;
}

@media (max-width: 768px) {
   .guided-section__header {
      padding: 56px 16px 32px;
   }
}

/* RESPONSIVE: TABLET (max-width: 1024px) */
@media (max-width: 1024px) {

   /* Hero */
   .hero {
      padding-top: 140px;
      padding-bottom: 60px;
   }

   .hero__subtitle {
      max-width: 500px;
      margin-bottom: 32px;
   }

   /* Map Container */
   .map-container {
      height: 500px;
   }

   .map-container__play-btn {
      padding: 14px 28px;
   }

}


/* RESPONSIVE: MOBILE (max-width: 768px) */
@media (max-width: 768px) {

   /* Hero */
   .hero {
      min-height: auto;
      padding-top: 120px;
      padding-bottom: 48px;
   }

   .hero__title {
      margin-bottom: 20px;
   }

   .hero__subtitle {
      max-width: 100%;
      margin-bottom: 28px;
      padding: 0 8px;
   }

   .hero__cta {
      padding: 12px 28px;
      font-size: 0.95rem;
   }

   /* Hero Slideshow */
   .hero-slideshow {
      padding: 8px 0 56px;
   }

   .hero-slideshow__container {
      width: min(calc(100vw - 16px), 720px);
      min-height: auto;
      border-radius: 24px;
   }

   .hero-slide {
      flex-direction: column;
   }

   .hero-slide__media {
      flex: 0 0 auto;
      width: 100%;
      height: 50vh;
      min-height: auto;
   }

   .hero-slide__content {
      flex: 0 0 auto;
      width: 100%;
      padding: 24px 20px 28px;
      border-left: none;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
   }

   .hero-slide__content-inner {
      max-width: none;
   }

   .hero-slide__title {
      font-size: clamp(1.5rem, 5.5vw, 2.2rem);
   }

   .hero-slide__subtitle {
      font-size: 0.96rem;
   }

   .hero-slideshow__controls {
      width: 100%;
      height: 50vh;
   }

   .hero-slideshow__btn {
      width: 38px;
      height: 38px;
   }

   .hero-slideshow__indicators {
      bottom: 10px;
   }

   /* Mission */
   .mission__content {
      padding: 0 8px;
   }

   .mission__title {
      margin-bottom: 20px;
   }

   .mission__text {
      line-height: 1.7;
   }

}


/* RESPONSIVE: SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {

   /* Hero */
   .hero {
      padding-top: 100px;
      padding-bottom: 40px;
   }

   .hero__title {
      margin-bottom: 16px;
   }

   .hero__subtitle {
      margin-bottom: 24px;
      line-height: 1.6;
   }

   .hero__cta {
      padding: 10px 24px;
      font-size: 0.9rem;
   }

   /* Hero Slideshow */
   .hero-slideshow__container {
      width: calc(100vw - 12px);
      border-radius: 20px;
   }

   .hero-slide__media {
      height: 44vh;
   }

   .hero-slide__content {
      padding: 20px 16px 24px;
   }

   .hero-slide__title {
      font-size: clamp(1.35rem, 6vw, 1.9rem);
   }

   .hero-slide__subtitle {
      font-size: 0.9rem;
   }

   .hero-slideshow__controls {
      height: 44vh;
   }

   .hero-slideshow__btn {
      width: 34px;
      height: 34px;
   }

}

/* SIMPLER PHOTO-LED INITIATIVES OVERRIDE */
.initiatives-story {
   overflow: hidden;
   background: #fbfaf7;
}

.initiatives-story::before {
   content: none;
}

.initiatives-story__header {
   max-width: 820px;
   margin: 0 auto 42px;
   text-align: center;
}

.initiatives-story__eyebrow,
.initiative-chip {
   display: inline-flex;
   align-items: center;
   width: fit-content;
   max-width: 100%;
   border-radius: 9999px;
   font-size: 0.72rem;
   font-weight: 750;
   letter-spacing: 0.08em;
   line-height: 1.2;
   text-transform: uppercase;
}

.initiatives-story__eyebrow {
   margin-bottom: 14px;
   padding: 7px 12px;
   color: var(--primary);
   background: rgba(35, 87, 216, 0.09);
}

.initiatives-story__title {
   max-width: none;
   margin: 0 auto 16px;
   color: var(--text-main);
   font-family: var(--font-head);
   font-size: clamp(2rem, 4vw, 3.2rem);
   line-height: 1.08;
   letter-spacing: 0;
}

.initiatives-story__lead {
   max-width: 680px;
   margin: 0 auto;
   color: var(--text-muted);
   font-size: clamp(1rem, 1.5vw, 1.12rem);
   line-height: 1.7;
}

.initiative-documentary-stack {
   display: grid;
   gap: 24px;
}

.initiative-documentary {
   display: grid;
   grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
   gap: 0;
   overflow: hidden;
   border: 1px solid rgba(43, 43, 43, 0.08);
   border-radius: var(--radius-apple);
   background: #fff;
   box-shadow: 0 14px 38px rgba(38, 48, 43, 0.07);
}

.initiative-documentary--reverse {
   grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.initiative-documentary--reverse .initiative-documentary__photo {
   order: 2;
}

.initiative-documentary--reverse .initiative-documentary__content {
   order: 1;
}

.initiative-documentary__photo {
   min-height: 360px;
   overflow: hidden;
   background: var(--initiative-soft, #edf6ef);
}

.initiative-documentary__photo img,
.initiative-showcase__main img,
.initiative-showcase__support img,
.bagan-feature__photos img,
.initiative-activity-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 520ms var(--ease-premium), filter 260ms ease;
}

.initiative-documentary:hover .initiative-documentary__photo img,
.initiative-showcase:hover .initiative-showcase__main img,
.initiative-showcase:hover .initiative-showcase__support img,
.bagan-feature__photos img:hover,
.initiative-activity-card:hover img {
   transform: scale(1.03);
   filter: brightness(1.02);
}

.initiative-documentary__content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: clamp(26px, 4vw, 46px);
   border-top: 5px solid var(--initiative-accent, var(--primary));
}

.initiative-chip {
   margin-bottom: 14px;
   padding: 6px 11px;
   color: var(--initiative-accent, var(--primary));
   background: var(--initiative-soft, rgba(35, 87, 216, 0.1));
}

.initiative-documentary__content h3,
.initiative-showcase__text h3,
.bagan-feature__content h3,
.initiative-section-heading h3 {
   color: var(--text-main);
   font-family: var(--font-head);
   letter-spacing: 0;
}

.initiative-documentary__content h3 {
   margin-bottom: 12px;
   font-size: clamp(1.9rem, 3vw, 2.6rem);
   line-height: 1.1;
}

.initiative-documentary__content p,
.initiative-showcase__text p,
.bagan-feature__content p,
.initiative-activity-card p {
   color: var(--text-muted);
   font-size: 0.98rem;
   line-height: 1.65;
}

.initiative-documentary__content p {
   margin-bottom: 18px;
}

.initiative-detail-list,
.initiative-showcase__text .initiative-detail-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: auto;
}

.initiative-detail-list li,
.initiative-showcase__text .initiative-detail-list li {
   padding: 7px 10px;
   border-radius: 9999px;
   color: color-mix(in srgb, var(--initiative-accent, var(--primary)) 82%, #202020);
   background: var(--initiative-soft, rgba(35, 87, 216, 0.08));
   font-size: 0.78rem;
   font-weight: 700;
   line-height: 1.2;
}

.bagan-feature {
   display: grid;
   grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
   gap: 20px;
   margin: 28px 0 54px;
   padding: clamp(18px, 3vw, 28px);
   border: 1px solid rgba(35, 87, 216, 0.14);
   border-radius: var(--radius-apple);
   background: #f3f7f0;
}

.bagan-feature__content {
   align-self: center;
   padding: clamp(10px, 2vw, 18px);
}

.bagan-feature__content h3 {
   margin-bottom: 10px;
   font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.bagan-feature__content p {
   margin-bottom: 18px;
}

.bagan-feature__photos {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   grid-template-rows: repeat(2, minmax(130px, 1fr));
   gap: 12px;
}

.bagan-feature__photos img {
   min-height: 0;
   border-radius: 18px;
   box-shadow: 0 10px 24px rgba(24, 54, 41, 0.08);
}

.bagan-feature__photos img:first-child {
   grid-row: span 2;
}

.initiative-text-link {
   display: inline-flex;
   align-items: center;
   min-height: 42px;
   padding: 10px 16px;
   border-radius: 9999px;
   color: #fff;
   background: var(--primary);
   font-size: 0.9rem;
   font-weight: 750;
}

.initiative-text-link:hover {
   transform: translateY(-1px);
   background: #1d46ae;
}

.initiative-section-heading {
   max-width: 760px;
   margin: 0 0 24px;
}

.initiative-section-heading h3 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
   line-height: 1.12;
}

.initiative-section-heading--compact {
   margin-bottom: 22px;
}

/* ── INITIATIVE GALLERY SHOWCASE (ig-showcase) ── */
.ig-showcase-stack {
   display: grid;
   gap: 32px;
}

.ig-showcase {
   display: grid;
   grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
   gap: 0;
   overflow: hidden;
   border: 1px solid rgba(43, 43, 43, 0.08);
   border-radius: var(--radius-apple);
   background: #fff;
   box-shadow: 0 16px 44px rgba(38, 48, 43, 0.07);
}

.ig-showcase--reverse {
   grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
}

.ig-showcase--reverse .ig-showcase__text {
   order: 2;
}

.ig-showcase--reverse .ig-showcase__gallery {
   order: 1;
}

.ig-showcase__text {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   gap: 12px;
   padding: clamp(24px, 3.5vw, 44px);
   border-top: 5px solid var(--ig-accent, var(--primary));
   background: color-mix(in srgb, var(--ig-soft, #f3f7f0) 50%, #fff);
}

.ig-showcase__head {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 8px;
}

.ig-showcase__logo {
   width: clamp(110px, 12vw, 160px);
   height: clamp(110px, 12vw, 160px);
   object-fit: contain;
   filter: drop-shadow(0 4px 12px rgba(19, 41, 75, 0.08));
   transition: transform 300ms var(--ease-premium);
}

.ig-showcase__logo:hover {
   transform: scale(1.06);
}

.ig-showcase__text h3 {
   color: var(--text-main);
   font-family: var(--font-head);
   font-size: clamp(1.7rem, 3vw, 2.4rem);
   line-height: 1.1;
   letter-spacing: 0;
   margin-bottom: 4px;
}

.ig-showcase__text p {
   color: var(--text-muted);
   font-size: 0.98rem;
   line-height: 1.65;
}

/* Gallery Panel */
.ig-showcase__gallery {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 18px;
   background: var(--ig-soft, #f3f7f0);
}

.ig-showcase__main-wrap {
   position: relative;
   aspect-ratio: 16 / 10;
   border-radius: 18px;
   overflow: hidden;
   background: #e8e2d8;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ig-showcase__main-img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   background: #e8e2d8;
   transition: opacity 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-showcase__main-img.is-fading {
   opacity: 0;
}

/* Thumbnails */
.ig-showcase__thumbs {
   display: flex;
   gap: 10px;
}

.ig-showcase__thumb {
   flex: 1;
   aspect-ratio: 1.35;
   border-radius: 14px;
   overflow: hidden;
   border: 3px solid transparent;
   outline: none;
   cursor: pointer;
   background: none;
   padding: 0;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
   transition:
      border-color 280ms ease,
      transform 220ms var(--ease-premium),
      box-shadow 220ms ease;
}

.ig-showcase__thumb.is-active {
   border-color: var(--ig-accent, var(--primary));
   box-shadow: 0 0 0 2px color-mix(in srgb, var(--ig-accent, var(--primary)) 30%, transparent),
               0 4px 14px rgba(0, 0, 0, 0.1);
}

.ig-showcase__thumb:hover:not(.is-active) {
   transform: scale(1.03);
   box-shadow: 0 5px 14px rgba(0, 0, 0, 0.09);
}

.ig-showcase__thumb:focus-visible {
   outline: 2px solid var(--ig-accent, var(--primary));
   outline-offset: 2px;
}

.ig-showcase__thumb img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 520ms var(--ease-premium);
}

.ig-showcase__thumb:hover img {
   transform: scale(1.03);
}

.initiative-inline-link {
   color: var(--primary);
   font-weight: 600;
   text-decoration: underline;
   text-underline-offset: 3px;
}

.initiative-inline-link:hover {
   color: #1d46ae;
}

/* ── Responsive: ig-showcase ── */
@media (max-width: 1024px) {
   .ig-showcase,
   .ig-showcase--reverse {
      grid-template-columns: 1fr;
   }

   .ig-showcase--reverse .ig-showcase__text,
   .ig-showcase--reverse .ig-showcase__gallery {
      order: initial;
   }

   .ig-showcase__gallery {
      padding: 16px;
   }
}

@media (max-width: 768px) {
   .ig-showcase-stack {
      gap: 24px;
   }

   .ig-showcase__text {
      padding: 22px;
   }

   .ig-showcase__gallery {
      padding: 14px;
      gap: 10px;
   }

   .ig-showcase__main-wrap {
      aspect-ratio: 16 / 11;
      border-radius: 14px;
   }

   .ig-showcase__thumbs {
      gap: 8px;
   }

   .ig-showcase__thumb {
      border-radius: 10px;
      border-width: 2px;
   }

   .ig-showcase__logo {
      height: 64px;
   }
}

@media (max-width: 480px) {
   .ig-showcase__text {
      padding: 18px;
   }

   .ig-showcase__main-wrap {
      border-radius: 12px;
   }

   .ig-showcase__thumbs {
      gap: 6px;
   }

   .ig-showcase__thumb {
      border-radius: 8px;
      aspect-ratio: 1.2;
   }

   .ig-showcase__logo {
      height: 52px;
   }
}

/* ── Activity Band & Cards ── */
.initiative-activity-band {
   margin-top: 58px;
   padding: 54px 0;
   background: #f0eee7;
}

.initiative-activity-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 16px;
}

.initiative-activity-card {
   overflow: hidden;
   border: 1px solid rgba(43, 43, 43, 0.08);
   border-radius: 20px;
   background: #fff;
   box-shadow: 0 10px 26px rgba(38, 48, 43, 0.06);
   transition: transform 260ms var(--ease-premium), box-shadow 260ms ease;
}

.initiative-activity-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 18px 38px rgba(38, 48, 43, 0.1);
}

.initiative-activity-card img {
   width: 100%;
   height: auto;
   aspect-ratio: 1.35 / 0.9;
   object-fit: cover;
   background: #e7e4dc;
   transition: transform 420ms var(--ease-premium), filter 260ms ease;
}

.initiative-activity-card div {
   padding: 16px;
   border-top: 4px solid var(--initiative-accent, var(--primary));
}

.initiative-activity-card h4 {
   margin-bottom: 6px;
   color: var(--text-main);
   font-family: var(--font-head);
   font-size: 1.12rem;
   line-height: 1.2;
}

.initiative-activity-card p {
   color: var(--text-muted);
   font-size: 0.86rem;
   line-height: 1.55;
}

.initiatives-story__action {
   display: flex;
   justify-content: center;
   margin-top: 30px;
}

.initiatives-story__button {
   min-height: 46px;
   padding: 13px 20px;
   box-shadow: 0 10px 26px rgba(35, 87, 216, 0.16);
}

/* ── Responsive: Initiatives Story Section ── */
@media (max-width: 1024px) {
   .initiative-activity-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
}

@media (max-width: 768px) {
   .initiatives-story {
      padding-top: 56px;
      padding-bottom: 0;
   }

   .initiatives-story__header {
      margin-bottom: 30px;
      text-align: left;
   }

   .initiatives-story__lead {
      margin-left: 0;
   }

   .initiative-activity-grid {
      grid-template-columns: 1fr;
      gap: 14px;
   }

   .initiative-activity-band {
      margin-top: 42px;
      padding: 42px 0;
   }

   .initiatives-story__button {
      width: 100%;
      justify-content: center;
   }
}

@media (max-width: 480px) {
   .initiative-detail-list {
      gap: 6px;
   }

   .initiative-detail-list li {
      font-size: 0.74rem;
   }
}


/* SECTION: COMMUNITY QUEUE */
.community-queue {
    background: var(--bg-paper);
    padding: 80px 0;
}

.community-queue__header {
    text-align: center;
    margin-bottom: 48px;
}

.community-queue__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: 16px;
}

.community-queue__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.community-queue__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Member Card */
.community-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: #fff;
    border-radius: var(--radius-apple);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* This class allows smooth fading */
    opacity: 1;
    transform: scale(1);
}

.community-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.community-member.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.community-member.fade-in {
    animation: fadeInScale 0.6s ease forwards;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.community-member__photo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-paper);
    border: 3px solid #f4f0ea;
}

.community-member__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-member__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 50%;
    user-select: none;
}

.community-member__name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.community-member__qual {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive grid for smaller screens */
@media (max-width: 1024px) {
    .community-queue__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .community-queue__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .community-member {
        padding: 16px 12px;
    }
    .community-member__photo-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }
    .community-member__name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .community-queue__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* --------------------------------------------------------------------------
   Premium Homepage Polish
   -------------------------------------------------------------------------- */
.hero {
   min-height: clamp(480px, 60vh, 680px);
   padding-top: clamp(64px, 8vw, 110px);
   padding-bottom: clamp(56px, 8vw, 96px);
   background:
      radial-gradient(circle at 50% 18%, rgba(35, 87, 216, 0.06), transparent 40%),
      linear-gradient(180deg, #ffffff 0%, #fefefe 20%, var(--bg-paper) 100%);
}

.hero__container {
   max-width: 980px;
}

.hero__eyebrow {
   display: inline-flex;
   margin-bottom: 18px;
   padding: 8px 13px;
   border: 1px solid rgba(35, 87, 216, 0.12);
   border-radius: 999px;
   background: rgba(35, 87, 216, 0.07);
   color: var(--primary);
   font-size: 0.72rem;
   font-weight: 800;
   letter-spacing: 0.12em;
   text-transform: uppercase;
}

.hero__title {
   color: var(--dark);
   font-size: clamp(2.5rem, 5.5vw, 4.5rem);
   line-height: 1.05;
   letter-spacing: 0;
   text-wrap: balance;
}

.hero__subtitle {
   max-width: 680px;
   color: rgba(19, 41, 75, 0.68);
}

.hero__actions {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 12px;
}

.hero__cta,
.initiatives-story__button,
.achievement-slide__button,
.contact-panel__button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   padding: 0 20px;
   border: 1px solid rgba(35, 87, 216, 0.14);
   border-radius: 999px;
   background: #fff;
   color: var(--primary);
   font-size: 0.95rem;
   font-weight: 700;
   letter-spacing: 0.01em;
   box-shadow: 0 10px 24px rgba(19, 41, 75, 0.06);
   transition:
      transform 260ms var(--ease-premium),
      box-shadow 260ms ease,
      background 260ms ease,
      color 260ms ease,
      border-color 260ms ease;
}

.hero__cta:hover,
.initiatives-story__button:hover,
.achievement-slide__button:hover,
.contact-panel__button:hover {
   transform: translateY(-2px);
   box-shadow: 0 14px 32px rgba(35, 87, 216, 0.14);
}

.hero__cta--solid,
.contact-panel__button--accent {
   border-color: var(--primary);
   background: var(--primary);
   color: #fff;
   box-shadow: 0 10px 24px rgba(35, 87, 216, 0.2);
}

.hero__cta--solid:hover,
.contact-panel__button--accent:hover {
   background: var(--primary-dark);
   box-shadow: 0 14px 32px rgba(35, 87, 216, 0.28);
}

.hero-slideshow {
   padding: 24px 0 92px;
}

.hero-slideshow__container,
.ig-showcase,
.initiative-activity-card,
.community-member {
   border-color: var(--border-soft);
   box-shadow: 0 18px 48px rgba(19, 41, 75, 0.08);
}

.hero-slideshow__container {
   background: #fff;
}

.hero-slide__content {
   background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 242, 0.94));
}

.hero-slide__title {
   color: var(--dark);
}

.hero-slideshow__dot:hover,
.hero-slideshow__dot.is-active {
   background: var(--primary);
}

[data-reveal] {
   transition-delay: var(--reveal-delay, 0ms);
}

.section-kicker {
   max-width: 790px;
   margin: 0 auto 42px;
   text-align: center;
}

.section-kicker--split {
   display: grid;
   grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
   align-items: end;
   gap: 32px;
   max-width: none;
   text-align: left;
}

.section-kicker__eyebrow {
   display: inline-flex;
   align-items: center;
   width: fit-content;
   margin-bottom: 14px;
   padding: 7px 12px;
   border-radius: 999px;
   color: var(--primary);
   background: rgba(35, 87, 216, 0.09);
   font-size: 0.72rem;
   font-weight: 850;
   letter-spacing: 0.1em;
   line-height: 1.2;
   text-transform: uppercase;
}

.section-kicker__title {
   margin: 0;
   color: var(--dark);
   font-family: var(--font-head);
   font-size: clamp(2.2rem, 4.6vw, 4.3rem);
   line-height: 1.02;
   letter-spacing: 0;
   text-wrap: balance;
}

.section-kicker__lead {
   max-width: 660px;
   margin: 16px auto 0;
   color: var(--text-muted);
   font-size: clamp(1rem, 1.5vw, 1.13rem);
   line-height: 1.75;
}

.section-kicker--split .section-kicker__lead {
   margin: 0;
}

/* Achievements */
.achievements {
   overflow: hidden;
   background:
      linear-gradient(180deg, #fff 0%, var(--bg-paper) 100%);
}

.achievement-slider {
   position: relative;
   display: grid;
   width: min(calc(100vw - 32px), 1320px);
   min-height: clamp(450px, 70vh, 580px);
   margin: 0 auto;
   overflow: hidden;
   border: 1px solid rgba(35, 87, 216, 0.1);
   border-radius: 32px;
   background: #111;
   box-shadow: 0 28px 80px rgba(19, 41, 75, 0.16);
   isolation: isolate;
}

.achievement-slide {
   position: relative;
   grid-area: 1 / 1;
   min-height: clamp(450px, 70vh, 580px);
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transition: opacity 760ms var(--ease-premium), visibility 760ms linear;
}

.achievement-slide.is-active {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
}

.achievement-slide__media {
   position: absolute;
   inset: 0;
   overflow: hidden;
}

.achievement-slide__media::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
      linear-gradient(90deg, rgba(9, 18, 34, 0.52) 0%, rgba(9, 18, 34, 0.12) 35%, rgba(9, 18, 34, 0) 55%),
      linear-gradient(180deg, rgba(9, 18, 34, 0.18) 0%, rgba(9, 18, 34, 0) 25%, rgba(9, 18, 34, 0) 65%, rgba(9, 18, 34, 0.22) 100%);
}

.achievement-slide__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.04);
   transition: transform 6000ms ease;
}

.achievement-slide.is-active .achievement-slide__media img {
   transform: scale(1);
}

.achievement-slide__caption {
   position: absolute;
   inset: 0;
   z-index: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: clamp(28px, 5vw, 58px) clamp(24px, 5vw, 72px);
   color: #fff;
   pointer-events: none;
}

.achievement-slide__caption > * {
   pointer-events: auto;
}

.achievement-slide__top {
   display: flex;
   flex-direction: column;
   max-width: min(460px, 40%);
}

.achievement-slide__bottom {
   display: flex;
   flex-direction: column;
   max-width: min(460px, 45%);
}

.achievement-slide__count {
   margin-bottom: 10px;
   color: rgba(255, 255, 255, 0.65);
   font-size: 0.72rem;
   font-weight: 800;
   letter-spacing: 0.2em;
   text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.achievement-slide__accent {
   width: 40px;
   height: 3px;
   margin-top: 16px;
   background: rgba(255, 255, 255, 0.5);
   border-radius: 2px;
}

.achievement-slide__caption h3 {
   margin: 0;
   color: #fff;
   font-size: clamp(2rem, 4vw, 3.6rem);
   line-height: 1.02;
   letter-spacing: -0.01em;
   text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.35),
      0 1px 3px rgba(0, 0, 0, 0.2);
}

.achievement-slide__caption p {
   max-width: 42ch;
   margin: 0;
   color: rgba(255, 255, 255, 0.85);
   font-size: clamp(0.88rem, 1.2vw, 1rem);
   line-height: 1.6;
   text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.achievement-slide__button {
   align-self: flex-start;
   margin-top: 16px;
   padding: 0 18px;
   background: #fff;
}

.achievement-slider__controls {
   position: absolute;
   right: clamp(18px, 3vw, 34px);
   bottom: clamp(18px, 3vw, 34px);
   z-index: 4;
   display: flex;
   gap: 10px;
}

.achievement-slider__arrow {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 999px;
   color: #fff;
   background: rgba(255, 255, 255, 0.14);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   transition: transform 220ms var(--ease-premium), background 220ms ease;
}

.achievement-slider__arrow:hover {
   transform: translateY(-2px);
   background: rgba(255, 255, 255, 0.24);
}

.achievement-slider__pagination {
   position: absolute;
   left: 50%;
   bottom: clamp(22px, 3vw, 38px);
   z-index: 4;
   display: flex;
   gap: 8px;
   transform: translateX(-50%);
}

.achievement-slider__dot {
   width: 10px;
   height: 10px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.38);
   transition: width 220ms var(--ease-premium), background 220ms ease;
}

.achievement-slider__dot.is-active,
.achievement-slider__dot:hover {
   width: 30px;
   background: #fff;
}

/* Mission */
.mission {
   background: var(--bg-paper);
}

.mission__content {
   max-width: 920px;
   padding: clamp(28px, 5vw, 54px);
   border: 1px solid rgba(35, 87, 216, 0.09);
   border-radius: 28px;
   background: rgba(255, 255, 255, 0.7);
   box-shadow: 0 18px 50px rgba(19, 41, 75, 0.06);
}

.mission__title {
   color: var(--dark);
   font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

/* Initiatives */
.ig-showcase {
   border-radius: 26px;
   transition: transform 300ms var(--ease-premium), box-shadow 300ms ease;
}

.ig-showcase:hover {
   transform: translateY(-3px);
   box-shadow: 0 24px 58px rgba(19, 41, 75, 0.11);
}

.ig-showcase__text {
   position: relative;
   padding-top: clamp(28px, 3vw, 40px);
   background:
      linear-gradient(180deg, color-mix(in srgb, var(--ig-soft, #eef3ff) 54%, #fff), #fff);
}

.ig-showcase__text .initiative-chip {
   position: absolute;
   top: 24px;
   right: 24px;
   margin: 0;
}

.ig-showcase__logo {
   display: block;
   height: auto;
   max-height: 96px;
   width: auto;
   max-width: 220px;
   object-fit: contain;
   padding: 6px;
   border-radius: 12px;
   background: rgba(255, 255, 255, 0.72);
   box-shadow: 0 8px 18px rgba(19, 41, 75, 0.08);
   margin-bottom: 6px;
}

.ig-showcase__text h3 {
   color: var(--dark);
}

.ig-showcase__main-wrap,
.initiative-activity-card,
.community-member {
   border-radius: 18px;
}

.initiatives-story__button {
   padding: 0 22px;
}

/* Impact */
.impact {
   background:
      linear-gradient(180deg, var(--bg-paper), #fff 48%, var(--bg-paper));
}

.impact-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 16px;
}

.impact-card {
   min-height: 260px;
   padding: 24px;
   border: 1px solid rgba(35, 87, 216, 0.1);
   border-radius: 22px;
   background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
   box-shadow: 0 16px 42px rgba(19, 41, 75, 0.08);
   transition: transform 260ms var(--ease-premium), box-shadow 260ms ease, border-color 260ms ease;
}

.impact-card:hover {
   transform: translateY(-3px);
   border-color: rgba(35, 87, 216, 0.2);
   box-shadow: 0 22px 52px rgba(19, 41, 75, 0.11);
}

.impact-card__icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 52px;
   height: 52px;
   margin-bottom: 28px;
   border-radius: 16px;
   color: var(--primary);
   background: rgba(35, 87, 216, 0.09);
}

.impact-card__number {
   margin: 0 0 8px;
   color: var(--dark);
   font-family: var(--font-head);
   font-size: clamp(2.25rem, 4vw, 3.4rem);
   font-weight: 700;
   line-height: 0.95;
}

.impact-card__title {
   margin: 0 0 10px;
   color: var(--dark);
   font-family: var(--font-body);
   font-size: 1rem;
   font-weight: 850;
}

.impact-card__description {
   color: var(--text-muted);
   font-size: 0.9rem;
   line-height: 1.6;
}

/* Home Gallery — Screensaver Crossfade */
.home-gallery {
   overflow: hidden;
   background: #fff;
}

.home-gallery__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-auto-rows: 200px;
   gap: 14px;
}

.home-gallery__item {
   position: relative;
   overflow: hidden;
   display: block;
   width: 100%;
   padding: 0;
   margin: 0;
   border: none;
   border-radius: 22px;
   background: #dfe6f7;
   box-shadow: 0 16px 38px rgba(19, 41, 75, 0.1);
   cursor: zoom-in;
   transition: opacity 600ms ease;
}

.home-gallery__item.is-fading {
   opacity: 0;
}

.home-gallery__item--1 { grid-column: span 2; grid-row: span 2; }
.home-gallery__item--2 { grid-column: span 1; grid-row: span 1; }
.home-gallery__item--3 { grid-column: span 1; grid-row: span 1; }
.home-gallery__item--4 { grid-column: span 1; grid-row: span 1; }
.home-gallery__item--5 { grid-column: span 2; grid-row: span 1; }

.home-gallery__item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 520ms ease, filter 260ms ease;
}

.home-gallery__item:hover img {
   transform: scale(1.03);
}

.home-gallery__item::after {
   content: "";
   position: absolute;
   inset: auto 0 0;
   height: 40%;
   background: linear-gradient(180deg, transparent, rgba(9, 18, 34, 0.42));
   pointer-events: none;
}

.home-gallery__label {
   position: absolute;
   left: 14px;
   bottom: 14px;
   z-index: 3;
   padding: 6px 12px;
   border-radius: 999px;
   color: #fff;
   background: rgba(255, 255, 255, 0.14);
   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);
   font-size: 0.68rem;
   font-weight: 800;
   letter-spacing: 0.05em;
   text-transform: uppercase;
}

.home-lightbox {
   width: min(1180px, calc(100vw - 28px));
   max-width: none;
   max-height: calc(100vh - 28px);
   padding: 0;
   border: 0;
   border-radius: 24px;
   background: transparent;
   overflow: visible;
}

.home-lightbox::backdrop {
   background: rgba(7, 12, 24, 0.82);
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
}

.home-lightbox__image {
   width: 100%;
   max-height: calc(100vh - 28px);
   object-fit: contain;
   border-radius: 24px;
   box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.home-lightbox__close {
   position: absolute;
   top: -18px;
   right: -18px;
   z-index: 1;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   border-radius: 999px;
   color: var(--dark);
   background: #fff;
   font-size: 1.7rem;
   line-height: 1;
   box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* Contact — Inspirational CTA */
.contact-section {
   background:
      radial-gradient(ellipse at 30% 20%, rgba(35, 87, 216, 0.08), transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(244, 180, 0, 0.06), transparent 50%),
      linear-gradient(180deg, var(--bg-paper), #f0efe9);
   padding: clamp(72px, 10vw, 140px) 0;
}

.contact-panel {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 36px;
   padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
   border: 1px solid rgba(35, 87, 216, 0.08);
   border-radius: 32px;
   background:
      radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)),
      linear-gradient(180deg, #fff, #faf9f6);
   box-shadow:
      0 24px 64px rgba(19, 41, 75, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-panel__copy {
   display: flex;
   flex-direction: column;
   align-items: center;
   max-width: 640px;
}

.contact-panel__copy h2 {
   margin: 0 0 18px;
   color: var(--dark);
   font-size: clamp(2.2rem, 5vw, 4.2rem);
   line-height: 1.02;
   letter-spacing: -0.01em;
   text-wrap: balance;
}

.contact-panel__copy p {
   max-width: 50ch;
   color: var(--text-muted);
   font-size: clamp(1rem, 1.4vw, 1.1rem);
   line-height: 1.75;
}

.contact-panel__actions {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 12px;
}

.contact-panel__button {
   padding: 0 22px;
   min-width: 160px;
}

.contact-panel__button--ghost {
   color: var(--text-muted);
   border-color: rgba(19, 41, 75, 0.1);
   background: transparent;
   box-shadow: none;
}

.contact-panel__button--ghost:hover {
   color: var(--primary);
   border-color: rgba(35, 87, 216, 0.18);
   background: rgba(35, 87, 216, 0.04);
}

@media (max-width: 1024px) {
   .section-kicker--split {
      grid-template-columns: 1fr;
   }

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

   .home-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
   }

   .home-gallery__item--1 { grid-column: span 2; grid-row: span 2; }
   .home-gallery__item--2 { grid-column: span 1; grid-row: span 1; }
   .home-gallery__item--3 { grid-column: span 1; grid-row: span 1; }
   .home-gallery__item--4 { grid-column: span 2; grid-row: span 1; }
   .home-gallery__item--5 { grid-column: span 2; grid-row: span 1; }

   .contact-panel__actions {
      justify-content: flex-start;
   }
}

@media (max-width: 768px) {
   .hero {
      min-height: auto;
      padding-top: 58px;
      padding-bottom: 58px;
   }

   .hero__title br {
      display: none;
   }

   .section-kicker,
   .section-kicker--split {
      margin-bottom: 30px;
      text-align: left;
   }

   .section-kicker__lead {
      margin-left: 0;
   }

   .achievement-slide__caption {
      padding: 24px 20px;
   }

   .achievement-slide__top,
   .achievement-slide__bottom {
      max-width: calc(100% - 24px);
   }

   .achievement-slider__controls {
      right: 20px;
      bottom: 20px;
   }

   .achievement-slider__pagination {
      left: 20px;
      bottom: 37px;
      transform: none;
   }

   .mission__content {
      padding: 24px;
      text-align: left;
   }

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

   .home-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
   }

   .home-gallery__item {
      aspect-ratio: auto;
      border-radius: 18px;
   }

   .ig-showcase__text .initiative-chip {
      position: absolute;
      top: 16px;
      right: 16px;
      margin: 0;
   }

   .ig-showcase__text {
      padding-top: 22px;
   }

   .ig-showcase__logo {
      max-height: 72px;
      max-width: 160px;
   }

   .contact-panel__actions {
      flex-direction: column;
      width: 100%;
   }

   .contact-panel__button {
      width: 100%;
   }
}

@media (max-width: 480px) {
   .achievement-slider {
      width: calc(100vw - 20px);
      border-radius: 22px;
   }

   .achievement-slide__caption h3 {
      font-size: 2rem;
   }

   .achievement-slide__caption p {
      font-size: 0.92rem;
   }

   .home-lightbox__close {
      top: 10px;
      right: 10px;
   }
}

@media (prefers-reduced-motion: reduce) {
   .achievement-slide,
   .achievement-slide__media img,
   .achievement-slider__arrow,
   .achievement-slider__dot,
   .home-gallery__item img,
   .impact-card,
   .ig-showcase {
      transition: none !important;
      animation: none !important;
   }
}
