﻿/* ═══════════════════════════════════════════════════════════
   PUNCAK NILAM MANAGEMENT SERVICES — css/style.css
   Design: Editorial · Refined · Consulting-grade
   Fonts:  Cormorant Garamond (display) + DM Sans (body)

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────
   00. DESIGN TOKENS
   01. RESET & BASE
   02. LAYOUT HELPERS

   ── SHARED / ALL PAGES ───────────────────────────────────
   03. UTILITY BAR
   04. PRIMARY HEADER
   05. NAVIGATION
   06. MEGA DROPDOWN
   07. HEADER ACTIONS
   08. GLOBAL BUTTONS
   09. FOOTER
   10. SCROLL REVEAL & FOCUS
   11. SHARED RESPONSIVE

   ── HOME PAGE (index) ────────────────────────────────────
   12. HOME — HERO
   13. HOME — SERVICES STRIP
   14. HOME — DELIVERY FRAMEWORK
   15. HOME — SERVICE CATEGORIES
   16. HOME — ABOUT INTRO
   17. HOME — STRIP / MARQUEE
   18. HOME — SECTORS LIST
   19. HOME — INSIGHTS GRID
   20. HOME — CTA BAND
   21. HOME — RESPONSIVE

   ── PAGE HERO (About / Services / Contact / ERM) ─────────
   22. PAGE HERO — SHARED

   ── ABOUT PAGE ───────────────────────────────────────────
   23. ABOUT — WHO WE ARE
   24. ABOUT — SERVICES COVERAGE
   25. ABOUT — MISSION & VISION
   26. ABOUT — WHY PNMS
   27. ABOUT — RESPONSIVE

   ── SERVICES PAGE ────────────────────────────────────────
   28. SERVICES — QUICK NAV
   29. SERVICES — SERVICE SECTIONS

   ── ERM PAGE ─────────────────────────────────────────────
   30. ERM — HERO CARD
   31. ERM — OVERVIEW
   32. ERM — FEATURES
   33. ERM — PILLARS
   34. ERM — DEMO
   35. ERM — RESPONSIVE (shared with Services)

   ── CONTACT PAGE ─────────────────────────────────────────
   36. CONTACT — LAYOUT
   37. CONTACT — INFO PANEL
   38. CONTACT — FORM
   39. CONTACT — MAP STRIP
   40. CONTACT — RESPONSIVE

   ── GLOBAL SCROLL MARGIN ─────────────────────────────────
   41. SCROLL MARGIN
═══════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════
   00. DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
    /* Core palette */
    --clr-ink: #0d0d0d;
    --clr-charcoal: #1c1c1c;
    --clr-mid: #3a3a3a;
    --clr-muted: #888;
    --clr-border: #e0dbd4;
    --clr-bg: #faf9f7;
    --clr-cream: #f4f0ea;
    --clr-white: #ffffff;
    /* Accent — navy authority + gold premium */
    --clr-accent: #1a3a5c;
    --clr-accent-2: #c8a96e;
    --clr-accent-hover: #142d47;
    /* Footer */
    --clr-footer-bg: #0e0e0e;
    --clr-footer-txt: #a8a8a8;
    /* Typography — single source of truth */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    /* Layout */
    --max-w: 1320px;
    --pad-x: clamp(20px, 5vw, 60px);
    /* Header heights — using px so calc() is reliable everywhere */
    --util-h: 40px;
    --header-h: 72px;
    --total-h: 112px; /* --util-h + --header-h */
    /* Section padding — single token used everywhere */
    --section-pad: clamp(24px, 4vw, 48px);
    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 180ms;
    --dur-med: 300ms;
}


/* ══════════════════════════════════════════════════════════
   01. RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

sup {
    font-size: .55em;
    vertical-align: super;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}


/* ══════════════════════════════════════════════════════════
   02. LAYOUT HELPERS
══════════════════════════════════════════════════════════ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-accent-2);
    margin-bottom: 16px;
}


/* ══════════════════════════════════════════════════════════
   SHARED / ALL PAGES
══════════════════════════════════════════════════════════ */

/* ── 03. UTILITY BAR ───────────────────────────────────── */
.util-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--util-h);
    background: var(--clr-ink);
    z-index: 200;
    display: flex;
    align-items: center;
}

.util-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.util-tagline {
    font-size: 11px;
    letter-spacing: .05em;
    color: #555;
}

.util-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .util-links a {
        font-size: 11px;
        letter-spacing: .04em;
        color: #888;
        transition: color var(--dur-fast);
    }

        .util-links a:hover {
            color: var(--clr-white);
        }

.util-login {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--clr-accent-2) !important;
    font-weight: 500;
}


/* ── 04. PRIMARY HEADER ────────────────────────────────── */
#site-header {
    position: fixed;
    top: var(--util-h);
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(250, 249, 247, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 150;
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

    #site-header.scrolled {
        border-bottom-color: var(--clr-border);
        box-shadow: 0 2px 24px rgba(0,0,0,.07);
    }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .logo img {
        height: 44px;
        width: auto;
    }


/* ── 05. NAVIGATION ────────────────────────────────────── */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    height: var(--header-h);
}

    .nav-list > li {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .nav-list > li > a,
        .nav-dropdown-trigger {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 0 14px;
            height: 100%;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--clr-mid);
            white-space: nowrap;
            position: relative;
            transition: color var(--dur-fast);
        }

            .nav-list > li > a::after,
            .nav-dropdown-trigger::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 14px;
                right: 14px;
                height: 2px;
                background: var(--clr-accent);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform var(--dur-med) var(--ease-out);
            }

        .nav-list > li:hover > a,
        .nav-list > li:hover > .nav-dropdown-trigger,
        .nav-list > li.active > a {
            color: var(--clr-accent);
        }

            .nav-list > li:hover > a::after,
            .nav-list > li:hover > .nav-dropdown-trigger::after,
            .nav-list > li.active > a::after {
                transform: scaleX(1);
            }

