@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


:root {
    --black: #020202;
    --black-soft: #070707;
    --card: #0c0c0c;

    --gold: #c99a37;
    --gold-bright: #f0ce70;
    --gold-dark: #75531b;

    --white: #ffffff;
    --grey: #9a9a9a;

    --border: rgba(201, 154, 55, 0.22);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);

    font-family: "Montserrat", sans-serif;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
}


.section {
    padding: 120px 7%;
}



/* HEADER */


.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.15)
        );

    border-bottom:
        1px solid rgba(201,154,55,0.13);
}


.brand {
    display: flex;
    align-items: center;

    gap: 12px;
}


.brand-logo {
    width: 54px;
    height: 54px;

    object-fit: contain;
}


.brand-text strong {
    display: block;

    font-family: "Cinzel", serif;

    color: var(--gold-bright);

    font-size: 17px;

    letter-spacing: 2px;
}


.brand-text span {
    display: block;

    margin-top: 3px;

    font-size: 8px;

    letter-spacing: 7px;
}


.nav {
    display: flex;
    align-items: center;

    gap: 30px;
}


.nav a {
    position: relative;

    color: #d2d2d2;

    font-size: 12px;

    transition: 0.25s;
}


.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}


.nav a:hover {
    color: var(--gold-bright);
}


.nav a:hover::after {
    width: 100%;
}


.header-button {
    padding: 13px 24px;

    border: 1px solid var(--gold-dark);

    color: var(--gold-bright);

    font-size: 11px;
    font-weight: 600;

    transition: 0.3s;
}


.header-button:hover {
    background: var(--gold);
    color: #000;
}



/* HERO */


.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 7% 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 48%,
            rgba(201,154,55,0.10),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #020202 0%,
            #070707 55%,
            #050403 100%
        );
}


.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.93) 0%,
            rgba(0,0,0,0.82) 35%,
            rgba(0,0,0,0.30) 68%,
            rgba(0,0,0,0.05) 100%
        );
}


.hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 260px;

    z-index: 4;

    pointer-events: none;

    background:
        linear-gradient(
            transparent,
            #020202
        );
}


.hero-lines {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            115deg,
            transparent 0 70%,
            rgba(201,154,55,0.08) 70.1%,
            transparent 70.25%
        ),

        linear-gradient(
            115deg,
            transparent 0 78%,
            rgba(201,154,55,0.04) 78.1%,
            transparent 78.2%
        );
}


.hero-glow {
    position: absolute;

    right: 4%;
    bottom: 9%;

    width: 720px;
    height: 400px;

    z-index: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(201,154,55,0.19),
            rgba(201,154,55,0.05) 45%,
            transparent 72%
        );

    filter: blur(35px);
}


.hero-car {
    position: absolute;

    right: -4%;
    bottom: 3%;

    width: min(63vw, 1050px);
    max-height: 82vh;

    object-fit: contain;
    object-position: right bottom;

    z-index: 2;

    opacity: 0.93;

    filter:
        brightness(0.72)
        contrast(1.13)
        saturate(0.8)
        drop-shadow(0 40px 55px rgba(0,0,0,0.95));

    pointer-events: none;
    user-select: none;
}


.hero-content {
    position: relative;

    z-index: 6;

    width: 100%;
    max-width: 690px;
}


.hero-small {
    margin-bottom: 22px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 7px;
}


.hero h1 {
    font-family: "Cinzel", serif;

    font-size: clamp(55px, 6.5vw, 100px);
    font-weight: 600;

    line-height: 0.92;

    letter-spacing: -1px;

    text-shadow:
        0 10px 40px rgba(0,0,0,0.9);
}


.hero h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #966b1f,
            #f5d97e,
            #bd8c2b
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.gold-line {
    width: 100px;
    height: 1px;

    margin: 30px 0;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}


.hero h2 {
    max-width: 610px;

    margin-bottom: 18px;

    font-size: 23px;
    font-weight: 500;

    line-height: 1.45;
}


.hero-description {
    max-width: 570px;

    margin-bottom: 35px;

    color: var(--grey);

    font-size: 14px;

    line-height: 1.9;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;
}


.button {
    position: relative;

    min-width: 180px;

    padding: 16px 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    overflow: hidden;

    font-size: 11px;
    font-weight: 700;

    transition: 0.3s;
}


.button-gold {
    color: #030303;

    border: 1px solid var(--gold-bright);

    background:
        linear-gradient(
            135deg,
            #aa781e,
            #f0d474
        );
}


