
:root{
  --primary:#e94e77; /* accent from logo flowers */
  --dark:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
  --cream:#faf7f5;
  --gold:#c6a15b;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji'; background:var(--bg); color:var(--dark)}
a{color:var(--primary); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}

header{
  position:sticky; top:0; z-index:50;
  background:#fff; backdrop-filter:saturate(180%) blur(6px);
  border-bottom:1px solid #eee;
}
.nav{
  max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:12px 16px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{width:40px; height:40px; border-radius:8px; object-fit:cover}
.brand h1{font-size:1.1rem; margin:0; font-weight:700; letter-spacing:.3px}

.nav a.btn{
  padding:10px 14px; border:1px solid #eee; border-radius:999px; display:inline-flex; align-items:center; gap:8px; font-weight:600
}

.hero{
  position:relative; overflow:hidden;
}
.hero img.cover{
  width:100%; height:60vh; object-fit:cover;
  filter:contrast(1.05) saturate(1.05);
}
.hero .overlay{
  position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25), rgba(0,0,0,.45));
  display:grid; place-items:center; text-align:center; color:#fff; padding:24px;
}
.hero h2{font-size:clamp(28px,6vw,52px); margin:0 0 10px 0;}
.hero p{font-size:clamp(16px,2.4vw,20px); margin:0; opacity:.95}
.hero .cta{margin-top:18px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap}
.hero .cta a{
  padding:12px 18px; border-radius:999px; background:var(--primary); color:#fff; font-weight:700;
}

.section{max-width:1200px; margin:0 auto; padding:48px 16px}
.section h3{font-size:clamp(22px,2.8vw,30px); margin:0 0 12px 0}
.section p.lead{color:var(--muted); margin:0 0 24px 0}
.grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  background:#fff; border:1px solid #eee; border-radius:16px; padding:16px; box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.gallery{
  display:grid; gap:10px;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
}
.gallery img{border-radius:12px; cursor:pointer; transition: transform .2s ease}
.gallery img:hover{transform:scale(1.02)}

.modal{
  position:fixed; inset:0; background:rgba(0,0,0,.8); display:none; align-items:center; justify-content:center; padding:20px; z-index:1000;
}
.modal.open{display:flex}
.modal img{max-height:90vh; border-radius:12px}

.embed-row{
  display:grid; gap:16px; grid-template-columns: 1fr; 
}
@media(min-width:900px){
  .embed-row{ grid-template-columns: 1fr 1fr; }
}

.contact{
  display:grid; gap:18px;
  grid-template-columns: 1fr;
}
.contact .card{padding:20px}
.form-grid{display:grid; grid-template-columns: 1fr; gap:12px}
.form-grid input, .form-grid textarea{
  width:100%; padding:12px 14px; border:1px solid #e5e7eb; border-radius:12px; font-size:16px
}
.form-grid button{
  padding:12px 16px; border-radius:12px; border:none; background:var(--dark); color:#fff; font-weight:700; cursor:pointer
}

footer{
  background:var(--cream); border-top:1px solid #eee; margin-top:36px;
}
.footer-inner{max-width:1200px; margin:0 auto; padding:22px 16px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:10px; font-size:14px}
.badges{display:flex; align-items:center; gap:10px}
.badges img{width:28px; height:28px}

.whatsapp-float{
  position:fixed; right:16px; bottom:16px; background:#25D366; color:#fff; border-radius:999px; padding:14px 16px; font-weight:800; box-shadow:0 10px 30px rgba(0,0,0,.2); z-index:60;
}
.phone-btn{
  display:inline-flex; align-items:center; gap:8px; background:#10b981; color:#fff; padding:10px 14px; border-radius:999px; font-weight:700;
}

.map{
  border:0; width:100%; height:320px; border-radius:16px
}
