:root{
  --sky:#9cf0ff;
  --sea:#12c3d0;
  --lagoon:#09ddb8;
  --deep:#0a3c59;
  --deep-2:#08283b;
  --sand:#f5ead4;
  --sand-2:#f9f2e6;
  --coral:#ff7f68;
  --sun:#ffc76a;
  --foam:#ffffff;
  --white:#ffffff;
  --ink:#102c3e;
  --ink-soft:rgba(16,44,62,.75);
  --glass:rgba(255,255,255,.18);
  --glass-2:rgba(255,255,255,.28);
  --line:rgba(255,255,255,.26);
  --shadow:0 30px 80px rgba(4,25,38,.18);
  --shadow-soft:0 16px 40px rgba(4,25,38,.12);
  --radius:28px;
  --radius-lg:38px;
  --width:min(1180px, calc(100% - 1.5rem));
  --header-h:88px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.9), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255,199,106,.28), transparent 24%),
    linear-gradient(180deg, #ebfcff 0%, #aeeef8 19%, #9fe6f2 33%, #f5ead4 82%, #fff8ec 100%);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:auto 0 0;
  height:140px;
  background:
    radial-gradient(50% 80px at 10% 0, rgba(255,255,255,.22), transparent 70%),
    radial-gradient(45% 70px at 35% 10px, rgba(255,255,255,.2), transparent 70%),
    radial-gradient(40% 60px at 65% 0, rgba(255,255,255,.18), transparent 72%),
    radial-gradient(42% 75px at 90% 8px, rgba(255,255,255,.2), transparent 72%);
  pointer-events:none;
  z-index:0;
}

img{display:block;width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit}
main,section,header,footer{position:relative;z-index:1}
.section-width{width:var(--width);margin-inline:auto}

.ambient{
  position:fixed;
  border-radius:999px;
  filter:blur(18px);
  pointer-events:none;
  opacity:.55;
  z-index:0;
}
.ambient-one{
  width:220px;height:220px;top:92px;right:-60px;
  background:rgba(255,199,106,.42);
  animation:floatOrb 9s ease-in-out infinite;
}
.ambient-two{
  width:180px;height:180px;top:520px;left:-36px;
  background:rgba(18,195,208,.26);
  animation:floatOrb 11s ease-in-out infinite reverse;
}
.ambient-three{
  width:260px;height:260px;bottom:20px;right:10%;
  background:rgba(255,127,104,.14);
  animation:floatOrb 12s ease-in-out infinite;
}

.glass{
  background:linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.12));
  border:1px solid rgba(255,255,255,.38);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.site-header{
  width:min(1200px, calc(100% - 1rem));
  min-height:var(--header-h);
  margin:14px auto 0;
  padding:12px 14px;
  border-radius:24px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  position:sticky;
  top:10px;
  z-index:25;
  transition:background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.38);
  box-shadow:0 18px 45px rgba(3,29,45,.18);
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark{
  width:58px;height:58px;border-radius:18px;
  background:rgba(255,255,255,.8);
  box-shadow:inset 0 0 0 1px rgba(11,41,64,.08), 0 10px 28px rgba(6,92,122,.16);
  padding:7px;flex:0 0 auto;
}
.brand-mark img{width:100%;height:100%;object-fit:contain}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}
.brand-copy strong{
  font-size:1.08rem;
  letter-spacing:.02em;
}
.brand-copy small{
  color:rgba(11,41,64,.76);
  font-size:.82rem;
}

