:root {
            --dark-grey: #1F1F1F;
            --medium-grey: #6B6B6B;
            --light-bg: #F7F7F7;
            --red-accent: #C8102E;
            --red-hover: #a80d26;
            --white: #ffffff;
        }

        .brand-limited { font-style: italic; color: var(--red-accent); }

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

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-grey);
            background: var(--white);
            line-height: 1.7;
        }

        /* Header - match homepage */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: #e8e8e8;
            transition: box-shadow 0.3s ease;
        }
        .header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top {
            background: #c9c9c9;
            padding: 0.975rem 5.4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--dark-grey);
        }
        .header-top a { color: var(--dark-grey); text-decoration: none; }
        .header-top a:hover { color: var(--red-accent); }
        .header-top-left, .header-top-right { display: flex; align-items: center; gap: 0.75rem; }
        .header-top svg { width: 14px; height: 14px; flex-shrink: 0; }
        .navbar {
            padding: 2.4rem 5.4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #e8e8e8;
        }
        .logo-wrap { display: flex; align-items: center; text-decoration: none; }
        .logo-img { width: 312px; height: 72px; object-fit: contain; display: block; }
        .nav-links { display: flex; gap: 1rem; list-style: none; }
        .nav-links a {
            font-family: Corbel, 'Lucida Grande', sans-serif;
            font-weight: 700;
            font-size: 13.5px;
            color: var(--dark-grey);
            text-decoration: none;
            padding: 0.5rem 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }
        .nav-links a .nav-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.85; display: flex; align-items: center; justify-content: center; }
        .nav-links a .nav-icon svg { width: 100%; height: 100%; }
        .nav-links a:hover { color: var(--red-accent); }
        .nav-links a.active { color: var(--red-accent); }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: var(--red-accent);
        }
        .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 28px; background: none; border: none; cursor: pointer; padding: 0; z-index: 1001; }
        .hamburger span { display: block; width: 100%; height: 2px; background: var(--dark-grey); transition: all 0.3s ease; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Nav dropdown */
        .nav-dropdown { position: relative; }
        .nav-dropdown .nav-trigger { cursor: pointer; }
        .nav-dropdown .dropdown-arrow { font-size: 0.6em; margin-left: 0.25rem; opacity: 0.7; transition: transform 0.2s ease; }
        .nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
        .nav-dropdown .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 300px;
            background: var(--white);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 4px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-4px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 100;
        }
        .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav-dropdown .dropdown-menu li { margin: 0; }
        .nav-dropdown .dropdown-menu a {
            display: block;
            padding: 0.65rem 1.25rem;
            font-size: 13.5px;
            text-transform: none;
            letter-spacing: 0;
            border-radius: 0;
        }
        .nav-dropdown .dropdown-menu a:hover { background: var(--light-bg); color: var(--red-accent); }
        .nav-dropdown .dropdown-menu .dropdown-divider { height: 0; margin: 0.5rem 0; border-top: 1px solid #eee; list-style: none; }
        .nav-dropdown .dropdown-menu .dropdown-all { font-weight: 700; border-top: 1px solid #eee; margin-top: 0.25rem; padding-top: 0.5rem; }

        /* Page content - offset for fixed header */
        .page-content { padding-top: 180px; }

        /* Page Hero / Inner Banner — photo overlay, last-word accent, chevron mark */
        .page-hero {
            position: relative;
            overflow: hidden;
            color: #fff;
            text-align: center;
            padding: 40px 5.4rem 1.25rem;
            background: #1b1b1b;
        }
        .page-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.06);
            filter: grayscale(0.35) contrast(1.05);
        }
        .page-hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(18,18,18,0.94) 0%, rgba(18,18,18,0.72) 48%, rgba(18,18,18,0.94) 100%),
                linear-gradient(180deg, rgba(18,18,18,0.2), rgba(18,18,18,0.55));
        }
        .page-hero-mesh {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 10%, transparent 72%);
            pointer-events: none;
        }
        .page-hero-mark {
            position: absolute;
            right: 6%;
            top: 50%;
            width: min(220px, 22vw);
            height: auto;
            transform: translateY(-50%);
            opacity: 0.16;
            pointer-events: none;
        }
        .page-hero-inner {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            font-family: Montserrat, "Segoe UI", sans-serif;
            font-weight: 700;
            font-size: clamp(1.85rem, 3.4vw, 2.7rem);
            letter-spacing: -0.08em;
            color: #fff;
            line-height: 1;
            margin: 0;
        }
        .page-hero .hero-last {
            font-style: italic;
            color: var(--red-accent);
            letter-spacing: -0.08em;
        }
        .hero-rule {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: min(200px, 42vw);
            margin: 0.7rem auto 0.55rem;
            color: var(--red-accent);
        }
        .hero-rule span {
            flex: 1;
            height: 1px;
            background: currentColor;
            opacity: 0.85;
        }
        .hero-rule i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
            display: block;
            box-shadow: 0 0 0 4px rgba(200,16,46,0.18);
        }
        .page-hero .subtitle {
            margin: 0;
            font-family: Outfit, "Segoe UI", sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.22em;
            line-height: 1.2;
            text-transform: uppercase;
            color: rgba(255,255,255,0.78);
            white-space: nowrap;
        }

        /* Section base */
        .section {
            padding: 5rem 5.4rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-alt { background: var(--light-bg); }
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            line-height: 1.2;
            letter-spacing: -0.08em;
            color: var(--dark-grey);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .ht-last { color: var(--red-accent); font-style: italic; }
        .branch-highlight { color: var(--dark-grey); font-weight: 700; }
        .div-item { color: var(--dark-grey); font-weight: 700; }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--red-accent);
        }

        /* About Intro - two-column layout */
        .about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 5rem 5.4rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            background: var(--white);
        }
        .about-intro + .section {
            padding-top: 1.5rem;
        }
        .about-intro-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.2;
            letter-spacing: -0.08em;
            color: var(--dark-grey);
            margin-bottom: 1.5rem;
        }
        .about-intro-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-grey);
        }
        .about-intro-image {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .about-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Who We Are */
        .intro-grid {
            width: 100%;
        }
        .intro-text p {
            font-size: 1.05rem;
            color: var(--dark-grey);
            margin-bottom: 1.25rem;
        }
        .intro-text ul {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        .intro-text li {
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }
        .who-we-are-body {
            max-width: 52rem;
        }
        .intro-text ul.who-list {
            list-style: none;
            margin: 0 0 1.75rem;
            padding: 0;
        }
        .intro-text ul.who-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            list-style: none;
            margin-bottom: 0.75rem;
            padding-left: 0;
            font-size: 1.05rem;
            color: var(--dark-grey);
            line-height: 1.55;
        }
        .intro-text ul.who-list a {
            color: var(--dark-grey);
            text-decoration: none;
        }
        .intro-text ul.who-list a:hover {
            color: var(--red-accent);
        }
        .who-box {
            flex: 0 0 8px;
            width: 8px;
            height: 8px;
            margin-top: 0.5em;
            background: #C8102E;
            display: block;
        }
        /* Operating Divisions - cards */
        .divisions-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }
        .division-card {
            padding: 2rem 1.5rem;
            border-radius: 4px;
            text-align: center;
            transition: all 0.3s ease;
        }
        a.division-card {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        a.division-card:focus-visible {
            outline: 2px solid var(--red-accent);
            outline-offset: 2px;
        }
        .division-card-cta {
            display: inline-block;
            margin-top: 0.85rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--red-accent);
        }
        .division-card.card-1 { background: #edf2f7; border: 1px solid #dce3ec; }
        .division-card.card-2 { background: #f3f1ed; border: 1px solid #e3dfdb; }
        .division-card.card-3 { background: #f7f4ed; border: 1px solid #e7e4da; }
        .division-card.card-4 { background: #edf3f3; border: 1px solid #dae3e3; }
        .division-card.card-5 { background: #eff3ed; border: 1px solid #dfe3dc; }
        .division-card:hover {
            border-color: var(--red-accent);
            box-shadow: 0 8px 24px rgba(200,16,46,0.08);
        }
        .division-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1.25rem;
            background: rgba(255,255,255,0.9);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .division-icon svg {
            width: 24px;
            height: 24px;
            color: var(--red-accent);
        }
        .division-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark-grey);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        .division-card p {
            font-size: 0.9rem;
            color: var(--medium-grey);
            line-height: 1.5;
        }

        /* Business Performance */
        .perf-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        .perf-block h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--dark-grey);
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 3px solid var(--red-accent);
        }
        .perf-block ul {
            list-style: none;
            padding: 0;
        }
        .perf-block li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 1rem;
        }
        .perf-block li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1em;
            width: 6px;
            height: 6px;
            background: var(--red-accent);
            border-radius: 50%;
        }
        .perf-highlight {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 4px;
            margin-top: 1rem;
            border-left: 4px solid var(--red-accent);
        }

        /* Mission & Vision */
        .mission-vision-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/images/vision.jpg') center/cover no-repeat;
            position: relative;
        }
        .mission-vision-section .section-title { color: var(--white); }
        .mission-vision-section .section-title::after { background: var(--red-accent); }
        .mission-vision-section .mv-card {
            background: rgba(255,255,255,0.95);
        }
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .mv-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 4px;
            border-top: 4px solid var(--red-accent);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .mv-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--red-accent);
            margin-bottom: 1rem;
        }
        .mv-card p {
            font-size: 1rem;
            color: var(--dark-grey);
        }

        /* Core Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .value-card {
            padding: 2rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .value-card.val-1 { background: #f0f4f8; border: 1px solid #e2e8ef; }
        .value-card.val-2 { background: #f5f3f0; border: 1px solid #e8e4df; }
        .value-card.val-3 { background: #f8f6f0; border: 1px solid #ebe8e0; }
        .value-card.val-4 { background: #f0f5f5; border: 1px solid #e0e8e8; }
        .value-card.val-5 { background: #f2f5f0; border: 1px solid #e4e8e2; }
        .value-card.val-6 { background: #f5f0f5; border: 1px solid #e8e0e8; }
        .value-card:hover {
            border-color: var(--red-accent);
            box-shadow: 0 6px 20px rgba(200,16,46,0.06);
        }
        .value-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--red-accent);
            margin-bottom: 0.75rem;
        }
        .value-card p {
            font-size: 0.95rem;
            color: var(--medium-grey);
            line-height: 1.6;
        }

        /* Business Philosophy */
        .philosophy-content {
            max-width: 800px;
        }
        .philosophy-content p {
            font-size: 1.05rem;
            margin-bottom: 1.25rem;
        }
        .philosophy-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--medium-grey);
            padding: 2rem;
            border-left: 4px solid var(--red-accent);
            background: var(--white);
            margin: 2rem 0;
        }
        .bp-section {
            padding-top: 1.75rem;
            padding-bottom: 2.25rem;
            max-width: none;
            background: #fff;
        }
        .bp-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.15rem;
            align-items: stretch;
        }
        .bp-col {
            background: #f7f7f7;
            border: 1px solid #ececec;
            border-radius: 16px;
            padding: 1.55rem 1.65rem 1.5rem;
        }
        .bp-col h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin: 0 0 1.05rem;
            padding-bottom: 0.55rem;
            color: var(--dark-grey);
            border-bottom: 2px solid var(--red-accent);
        }
        .bp-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 1.14rem;
            color: var(--dark-grey);
            margin: 1.15rem 0 0.4rem;
        }
        .bp-col h4:first-of-type {
            margin-top: 0;
        }
        .bp-col p {
            font-size: 1.22rem;
            line-height: 1.7;
            color: var(--dark-grey);
            margin: 0 0 1rem;
        }
        .bp-col p:last-child {
            margin-bottom: 0;
        }
        .bp-values {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .bp-values li {
            padding: 0.55rem 0 0.55rem 0.95rem;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        .bp-values li:first-child {
            padding-top: 0;
        }
        .bp-values li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }
        .bp-values li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1.05em;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red-accent);
        }
        .bp-values li:first-child::before {
            top: 0.7em;
        }
        .bp-values strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.14rem;
            font-weight: 700;
            color: var(--dark-grey);
            margin-bottom: 0.12rem;
        }
        .bp-values span {
            display: block;
            font-size: 1.14rem;
            color: var(--medium-grey);
            line-height: 1.5;
        }

        /* Risk Management */
        .governance-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 48rem;
        }
        .governance-grid p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--dark-grey);
            padding: 4rem 5.4rem;
            text-align: center;
        }
        .cta-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            line-height: 1.2;
            letter-spacing: -0.08em;
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .cta-section p {
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn {
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cta-btn-primary {
            background: var(--red-accent);
            color: var(--white);
        }
        .cta-btn-primary:hover { background: var(--red-hover); }
        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--dark-grey);
        }

        /* Footer */
        .footer {
            background: #262626;
            padding: 2rem;
            text-align: center;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }
        .footer-social a { color: rgba(255,255,255,0.45); transition: color 0.2s ease; }
        .footer-social a:hover { color: rgba(255,255,255,0.7); }
        .footer-social svg { width: 24px; height: 24px; }
        .footer-copyright {
            font-family: Calibri, 'Segoe UI', sans-serif;
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .divisions-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 992px) {
            .header-top, .navbar, .page-hero, .section, .cta-section { padding-left: 2rem; padding-right: 2rem; }
            .about-intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 2rem; }
            .about-intro-image { order: -1; max-height: 320px; }
            .perf-grid, .mv-grid, .governance-grid, .bp-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .header-top { display: none; }
            .navbar { padding: 1rem 2rem; background: #e8e8e8; }
            .nav-links {
                position: fixed;
                top: 0; right: -100%;
                width: 280px;
                max-width: 85vw;
                height: 100vh;
                background: var(--dark-grey);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.3s ease;
            }
            .nav-links.open { right: 0; }
            .nav-links a { color: var(--white); }
            .hamburger { display: flex; }
            .page-content { padding-top: 100px; }
            .page-hero { padding: 40px 1.25rem 1.25rem; }
            .page-hero-mark { opacity: 0.08; right: -4%; width: 160px; }
            .page-hero h1 { font-size: 1.6rem; }
            .page-hero .subtitle { white-space: normal; }
            .section { padding: 3rem 2rem; }
            .about-intro { padding: 2.5rem 2rem; }
            .logo-img { width: 224px; height: 52px; }
            .divisions-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: 1fr; }
            .nav-dropdown { position: static; }
            .nav-dropdown .dropdown-arrow { display: none; }
            .nav-dropdown .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding: 0.75rem 0 0 1.5rem;
                margin-top: 0.25rem;
                min-width: auto;
            }
            .nav-dropdown .dropdown-menu a { color: rgba(255,255,255,0.85); font-size: 13.5px; padding: 0.5rem 0; }
            .nav-dropdown .dropdown-menu a:hover { background: transparent; color: var(--red-accent); }
            .nav-dropdown .dropdown-menu .dropdown-divider { background: rgba(255,255,255,0.2); }
            .nav-dropdown .dropdown-menu .dropdown-all { color: var(--white); }
        }