.button-gold::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 55%;
    height: 100%;

    transform: skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.38),
            transparent
        );

    transition: 0.55s;
}


.button-gold:hover::before {
    left: 150%;
}


.button-gold:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 40px rgba(201,154,55,0.18);
}


.button-gold span {
    transition: 0.3s;
}


.button-gold:hover span {
    transform: translateX(5px);
}


.button-dark {
    border: 1px solid var(--gold-dark);

    color: var(--gold-bright);

    background: rgba(0,0,0,0.5);
}


.button-dark:hover {
    transform: translateY(-3px);

    background: rgba(201,154,55,0.07);
}


.hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 34px;

    z-index: 6;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 20px;

    color: #675531;

    font-size: 8px;

    letter-spacing: 5px;

    white-space: nowrap;
}


.hero-bottom span {
    width: 60px;
    height: 1px;

    background: var(--gold-dark);
}



/* HEADINGS */


.section-heading {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}


.section-small {
    color: var(--gold);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 6px;
}


.section-heading h2,
.about h2 {
    margin-top: 15px;

    font-family: "Cinzel", serif;

    font-size: clamp(36px, 4.5vw, 56px);

    line-height: 1.15;
}


.heading-line {
    width: 80px;
    height: 1px;

    margin: 23px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}


.heading-line.left {
    margin-left: 0;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}


.section-description {
    max-width: 600px;

    margin: 22px auto 0;

    color: var(--grey);

    font-size: 14px;

    line-height: 1.8;
}



/* SERVICES */


.services {
    position: relative;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(201,154,55,0.04),
            transparent 30%
        ),

        #050505;
}


.services-grid {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


.service-card {
    min-height: 280px;

    position: relative;

    padding: 32px;

    overflow: hidden;

    border: 1px solid rgba(201,154,55,0.15);

    background:
        linear-gradient(
            145deg,
            rgba(18,18,18,0.92),
            rgba(6,6,6,0.96)
        );

    transition:
        transform 0.35s,
        border-color 0.35s,
        background 0.35s;
}


.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.45s;
}


.service-card::after {
    content: "";

    position: absolute;

    top: -55px;
    right: -55px;

    width: 110px;
    height: 110px;

    border: 1px solid rgba(201,154,55,0.18);

    transform: rotate(45deg);
}


.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201,154,55,0.42);

    background:
        linear-gradient(
            145deg,
            #13110c,
            #060606
        );
}


.service-card:hover::before {
    width: 100%;
}


.service-number {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


.service-card h3 {
    margin: 75px 0 18px;

    font-family: "Cinzel", serif;

    font-size: 22px;
}


.service-card p {
    color: var(--grey);

    font-size: 13px;

    line-height: 1.8;
}



/* ABOUT */


.about {
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(201,154,55,0.055),
            transparent 27%
        ),

        linear-gradient(
            130deg,
            #030303,
            #080706
        );
}


.about-container {
    max-width: 1080px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 330px 1fr;

    gap: 80px;

    align-items: center;
}


.about-logo-box {
    height: 330px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(19,19,19,0.88),
            rgba(5,5,5,0.92)
        );
}


.about-logo-box::before {
    content: "";

    position: absolute;

    top: 28px;
    left: -20px;

    width: 75%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}


.about-logo-box img {
    width: 180px;
    height: 180px;

    object-fit: contain;
}


.about-content p:not(.section-small) {
    margin-top: 22px;

    color: var(--grey);

    line-height: 1.9;

    font-size: 14px;
}



/* ADVANTAGES */


.advantages {
    background:
        linear-gradient(
            180deg,
            #070707,
            #020202
        );
}


.advantages-grid {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}


.advantage-card {
    min-height: 235px;

    padding: 30px;

    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);

    background: rgba(255,255,255,0.015);

    transition: 0.3s;
}


.advantage-card:hover {
    transform: translateY(-5px);

    background: rgba(201,154,55,0.035);
}


.advantage-card span {
    color: var(--gold);

    font-size: 10px;
}


.advantage-card h3 {
    margin: 55px 0 15px;

    font-size: 16px;
}


.advantage-card p {
    color: var(--grey);

    font-size: 12px;

    line-height: 1.8;
}



/* CONTACT */


.contact {
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(201,154,55,0.05),
            transparent 30%
        ),

        #040404;
}


.contact-grid {
    max-width: 1150px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 20px;
}


.contact-panel,
.location-panel {
    padding: 32px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(17,17,17,0.94),
            rgba(5,5,5,0.97)
        );
}