.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.nav a{
  font-size:.95rem;
  font-weight:800;
  color:rgba(11,41,64,.82);
  position:relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;bottom:-6px;
  width:100%;height:2px;
  transform:scaleX(0);
  transform-origin:left center;
  background:linear-gradient(90deg, var(--sea), var(--coral));
  transition:transform .25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after{transform:scaleX(1)}

.header-tools{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.lang-switch{
  display:inline-flex;
  gap:6px;
  padding:5px;
  border-radius:999px;
}
.lang-btn{
  border:0;
  background:transparent;
  color:var(--ink);
  min-width:44px;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.04em;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.lang-btn:hover{transform:translateY(-1px)}
.lang-btn.is-active{
  background:linear-gradient(135deg, var(--deep), #125b7d);
  color:var(--white);
}

.hero{
  min-height:100vh;
  padding:54px 0 40px;
  display:grid;
  align-items:center;
  overflow:clip;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(112deg, rgba(6,27,40,.62), rgba(6,39,58,.26) 42%, rgba(255,255,255,.03) 75%),
    url("assets/vista-mar-3.jpg") center center / cover no-repeat;
  transform:translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1.06);
  transition:transform .28s ease-out;
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,34,50,.14) 0%, rgba(8,34,50,.3) 48%, rgba(245,234,212,.92) 100%);
  z-index:-1;
}
.hero-inner{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(320px, .82fr);
  align-items:center;
  gap:34px;
  padding-top:58px;
}
.eyebrow,.section-tag,.panel-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.74rem;
}
.eyebrow,.panel-kicker{color:rgba(255,255,255,.88)}
.section-tag{
  color:var(--deep);
  margin-bottom:12px;
}
.hero-copy{
  max-width:720px;
  color:var(--white);
}
.hero h1{
  margin:12px 0 14px;
  font-size:clamp(3.2rem, 9vw, 6.8rem);
  line-height:.92;
  letter-spacing:-.05em;
  text-shadow:0 12px 0 rgba(2,24,36,.16), 0 26px 44px rgba(2,24,36,.34);
}
.hero-text{
  max-width:640px;
  font-size:clamp(1.02rem, 2vw, 1.2rem);
  line-height:1.78;
  color:rgba(255,255,255,.94);
}
.hero-actions,.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.cta-row.center{justify-content:center}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.hero-badges span{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:var(--white);
  font-weight:800;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.01em;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  box-shadow:0 14px 32px rgba(3,29,45,.12);
}
.btn:hover,.btn:focus-visible{transform:translateY(-3px)}
.btn-primary{
  background:linear-gradient(135deg, var(--lagoon), var(--sea));
  color:var(--white);
}
.btn-secondary{
  background:linear-gradient(135deg, var(--coral), #ff9b72);
  color:var(--white);
}
.btn-glass{
  background:rgba(255,255,255,.15);
  color:var(--white);
  border:1px solid rgba(255,255,255,.34);
}
.btn-outline{
  background:rgba(255,255,255,.92);
  color:var(--deep);
}
.info-card .btn-outline{
  background:linear-gradient(135deg, rgba(18,195,208,.1), rgba(255,255,255,.96));
}
.header-cta{white-space:nowrap}

.hero-panel{
  position:relative;
  min-height:332px;
  border-radius:var(--radius-lg);
  padding:1px;
  box-shadow:var(--shadow);
}
.panel-content{
  height:100%;
  border-radius:inherit;
  padding:28px 26px;
  color:var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(7,56,80,.64), rgba(7,56,80,.5));
  border:1px solid rgba(255,255,255,.24);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-panel h2{
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  margin:12px 0 14px;
}
.hero-panel p{
  margin:0;
  line-height:1.7;
  color:rgba(255,255,255,.92);
}
.panel-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}
.panel-links a{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:var(--white);
  font-weight:800;
  border:1px solid rgba(255,255,255,.2);
}

.hero-stats{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.stat-card{
  min-height:210px;
  padding:26px 22px;
  border-radius:var(--radius);
  color:var(--ink);
}
.stat-icon{
  font-size:1.9rem;
  display:inline-block;
  margin-bottom:10px;
}
.stat-card h3,
.feature-copy h3,
.info-card h2,
.final-card h2,
.menu-block-head h3{
  margin:0 0 12px;
}
.stat-card p,
.feature-copy p,
.section-head p,
.section-copy p,
.final-card p,
.menu-block-head p{
  margin:0;
  line-height:1.75;
  color:rgba(11,41,64,.82);
}

.section{padding:92px 0}
.split-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:42px;
  align-items:center;
}
.section-copy h2,
.section-head h2,
.info-card h2,
.final-card h2{
  font-size:clamp(2rem, 4vw, 3.3rem);
  line-height:1.04;
  margin:0 0 18px;
  letter-spacing:-.03em;
}

