/* =================================================================
   VISET Namibia — Custom Site Stylesheet
   Brand palette preserved · fresh typography · clean white design
   Shared header & footer · custom hero slider · fully responsive
   ================================================================= */

:root {
    --navy: #00305b;
    --navy-dark: #002245;
    --teal: #3B8E82;
    --teal-dark: #2f7468;
    --yellow: #F4C400;
    --yellow-dark: #e0b300;
    --ink: #0d1b2a;
    --muted: #5b6675;
    --line: #e8ecf1;
    --soft: #f5f7fa;
    --white: #ffffff;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 18px rgba(13, 27, 42, .06);
    --shadow: 0 18px 50px rgba(13, 27, 42, .10);
    --shadow-lg: 0 30px 70px rgba(0, 48, 91, .18);
    --ease: cubic-bezier(.22, 1, .36, 1);

    --font-display: "Sora", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 .6em;
    letter-spacing: -.02em;
}

p { margin: 0 0 1rem; color: var(--muted); }

a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--teal); }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* ---------- Helpers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--yellow);
    display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.section-head p { font-size: 1.05rem; }
.text-accent { color: var(--yellow); }
.text-teal { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: var(--navy);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    padding: 15px 30px;
    border-radius: 999px;
    border: 2px solid transparent;
    background: var(--btn-bg);
    color: var(--btn-fg);
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-3px); color: var(--btn-fg); box-shadow: var(--shadow); }
.btn i { font-size: .9em; transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-primary { --btn-bg: var(--navy); }
.btn-primary:hover { --btn-bg: var(--navy-dark); }
.btn-accent { --btn-bg: var(--yellow); --btn-fg: var(--navy); }
.btn-accent:hover { --btn-bg: var(--yellow-dark); }
.btn-teal { --btn-bg: var(--teal); }
.btn-teal:hover { --btn-bg: var(--teal-dark); }
.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--line);
}
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }

/* =================================================================
   HEADER (shared, injected by components.js)
   ================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .96); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}
.nav__brand img { height: 52px; width: auto; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 999px;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--teal); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* dropdown */
.nav__item { position: relative; }
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: .28s var(--ease);
}
.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--navy);
}
.nav__dropdown a:hover { background: var(--soft); color: var(--teal); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__socials { display: flex; gap: 8px; }
.nav__socials a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--navy);
    font-size: .9rem;
    transition: .3s var(--ease);
}
.nav__socials a:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

.nav__toggle {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.nav__toggle span {
    width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: .3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO SLIDER (custom, vanilla JS)
   ================================================================= */
.hero { position: relative; background: var(--navy); }
.hero__viewport { position: relative; height: clamp(560px, 82vh, 760px); overflow: hidden; }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.slide.active { opacity: 1; visibility: visible; }

.slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    transition: transform 7s linear;
}
.slide.active .slide__bg { transform: scale(1); }
.slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 34, 69, .92) 0%, rgba(0, 48, 91, .78) 42%, rgba(0, 48, 91, .35) 100%);
}

