@font-face {
    font-family: Akira;
    src: url('assets/fonts/akira-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url('assets/fonts/montserrat-semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url('assets/fonts/montserrat-bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url('assets/fonts/montserrat-lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #C8A24D;
    --secondary: #2F3437;
    --accent: #B88C35;
    --background: #FFFFFF;
    --surface: #F8F9FA;
    --text: #24272B;
    --text-light: #555555;
    --heading: #1B1D20;
    --button: #2F3437;
    --button-hover: #4A4F54;
    --footer: #1B1D20;
    --footer-text: #FFFFFF;
    --navbar: #1B1D20;
    --navbar-text: #FFFFFF;
    --border: #E8E8E8;
    --success: #4C7A58;
    --warning: #B88C35;
    --danger: #8A4D4D;
    --gray: #7B8085;

    /* Existing stylesheet aliases */
    --navy: var(--secondary);
    --yellow: var(--primary);
}

body {
    font-family: Montserrat, Arial, sans-serif;
    background: var(--background);
    color: var(--text-light);
}

::selection {
    background: rgba(200, 162, 77, 0.22);
    color: var(--heading);
}

h1,
h2,
h3,
.brand,
.metrics b,
.numbers b,
.hero-stats b,
.impact-stat b,
.recognition-grid b,
.map-card b,
.timeline-grid b,
.signature-cards span,
.process-line i {
    font-family: Akira, Montserrat, sans-serif !important;
    letter-spacing: 0.02em;
    color: var(--heading);
}

p,
li,
small,
span,
label,
.details a,
.details p,
.intro div > p,
.card p,
.contact-copy > p,
.service-grid p,
.project-grid p,
.news-grid p,
.timeline-grid p {
    color: var(--text-light);
}

.nav {
    background: rgba(27, 29, 32, 0.34) !important;
    border-bottom: 1px solid var(--border) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}

.brand,
.brand b {
    color: var(--navbar-text) !important;
}

.brand small {
    color: #FFFFFF !important;
}

.brand i,
.gold,
.eyebrow.gold {
    color: var(--primary) !important;
}

nav a {
    color: var(--navbar-text) !important;
    transition: color .25s ease, border-color .25s ease, opacity .25s ease;
}

nav a:hover,
nav .active {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.yellow,
.button.yellow {
    background: var(--button) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--button) !important;
    box-shadow: 0 15px 30px rgba(27, 29, 32, 0.14);
}

.button.yellow:hover {
    background: var(--button-hover) !important;
    border-color: var(--button-hover) !important;
    color: #FFFFFF !important;
}

.outline {
    background: transparent !important;
    border: 1px solid var(--secondary) !important;
    color: var(--secondary) !important;
}

.outline:hover {
    background: var(--secondary) !important;
    color: #FFFFFF !important;
}

.hero-overlay,
.shade {
    background: linear-gradient(140deg, rgba(20,22,25,.92) 0%, rgba(32,35,39,.78) 52%, rgba(200,162,77,.22) 100%) !important;
}

.slide {
    overflow: hidden;
}

.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.image-panel.has-site-video {
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.image-panel.has-site-video .panel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.image-panel.has-site-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(20,22,25,.55), rgba(20,22,25,.2));
    z-index: 1;
}

.image-panel.has-site-video button,
.image-panel.has-site-video span {
    position: relative;
    z-index: 2;
}

#home .hero {
    min-height: 100vh;
    height: 100vh;
}

#home .hero-copy {
    top: 50% !important;
    transform: translateY(-44%);
    max-width: 760px;
}

#home .hero h1,
#home .hero h1 span,
#home .hero h1 em {
    font-size: clamp(60px, 7.1vw, 82px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0.4px;
}

#home .hero .intro {
    max-width: 610px;
    font-size: 18px !important;
    line-height: 1.72 !important;
    display: inline-block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(20, 22, 25, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

#home .hero-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

#home .hero-cta-row .button {
    min-width: 210px;
    text-align: center;
    border-radius: 12px;
}

#home .hero-cta-row .button.yellow {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-color: var(--accent) !important;
    color: #1B1D20 !important;
}

#home .hero-cta-row .button.outline {
    border-color: rgba(255,255,255,.78) !important;
    color: #FFFFFF !important;
    background: rgba(255,255,255,.06) !important;
}

#home .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    max-width: 760px;
}

#home .hero-trust-row p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#home .hero-trust-row b {
    display: block;
    color: #FFFFFF !important;
    font-size: 21px;
    line-height: 1.05;
}

#home .hero-trust-row span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.86) !important;
    font-size: 11px;
    line-height: 1.35;
}

#home .hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

#home .hero-scroll-cue span {
    font-size: 10px;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,.82) !important;
}

#home .hero-scroll-cue i {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,.12));
    animation: heroCue 1.8s ease-out infinite;
}

@keyframes heroCue {
    0% { transform: translateY(-2px); opacity: .35; }
    60% { transform: translateY(7px); opacity: 1; }
    100% { transform: translateY(12px); opacity: .15; }
}

