:root{
    --cream:#f8f3ea;
    --cream-dark:#eee5d8;
    --gold:#c5a15a;
    --green:#4f6048;
    --text:#3f403d;
    --white:#ffffff;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
    font-family:"Segoe UI", Arial, sans-serif;
    color:var(--text);
    background:var(--cream);
    line-height:1.7;
}

.container{
    width:min(1180px,90%);
    margin:auto;
}

header{
    position:sticky;
    top:0;
    z-index:10;
    background:rgba(248,243,234,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.06);
}

header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
}

.logo img{ height:110px; display:block; }

nav{
    display:flex;
    gap:34px;
}

nav a{
    color:var(--text);
    text-decoration:none;
    font-weight:600;
    letter-spacing:.03em;
}

nav a:hover{ color:var(--gold); }

.hero{
    min-height:82vh;
    background:
        linear-gradient(90deg, rgba(248,243,234,.92) 0%, rgba(248,243,234,.68) 43%, rgba(248,243,234,.12) 100%),
        url("../img/hero.jpg");
    background-size:cover;
    background-position:center right;
    display:flex;
    align-items:center;
}

.hero-content{
    width:min(1180px,90%);
    margin:auto;
    max-width:620px;
    margin-left:18%;
}

.hero h1{
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(3rem,6vw,5.4rem);
    line-height:1.05;
    color:var(--green);
    margin-bottom:24px;
}

.hero p{
    font-size:1.35rem;
    color:#7b5d28;
    margin-bottom:36px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 30px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary{
    background:var(--green);
    color:white;
}

.btn-secondary{
    background:var(--gold);
    color:white;
}

.section{
    padding:90px 0;
}

.section h2{
    font-family:Georgia, "Times New Roman", serif;
    color:var(--green);
    text-align:center;
    font-size:3rem;
    margin-bottom:48px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:rgba(255,255,255,.78);
    border:1px solid rgba(197,161,90,.28);
    border-radius:24px;
    padding:34px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.card h3{
    font-family:Georgia, "Times New Roman", serif;
    color:var(--green);
    font-size:1.55rem;
    margin-bottom:22px;
}

.card ul{ list-style:none; }

.card li{
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.07);
}

.card li:last-child{ border-bottom:none; }

.light{
    background:var(--cream-dark);
}

.contact-box{
    max-width:720px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(197,161,90,.28);
    border-radius:26px;
    padding:46px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.contact-box a{
    color:var(--green);
    text-decoration:none;
    font-weight:700;
}

footer{
    background:var(--green);
    color:white;
    padding:28px 0;
    text-align:center;
}

footer a{
    color:white;
    text-decoration:none;
}

footer span{ margin:0 12px; opacity:.7; }

@media(max-width:900px){
    nav{ display:none; }

    .logo img{ height:62px; }

    .hero{
        min-height:75vh;
        background:
            linear-gradient(rgba(248,243,234,.88), rgba(248,243,234,.72)),
            url("../img/hero.jpg");
        background-size:cover;
        background-position:center;
    }

    .hero p{ font-size:1.15rem; }

    .cards{
        grid-template-columns:1fr;
    }

    .section{
        padding:70px 0;
    }

    .section h2{
        font-size:2.4rem;
    }
}

.contact-box .btn-primary{
    color:#ffffff;
    margin-top:20px;
}

.card{
    min-height:auto;
}

.map-wrapper{
    max-width:1000px;
    margin:50px auto 50px auto;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:420px;
    border:none;
    display:block;
}

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    background:#25D366;
    color:white;

    padding:14px 24px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    z-index:999;
}

.footer-logo{
    height:70px;
    margin-bottom:15px;
}

.footer-links{
    margin-top:15px;
}

.footer-links a{
    margin:0 10px;
}

body{
    font-family:'Montserrat', sans-serif;
}

.hero h1,
.section h2,
.card h3{
    font-family:'Cormorant Garamond', serif;
}

.cards{
    align-items:stretch;
}

.card{
    display:flex;
    flex-direction:column;
}