.slide__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide__content { max-width: 640px; }
.slide__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 196, 0, .15);
    border: 1px solid rgba(244, 196, 0, .4);
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
}
.slide__title {
    color: #fff;
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 1.08;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(28px);
}
.slide__title .hl {
    color: var(--yellow);
    -webkit-text-fill-color: var(--yellow);
    position: relative;
}
.slide__text {
    color: rgba(255, 255, 255, .85);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0;
    transform: translateY(28px);
}
.slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(28px);
}
.slide.active .slide__tag { animation: rise .8s var(--ease) .25s forwards; }
.slide.active .slide__title { animation: rise .8s var(--ease) .4s forwards; }
.slide.active .slide__text { animation: rise .8s var(--ease) .55s forwards; }
.slide.active .slide__actions { animation: rise .8s var(--ease) .7s forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* slider controls */
.hero__arrows {
    position: absolute;
    z-index: 5;
    right: clamp(16px, 4vw, 60px);
    bottom: 48px;
    display: flex;
    gap: 12px;
}
.hero__arrow {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: .3s var(--ease);
}
.hero__arrow:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

.hero__dots {
    position: absolute;
    z-index: 5;
    left: clamp(24px, 4vw, 60px);
    bottom: 56px;
    display: flex;
    gap: 12px;
}
.hero__dot {
    width: 38px; height: 4px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.hero__dot span {
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--yellow);
    border-radius: 999px;
}
.hero__dot.active span { width: 100%; transition: width 6s linear; }

/* =================================================================
   INNER PAGE HERO + BREADCRUMB
   ================================================================= */
.page-hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    padding: 84px 0;
    text-align: center;
}
.page-hero::before, .page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}
.page-hero::before { width: 280px; height: 280px; background: rgba(59, 142, 130, .28); top: -130px; left: -70px; }
.page-hero::after { width: 320px; height: 320px; background: rgba(244, 196, 0, .14); bottom: -170px; right: -80px; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.crumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
}
.crumb a { color: var(--yellow); }
.crumb a:hover { color: #fff; }
.crumb .sep { color: rgba(255, 255, 255, .4); }

/* generic left-aligned content prose */
.prose p { font-size: 1.02rem; margin-bottom: 1.1rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 36px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.2rem; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--ink); }
.prose ul li i { color: var(--teal); margin-top: 6px; font-size: .85rem; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* =================================================================
   INNER-PAGE COMPONENTS (distinct from landing)
   ================================================================= */

/* simple centered/left intro (no strike line) */
.intro { max-width: 760px; }
.intro.center { margin: 0 auto; text-align: center; }
.intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.intro .lead { font-size: 1.12rem; }

/* numbered editorial list (services / programmes) */
.flow { border-top: 1px solid var(--line); }
.flow__item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 34px 8px;
    border-bottom: 1px solid var(--line);
    transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.flow__item:hover { background: var(--soft); padding-left: 22px; }
.flow__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--navy);
    opacity: .18;
    min-width: 52px;
    transition: .35s var(--ease);
}
.flow__item:hover .flow__num { opacity: 1; color: var(--teal); }
.flow__icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--navy);
    color: var(--yellow);
    font-size: 1.25rem;
    transition: .35s var(--ease);
}
.flow__item:hover .flow__icon { background: var(--teal); color: #fff; }
.flow__body { flex: 1; }
.flow__body h3 { font-size: 1.3rem; margin: 0 0 6px; }
.flow__body p { margin: 0; font-size: .98rem; max-width: 760px; }

/* alternating editorial split rows (impact / events) */
.split { display: grid; gap: 72px; }
.split__row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__row:nth-child(even) .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__index {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .22em;
    color: var(--teal);
    display: block;
    margin-bottom: 12px;
}
.split__body h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 12px; }
.split__body p { font-size: 1.02rem; }

/* highlight callout band */
.callout {
    background: var(--soft);
    border-left: 5px solid var(--teal);
    border-radius: var(--radius);
    padding: 40px 44px;
}
.callout p { font-size: 1.15rem; color: var(--ink); margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.5; }
.callout .by { display: block; margin-top: 16px; font-size: .9rem; color: var(--muted); font-weight: 400; }

@media (max-width: 768px) {
    .split__row { grid-template-columns: 1fr; gap: 28px; }
    .split__row:nth-child(even) .split__media { order: 0; }
    .split__media img { height: 260px; }
    .flow__item { gap: 18px; }
    .flow__num { font-size: 1.5rem; min-width: 40px; }
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__cards { display: grid; gap: 18px; }
.contact__card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: .35s var(--ease);
    background: #fff;
}
.contact__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.contact__card .ic {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--soft);
    color: var(--teal);
    font-size: 1.2rem;
}
.contact__card h4 { margin: 0 0 4px; font-size: 1.05rem; }
.contact__card p { margin: 0; font-size: .95rem; }
.contact__form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.field input, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--soft);
    outline: none;
    transition: .25s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(59, 142, 130, .12); }