.photo-stack{
  position:relative;
  min-height:520px;
}
.stack-card{
  position:absolute;
  width:min(72%, 430px);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  border:8px solid rgba(255,255,255,.78);
}
.stack-card img{
  aspect-ratio:4 / 5;
  object-fit:cover;
}
.stack-a{top:18px;left:0;transform:rotate(-7deg)}
.stack-b{right:2%;top:120px;transform:rotate(8deg)}
.stack-c{left:18%;bottom:0;width:min(68%, 390px);transform:rotate(-2deg)}

.section-head{
  max-width:760px;
  margin-bottom:32px;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.feature-card{
  background:rgba(255,255,255,.72);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(255,255,255,.65);
}
.feature-card img{
  aspect-ratio:4 / 3;
  object-fit:cover;
}
.feature-copy{padding:24px 22px 26px}

.menu-anchors{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.mini-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.62);
  box-shadow:var(--shadow-soft);
  font-weight:800;
}
.mini-chip:hover{transform:translateY(-2px)}
.mini-chip-static{background:linear-gradient(135deg, rgba(18,195,208,.12), rgba(255,255,255,.92))}

.menu-note{
  padding:16px 18px;
  border-radius:22px;
  margin-bottom:28px;
}
.menu-note p{
  margin:0;
  font-weight:800;
  color:var(--deep);
}

.menu-block + .menu-block{margin-top:54px}
.menu-block-head{
  display:grid;
  grid-template-columns:minmax(0, .7fr) minmax(0, 1fr);
  gap:18px;
  align-items:end;
  margin-bottom:22px;
}
.menu-block-head .section-tag{margin-bottom:6px}
.menu-block-head h3{
  font-size:clamp(1.6rem, 3vw, 2.4rem);
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.menu-grid-tight{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.menu-card{
  position:relative;
  border-radius:28px;
  padding:22px 20px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.76)),
    linear-gradient(135deg, rgba(18,195,208,.12), rgba(255,199,106,.08));
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--shadow-soft);
}
.menu-card h4{
  margin:0 0 16px;
  font-size:1.2rem;
}
.menu-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}
.menu-item{
  padding-bottom:14px;
  border-bottom:1px solid rgba(10,60,89,.08);
}
.menu-item:last-child{
  padding-bottom:0;
  border-bottom:0;
}
.menu-main{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.menu-name{
  font-weight:800;
  line-height:1.4;
}
.menu-price{
  white-space:nowrap;
  flex:0 0 auto;
}
.price-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--sea), var(--lagoon));
  color:var(--white);
  font-weight:900;
  font-size:.94rem;
  box-shadow:0 10px 20px rgba(18,195,208,.22);
}
.price-chip.muted{
  background:linear-gradient(135deg, rgba(10,60,89,.12), rgba(10,60,89,.18));
  color:var(--deep);
  box-shadow:none;
}
.menu-note-small{
  margin-top:6px;
  color:var(--ink-soft);
  font-size:.92rem;
  line-height:1.55;
}
.subitems{
  list-style:none;
  padding:10px 0 0 0;
  margin:0;
  display:grid;
  gap:8px;
}
.subitems li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:rgba(16,44,62,.82);
  font-size:.94rem;
}
.subitems span:first-child{
  position:relative;
  padding-left:14px;
}
.subitems span:first-child::before{
  content:"+";
  position:absolute;
  left:0;
  top:0;
  font-weight:900;
  color:var(--sea);
}
.subitems .sub-price{
  font-weight:800;
  white-space:nowrap;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
  grid-auto-rows:230px;
}
.gallery-card{
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  background:rgba(255,255,255,.74);
}
.gallery-card.large{grid-row:span 2}
.gallery-card.wide{grid-column:span 2}
.gallery-card img{height:100%;object-fit:cover}

