:root{
  --brand:#0b8fa3;      /* teal principal */
  --brand-2:#0a7d8f;    /* teal oscuro */
  --ink:#ffffff;        /* texto principal */
  --muted:#e4f6f9;      /* texto suave claro */
  --bg:#01798a;         /* fondo oscuro mar */
  --bg-2:#01798a;       /* bloques */
  --line:#01798a;       /* líneas sutiles */
  --radius:14px;
  --max:1180px;
  --gap:18px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--ink);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  scroll-behavior:smooth;
}
a{color:var(--muted)}
a:hover{opacity:.9}
img{max-width:100%;display:block;border-radius:12px}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
header{
  position:sticky;
  top:0;
  background:#419ba7;
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  z-index:1000
}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:55px;
  height:55px;
  border-radius:50%;
  overflow:hidden;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow)
}
.brand__logo img{width:100%;height:100%;object-fit:cover}
.brand__name{font-weight:800;letter-spacing:.5px}
.subtitle{opacity:.85;font-size:13px;letter-spacing:.3px}
.menu{display:flex;gap:24px;align-items:center}
.menu a{color:var(--ink);opacity:.9;text-decoration:none}
.menu a:hover{opacity:1}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--ink);
  color:#0a2227;
  padding:12px 18px;
  border-radius:12px;
  border:none;
  font-weight:800;
  cursor:pointer;
  box-shadow:var(--shadow)
}
.btn--ghost{
  background:#419ba7;
  color: #ffffff;
  border:1px solid var(--line)
}
.mobile-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--ink);
  font-size:24px
}
@media (max-width:820px){
  .menu{
    display:none;
    position:absolute;
    top:72px;
    left:0;
    right:0;
    background: #419ba7;
    padding:12px 20px;
    border-bottom:1px solid var(--line)
  }
  .menu.open{display:flex;flex-direction:column;gap:14px}
  .mobile-toggle{display:inline-flex}
}

/* Hero con imagen y overlay */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: #01798a;
}
/* ✅ Ruta preparada para futura foto hero: /img/hero-terraza.jpg */
.hero:before{
  content:'';
  position:absolute;
  inset:0;
  background:url('img/hero-terraza.jpg') center/cover no-repeat;
  opacity:.35;
  filter:saturate(1.1)
}
.hero:after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  opacity:.8
}
.hero .container{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:32px;
  align-items:center
}
@media (max-width:920px){
  .hero .container{grid-template-columns:1fr}
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#419ba7;
  border:1px solid var(--line);
  color:var(--muted);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px
}
.h1{
  font-size:clamp(34px,6vw,60px);
  line-height:1.05;
  margin:14px 0 10px
}
.lead{
  font-size:18px;
  color:var(--muted);
  max-width:60ch
}
.pill{
  font-size:12px;
  background:#419ba7;
  border:1px solid var(--line);
  padding:4px 8px;
  border-radius:999px;
  color:var(--muted)
}
.section{padding:70px 0}
.section__title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px
}
.card{
  background:linear-gradient(180deg,var(--bg-2) 0%,#419ba7 0%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow)
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--gap)
}
@media (max-width:920px){
  .grid-3{grid-template-columns:1fr}
}
.list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px
}
.icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:rgba(11,143,163,.12);
  border:1px solid var(--line)
}
.gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:var(--gap)
}
.gallery div{display:grid;gap:var(--gap)}
@media (max-width:920px){
  .gallery{grid-template-columns:1fr}
}
.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px
}
.reservas{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap)
}
@media (max-width:920px){
  .reservas{grid-template-columns:1fr}
}
.map{
  width:100%;
  height:360px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#082b31;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted)
}
footer{
  padding:40px 0;
  border-top:1px solid var(--line);
  background:#419ba7;
  color:var(--muted)
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:var(--gap)
}
@media (max-width:920px){
  .footer-grid{grid-template-columns:1fr}
}
.sr-only{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden
}
.cookie{
  position:fixed;
  bottom:16px;
  right:16px;
  left:16px;
  max-width:780px;
  margin:auto;
  background:#07343b;
  border:1px solid var(--line);
  padding:14px;
  border-radius:12px;
  display:none;
  gap:12px;
  align-items:center;
  z-index:2000
}
.cookie.show{display:flex}
.cookie p{
  margin:0;
  color:var(--muted);
  font-size:14px
}
.cookie .actions{
  margin-left:auto;
  display:flex;
  gap:10px
}

/* Inputs reutilizables */
.input,
.textarea{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#01798a;
  color:var(--ink);
  font:inherit;
}