.caret-icon {
    transition: transform var(--dur-med) var(--ease-out);
    flex-shrink: 0;
}

.has-dropdown:hover .caret-icon,
.has-dropdown.open-mobile .caret-icon {
    transform: rotate(180deg);
}


/* ── 06. MEGA DROPDOWN ─────────────────────────────────── */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    min-width: 680px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-top: 2px solid var(--clr-accent);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
    z-index: 300;
}

.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
}

.mega-col {
    padding: 28px 24px;
    border-right: 1px solid var(--clr-border);
}

    .mega-col:last-child {
        border-right: none;
    }

.mega-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-col a {
    display: block;
    font-size: 13.5px;
    color: var(--clr-mid);
    padding: 6px 8px;
    border-radius: 4px;
    transition: color var(--dur-fast), background var(--dur-fast), padding-left var(--dur-fast);
}

    .mega-col a:hover {
        color: var(--clr-accent);
        background: var(--clr-cream);
        padding-left: 14px;
    }

.mega-featured {
    background: var(--clr-bg);
}

.mega-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 20px;
    margin-top: 4px;
}

.mega-card-eyebrow {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clr-white);
    background: var(--clr-accent-2);
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.mega-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-accent);
    line-height: 1.25;
    margin-bottom: 8px;
}

.mega-card-desc {
    font-size: 12.5px;
    color: var(--clr-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.mega-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--clr-accent);
    transition: gap var(--dur-fast);
}

    .mega-card-link:hover {
        gap: 10px;
    }

.mega-footer-bar {
    border-top: 1px solid var(--clr-border);
    padding: 10px 24px;
    background: var(--clr-bg);
}

    .mega-footer-bar a {
        font-size: 12px;
        font-weight: 500;
        color: var(--clr-accent);
        letter-spacing: .04em;
        transition: letter-spacing var(--dur-fast);
    }

        .mega-footer-bar a:hover {
            letter-spacing: .07em;
        }


/* ── 07. HEADER ACTIONS ────────────────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border: 1.5px solid var(--clr-accent);
    border-radius: 4px;
    white-space: nowrap;
    transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}

    .btn-cta:hover {
        background: transparent;
        color: var(--clr-accent);
        transform: translateY(-1px);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 36px;
    height: 36px;
    justify-content: center;
}

.ham-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--clr-ink);
    border-radius: 1px;
    transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med);
}


/* ── 08. GLOBAL BUTTONS ────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1.5px solid var(--clr-accent);
    transition: background var(--dur-fast), color var(--dur-fast), transform .15s;
    cursor: pointer;
}

    .btn-primary:hover {
        background: transparent;
        color: white;
        transform: translateY(-2px);
    }

    .btn-primary.btn-lg {
        padding: 16px 36px;
        font-size: 15px;
    }

.btn-ghost {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0;
    transition: color var(--dur-fast);
}

    .btn-ghost:hover {
        color: var(--clr-white);
    }

.btn-ghost-dark {
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--dur-fast), letter-spacing var(--dur-fast);
}

    .btn-ghost-dark:hover {
        color: var(--clr-ink);
        letter-spacing: .03em;
    }


/* ── 09. FOOTER ────────────────────────────────────────── */
#site-footer {
    background: var(--clr-footer-bg);
    color: var(--clr-footer-txt);
    margin-top: -26px;
}

.footer-top {
    padding: clamp(32px, 4vw, 56px) 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .8;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

.footer-reg {
    font-size: 11px;
    color: #444;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: #666;
    transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

    .social-btn:hover {
        border-color: var(--clr-accent-2);
        color: var(--clr-accent-2);
        background: rgba(200,169,110,.08);
    }

.footer-links {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    transition: color var(--dur-fast), padding-left var(--dur-fast);
    padding-left: 0;
}

    .footer-col a:hover {
        color: var(--clr-white);
        padding-left: 4px;
    }

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

.footer-links .footer-col:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 24px;
}

    .footer-links .footer-col:first-child a {
        display: block;
    }

    .footer-links .footer-col:first-child .footer-col-title {
        grid-column: 1 / -1;
    }

.contact-icon-svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--clr-accent-2);
    opacity: .75;
}

.contact-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

    .footer-contact-item a:hover {
        color: var(--clr-white);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,.25);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-legal a {
        font-size: 12px;
        color: rgba(255,255,255,.3);
        transition: color var(--dur-fast);
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,.7);
        }

    .footer-legal span {
        color: rgba(255,255,255,.15);
    }


