/* =========================================================
   KCSPL About Page — about.css
   Design: olive · cream · muted gold · premium agri-biotech
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --cream: #f5f0e8;
    --sand: #e8dfc8;
    --moss: #4a5c3f;
    --sage: #7a9e6e;
    --earth: #8b6e4e;
    --charcoal: #1c1f1a;
    --bark: #3d2f20;
    --gold: #c9a96e;
    --olive: #3a4a2e;
    --olive-light: #5a7048;
    --white: #fefef8;
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--charcoal);
    color: var(--cream);
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--charcoal)
}

::-webkit-scrollbar-thumb {
    background: var(--moss);
    border-radius: 3px
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ── NAV ── */
.a-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    /* Tightened padding */
    transition: background .5s, backdrop-filter .5s
}

.a-nav.scrolled {
    background: rgba(28, 31, 26, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 169, 110, .15)
}

.a-logo {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    height: 48px;
    /* Tighter height so nav isn't huge */
}

.a-logo .nav-logo-img {
    height: 100%;
    width: auto;
    display: block;
    max-width: 140px;
    object-fit: contain;
    transform: scale(1.2);
    /* Match the zoom from the homepage */
}


.a-nav-links {
    display: flex;
    gap: 2.2rem
}

.a-nav-links a {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .7);
    transition: color .3s
}

.a-nav-links a:hover,
.a-nav-links a.active {
    color: var(--gold)
}

.a-nav-cta {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 2px;
    transition: background .3s, color .3s
}

.a-nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal)
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: 0.3s;
}

/* ── STATS ROW (from index) ── */
.stat-row {
    display: flex;
    gap: 3.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding-top: 2.5rem;
}

.stat strong {
    font-family: var(--ff-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.45);
    display: block;
}

/* ── COMMONS ── */
.section {
    padding: 7rem 5%
}

.container {
    max-width: 1240px;
    margin: 0 auto
}

.label {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .7rem
}

.h-serif {
    font-family: var(--ff-serif);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream)
}

.h2 {
    font-size: clamp(2rem, 4vw, 3.2rem)
}

.h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem)
}

.body-text {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .65);
    line-height: 1.85
}

.gold-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem 0 2rem
}

.btn-primary {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 169, 110, .35)
}

.btn-ghost {
    display: inline-block;
    padding: .85rem 2rem;
    border: 1px solid rgba(245, 240, 232, .3);
    color: var(--cream);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color .3s
}

.btn-ghost:hover {
    border-color: var(--cream)
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal.d1 {
    transition-delay: .12s
}

.reveal.d2 {
    transition-delay: .24s
}

.reveal.d3 {
    transition-delay: .36s
}

.reveal.d4 {
    transition-delay: .48s
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal-left.in {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal-right.in {
    opacity: 1;
    transform: translateX(0)
}

/* =========================================================
   HERO
   ========================================================= */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    /* Prevent vertical centering from pushing text behind nav */
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0 5% 6rem;
    box-sizing: border-box;
}

.hero-grad {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 70% 50%, rgba(74, 92, 63, .45) 0%, transparent 70%),
        linear-gradient(155deg, #0d1209 0%, #1a2015 35%, #243020 65%, #1c1f1a 100%);
    animation: hero-pulse 10s ease-in-out infinite alternate;
}

@keyframes hero-pulse {
    from {
        filter: brightness(1)
    }

    to {
        filter: brightness(1.1)
    }
}

/* Animated SVG backdrop */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .06;
    pointer-events: none
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(15, 20, 12, .7) 0%, rgba(15, 20, 12, .15) 60%, transparent 100%)
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-top: 200px;
    /* Force it below the much larger Desktop logo */
    padding-bottom: 100px;
    /* Force it above the absolute Discover hint */
}

.hero-pill {
    display: inline-block;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, .35);
    padding: .32rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-up .9s .3s var(--ease) forwards
}

.hero-headline {
    font-family: var(--ff-serif);
    font-size: clamp(2.8rem, 6.5vw, 5.6rem);
    font-weight: 300;
    line-height: 1.06;
    color: var(--cream);
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fade-up 1s .55s var(--ease) forwards
}

.hero-headline em {
    font-style: italic;
    color: var(--gold)
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .65);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fade-up .9s .8s var(--ease) forwards
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up .9s 1s var(--ease) forwards
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    left: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .8rem;
    opacity: 0;
    animation: fade-up .9s 1.5s var(--ease) forwards
}

.hero-scroll-hint span {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .4)
}

.scroll-bar {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, rgba(201, 169, 110, .6), transparent);
    animation: scroll-w 2s ease-in-out infinite alternate
}

@keyframes scroll-w {
    from {
        width: 20px
    }

    to {
        width: 50px
    }
}

/* stats row in hero */
.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 110, .15);
    opacity: 0;
    animation: fade-up .9s 1.1s var(--ease) forwards
}

.h-stat strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1
}