.field textarea { resize: vertical; min-height: 130px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* responsive video embeds */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* click-to-play facade */
.video-facade {
    cursor: pointer;
    background-size: cover;
    background-position: center;
}
.video-facade::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 48, 91, .35), rgba(0, 48, 91, .55));
    transition: background .35s var(--ease);
}
.video-facade:hover::before, .video-facade:focus-visible::before { background: linear-gradient(rgba(0, 48, 91, .2), rgba(0, 48, 91, .35)); }
.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 78px; height: 78px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
    transition: transform .35s var(--ease), background .35s var(--ease);
}
.video-play i { margin-left: 4px; }
.video-facade:hover .video-play, .video-facade:focus-visible .video-play { transform: scale(1.1); background: #fff; }
.video-facade.is-playing::before, .video-facade.is-playing .video-play { display: none; }

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

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

/* =================================================================
   404
   ================================================================= */
.notfound { text-align: center; padding: 110px 0; }
.notfound .code {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(6rem, 18vw, 12rem);
    line-height: 1;
    color: var(--navy);
    letter-spacing: -.04em;
}
.notfound .code span { color: var(--yellow); }
.notfound h2 { font-size: 1.8rem; margin: 8px 0 14px; }
.notfound p { max-width: 480px; margin: 0 auto 28px; }

/* =================================================================
   DONATION / GET INVOLVED
   ================================================================= */
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.way-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    text-align: center;
    transition: .4s var(--ease);
}
.way-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.way-card .ic {
    width: 70px; height: 70px;
    margin: 0 auto 22px;
    border-radius: 20px;
    display: grid; place-items: center;
    background: var(--navy);
    color: var(--yellow);
    font-size: 1.6rem;
    transition: .4s var(--ease);
}
.way-card:hover .ic { background: var(--teal); color: #fff; }
.way-card h3 { font-size: 1.25rem; }
.way-card p { font-size: .95rem; margin-bottom: 22px; }

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

/* =================================================================
   STATS STRIP
   ================================================================= */
.stats {
    position: relative;
    margin-top: -64px;
    z-index: 20;
}
.stats__grid {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.stat {
    padding: 38px 28px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    line-height: 1;
}
.stat__num small { color: var(--yellow); }
.stat__label { font-size: .92rem; color: var(--muted); margin: 8px 0 0; }

/* 3-up variant (higher specificity so it wins across breakpoints) */
.stats__grid.stats__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
    .stats__grid.stats__grid--3 { grid-template-columns: 1fr; }
}

/* =================================================================
   ABOUT
   ================================================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about__media { position: relative; }
.about__media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about__badge {
    position: absolute;
    bottom: -28px;
    right: -22px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    max-width: 230px;
}
.about__badge strong {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--yellow);
    display: block;
    line-height: 1;
}
.about__badge span { font-size: .9rem; color: rgba(255, 255, 255, .8); }

.pill-cards { display: grid; gap: 16px; margin-top: 28px; }
.pill-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: .35s var(--ease);
    background: #fff;
}
.pill-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.pill-card .ic {
    flex-shrink: 0;
    width: 50px; height: 50px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--soft);
    color: var(--teal);
    font-size: 1.2rem;
}
.pill-card h4 { margin: 0 0 4px; font-size: 1.1rem; }
.pill-card p { margin: 0; font-size: .92rem; }

/* =================================================================
   ABOUT (matches original "Who We Are" design)
   ================================================================= */
.about2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about2__media { position: relative; }
.about2__media img { width: 100%; aspect-ratio: 960 / 680; height: auto; object-fit: cover; }
/* white corner notches (Z shape) */
.about2__media::before,
.about2__media::after {
    content: "";
    position: absolute;
    width: 33%;
    height: 90px;
    background: #fff;
    z-index: 1;
}
.about2__media::before { top: 0; left: 0; }
.about2__media::after { right: 0; bottom: 0; }

/* alternate about photo style — offset accent frame */
.about-photo { position: relative; }
.about-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-photo::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 22px; bottom: -22px; left: 22px; right: -22px;
    border: 3px solid var(--teal);
    border-radius: var(--radius);
}
.about-photo::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: -14px; left: -14px;
    width: 70px; height: 70px;
    border-top: 4px solid var(--yellow);
    border-left: 4px solid var(--yellow);
    border-radius: 6px 0 0 0;
}
@media (max-width: 640px) {
    .about-photo::before { right: 0; bottom: -14px; }
    .about-photo img { height: 360px; }
}

