* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

button {
    font-family: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid #e8ebef;
}

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 180px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;

    color: #596472;

    font-size: 13px;
    font-weight: 600;

    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #102a43;
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #c49a5a;
}

.nav-button {
    padding: 12px 20px;

    background: #102a43;
    color: white;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.nav-button:hover {
    background: #c49a5a;
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    color: #102a43;

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero {
    min-height: 480px;

    display: flex;
    align-items: center;

    padding-top: 82px;

    background:
        linear-gradient(
            115deg,
            #0b2237,
            #163851,
            #24475f
        );

    color: white;
}

.page-hero-content {
    max-width: 850px;
}

.hero-label {
    display: block;

    margin-bottom: 20px;

    color: #d8b476;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.page-hero h1 {
    max-width: 850px;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1.08;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.page-hero h1 span {
    color: #d8b476;
}

.page-hero p {
    max-width: 680px;

    color: #d5dfe7;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 28px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #aebdca;

    font-size: 12px;
}

.breadcrumb a {
    color: #d8b476;
}


/* =====================================================
   GENERAL
===================================================== */

.section {
    padding: 110px 0;
}

.section-label {
    display: block;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

h2 {
    font-size: 45px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

h2 span {
    color: #c49a5a;
}

.section-heading {
    margin-bottom: 60px;
}

.centered {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.centered p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #707a85;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.intro-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.intro-visual {
    position: relative;

    min-height: 500px;
}

.visual-box {
    height: 500px;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #dce1e5,
            #73818d
        );

    color: white;
}

.visual-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: white;

    font-size: 12px;
}

.visual-content strong {
    display: block;

    font-size: 40px;

    letter-spacing: 3px;
}

.visual-content span {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: -25px;

    width: 160px;
    height: 160px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #102a43;

    color: white;
}

.experience-card strong {
    color: #d8b476;

    font-size: 38px;
}

.experience-card span {
    text-align: center;

    font-size: 10px;

    text-transform: uppercase;

    line-height: 1.5;
}

.intro-content p {
    color: #6d7782;

    font-size: 14px;

    line-height: 1.9;

    margin: 18px 0;
}


/* =====================================================
   STORY
===================================================== */

.story {
    background: #f7f8f9;
}

.story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.story-content p {
    color: #6d7782;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0;
}

.story-points {
    display: flex;
    flex-direction: column;

    gap: 0;
}

.story-point {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-bottom: 1px solid #dfe3e6;
}

.story-point:first-child {
    border-top: 1px solid #dfe3e6;
}

.story-point > span {
    color: #c49a5a;

    font-size: 12px;

    font-weight: 800;
}

.story-point h3 {
    font-size: 18px;

    margin-bottom: 8px;
}

.story-point p {
    color: #727c86;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   MISSION
===================================================== */

.mission {
    background: white;
}

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.mission-card {
    padding: 50px;

    background: #f5f7f8;

    border: 1px solid #e4e8eb;
}

.mission-card.dark {
    background: #102a43;

    color: white;

    border-color: #102a43;
}

.mission-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    background: #c49a5a;

    color: white;

    font-weight: 800;
}

.card-label {
    display: block;

    margin-bottom: 15px;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.mission-card h3 {
    max-width: 430px;

    font-size: 28px;

    line-height: 1.3;

    margin-bottom: 20px;
}

.mission-card p {
    max-width: 500px;

    color: #6e7882;

    font-size: 14px;

    line-height: 1.9;
}

.mission-card.dark p {
    color: #c4d0da;
}


/* =====================================================
   VALUES
===================================================== */

.values {
    background: #f7f8f9;
}

.values .section-heading {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.values .section-heading > p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}

.value-card {
    padding: 35px 28px;

    background: white;

    border: 1px solid #e4e8eb;

    transition: .3s;
}

.value-card:hover {
    transform: translateY(-5px);

    border-color: #c49a5a;
}

.value-number {
    color: #c49a5a;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 19px;

    margin-bottom: 12px;
}

.value-card p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   DIFFERENCE
===================================================== */

.difference {
    background: white;
}

.difference-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.difference-content p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0;
}

.primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 20px;

    padding: 15px 23px;

    background: #102a43;

    color: white;

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}

.primary-btn:hover {
    background: #c49a5a;

    transform: translateY(-2px);
}

.difference-list {
    display: flex;

    flex-direction: column;
}

.difference-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #e1e5e8;
}

.difference-item:first-child {
    border-top: 1px solid #e1e5e8;
}

.difference-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0e5d4;

    color: #a4793f;

    font-size: 12px;
    font-weight: 800;
}

