:root{
  --bg:#0b0c0f;
  --surface:#121419;
  --text:#ffffff;
  --muted:#cdd3db;
  --line:rgba(255,255,255,.08);
  --primary:#7fd19c;
  --primary-2:#6bc28a;
  --airbnb:#ff385c;
  --booking:#003b95;
  --abono:#2db36d;
  --shadow:0 20px 50px rgba(0,0,0,.28);
  --container:1200px;
  --booking-bg:#f4efe6;
  --booking-text:#2d3440;
  --booking-muted:#62706a;
  --booking-card:#efe9df;
  --booking-input:#f6f4ef;
  --booking-border:#d5cabd;
  --service-bg:#f7f7f7;
  --service-card:#ffffff;
  --service-text:#374151;
  --service-muted:#4b5563;
  --service-icon-bg:#e8eef2;
  --service-icon:#2f6884;
  --review-bg:#f6f3ee;
  --review-card:#ffffff;
  --review-text:#333b46;
  --review-muted:#7082a1;
  --review-gold:#e8b612;
  --review-blue:#135f88;
  --review-track:#cfd5de;
  --review-active:#1f678d;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Manrope", sans-serif;
  background:linear-gradient(180deg,#0b0c0f 0%, #10141a 100%);
  color:var(--text);
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(10,12,16,.72);
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  flex-shrink:0;
}

.brand-title{
  font-size:1.15rem;
  font-weight:800;
  letter-spacing:.02em;
}

.brand-sub{
  margin-top:6px;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.28em;
  color:var(--muted);
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-wrap:nowrap;
  white-space:nowrap;
  flex:1;
  min-width:0;
}

.main-nav a{
  font-weight:700;
  font-size:.92rem;
  padding:10px 5px;
}

.pill-btn{
  border:1px solid rgba(255,255,255,.22);
  padding:10px 18px !important;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  transition:.25s ease;
  flex-shrink:0;
}

.pill-airbnb:hover{
  background:var(--airbnb);
  border-color:var(--airbnb);
  color:#fff;
  box-shadow:0 10px 24px rgba(255,56,92,.35);
}

.pill-booking{
  border-color:rgba(0,59,149,.45);
}

.pill-booking:hover{
  background:#003b95;
  border-color:#003b95;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,59,149,.35);
}

.pill-abono{
  border-color:rgba(45,179,109,.55);
}

.pill-abono:hover{
  background:var(--abono);
  border-color:var(--abono);
  color:#fff;
  box-shadow:0 10px 24px rgba(45,179,109,.35);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:26px;
  height:3px;
  margin:5px 0;
  background:#fff;
  border-radius:999px;
}

.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,10,13,.50) 0%, rgba(8,10,13,.50) 100%),
    linear-gradient(90deg, rgba(8,10,13,.72) 0%, rgba(8,10,13,.18) 48%, rgba(8,10,13,.66) 100%);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:90px 0 70px;
}

.hero-kicker{
  margin:0 0 14px;
  color:#d7e6d9;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:1.35rem;
}

.hero h1{
  margin:0 auto;
  max-width:1080px;
  font-size:clamp(2.8rem, 7vw, 5.6rem);
  line-height:.95;
  font-weight:800;
  letter-spacing:-.05em;
}

.hero-text{
  max-width:860px;
  margin:24px auto 0;
  font-size:1.45rem;
  line-height:1.55;
  color:#edf1f4;
}

.hero-actions{
  margin-top:32px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:18px;
  font-weight:800;
  transition:.25s ease;
  border:none;
  cursor:pointer;
}

.cta-primary{
  background:var(--primary);
  color:#183022;
}

.cta-primary:hover{
  background:var(--primary-2);
  transform:translateY(-2px);
}

.cta-secondary{
  background:#fff;
  color:#223126;
}

.cta-secondary:hover{
  transform:translateY(-2px);
}

