/* --- 1. VARIABLES & RESET --- */
:root {
    /* The Executive Palette */
    --navy-dark: #0f172a;    /* Deepest Navy (Backgrounds) */
    --navy-light: #1e293b;   /* Lighter Navy (Cards) */
    --gold: #c5a059;         /* Architectural Gold */
    --gold-hover: #b08d4b;
    --white: #f8f9fa;
    --text-grey: #94a3b8;    /* Muted text on dark */
    --text-dark: #334155;    /* Dark text on light */
    
    /* Fonts */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

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

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
}

h2 { 
    font-size: 2.2rem; 
}

h3 { 
    font-size: 1.5rem; 
    color: var(--gold); 
}

p { 
    margin-bottom: 1.5rem; 
    font-size: 1.05rem; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

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

/* --- 2. UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bg-dark { 
    background-color: var(--navy-dark); 
}

.bg-darker { 
    background-color: #020617; 
} 

.bg-light { 
    background-color: var(--white); 
    color: var(--text-dark); 
}

.bg-gold { 
    background-color: var(--gold); 
    color: var(--navy-dark); 
}

.divider { 
    width: 60px; 
    height: 4px; 
    background-color: var(--gold); 
    margin-top: 10px; 
}

.divider.dark { 
    background-color: var(--navy-dark); 
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-header);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-gold { 
    background-color: var(--gold); 
    color: var(--navy-dark); 
}

.btn-gold:hover { 
    background-color: var(--gold-hover); 
    border-color: var(--gold-hover); 
}

/* --- 3. NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand { 
    flex-shrink: 0; 
    display: flex; 
    align-items: center; 
}

/* Old hacked CSS */
.nav-logo {
    max-height: 45px; 
    width: auto;
    filter: grayscale(100%) invert(1) brightness(150%);
    mix-blend-mode: screen; 
}

/* FIX: Tighter gap prevents stretching into the logo/button on wide screens */
.nav-links { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center; 
}

.nav-links li { 
    list-style: none; 
}

.nav-links a {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* FIX: Independent font sizing and vertical alignment for the contact button */
.btn-nav {
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    color: var(--gold) !important;
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center; 
}

.btn-nav:hover { 
    background: var(--gold); 
    color: var(--navy-dark) !important; 
}

.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--white); 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* --- 4. SPLIT HERO --- */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-text { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    padding: 4rem; 
    background-color: var(--navy-dark); 
}

.hero-content { 
    max-width: 600px; 
    margin-left: auto; 
}

.hero-image {
    flex: 1;
    background: url('img/kershawglobalnew.webp') no-repeat right center/cover;
    filter: grayscale(100%) contrast(120%) brightness(60%);
    position: relative;
}

.accent-line { 
    width: 40px; 
    height: 4px; 
    background: var(--gold); 
    margin-bottom: 1.5rem; 
}

.lead { 
    color: var(--text-grey); 
    font-size: 1.2rem; 
    margin-bottom: 2.5rem; 
}

/* --- 5. STATS BAR --- */
.stats-bar { 
    background-color: var(--gold); 
    color: var(--navy-dark); 
    padding: 3rem 0; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    text-align: center; 
}

.stat-item { 
    padding: 0 1rem; 
}

.border-left { 
    border-left: 1px solid rgba(0,0,0,0.1); 
}

.stat-number { 
    display: block; 
    font-family: var(--font-header); 
    font-weight: 800; 
    font-size: 2.5rem; 
    line-height: 1; 
    margin-bottom: 0.5rem; 
}

.stat-label { 
    font-family: var(--font-header); 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    font-weight: 600; 
    opacity: 0.8; 
}

/* --- 6. SECTIONS GENERAL --- */
section { 
    padding: 6rem 0; 
}

.section-header { 
    margin-bottom: 4rem; 
}

/* --- 7. ABOUT GRID --- */
.two-col-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.large-text { 
    font-size: 1.25rem; 
    color: var(--white); 
    border-left: 3px solid var(--gold); 
    padding-left: 1.5rem; 
}

.gold-frame { 
    border: 1px solid var(--gold); 
    padding: 10px; 
    filter: grayscale(100%); 
    transition: 0.5s; 
}

.gold-frame:hover { 
    filter: grayscale(0%); 
}

.text-content, .image-content { 
    min-width: 0; 
    max-width: 100%; 
}

/* --- 8. EXPERTISE (CARDS) --- */
.card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
}

.service-card {
    background: white; 
    padding: 2.5rem; 
    border-bottom: 4px solid transparent; 
    transition: 0.3s; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover { 
    border-bottom-color: var(--gold); 
    transform: translateY(-5px); 
}

.icon-box { 
    font-size: 2rem; 
    color: var(--gold); 
    margin-bottom: 1.5rem; 
}

/* --- 9. PORTFOLIO (DOSSIERS) --- */
.dossier-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
}