/* ── 10. SCROLL REVEAL & FOCUS ─────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: 2px;
}


/* ── 11. SHARED RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .header-actions {
        gap: 0;
    }

    /* Mobile nav drawer */
    .main-nav {
        position: fixed;
        top: var(--total-h);
        left: 0;
        right: 0;
        background: var(--clr-white);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0 20px;
        transform: translateY(-150%);
        transition: transform var(--dur-med) var(--ease-out);
        z-index: 140;
        box-shadow: -4px 0 24px rgba(0,0,0,.08);
    }

        .main-nav.open {
            transform: translateY(0);
        }

    .hamburger {
        display: flex;
    }

    .btn-cta {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 0;
        padding: 0 var(--pad-x);
    }

        .nav-list > li {
            height: auto;
            border-bottom: 1px solid var(--clr-border);
        }

            .nav-list > li > a,
            .nav-dropdown-trigger {
                width: 100%;
                height: auto;
                padding: 18px 0;
                font-size: 16px;
                justify-content: space-between;
                color: var(--clr-ink);
            }

                .nav-list > li > a::after,
                .nav-dropdown-trigger::after {
                    display: none;
                }

        .nav-list::after {
            content: none;
        }

    /* Mobile mega — inline accordion */
    .mega-dropdown {
        position: static;
        transform: none !important;
        min-width: 0;
        width: 100%;
        border: none;
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        padding: 0 0 8px;
        background: var(--clr-bg);
        margin: 0 calc(-1 * var(--pad-x));
        padding-left: var(--pad-x);
        padding-right: var(--pad-x);
        width: calc(100% + 2 * var(--pad-x));
    }

    .has-dropdown.open-mobile .mega-dropdown {
        display: block;
    }

    .mega-inner {
        grid-template-columns: 1fr;
    }

    .mega-col {
        padding: 14px 0;
        border-right: none;
        border-bottom: 1px solid var(--clr-border);
    }

        .mega-col:last-child {
            border-bottom: none;
        }

    .mega-featured {
        background: none;
    }

    .mega-footer-bar {
        padding: 12px 0;
        background: none;
    }

    .nav-mobile-cta {
        padding: 24px var(--pad-x);
    }

    /* Util bar */
    .util-tagline {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Page & index heroes */
    .page-hero {
        min-height: 70vh;
        width: 100%;
    }

    .page-hero-bg,
    .page-hero-bg img {
        width: 100%;
        left: 0;
        right: 0;
    }

    .page-hero-scroll {
        display: none;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 800px) {
    :root {
        --header-h: 64px;
        --total-h: 104px;
    }
}

@media (max-width: 480px) {
    :root {
        --util-h: 36px;
        --header-h: 60px;
        --total-h: 96px;
    }

    .util-bar-inner {
        justify-content: flex-end;
    }

    .logo img {
        height: 36px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ══════════════════════════════════════════════════════════
   HOME PAGE (index.php)
══════════════════════════════════════════════════════════ */

/* ── 12. HOME — HERO ───────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background: var(--clr-charcoal);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .hero-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(26,58,92,0.80) 60%, rgba(13,13,13,0.90) 100%);
        z-index: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,58,92,.35) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: calc(var(--total-h) + clamp(56px, 8vw, 1px));
    padding-right: var(--pad-x);
    padding-bottom: clamp(80px, 10vw, 120px);
    padding-left: var(--pad-x);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 36px;
        height: 1px;
        background: var(--clr-accent-2);
        flex-shrink: 0;
    }

    .hero-eyebrow span {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--clr-accent-2);
    }

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1.04;
    margin-bottom: 28px;
}

    .hero-headline em {
        font-style: italic;
        color: var(--clr-accent-2);
    }

.hero-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(255,255,255,.58);
    max-width: 560px;
    line-height: 1.72;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: clamp(56px, 8vw, 96px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 32px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 0 36px 0 0;
}

    .stat-item:first-child {
        padding-left: 0;
    }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

    .stat-num sup,
    .stat-num span {
        color: var(--clr-accent-2);
    }

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.38);
    letter-spacing: .05em;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.1);
    margin: 0 36px 0 0;
    flex-shrink: 0;
    align-self: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

    .hero-scroll-hint span {
        font-size: 10px;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(255,255,255,.3);
    }

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}

    .scroll-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--clr-accent-2);
        animation: scrollSlide 1.8s ease-in-out infinite;
    }

@keyframes scrollSlide {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}


/* ── 13. HOME — SERVICES STRIP ─────────────────────────── */
.services-strip {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
}

.strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
}

    .strip-header span {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.7);
        white-space: nowrap;
    }

.strip-viewall {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-accent);
    transition: letter-spacing var(--dur-fast);
}

    .strip-viewall:hover {
        letter-spacing: .04em;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.service-card {
    background: var(--clr-white);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: background var(--dur-med);
    position: relative;
    cursor: pointer;
}

    .service-card:hover {
        background: var(--clr-cream);
    }

.service-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.service-card:hover .service-icon {
    border-color: var(--clr-accent);
    background: rgba(26,58,92,.06);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--clr-ink);
    line-height: 1.25;
}

.service-card p {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.65;
    flex: 1;
}

.card-arrow,
.service-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--dur-fast), transform var(--dur-fast);
    margin-top: 4px;
}

.service-card:hover .card-arrow,
.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}


/* ── 14. HOME — DELIVERY FRAMEWORK ────────────────────── */
.framework {
    padding: var(--section-pad) 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
}

.framework-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

    .framework-header h2 {
        font-family: var(--font-display);
        font-size: clamp(34px, 4vw, 52px);
        font-weight: 300;
        color: var(--clr-ink);
        line-height: 1.1;
    }

.framework-intro {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.75;
    padding-top: 8px;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.framework-step {
    display: flex;
    gap: 18px;
    padding: 28px 24px;
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--dur-fast);
}

    .framework-step:hover {
        background: var(--clr-bg);
    }

    .framework-step:nth-child(3n) {
        border-right: none;
    }

    .framework-step:nth-last-child(-n+3) {
        border-bottom: none;
    }

.step-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-style: italic;
    color: var(--clr-accent-2);
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 26px;
}

.step-body h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-accent);
    line-height: 1.3;
    margin-bottom: 8px;
}

.step-body p {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.65;
}


/* ── 15. HOME — SERVICE CATEGORIES ────────────────────── */
.categories {
    padding: var(--section-pad) 0;
    background: var(--clr-charcoal);
}

.categories-header {
    margin-bottom: 48px;
}

    .categories-header h2 {
        font-family: var(--font-display);
        font-size: clamp(34px, 4vw, 52px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.1;
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.cat-card {
    background: rgba(255,255,255,.03);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background var(--dur-fast);
}

    .cat-card:hover {
        background: rgba(255,255,255,.07);
    }

.cat-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-2);
    flex-shrink: 0;
}

.cat-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 1.25;
}

.cat-card p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}


/* ── 16. HOME — ABOUT INTRO ────────────────────────────── */
.about-intro {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: visible;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #0e1f30 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,.5);
    text-align: center;
    line-height: 1.6;
    padding: 20px;
}