/* strike-through eyebrow */
.section-title2 {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
    background: #fff;
    padding-right: 12px;
}
.section-title2::before {
    position: absolute;
    content: "";
    width: calc(100% + 40px);
    top: 5px;
    left: 0;
    border-top: 2px solid var(--navy);
    z-index: -1;
}
.section-title2::after {
    position: absolute;
    content: "";
    width: calc(100% + 60px);
    bottom: 6px;
    left: 0;
    border-bottom: 2px solid var(--navy);
    z-index: -1;
}

.about2__title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 22px; }
.about2__lead { font-size: 1rem; margin-bottom: 28px; }

.about2__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.about2__mission h3 { font-size: 1.3rem; margin-bottom: 12px; }
.about2__mission p { font-size: .95rem; margin-bottom: 12px; }
.about2__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 10px;
}
.about2__check i { color: var(--navy); margin-top: 6px; font-size: .85rem; }

.about2__vision {
    background: var(--navy);
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius);
}
.about2__vision h5 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.about2__vision p { color: rgba(255, 255, 255, .9); font-size: .95rem; margin-bottom: 22px; }
.about2__vision .btn { align-self: center; }

@media (max-width: 992px) {
    .about2__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .about2__cols { grid-template-columns: 1fr; }
}

/* =================================================================
   SERVICES / WHAT WE DO
   ================================================================= */
.services { background: var(--soft); }

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 40px;
}

