:root {
    --bg: #120c09;
    --bg-soft: #1a120e;
    --panel: #201611;
    --panel-2: #261a14;
    --gold: #d7b14a;
    --gold-strong: #f0c95c;
    --gold-soft: #b99434;
    --text: #f5f2ee;
    --muted: #dccfbf;
    --line: rgba(215, 177, 74, 0.22);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
            radial-gradient(circle at top, rgba(215, 177, 74, 0.08), transparent 25%),
            linear-gradient(180deg, #160e0a 0%, #120c09 100%);
    color: var(--text);
    line-height: 1.5;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(18, 12, 9, 0.9);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a,
.phone {
    color: #f1ede8;
    font-weight: 500;
    transition: 0.25s ease;
}

.menu a:hover,
.phone:hover {
    color: var(--gold-strong);
}

.phone {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.7rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px 20px;
    border-top: 1px solid var(--line);
    background: rgba(18, 12, 9, 0.97);
}

.mobile-menu.open {
    display: flex;
}

/* HERO */

.hero {
    position: relative;
    padding: 130px 0 100px;
    background: url("../images/hero.png") center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(8, 5, 3, 0.28), rgba(8, 5, 3, 0.58)),
            radial-gradient(circle at 50% 35%, rgba(215, 177, 74, 0.16), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
    padding: 36px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18, 12, 9, 0.18), rgba(18, 12, 9, 0.28));
    backdrop-filter: blur(2px);
}

.eyebrow {
    display: inline-block;
    color: var(--gold-strong);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.45),
            0 0 28px rgba(215, 177, 74, 0.08);
}

.hero h1 span {
    color: var(--gold);
    text-shadow:
            0 0 18px rgba(215, 177, 74, 0.24),
            0 0 42px rgba(215, 177, 74, 0.12);
}

.hero p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.35rem;
    color: #f2e6d8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 260px;
    min-height: 60px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #d7b14a 0%, #f0c95c 55%, #c99d2e 100%);
    color: #1b130b;
    box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(255, 220, 120, 0.18) inset,
            0 0 24px rgba(215, 177, 74, 0.16);
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
}

.btn-outline {
    border-color: rgba(240, 201, 92, 0.7);
    color: #f0c95c;
    background: rgba(20, 12, 8, 0.28);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(215, 177, 74, 0.12);
    box-shadow: 0 0 22px rgba(215, 177, 74, 0.12);
}

.stats {
    margin-top: 62px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-strong);
    font-weight: 800;
}

.stat span {
    color: #f0e5d8;
    font-size: 1rem;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero-actions,
.hero .stats {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.9s ease forwards;
}

.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero p { animation-delay: 0.36s; }
.hero-actions { animation-delay: 0.5s; }
.hero .stats { animation-delay: 0.66s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTIONS */

.services,
.gallery,
.contact {
    padding: 95px 0;
}

.section-head {
    max-width: 860px;
    text-align: center;
    margin: 0 auto 44px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 1.2rem;
    color: var(--muted);
}

/* FEATURED SERVICE */

.featured-service {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 34px;
    background: linear-gradient(145deg, rgba(215, 177, 74, 0.15), rgba(215, 177, 74, 0.06));
    border: 1px solid rgba(215, 177, 74, 0.18);
    border-radius: 30px;
    padding: 34px;
    margin: 30px auto 34px;
    box-shadow: var(--shadow);
}

.featured-text {
    background: linear-gradient(180deg, rgba(32, 22, 17, 0.88), rgba(22, 14, 11, 0.95));
    border: 1px solid rgba(215, 177, 74, 0.12);
    border-radius: 24px;
    padding: 34px;
}

.tag {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(215, 177, 74, 0.12);
    border: 1px solid rgba(215, 177, 74, 0.25);
    color: var(--gold-strong);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.featured-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(215, 177, 74, 0.13);
    color: var(--gold-strong);
    font-size: 2rem;
    margin-bottom: 24px;
}

.featured-text h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 14px;
}

.featured-text p {
    font-size: 1.12rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.featured-text ul {
    display: grid;
    gap: 14px;
}

.featured-text li,
.service-card li {
    position: relative;
    padding-left: 28px;
    color: #f0e6da;
    font-size: 1.05rem;
}

.featured-text li::before,
.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-strong);
    font-weight: 800;
}

.featured-image {
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(215, 177, 74, 0.18);
    background: #0e0907;
}

.featured-image img {
    height: 100%;
    object-fit: cover;
}

/* SERVICES GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, rgba(24, 15, 11, 0.98), rgba(18, 12, 9, 1));
    border: 1px solid rgba(215, 177, 74, 0.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.service-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(215, 177, 74, 0.12);
    color: var(--gold-strong);
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1.08rem;
}

.service-card ul {
    display: grid;
    gap: 12px;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    background: #0d0a08;
    border: 1px solid rgba(215, 177, 74, 0.12);
    box-shadow: var(--shadow);
}

.gallery-card.tall {
    min-height: 520px;
}

.gallery-card.featured figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 8, 6, 0.1), rgba(11, 8, 6, 0.78));
    backdrop-filter: blur(5px);
}

.gallery-card.featured span {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #1b130b;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-card.featured strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT */

.contact-box {
    background: linear-gradient(145deg, #d4b14d 0%, #c39c38 100%);
    color: #17100a;
    padding: 44px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 34px;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 26px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: rgba(23, 16, 10, 0.16);
    border-radius: 16px;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.08rem;
    margin-bottom: 4px;
}

/* FOOTER */

.footer {
    background: #080604;
    border-top: 1px solid var(--line);
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.footer h3,
.footer h4 {
    color: var(--gold-strong);
    margin-bottom: 16px;
}

.footer h3 {
    font-size: 2rem;
}

.footer p,
.footer li,
.footer a {
    color: #f2e7dc;
    font-size: 1.08rem;
}

.footer ul {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: #d9c6ae;
}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #10b981;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.35);
    z-index: 99;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-service {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 360px;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 860px) {
    .menu,
    .phone {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .stats,
    .gallery-grid,
    .contact-grid,
    .footer-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 90px 0 70px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 24px 18px;
    }

    .hero p {
        font-size: 1.08rem;
    }

    .section-head p {
        font-size: 1.05rem;
    }

    .contact-box,
    .service-card,
    .featured-text {
        padding: 28px;
    }

    .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 560px) {
    .logo {
        font-size: 1.7rem;
    }

    .container {
        width: min(100% - 22px, var(--container));
    }

    .featured-service {
        padding: 16px;
        border-radius: 22px;
    }

    .contact-box {
        padding: 28px 20px;
    }

    .contact-item h4 {
        font-size: 1.2rem;
    }

    .gallery-card,
    .gallery-card.tall {
        min-height: 280px;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
    }
}