.about-accent-block {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--clr-accent-2);
    opacity: .2;
    border-radius: 50%;
    pointer-events: none;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.15;
    margin-bottom: 24px;
}

    .about-text h2 em {
        font-style: italic;
        color: var(--clr-accent);
    }

.about-text p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.75;
    margin-bottom: 18px;
}


/* ── 17. HOME — STRIP / MARQUEE ────────────────────────── */
.strip {
    background: var(--clr-accent);
    padding: 20px 0;
    overflow: hidden;
}

.strip-items {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-item {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
}

    .strip-item::before {
        content: '—';
        margin-right: 10px;
        color: var(--clr-accent-2);
    }


/* ── 18. HOME — SECTORS LIST ───────────────────────────── */
.sectors {
    background: var(--clr-charcoal);
    padding: var(--section-pad) 0;
}

.sectors-header {
    margin-bottom: 56px;
}

    .sectors-header h2 {
        font-family: var(--font-display);
        font-size: clamp(36px, 4vw, 54px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.15;
    }

.sectors-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}

.sector-row {
    display: grid;
    grid-template-columns: 48px 1fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 8px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background var(--dur-fast);
    cursor: pointer;
}

    .sector-row:hover {
        background: rgba(255,255,255,.04);
    }

.sector-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-style: italic;
    color: var(--clr-accent-2);
}

.sector-name {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 300;
    color: var(--clr-white);
    transition: letter-spacing var(--dur-fast);
}

.sector-row:hover .sector-name {
    letter-spacing: .01em;
}

.sector-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.4);
}

.sector-link {
    font-size: 13px;
    color: var(--clr-accent-2);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--dur-fast), transform var(--dur-fast);
}

.sector-row:hover .sector-link {
    opacity: 1;
    transform: translateX(0);
}


/* ── 19. HOME — INSIGHTS GRID ──────────────────────────── */
.insights {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
}

.insights-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

    .insights-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-ink);
        line-height: 1.2;
    }

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.insight-card {
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background var(--dur-fast);
}

    .insight-card:hover {
        background: var(--clr-cream);
    }

.insight-img-wrap {
    overflow: hidden;
}

.insight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease-out);
}

.insight-card:hover .insight-img {
    transform: scale(1.04);
}

.insight-img-1 {
    background: linear-gradient(135deg, #8fafb5 0%, #4d7a8a 100%);
}

.insight-img-2 {
    background: linear-gradient(135deg, #b5a08f 0%, #8a6d4d 100%);
}

.insight-img-3 {
    background: linear-gradient(135deg, #9fb58f 0%, #5a8a4d 100%);
}

.insight-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(26,58,92,.08);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

.insight-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-ink);
    line-height: 1.3;
    flex: 1;
}

.insight-date {
    font-size: 12px;
    color: var(--clr-muted);
    letter-spacing: .05em;
}


/* ── 20. HOME — CTA BAND ───────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #0e1f30 100%);
    padding: clamp(48px, 6vw, 72px) 0;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

    .cta-inner h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .cta-inner p {
        color: rgba(255,255,255,.7);
        font-size: 16px;
        margin-bottom: 36px;
    }

    .cta-inner .btn-primary {
        background: var(--clr-white);
        color: var(--clr-accent);
        border-color: var(--clr-white);
    }

        .cta-inner .btn-primary:hover {
            background: transparent;
            color: var(--clr-white);
        }


/* ── 21. HOME — RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sector-row {
        grid-template-columns: 40px 1fr auto;
    }

    .sector-desc {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .insights-grid .insight-card:last-child {
        display: none;
    }

    .framework-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Fix 2-col framework borders */
    .framework-step:nth-child(3n) {
        border-right: 1px solid var(--clr-border);
    }

    .framework-step:nth-child(2n) {
        border-right: none;
    }

    .framework-step:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--clr-border);
    }

    .framework-step:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .framework-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .sector-row {
        grid-template-columns: 36px 1fr auto;
    }

    .insights-grid .insight-card:last-child {
        display: flex;
    }

    .about-visual {
        order: -1;
    }

    .framework-step {
        border-right: none;
    }

        .framework-step:nth-child(3n) {
            border-right: none;
        }

        .framework-step:nth-child(2n) {
            border-right: none;
        }

        .framework-step:nth-last-child(-n+2) {
            border-bottom: 1px solid var(--clr-border);
        }

        .framework-step:last-child {
            border-bottom: none;
        }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0;
    }

    .hero-stats {
        gap: 24px;
        row-gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .insights-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════
   PAGE HERO — Shared by About / Services / Contact / ERM
══════════════════════════════════════════════════════════ */

/* ── 22. PAGE HERO — SHARED ────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: var(--clr-charcoal);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a1628;
}

    .page-hero-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .page-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(26,58,92,0.82) 50%, rgba(13,13,13,0.90) 100%);
        z-index: 1;
    }

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--total-h) + clamp(56px, 8vw, 1px));
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-accent-2);
}

.eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--clr-accent-2);
    flex-shrink: 0;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1.07;
    margin-bottom: 20px;
}

    .page-hero-content h1 em {
        font-style: italic;
        color: var(--clr-accent-2);
    }

.page-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.3vw, 16px);
    color: rgba(255,255,255,.52);
    line-height: 1.72;
    max-width: 540px;
}

.page-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

    .page-hero-scroll span {
        font-family: var(--font-body);
        font-size: 10px;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(255,255,255,.28);
    }

@media (max-width: 540px) {
    .page-hero-content h1 {
        font-size: clamp(32px, 8vw, 44px);
    }
}


/* ══════════════════════════════════════════════════════════
   ABOUT PAGE (about.php)
══════════════════════════════════════════════════════════ */

/* ── 23. ABOUT — WHO WE ARE ────────────────────────────── */
.about-who {
    padding: var(--section-pad) 0;
    background: var(--clr-white);
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-who-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.15;
    margin-bottom: 28px;
}

.about-who-text p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

    .about-who-text p:last-child {
        margin-bottom: 0;
    }

.about-who-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-who-visual {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 4px;
    overflow: visible;
}

.who-visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #0a1628 100%);
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    overflow: hidden;
    position: relative;
}

    .who-visual-placeholder::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.08);
    }

    .who-visual-placeholder::after {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 1px solid rgba(200,169,110,.2);
    }

    .who-visual-placeholder span {
        font-family: var(--font-display);
        font-size: 13px;
        font-style: italic;
        color: rgba(255,255,255,.4);
        letter-spacing: .08em;
        position: relative;
        z-index: 1;
    }

