/* ============================================================
   CCE CONSULT — Institutional Design System
   Units: rem / em / % / vw / vh — NO px except hairline borders
   Inspired by UN.org / ILO.org
   ============================================================ */

/* ── 0. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Global link colour reset — prevents Tailwind CDN blue bleed into body text */
body a:not([class]) { color: inherit; text-decoration: none; }
body a:not([class]):hover { color: #814f33; }

/* ── 1. Scrollbar ── */
::-webkit-scrollbar { width: 0.4375rem; }
::-webkit-scrollbar-track { background: #f9f6f3; }
::-webkit-scrollbar-thumb { background: #9b623b; }
::-webkit-scrollbar-thumb:hover { background: #814f33; }

/* ── 2. Utility Bar ── */
#utility-bar {
    background-color: #2d1b12;
    color: #cbb08f;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.44rem 0;
    border-bottom: 1px solid #543626;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 51;
}
#utility-bar a { color: #cbb08f; text-decoration: none; transition: color 0.2s; }
#utility-bar a:hover { color: #FAF9F6; }
.util-icon { font-size: 0.8rem; }
.util-separator {
    display: inline-block;
    width: 1px;
    height: 0.75rem;
    background: #543626;
    margin: 0 0.625rem;
    vertical-align: middle;
}
/* Mobile: hide non-essential utility items */
.util-hide-mobile { display: none; }
@media (min-width: 40rem) { .util-hide-mobile { display: flex; } }

/* ── 3. Navbar ── */
#navbar {
    transition: box-shadow 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 50;
}
#navbar.scrolled { box-shadow: 0 0.125rem 0.75rem rgba(45,27,18,0.10); }
#navbar::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #814f33 0%, #9b623b 50%, #cbb08f 100%);
}
.nav-height { height: 4.5rem; }

/* ── 4. Logo ── */
.logo-img {
    height: 2.75rem;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 39.9375rem) {
    .logo-img { height: 2.2rem; }
}
.logo-wordmark {
    display: block;
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d1b12;
    letter-spacing: -0.01em;
    line-height: 1;
}
.logo-sublabel {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9b623b;
    line-height: 1;
    margin-top: 0.125rem;
}

/* Main content offset: utility bar + navbar */
.main-offset { padding-top: 6.875rem; }

/* ── 5. Nav Links ── */
.nav-link {
    position: relative;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #374151;
    text-decoration: none;
    padding-bottom: 0.25rem;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #814f33;
    transition: width 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: #814f33; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.mobile-nav-link {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── 6. Institutional Buttons ── */
.btn-institutional {
    display: inline-block;
    background: #814f33;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.625rem 1.375rem;
    border: 2px solid #814f33;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-institutional:hover { background: #2d1b12; border-color: #2d1b12; color: #FAF9F6; }
.btn-outline {
    display: inline-block;
    background: transparent;
    color: #FAF9F6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.625rem 1.375rem;
    border: 2px solid rgba(250,249,246,0.6);
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn-outline:hover { background: rgba(250,249,246,0.12); border-color: #FAF9F6; }

/* ── 7. Page Banner (Inner Pages) ── */
.page-banner {
    background-color: #2d1b12;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #814f33;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg, transparent, transparent 2.5rem,
        rgba(129,79,51,0.04) 2.5rem, rgba(129,79,51,0.04) 5rem
    );
}
.page-banner h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.9rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FAF9F6;
    line-height: 1.15;
    position: relative;
}
.page-banner .banner-accent {
    display: block;
    width: 3.75rem;
    height: 4px;
    background: #9b623b;
    margin-top: 1.2rem;
    position: relative;
}
.page-banner .banner-desc {
    color: #cbb08f;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    max-width: 34rem;
    margin-top: 0.8rem;
    line-height: 1.7;
    position: relative;
}
@media (max-width: 39.9375rem) {
    .page-banner { padding: 4.5rem 0 2rem; }
    .page-banner h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
}

/* ── 8. Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #cbb08f;
    margin-bottom: 1.5rem;
    position: relative;
    flex-wrap: wrap;
}
.breadcrumb a { color: #cbb08f; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #543626; font-size: 0.7rem; }
.breadcrumb .current { color: #FAF9F6; }

/* ── 9. News Ticker ── */
.ticker-wrap {
    overflow: hidden;
    background: #814f33;
    color: #FAF9F6;
    height: 2.375rem;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #69412c;
}
.ticker-label {
    flex-shrink: 0;
    background: #2d1b12;
    color: #cbb08f;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 2px solid #543626;
    z-index: 2;
    white-space: nowrap;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 32s linear infinite;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-left: 2rem;
}
.ticker-track .item { padding-right: 4rem; }
.ticker-track .dot { color: #cbb08f; margin-right: 4rem; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ── 10. Partner Strip ── */
.partner-name {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0.375rem 0.875rem;
    border: 2px solid #e5e7eb;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    letter-spacing: -0.02em;
    transition: border-color 0.2s;
}
.partner-name:hover { border-color: #9b623b; }

/* ── 11. SDG Badges ── */
.sdg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #2d1b12;
    color: #FAF9F6;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3125rem 0.625rem;
    border-left: 3px solid #9b623b;
}

/* ── 12. Stats Card ── */
.stat-card {
    border-top: 4px solid #814f33;
    padding: 1.5rem 1.2rem;
    background: #FAF9F6;
}
.stat-card .stat-number {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    color: #2d1b12;
    line-height: 1;
}
.stat-card .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #814f33;
    margin-top: 0.4rem;
}

/* ── 13. Thematic Focus Cards ── */
.focus-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 5px solid #2d1b12;
    padding: 2rem 1.8rem;
    transition: border-top-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.focus-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: #814f33;
    transition: width 0.3s ease;
    z-index: 0;
}
.focus-card:hover::before { width: 4px; }
.focus-card:hover { box-shadow: 0 0.5rem 2rem rgba(45,27,18,0.10); transform: translateY(-0.1875rem); }
.focus-card > * { position: relative; z-index: 1; }
.focus-card .fc-number {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #e5d5c5;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.focus-card .fc-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}
.focus-card .fc-desc { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin-bottom: 1rem; }
.focus-card .fc-link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #814f33; }

/* ── 14. Service Pillar Rows ── */
.pillar-row {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.pillar-row:last-child { border-bottom: none; }
.pillar-row.dark { background: #2d1b12; color: #FAF9F6; }
.pillar-row.dark .pillar-sub { color: #cbb08f; }
.pillar-row.dark .pillar-item { border-color: #543626; color: #d1bfaf; }
.pillar-number {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 700;
    color: #e5d5c5;
    line-height: 1;
    display: block;
}
.pillar-row.dark .pillar-number { color: #543626; }
.pillar-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.pillar-row.dark .pillar-title { color: #FAF9F6; }
.pillar-sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #814f33;
    margin-bottom: 1.5rem;
}
.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0e8df;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.65;
}
.pillar-item:last-child { border-bottom: none; }
.pillar-item-dot { flex-shrink: 0; width: 0.5rem; height: 0.5rem; background: #814f33; border-radius: 50%; margin-top: 0.5rem; }

/* ── 15. Case Study / Feature Story Card ── */
.story-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 3.5rem;
}
@media (min-width: 48rem) {
    .story-card { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
    .story-card.reverse { grid-template-columns: 7fr 5fr; }
    .story-card.reverse .story-img { order: 2; }
    .story-card.reverse .story-body { order: 1; }
}
.story-card:last-child { border-bottom: none; margin-bottom: 0; }
.story-img img { width: 100%; height: auto; display: block; filter: grayscale(20%); transition: filter 0.4s; }
.story-img img:hover { filter: grayscale(0%); }
.story-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #814f33;
    border-left: 3px solid #814f33;
    padding-left: 0.625rem;
    margin-bottom: 1rem;
}
.story-result {
    background: #f9f6f3;
    border-left: 6px solid #2d1b12;
    padding: 1.2rem 1.4rem;
    margin-top: 1.5rem;
}
.story-result h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #2d1b12; margin-bottom: 0.4rem; }
.story-result p { font-size: 0.95rem; font-weight: 500; color: #374151; }

/* ── 16. Team Cards ── */
.team-card { transition: transform 0.25s; }
.team-card:hover { transform: translateY(-0.25rem); }
.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: #f0e8df;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5d5c5;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.team-card:hover .team-avatar { border-color: #814f33; }
.team-avatar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: #814f33;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.team-card:hover .team-avatar::after { transform: scaleX(1); }
.team-initials {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: #9b623b;
    letter-spacing: -0.04em;
}
.thematic-pill {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #814f33;
    background: #f0e8df;
    padding: 0.25rem 0.625rem;
    border-radius: 0;
    margin-top: 0.6rem;
}

/* ── 17. Stats Banner ── */
.stats-banner { background: #2d1b12; border-bottom: 3px solid #814f33; }
.stats-banner .stat-item { text-align: center; padding: 2rem 1rem; border-right: 1px solid #543626; }
.stats-banner .stat-item:last-child { border-right: none; }
.stats-banner .stat-number {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #FAF9F6;
    line-height: 1;
}
.stats-banner .stat-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9b623b; margin-top: 0.4rem; }

/* ── 18. Category Tabs ── */
.cat-tabs { display: flex; gap: 0; border-bottom: 2px solid #e5e7eb; margin-bottom: 3rem; flex-wrap: wrap; }
.cat-tab {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    padding: 0.625rem 1.25rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -2px;
    white-space: nowrap;
}
.cat-tab:hover { color: #814f33; }
.cat-tab.active { color: #2d1b12; border-bottom-color: #814f33; }

/* ── 19. CTA Band ── */
.cta-band { background: #2d1b12; padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #814f33, #9b623b, #cbb08f, #9b623b, #814f33); }
.cta-band h2 { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; color: #FAF9F6; margin-bottom: 1rem; }
.cta-band p { color: #cbb08f; font-size: clamp(0.9rem, 2vw, 1rem); max-width: 31.25rem; margin: 0 auto 2.5rem; font-weight: 300; }

/* ── 20. Section Label ── */
.section-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #814f33; margin-bottom: 0.8rem; }

/* ── 21. Scroll Animation ── */
.scroll-animate { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-animate.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ── 22. Contact Form ── */
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: #f9f6f3;
    border: 1px solid #d1bfaf;
    border-radius: 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: #814f33; box-shadow: 0 0 0 0.1875rem rgba(129,79,51,0.12); }
.form-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #374151; margin-bottom: 0.5rem; }

/* ── 23. Map Placeholder ── */
.map-placeholder {
    width: 100%;
    height: 13.75rem;
    background: #f0e8df;
    border: 2px solid #e5d5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: #9b623b;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── 24. Approach Steps ── */
.approach-step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid #f0e8df; }
.approach-step:last-child { border-bottom: none; }
.approach-num {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    background: #2d1b12;
    color: #FAF9F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
}
.approach-title { font-family: 'Source Serif 4', Georgia, serif; font-weight: 700; font-size: 1.05rem; color: #1a1a1a; margin-bottom: 0.3rem; }
.approach-desc { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }

/* ── 25. Footer ── */
.site-footer { background: #2d1b12; color: #d1bfaf; border-top: 4px solid #814f33; }
.footer-logo-text { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #FAF9F6; line-height: 1; }
.footer-logo-sub { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #9b623b; margin-top: 0.1875rem; display: block; }
.footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #9b623b; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid #543626; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #9b8070; font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #FAF9F6; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.88rem; color: #9b8070; margin-bottom: 0.8rem; }
.footer-contact-item a { color: #9b8070; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: #FAF9F6; }
.footer-bottom { border-top: 1px solid #543626; padding-top: 1.5rem; margin-top: 3rem; font-size: 0.75rem; color: #6b5a50; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.8rem; }
.footer-bottom a { color: #6b5a50; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #cbb08f; }

/* ── 26. HERO — International Standard ── */

/* Two-layer directional overlay → REPLACED with radial vignette (Option A) */
.hero-overlay-left {
    position: absolute; inset: 0;
    /* Radial spotlight: centre lighter (photo visible), edges darker (readable) */
    background: radial-gradient(
        ellipse 90% 80% at 50% 45%,
        rgba(45, 27, 18, 0.42) 0%,
        rgba(45, 27, 18, 0.68) 55%,
        rgba(45, 27, 18, 0.88) 100%
    );
}
.hero-overlay-bottom {
    position: absolute; inset: 0;
    /* Bottom vignette — keeps controls/carousel readable */
    background: linear-gradient(
        to top,
        rgba(45, 27, 18, 0.90) 0%,
        rgba(45, 27, 18, 0.20) 30%,
        transparent 55%
    );
}

/* Hero content — vertically AND horizontally centred (Option A) */
.hero-content {
    position: absolute; inset: 0; z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}
.hero-content > div { pointer-events: auto; width: 100%; }

/* Hero eyebrow — centred with horizontal rule decoration */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #cbb08f;
    margin-bottom: 1.6rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: #9b623b;
    flex-shrink: 0;
}

/* Hero headline — centred, 22ch max-width, no left border */
.hero-headline {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2.4rem, 6.5vw, 5.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.06;
    letter-spacing: -0.025em;
    max-width: 22ch;
    margin: 0 auto 1.6rem;
    text-shadow: 0 0.125rem 2rem rgba(45,27,18,0.45);
}

/* Hero sub-text — centred, 44ch max-width (optimal readability) */
.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: rgba(250, 249, 246, 0.82);
    max-width: 44ch;
    margin: 0 auto 2.4rem;
    line-height: 1.8;
    text-shadow: 0 1px 0.75rem rgba(45,27,18,0.5);
}

/* Hero CTAs — centred */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; padding-left: 0; }

/* Carousel slides */
.carousel-slide { overflow: hidden; }

/* Carousel controls — bottom left (ILO layout) */
.hero-controls { position: absolute; bottom: 7.5rem; left: 0; right: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.hero-controls-left { display: flex; align-items: center; gap: 1.25rem; }
.hero-dots { display: flex; align-items: center; gap: 0.375rem; }
.hero-dot { width: 0.375rem; height: 0.375rem; background: rgba(255,255,255,0.35); border: none; border-radius: 0; cursor: pointer; transition: background 0.3s, width 0.3s; padding: 0; }
.hero-dot.active, .hero-dot:hover { background: #ffffff; width: 1.5rem; }
.hero-arrows { display: flex; gap: 0.375rem; }
.hero-arrow {
    width: 2.375rem; height: 2.375rem;
    background: rgba(45,27,18,0.50);
    border: 1px solid rgba(250,249,246,0.25);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-size: 1rem;
}
.hero-arrow:hover { background: #814f33; border-color: #814f33; }
.slide-counter {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.88rem;
    color: rgba(250,249,246,0.6);
    letter-spacing: 0.05em;
}
.slide-counter .current-slide { color: #ffffff; font-weight: 700; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 5.5rem; right: clamp(1rem, 4vw, 2.5rem); z-index: 30; display: flex; flex-direction: column; align-items: center; gap: 0.375rem; color: rgba(250,249,246,0.45); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: opacity 0.4s ease; cursor: default; }
.scroll-indicator .scroll-line { width: 1px; height: 2.5rem; background: rgba(250,249,246,0.25); position: relative; overflow: hidden; }
.scroll-indicator .scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: #9b623b; animation: scroll-line-drop 1.8s ease-in-out infinite; }
@keyframes scroll-line-drop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }

/* Floating hero stats strip */
.hero-stats-strip { position: relative; z-index: 10; margin-top: -6rem; background: #2d1b12; border-top: 3px solid #814f33; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 9rem; }
.hero-stats-strip .hstat { padding: 2.5rem 2.5rem; border-right: 3px solid #543626; display: flex; flex-direction: column; gap: 0.25rem; align-items: center; text-align: center; }
.hero-stats-strip .hstat:last-child { border-right: none; }
.hero-stats-strip .hstat-number { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #FAF9F6; line-height: 1; }
.hero-stats-strip .hstat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #9b623b; margin-top: 0.5rem; }
.hero-stats-strip .hstat-desc { font-size: 0.78rem; color: #9b8070; font-weight: 300; margin-top: 0.25rem; }

/* ── 100svh fix for mobile browsers ── */
@supports (height: 100svh) {
    #hero-carousel { height: 100svh !important; }
}

/* ── 27. RESPONSIVE — Mobile First ── */
@media (max-width: 39.9375rem) {
    /* Hero — mobile centred stays centred */
    .hero-headline { font-size: clamp(2rem, 9vw, 3.2rem); }
    .hero-sub { font-size: 0.95rem; max-width: 90%; }
    .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.16em; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .scroll-indicator { display: none; }
    .hero-controls { bottom: 2rem; }

    /* Stats strip stacks */
    .hero-stats-strip { grid-template-columns: 1fr; margin-top: 0; }
    .hero-stats-strip .hstat { border-right: none; border-bottom: 1px solid rgba(84,54,38,0.6); }
    .hero-stats-strip .hstat:last-child { border-bottom: none; }

    /* Stats banner */
    .stats-banner .stat-item { border-right: none; border-bottom: 1px solid #543626; }
    .stats-banner .stat-item:last-child { border-bottom: none; }

    /* Pillar rows */
    .pillar-row { padding: 2.5rem 0; }

    /* Cat tabs scroll */
    .cat-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }

    /* Footer */
    .site-footer .py-16 { padding-top: 3rem; padding-bottom: 3rem; }

    /* CTA Band */
    .cta-band { padding: 3rem 0; }
    .cta-band .flex { flex-direction: column; }
}

@media (max-width: 47.9375rem) {
    /* Approach steps compact */
    .approach-step { gap: 1rem; }
    .approach-num { width: 2.375rem; height: 2.375rem; font-size: 0.9rem; }
}

@media (min-width: 40rem) and (max-width: 63.9375rem) {
    /* Tablet tweaks */
    .hero-headline { font-size: clamp(2.5rem, 6vw, 4rem); }
    .pillar-row { padding: 3rem 0; }
}

/* ── 28. HERO SLIDE CONTENT ── */
.slide-content {
    padding-top: 18vh;
}

/* ── 29. ABOUT PAGE — Full CSS Suite ── */

/* Featured Statement — full-width dark proclamation */
.about-statement {
    background: #2d1b12;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 4px solid #814f33;
    position: relative;
}
.about-statement-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9b623b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    margin-bottom: 2rem;
}
.about-statement-label::before,
.about-statement-label::after {
    content: '';
    display: inline-block;
    width: 3rem;
    height: 1px;
    background: #543626;
    flex-shrink: 0;
}
.about-statement-quote {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    font-style: italic;
    color: #FAF9F6;
    line-height: 1.2;
    max-width: 26ch;
    margin: 0 auto;
    letter-spacing: -0.02em;
}
.about-statement-sub {
    color: #9b8070;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 300;
    max-width: 40ch;
    margin: 1.8rem auto 0;
    line-height: 1.8;
}

/* Section header — consistent across all about sections */
.about-section-header { margin-bottom: 3.5rem; }
.about-section-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e5d5c5;
    line-height: 1.2;
}

/* Image frame with caption */
.about-image-frame { position: relative; }
.about-image {
    width: 100%;
    display: block;
    filter: grayscale(15%);
    border-left: 4px solid #814f33;
    transition: filter 0.4s;
}
.about-image:hover { filter: grayscale(0%); }
.about-image-caption {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: #9b623b;
    padding: 0.5rem 0.5rem;
    letter-spacing: 0.06em;
    border-left: 4px solid #e5d5c5;
    margin-top: 0.5rem;
}

/* Body text hierarchy */
.about-body-lead {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.about-rule {
    width: 3rem;
    height: 3px;
    background: #814f33;
    margin: 2rem 0;
    border: none;
    display: block;
}
.about-body {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.about-callout {
    background: #f9f6f3;
    border-left: 5px solid #2d1b12;
    padding: 1.4rem 1.8rem;
    margin-top: 2rem;
}
.about-callout p {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.75;
    margin: 0;
}
.about-callout-icon {
    font-size: 1.2rem;
    color: #814f33;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Vision & Mission cards */
.vm-card {
    background: #fff;
    border-top: 5px solid;
    padding: 2.5rem;
    box-shadow: 0 0.125rem 1.25rem rgba(45,27,18,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}
.vm-card:hover {
    box-shadow: 0 0.375rem 2rem rgba(45,27,18,0.12);
    transform: translateY(-0.1875rem);
}
.vm-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.vm-icon { color: #FAF9F6; font-size: 1.3rem; }
.vm-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #814f33;
    margin-bottom: 0.75rem;
    display: block;
}
.vm-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.85;
}

/* Objective cards */
.obj-card {
    background: #fff;
    border: 1px solid #e5d5c5;
    border-top: 4px solid #2d1b12;
    padding: 2rem 1.8rem;
    transition: border-top-color 0.25s, box-shadow 0.25s;
}
.obj-card:hover {
    border-top-color: #814f33;
    box-shadow: 0 0.25rem 1.25rem rgba(45,27,18,0.10);
}
.obj-sdg {
    background: #2d1b12 !important;
    border-top-color: #9b623b !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.8rem;
}
.obj-num {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #e5d5c5;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}
.obj-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.obj-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

/* ADIS Model steps */
.adis-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #f0e8df;
}
.adis-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid #f0e8df;
    transition: background 0.2s;
}
.adis-step:last-child { border-bottom: none; }
.adis-step:hover { background: #f9f6f3; }
.adis-letter {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #2d1b12;
    color: #FAF9F6;
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.adis-step:hover .adis-letter { background: #814f33; }
.adis-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.adis-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* About page mobile adjustments */
@media (max-width: 39.9375rem) {
    .about-statement { padding: 3.5rem 0; }
    .about-statement-quote { font-size: clamp(1.7rem, 8vw, 2.5rem); }
    .about-section-header { margin-bottom: 2rem; }
    .vm-card { padding: 1.75rem; }
    .obj-card { padding: 1.5rem 1.25rem; }
    .adis-step { padding: 1.25rem; gap: 1rem; }
    .adis-letter { width: 2.5rem; height: 2.5rem; font-size: 1.1rem; }
    .slide-content { padding-top: 12vh; }
}