.quick-info{
  margin-top:-32px;
  position:relative;
  z-index:3;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.quick-card{
  background:rgba(20,24,31,.92);
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  color:#eef3f7;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  font-weight:700;
}

.booking-section{
  padding:84px 0;
  background:var(--booking-bg);
  color:var(--booking-text);
}

.booking-kicker{
  text-align:center;
  color:#6b7c72;
}

.booking-title{
  margin:0;
  text-align:center;
  font-size:clamp(2.2rem,4vw,3.8rem);
  line-height:1.02;
  letter-spacing:-.04em;
}

.booking-subtitle{
  text-align:center;
  color:var(--booking-muted);
  max-width:760px;
  margin:16px auto 34px;
  font-size:1.08rem;
  line-height:1.6;
}

.booking-card{
  max-width:1120px;
  margin:0 auto;
  background:var(--booking-card);
  border-radius:28px;
  padding:26px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.booking-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.booking-field{
  display:flex;
  flex-direction:column;
  text-align:left;
}

.booking-field label{
  font-weight:800;
  margin-bottom:10px;
  color:#5c5249;
}

.booking-field select,
.booking-field input{
  width:100%;
  min-height:58px;
  border-radius:18px;
  border:1px solid var(--booking-border);
  background:var(--booking-input);
  padding:0 18px;
  font-size:1rem;
  color:#38332e;
  outline:none;
}

.booking-btn{
  display:block;
  margin:24px auto 0;
  min-width:320px;
  min-height:58px;
  border:none;
  border-radius:999px;
  background:linear-gradient(90deg,#76c590 0%, #68b682 100%);
  color:#163324;
  font-weight:800;
  font-size:1.1rem;
  cursor:pointer;
  transition:.25s ease;
}

.booking-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(68,145,102,.22);
}

.section{
  padding:84px 0;
}

.section-head{
  text-align:center;
  margin-bottom:34px;
}

.section-head.left{
  text-align:left;
}

.section-kicker{
  margin:0 0 10px;
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#b9c7cf;
}

.section-head h2{
  margin:0;
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.02;
  letter-spacing:-.04em;
}

.section-head p{
  max-width:820px;
  margin:16px auto 0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
}

.section-head.left p{
  margin-left:0;
}

.lodging-menu{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:26px;
}

.lodging-tab{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  transition:.2s ease;
}

.lodging-tab:hover,
.lodging-tab.active{
  background:rgba(255,255,255,.16);
}

.lodging-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.lodging-card,
.contact-card,
.location-pill,
.faq-list details,
.contact-form,
.map-wrap{
  background:rgba(18,20,25,.88);
  border:1px solid var(--line);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.lodging-card{
  border-radius:24px;
  overflow:hidden;
  transition:.25s ease;
}

.lodging-card:hover{
  transform:translateY(-6px);
}

.lodging-card.is-hidden{
  display:none;
}

.lodging-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.lodging-body{
  padding:20px;
}

.lodging-body h3{
  margin:0 0 10px;
  font-size:1.35rem;
}

.lodging-body p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.lodging-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.lodging-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  font-size:.85rem;
  font-weight:700;
  color:#eef3f7;
}

.lodging-actions{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.lodging-actions a{
  flex:1;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  background:rgba(255,255,255,.08);
}

.lodging-actions a:hover{
  background:rgba(255,255,255,.14);
}

.services{
  background:var(--service-bg);
  color:var(--service-text);
}

.services .section-kicker{
  color:#7a8691;
}

.services .section-head h2{
  color:#2f3744;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  background:var(--service-card);
  border-radius:24px;
  padding:28px 26px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-icon{
  width:66px;
  height:66px;
  border-radius:50%;
  background:var(--service-icon-bg);
  color:var(--service-icon);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.service-icon svg{
  width:28px;
  height:28px;
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.service-card h3{
  margin:0 0 12px;
  font-size:1.15rem;
  color:#333c48;
}

.service-card p{
  margin:0;
  color:var(--service-muted);
  line-height:1.7;
  font-size:1rem;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.gallery-grid img{
  width:100%;
  height:290px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  transition:.25s ease;
}

.gallery-grid img:hover{
  transform:scale(1.02);
}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:26px;
  align-items:start;
}

.location-data{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.location-pill{
  padding:18px 18px;
  border-radius:18px;
  font-weight:700;
}

.location-actions{
  margin-top:20px;
}

.map-wrap{
  border-radius:26px;
  overflow:hidden;
}

.reviews-section{
  background:var(--review-bg);
  color:var(--review-text);
}

.reviews-header{
  text-align:center;
  margin-bottom:34px;
}

.reviews-header h2{
  margin:0;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.02;
  letter-spacing:-.04em;
  color:#2f3744;
}

.reviews-score-block{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:18px;
  flex-wrap:wrap;
}

.reviews-stars-big{
  color:var(--review-gold);
  font-size:2.5rem;
  letter-spacing:.08em;
  font-weight:800;
}

.reviews-score{
  font-size:4.2rem;
  line-height:1;
  font-weight:800;
  color:#2f3744;
}

.reviews-meta{
  margin:16px 0 0;
  color:var(--review-muted);
  font-size:1.05rem;
}

.reviews-summary{
  max-width:360px;
  margin:18px auto 0;
  display:grid;
  gap:12px;
}

.summary-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:14px;
  align-items:center;
  color:#60708d;
}

.summary-bar{
  width:100%;
  height:12px;
  border-radius:999px;
  background:var(--review-track);
  overflow:hidden;
}

.summary-fill{
  height:100%;
  border-radius:999px;
  background:var(--review-gold);
}

.fill-95{ width:95%; }
.fill-5{ width:5%; }

.reviews-badge{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--review-blue);
  font-weight:800;
  flex-wrap:wrap;
  justify-content:center;
}

.badge-icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.badge-icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.reviews-carousel-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
  margin-top:28px;
}

.reviews-carousel-viewport{
  overflow:hidden;
}

.reviews-track{
  display:flex;
  transition:transform .35s ease;
}

.review-slide{
  min-width:33.333333%;
  padding:0 11px;
}

.review-card{
  background:var(--review-card);
  border-radius:24px;
  padding:28px 28px 26px;
  min-height:270px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.review-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.review-card-name{
  font-size:1rem;
  font-weight:800;
  color:#39424f;
}

.review-card-date{
  margin-top:4px;
  color:#7788a4;
  font-size:.95rem;
}

.review-card-stars{
  color:var(--review-gold);
  font-size:1.25rem;
  letter-spacing:.04em;
  white-space:nowrap;
}

.review-card p{
  margin:0;
  font-size:1rem;
  line-height:1.75;
  color:#39424f;
}

.reviews-arrow{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid #c9d0d9;
  background:#f6f6f4;
  color:#2e3744;
  font-size:2rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
}

.reviews-arrow:hover{
  background:#ebeff2;
}

.reviews-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}

.reviews-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#cad1da;
  cursor:pointer;
  transition:.2s ease;
}

.reviews-dot.active{
  width:34px;
  border-radius:999px;
  background:var(--review-active);
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-list details{
  border-radius:20px;
  padding:18px 20px;
}

.faq-list summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}

.contact-cards{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.contact-card{
  border-radius:18px;
  padding:18px;
  font-weight:700;
}

.contact-form{
  border-radius:24px;
  padding:22px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:none;
  outline:none;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#fff;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
  margin-bottom:12px;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:30px 0;
  background:rgba(10,12,16,.82);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.footer-inner p{
  color:var(--muted);
  margin:10px 0 0;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

@media (max-width: 1280px){
  .brand-title{
    font-size:1.05rem;
  }

  .brand-sub{
    font-size:.66rem;
    letter-spacing:.22em;
  }

  .main-nav{
    gap:4px;
  }

  .main-nav a{
    font-size:.88rem;
    padding:10px 4px;
  }

  .pill-btn{
    padding:9px 14px !important;
  }
}

@media (max-width: 1180px){
  .lodging-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-grid,
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .location-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .booking-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .review-slide{
    min-width:50%;
  }
}

@media (max-width: 900px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:0;
    padding:16px;
    background:rgba(12,15,20,.98);
    border-bottom:1px solid var(--line);
    text-align:center;
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    width:100%;
    padding:14px 10px;
    text-align:center;
  }

  .pill-btn{
    text-align:center;
    margin-top:6px;
    width:100%;
    max-width:320px;
  }

  .quick-grid,
  .lodging-grid,
  .service-grid,
  .gallery-grid,
  .form-row,
  .booking-grid{
    grid-template-columns:1fr;
  }

  .review-slide{
    min-width:100%;
    padding:0;
  }

  .reviews-carousel-wrap{
    grid-template-columns:1fr;
  }

  .reviews-arrow{
    display:none;
  }

  .hero{
    min-height:80vh;
  }

  .hero-text{
    font-size:1.08rem;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .cta{
    width:100%;
    max-width:340px;
  }

  .booking-btn{
    width:100%;
    min-width:unset;
  }

  .footer-inner{
    flex-direction:column;
  }

  .brand{
    max-width:70%;
  }

  .header-inner{
    position:relative;
  }

  .reviews-score{
    font-size:3.2rem;
  }

  .reviews-stars-big{
    font-size:2rem;
  }

  .lodging-menu{
    justify-content:flex-start;
    overflow:auto;
    white-space:nowrap;
    padding-bottom:4px;
  }
}