.dossier-card { 
    background-color: var(--navy-light); 
    border: 1px solid rgba(255,255,255,0.05); 
    padding: 2rem; 
}

.dossier-header { 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    padding-bottom: 1rem; 
    margin-bottom: 1.5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
}

.dossier-header h4 { 
    margin: 0; 
    font-size: 1.1rem; 
    color: var(--gold); 
}

.tag { 
    font-family: var(--font-header); 
    font-size: 0.7rem; 
    background: rgba(255,255,255,0.1); 
    padding: 2px 8px; 
    text-transform: uppercase; 
}

.dossier-body p { 
    font-size: 0.95rem; 
    color: var(--text-grey); 
    margin-bottom: 0.8rem; 
}

.dossier-body strong { 
    color: var(--white); 
}

/* --- 10. LEADERSHIP --- */
.leader-row { 
    display: flex; 
    align-items: center; 
    gap: 4rem; 
    margin-bottom: 4rem; 
}

.leader-row.reverse { 
    flex-direction: row-reverse; 
}

.leader-img img { 
    width: 250px; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 2px solid var(--gold); 
    filter: grayscale(100%); 
}

.leader-info { 
    flex: 1; 
}

.role { 
    font-family: var(--font-header); 
    color: var(--gold); 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    margin-bottom: 1rem; 
}

/* --- 11. CONTACT FORM STYLES --- */
.contact-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 4rem; 
    flex-wrap: wrap; 
}

.contact-info { 
    flex: 1; 
    min-width: 300px; 
}

.contact-info p.mb-4 { 
    margin-bottom: 2rem; 
    color: var(--navy-dark); 
}

.c-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: var(--font-header); 
    font-weight: 600; 
    color: var(--navy-dark); 
    margin-bottom: 1rem; 
}

.contact-form-container {
    flex: 1; 
    min-width: 300px; 
    background: var(--navy-dark); 
    padding: 3rem; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.exec-form label {
    display: block; 
    font-family: var(--font-header); 
    color: var(--gold); 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    margin-bottom: 0.8rem; 
    letter-spacing: 2px; 
    font-weight: 700;
}

.exec-form input, 
.exec-form textarea, 
.exec-form select {
    width: 100%; 
    background: rgba(15, 23, 42, 0.6); 
    border: 1px solid rgba(255,255,255,0.15); 
    padding: 1.2rem; 
    color: var(--white); 
    font-family: var(--font-body); 
    font-size: 1rem; 
    margin-bottom: 2rem; 
    transition: all 0.3s ease;
}

.exec-form input:focus, 
.exec-form textarea:focus, 
.exec-form select:focus {
    border-color: var(--gold); 
    background: rgba(15, 23, 42, 1); 
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); 
    outline: none;
}

.btn-navy { 
    background-color: transparent; 
    color: var(--gold); 
    border: 2px solid var(--gold); 
    width: 100%; 
    font-weight: 800; 
}

.btn-navy:hover { 
    background-color: var(--gold); 
    color: var(--navy-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); 
}

.radio-group { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    padding-top: 0.5rem; 
    padding-bottom: 1rem; 
    flex-wrap: wrap; 
}

.radio-option { 
    display: inline-flex; 
    align-items: center; 
    cursor: pointer; 
    font-size: 0.9rem; 
    color: var(--white); 
    font-weight: 500; 
    transition: color 0.3s; 
}

.radio-option:hover { 
    color: var(--gold); 
}

.radio-option input { 
    margin-right: 0.6rem; 
    width: auto; 
    margin-bottom: 0; 
    accent-color: var(--gold); 
}

.exec-form select {
    font-size: 1.15rem; 
    appearance: none; 
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A059%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; 
    background-position: right 1rem top 50%; 
    background-size: 0.8rem auto;
}

.exec-form option { 
    background: var(--navy-dark); 
    color: var(--white); 
    font-size: 1.15rem; 
    padding: 10px; 
}

.form-row { 
    display: flex; 
    gap: 2rem; 
    margin-bottom: 0.5rem; 
}

.half-width { 
    flex: 1; 
}

.contact-logo { 
    max-width: 250px; 
    margin-bottom: 2rem; 
    mix-blend-mode: multiply; 
    display: block; 
}

/* --- 12. NEW CTA BAR (Replaces Homepage Form) --- */
.cta-bar {
    padding: 4.5rem 0;
    text-align: center;
}

.cta-bar h2 {
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.cta-bar p {
    color: var(--navy-dark);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bar .btn {
    border-color: var(--navy-dark);
    color: var(--navy-dark);
    background: transparent;
}

.cta-bar .btn:hover {
    background: var(--navy-dark);
    color: var(--gold);
}

/* --- 13. BRIEFING ROOM (PRESENTATIONS) --- */
.briefing-list {
    list-style: none;
    padding: 0;
    max-width: 900px; 
    margin: 0 auto;
}

.briefing-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--navy-dark); 
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.briefing-item:hover {
    border-left-color: var(--gold); 
    transform: translateX(10px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--text-grey);
    margin-right: 2rem;
    min-width: 60px;
    text-align: center;
}

.doc-info {
    flex: 1;
}

.doc-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--navy-dark);
}

