@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --black: #030303;
    --white: #f4f1eb;
    --gold: #c79a55;
    --gold-light: #e0bd79;
    --gold-dark: #6f4b21;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--black);
}

body {
    min-height: 100%;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--white);
    background: var(--black);
}

.page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url("images/monaco-background.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    isolation: isolate;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.05), transparent 24%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 78%, #020202 100%);
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.68), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.gold-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gold-particles span {
    position: absolute;
    width: 160px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(224, 189, 121, 0.75), transparent);
    opacity: 0;
    filter: blur(0.2px);
    animation: goldFloat 9s infinite ease-in-out;
}

.gold-particles span:nth-child(1) { left: 10%; top: 24%; animation-delay: 1s; }
.gold-particles span:nth-child(2) { left: 68%; top: 34%; animation-delay: 2.3s; }
.gold-particles span:nth-child(3) { left: 22%; top: 76%; animation-delay: 3.7s; }
.gold-particles span:nth-child(4) { left: 58%; top: 84%; animation-delay: 5.1s; }
.gold-particles span:nth-child(5) { left: 42%; top: 14%; animation-delay: 6.2s; }

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    min-height: 100vh;
    padding: 72px 32px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand {
    position: relative;
    width: 430px;
    max-width: 86vw;
    min-height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 46px;
}

.brand__mark {
    position: absolute;
    right: -32px;
    top: -12px;
    width: 210px;
    height: 210px;
    border: 2px solid transparent;
    border-top-color: var(--gold-light);
    border-right-color: var(--gold);
    border-bottom-color: rgba(199, 154, 85, 0.5);
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-22deg);
    opacity: 0.9;
    animation: circleGlow 5s ease-in-out infinite alternate;
}

.brand__text {
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.brand__name {
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 300;
    line-height: 1.1;
}

.brand__line {
    width: 100%;
    height: 2px;
    margin: 12px 0 9px;
    transform-origin: center;
    background: linear-gradient(to right, transparent, var(--white) 14%, var(--white) 86%, transparent);
}

.brand__subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: none;
}

.intro {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 10px;
}

.intro h1 {
    margin: 0;
    font-size: clamp(54px, 9vw, 93px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: clamp(18px, 3vw, 42px);
    text-transform: uppercase;
}

.intro h1 span,
.intro h1 strong {
    display: inline-block;
}

.intro h1 span {
    color: var(--white);
}

.intro h1 strong {
    font-weight: 300;
    color: var(--gold);
}

.split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(34px) rotateX(65deg);
    filter: blur(6px);
}

.intro p {
    margin: 44px 0 0;
    font-size: clamp(17px, 2.3vw, 28px);
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--white);
}

.small-gold-line {
    display: block;
    width: 80px;
    height: 2px;
    margin: 34px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold);
}

.services {
    width: 100%;
    max-width: 720px;
    text-align: center;
    margin-top: auto;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 40px;
}

