:root{
  --bg: #ffffff;
  --ink: #0b2239;       /* navy */
  --muted: rgba(11,34,57,.72);
  --line: rgba(11,34,57,.14);
  --soft: rgba(11,34,57,.04);

  --accent: #0ea5a4;    /* acqua */
  --accent-2: #0b4d73;  /* navy brillante */
  --radius: 16px;
  --shadow: 0 14px 34px rgba(11,34,57,.10);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-mark{ font-size: 18px; }
.brand-text{ letter-spacing: .2px; }

.nav{
  display: none;
  gap: 16px;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover{ color: var(--ink); }

.header-ctas{
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(11,34,57,.12); }
.btn:active{ transform: translateY(0); box-shadow: none; }

.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-ghost{
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-lg{ padding: 12px 18px; }
.w-full{ width: 100%; }

.hero{
  padding: 70px 0 36px;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(14,165,164,.18), transparent 60%),
    linear-gradient(180deg, rgba(11,34,57,.06), transparent 55%);
}

.hero-inner{
  display: grid;
  gap: 18px;
  align-items: start;
}

.kicker{
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-sub{
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 55ch;
}

.hero-ctas{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-pill{
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
}

.hero-card{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card-inner{ padding: 18px; }
.quick-list{ margin-top: 10px; padding-left: 18px; color: var(--muted); }
.small{ font-size: .95rem; }
.muted{ color: var(--muted); }

.section{ padding: 64px 0; }
.section-alt{ background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: .2px;
}
.section-sub{ margin-top: 8px; color: var(--muted); }

.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(11,34,57,.06);
}
.card.soft{ background: rgba(255,255,255,.75); }

.card-top h3{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}
.lead{ color: var(--muted); }

.details{
  margin-top: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}
.details summary{
  cursor: pointer;
  font-weight: 900;
  color: var(--accent-2);
}
.details p{ margin-top: 10px; color: var(--muted); }

.two-col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bullets{
  padding-left: 18px;
  margin-top: 10px;
  color: var(--muted);
}

.cta-panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}
.cta-row{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ph{
  height: 160px;
  border-radius: var(--radius);
  background: rgba(14,165,164,.10);
  border: 1px dashed rgba(11,34,57,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(11,34,57,.70);
}

.map .ph{ height: 220px; }

.center{ text-align: center; }
.mt-12{ margin-top: 12px; }
.mt-18{ margin-top: 18px; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 860px){
  .nav{ display: flex; }
  .hero-inner{ grid-template-columns: 1.3fr .7fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* === GOOGLE REVIEWS === */

.rating-box{
  text-align: center;
  margin-bottom: 18px;
}

.rating-score{
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-2);
}

.map iframe{
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(11,34,57,.08);
}