.hero h1,
.hero h1 span,
.hero h1 em,
.hero p,
.hero .eyebrow,
.hero-content h1,
.hero-content h1 span,
.hero-content h1 em,
.hero-content p,
.hero-copy h1,
.hero-copy h1 span,
.hero-copy h1 em,
.hero-copy p,
.copy h1,
.copy h1 span,
.copy h1 em,
.copy p {
    color: #FFFFFF !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.hero .intro,
.hero-copy .intro,
.hero-content .intro,
.copy .intro {
    color: rgba(255,255,255,.92) !important;
}

.hero-stats {
    background: rgba(20,22,25,.34) !important;
    border-color: rgba(255,255,255,.28) !important;
}

.hero-stats p,
.hero-stats span,
.hero-stats small {
    color: rgba(255,255,255,.9) !important;
}

.intro,
.projects,
.services,
.project-list,
.contact-main,
.timeline,
.global,
.consultation,
.story,
.metrics,
.assurances,
.process,
.testimonials,
.news,
.cta,
section {
    background: var(--background);
}

.card,
.panel,
.filter button,
.map-card,
.timeline-grid article,
.service-grid article,
.news-grid article,
.signature-cards article,
.sector-grid article,
.recognition-grid article,
.quote-box,
.contact-form {
    background: var(--surface) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border-radius: 16px;
}

.details article,
input,
textarea,
select,
th,
td,
.table,
.table td,
.table th {
    border-color: var(--border) !important;
}

.metrics b,
.numbers b,
.recognition-grid b,
.timeline-grid b,
.signature-cards span,
.sector-grid span,
.impact-stat b {
    color: var(--heading) !important;
}

a {
    color: var(--secondary);
}

a:hover {
    color: var(--accent);
}

.assurances i,
.service-grid article i,
.icon,
.badge,
.eyebrow,
.stats i,
.counter i {
    color: var(--accent) !important;
}

.assurances b {
    color: var(--heading) !important;
}

.assurances small,
.assurances p,
.assurances span {
    color: var(--text-light) !important;
}

.assurances i:hover,
.service-grid article i:hover,
.icon:hover,
.badge:hover,
.stats i:hover,
.counter i:hover {
    color: var(--secondary) !important;
}

.progress,
.progress-bar,
.line,
.divider,
hr {
    background: var(--border);
    border-color: var(--border) !important;
}

.progress i,
.progress .value,
.progress-bar .value {
    background: var(--accent) !important;
}

.hero-stats,
.hero-controls,
.hero-label {
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(232,232,232,.55) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.hero-stats b,
.hero-controls button,
.hero-label,
.hero-controls .dots button {
    color: #FFFFFF !important;
}

.hero-controls button,
.hero-controls .dots button {
    background: rgba(255,255,255,.14) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
}

.hero-controls .dots button.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.filter button.active,
.filter button:hover {
    background: var(--secondary) !important;
    color: #FFFFFF !important;
    border-color: var(--secondary) !important;
}

.project-callout,
.consultation,
.global,
footer {
    background: var(--footer) !important;
}

.project-callout h2,
.consultation h2,
.global h2,
footer h2,
footer h3,
footer h4 {
    color: #FFFFFF !important;
}

.project-callout p,
.consultation p,
.global p,
footer p {
    color: rgba(255,255,255,.75) !important;
}

.project-grid article,
.service-grid article,
.timeline-grid article,
.news-grid article,
.signature-cards article,
.sector-grid article,
.recognition-grid article,
.card,
.panel {
    overflow: hidden;
}

.project-grid article,
.project-grid article span,
.project-grid article h3,
.project-grid article small,
.project-grid article a {
    color: #FFFFFF !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.42);
}

#home .project-grid article span {
    font-size: 10px !important;
    letter-spacing: 1.2px;
}

#home .project-grid article h3 {
    font-size: 26px !important;
    line-height: 1.02 !important;
}

#home .project-grid article small {
    font-size: 12px !important;
}

#home .sectors .title-row h2,
#home .sectors h2 {
    font-size: clamp(34px, 4.2vw, 48px) !important;
    line-height: 1.03 !important;
}

#home .sector-grid h3 {
    font-size: 24px !important;
    line-height: 1.05 !important;
}

#home .sector-grid p {
    font-size: 11px !important;
}

/* Slightly reduce heading scale site-wide while preserving hierarchy */
h1 {
    font-size: clamp(42px, 5.8vw, 68px) !important;
}

h2 {
    font-size: clamp(30px, 4.1vw, 48px) !important;
    line-height: 1.05 !important;
}

h3 {
    font-size: clamp(22px, 2.8vw, 34px) !important;
    line-height: 1.08 !important;
}

@media (max-width: 920px) {
    #home .project-grid article h3 {
        font-size: 22px !important;
    }

    #home .sector-grid h3 {
        font-size: 21px !important;
    }
}