/* colour themes */
.wwd-card.c-teal { --c: #3B8E82; --tint: rgba(59, 142, 130, .12); --ct: #3B8E82; }
.wwd-card.c-navy { --c: #00305b; --tint: rgba(0, 48, 91, .08);  --ct: #00305b; }
.wwd-card.c-gold { --c: #F4C400; --tint: rgba(244, 196, 0, .18); --ct: #b8920a; }

/* outer decorative frame: dashed border + solid corner brackets */
.wwd-card {
    position: relative;
    padding: 18px;
    border: 2px dashed var(--c);
    border-radius: 26px;
    transition: transform .4s var(--ease);
}
.wwd-card::before,
.wwd-card::after {
    content: "";
    position: absolute;
    width: 46%;
    height: 58%;
    border: 2px solid var(--c);
    border-radius: 26px;
    pointer-events: none;
}
.wwd-card::before {           /* top-left bracket */
    top: -2px; left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 26px 0 0 0;
}
.wwd-card::after {            /* bottom-right bracket */
    bottom: -2px; right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 26px 0;
}
.wwd-card:hover { transform: translateY(-6px); }

/* inner white card */
.wwd-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 38px 28px 34px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(13, 27, 42, .07);
    height: 100%;
}
.wwd-ic {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 18px;
    display: grid; place-items: center;
    background: var(--tint);
    color: var(--c);
    font-size: 1.5rem;
    transition: .4s var(--ease);
}
.wwd-card:hover .wwd-ic { transform: translateY(-4px) rotate(-6deg); }
.wwd-inner h3 {
    color: var(--ct);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.wwd-inner p { font-size: .92rem; margin: 0; color: var(--muted); }

@media (max-width: 992px) {
    .wwd-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .wwd-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =================================================================
   IMPACT (split + cards)
   ================================================================= */
.impact2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 48px;
}
.impact2-item {
    display: flex;
    align-items: center;
}
.impact2-img {
    flex-shrink: 0;
    width: 44%;
    align-self: stretch;
    min-height: 300px;
    overflow: hidden;
}
.impact2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.impact2-card {
    position: relative;
    z-index: 2;
    margin-left: -64px;
    background: var(--soft);
    border: 3px solid var(--teal);
    padding: 30px 32px;
    box-shadow: var(--shadow-sm);
    transition: .4s var(--ease);
}
.impact2-item:hover .impact2-card {
    box-shadow: var(--shadow);
    transform: translateX(6px);
}
.impact2-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.impact2-card p { margin: 0; font-size: .98rem; }

@media (max-width: 992px) {
    .impact2-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .impact2-item { flex-direction: column; align-items: stretch; }
    .impact2-img { width: 100%; min-height: 220px; }
    .impact2-card { margin-left: 24px; margin-right: 24px; margin-top: -48px; }
}

/* =================================================================
   PARTNERS marquee
   ================================================================= */
.partners { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners__head { text-align: center; margin-bottom: 36px; }
.partners__head span {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-size: .82rem;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 80px; width: max-content; animation: scroll 26s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 64px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: .3s var(--ease); }
.marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =================================================================
   PARTNERS / WHY US (matches original index.html Features design)
   ================================================================= */
.partners2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.partners2__logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow-sm);
}
.partners2__logo {
    background: var(--soft);
    display: grid;
    place-items: center;
    padding: 48px 24px;
    transition: .4s var(--ease);
}
.partners2__logo:hover { background: #fff; }
.partners2__logo img { max-height: 110px; width: auto; object-fit: contain; }

.partners2__content .about2__check span { font-weight: 400; }
.partners2__content .about2__check strong { color: var(--ink); font-weight: 700; }
.partners2__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* justify the body copy, keep last line centred */
.partners2 .intro .lead { text-align: justify; text-align-last: center; }

/* horizontal logo strip — all on one line, equal tiles */
.logos-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}
.logos-row img {
    flex: 1 1 0;
    min-width: 0;
    height: 140px;
    object-fit: contain;
    padding: 22px 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: .3s var(--ease);
}
.logos-row img:hover { background: #fff; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }

@media (max-width: 768px) {
    .logos-row { flex-wrap: wrap; }
    .logos-row img { flex: 1 1 40%; height: 120px; padding: 18px 20px; }
}
@media (max-width: 480px) {
    .logos-row { gap: 16px; }
    .logos-row img { flex: 1 1 100%; height: 110px; }
}

@media (max-width: 992px) {
    .partners2__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .partners2__logos { grid-template-columns: 1fr 1fr; }
    .partners2__logo { padding: 32px 16px; }
}

/* =================================================================
   RESOURCE MODAL
   ================================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}
.modal.open { display: block; }
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 34, 69, .62);
    backdrop-filter: blur(5px);
    animation: fadeIn .3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__dialog {
    position: relative;
    max-width: 820px;
    margin: 6vh auto;
    background: #fff;
    border-radius: var(--radius-lg);
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalIn .4s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.modal__close {
    position: absolute;
    top: 18px; right: 18px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--soft);
    color: var(--navy);
    font-size: 1.1rem;
    cursor: pointer;
    display: grid; place-items: center;
    z-index: 3;
    transition: .3s var(--ease);
}
.modal__close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.modal__head { padding: 40px 44px 0; }
.modal__head .eyebrow { color: var(--teal); }
.modal__head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.modal__head p { font-size: 1rem; }
.modal__head .btn { margin-top: 8px; }
.modal__body { padding: 16px 44px 44px; }

.res-group { margin-top: 30px; }
.res-group__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.res-group__title i { color: var(--teal); }
.res-links { display: grid; gap: 10px; }
.res-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: .3s var(--ease);
}
.res-link:hover { border-color: transparent; background: var(--soft); box-shadow: var(--shadow-sm); transform: translateX(4px); color: var(--navy); }
.res-link > i:first-child { color: var(--teal); width: 22px; text-align: center; flex-shrink: 0; }
.res-link span { flex: 1; font-size: .96rem; }
.res-link strong { color: var(--navy); }
.res-link__go { color: var(--muted); font-size: .85rem; }
.res-link:hover .res-link__go { color: var(--teal); }

@media (max-width: 600px) {
    .modal__head { padding: 56px 24px 0; }
    .modal__body { padding: 12px 24px 32px; }
}

/* =================================================================
   EVENTS
   ================================================================= */
.evt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.evt-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: .4s var(--ease);
    display: flex;
    flex-direction: column;
}
.evt-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.evt-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.evt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.evt-card__media--contain img { object-fit: contain; background: var(--soft); }
.evt-card:hover .evt-card__media img { transform: scale(1.07); }
.evt-card__date {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    padding: 7px 14px;
    border-radius: 999px;
}
.evt-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.evt-card__body h3 { font-size: 1.15rem; }
.evt-card__body h3 a { color: var(--navy); }
.evt-card__body h3 a:hover { color: var(--teal); }
.evt-card__body p { font-size: .92rem; flex: 1; }
.evt-card__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.evt-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.evt-card__meta i { color: var(--teal); }
.evt-card__meta a { color: var(--navy); font-weight: 600; }
.evt-card__meta a:hover { color: var(--teal); text-decoration: underline; }

/* =================================================================
   WEBINAR POSTERS
   ================================================================= */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.poster-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .4s var(--ease);
}
.poster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: var(--soft);
    display: block;
    transition: transform .5s var(--ease);
}
.poster-card:hover img { transform: scale(1.04); }
.poster-card__cap {
    display: block;
    padding: 16px 18px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
}
@media (max-width: 768px) { .poster-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .poster-grid { grid-template-columns: 1fr; } }