.h-stat span {
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .45);
    margin-top: .25rem;
    display: block
}

/* =========================================================
   VISION  (pinned scroll section)
   ========================================================= */
.vision-section {
    height: 350vh;
    position: relative;
    background: var(--charcoal)
}

.vision-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.vision-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(58, 74, 46, .35) 0%, transparent 70%)
}

.vision-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.vision-label-col .label {
    margin-bottom: 1.2rem
}

.vision-label-col .h-serif {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.2rem
}

.vision-label-col .gold-line {
    margin-bottom: 0
}

.vision-counter {
    font-family: var(--ff-serif);
    font-size: 7rem;
    font-weight: 300;
    color: rgba(201, 169, 110, .08);
    line-height: 1;
    margin-top: -1rem;
    user-select: none
}

.vision-statements {
    display: flex;
    flex-direction: column;
    gap: 3.5rem
}

.v-stmt {
    opacity: .18;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.v-stmt.active {
    opacity: 1;
    transform: translateY(0)
}

.v-stmt-num {
    font-family: var(--ff-serif);
    font-size: .85rem;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: .6rem
}

.v-stmt-text {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.5
}

.v-stmt-body {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .5);
    line-height: 1.75;
    margin-top: .5rem;
    max-width: 380px
}

/* =========================================================
   MISSION (Split)
   ========================================================= */
.mission-section {
    background: #191c17;
    overflow: hidden
}

.mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%
}

.mission-text {}

.mission-item {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    margin-bottom: 2.8rem
}

.mission-item:last-child {
    margin-bottom: 0
}

.m-num {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(201, 169, 110, .22);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    text-align: right
}

.m-content h4 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .45rem
}

.m-content p {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .55);
    line-height: 1.8
}

/* Right: animated pattern */
.mission-visual {
    position: relative;
    height: 500px
}

.mv-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.mv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, var(--op));
    animation: ring-pulse var(--dur) ease-in-out infinite alternate
}

@keyframes ring-pulse {
    from {
        transform: scale(1) rotate(0deg);
        opacity: var(--op)
    }

    to {
        transform: scale(1.06) rotate(var(--rot));
        opacity: calc(var(--op)*1.6)
    }
}

.mv-center {
    position: relative;
    z-index: 5;
    text-align: center
}

.mv-center-text {
    font-family: var(--ff-serif);
    font-size: .75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, .5);
    display: block;
    margin-top: .5rem
}

/* Floating dots pattern */
.mv-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: dot-in 1s var(--ease) forwards;
    animation-delay: var(--d)
}

@keyframes dot-in {
    to {
        opacity: var(--o)
    }
}

/* =========================================================
   GLOBAL PRESENCE
   ========================================================= */
.global-section {
    background: var(--charcoal)
}

.global-intro {
    max-width: 560px;
    margin: 0 auto 4rem;
    text-align: center
}

.global-intro .h-serif {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: .8rem 0 1rem
}

.world-map-container {
    max-width: 1100px;
    margin: 0 auto 4rem;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, .1);
}

#chartdiv {
    width: 100%;
    height: 480px;
    background: transparent !important;
}

/* Remove amCharts branding bar */
#chartdiv a[href*="amcharts"] {
    display: none !important;
}

.map-continent {
    fill: rgba(201, 169, 110, 0.4);
}

.map-line {
    stroke-dashoffset: 100;
    animation: dash 4s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.map-node circle {
    animation: pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: var(--d);
    transform: scale(0);
    transform-origin: center;
}

.map-node .pulse-ring {
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation-delay: var(--d);
}

@keyframes pop {
    to {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5px;
    max-width: 1240px;
    margin: 0 auto
}

.country-card {
    background: #21251e;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(201, 169, 110, .07);
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    cursor: default;
    transition: background .4s, border-color .4s, transform .4s var(--ease)
}

.country-card:hover {
    background: #2c3228;
    border-color: rgba(201, 169, 110, .28);
    transform: translateY(-3px)
}

.cc-flag {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0
}

.cc-name {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--cream)
}

.cc-region {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .38);
    margin-top: .2rem
}

/* =========================================================
   OPERATIONAL FOOTPRINT (5 cards)
   ========================================================= */
.ops-section {
    background: #191c17
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem
}

.ops-card {
    background: #1e2219;
    border: 1px solid rgba(201, 169, 110, .07);
    padding: 2.6rem 2.2rem;
    transition: background .4s, border-color .4s, transform .4s var(--ease)
}

.ops-card:hover {
    background: #262d20;
    border-color: rgba(201, 169, 110, .28);
    transform: translateY(-4px)
}

.ops-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.4rem;
    color: var(--gold)
}

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

.ops-title {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .5rem
}

.ops-count {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .7rem
}

.ops-count-label {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .35);
    margin-left: .3rem;
    vertical-align: middle
}

/* Old static gallery replaced by Swiper */
.ops-gallery-swiper {
    margin-top: 5rem;
    padding: 0;
    width: 100%;
}

