* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0f0f14;
    --bg-deep: #0a0a10;
    --bg-soft: #111118;
    --text-main: #ffffff;
    --text-muted: #d9d4cc;
    --accent: #d4b483;
    --accent-dark: #b89563;
    --border-soft: rgba(255, 255, 255, 0.09);
    --card-bg: rgba(255, 255, 255, 0.045);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* HEADER */

header {
    width: 100%;
}

.navbar {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-nav:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

/* HERO */

.hero {
    min-height: 100vh;
    background: #08080d;
    display: flex;
    align-items: center;
    padding: 130px 8% 80px;
}

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 720px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.05;
    margin-bottom: 28px;
    color: #ffffff;
}

.hero p {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #f0ede8;
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(212, 180, 131, 0.18);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* TESTIMONIALS */

.testimonials {
    padding: 105px 8%;
    background: var(--bg-soft);
}

.testimonials-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 58px;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.testimonials-header p {
    color: var(--text-muted);
    line-height: 1.8;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 180, 131, 0.38);
}

.testimonial-card p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 22px;
}

.testimonial-card h4 {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
}

/* FINAL CTA */

.final-cta {
    padding: 105px 8%;
    background: #0d0d13;
    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.28;
    margin-bottom: 24px;
}

.final-cta-content p {
    max-width: 680px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    line-height: 1.8;
}

.final-cta-content a {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 16px 34px;
    border-radius: 44px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.final-cta-content a:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* FOOTER */

.footer {
    padding: 64px 8%;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 46px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    display: block;
    color: #cfc8bf;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 9px;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
}

/* WHATSAPP BUTTON */

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #111111;
    padding: 15px 23px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

/* CONTACT / CALENDLY */

.calendly-box {
    margin-top: 40px;
    padding: 36px;
    border-radius: 18px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
}

.calendly-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 18px;
}

.calendly-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 26px;
}

.calendly-btn {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 14px 28px;
    border-radius: 34px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.calendly-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* TABLET */

@media (max-width: 992px) {
    .navbar {
            position: relative;
            padding: 20px 5%;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            background: #0f0f14;
        }
    
        .hamburger {
            display: block;
        }
    
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 80px;
            right: 5%;
            background: rgba(15, 15, 20, 0.98);
            width: 220px;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            gap: 20px;
            z-index: 999;
        }
    
        .nav-links.active {
            display: flex;
        }
    
        .btn-nav {
            display: none;
        }

    .logo {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .btn-nav {
        order: 3;
    }

    .hero {
        padding: 190px 5% 90px;
        text-align: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-image img {
        height: auto;
        max-height: 560px;
    }

    .testimonials {
        padding: 90px 5%;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .final-cta {
        padding: 90px 5%;
    }

    .footer {
        padding: 58px 5%;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: 22px 5%;
        background: var(--bg-main);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .logo {
        font-size: 24px;
    }

    .nav-links {
        flex-direction: column;
        gap: 13px;
        margin-top: 4px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-nav {
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin-top: 4px;
    }

    .hero {
        min-height: auto;
        padding: 70px 5% 60px;
    }

    .hero h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .hero-btn,
    .final-cta-content a {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 24px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: 430px;
    }

    .testimonials {
        padding: 76px 5%;
    }

    .testimonials-header {
        margin-bottom: 42px;
    }

    .testimonial-card {
        padding: 28px;
        border-radius: 16px;
    }

    .final-cta {
        padding: 76px 5%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        padding: 13px 18px;
        font-size: 13px;
    }

    .calendly-box {
        padding: 28px;
    }

    .calendly-box h3 {
        font-size: 26px;
    }
}

/* SMALL MOBILE */

@media (max-width: 420px) {
    .hero h1 {
        font-size: 38px;
    }

    .testimonials-header h2,
    .final-cta-content h2 {
        font-size: 31px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .footer h3 {
        font-size: 24px;
    }
}