/* =================================================================
   TEAM
   ================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    background: #fff;
    transition: .4s var(--ease);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.team-card__photo { aspect-ratio: 1/1; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__body { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.team-card__body h3 { margin: 0; font-size: 1.15rem; }
.team-card__body span { font-size: .85rem; color: var(--teal); font-weight: 600; }
.team-card__socials { display: flex; gap: 8px; }
.team-card__socials a {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--navy);
    font-size: .8rem;
    transition: .3s var(--ease);
}
.team-card__socials a:hover { background: var(--navy); color: #fff; }

/* =================================================================
   TEAM (matches original index.html team design)
   ================================================================= */
.team2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.team2-item {
    display: flex;
    padding: 24px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s var(--ease);
}
.team2-item:hover { box-shadow: 0 0 30px rgba(0, 0, 0, .12); }
.team2-detail { padding-right: 24px; flex: 1; }
.team2-detail img {
    width: 100%;
    margin-bottom: 24px;
    object-fit: cover;
}
.team2-detail h3 { font-size: 1.25rem; margin-bottom: 4px; }
.team2-detail span {
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: .85rem;
    text-transform: uppercase;
}
.team2-social {
    flex-shrink: 0;
    background: var(--soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    gap: 12px;
}
.team2-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: .9rem;
    transition: .3s var(--ease);
}
.team2-social a:hover { background: var(--teal); transform: translateY(-3px); }

/* plain board card — image + name only */
.team2-item--plain {
    display: block;
    padding: 0;
    overflow: hidden;
    text-align: center;
}
.team2-item--plain img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    display: block;
    background: var(--soft);
}
.team2-item--plain h3 {
    margin: 0;
    padding: 20px 16px;
    font-size: 1.2rem;
}
.team2-item--plain h3:has(+ span) { padding-bottom: 0; }
.team2-item--plain span {
    display: block;
    padding: 4px 16px 22px;
    color: var(--teal);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .team2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .team2-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   MORE OF OUR TEAM (board slider)
   ================================================================= */
.bteam {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.bteam__intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.bteam__intro p { font-size: 1.02rem; }
.bteam__nav { display: flex; gap: 12px; margin-top: 28px; }
.bteam__arrow {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: grid; place-items: center;
    transition: .3s var(--ease);
}
.bteam__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }

.bteam__slider { position: relative; }
.bteam__track { position: relative; }
.bslide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    animation: bfade .6s var(--ease);
}
.bslide.active { display: grid; }
@keyframes bfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.bslide__img { position: relative; padding: 36px 0 36px 56px; }
.bslide__img::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: calc(50% + 28px);
    height: 100%;
    background: var(--navy);
    border-radius: var(--radius);
    z-index: 0;
}
.bslide__img img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.bslide__body { padding-left: 36px; }
.bslide__body h3 { font-size: 1.7rem; margin-bottom: 4px; }
.bslide__role {
    color: var(--teal);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .82rem;
    margin-bottom: 16px;
}
.bslide__body > p { font-size: 1.05rem; }
.bslide__socials { display: flex; gap: 10px; margin-top: 22px; }
.bslide__socials a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--navy);
    transition: .3s var(--ease);
}
.bslide__socials a:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