/* Who We Are — text left, four-unit pie collage right */
.about-who-page .who-split-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    max-width: none;
    background: #fff;
}
.who-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
    gap: 2rem;
    align-items: stretch;
}
.who-copy {
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.55rem 1.65rem 1.45rem;
}
.about-who-page .who-we-are-body {
    max-width: none;
}
.about-who-page .who-lede {
    font-size: 1.22rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 1.2rem;
}
.about-who-page .who-lede strong {
    font-weight: 700;
    color: var(--dark-grey);
}
.who-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.15rem;
}
.who-col {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 0.85rem 0.95rem 0.7rem;
}
.who-col h3 {
    font-family: Outfit, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 0.55rem;
    padding-bottom: 0.4rem;
    color: var(--medium-grey);
    border-bottom: 2px solid var(--red-accent);
}
.about-who-page .intro-text ul.who-list {
    margin: 0;
}
.about-who-page .intro-text ul.who-list li {
    display: block;
    padding: 0.42rem 0 0.42rem 0.95rem;
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.4;
    position: relative;
    border-bottom: 1px solid #eee;
}
.about-who-page .who-col .who-list li:last-child {
    border-bottom: 0;
}
.about-who-page .intro-text ul.who-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-accent);
}
.about-who-page .intro-text ul.who-list li small {
    display: block;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--medium-grey);
    margin-top: 0.12rem;
}
.who-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}
.who-fact {
    background: #fff;
    border: 1px solid #ececec;
    border-top: 3px solid var(--red-accent);
    border-radius: 12px;
    padding: 0.8rem 0.85rem 0.85rem;
}
.who-fact em {
    display: block;
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--medium-grey);
}
.who-fact strong {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--dark-grey);
    margin: 0.15rem 0 0.1rem;
}
.who-fact span {
    font-size: 0.82rem;
    color: var(--medium-grey);
}

