* {
    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;
}

:root {
    --black: #111;
    --dark: #171717;
    --gold: #b88a32;
    --gold-light: #d1ad67;
    --cream: #faf8f3;
    --gray: #707070;
    --border: #e7e4de;
}

.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,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.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;
}


/* NAV */

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-button {
    background: var(--black);
    color: white;
    padding: 15px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* MOBILE MENU */

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    background: white;
    border: 1px solid var(--border);
}

.menu-btn span {
    display: block;
    width: 19px;
    height: 1px;
    background: #111;
    margin: 5px auto;
}


/* HERO */

.services-hero {
    min-height: 590px;
    padding-top: 88px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 80% 50%,
            #f5eee1,
            transparent 30%
        ),
        #fff;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    color: #999;
    font-size: 11px;
    margin-bottom: 55px;
}

.hero-content {
    max-width: 850px;
}

.section-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 90px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    font-style: italic;
}

.hero-content p {
    max-width: 620px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-top: 25px;
}


/* INTRO */

.intro-section {
    padding: 100px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.intro-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;
}

.intro-text p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
    max-width: 500px;
}

.intro-text p + p {
    margin-top: 18px;
}


/* SERVICES */

.service-section {
    padding: 110px 0;
    background: white;
}

.light-section {
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.service-grid.reverse {
    grid-template-columns: 1fr 1fr;
}


/* IMAGES */

.service-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.image-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    color: var(--gold);
    font-family: "Playfair Display", serif;
}


/* WEBSITE */

.website-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.25)
        ),
        url(
            "https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1400&q=85"
        );
}


/* WEB APP */

.webapp-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.3)
        ),
        url(
            "https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=1400&q=85"
        );
}


/* SOFTWARE */

.software-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.08),
            rgba(0,0,0,.35)
        ),
        url(
            "https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=1400&q=85"
        );
}


/* AI */

.ai-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.3)
        ),
        url(
            "https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1400&q=85"
        );
}


/* DIGITAL MEDIA */

.media-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.08),
            rgba(0,0,0,.35)
        ),
        url(
            "https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1400&q=85"
        );
}


/* CONTENT */

.service-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    max-width: 550px;
}

.service-content > p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
    max-width: 530px;
    margin-top: 20px;
}


/* FEATURE LIST */

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 35px;
}

.feature-list div {
    border-top: 1px solid var(--border);
    padding-top: 13px;
    font-size: 12px;
}

.feature-list span {
    color: var(--gold);
    margin-right: 10px;
}


/* FEATURES */

.features-section {
    padding: 110px 0;
    background: var(--dark);
    color: white;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 400;
}

.section-heading p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #303030;
    border-left: 1px solid #303030;
}

.feature-card {
    min-height: 260px;
    padding: 35px;
    border-right: 1px solid #303030;
    border-bottom: 1px solid #303030;
}

.feature-card span {
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
}

.feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 400;
    margin-top: 50px;
}

.feature-card p {
    color: #888;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 13px;
}


/* CTA */

.cta-section {
    padding: 120px 0;
    background: var(--cream);
    text-align: center;
}

.cta-content {
    max-width: 750px;
    margin: auto;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.08;
}

.cta-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    max-width: 550px;
    margin: 20px auto;
}

.cta-button {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    background: var(--black);
    color: white;
    padding: 17px 27px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
}

.cta-button:hover {
    background: var(--gold);
}


/* FOOTER */

footer {
    background: var(--dark);
    color: white;
    padding: 45px 0 25px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #292929;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 9px;
}


/* 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);
}

.whatsapp img {
    width: 35px;
    height: 35px;
}


/* 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;
    }

    .service-grid {
        gap: 45px;
    }

}


/* 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 #eee;
    }

    .nav-links a.active::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }


    .services-hero {
        min-height: 520px;
        padding-top: 75px;
    }

    .hero-content h1 {
        font-size: 55px;
    }


    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-title h2 {
        font-size: 40px;
    }


    .service-section {
        padding: 75px 0;
    }

    .service-grid,
    .service-grid.reverse {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-grid.reverse .service-content {
        order: 1;
    }

    .service-grid.reverse .service-image {
        order: 2;
    }

    .service-image {
        height: 380px;
    }

    .service-content h2 {
        font-size: 40px;
    }


    .features-grid {
        grid-template-columns: 1fr 1fr;
    }


    .cta-content h2 {
        font-size: 47px;
    }


    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .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%;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .service-image {
        height: 300px;
    }

    .service-content h2 {
        font-size: 35px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .cta-content h2 {
        font-size: 39px;
    }

    .whatsapp {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp img {
        width: 31px;
        height: 31px;
    }

}