:root {
    --ink: #102219;
    --green: #000000;
    --green-2: #22543a;
    --orange: #f79421;
    --cream: #f7efe1;
    --paper: #fffaf3;
    --muted: #647267;
    --line: #ded0b8;
    --shadow: 0 22px 70px rgba(16,34,25,.16)
}

{
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Arial,sans-serif;
    font-size: 18px;
    overflow-x: hidden
}

a {
    color: inherit
}

.wrap {
    width: min(100% - 40px,1180px);
    margin-inline:auto}

h1,h2,h3 {
    font-family: Anton,Impact,sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: .01em
}

.hero {
    position: relative;
    min-height: 680px;
    color: #fff;
    overflow: hidden;
    background: #102219
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 42%;
    object-position: center 42%;
    filter: saturate(.96) contrast(.98) brightness(.78)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#05100ae6,#08180fb8 45%,#08180f47 74%,#08180f29),linear-gradient(0deg,#102219c2,#1022191f 44%,#1022194d)
}

.top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 30px
}

.top:before {
    content: "";
    position: absolute;
    inset: 14px -16px 20px;
    background: #06120b70;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    z-index: -1
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: Oswald,Arial,sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14px;
    text-decoration: none
}

.brand img {
    height: 142px;
    width: auto;
    max-width: 260px;
    display: block
}

.brand span {
    display: none
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px
}

.nav a,.nav-button {
    font-family: Oswald,Arial,sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14px;
    font-weight: 800;
    color: #ffffffe6
}

.nav a.active {
    color: #ffd29a
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: default
}

.nav-button:after {
    content: "⌄";
    font-size: 14px;
    color: #ffffffb8;
    transform: translateY(-1px)
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center
}

.service-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-26%,10px);
    width: min(680px,calc(100vw - 40px));
    padding-top: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .18s ease;
    z-index: 20
}

.nav-item:hover .service-dropdown,.nav-item:focus-within .service-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-26%)
}

.service-dropdown-inner {
    max-height: min(74vh,620px);
    overflow: auto;
    background: linear-gradient(135deg,#09150ffa,#0d2418fa);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px;
    box-shadow: 0 22px 60px #00000057;
    backdrop-filter: blur(12px)
}

.service-dropdown a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    letter-spacing: .055em;
    text-transform: none;
    color: #ffffffeb;
    line-height: 1.2
}

.service-dropdown a:hover {
    background: #ffffff14;
    color: #ffd29a
}

.service-dropdown a:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 0 0 4px #f794211f;
    margin-right: 10px;
    flex: 0 0 auto
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255,255,255,.25);
    background: #ffffff14;
    color: #fff;
    border-radius: 999px;
    padding: 10px 13px;
    font-family: Oswald,Arial,sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .07em
}

.mobile-menu {
    display: none;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg,#07140dfb,#102219fb);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    padding: 14px;
    margin-top: -12px
}

.mobile-menu a {
    display: block;
    padding: 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .07em
}

.mobile-services {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    margin-bottom: 8px;
    padding: 8px
}

.mobile-services b {
    display: block;
    padding: 8px 12px;
    color: #ffd29a;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-family: Oswald,Arial,sans-serif
}

.mobile-services a {
    padding: 9px 12px 9px 20px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: none
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,760px) 1fr;
    gap: 42px;
    align-items: start;
    padding: 92px 0 118px
}

.hero-copy {
    max-width: 760px;
    background: linear-gradient(135deg,#07130cc7,#07130c94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 34px;
    padding: 36px 36px 40px;
    box-shadow: 0 24px 70px #00000038;
    backdrop-filter: blur(1px)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd29a;
    background: #ffffff17;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 9px 13px;
    font-family: Oswald,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    font-weight: 800
}

.eyebrow:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px #f7942129
}

h1 {
    font-size: clamp(46px,5.4vw,78px);
    line-height: 1.02;
    margin-top: 18px;
    text-shadow: 0 4px 28px rgba(0,0,0,.45)
}

.h1-proof {
    display: block;
    color: #f5d7a9;
    font-size: clamp(22px,2.1vw,31px);
    line-height: 1.22;
    margin-top: 16px
}

.lead {
    font-size: clamp(19px,1.7vw,23px);
    line-height: 1.55;
    color: #ffffffe0;
    max-width: 690px;
    margin: 24px 0 0;
    text-shadow: 0 2px 18px rgba(0,0,0,.4)
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--orange);
    color: #111;
    text-decoration: none;
    padding: 15px 22px;
    font-family: Oswald,Arial,sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 15px 32px #0003;
    text-align: center
}

.btn.ghost {
    background: #fffffff0;
    color: var(--ink);
    border-color: #ffffffb8;
    box-shadow: 0 12px 28px #00000029
}

.proof-strip {
    position: relative;
    z-index: 2;
    margin-top: -32px
}