.who-visual-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--clr-accent-2);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(200,169,110,.3);
}

.badge-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 1;
}

    .badge-num sup {
        font-size: .55em;
    }

.badge-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    line-height: 1.2;
    margin-top: 2px;
}

.about-who-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    overflow: hidden;
}

.highlight-item {
    background: var(--clr-bg);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.highlight-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--clr-accent);
    line-height: 1;
}

    .highlight-val sup {
        font-size: .55em;
        color: var(--clr-accent-2);
    }

.highlight-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    line-height: 1.3;
}


/* ── 24. ABOUT — SERVICES COVERAGE ────────────────────── */
.about-services {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.about-services-header {
    max-width: 640px;
    margin-bottom: 48px;
}

    .about-services-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-ink);
        line-height: 1.15;
        margin-bottom: 16px;
    }

.about-services-lead {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.75;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.coverage-card {
    background: var(--clr-white);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background var(--dur-fast);
}

    .coverage-card:hover {
        background: var(--clr-cream);
    }

.coverage-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.coverage-card:hover .coverage-icon {
    border-color: var(--clr-accent);
    background: rgba(26,58,92,.06);
}

.coverage-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-ink);
    line-height: 1.3;
}

.iso-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .08em;
    color: var(--clr-accent);
    background: rgba(26,58,92,.08);
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
    vertical-align: middle;
}

.coverage-card p {
    font-size: 12.5px;
    color: var(--clr-muted);
    line-height: 1.6;
    flex: 1;
}

.coverage-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--dur-fast), transform var(--dur-fast);
    display: inline-block;
}

.coverage-card:hover .coverage-link {
    opacity: 1;
    transform: translateX(0);
}

.about-services-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(26,58,92,.05);
    border: 1px solid rgba(26,58,92,.12);
    border-left: 3px solid var(--clr-accent);
    border-radius: 4px;
    padding: 18px 20px;
}

    .about-services-note svg {
        flex-shrink: 0;
        color: var(--clr-accent);
        margin-top: 2px;
    }

    .about-services-note p {
        font-size: 14px;
        color: var(--clr-mid);
        line-height: 1.65;
    }

    .about-services-note strong {
        color: var(--clr-accent);
        font-weight: 600;
    }

    .about-services-note a {
        color: var(--clr-accent);
        text-decoration: underline;
        text-decoration-color: rgba(26,58,92,.3);
    }

        .about-services-note a:hover {
            text-decoration-color: var(--clr-accent);
        }


/* ── 25. ABOUT — MISSION & VISION ──────────────────────── */
.mission-vision {
    padding: var(--section-pad) 0;
    background: var(--clr-charcoal);
}

.mv-header {
    margin-bottom: 48px;
}

    .mv-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.15;
    }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.mv-card {
    background: rgba(255,255,255,.03);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: background var(--dur-fast);
}

    .mv-card:hover {
        background: rgba(255,255,255,.06);
    }

.mv-card-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mv-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-style: italic;
    color: var(--clr-accent-2);
    opacity: .7;
}

.mv-card-label h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 300;
    color: var(--clr-white);
}

.mv-body {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    flex: 1;
}

.mv-accent-line {
    width: 40px;
    height: 2px;
    background: var(--clr-accent-2);
    opacity: .6;
    border-radius: 1px;
}


/* ── 26. ABOUT — WHY PNMS ──────────────────────────────── */
.why-pnms {
    padding: var(--section-pad) 0;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
}

.why-header {
    margin-bottom: 48px;
}

    .why-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-ink);
        line-height: 1.15;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 32px 28px;
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--dur-fast);
}

    .why-item:hover {
        background: var(--clr-bg);
    }

    .why-item:nth-child(3n) {
        border-right: none;
    }

    .why-item:nth-last-child(-n+3) {
        border-bottom: none;
    }

.why-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.why-item:hover .why-icon {
    border-color: var(--clr-accent);
    background: rgba(26,58,92,.06);
}

.why-item h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-ink);
    line-height: 1.25;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.65;
}


/* ── 27. ABOUT — RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item:nth-child(3n) {
        border-right: 1px solid var(--clr-border);
    }

    .why-item:nth-child(2n) {
        border-right: none;
    }

    .why-item:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--clr-border);
    }

    .why-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 36px 28px;
    }

        .mv-card:first-child {
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
}

@media (max-width: 800px) {
    .coverage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-who-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-item {
        border-right: none;
    }

        .why-item:nth-child(3n) {
            border-right: none;
        }

        .why-item:nth-child(2n) {
            border-right: none;
        }

        .why-item:nth-last-child(-n+3) {
            border-bottom: 1px solid var(--clr-border);
        }

        .why-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 540px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .about-who-highlights {
        grid-template-columns: 1fr 1fr;
    }
}


/* ══════════════════════════════════════════════════════════
   SERVICES PAGE (services.php)
══════════════════════════════════════════════════════════ */

/* ── 28. SERVICES — QUICK NAV ──────────────────────────── */
.services-quicknav {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.quicknav-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 12px;
}

