:root {
    --primary-green: #4A5D4E;
    --soft-brown: #D9C5B2;
    --bg-cream: #F9F7F2;
    --text-dark: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary-green); }

/* Navigation */
header {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

@media (min-width: 768px) {
    .logo { font-size: 1.5rem; }
}

/* Navigation — mobile first */
.menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    -webkit-tap-highlight-color: transparent;
}

nav ul {
    display: none;
    list-style: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 5%;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

nav ul.active { display: flex; }

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    display: block;
    padding: 4px 0;
}

nav a:hover { color: var(--soft-brown); }

@media (min-width: 768px) {
    .menu-toggle { display: none; }
    nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none;
        gap: 20px;
    }
    nav a { font-size: 0.9rem; display: inline; padding: 0; }
}

/* Hero Section — mobile first */
.hero {
    position: relative;
    padding: 48px 5%;
    text-align: center;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(217, 197, 178, 0.25);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-content > p {
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 5%;
        min-height: 320px;
    }
    .hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
    .hero-content > p { font-size: 1rem; }
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    transition: var(--transition);
}

.cta-button:hover {
    opacity: 0.9;
}

.learn-more-button {
    background: var(--soft-brown);
}

.learn-more-button:hover {
    background: var(--text-dark);
    opacity: 1;
}

.about { padding: 60px 5%; }
.about-title { text-align: center; margin-bottom: 40px; }
.about-content { text-align: center; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.about-content p + p { margin-top: 1rem; }

/* Services Grid */
.services { padding: 60px 5%; }
.section-title { text-align: center; margin-bottom: 40px; }

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-5px); }

.service-image img { width: 100%; height: 250px; object-fit: cover; }

.service-content { padding: 25px; }
.price-tag { color: var(--soft-brown); font-weight: 600; font-size: 1.2rem; display: block; margin-top: 10px; }

/* Service page catalog (multi-service) */
.service-catalog {
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.service-catalog > .lead {
    text-align: center;
    font-size: 1.1rem;
    margin: -20px auto 40px;
    max-width: 700px;
}

.service-group {
    margin-bottom: 50px;
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.service-group-lead {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--text-dark);
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-detail-card .service-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-card .service-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-detail-card .service-content p {
    flex: 1;
    font-size: 0.95rem;
}

.service-detail-card .price-tag {
    margin-top: 16px;
}

.cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cta .section-title {
    margin-bottom: 16px;
}

.cta-note {
    max-width: 560px;
    margin: 0 auto 8px;
}

.breadcrumb {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--soft-brown);
}

.breadcrumb span {
    color: var(--soft-brown);
    margin: 0 8px;
}

/* Contact section */
.contact {
    padding: 60px 5%;
    background: var(--white);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 24px;
}

.contact-whatsapp-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.contact-whatsapp-wrap .cta-button {
    margin-top: 0;
    background: #25D366;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details h3,
.contact-form-wrap h3 {
    margin-bottom: 12px;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-map {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 240px;
}

@media (min-width: 768px) {
    .contact-map iframe {
        height: 320px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(74, 93, 78, 0.25);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-cream);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--soft-brown);
    outline-offset: 1px;
}

.contact-form .cta-button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }
}

/* Footer */
footer { background: var(--primary-green); color: var(--white); padding: 50px 5%; text-align: center; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 30px; }
footer h3 { color: var(--soft-brown); margin-bottom: 15px; }
footer a { color: white; }