.proof-band {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    background: #fffaf3fa;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 10px 28px #10221914
}

.proof-item {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #eadcc7
}

.proof-item b {
    display: block;
    font-family: Anton,sans-serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase
}

.proof-item span {
    display: block;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.35;
    font-size: 15px;
    margin-top: 8px
}

.section {
    padding: 86px 0
}

.section.alt {
    background: #fffaf3;
    border-block:1px solid #e6d8c2}

.section-head {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 38px
}

.kicker {
    font-family: Oswald,Arial,sans-serif;
    color: #a25413;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 13px
}

.section h2 {
    font-size: clamp(38px,4.5vw,66px);
    line-height: .98
}

.section-head p,.body-copy {
    color: var(--muted);
    line-height: 1.62;
    margin: 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 14px 38px #10221914
}

.quote-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none
}

.quote-list li {
    display: flex;
    gap: 10px;
    align-items: start;
    padding: 13px 0;
    border-top: 1px solid #eadcc7;
    font-weight: 650;
    line-height: 1.35
}

.quote-list li:before {
    content: "✓";
    color: var(--orange);
    font-weight: 900
}

.image-card {
    position: relative;
    min-height: 460px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(16,34,25,.18);
    box-shadow: var(--shadow);
    background: #102219
}

.image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,#050e09b8,#050e0914 58%)
}

.image-card b {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-family: Anton,sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    line-height: 1
}

.numbers {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.number {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 14px 38px #10221914
}

.number b {
    display: block;
    font-family: Anton,sans-serif;
    font-size: clamp(42px,4.4vw,64px);
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase
}

.number span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.trust {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 24px
}

.trust b {
    display: block;
    font-family: Anton,sans-serif;
    font-size: 29px;
    text-transform: uppercase
}

.trust span {
    color: var(--muted);
    line-height: 1.5;
    display: block;
    margin-top: 8px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 14px 38px #10221914
}

.team-photo {
    position: relative;
    aspect-ratio: 4/3;
    background: #102219;
    overflow: hidden
}

.team-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    filter: saturate(.96) contrast(.98)
}

.team-card-content {
    padding: 24px
}

.team-card h3 {
    font-size: 32px;
    line-height: 1
}

.role {
    font-family: Oswald,Arial,sans-serif;
    color: #a25413;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 8px 0 12px;
    font-size: 14px
}

.team-card p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0
}

.final-cta {
    background: linear-gradient(135deg, #262928, #313131);
    color: #fff;
    padding: 86px 0
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center
}

.final-cta h2 {
    font-size: clamp(42px,5vw,74px);
    line-height: .96
}

.final-cta p {
    color: #ffffffc2;
    font-size: 22px;
    line-height: 1.45;
    max-width: 760px
}

.final-cta .btn.ghost {
    background: #ffffff1a;
    color: #fff;
    border-color: #ffffff42;
    box-shadow: none
}

.footer {
    background: #09150f;
    color: #ffffffb8;
    padding: 34px 0
}

.footer .wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.footer a {
    color: #fff;
    text-decoration: none
}

@media(max-width: 980px) {
    .hero {
        min-height:auto
    }

    .hero-grid,.section-head,.split,.cta-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding: 58px 0 96px
    }

    .hero-copy {
        padding: 28px
    }

    .top:before {
        border-radius: 28px
    }

    .proof-band,.numbers,.team-grid {
        grid-template-columns: 1fr 1fr
    }

    .nav {
        display: none
    }

    .menu-toggle {
        display: inline-flex
    }

    .mobile-menu.open {
        display: block
    }

    .image-card {
        min-height: 360px
    }
}

@media(max-width: 640px) {
    .service-dropdown-inner {
        display:block!important
    }

    .wrap {
        width: min(100% - 28px,1180px)
    }

    .top {
        padding: 14px 14px 20px 16px;
        gap: 10px
    }

    .top:before {
        inset: 8px 0 12px;
        border-radius: 22px
    }

    .brand {
        min-width: 0;
        overflow: hidden
    }

    .brand img {
        height: 136px;
        max-width: 175px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: left center;
        object-position: left center
    }

    .menu-toggle {
        padding: 9px 13px;
        font-size: 13px;
        flex: 0 0 auto
    }

    .mobile-menu {
        margin-top: -6px
    }

    .hero-grid {
        padding-top: 46px
    }

    .hero-copy {
        padding: 22px;
        border-radius: 26px
    }

    h1 {
        font-size: 40px
    }

    .actions .btn,.final-cta .btn {
        width: 100%
    }

    .proof-band,.numbers,.trust-grid,.team-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 68px 0
    }

    .panel {
        padding: 24px
    }

    .image-card {
        min-height: 290px
    }

    .footer .wrap {
        display: grid
    }
}

.hero {
    padding-top: 120px;
}