.quicknav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .quicknav-links a {
        font-size: 11.5px;
        font-weight: 500;
        color: rgba(255,255,255,.55);
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        padding: 5px 12px;
        border-radius: 20px;
        transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
    }

        .quicknav-links a:hover {
            background: rgba(200,169,110,.15);
            border-color: var(--clr-accent-2);
            color: var(--clr-accent-2);
        }


/* ── 29. SERVICES — SERVICE SECTIONS ───────────────────── */
.svc-section {
    padding: var(--section-pad) 0;
    border-bottom: 1px solid var(--clr-border);
}

.svc-light {
    background: var(--clr-white);
}

    .svc-light:nth-child(even) {
        background: var(--clr-bg);
    }

.svc-dark {
    background: var(--clr-charcoal);
    border-bottom-color: rgba(255,255,255,.07);
}

.svc-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

    .svc-grid:has(.svc-img-panel) {
        grid-template-columns: 160px minmax(200px, 320px) 1fr;
    }

.svc-img-panel {
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    border-radius: 6px;
    overflow: hidden;
    position: sticky;
    top: calc(var(--total-h) + 24px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

    .svc-img-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

.svc-section:hover .svc-img-panel img {
    transform: scale(1.03);
}

.svc-grid-reverse {
    direction: rtl;
}

    .svc-grid-reverse > * {
        direction: ltr;
    }

.svc-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: sticky;
    top: calc(var(--total-h) + 24px);
}

.svc-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--clr-border);
    line-height: 1;
    letter-spacing: -.02em;
}

.svc-dark .svc-num {
    color: rgba(255,255,255,.1);
}

.svc-icon-lg {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--clr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
}

.svc-dark .svc-icon-lg {
    border-color: rgba(255,255,255,.15);
    color: var(--clr-accent-2);
}

.svc-iso-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(26,58,92,.08);
    border: 1px solid rgba(26,58,92,.2);
    padding: 4px 10px;
    border-radius: 3px;
}

.svc-iso-badge-light {
    color: var(--clr-accent-2);
    background: rgba(200,169,110,.1);
    border-color: rgba(200,169,110,.25);
}

.svc-cta-side {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: .05em;
    transition: letter-spacing var(--dur-fast);
}

    .svc-cta-side:hover {
        letter-spacing: .09em;
    }

.svc-cta-light {
    color: var(--clr-accent-2);
}

.svc-body h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.1;
    margin-bottom: 24px;
}

.svc-dark .svc-body h2 {
    color: var(--clr-white);
}

.svc-body h2 em {
    font-style: italic;
    color: var(--clr-accent);
}

.svc-dark .svc-body h2 em {
    color: var(--clr-accent-2);
}

.svc-lead p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

    .svc-lead p:last-child {
        margin-bottom: 24px;
    }

.svc-lead-light p {
    color: rgba(255,255,255,.58);
}

    .svc-lead-light p strong {
        color: rgba(255,255,255,.85);
    }

.svc-deliverables-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-accent-2);
    margin-bottom: 14px;
    margin-top: 8px;
}

.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-top: 8px;
}

.svc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-mid);
    line-height: 1.5;
}

    .svc-feature-item svg {
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--clr-accent);
    }

.svc-features-light .svc-feature-item {
    color: rgba(255,255,255,.55);
}

    .svc-features-light .svc-feature-item svg {
        color: var(--clr-accent-2);
    }

.svc-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(200,169,110,.08);
    border: 1px solid rgba(200,169,110,.2);
    border-left: 3px solid var(--clr-accent-2);
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

    .svc-alert-box svg {
        flex-shrink: 0;
        color: var(--clr-accent-2);
        margin-top: 1px;
    }

    .svc-alert-box p {
        font-size: 13px;
        color: rgba(255,255,255,.65);
        line-height: 1.55;
    }

.svc-process {
    margin-top: 8px;
}

.svc-process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    overflow: hidden;
}

.svc-process-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--clr-bg);
    padding: 18px 16px;
    transition: background var(--dur-fast);
}

    .svc-process-step:hover {
        background: var(--clr-cream);
    }

    .svc-process-step span {
        font-family: var(--font-display);
        font-size: 12px;
        font-style: italic;
        color: var(--clr-accent-2);
        flex-shrink: 0;
        padding-top: 1px;
    }

    .svc-process-step p {
        font-size: 13px;
        color: var(--clr-mid);
        line-height: 1.55;
    }

.svc-training-formats {
    margin-top: 8px;
}

.svc-format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    overflow: hidden;
}

.svc-format-item {
    background: var(--clr-bg);
    padding: 20px 18px;
    transition: background var(--dur-fast);
}

    .svc-format-item:hover {
        background: var(--clr-cream);
    }

    .svc-format-item h5 {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 600;
        color: var(--clr-accent);
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .svc-format-item p {
        font-size: 12px;
        color: var(--clr-muted);
        line-height: 1.55;
    }

.svc-partners {
    margin-top: 28px;
}

.svc-partners-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 12px;
}

.svc-partner-logos {
    display: flex;
    gap: 12px;
}

.svc-partner-logo {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    line-height: 1.4;
}

    .svc-partner-logo small {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: var(--clr-muted);
        letter-spacing: .04em;
    }

.svc-halal-areas {
    margin-top: 8px;
    margin-bottom: 20px;
}

.svc-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.svc-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-accent);
    background: rgba(26,58,92,.07);
    border: 1px solid rgba(26,58,92,.15);
    padding: 5px 12px;
    border-radius: 20px;
}


/* ══════════════════════════════════════════════════════════
   ERM PAGE (erm.php)
══════════════════════════════════════════════════════════ */

/* ── 30. ERM — HERO CARD ───────────────────────────────── */
/* Page hero modifier — darker overlay */
.page-hero-erm .page-hero-bg::after {
    background: linear-gradient(135deg, rgba(5,13,24,0.95) 0%, rgba(14,34,64,0.88) 40%, rgba(26,58,92,0.82) 70%, rgba(10,22,40,0.93) 100%);
}

