:root{
  --bg:#0b1220;
  --bg2:#0f1b33;
  --surface:#101a2e;
  --card:#0f1a2e;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --soft:rgba(234,240,255,.10);
  --soft2:rgba(234,240,255,.06);
  --border:rgba(234,240,255,.14);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;

  --primary:#6ee7ff;
  --primary2:#a78bfa;
  --accent:#34d399;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(110,231,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 25%, rgba(167,139,250,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #070c16 75%);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

/* Top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(7,12,22,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,240,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar__msg{ font-size:14px; color:var(--muted); }
.topbar__cta{
  font-size:14px;
  padding:8px 12px;
  border:1px solid rgba(234,240,255,.20);
  border-radius:999px;
  background:rgba(234,240,255,.06);
}

/* Header */
.header{
  position:sticky; top:44px; z-index:40;
  background: rgba(11,18,32,.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(234,240,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(110,231,255,.25), rgba(167,139,250,.25));
  border:1px solid rgba(234,240,255,.15);
}
.brand__name{ font-weight:800; letter-spacing:.6px; }
.brand__tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{ color:var(--muted); font-size:14px; }
.nav a:hover{ color:var(--text); }
.nav__btn{
  padding:10px 14px;
  border-radius:999px;
  color:#071022 !important;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  font-weight:700;
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.16);
  background: rgba(234,240,255,.06);
  cursor:pointer;
}
.hamburger span{
  display:block; height:2px; width:18px;
  margin:4px auto;
  background: rgba(234,240,255,.85);
  border-radius:2px;
}

/* Hero */
.hero{ padding:48px 0 10px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(234,240,255,.06);
  border:1px solid rgba(234,240,255,.12);
  color: var(--muted);
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height:1.06;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nowrap{ white-space:nowrap; }
.hero p{ margin:0 0 18px; color: var(--muted); font-size:16px; line-height:1.55; }

.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 14px;
  padding:12px 16px;
  font-weight:700;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(234,240,255,.06);
  color:var(--text);
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#06101f;
  border:none;
}
.btn--ghost:hover{ background: rgba(234,240,255,.10); }
.btn--mini{
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}

.stats{
  display:flex; gap:12px; flex-wrap:wrap;
}
.stat{
  padding:12px 14px;
  background: rgba(234,240,255,.05);
  border:1px solid rgba(234,240,255,.10);
  border-radius:16px;
  min-width:150px;
}
.stat__big{ font-weight:800; font-size:20px; }
.stat__small{ color:var(--muted); font-size:13px; margin-top:2px; }

.hero__media{ display:flex; flex-direction:column; gap:12px; }
.mediaCard{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(234,240,255,.04);
  box-shadow: var(--shadow);
}
.mediaCard.big{ min-height: 320px; }
.mediaRow{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.imgPlaceholder{
  height:100%;
  min-height: 240px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:18px;
  background:
    radial-gradient(600px 240px at 20% 10%, rgba(110,231,255,.16), transparent 60%),
    radial-gradient(600px 240px at 80% 35%, rgba(167,139,250,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.imgPlaceholder.small{ min-height: 150px; }
.ph__icon{ font-size:34px; margin-bottom:6px; }
.ph__text{ color:rgba(234,240,255,.82); font-weight:700; }
.ph__text small{ font-weight:600; color:var(--muted); }

.mediaCard__overlay{
  position:absolute; left:12px; bottom:12px;
  display:flex; gap:8px; flex-wrap:wrap;
}
.chip{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(7,12,22,.55);
  border:1px solid rgba(234,240,255,.14);
  font-size:12px;
  color:rgba(234,240,255,.9);
}

/* Sections */
.section{ padding:56px 0; }
.section--alt{
  background:
    radial-gradient(1000px 400px at 10% 50%, rgba(52,211,153,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid rgba(234,240,255,.06);
  border-bottom:1px solid rgba(234,240,255,.06);
}
.section__head{ margin-bottom:18px; }
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing:-.4px;
}
.section__head p{ margin:0; color:var(--muted); line-height:1.55; }

/* Card */
.card{
  border-radius: var(--radius);
  border:1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.6);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--lift{ transform: translateY(-20px); }
.card__head{ padding:18px 18px 0; }
.card__head h2{ margin:0 0 6px; }
.card__head p{ margin:0 0 12px; color:var(--muted); }

/* Booking form */
.quickReserve{ padding: 0 0 30px; }
.formGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  padding:18px;
}
label{ display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:13px; color:rgba(234,240,255,.88); }
input, select, textarea{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(7,12,22,.35);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{ color:rgba(234,240,255,.45); }
textarea{ resize:vertical; }

.span2{ grid-column: span 2; }
.formActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.notice{
  padding:12px 12px;
  border-radius:14px;
  border:1px dashed rgba(234,240,255,.20);
  background: rgba(234,240,255,.05);
  color: rgba(234,240,255,.88);
  line-height:1.45;
  font-size:14px;
}
.fineprint{
  padding: 0 18px 18px;
  color: var(--muted);
  font-size:13px;
}

/* Listings */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.listing{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
}
.listing__img{ position:relative; }
.listing__img .imgPlaceholder{ min-height: 190px; }
.badge{
  position:absolute; top:12px; left:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(7,12,22,.62);
  border:1px solid rgba(234,240,255,.14);
  font-size:12px;
  font-weight:800;
}
.badge--soft{ background: rgba(52,211,153,.16); border-color: rgba(52,211,153,.25); }
.listing__body{ padding:14px; }
.listing h3{ margin:0 0 6px; }
.meta{ color:var(--muted); font-size:13px; margin-bottom:10px; }
.bullets{ margin:0; padding-left:18px; color:rgba(234,240,255,.86); }
.bullets li{ margin:6px 0; }
.listing__foot{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:12px;
}
.rating{ color: rgba(234,240,255,.85); font-weight:800; }

/* Features */
.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.feature{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.45);
}
.feature__icon{ font-size:26px; margin-bottom:8px; }
.feature__title{ font-weight:800; margin-bottom:6px; }
.feature__text{ color: var(--muted); font-size:14px; line-height:1.5; }

/* Reviews */
.review{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
}
.review__top{ display:flex; gap:10px; align-items:center; }
.avatar{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(234,240,255,.08);
  border:1px solid rgba(234,240,255,.14);
}
.review__name{ font-weight:900; }
.review__meta{ color:var(--muted); font-size:12px; margin-top:2px; }
.review__stars{ margin:10px 0 8px; font-weight:900; color: rgba(110,231,255,.9); }
.review p{ margin:0; color: rgba(234,240,255,.86); line-height:1.55; }

/* Locations */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.locCard, .contactCard{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(234,240,255,.12);
  background: rgba(15,26,46,.55);
}
.locCard h3{ margin:0 0 6px; }
.locCard p{ margin:0 0 12px; color:var(--muted); line-height:1.55; }
.mapPlaceholder{
  border-radius:16px;
  border:1px dashed rgba(234,240,255,.22);
  background: rgba(234,240,255,.05);
  padding:18px;
  min-height:160px;
  display:grid;
  place-items:center;
  text-align:center;
}

/* Contact */
.contactLine{ margin:8px 0; color: rgba(234,240,255,.86); }
.contactLine span{ color: var(--muted); margin-right:8px; }
.contactActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.contactForm{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }

/* Footer */
.footer{
  padding:26px 0 18px;
  border-top:1px solid rgba(234,240,255,.06);
  background: rgba(7,12,22,.35);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.footer__brand{ font-weight:900; letter-spacing:.8px; }
.footer__small{ color:var(--muted); font-size:13px; margin-top:6px; }
.footer__links{ display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-size:14px; }
.footer__links a:hover{ color:var(--text); }
.footer__bottom{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

/* Floating action button */
.fab{
  position:fixed;
  right:18px; bottom:18px;
  width:54px; height:54px;
  border-radius:18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--accent), rgba(110,231,255,.9));
  color:#06101f;
  border: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.fab span{ font-size:22px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .mediaCard.big{ min-height: 280px; }
  .grid3{ grid-template-columns: 1fr; }
  .grid4{ grid-template-columns: 1fr 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .formGrid{ grid-template-columns: 1fr 1fr; }
  .span2{ grid-column: span 2; }
}
@media (max-width: 700px){
  .nav{
    display:none;
    position:absolute;
    left:4vw; right:4vw;
    top: 64px;
    background: rgba(7,12,22,.92);
    border:1px solid rgba(234,240,255,.12);
    border-radius:18px;
    padding:12px;
    flex-direction:column;
    gap:10px;
  }
  .nav.open{ display:flex; }
  .hamburger{ display:block; }
  .formGrid{ grid-template-columns: 1fr; }
  .span2{ grid-column: span 1; }
  .card--lift{ transform: translateY(-10px); }
}