.who-collage-wrap {
    position: relative;
    min-height: 520px;
}
.who-collage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 1.05fr 1fr 1.05fr;
    gap: 8px;
    min-height: 0;
}
.who-tile {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 0;
    background: #d9d4ce;
    text-decoration: none;
}
.who-tile-0 { grid-column: 1; grid-row: 1; }
.who-tile-1 { grid-column: 2; grid-row: 1; }
.who-tile-2 { grid-column: 3; grid-row: 1; }
.who-tile-3 { grid-column: 1; grid-row: 2; }
.who-tile-4 { grid-column: 2 / -1; grid-row: 2; }
.who-tile-5 { grid-column: 1; grid-row: 3; }
.who-tile-6 { grid-column: 2 / -1; grid-row: 3; }
.who-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.who-tile-0 img { object-position: 50% 55%; }
.who-tile-1 img { object-position: 50% 40%; }
.who-tile-2 img { object-position: 50% 55%; }
.who-tile-3 img { object-position: 48% 48%; }
.who-tile-4 img { object-position: 50% 50%; }
.who-tile-5 img { object-position: 50% 18%; }
.who-tile-6 img { object-position: 50% 45%; }
.who-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}
.who-cap {
    position: absolute;
    z-index: 1;
    left: 12px;
    bottom: 10px;
    max-width: calc(100% - 22px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.who-tile:hover img {
    transform: scale(1.06);
}

@media (max-width: 992px) {
    .who-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .who-cols,
    .who-facts {
        grid-template-columns: 1fr;
    }
    .who-collage-wrap {
        min-height: 560px;
    }
}