:root{--bg:#ffffff;--card:#f6f8fb;--ink:#0f1115;--muted:#5b667a;--brand:#0ea5e9;--accent:#7c3aed}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink)}
img{max-width:100%;height:auto;border-radius:1rem}
a{color:var(--brand);text-decoration:none}a:hover{text-decoration:underline}
.site-header{position:sticky;top:0;z-index:10;display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:1px solid #e6e8ee}
.logo{display:flex;flex-direction:column;line-height:1}.brand{font-weight:800;font-size:1.2rem}.brand-sub{font-size:.75rem;color:var(--muted);letter-spacing:.06em}
.nav a{margin:0 .75rem;color:var(--ink)}.nav a[aria-current="page"]{color:var(--brand);font-weight:600}
.lang-switch{display:flex;gap:.25rem}.lang{background:#eef2f9;color:var(--ink);border:1px solid #d9dfe9;border-radius:.6rem;padding:.4rem .55rem;font-weight:600;cursor:pointer}
.lang.active{outline:2px solid var(--brand)}
main{max-width:1100px;margin:0 auto;padding:1rem 1.25rem 3rem}
.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;align-items:center;padding:2rem 0}
.hero-text h1{font-size:2.4rem;margin:.5rem 0}.hero-text p{color:var(--muted);font-size:1.1rem}
.btn{display:inline-block;background:linear-gradient(90deg,var(--brand),var(--accent));color:#fff;border:none;border-radius:.8rem;padding:.8rem 1rem;font-weight:700;box-shadow:0 8px 24px rgba(14,165,233,.25)}
.btn.ghost{background:none;border:1px solid #e0e5ee;color:var(--ink)}
.highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:2rem 0}
.card{background:var(--card);padding:1.2rem;border:1px solid #e3e7ef;border-radius:1rem}.card h3{margin:0 0 .25rem;font-size:1.6rem}
.about{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin:2.5rem 0}
.ticks{padding-left:1.1rem}.ticks li{margin:.35rem 0}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-top:2rem}
.page-intro{padding:1rem 0 0}.page-intro h1{font-size:2rem;margin-bottom:.25rem}.page-intro p{color:var(--muted)}
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1rem}
.svc{background:var(--card);padding:1rem;border:1px solid #e3e7ef;border-radius:1rem}
.price-list{list-style:none;padding:0;margin:.5rem 0 0}
.price-list li{display:flex;align-items:center;justify-content:space-between;padding:.45rem 0;border-bottom:1px dashed #e0e5ee}
.price-list li:last-child{border-bottom:none}
.cta-wide{background:linear-gradient(90deg,rgba(14,165,233,.12),rgba(124,58,237,.12));padding:1.5rem;border:1px solid #e0e5ee;border-radius:1rem;text-align:center}
.price-images{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin:1.5rem 0}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:1rem 0 2rem}
.contact-card{background:var(--card);padding:1rem;border:1px solid #e3e7ef;border-radius:1rem}
.map img{width:100%;border-radius:1rem;border:1px solid #e3e7ef}
.contact-form{background:var(--card);padding:1rem;border:1px solid #e3e7ef;border-radius:1rem;margin-top:1rem}
.row{display:flex;flex-direction:column;margin:.6rem 0}
input,textarea{background:#fff;color:var(--ink);border:1px solid #e0e5ee;border-radius:.6rem;padding:.65rem}
.muted{color:var(--muted);font-size:.9rem}
.site-footer{max-width:1100px;margin:0 auto;padding:2rem 1.25rem;color:var(--muted);display:flex;align-items:center;justify-content:space-between}
.socials a{margin-left:1rem}
.whatsapp-floating{position:fixed;right:18px;bottom:18px;display:flex;align-items:center;gap:.6rem;background:#25D366;color:#fff;border:none;border-radius:999px;padding:.7rem 1rem;box-shadow:0 8px 24px rgba(0,0,0,.15);z-index:9999;font-weight:700}
.whatsapp-floating:hover{filter:brightness(1.05);text-decoration:none}
.whatsapp-floating svg{width:22px;height:22px;fill:#fff}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .gallery figure {
    aspect-ratio: 4 / 3;  /* or 4/3, 1/1, etc. */
    margin: 0;
  }
  
  .gallery img {
    width: 100%;
    height: 220px;        /* pick a height you like */
    object-fit: cover;    /* crop to fill the box */
    border-radius: 16px;
    display: block;
  }
  .map .map-embed{
  width:100%;
  aspect-ratio: 16 / 5;   /* responsive height */
  border:0;
  border-radius: 1rem;
  box-shadow: 0 1px 0 #e6e8ee;
}
figcaption{
  text-align: center;
}

.calendar-embed iframe{
  width:100%;
  height:700px;     /* adjust as you like */
  border:0;
  border-radius:1rem;
}

.booking {
  max-width: 600px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.booking .row {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0;
}

.booking label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.booking input,
.booking select {
  border: 1px solid #d0d5df;
  border-radius: 0.5rem;
  padding: 0.6rem;
}

.booking button {
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 0.6rem;
  background: #4caf50;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.booking button:hover {
  background: #43a047;
}

.ok { color:#059669; font-weight:600; }
.link { color:#2563eb; text-decoration:none; }
.link:hover { text-decoration:underline; }
@media (max-width: 900px){.hero{grid-template-columns:1fr}.about{grid-template-columns:1fr}.services-grid{grid-template-columns:1fr}.gallery,.price-images,.contact-grid{grid-template-columns:1fr}}