.erm-hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.erm-hero-card {
    margin-top: 40px;
    max-width: 560px;
}

.erm-hero-card-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.erm-card-stat {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.erm-stat-val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1;
}

.erm-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    line-height: 1.3;
    letter-spacing: .04em;
}

.erm-card-divider {
    width: 1px;
    background: rgba(255,255,255,.08);
    align-self: stretch;
}


/* ── 31. ERM — OVERVIEW ────────────────────────────────── */
.erm-overview {
    padding: var(--section-pad) 0;
    background: var(--clr-white);
}

.erm-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}

.erm-overview-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.1;
    margin-bottom: 24px;
}

    .erm-overview-text h2 em {
        font-style: italic;
        color: var(--clr-accent);
    }

.erm-overview-text p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.erm-overview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.erm-overview-card {
    background: var(--clr-bg);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background var(--dur-fast);
}

    .erm-overview-card:hover {
        background: var(--clr-cream);
    }

.erm-ov-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.erm-overview-card:hover .erm-ov-icon {
    border-color: var(--clr-accent);
    background: rgba(26,58,92,.06);
}

.erm-overview-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-accent);
    line-height: 1.25;
}

.erm-overview-card p {
    font-size: 12.5px;
    color: var(--clr-muted);
    line-height: 1.6;
}


/* ── 32. ERM — FEATURES ────────────────────────────────── */
.erm-features {
    padding: var(--section-pad) 0;
    background: var(--clr-charcoal);
}

.erm-features-header {
    margin-bottom: 48px;
}

    .erm-features-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-white);
        margin-bottom: 8px;
    }

.erm-features-lead {
    font-size: 15px;
    color: rgba(255,255,255,.45);
}

.erm-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.erm-feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,.03);
    padding: 24px 22px;
    transition: background var(--dur-fast);
}

    .erm-feature-row:hover {
        background: rgba(255,255,255,.07);
    }

.erm-feature-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-2);
    flex-shrink: 0;
}

.erm-feature-row h5 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.erm-feature-row p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}


/* ── 33. ERM — PILLARS ─────────────────────────────────── */
.erm-pillars {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.erm-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.erm-pillar {
    background: var(--clr-white);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.erm-pillar-featured {
    background: var(--clr-accent);
}

.erm-pillar-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-style: italic;
    color: var(--clr-accent-2);
    opacity: .8;
}

.erm-pillar-featured .erm-pillar-num {
    color: rgba(255,255,255,.4);
    opacity: 1;
}

.erm-pillar h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.25;
}

.erm-pillar-featured h3 {
    color: var(--clr-white);
}

.erm-pillar p {
    font-size: 13.5px;
    color: var(--clr-muted);
    line-height: 1.7;
}

.erm-pillar-featured p {
    color: rgba(255,255,255,.65);
}


/* ── 34. ERM — DEMO ────────────────────────────────────── */
.erm-demo {
    padding: var(--section-pad) 0;
    background: var(--clr-white);
}

.erm-demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.erm-demo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.1;
    margin-bottom: 16px;
}

.erm-demo-text p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.erm-demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

    .erm-demo-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--clr-mid);
    }

        .erm-demo-list li svg {
            color: var(--clr-accent);
            flex-shrink: 0;
        }

.erm-demo-card {
    background: var(--clr-charcoal);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.erm-demo-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.erm-demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.erm-dot-red {
    background: #e05252;
}

.erm-dot-amber {
    background: var(--clr-accent-2);
}

.erm-dot-green {
    background: #4a9b6a;
}

.erm-demo-card-title {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

.erm-demo-bars {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.erm-demo-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.erm-bar-label {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    width: 80px;
    flex-shrink: 0;
    letter-spacing: .04em;
}

.erm-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,.07);
    border-radius: 3px;
    overflow: hidden;
}

.erm-bar-fill {
    height: 100%;
    border-radius: 3px;
    opacity: .8;
}

.erm-bar-val {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.3);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
    letter-spacing: .06em;
}

.erm-demo-card-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 10px;
    color: rgba(255,255,255,.25);
    letter-spacing: .05em;
}


/* ── 35. ERM + SERVICES — RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
    .svc-format-grid {
        grid-template-columns: 1fr 1fr;
    }

    .erm-overview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .erm-overview-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .erm-pillars-grid {
        grid-template-columns: 1fr;
    }

    .erm-pillar {
        padding: 32px 28px;
    }

    .erm-demo-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .erm-features-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid:has(.svc-img-panel) {
        grid-template-columns: 160px 1fr;
    }

    .svc-img-panel {
        display: none;
    }
}

@media (max-width: 900px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

        .svc-grid:has(.svc-img-panel) {
            grid-template-columns: 1fr;
        }

    .svc-img-panel {
        display: block;
        min-height: 220px;
        max-height: 280px;
        position: static;
    }

    .svc-sidebar {
        flex-direction: row;
        align-items: center;
        position: static;
        flex-wrap: wrap;
    }

    .svc-grid-reverse {
        direction: ltr;
    }

    .svc-features {
        grid-template-columns: 1fr;
    }

    .svc-process-steps {
        grid-template-columns: 1fr;
    }

    .erm-overview-cards {
        grid-template-columns: 1fr 1fr;
    }

    .erm-hero-card-inner {
        flex-direction: column;
    }

    .erm-card-divider {
        width: auto;
        height: 1px;
    }
}

@media (max-width: 700px) {
    .svc-format-grid {
        grid-template-columns: 1fr;
    }

    .erm-overview-cards {
        grid-template-columns: 1fr;
    }

    .quicknav-links a {
        font-size: 10.5px;
        padding: 4px 10px;
    }
}


/* ══════════════════════════════════════════════════════════
   CONTACT PAGE (contact.php)
══════════════════════════════════════════════════════════ */