.info-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 430px);
  gap:28px;
  align-items:start;
}
.info-card,.final-card,.hours-card{
  border-radius:var(--radius-lg);
  padding:30px;
}
.info-list,.hours-list{
  list-style:none;
  padding:0;
  margin:0;
}
.info-list li{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(6,92,122,.12);
  line-height:1.6;
}
.info-list li:last-child{border-bottom:0}
.info-label{
  font-weight:900;
}
.info-value a{
  color:var(--deep);
  font-weight:800;
}

.hours-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82)),
    linear-gradient(135deg, rgba(18,195,208,.06), rgba(255,199,106,.08));
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(255,255,255,.7);
}
.hours-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid rgba(6,92,122,.12);
  font-weight:800;
}
.hours-list li span:last-child{
  color:rgba(11,41,64,.78);
  text-align:right;
}
.hours-note{
  margin:18px 0 0;
  color:var(--ink-soft);
  line-height:1.65;
}

.final-card{text-align:center}

.site-footer{
  padding:28px 1rem 38px;
  text-align:center;
  color:rgba(11,41,64,.75);
  font-weight:700;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:62px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg, #1fda74, #14b55f);
  color:var(--white);
  font-weight:900;
  box-shadow:0 24px 50px rgba(14,100,55,.28);
  border:1px solid rgba(255,255,255,.22);
}
.whatsapp-float svg{
  width:24px;
  height:24px;
  fill:currentColor;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
.delay-4{transition-delay:.32s}

.tilt{
  --rx:0deg;
  --ry:0deg;
  --mx:50%;
  --my:50%;
  position:relative;
  transform-style:preserve-3d;
  transform:perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transition:transform .18s ease, box-shadow .18s ease;
  will-change:transform;
}
.tilt::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.35), transparent 34%);
  opacity:.8;
  pointer-events:none;
  mix-blend-mode:screen;
}
.tilt:hover{
  box-shadow:0 28px 70px rgba(4,25,38,.2);
}

@keyframes floatOrb{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-18px,0)}
}

@media (max-width: 1080px){
  .site-header{
    grid-template-columns:1fr;
    justify-items:center;
  }
  .brand,.header-tools{justify-self:center}
  .hero-inner,
  .split-layout,
  .info-layout,
  .menu-block-head{
    grid-template-columns:1fr;
  }
  .hero-panel{max-width:540px}
  .hero-stats,
  .features-grid,
  .menu-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .site-header{
    padding:12px;
    width:min(1200px, calc(100% - .75rem));
  }
  .nav{
    gap:14px;
  }
  .nav a{
    font-size:.88rem;
  }
  .header-cta{
    min-height:48px;
    padding:0 18px;
  }
  .hero{
    min-height:auto;
    padding-top:40px;
  }
  .hero-inner{
    padding-top:34px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-stats,
  .features-grid,
  .gallery-grid,
  .menu-grid{
    grid-template-columns:1fr;
  }
  .gallery-grid{
    grid-auto-rows:220px;
  }
  .gallery-card.large,
  .gallery-card.wide{
    grid-row:auto;
    grid-column:auto;
  }
  .photo-stack{
    min-height:400px;
  }
  .stack-card{
    width:78%;
  }
  .stack-b{
    top:92px;
  }
  .stack-c{
    left:16%;
    width:74%;
  }
  .info-list li{
    grid-template-columns:1fr;
    gap:4px;
  }
  .hours-list li{
    flex-direction:column;
    align-items:flex-start;
  }
  .hours-list li span:last-child{
    text-align:left;
  }
  .whatsapp-float{
    right:14px;
    bottom:14px;
    height:58px;
    padding:0 16px;
  }
}

@media (max-width: 540px){
  .brand-copy small{display:none}
  .lang-switch{
    order:2;
  }
  .hero-badges span,
  .btn{
    width:100%;
  }
  .hero-badges{
    flex-direction:column;
  }
  .menu-card{
    padding:20px 18px;
  }
  .menu-main{
    flex-direction:column;
    gap:8px;
  }
  .menu-price{align-self:flex-start}
}
