/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --black: #111111;

    --dark: #171717;

    --gold: #b88a32;

    --gold-light: #d1ad67;

    --cream: #faf8f3;

    --gray: #6f6f6f;

    --border: #e8e5df;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(1180px, 90%);

    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 88px;

    z-index: 1000;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(0, 0, 0, .06);

    transition: .3s ease;
}

header.scrolled {

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .05);
}

.nav {

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;
}

.logo-symbol {

    width: 52px;

    height: 52px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.logo-m {

    font-family:
        "Playfair Display", serif;

    font-size: 52px;

    line-height: 1;

    font-weight: 600;
}

.logo-m::after {

    content: "";

    position: absolute;

    width: 46px;

    height: 7px;

    background: var(--gold);

    left: 2px;

    top: 30px;

    transform: rotate(-28deg);

    border-radius: 50%;
}

.logo-text {

    display: flex;

    flex-direction: column;
}

.logo-name {

    font-family:
        "Playfair Display", serif;

    font-size: 23px;

    letter-spacing: 5px;
}

.logo-sub {

    color: var(--gold);

    font-size: 7px;

    letter-spacing: 1.7px;

    margin-top: 1px;
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;
}

.nav-links a {

    position: relative;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: .8px;

    text-transform: uppercase;

    transition: .3s ease;
}

.nav-links a:hover {

    color: var(--gold);
}

.nav-links a::after {

    content: "";

    position: absolute;

    bottom: -10px;

    left: 50%;

    width: 0;

    height: 2px;

    background: var(--gold);

    transform: translateX(-50%);

    transition: .3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {

    width: 22px;
}


/* =====================================================
   NAV BUTTON
===================================================== */

.nav-button {

    background: var(--black);

    color: white;

    padding: 15px 25px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s ease;
}

.nav-button:hover {

    background: var(--gold);

    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    background: white;

    border:
        1px solid var(--border);

    cursor: pointer;
}

.menu-btn span {

    display: block;

    width: 19px;

    height: 1px;

    background: #111;

    margin: 5px auto;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {

    min-height: 570px;

    padding-top: 88px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 80% 50%,
            #f5efe3,
            transparent 32%
        ),

        #fff;

    position: relative;

    overflow: hidden;
}

.about-hero::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border:
        1px solid rgba(184, 138, 50, .1);

    right: -220px;

    top: 80px;
}

.breadcrumb {

    display: flex;

    gap: 10px;

    color: #999;

    font-size: 11px;

    margin-bottom: 55px;
}

.breadcrumb a:hover {

    color: var(--gold);
}

.about-hero-content {

    max-width: 850px;
}

.hero-label {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.about-hero h1 {

    font-family:
        "Playfair Display", serif;

    font-size:
        clamp(55px, 7vw, 92px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -2px;
}

.about-hero h1 span {

    font-style: italic;
}

.about-hero p {

    max-width: 600px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.9;

    margin-top: 25px;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

section {

    padding: 110px 0;
}

.section-label {

    color: var(--gold);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 13px;
}


/* =====================================================
   WHO WE ARE
===================================================== */

.who-section {

    background: var(--cream);
}

.who-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.who-image {

    height: 500px;

    position: relative;

    background:

        linear-gradient(
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .08)
        ),

        url(
            "new.jpg"
        );

    background-size: cover;

    background-position: center;
}

.image-caption {

    position: absolute;

    left: 30px;

    bottom: 28px;

    color: white;

    font-family:
        "Playfair Display", serif;

    font-size: 24px;

    letter-spacing: 5px;
}

.image-caption span {

    display: block;

    font-family: "DM Sans", sans-serif;

    color: var(--gold-light);

    font-size: 8px;

    letter-spacing: 2px;

    margin-top: 7px;
}

.who-content h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 49px;

    font-weight: 400;

    line-height: 1.15;

    max-width: 550px;
}

.who-content p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.9;

    max-width: 550px;

    margin-top: 20px;
}


/* =====================================================
   TECHNOLOGY SECTION
===================================================== */

.technology-section {

    background: #fff;
}

.technology-heading {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.technology-heading h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1.15;

    max-width: 600px;
}

.technology-heading p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.9;

    max-width: 470px;
}


/* TECHNOLOGY GRID */

.technology-grid {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 22px;
}


/* CARD */

.technology-card {

    border:
        1px solid var(--border);

    background: #fff;

    overflow: hidden;

    transition: .4s ease;
}

