:root{
  --bg:#050505;
  --panel:#101010;
  --soft:#161616;
  --soft-2:#1b1b1b;
  --line:rgba(255,255,255,.09);
  --line-strong:rgba(255,255,255,.14);
  --text:#ffffff;
  --muted:rgba(255,255,255,.70);
  --muted-2:rgba(255,255,255,.52);
  --accent:#d8b17c;
  --cream:#f3e7d0;
  --radius-lg:34px;
  --radius-md:26px;
  --radius-sm:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at top left, rgba(216,177,124,.07), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.04), transparent 32%),
    #050505;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  width:100%;
  max-width:100%;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(1200px, calc(100% - 40px));
  margin:auto;
}

/* NAV */

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding:16px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  font-size:18px;
  letter-spacing:.22em;
  font-weight:700;
  text-transform:uppercase;
}

.brand-logo{
  display:inline-flex;
  align-items:center;
  width:auto;
  max-width:150px;
  overflow:hidden;
}

.brand-logo img{
  display:block;
  width:auto;
  height:42px;
  max-width:150px;
  object-fit:contain;
}

.menu{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}

.menu a{
  transition:.18s ease;
}

.menu a:hover{
  color:#fff;
}

/* HERO */

.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:end;
  overflow:hidden;
  isolation:isolate;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.14), rgba(0,0,0,.88)),
    radial-gradient(circle at top right, rgba(216,177,124,.10), transparent 34%);
  pointer-events:none;
}

.hero video,
.hero-bg,
.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:120px 0 76px;
  width:min(900px,100%);
}

.hero-content.center{
  margin:auto;
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.06);
}

h1,
h2,
h3,
p{
  margin-top:0;
}

h1{
  font-size:clamp(44px, 8vw, 90px);
  line-height:.95;
  font-weight:300;
  margin:22px 0 18px;
  letter-spacing:-.04em;
}

h2{
  font-size:clamp(30px, 4vw, 56px);
  line-height:1.05;
  font-weight:300;
  margin:0;
  letter-spacing:-.03em;
}

h3{
  font-size:24px;
  line-height:1.15;
  font-weight:500;
  margin:0;
}

.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.9;
  max-width:780px;
}

section{
  padding:88px 0;
}

/* TEXT BLOCKS */

.tag{
  display:inline-flex;
  width:max-content;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
  margin-bottom:14px;
}

.section-head{
  display:grid;
  gap:14px;
  max-width:920px;
  margin-bottom:30px;
}

.section-copy{
  color:var(--muted);
  line-height:1.9;
  font-size:16px;
  max-width:840px;
}

/* BUTTONS */

.btns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  border:1px solid transparent;
  transition:.18s ease;
  cursor:pointer;
  min-height:48px;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:#fff;
  color:#000;
}

.btn-outline{
  border-color:rgba(255,255,255,.18);
  color:#fff;
  background:transparent;
}

.btn-accent{
  background:var(--accent);
  color:#000;
}

/* LAYOUTS */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:28px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
  margin-top:28px;
}

.panel{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216,177,124,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.panel-body{
  padding:30px;
}

.panel p{
  color:var(--muted);
  line-height:1.85;
  margin:12px 0 0;
  font-size:15px;
}

/* CARDS */

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.card img{
  height:240px;
  object-fit:cover;
}

.card-body{
  padding:24px;
}

.card h3{
  font-size:24px;
}

.card p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

.card .btn{
  margin-top:18px;
}

/* MINI CARDS / LISTS */

.mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.mini-card,
.list-item,
.amenity,
.info-box,
.ally{
  padding:16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.03);
}

.mini-card strong,
.list-item strong,
.amenity strong,
.info-box strong,
.ally strong{
  display:block;
  font-size:15px;
  color:#fff;
}

.mini-card span,
.list-item span,
.amenity span,
.info-box p,
.ally span{
  display:block;
  margin-top:7px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.list{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.amenities{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:28px;
}

/* GALLERY */

.gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  margin-top:30px;
}

.gallery-main,
.gallery-stack img{
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--soft);
}

.gallery-main img{
  height:520px;
  object-fit:cover;
}

.gallery-stack{
  display:grid;
  gap:18px;
}

.gallery-stack img{
  height:251px;
  object-fit:cover;
}

/* CTA */