.section-title span {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.section-title span:last-child {
    background: linear-gradient(to right, var(--gold), transparent);
}

.section-title p {
    margin: 0;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 11px;
    text-transform: uppercase;
    font-weight: 400;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.service {
    position: relative;
    padding: 0 30px;
}

.service--middle {
    border-left: 1px solid rgba(199, 154, 85, 0.75);
    border-right: 1px solid rgba(199, 154, 85, 0.75);
}

.service__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    color: var(--gold);
}

.service__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.whatsapp-button {
    width: min(680px, calc(100% - 28px));
    min-height: 112px;
    margin: 72px auto;
    padding: 18px 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(135deg, #e6bf69 0%, #9e7435 45%, #6f4b21 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 22px 55px rgba(0, 0, 0, 0.52),
        0 0 38px rgba(199, 154, 85, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: buttonPulse 3.8s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 28px 65px rgba(0, 0, 0, 0.62),
        0 0 48px rgba(199, 154, 85, 0.34);
}

.whatsapp-button__icon {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
}

.whatsapp-button__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whatsapp-button strong,
.whatsapp-button em {
    display: block;
    font-style: normal;
    text-align: left;
    letter-spacing: 3px;
}

.whatsapp-button strong {
    font-size: clamp(28px, 4.6vw, 44px);
    font-weight: 400;
    line-height: 1.1;
}

.whatsapp-button em {
    margin-top: 6px;
    font-size: clamp(18px, 3vw, 29px);
    font-weight: 300;
}

.footer-brand {
    position: relative;
    text-align: center;
    padding-top: 22px;
    margin-top: auto;
}

.footer-brand::before,
.footer-brand::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 110px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.footer-brand::before {
    right: calc(100% + 22px);
}

.footer-brand::after {
    left: calc(100% + 22px);
    background: linear-gradient(to right, var(--gold), transparent);
}

.footer-brand div {
    color: var(--gold);
    font-size: 19px;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 8px 0 0;
    color: rgba(244, 241, 235, 0.62);
    font-size: 18px;
    letter-spacing: 5px;
}

@keyframes circleGlow {
    from {
        filter: drop-shadow(0 0 0 rgba(199, 154, 85, 0));
        transform: rotate(-22deg) scale(1);
    }
    to {
        filter: drop-shadow(0 0 20px rgba(199, 154, 85, 0.28));
        transform: rotate(-18deg) scale(1.025);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.42),
            0 22px 55px rgba(0, 0, 0, 0.52),
            0 0 28px rgba(199, 154, 85, 0.18);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.52),
            0 26px 65px rgba(0, 0, 0, 0.6),
            0 0 52px rgba(199, 154, 85, 0.38);
    }
}

@keyframes goldFloat {
    0% {
        opacity: 0;
        transform: translateX(-80px) translateY(20px) rotate(-8deg);
    }
    30% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
        transform: translateX(180px) translateY(-20px) rotate(-8deg);
    }
}

@media (max-width: 900px) {
    .hero__content {
        padding-top: 48px;
    }

    .intro {
        margin-bottom: 0px;
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: 100svh;
        background-size: 200% auto;
        background-position: center top;
    }

    .hero__content {
        min-height: 100svh;
        padding: 34px 18px 32px;
    }

    .brand {
        min-height: 118px;
        margin-bottom: 40px;
    }

    .brand__mark {
        width: 142px;
        height: 142px;
        right: -12px;
        top: -12px;
    }

    .brand__text {
        letter-spacing: 7px;
    }

    .brand__subtitle {
        letter-spacing: 4px;
    }

    .intro {
        margin-top: 4px;
        margin-bottom: 0px;
    }

    .intro h1 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        letter-spacing: 16px;
        font-size: clamp(46px, 14vw, 72px);
    }

    .intro p {
        margin-top: 28px;
        letter-spacing: 2px;
    }

    .services {
        max-width: 420px;
    }

    .section-title {
        gap: 14px;
        margin-bottom: 28px;
    }

    .section-title span {
        width: 44px;
    }

    .section-title p {
        font-size: 13px;
        letter-spacing: 6px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service {
        padding: 0;
    }

    .service--middle {
        border-left: none;
        border-right: none;
        padding: 28px 0;
        border-top: 1px solid rgba(199, 154, 85, 0.55);
        border-bottom: 1px solid rgba(199, 154, 85, 0.55);
    }

    .service h2 {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .whatsapp-button {
        min-height: 88px;
        margin: 48px auto 44px;
        padding: 16px 26px;
        gap: 16px;
    }

    .whatsapp-button__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .whatsapp-button strong,
    .whatsapp-button em {
        text-align: left;
        letter-spacing: 1.5px;
    }

    .footer-brand::before,
    .footer-brand::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .brand__name {
        font-size: 22px;
    }

    .brand__subtitle {
        font-size: 14px;
    }

    .intro {
        margin-bottom: 240px;
    }

    .intro h1 {
        letter-spacing: 12px;
    }

    .whatsapp-button {
        width: 100%;
        padding: 14px 18px;
    }

    .whatsapp-button strong {
        font-size: 22px;
    }

    .whatsapp-button em {
        font-size: 16px;
    }
}
