:root {
    --orange: #ff9f1a;
    --gold: #ffc928;
    --dark: #0b0d0e;
    --dark2: #15191b;
    --light: #f4f4f0;
    --text: #17191b;
    --muted: #687075;
    --white: #ffffff;

    --head: "Manrope", sans-serif;
    --body: "Inter", sans-serif;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}


body {
    margin: 0;
    font-family: var(--body);
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


/* TOP BAR */

.topbar {
    background: #080a0b;
    color: #cdd1d3;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
}


.topbar a {
    color: white;
}


/* CONTAINER */

.wrap {
    width: min(1140px, calc(100% - 32px));
    margin: auto;
}


/* NAVBAR */

.nav {
    height: 72px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);

    display: flex;
    align-items: center;

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 5px 25px #0000000d;
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}


.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0b0d0e;
}


.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            var(--gold),
            var(--orange)
        );

    font: 800 24px var(--head);

    transform: skew(-7deg);
}


.brand strong {
    display: block;

    font: 800 20px var(--head);

    line-height: 1;
}


.brand small {
    display: block;

    font-size: 8px;

    letter-spacing: .25em;

    font-weight: 800;

    margin-top: 4px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}


.nav-links a {
    font-size: 12px;
    font-weight: 700;

    color: #444b4f;

    padding: 10px;
}


.nav-links a:hover,
.nav-links a.active {
    color: #e47d0b;
}


.nav-cta {
    background: #0b0d0e !important;
    color: white !important;

    padding: 11px 16px !important;
}


.menu {
    display: none;

    background: none;

    border: 0;

    font-size: 27px;
}


/* HERO */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    color: white;

    overflow: hidden;

    background: #111;
}


.hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition:
        background-image 1s;
}


.hero:after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #000d 0%,
            #0009 45%,
            #0002 100%
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    padding: 90px 0;
}


.eyebrow,
.kicker {
    font-size: 10px;

    letter-spacing: .18em;

    font-weight: 800;

    text-transform: uppercase;

    color: #e47d0b;

    margin-bottom: 18px;
}


.eyebrow {
    color: #ffbd38;

    display: flex;

    gap: 10px;

    align-items: center;
}


.eyebrow:before {
    content: "";

    width: 34px;
    height: 2px;

    background: var(--orange);
}


.hero h1 {
    font:
        800
        clamp(48px,7vw,88px)
        /
        .98
        var(--head);

    letter-spacing: -.06em;

    max-width: 850px;

    margin: 0 0 25px;
}


.hero h1 span {
    color: #ffc13a;
}


.hero p {
    max-width: 670px;

    color: #e2e5e6;

    line-height: 1.7;

    font-size: 17px;
}


.actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 28px;
}


/* BUTTONS */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 20px;

    font-size: 12px;

    font-weight: 800;

    transition: .25s;
}


.btn-main {
    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--orange)
        );

    color: #000;
}


.btn-main:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        #ff9f1a33;
}


.btn-dark {
    background: #0b0d0e;

    color: white;
}


.btn-outline {
    border: 1px solid #ffffff66;

    color: white;
}


.btn-outline:hover {
    background: white;

    color: black;
}


/* HERO DOTS */

.dots {
    position: absolute;

    z-index: 3;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 6px;
}


.dots button {
    width: 35px;
    height: 3px;

    border: 0;

    background: #ffffff55;
}


.dots button.active {
    background: var(--orange);

    width: 55px;
}


/* PAGE HERO */

.page-hero {
    background:
        linear-gradient(
            120deg,
            #111416,
            #252a2d
        );

    color: white;

    padding: 90px 0;

    position: relative;

    overflow: hidden;
}


.page-hero:after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid #ffffff12;

    transform: rotate(45deg);

    right: -220px;
    top: -280px;
}


.page-hero h1 {
    font:
        800
        clamp(45px,6vw,72px)
        /
        1
        var(--head);

    letter-spacing: -.05em;

    margin: 0;
}


.page-hero h1 span {
    color: var(--orange);
}


.page-hero p {
    max-width: 650px;

    color: #b8bec2;

    line-height: 1.7;

    margin: 20px 0 0;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}


.section-title {
    font:
        800
        clamp(38px,5vw,65px)
        /
        1.05
        var(--head);

    letter-spacing: -.05em;

    margin: 0 0 25px;
}


.section-title span {
    color: var(--orange);
}


.lead {
    font:
        600
        20px
        /
        1.6
        var(--head);
}


.text {
    color: var(--muted);

    line-height: 1.8;
}


.dark {
    background: var(--dark);

    color: white;
}


.dark .text {
    color: #b7bec1;
}


/* GRID */

.grid2 {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;
}


.grid3 {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}


/* ABOUT IMAGE */

.about-image {
    height: 560px;

    width: 100%;

    object-fit: cover;

    filter: saturate(.8);
}


/* CARDS */
/* =========================
   CARDS
========================= */

.card {
    background: #ffffff;

    color: #17191b;

    border: 1px solid #dedede;

    padding: 28px;

    min-height: 270px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* IMPORTANT:
   Cards stay white even inside the dark section */

.dark .card {
    background: #ffffff;

    color: #17191b;
}


/* CARD HOVER */

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);

    border-color: #ff9f1a;

    border-top:
        4px solid #ff9f1a;
}


/* CARD NUMBER */

.card .num {
    font-size: 11px;

    font-weight: 800;

    color: #e47d0b;

    letter-spacing: 0.05em;
}


/* CARD ICON */