.contact-row {
    display: flex;
    align-items: center;

    gap: 17px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,0.065);

    transition: 0.3s;
}


.contact-row:last-child {
    border-bottom: none;
}


.contact-row:hover {
    padding-left: 7px;
}


.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold-dark);

    border-radius: 50%;

    transition: 0.3s;
}


.contact-icon svg {
    width: 20px;
    height: 20px;

    fill: var(--gold-bright);
}


.contact-row:hover .contact-icon {
    background: var(--gold);

    border-color: var(--gold);
}


.contact-row:hover .contact-icon svg {
    fill: #000;
}


.contact-row span {
    display: block;

    margin-bottom: 5px;

    color: #737373;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.contact-row strong {
    font-size: 13px;

    font-weight: 500;

    transition: 0.3s;
}


.contact-row:hover strong {
    color: var(--gold-bright);
}



/* LOCATION */


.location-info span {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 5px;
}


.location-info h3 {
    margin: 10px 0 8px;

    font-family: "Cinzel", serif;

    font-size: 27px;
}


.location-info p {
    margin-bottom: 24px;

    color: var(--grey);

    font-size: 13px;

    line-height: 1.7;
}



/* MAP */


.map {
    height: 300px;

    position: relative;

    display: block;

    overflow: hidden;

    border: 1px solid var(--gold-dark);
}


.map iframe {
    width: 100%;
    height: 100%;

    border: none;

    pointer-events: none;

    filter:
        grayscale(100%)
        brightness(0.62)
        contrast(1.25);
}


.map::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 60px rgba(0,0,0,0.65);
}


.map-label {
    position: absolute;

    left: 15px;
    bottom: 15px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 11px 15px;

    background: rgba(0,0,0,0.89);

    border: 1px solid var(--gold-dark);

    color: var(--gold-bright);

    font-size: 10px;
}


.map-label span {
    font-size: 16px;
}



/* FOOTER */


.footer {
    min-height: 125px;

    padding: 30px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #010101;

    border-top: 1px solid var(--border);
}


.footer-brand {
    display: flex;
    align-items: center;

    gap: 11px;
}


.footer-brand img {
    width: 50px;
    height: 50px;

    object-fit: contain;
}


.footer-brand strong {
    display: block;

    font-family: "Cinzel", serif;

    color: var(--gold-bright);

    font-size: 14px;
}


.footer-brand span {
    display: block;

    margin-top: 3px;

    font-size: 7px;

    letter-spacing: 5px;
}


.footer p {
    color: #555;

    font-size: 10px;
}



/* ANIMATIONS */


.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}


.reveal.active {
    opacity: 1;

    transform: translateY(0);
}



/* TABLET */


@media (max-width: 1050px) {

    .nav {
        display: none;
    }


    .hero-car {
        right: -25%;

        width: 88vw;

        opacity: 0.64;
    }


    .hero-glow {
        right: -10%;
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-container {
        grid-template-columns: 1fr;
    }


    .about-logo-box {
        max-width: 330px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }

}



/* MOBILE */


@media (max-width: 650px) {

    .section {
        padding: 85px 5%;
    }


    .header {
        height: 78px;

        padding: 0 5%;
    }


    .header-button {
        display: none;
    }


    .brand-logo {
        width: 42px;
        height: 42px;
    }


    .brand-text strong {
        font-size: 13px;
    }


    .brand-text span {
        font-size: 6px;

        letter-spacing: 5px;
    }


    .hero {
        min-height: 850px;

        padding:
            125px 5%
            320px;

        align-items: flex-start;
    }


    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.72) 50%,
                rgba(0,0,0,0.15) 76%,
                rgba(0,0,0,0.4) 100%
            );
    }


    .hero-car {
        width: 145vw;

        max-height: none;

        right: -55%;
        bottom: 3%;

        opacity: 0.68;
    }


    .hero-glow {
        width: 450px;
        height: 250px;

        right: -45%;
        bottom: 8%;
    }


    .hero h1 {
        font-size: 47px;
    }


    .hero h2 {
        font-size: 18px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-bottom {
        display: none;
    }


    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: 245px;
    }


    .service-card h3 {
        margin-top: 55px;
    }


    .about-logo-box {
        width: 100%;
        height: 270px;
    }


    .contact-panel,
    .location-panel {
        padding: 22px;
    }


    .map {
        height: 235px;
    }


    .footer {
        flex-direction: column;

        text-align: center;
    }

}