.difference-item h3 {
    font-size: 17px;

    margin-bottom: 6px;
}

.difference-item p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   NUMBERS
===================================================== */

.numbers {
    padding: 90px 0;

    background: #102a43;

    color: white;
}

.numbers-heading {
    text-align: center;

    margin-bottom: 55px;
}

.numbers-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);
}

.numbers-grid > div {
    text-align: center;

    border-right: 1px solid rgba(255,255,255,.15);
}

.numbers-grid > div:last-child {
    border-right: none;
}

.numbers-grid strong {
    font-size: 45px;
}

.numbers-grid > div > span {
    color: #d8b476;

    font-size: 25px;
}

.numbers-grid p {
    color: #adbdc9;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   COMMITMENT
===================================================== */

.commitment {
    background: #f7f8f9;
}

.commitment-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.commitment-grid > div:last-child p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 20px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 90px 0;

    background:
        linear-gradient(
            110deg,
            #163852,
            #0b2237
        );

    color: white;
}

.cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.cta h2 {
    max-width: 650px;
}

.cta p {
    max-width: 650px;

    margin-top: 18px;

    color: #c5d1da;

    font-size: 14px;
}

.cta-button {
    white-space: nowrap;

    padding: 16px 25px;

    background: #c49a5a;

    color: white;

    font-size: 13px;

    font-weight: 800;
}

.cta-button span {
    margin-left: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #0a1d2e;

    color: #aebac5;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {
    color: white;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.footer-grid p {
    max-width: 280px;

    font-size: 12px;

    line-height: 1.8;
}

.footer-grid h4 {
    color: white;

    font-size: 13px;

    margin-bottom: 18px;
}

.footer-grid a {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
}

.footer-grid a:hover {
    color: #d8b476;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    padding: 20px 0;
}

.footer-bottom p {
    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .intro-grid,
    .story-grid,
    .difference-grid,
    .commitment-grid {
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media (max-width: 800px) {

    .nav-menu,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.show {
        display: flex;

        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: white;

        flex-direction: column;

        gap: 20px;

        border-bottom: 1px solid #e5e8eb;
    }

    .intro-grid,
    .story-grid,
    .mission-grid,
    .difference-grid,
    .commitment-grid,
    .values .section-heading {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2,1fr);

        gap: 35px;
    }

    .numbers-grid > div {
        border: none;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .navbar {
        height: 72px;
    }

    .page-hero {
        min-height: 450px;

        padding-top: 72px;
    }

    .page-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .section {
        padding: 75px 0;
    }

    h2 {
        font-size: 35px;
    }

    .intro-visual,
    .visual-box {
        min-height: 400px;

        height: 400px;
    }

    .experience-card {
        right: 10px;
    }

    .values-grid,
    .numbers-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid > div {
        padding: 20px;
    }

    .mission-card {
        padding: 30px;
    }

    .cta {
        padding: 70px 0;
    }
}
/* Reduce spacing in Footer Contact section */
.footer-grid > div:last-child p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.footer-grid > div:last-child a {
    display: inline;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e8ebef;
}

/* ================================
   HEADER - DESKTOP
================================ */
/* DESKTOP */
.navbar {
    height: 82px;
    display: flex;
    align-items: center;
}
/* LOGO ONLY */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    height: 58px;
    object-fit: contain;
    display: block;
    transform: scale(4);
    transform-origin: left center;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-button {
    display: block;
    margin-left: 28px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

/* ================================
   MOBILE MENU
================================ */

@media (max-width: 800px) {

    .nav-menu {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 20px 25px;
        box-sizing: border-box;
        z-index: 9999;
    }

    /* OPEN MENU */
    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 0;
        color: #102a43;
    }

    /* Hide Book Consultation on mobile */
    .nav-button {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 30px;
        color: #102a43;
        cursor: pointer;
        z-index: 10000;
    }
    .copyright {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 13px;
    color: #8a929d;
}
}