/* ── 36. CONTACT — LAYOUT ──────────────────────────────── */
.contact-body {
    padding: var(--section-pad) 0;
    background: var(--clr-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: flex-start;
}


/* ── 37. CONTACT — INFO PANEL ──────────────────────────── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: sticky;
    top: calc(var(--total-h) + 32px);
}

.contact-info-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.2;
    margin-bottom: 14px;
}

.contact-info-lead {
    font-size: 14.5px;
    color: var(--clr-mid);
    line-height: 1.75;
}

    .contact-info-lead strong {
        color: var(--clr-accent);
        font-weight: 600;
    }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--dur-fast);
}

    .contact-detail-item:last-child {
        border-bottom: none;
    }

    .contact-detail-item:hover {
        background: var(--clr-cream);
    }

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
    background: var(--clr-white);
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.contact-detail-item:hover .contact-detail-icon {
    border-color: var(--clr-accent);
    background: rgba(26,58,92,.06);
}

.contact-detail-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 4px;
}

.contact-detail-body p,
.contact-detail-body a {
    font-size: 13.5px;
    color: var(--clr-mid);
    line-height: 1.65;
    transition: color var(--dur-fast);
}

    .contact-detail-body a:hover {
        color: var(--clr-accent);
    }

.contact-detail-sub {
    font-size: 11.5px !important;
    color: var(--clr-muted) !important;
    margin-top: 2px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--clr-mid);
    padding: 8px 14px;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    background: var(--clr-white);
    transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}

    .contact-social-btn:hover {
        color: var(--clr-accent);
        border-color: var(--clr-accent);
        background: rgba(26,58,92,.04);
    }

.quick-link-flex {
    display: flex;
    gap: 12px;
    padding-bottom: 4px;
}

.contact-quick-links.full-width {
    width: 100%;
    max-width: var(--max-w);
    margin: 24px auto 0;
    padding: 0 var(--pad-x);
}

.quick-link-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-accent);
    background: rgba(26,58,92,.05);
    border: 1px solid rgba(26,58,92,.1);
    border-radius: 4px;
    padding: 7px 10px;
    text-align: center;
    transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
    white-space: nowrap;
}

    .quick-link-item:hover {
        background: var(--clr-accent);
        border-color: var(--clr-accent);
        color: var(--clr-white);
    }


/* ── 38. CONTACT — FORM ────────────────────────────────── */
.contact-form-wrapper {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: clamp(28px, 4vw, 52px);
}

.contact-form-header {
    margin-bottom: 32px;
}

    .contact-form-header h2 {
        font-family: var(--font-display);
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 300;
        color: var(--clr-ink);
        line-height: 1.2;
    }

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--clr-mid);
}

.form-required {
    color: var(--clr-accent);
    margin-left: 2px;
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--clr-ink);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 11px 14px;
    transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

    .form-input::placeholder {
        color: #bbb;
        font-size: 13.5px;
    }

    .form-input:focus {
        border-color: var(--clr-accent);
        background: var(--clr-white);
        box-shadow: 0 0 0 3px rgba(26,58,92,.07);
    }

    .form-input:invalid:not(:placeholder-shown) {
        border-color: #d94f4f;
    }

.input-error {
    border-color: #d94f4f !important;
    box-shadow: 0 0 0 3px rgba(217,79,79,.08) !important;
}

.form-select-wrapper {
    position: relative;
}

.form-select {
    cursor: pointer;
    padding-right: 36px;
}

.select-caret {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--clr-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 11.5px;
    color: var(--clr-muted);
    line-height: 1.55;
    max-width: 340px;
}

    .form-privacy svg {
        flex-shrink: 0;
        color: var(--clr-accent);
        margin-top: 1px;
    }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 4px;
    border: 1.5px solid var(--clr-accent);
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}

    .btn-submit:hover {
        background: transparent;
        color: var(--clr-accent);
        transform: translateY(-1px);
    }

    .btn-submit:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

    .form-alert[hidden] {
        display: none;
    }

    .form-alert svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

.form-alert--success {
    background: rgba(26,92,26,.06);
    border: 1px solid rgba(26,92,26,.18);
    color: #1a5c1a;
    border-left: 3px solid #2e7d32;
}

.form-alert--error {
    background: rgba(185,28,28,.05);
    border: 1px solid rgba(185,28,28,.18);
    color: #b91c1c;
    border-left: 3px solid #d94f4f;
}

    .form-alert--error a {
        color: #b91c1c;
        text-decoration: underline;
    }


/* ── 39. CONTACT — MAP STRIP ───────────────────────────── */
.contact-map {
    height: 280px;
    border-top: 1px solid var(--clr-border);
}

.map-inner {
    height: 100%;
    width: 100%;
    position: relative;
}

    .map-inner iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--clr-cream);
    color: var(--clr-muted);
    text-align: center;
}

    .map-placeholder svg {
        color: var(--clr-accent);
        opacity: .5;
    }

    .map-placeholder p {
        font-size: 14px;
        color: var(--clr-mid);
        line-height: 1.65;
    }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-accent);
    padding: 8px 18px;
    border: 1px solid var(--clr-accent);
    border-radius: 4px;
    margin-top: 4px;
    transition: background var(--dur-fast), color var(--dur-fast);
}

    .map-link:hover {
        background: var(--clr-accent);
        color: var(--clr-white);
    }


/* ── 40. CONTACT — RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .contact-info {
        position: static !important;
    }
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr !important;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-link-flex {
        flex-wrap: wrap;
        gap: 8px;
    }

    .quick-link-item {
        flex: 0 0 auto;
    }

    .contact-map {
        height: 220px;
    }
}


/* ══════════════════════════════════════════════════════════
   41. GLOBAL SCROLL MARGIN
══════════════════════════════════════════════════════════ */
section {
    scroll-margin-top: var(--total-h);
}

#contact-form {
    scroll-margin-top: calc(var(--total-h) + 95px);
}