.cta{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px;
  background:
    radial-gradient(circle at top right, rgba(216,177,124,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.cta p{
  color:var(--muted);
  line-height:1.85;
  max-width:780px;
}

/* FORMS */

form,
.form{
  display:grid;
  gap:12px;
  margin-top:20px;
}

input,
select,
textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:#fff;
  color:#000;
  outline:none;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.check input{
  width:auto;
  margin-top:3px;
}

.status{
  margin-top:14px;
  font-size:14px;
  color:var(--muted);
  min-height:20px;
}

/* INDEX */

.manifesto{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(216,177,124,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}

.manifesto-copy{
  padding:40px;
}

.manifesto-copy p{
  color:var(--muted);
  line-height:1.85;
  margin:0 0 14px;
}

.manifesto-copy strong{
  color:#fff;
}

.manifesto-img{
  min-height:460px;
  background:url('../img/index/historia.jpg') center/cover no-repeat;
}

/* RESTAURANTE */

.menu-shell{
  margin-top:34px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(216,177,124,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.menu-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.menu-copy{
  padding:36px;
}

.menu-kicker{
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,.56);
}

.menu-copy p{
  margin:16px 0 0;
  color:var(--muted);
  line-height:1.85;
  font-size:15px;
}

.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.tab{
  padding:11px 15px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.76);
  font-size:12px;
  cursor:pointer;
  transition:.18s ease;
}

.tab:hover,
.tab.active{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.menu-content{
  display:none;
  padding:22px;
}

.menu-content.active{
  display:block;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.menu-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.025);
  overflow:hidden;
}

.menu-card img{
  height:220px;
  object-fit:cover;
}

.menu-card-body{
  padding:24px;
}

.menu-card-title{
  color:var(--cream);
  font-size:24px;
  margin:0 0 16px;
  font-weight:500;
}

.menu-entry{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.menu-entry:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.menu-entry-name{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
}

.menu-entry-desc{
  margin-top:5px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.menu-entry-price{
  color:var(--accent);
  font-weight:600;
  white-space:nowrap;
  font-size:15px;
}

.compact-note,
.extras,
.menu-note{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  background:rgba(255,255,255,.03);
  line-height:1.7;
  font-size:13px;
}

/* ROOFTOP */

.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
  transform:scale(1.02);
}

.hero-slide.active{
  opacity:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.86)),
    radial-gradient(circle at top right, rgba(216,177,124,.10), transparent 34%);
}

.qr-box{
  margin-top:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  display:none;
}

.qr-box img{
  width:220px;
  max-width:100%;
  display:block;
  margin:14px 0 0;
  border-radius:16px;
  background:#fff;
  padding:10px;
}

.qr-id{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.qr-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.info-stack{
  display:grid;
  gap:14px;
  margin-top:18px;
}

/* FOOTER */

.footer{
  border-top:1px solid var(--line);
  padding:30px 0;
  color:rgba(255,255,255,.56);
  font-size:14px;
  text-align:center;
}

/* PAGE BACKGROUNDS */

.page-index .hero{
  min-height:90vh;
}

.page-hotel .hero{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    url('../img/hotel/common/lobby.jpg') center/cover no-repeat;
}

.page-restaurante .hero{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    url('../img/restaurante/hero.jpg') center/cover no-repeat;
}

.page-servicios .hero{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    url('../img/servicios/spa-hero.jpg') center/cover no-repeat;
}

.page-eventos .hero{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    url('../img/rooftop/noche.jpg') center/cover no-repeat;
}

.page-guia .hero{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.86)),
    url('../img/guia/tulum.jpg') center/cover no-repeat;
}

/* RESPONSIVE */

@media (max-width:980px){
  .menu{
    display:none;
  }

  .grid,
  .grid-2,
  .split,
  .mini-grid,
  .gallery,
  .menu-hero,
  .menu-grid,
  .amenities,
  .manifesto{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .hero-content{
    padding:100px 0 64px;
  }

  .gallery-main img{
    height:340px;
  }

  .gallery-stack img{
    height:220px;
  }

  .manifesto-img{
    min-height:320px;
  }

  .menu-hero-image{
    min-height:280px;
  }
}

@media (max-width:560px){
  .container{
    width:min(100% - 28px, 1200px);
  }

  section{
    padding:68px 0;
  }

  h1{
    font-size:clamp(42px, 14vw, 62px);
  }

  .panel-body,
  .menu-copy,
  .menu-card-body,
  .cta,
  .manifesto-copy{
    padding:22px;
  }

  .menu-content{
    padding:14px;
  }

  .menu-entry{
    grid-template-columns:1fr;
    gap:6px;
  }

  .menu-entry-price{
    white-space:normal;
  }

  .btn{
    width:100%;
  }

  .nav .brand-logo img{
  height:42px !important;
  width:auto !important;
  max-width:150px !important;
  object-fit:contain !important;
}
}