.doc-meta {
    display: block;
    font-family: var(--font-header);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.doc-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.doc-action {
    margin-left: 2rem;
}

.btn-text {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--navy-dark);
    white-space: nowrap; 
}

.btn-text:hover {
    color: var(--gold);
}

/* --- 14. ARTICLE & BLOG STYLES --- */
.article-header {
    margin-bottom: 3rem;
}

.article-title {
    color: var(--navy-dark);
    font-size: 2.8rem;
    line-height: 1.2;
    text-transform: none; 
    margin-bottom: 1rem;
}

.article-intro {
    color: var(--navy-dark);
    border-left: 4px solid var(--gold);
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    font-size: 1.25rem;
}

.article-body p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dark-text {
    color: var(--navy-dark) !important;
}

footer { 
    background: #000; 
    color: #555; 
    padding: 2rem 0; 
    text-align: center; 
    font-size: 0.8rem; 
}

/* --- TABLET / SMALL LAPTOP MENU SQUEEZE --- */
@media (max-width: 1100px) and (min-width: 769px) {
    nav .container { 
        width: 98%; 
        padding: 0 5px; 
    }
    
    .nav-links { 
        gap: 0.8rem; 
    }
    
    .nav-links a { 
        font-size: 0.7rem; 
    }
    
    .btn-nav { 
        padding: 0.3rem 0.8rem; 
        font-size: 0.75rem; 
    }
}

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
    }
    
    .nav-links {
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background: var(--navy-dark);
        flex-direction: column; 
        padding: 1rem 2rem; 
        border-bottom: 1px solid var(--gold); 
        text-align: center; 
        gap: 0.8rem;
    }
    
    .nav-links.active { 
        display: flex; 
    }
    
    .hero-split { 
        flex-direction: column-reverse; 
        padding-top: 80px; 
        min-height: auto; 
    }
    
    .hero-image { 
        min-height: 200px; 
        height: 30vh; 
        width: 100%; 
        flex: none; 
    }
    
    .hero-text { 
        padding: 3rem 1.5rem; 
        text-align: center; 
    }
    
    .hero-content { 
        margin: 0 auto; 
    }
    
    .accent-line { 
        margin: 0 auto 1.5rem auto; 
    }
    
    h1 { 
        font-size: 1.75rem; 
    } 
    
    h2 { 
        font-size: 1.8rem; 
    }
    
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .border-left { 
        border-left: none; 
        border-top: 1px solid rgba(0,0,0,0.1); 
        padding-top: 1.5rem; 
    }
    
    .card-grid, .dossier-grid { 
        grid-template-columns: 1fr; 
    }
    
    .two-col-grid, .leader-row, .leader-row.reverse { 
        grid-template-columns: 1fr; 
        flex-direction: column; 
        text-align: center; 
        gap: 3rem; 
    }
    
    .contact-wrapper { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .contact-details { 
        flex-direction: column; 
        gap: 1.5rem; 
        align-items: center; 
    }
    
    .contact-form-container { 
        width: 100%; 
        padding: 1.5rem; 
    }
    
    .form-row { 
        flex-direction: column; 
        gap: 0; 
    }
    
    .large-text { 
        border-left: none; 
        padding: 0; 
        margin-bottom: 2rem; 
    }
    
    .leader-img img { 
        margin: 0 auto; 
    }

    /* Briefing Room Mobile Fixes */
    .briefing-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .doc-icon { 
        margin: 0 0 1rem 0; 
    }
    
    .doc-action { 
        margin: 1.5rem 0 0 0; 
    }
    
    .briefing-item:hover { 
        transform: translateY(-5px); 
    } 
}

@media (max-width: 480px) {
    h1 { 
        font-size: 1.5rem; 
    }
    
    .stat-number { 
        font-size: 2rem; 
    }
    
    .btn { 
        width: 100%; 
        text-align: center; 
    } 
    
    .hero-text { 
        padding: 2rem 1rem; 
    }
}

@media (min-width: 900px) { 
    .card-grid, .dossier-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}

@media (min-width: 1400px) { 
    .card-grid, .dossier-grid { 
        grid-template-columns: repeat(4, 1fr); 
    } 
}

/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
    will-change: opacity, transform; 
}

.animate-on-scroll.is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.service-card:nth-child(2) { 
    transition-delay: 0.1s; 
}

.service-card:nth-child(3) { 
    transition-delay: 0.2s; 
}

.dossier-card:nth-child(2) { 
    transition-delay: 0.1s; 
}

.dossier-card:nth-child(3) { 
    transition-delay: 0.2s; 
}