:root {
    --primary: #444444;
    --secondary: #666666;
    --accent: #CDA45E;
    --gold: #CDA45E;
    --dark: #444444;
    --light: #F5F7F8;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffcfa;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #917967;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hamburger {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5F7F8 0%, #E8EDF0 50%, #F5F7F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(205, 164, 94, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--gold);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-text p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 40px;
    max-width: 450px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(205, 164, 94, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(205, 164, 94, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(26, 26, 26, 0.1);
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title .line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 20px;
    z-index: -1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(205, 164, 94, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    border: 2px solid var(--gold);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f3ecda;
    color: var(--dark);
}

.contact .section-title h2 {
    color: var(--dark);
}

.contact .section-title .line {
    background: #CDA45E;
}

.contact .section-title .line {
    background: var(--gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    text-align: center;
    align-items: start;
}

.contact-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-separator {
    background: #CDA45E;
    height: 100%;
    width: 3px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.map-container h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.map-address {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 15px;
}

.map-gmb-link {
    display: inline-block;
    margin-top: 12px;
    color: #CDA45E;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.map-gmb-link:hover {
    color: var(--dark);
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
}

.contact-item {
    padding: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #dbbe8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-item p {
    color: var(--dark);
    opacity: 0.85;
}

.contact-item a {
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #CDA45E;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--dark);
    text-decoration-color: var(--dark);
}

/* Footer */
footer {
    background: #1A1A1A;
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #CDA45E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--dark);
    color: #CDA45E;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        box-shadow: 
            0 20px 40px rgba(26, 26, 26, 0.1),
            -15px -15px 0 0 var(--gold);
    }

    .hero-image::before {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 30px;
    }

    .hamburger span {
        display: none;
    }

    .hamburger::before {
        content: '☰';
        font-size: 1.5rem;
        color: #917967;
        transition: all 0.3s ease;
    }

    .hamburger.active::before {
        content: '✕';
        font-size: 1.3rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-separator {
        display: block;
        height: 1px;
        width: 50%;
        margin: 30px auto;
    }

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

    .contact-left {
        grid-template-columns: 1fr;
    }
}

/* Desktop: hide hamburger */
/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.privacy-content {
    background: #fffcfa;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-content h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-content p {
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.privacy-content a {
    color: #CDA45E;
    text-decoration: none;
}

.privacy-content a:hover {
    color: var(--dark);
}

.privacy-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.privacy-close:hover {
    color: #CDA45E;
}

.privacy-domain {
    margin-top: 25px !important;
    padding-top: 20px;
    border-top: 1px solid #E8D5B7;
    font-size: 0.85rem !important;
    color: #666666 !important;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #CDA45E;
}