.bteam__dots { display: flex; gap: 10px; margin-top: 26px; padding-left: 36px; }
.bteam__dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--line);
    cursor: pointer;
    padding: 0;
    transition: .3s var(--ease);
}
.bteam__dots button.active { background: var(--teal); width: 26px; border-radius: 999px; }

@media (max-width: 992px) {
    .bteam { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .bslide { grid-template-columns: 1fr; }
    .bslide__img { padding: 0; margin-bottom: 24px; }
    .bslide__img::before { display: none; }
    .bslide__body { padding-left: 0; }
    .bteam__dots { padding-left: 0; justify-content: center; }
}

/* =================================================================
   CTA band
   ================================================================= */
.cta {
    position: relative;
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 70px 56px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.cta::before, .cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}
.cta::before { width: 280px; height: 280px; background: rgba(59, 142, 130, .35); top: -120px; left: -80px; }
.cta::after { width: 320px; height: 320px; background: rgba(244, 196, 0, .18); bottom: -160px; right: -90px; }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta p { color: rgba(255, 255, 255, .82); font-size: 1.08rem; margin-bottom: 30px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   NEWSLETTER
   ================================================================= */
.newsletter { background: var(--soft); }
.newsletter__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.newsletter form {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 24px;
}
.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 22px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
}
.newsletter .btn { padding: 14px 26px; }

/* =================================================================
   FOOTER (shared, injected by components.js)
   ================================================================= */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
    padding: 80px 0 0;
}
.site-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 22px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer__about p { color: rgba(255, 255, 255, .7); font-size: .95rem; }
.footer__brand img { height: 54px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: .94rem; align-items: flex-start; }
.footer__contact i { color: var(--yellow); margin-top: 5px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    padding: 7px 0;
    font-size: .94rem;
}
.footer__links a::before { content: "\f105"; font-family: "Font Awesome 6 Free", "Font Awesome 5 Free"; font-weight: 900; color: var(--teal); }
.footer__links a:hover { color: #fff; padding-left: 6px; }
.footer__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.footer__gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 8px; transition: .3s var(--ease); }
.footer__gallery img:hover { transform: scale(1.05); opacity: .85; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .3s var(--ease);
}
.footer__socials a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .9rem;
}
.footer__bottom a { color: var(--yellow); }

/* Back to top */
.to-top {
    position: fixed;
    right: 26px; bottom: 26px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid; place-items: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: .35s var(--ease);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--yellow); color: var(--navy); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 992px) {
    .nav__menu, .nav__socials { display: none; }
    .nav__toggle { display: flex; }
    .nav.open .nav__menu {
        display: flex;
        position: absolute;
        top: 84px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 16px;
    }
    .nav__link { padding: 14px 16px; }
    .nav__link::after { display: none; }
    .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--line);
        border-radius: 0;
        background: var(--soft);
        margin: 2px 0 6px 16px;
        padding: 6px;
        min-width: 0;
        display: none;
    }
    .nav__item.open .nav__dropdown { display: block; }
    .nav__dropdown a {
        color: var(--navy);
        font-weight: 600;
        font-size: .95rem;
        padding: 12px 14px;
    }
    .nav__dropdown a:hover { color: var(--teal); }

    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .about__media img { height: 380px; }
    .svc-grid, .evt-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .svc-grid, .evt-grid, .team-grid, .impact__grid, .footer__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: none; }
    .about__badge { right: 50%; transform: translateX(50%); bottom: -24px; }
    .hero__dots { left: 24px; bottom: 84px; }
    .hero__arrows { right: 24px; bottom: 24px; }
    .newsletter form { flex-direction: column; border-radius: var(--radius); }
    .newsletter input { padding: 14px 22px; text-align: center; }
    .cta { padding: 54px 26px; }
    .slide__text { font-size: 1.02rem; }
}