.technology-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
}


/* IMAGES */

.technology-image {

    height: 280px;

    background-size: cover;

    background-position: center;

    transition: .6s ease;
}

.technology-card:hover
.technology-image {

    transform: scale(1.03);
}


/* SOFTWARE */

.software-image {

    background-image:

        linear-gradient(
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35)
        ),

        url(
            "https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=85"
        );
}


/* AI */

.ai-image {

    background-image:

        linear-gradient(
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .35)
        ),

        url(
            "https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1200&q=85"
        );
}


/* WEB */

.web-image {

    background-image:

        linear-gradient(
            rgba(0, 0, 0, .1),
            rgba(0, 0, 0, .35)
        ),

        url(
            "https://images.unsplash.com/photo-1558655146-d09347e92766?auto=format&fit=crop&w=1200&q=85"
        );
}


/* DIGITAL */

.digital-image {

    background-image:

        linear-gradient(
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .4)
        ),

        url(
            "https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1400&q=85"
        );
}


/* TECHNOLOGY INFO */

.technology-info {

    padding: 30px 32px 35px;
}

.technology-info span {

    color: var(--gold);

    font-family:
        "Playfair Display", serif;

    font-size: 16px;
}

.technology-info h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 27px;

    font-weight: 400;

    margin-top: 18px;
}

.technology-info p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    max-width: 520px;

    margin-top: 12px;
}


/* =====================================================
   BELIEF
===================================================== */

.belief-section {

    background: var(--cream);
}

.belief-heading {

    margin-bottom: 55px;
}

.belief-heading h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 48px;

    font-weight: 400;
}

.belief-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.belief-card {

    padding: 45px 35px;

    min-height: 280px;

    border-right:
        1px solid var(--border);
}

.belief-card:last-child {

    border-right: none;
}

.belief-number {

    color: var(--gold);

    font-family:
        "Playfair Display", serif;

    font-size: 18px;
}

.belief-card h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 25px;

    font-weight: 400;

    margin-top: 35px;
}

.belief-card p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

    margin-top: 15px;
}


/* =====================================================
   WHAT WE DO
===================================================== */

.work-section {

    background: var(--dark);

    color: white;
}

.work-heading {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.work-heading h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 49px;

    font-weight: 400;

    line-height: 1.15;
}

.work-heading > p {

    color: #999;

    font-size: 14px;

    line-height: 1.9;

    max-width: 470px;
}

.work-list {

    border-top:
        1px solid #303030;
}

.work-row {

    display: grid;

    grid-template-columns:
        70px 1.2fr 1.5fr 40px;

    align-items: center;

    gap: 30px;

    padding: 28px 0;

    border-bottom:
        1px solid #303030;

    transition: .3s ease;
}

.work-row:hover {

    padding-left: 15px;

    padding-right: 15px;

    background: #1d1d1d;
}

.work-row > span {

    color: var(--gold-light);

    font-family:
        "Playfair Display", serif;
}

.work-row h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 22px;

    font-weight: 400;
}

.work-row p {

    color: #888;

    font-size: 12px;

    line-height: 1.7;
}

.work-row strong {

    color: var(--gold);

    font-size: 20px;

    font-weight: 400;
}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {

    background: #fff;
}

.section-heading {

    text-align: center;

    margin-bottom: 60px;
}

.section-heading h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 48px;

    font-weight: 400;
}

.section-heading p {

    color: var(--gray);

    font-size: 14px;

    margin-top: 12px;
}

.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.approach-card {

    background: var(--cream);

    padding: 32px;

    min-height: 280px;

    border:
        1px solid var(--border);

    transition: .3s ease;
}

.approach-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(184, 138, 50, .4);
}

.approach-top {

    display: flex;

    align-items: center;

    gap: 15px;
}

.approach-top span {

    color: var(--gold);

    font-family:
        "Playfair Display", serif;

    font-size: 17px;
}

.approach-line {

    height: 1px;

    flex: 1;

    background: var(--border);
}

.approach-card h3 {

    font-family:
        "Playfair Display", serif;

    font-size: 24px;

    font-weight: 400;

    margin-top: 55px;
}

.approach-card p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    margin-top: 14px;
}


/* =====================================================
   CTA
===================================================== */

.about-cta {

    background: var(--cream);

    text-align: center;
}

.cta-content {

    max-width: 750px;

    margin: auto;
}