.ops-swiper {
    width: 100%;
    height: 380px;
    padding-bottom: 3rem !important;
}

.ops-slide {
    height: 340px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, .12);
    cursor: grab;
}

.ops-slide:active {
    cursor: grabbing;
}

.ops-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(20%) sepia(15%) brightness(0.88);
}

.swiper-slide-active .ops-slide-img {
    filter: grayscale(0%) sepia(5%) brightness(1.05);
}

.ops-slide:hover .ops-slide-img {
    filter: grayscale(0%) sepia(0%) brightness(1.15);
}

.ops-swiper-pagination {
    bottom: 0 !important;
}

.ops-swiper-pagination .swiper-pagination-bullet {
    background: rgba(201, 169, 110, .4);
    opacity: 1;
}

.ops-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold, #c9a96e);
    transform: scale(1.3);
}

.ops-prev,
.ops-next {
    color: rgba(201, 169, 110, .7) !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
}

.ops-prev:after,
.ops-next:after {
    font-size: 1rem !important;
    font-weight: 700;
}

.gallery-link-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 2rem;
    border: 1px solid rgba(201, 169, 110, .4);
    color: var(--gold);
    text-decoration: none;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .3s, border-color .3s, color .3s;
}

.gallery-link-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1c1f1a;
}

.ops-locations {
    font-size: .78rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .5);
    line-height: 1.8;
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(245, 240, 232, .07);
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease)
}

.ops-card:hover .ops-locations {
    max-height: 200px
}

/* =========================================================
   CORE VALUES
   ========================================================= */
.values-section {
    background: var(--charcoal)
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 3.5rem
}

.val-card {
    background: #21251e;
    padding: 2.8rem 2.2rem;
    border: 1px solid rgba(201, 169, 110, .07);
    transition: background .4s, border-color .4s, transform .4s var(--ease)
}

.val-card:hover {
    background: #2a2f24;
    border-color: rgba(201, 169, 110, .28);
    transform: translateY(-4px)
}

.val-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.6rem;
    color: var(--gold)
}

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

.val-num {
    font-family: var(--ff-serif);
    font-size: .75rem;
    letter-spacing: .15em;
    color: rgba(201, 169, 110, .45);
    margin-bottom: .4rem
}

.val-title {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .75rem
}

.val-text {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(245, 240, 232, .55);
    line-height: 1.75
}

.val-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 1.4rem;
    transition: width .5s var(--ease)
}

.val-card:hover .val-line {
    width: 40px
}

/* =========================================================
   CTA BAND
   ========================================================= */
.about-cta {
    background: var(--moss);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 255, 255, .04) 0%, transparent 70%);
    pointer-events: none
}

.cta-statement {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin: .8rem 0 1.5rem
}

.cta-statement em {
    font-style: italic;
    color: #c8d8a8
}

.about-cta .body-text {
    margin: 0 auto 2.8rem;
    max-width: 520px;
    color: rgba(245, 240, 232, .72)
}

.partner-btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .4s
}

.partner-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease)
}

.partner-btn:hover::before {
    transform: scaleX(1)
}

.partner-btn span {
    position: relative;
    z-index: 1
}

.partner-btn:hover span {
    color: var(--charcoal)
}

/* =========================================================
   FOOTER MINI
   ========================================================= */
.about-footer {
    background: #111410;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(201, 169, 110, .1)
}

.about-footer .a-logo {
    font-size: 1.3rem
}

.mini-copy {
    font-size: .7rem;
    color: rgba(245, 240, 232, .28)
}

.back-home {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    transition: opacity .3s
}

.back-home:hover {
    opacity: .7
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width:900px) {
    .a-logo {
        display: none !important;
    }

    .a-nav-cta {
        display: none;
    }

    .a-nav {
        justify-content: flex-end;
        gap: 1.5rem;
    }

    .about-hero {
        padding-top: 6rem;
    }

    .about-hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-pill {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        height: auto;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .hero-scroll-hint {
        display: none;
    }

    .vision-section {
        height: auto;
        padding: 4rem 0;
    }

    .vision-sticky {
        position: relative;
        height: auto;
    }

    .v-stmt {
        opacity: 1;
        transform: translateY(0);
    }

    .vision-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .vision-counter {
        display: none
    }

    .mission-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .mission-visual {
        height: 260px
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .nav-burger {
        display: flex;
    }

    /* ── Mobile Nav Overlay ── */
    .a-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 20, 8, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 0;
        border: none;
        transition: right 0.4s var(--ease);
        z-index: 1000;
        gap: 2rem;
    }

    .a-nav-links.nav-active {
        right: 0;
    }

    .a-nav-links a {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

    /* Burger X Animation */
    .nav-burger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-burger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -6px);
    }
}

@media(max-width:600px) {

    .ops-grid,
    .values-grid,
    .countries-grid {
        grid-template-columns: 1fr
    }

    .stat-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }
}