@media (max-width: 560px) {
    #home .project-grid article h3 {
        font-size: 19px !important;
    }

    #home .project-grid article small {
        font-size: 11px !important;
    }

    #home .sectors .title-row h2,
    #home .sectors h2 {
        font-size: 31px !important;
    }

    #home .sector-grid h3 {
        font-size: 19px !important;
    }
}

#home .services .service-grid article {
    position: relative;
    background: #FFFFFF !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 14px 36px rgba(27, 29, 32, 0.08) !important;
    transition: transform .32s ease-out, box-shadow .32s ease-out, border-color .32s ease-out;
}

#home .services .service-grid article::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

#home .services .service-grid article:nth-child(1),
#home .services .service-grid article:nth-child(4) {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%) !important;
}

#home .services .service-grid article:nth-child(2),
#home .services .service-grid article:nth-child(5) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FCF9F2 100%) !important;
}

#home .services .service-grid article:nth-child(3),
#home .services .service-grid article:nth-child(6) {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 100%) !important;
}

#home .services .service-grid article:hover {
    transform: translateY(-7px);
    border-color: rgba(184, 140, 53, 0.45) !important;
    box-shadow: 0 22px 44px rgba(27, 29, 32, 0.14) !important;
}

#home .services .service-grid article i {
    color: var(--accent) !important;
    text-shadow: 0 6px 14px rgba(184, 140, 53, 0.26);
}

#home .services .service-grid article b {
    color: var(--heading) !important;
}

.project-grid article a:hover {
    color: var(--primary) !important;
}

.project-grid article:hover,
.service-grid article:hover,
.timeline-grid article:hover,
.news-grid article:hover,
.signature-cards article:hover,
.sector-grid article:hover,
.recognition-grid article:hover,
.card:hover,
.panel:hover {
    box-shadow: 0 20px 50px rgba(27, 29, 32, .12);
}

.badge,
.label,
.tag {
    background: var(--primary) !important;
    color: var(--secondary) !important;
    border: 1px solid var(--border) !important;
}

.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }

.btn-primary,
button.btn-primary {
    background: var(--button) !important;
    border-color: var(--button) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
button.btn-primary:hover {
    background: var(--button-hover) !important;
    border-color: var(--button-hover) !important;
}

.btn-outline-primary,
button.btn-outline-primary {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-primary:hover,
button.btn-outline-primary:hover {
    background: var(--secondary) !important;
    color: #FFFFFF !important;
}

footer {
    background: var(--footer) !important;
    color: var(--footer-text) !important;
    border-top: 1px solid var(--border);
}

footer .brand i {
    color: var(--primary) !important;
}

footer .brand,
footer span,
footer a {
    color: var(--footer-text) !important;
}

input,
textarea,
select {
    background: var(--surface) !important;
    color: var(--text) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray);
}

@media (max-width: 920px) {
    #home .hero {
        min-height: 760px;
        height: 760px;
    }

    #home .hero-copy {
        transform: none;
        top: 142px !important;
    }

    #home .hero h1,
    #home .hero h1 span,
    #home .hero h1 em {
        font-size: 46px !important;
        line-height: 1.03 !important;
    }

    #home .hero .intro {
        font-size: 15px !important;
        padding: 10px 12px;
    }

    #home .hero-cta-row {
        flex-wrap: wrap;
    }

    #home .hero-cta-row .button {
        min-width: 0;
        width: 100%;
    }

    #home .hero-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav {
        gap: 12px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 84px);
        font-size: 18px !important;
        gap: 6px !important;
    }

    .brand i {
        font-size: 24px !important;
    }

    .brand small {
        font-size: 6px !important;
        letter-spacing: 1.5px !important;
        margin-top: 5px !important;
    }

    .menu {
        margin-left: auto !important;
        flex-shrink: 0;
        position: relative;
        z-index: 12;
    }

    .hero h1 {
        font-size: 44px !important;
        line-height: 1.04 !important;
    }

    .hero-copy,
    .hero-content,
    .copy {
        max-width: min(92vw, 560px) !important;
    }

    .hero-copy > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow),
    .copy > p:not(.eyebrow),
    .intro {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    nav {
        background: var(--navbar) !important;
        border: 1px solid var(--border) !important;
    }
}

@media (max-width: 560px) {
    #home .hero {
        min-height: 700px;
        height: 700px;
    }

    #home .hero-copy {
        top: 124px !important;
    }

    #home .hero-trust-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #home .hero h1,
    #home .hero h1 span,
    #home .hero h1 em {
        font-size: 38px !important;
        line-height: 1.05 !important;
    }

    #home .hero .intro {
        font-size: 14px !important;
        padding: 9px 11px;
    }

    .brand {
        font-size: 16px !important;
    }

    .brand i {
        font-size: 22px !important;
    }

    .hero h1 {
        font-size: 36px !important;
        line-height: 1.06 !important;
    }

    .hero-copy > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow),
    .copy > p:not(.eyebrow),
    .intro {
        font-size: 13px !important;
    }
}