.cta-content h2 {

    font-family:
        "Playfair Display", serif;

    font-size: 65px;

    line-height: 1.08;

    font-weight: 400;
}

.cta-content p {

    color: var(--gray);

    max-width: 560px;

    margin: 20px auto 0;

    font-size: 14px;

    line-height: 1.8;
}

.btn {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding: 16px 25px;

    background: var(--black);

    color: white;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s ease;
}

.btn:hover {

    background: var(--gold);

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: var(--dark);

    color: white;

    padding: 45px 0 25px;
}

.footer-main {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-main .logo-name {

    color: white;
}

.footer-links {

    display: flex;

    gap: 25px;
}

.footer-links a {

    color: #aaa;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .8px;

    transition: .3s ease;
}

.footer-links a:hover {

    color: var(--gold);
}

.footer-bottom {

    border-top:
        1px solid #292929;

    margin-top: 35px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 9px;

    letter-spacing: .5px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #25D366;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);

    transition: .3s ease;
}

.whatsapp img {

    width: 35px;

    height: 35px;
}

.whatsapp:hover {

    transform: scale(1.1);
}


/* =====================================================
   ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition: .8s ease;
}

.reveal.show {

    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1000px) {

    .nav-links {

        gap: 20px;
    }

    .nav-button {

        display: none;
    }

    .who-grid {

        gap: 45px;
    }

    .approach-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    header,
    .nav {

        height: 75px;
    }

    .nav-links {

        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        background: white;

        flex-direction: column;

        gap: 0;

        box-shadow:
            0 15px 30px rgba(0, 0, 0, .05);
    }

    .nav-links.active {

        display: flex;
    }

    .nav-links a {

        width: 100%;

        padding: 17px 5%;

        border-bottom:
            1px solid #f1f1f1;
    }

    .nav-links a::after {

        display: none;
    }

    .menu-btn {

        display: block;
    }


    /* HERO */

    .about-hero {

        min-height: 520px;

        padding-top: 75px;
    }

    .breadcrumb {

        margin-bottom: 45px;
    }

    .about-hero h1 {

        font-size: 55px;

        letter-spacing: -1px;
    }


    /* WHO */

    section {

        padding: 75px 0;
    }

    .who-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .who-image {

        height: 350px;
    }

    .who-content h2 {

        font-size: 40px;
    }


    /* TECHNOLOGY */

    .technology-heading {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .technology-heading h2 {

        font-size: 40px;
    }

    .technology-grid {

        grid-template-columns: 1fr;
    }

    .technology-image {

        height: 260px;
    }


    /* BELIEF */

    .belief-grid {

        grid-template-columns: 1fr;
    }

    .belief-card {

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .belief-card:last-child {

        border-bottom: none;
    }


    /* WORK */

    .work-heading {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .work-heading h2 {

        font-size: 40px;
    }

    .work-row {

        grid-template-columns:
            45px 1fr 30px;

        gap: 15px;
    }

    .work-row p {

        display: none;
    }


    /* APPROACH */

    .approach-grid {

        grid-template-columns:
            1fr 1fr;
    }


    /* CTA */

    .cta-content h2 {

        font-size: 48px;
    }


    /* FOOTER */

    .footer-main {

        flex-direction: column;

        gap: 30px;

        text-align: center;
    }

    .footer-links {

        flex-wrap: wrap;

        justify-content: center;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

        gap: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {

    .container {

        width: 88%;
    }

    .logo-name {

        font-size: 18px;

        letter-spacing: 3px;
    }

    .logo-sub {

        font-size: 6px;
    }

    .logo-symbol {

        width: 43px;
    }

    .logo-m {

        font-size: 44px;
    }

    .about-hero h1 {

        font-size: 43px;
    }

    .who-content h2 {

        font-size: 35px;
    }

    .belief-heading h2 {

        font-size: 37px;
    }

    .technology-heading h2 {

        font-size: 35px;
    }

    .technology-image {

        height: 220px;
    }

    .technology-info {

        padding: 25px;
    }

    .technology-info h3 {

        font-size: 23px;
    }

    .approach-grid {

        grid-template-columns: 1fr;
    }

    .cta-content h2 {

        font-size: 40px;
    }

    .whatsapp {

        width: 52px;

        height: 52px;

        right: 18px;

        bottom: 18px;
    }

    .whatsapp img {

        width: 31px;

        height: 31px;
    }

}