:root {
    --black: #070707;
    --soft-black: #101010;
    --gold: #c9a45c;
    --gold-light: #e0c486;
    --white: #f5f2e9;
    --gray: #aaa;
    --line: #292929;
}

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}


/* HEADER */

.header {
    height: 96px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.97);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
}

.logo-mark {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 15px;
    font-weight: bold;
}

.logo-text {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-text small {
    display: block;
    color: #888;
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-top: 3px;
}


/* NAVIGATION */

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}


/* LANGUAGE */

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
}

.language-switch button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.language-switch button:hover,
.language-switch .active-language {
    color: var(--gold);
}


/* GENERAL */

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}


/* HERO */

.hero {
    min-height: 700px;
    padding: 100px 8% 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 35%,
            #292318 0,
            #111 25%,
            #070707 60%
        );
}

.hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -180px;
    bottom: -280px;
    border: 1px solid rgba(201, 164, 92, 0.15);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}


/* MAIN TITLE — SMALLER */

.hero h1 {
    max-width: 820px;
    font-size: clamp(42px, 5.3vw, 68px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 650px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 38px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gold-button,
.outline-button {
    display: inline-block;
    padding: 15px 28px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.gold-button {
    background: var(--gold);
    color: #080808;
}

.gold-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.outline-button {
    border: 1px solid #444;
    color: white;
}

.outline-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;
    bottom: 32px;
    left: 8%;
    right: 8%;
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #666;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* INTRO */

.intro {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 60px;
}

.intro-label {
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

.intro h2 {
    max-width: 780px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.intro h2 span {
    color: var(--gold);
}

.intro-content p {
    max-width: 680px;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.9;
}


/* SERVICES */

.services {
    padding: 100px 8%;
    background: var(--soft-black);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 55px;
}

.section-top h2 {
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-description {
    max-width: 530px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}


/* SERVICE ITEMS */

.service {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 42px 0;
    border-top: 1px solid var(--line);
}

.service:last-child {
    border-bottom: 1px solid var(--line);
}

.service-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.service h3 {
    font-size: 29px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.service p {
    max-width: 800px;
    color: #a2a2a2;
    font-size: 17px;
    line-height: 1.85;
}

.partners {
    margin-top: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.7;
}


/* GLOBAL */

.global {
    min-height: 560px;
    padding: 110px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    overflow: hidden;
}

.global-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.global h2 {
    font-size: clamp(40px, 4.8vw, 62px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}

.global h2 span {
    color: var(--gold);
}

.global p:not(.eyebrow) {
    max-width: 600px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.world-circle {
    width: 290px;
    height: 290px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 5px;
    opacity: 0.7;
}


/* ABOUT */

.about {
    padding: 120px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #0d0d0d;
    border-top: 1px solid var(--line);
}

.about h2 {
    font-size: clamp(40px, 4.8vw, 62px);
    line-height: 1;
    letter-spacing: -2.5px;
}

.about h2 span {
    color: var(--gold);
}

.about-text {
    padding-top: 25px;
}

.about-text p {
    max-width: 620px;
    color: #a2a2a2;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 23px;
}


/* VALUES */

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
}

.value {
    padding: 45px 7%;
    border-right: 1px solid var(--line);
}

.value:last-child {
    border-right: none;
}

.value span {
    color: var(--gold);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.value h3 {
    font-size: 21px;
    margin: 17px 0 8px;
}

.value p {
    color: #888;
    font-size: 14px;
}


/* CTA */

.cta {
    padding: 120px 8%;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            #241e13 0,
            #080808 55%
        );
}

.cta h2 {
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 38px;
}

.cta h2 span {
    color: var(--gold);
}


/* CONTACT */

.contact {
    padding: 120px 8%;
    text-align: center;
    border-top: 1px solid var(--line);
}

.contact h2 {
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid var(--line);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.contact-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.contact-card strong {
    font-size: 16px;
    margin-bottom: 8px;
    word-break: break-word;
}

.contact-card span:last-child {
    color: #888;
    font-size: 13px;
}

.whatsapp-area {
    margin-top: 55px;
}

.whatsapp-area p {
    color: #888;
    font-size: 13px;
    margin-bottom: 18px;
}

.whatsapp-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.whatsapp-buttons a {
    padding: 14px 24px;
    border: 1px solid #333;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-buttons a:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* FOOTER */

footer {
    padding: 50px 8% 24px;
    background: #050505;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 23px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 10px;
}


/* MOBILE */

@media (max-width: 850px) {

    .header {
        height: auto;
        padding: 18px 6%;
        flex-wrap: wrap;
        gap: 18px;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .language-switch {
        margin-left: auto;
    }

    .hero {
        min-height: 650px;
        padding: 90px 7%;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-bottom {
        display: none;
    }

    .intro {
        grid-template-columns: 1fr;
        padding: 90px 7%;
        gap: 28px;
    }

    .section-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services {
        padding: 85px 7%;
    }

    .service {
        grid-template-columns: 45px 1fr;
        gap: 18px;
    }

    .service h3 {
        font-size: 25px;
    }

    .service p {
        font-size: 16px;
    }

    .global {
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 7%;
    }

    .world-circle {
        width: 250px;
        height: 250px;
        align-self: center;
    }

    .about {
        grid-template-columns: 1fr;
        padding: 90px 7%;
        gap: 30px;
    }

    .about-text {
        padding-top: 0;
    }

    .values {
        grid-template-columns: 1fr 1fr;
    }

    .value {
        border-bottom: 1px solid var(--line);
    }

    .value:nth-child(2) {
        border-right: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
}


/* SMALL MOBILE */

@media (max-width: 500px) {

    .logo-text {
        font-size: 13px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }

    nav {
        gap: 15px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .intro h2 {
        font-size: 40px;
    }

    .section-top h2 {
        font-size: 42px;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .value {
        border-right: none;
    }

    .cta h2 {
        font-size: 44px;
    }

    .contact h2 {
        font-size: 45px;
    }
}/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .header {
        height: auto;
        padding: 18px 5%;
        flex-wrap: wrap;
        gap: 15px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 12px;
    }

    .language-switch {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 55px 5% 45px;
        text-align: center;
    }

    .hero img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 25px auto 0;
        border-radius: 14px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about img {
        width: 100%;
        height: auto;
    }

    .section-description {
        max-width: 100%;
    }
}@media (max-width: 768px) {
    .service-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 16px;
    }
}.logo-text {
    font-size: 19px;
}@media (max-width: 768px) {
    .eyebrow,
    .section-label,
    .subtitle {
        font-size: 17px;
        letter-spacing: 1px;
        font-weight: 600;
    }
}@media (max-width: 768px) {
    .hero-bottom {
        font-size: 15px;
        letter-spacing: 1px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}