:root {
    --bg: #0c0c0c;
    --bg-soft: #151515;
    --card: #111111;
    --white: #f8f5ef;
    --text: #e8e0d1;
    --muted: #b8ab93;
    --gold: #c9a96b;
    --gold-dark: #9f8045;
    --border: rgba(201, 169, 107, 0.18);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --container: 1200px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.center-text {
    text-align: center;
}

.top-space {
    margin-top: 35px;
}

.narrow-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2,
.about h2,
.contact h2,
.sub-hero h1,
.pricing-cta h2,
.clients h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.section-heading h2,
.about h2,
.contact h2,
.pricing-cta h2,
.clients h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtext,
.muted-text,
.sub-hero-text {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(12, 12, 12, 0.88);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1.1;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 107, 0.25);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.logo-sub {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: #d8b87d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(201, 169, 107, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #1f8f4e;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #25a55a;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

.hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
        url("../assets/img1.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
}

.eyebrow {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text {
    color: #e6dccd;
    max-width: 620px;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-dark {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 107, 0.4);
}

.card h3 {
    font-family: "Playfair Display", serif;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card p {
    color: var(--muted);
    font-size: 0.96rem;
}

.clients {
    background: var(--bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.client-pill {
    padding: 18px 16px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font-weight: 500;
    box-shadow: var(--shadow);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.feature-number {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: var(--muted);
}

.image-grid {
    display: grid;
    gap: 24px;
}

.preview-grid {
    grid-template-columns: repeat(4, 1fr);
}

.full-gallery {
    grid-template-columns: repeat(4, 1fr);
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #1a1a1a;
    box-shadow: var(--shadow);
}

.image-card img {
    height: 290px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.06);
}

.gallery-block {
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    display: block;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item a {
    color: var(--white);
    word-break: break-word;
}

.contact-item p {
    color: var(--text);
}

.sub-hero {
    padding: 110px 0 70px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("../assets/img2.jpg") center/cover no-repeat;
    border-bottom: 1px solid var(--border);
}

.services-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("../assets/img3.jpg") center/cover no-repeat;
}

.sub-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 12px;
    color: var(--white);
    font-family: "Playfair Display", serif;
}

.sub-hero-text {
    max-width: 720px;
    margin: 0 auto;
}

.gallery-page,
.pricing,
.pricing-cta {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 107, 0.4);
}

.featured-price {
    border-color: rgba(201, 169, 107, 0.45);
    background: rgba(201, 169, 107, 0.04);
}

.price-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.price-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.price-placeholder {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(201, 169, 107, 0.12);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #1f8f4e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    background: #25a55a;
}

@media (max-width: 1100px) {
    .cards,
    .preview-grid,
    .full-gallery,
    .pricing-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features,
    .grid-2,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 0;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .desktop-whatsapp {
        display: none;
    }

    .hero {
        min-height: 82vh;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .section {
        padding: 75px 0;
    }

    .logo {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .preview-grid,
    .full-gallery,
    .cards,
    .pricing-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.7rem;
        letter-spacing: 1.4px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .sub-hero {
        padding: 90px 0 60px;
    }

    .image-card img {
        height: 240px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }
}