.card .icon {
    font-size: 34px;

    color: #ff9f1a;

    margin: 28px 0 16px;
}


/* CARD TITLE */

.card h3,
.dark .card h3 {
    color: #17191b !important;

    font-family: var(--head);

    font-size: 23px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.02em;

    margin: 0 0 12px;
}


/* CARD DESCRIPTION */

.card p,
.dark .card p {
    color: #687075 !important;

    font-family: var(--body);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;

    margin: 0;
}


/* CARD LINKS */

.card a {
    color: #e47d0b;
}

.card a:hover {
    color: #ff9f1a;
}


/* CTA */

.quote {
    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--orange)
        );

    padding: 60px;

    color: #090909;
}


.quote h2 {
    font:
        800
        clamp(35px,5vw,65px)
        /
        1
        var(--head);

    letter-spacing: -.05em;

    margin: 0 0 15px;
}


/* MISSION */

.statement {
    display: grid;

    grid-template-columns:
        120px 1fr;

    gap: 45px;
}


.vertical {
    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    font:
        800
        60px
        /
        1
        var(--head);

    border-right:
        1px solid #ddd;

    color: #111;
}


.points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    margin-top: 35px;

    background: #ddd;

    gap: 1px;
}


.point {
    background: white;

    padding: 20px;

    font-size: 13px;

    font-weight: 700;
}


.point b {
    color: #e47d0b;

    margin-right: 15px;
}


/* VISION */

.vision-box {
    min-height: 440px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--orange)
        );

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    position: relative;

    overflow: hidden;
}


.vision-box:before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border: 1px solid #0002;

    transform: rotate(45deg);

    right: -180px;
    top: -170px;
}


.vision-box h3 {
    position: relative;

    font:
        800
        50px
        /
        1
        var(--head);

    letter-spacing: -.05em;

    margin: 0;
}


.vision-box p {
    position: relative;

    margin-top: 20px;
}


/* FORM */

.form {
    background: white;

    padding: 30px;
}


.form label {
    display: block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-bottom: 8px;
}


.form input,
.form select,
.form textarea {
    width: 100%;

    padding: 13px;

    border:
        1px solid #d5d8d9;

    background: #f8f8f6;

    outline: none;

    font:
        13px
        var(--body);
}


.form textarea {
    resize: vertical;
}


.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color:
        var(--orange);

    box-shadow:
        0 0 0 3px
        #ff9f1a1a;
}


/* CONTACT */

.contact-list {
    display: grid;

    gap: 20px;

    margin-top: 30px;
}


.contact-item {
    display: flex;

    gap: 14px;

    color: white;
}


.contact-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background: #202528;

    color: var(--orange);

    flex: 0 0 42px;
}


.contact-item small {
    display: block;

    color: #8e979b;

    font-size: 9px;

    letter-spacing: .14em;

    font-weight: 800;
}


.contact-item strong {
    display: block;

    font-size: 13px;

    line-height: 1.5;

    margin-top: 3px;
}


/* MAP */

.map {
    height: 470px;

    position: relative;
}


.map iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter: grayscale(.7);
}


.map-card {
    position: absolute;

    left:
        max(
            16px,
            calc(
                (100% - 1140px) / 2
            )
        );

    bottom: 22px;

    background: white;

    padding: 18px 20px;

    box-shadow:
        0 15px 35px
        #0003;

    max-width: 340px;
}


.map-card strong {
    font:
        800
        18px
        var(--head);
}


.map-card p {
    font-size: 11px;

    color: var(--muted);

    margin: 4px 0 0;
}


/* FOOTER */

.footer {
    background: #080a0b;

    color: white;

    padding: 45px 0 20px;
}


.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: center;

    padding-bottom: 30px;

    border-bottom:
        1px solid #272b2d;
}


.footer p {
    color: #858d91;

    font-size: 12px;

    max-width: 430px;
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    color: #6f777b;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .08em;

    padding-top: 18px;
}


/* TABLET */

@media (max-width: 900px) {

    .nav-links {
        display: none;

        position: absolute;

        top: 72px;

        left: 0;
        right: 0;

        background: white;

        padding: 15px 20px;

        flex-direction: column;

        align-items: stretch;

        box-shadow:
            0 15px 30px
            #0001;
    }


    .nav-links.open {
        display: flex;
    }


    .menu {
        display: block;
    }


    .grid3 {
        grid-template-columns:
            1fr 1fr;
    }


    .hero {
        min-height: 680px;
    }


    .statement {
        grid-template-columns:
            1fr;
    }


    .vertical {
        writing-mode:
            horizontal-tb;

        transform: none;

        border-right: 0;

        border-bottom:
            1px solid #ddd;

        padding-bottom: 15px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .topbar {
        display: none;
    }


    .wrap {
        width:
            min(
                calc(100% - 24px),
                1140px
            );
    }


    .section {
        padding: 70px 0;
    }


    .hero {
        min-height: 680px;
    }


    .hero h1 {
        font-size: 50px;
    }


    .hero p {
        font-size: 15px;
    }


    .grid3,
    .grid2,
    .points {
        grid-template-columns: 1fr;
    }


    .about-image {
        height: 400px;
    }


    .footer-main,
    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    .page-hero {
        padding: 70px 0;
    }


    .statement {
        gap: 25px;
    }


    .vertical {
        font-size: 38px;
    }


    .map {
        height: 430px;
    }


    .map-card {
        left: 12px;

        right: 12px;

        max-width: none;
    }

}