:root{
  --bg:#0b0f14;
  --card:#0f1620;
  --text:#eaf0f7;
  --muted:#b6c3d3;
  --line:rgba(255,255,255,.10);
  --accent:#ffffff;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max:1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:linear-gradient(to bottom, rgba(7,10,14,.68), rgba(7,10,14,.12));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:.4px;
}

.brand__mark{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:700;
  background:rgba(255,255,255,.06);
}

.brand__name{
  display:block;
  font-size:14px;
  font-weight:650;
}

.brand__sub{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav__link{
  font-size:13px;
  color:rgba(255,255,255,.86);
  padding:10px 8px;
  border-radius:10px;
  transition:background .2s ease, color .2s ease;
}

.nav__link:hover{
  background:rgba(255,255,255,.08);
}

.nav__link.is-active{
  background:rgba(255,255,255,.10);
}

.nav__cta{
  font-size:13px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  transition:transform .2s ease, background .2s ease;
}

.nav__cta:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
}

.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  padding:10px;
}

.nav__toggle span{
  display:block;
  height:2px;
  width:100%;
  background:rgba(255,255,255,.85);
  margin:5px 0;
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding-top:84px;
  overflow:hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  filter:saturate(1.05) contrast(1.05);
  opacity:0;
  transition:opacity 900ms ease;
}

.hero__bg.is-visible{
  opacity:1;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.25), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.42) 35%, rgba(0,0,0,.70));
}

.hero__content{
  position:relative;
  padding:72px 0 54px;
}

.hero__kicker{
  margin:0 0 10px;
  color:rgba(255,255,255,.80);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
}

.hero__title{
  margin:0 0 12px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:clamp(30px, 4.2vw, 62px);
  line-height:1.05;
}

.hero__subtitle{
  margin:0 0 22px;
  max-width:64ch;
  color:rgba(255,255,255,.82);
  font-size:clamp(14px, 1.6vw, 18px);
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.95);
  font-size:14px;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
}

.btn--primary{
  background:rgba(255,255,255,.92);
  color:#0b0f14;
  border-color:transparent;
}

.btn--primary:hover{
  background:#ffffff;
}

.btn--ghost{
  background:rgba(255,255,255,.06);
}

.btn--full{
  width:100%;
}

.hero__meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  font-size:12px;
  color:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.18);
  padding:7px 10px;
  border-radius:999px;
}

.hero__dots{
  display:flex;
  gap:8px;
  margin-top:26px;
}

.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.dot:hover{ transform:scale(1.08); }
.dot.is-active{ background:rgba(255,255,255,.92); }

.section{
  padding:72px 0;
}

.section--alt{
  background:linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
  flex-wrap:wrap;
}

.section__title{
  margin:0;
  font-size:clamp(22px, 2.3vw, 30px);
  letter-spacing:.02em;
}

.section__desc{
  margin:0;
  color:var(--muted);
  max-width:70ch;
  font-size:15px;
}

.grid{
  display:grid;
  gap:18px;
}

.cards{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.card__media{
  height:190px;
  background-size:cover;
  background-position:center;
}

.card__body{
  padding:18px 18px 16px;
}

.card__title{
  margin:0 0 10px;
  font-size:18px;
}

.card__text{
  margin:0 0 12px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.card__list{
  margin:0 0 14px;
  padding-left:18px;
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.card__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  width:max-content;
  transition:transform .2s ease, background .2s ease;
}

.card__cta:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
}

.features{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.feature{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:18px;
}

.feature__icon{
  font-size:22px;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
}

.feature__title{
  margin:0 0 6px;
  font-size:16px;
}

.feature__text{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.location{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}

.location__map{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
  min-height:320px;
}

.map__fake{
  position:relative;
  height:100%;
  width:100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.05), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
  display:grid;
  place-items:center;
}

.map__pin{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 10px rgba(255,255,255,.10);
  position:absolute;
  left:52%;
  top:46%;
}

.map__text{
  color:rgba(255,255,255,.70);
  font-size:13px;
  margin:0;
}

.location__info{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.location__box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:16px;
}

.location__box h3{
  margin:0 0 10px;
  font-size:15px;
}

.location__list{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.location__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.gallery{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.gallery__item{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  min-height:160px;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
  transition:transform .2s ease;
}

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

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

.contact__quick{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.quick{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:14px;
}

.quick__label{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-bottom:4px;
}

.quick__value{
  display:block;
  font-size:14px;
}

.contact__form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:18px;
}

.form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

label{
  display:grid;
  gap:8px;
  font-size:13px;
  color:rgba(255,255,255,.90);
  margin-bottom:12px;
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:rgba(255,255,255,.92);
  outline:none;
}

input::placeholder, textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.form__hint{
  margin:10px 0 0;
  color:rgba(255,255,255,.55);
  font-size:12px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:22px 0;
  color:rgba(255,255,255,.70);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer__top{
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}

@media (max-width: 980px){
  .cards{ grid-template-columns:1fr; }
  .features{ grid-template-columns:1fr 1fr; }
  .location{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:1fr 1fr; }
  .contact{ grid-template-columns:1fr; }
}

@media (max-width: 760px){
  .nav__toggle{ display:block; }

  .nav{
    position:fixed;
    top:72px;
    left:16px;
    right:16px;
    background:rgba(10,14,20,.92);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    box-shadow:var(--shadow);
  }

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

  .nav__link, .nav__cta{
    padding:12px 12px;
    border-radius:14px;
  }

  .form__row{ grid-template-columns:1fr; }
  .hero__content{ padding:64px 0 40px; }
  .hero__title{ letter-spacing:.18em; }
}

.map__link{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:320px;
  border-radius:var(--radius);
  overflow:hidden;
}

.map__iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}

.map__hint{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  color:rgba(255,255,255,.92);
  font-size:12px;
  backdrop-filter: blur(8px);
}


.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  background:rgba(5,8,12,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.topbar__left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.topbar__label{
  color:rgba(255,255,255,.70);
}

.topbar__phone{
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.25);
}

.topbar__sep{
  color:rgba(255,255,255,.35);
}

.topbar__right{
  display:flex;
  gap:10px;
}

.topbar__social{
  color:rgba(255,255,255,.70);
  font-size:13px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.topbar__social:hover{
  background:rgba(255,255,255,.08);
}

.header{
  top:44px; /* ca să stea sub topbar */
}

.hero{
  padding-top:128px; /* topbar + header */
}

@media (max-width:760px){
  .topbar__right{ display:none; }
  .header{ top:44px; }
  .hero{ padding-top:132px; }
}
.hero--small{
  min-height:58svh;
}
/* ===== Wide sections (Legacy / Baile Figa) ===== */
.wide{
  position:relative;
  min-height:62svh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.wide__media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
}

.wide__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.20) 100%);
}

.wide--alt .wide__overlay{
  background:linear-gradient(90deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.70) 100%);
}

.wide__content{
  position:relative;
  padding:84px 0;
  max-width:760px;
}

.wide__kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
  margin-bottom:10px;
}

.wide__title{
  font-size:46px;
  line-height:1.05;
  margin:0 0 14px;
}

.wide__text{
  color:rgba(255,255,255,.85);
  line-height:1.6;
  margin:0 0 18px;
  font-size:16px;
}

.wide__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Stack sections for cazari (big rows, not small cards) ===== */
.stack{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:18px;
}

.stack__row{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:18px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.stack__row--reverse{
  grid-template-columns: 1fr 1.2fr;
}

.stack__media{
  min-height:320px;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
}

.stack__body{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.stack__title{
  margin:0;
  font-size:22px;
}

.stack__text{
  margin:0;
  color:rgba(255,255,255,.80);
  line-height:1.6;
}

.stack__cta{
  width:max-content;
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.25);
  padding-bottom:2px;
}

.stack__cta:hover{
  border-bottom-color:rgba(255,255,255,.55);
}

@media (max-width:900px){
  .wide__title{ font-size:36px; }
  .stack__row,
  .stack__row--reverse{
    grid-template-columns:1fr;
  }
  .stack__media{ min-height:240px; }
}

/* ===== Google map overlay hint (if you don't already have) ===== */
.map__link{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:320px;
  border-radius:var(--radius);
  overflow:hidden;
}
.map__iframe{ width:100%; height:100%; border:0; display:block; }
.map__hint{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  color:rgba(255,255,255,.92);
  font-size:12px;
  backdrop-filter: blur(8px);
}

/* ===== Clean contact section ===== */
.contactSimple{
  text-align:center;
  max-width:720px;
  margin:0 auto;
  padding:8px 0;
}

.contactSimple__title{
  margin:0 0 18px;
}

.contactSimple__phones{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.contactSimple__phone{
  font-size:20px;
  color:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  padding:12px 16px;
  border-radius:999px;
}

.contactSimple__buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.chipBtn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.88);
}

.chipBtn:hover{
  background:rgba(255,255,255,.08);
}

.contactSimple__hint{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.60);
}


/* ===== Page hero (hotel style) ===== */
.pageHero{
  position:relative;
  min-height:68svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  padding-top:128px; /* topbar+header */
}

.pageHero__media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
  filter:saturate(1.05) contrast(1.05);
}

.pageHero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.60) 55%, rgba(0,0,0,.85) 100%);
}

.pageHero__content{
  position:relative;
  padding:44px 0 48px;
  max-width:900px;
}

.pageHero__kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
  margin-bottom:10px;
}

.pageHero__title{
  font-size:52px;
  line-height:1.05;
  margin:0 0 12px;
}

.pageHero__subtitle{
  margin:0 0 16px;
  color:rgba(255,255,255,.84);
  line-height:1.6;
  font-size:16px;
  max-width:760px;
}

.pageHero__chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 18px;
}

.pageHero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Rooms (premium list) ===== */
.roomList{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:18px;
}

.room{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.room--reverse{
  grid-template-columns: 1fr 1.15fr;
}

.room__media{
  min-height:340px;
  background-size:cover;
  background-position:center;
}

.room__body{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
}

.room__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.room__title{
  margin:0;
  font-size:22px;
}

.room__price{
  text-align:right;
  min-width:170px;
}

.room__priceMain{
  display:block;
  font-size:26px;
  font-weight:700;
  color:rgba(255,255,255,.95);
}

.room__priceSub{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.60);
  margin-top:2px;
}

.room__text{
  margin:0;
  color:rgba(255,255,255,.80);
  line-height:1.6;
}

.room__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.room__badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.86);
  font-size:12px;
}

.room__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:4px;
}

.room__stock{
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.room__cta{
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.25);
  padding-bottom:2px;
}

.room__cta:hover{
  border-bottom-color:rgba(255,255,255,.55);
}

.noteBar{
  margin-top:18px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.noteBar__text{
  margin:0;
  color:rgba(255,255,255,.65);
  font-size:13px;
}

@media (max-width:900px){
  .pageHero__title{ font-size:38px; }
  .room,
  .room--reverse{
    grid-template-columns:1fr;
  }
  .room__media{ min-height:240px; }
  .room__price{ text-align:left; min-width:auto; }
  .room__top{ flex-direction:column; }
}


/* ===== Info/feature grids used by Legacy + Baile Figa pages ===== */
.featureGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

.featureCard{
  position:relative;
  min-height:220px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  background-size:cover;
  background-position:center;
}

.featureCard__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%);
}

.featureCard__content{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
}

.featureCard__content h3{
  margin:0 0 6px;
  font-size:16px;
}

.featureCard__content p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.55;
  font-size:13px;
}

.highlightRow{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.highlight{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.highlight__big{
  font-weight:800;
  letter-spacing:.08em;
}

.highlight__small{
  margin-top:6px;
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.infoGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

.infoCard{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.infoCard__title{
  margin:0 0 10px;
  font-size:16px;
}

.infoList{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.78);
  line-height:1.7;
  font-size:13px;
}

.infoBig{
  margin:8px 0 0;
  font-size:20px;
  font-weight:700;
}

.infoBig a{ color:inherit; }

.infoHint{
  margin:10px 0 0;
  color:rgba(255,255,255,.62);
  font-size:12px;
  line-height:1.6;
}

.mapCard{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:14px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.mapCard__map iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

.mapCard__side{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.mapCard__side h3{ margin:0; }
.mapCard__side p{ margin:0; color:rgba(255,255,255,.78); line-height:1.6; }

.mapCard__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

@media (max-width: 980px){
  .featureGrid{ grid-template-columns:1fr; }
  .highlightRow{ grid-template-columns:1fr; }
  .infoGrid{ grid-template-columns:1fr; }
  .mapCard{ grid-template-columns:1fr; }
  .mapCard__map iframe{ height:320px; }
}


/* ===== ROOM CTA BUTTON (looks like link but premium) ===== */
.room__ctaBtn{
  appearance:none;
  border:none;
  background:transparent;
  padding:0;
  margin:0;
  color:rgba(255,255,255,0.92);
  font:inherit;
  cursor:pointer;
  text-align:left;
  text-decoration:none;
  opacity:0.95;
}
.room__ctaBtn:hover{
  opacity:1;
  text-decoration:underline;
}

/* ===== MODAL (Booking-style) ===== */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.is-open{
  display:block;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
}
.modal__panel{
  position:relative;
  width:min(1120px,92vw);
  max-height:90vh;
  margin:5vh auto;
  background:rgba(18,22,26,0.96);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,0.55);
}
.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:2;
}
.modal__grid{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:0;
}
.modal__left{
  padding:18px;
  border-right:1px solid rgba(255,255,255,0.08);
}
.modal__right{
  padding:20px 22px;
}
.modal__viewer{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  aspect-ratio:16/10;
  background:rgba(255,255,255,0.06);
}
.modal__image{
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
}
.modal__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(0,0,0,0.30);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.modal__nav--prev{ left:12px; }
.modal__nav--next{ right:12px; }

.modal__thumbs{
  display:flex;
  gap:10px;
  padding-top:12px;
  overflow:auto;
}
.modal__thumb{
  flex:0 0 auto;
  width:86px;
  height:62px;
  border-radius:10px;
  border:2px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.05);
  background-size:cover;
  background-position:center;
  cursor:pointer;
  opacity:0.9;
}
.modal__thumb.is-active{
  border-color:rgba(255,255,255,0.55);
  opacity:1;
}

.modal__title{
  margin:6px 0 6px 0;
  font-size:26px;
  line-height:1.15;
  color:#fff;
}
.modal__sub{
  color:rgba(255,255,255,0.75);
  margin-bottom:10px;
}
.modal__badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 14px 0;
}
.modal__badge{
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  color:rgba(255,255,255,0.92);
}
.modal__desc{
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  margin:0 0 14px 0;
}
.modal__info{
  border-top:1px solid rgba(255,255,255,0.10);
  padding-top:12px;
  margin-top:8px;
}
.modal__infoRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,0.85);
}
.modal__infoLabel{
  color:rgba(255,255,255,0.70);
}
.modal__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

/* Mobile modal */
@media (max-width: 920px){
  .modal__grid{
    grid-template-columns:1fr;
  }
  .modal__left{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .modal__panel{
    margin:4vh auto;
    max-height:92vh;
  }
}
/* ===== FIX CLARITATE IMAGINI (hero/cards/modal) ===== */
.pageHero__media,
.room__media,
.modal__image,
.modal__thumb {
  filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

/* Hero: să fie sharp și full cover */
.pageHero__media {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Cardurile cu camere: să se vadă clar */
.room__media {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Imaginea mare din modal */
.modal__image {
  background-size: contain !important;  /* important pt “clar”, nu crop agresiv */
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(0, 0, 0, 0.25); /* fundal discret */
}

/* Thumbnails din modal */
.modal__thumb {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* ===== FIX MODAL SCROLL + LAYOUT ===== */
.modal {
  align-items: center;
  justify-content: center;
}

.modal__panel {
  height: min(92vh, 880px); /* modal înalt, dar nu iese din ecran */
  max-height: 92vh;
  overflow: hidden; /* ca să nu curgă în afară */
}

/* Coloana din dreapta (detalii) să aibă scroll */
.modal__side {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Aici e conținutul cu descrierea lungă: îi dăm scroll */
.modal__sideBody {
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar mai “clean” (Chrome/Edge) */
.modal__sideBody::-webkit-scrollbar {
  width: 10px;
}
.modal__sideBody::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
}
.modal__sideBody::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.18);
}
/* ===== IMAGE QUALITY FIX (override) ===== */
.room__media,
.pageHero__media,
.modal__image,
.modal__thumb {
  background-repeat: no-repeat;
  background-position: center;
  filter: none !important;
  transform: none !important;
}

/* Card images: cover (booking look) */
.room__media,
.pageHero__media {
  background-size: cover;
}

/* Modal main image: contain (no cropping) */
.modal__image {
  background-size: contain;
  background-color: rgba(0,0,0,0.35);
}

/* Thumbs: cover */
.modal__thumb {
  background-size: cover;
}

/* Prevent blur from any skeleton/overlay */
.room__media::before,
.modal__image::before,
.pageHero__media::before {
  content: none !important;
}

/* ===== MODAL LAYOUT FIX (scroll + viewport fit) ===== */
.modal__panel {
  max-height: calc(100vh - 48px);
  overflow: hidden;
}

.modal__grid {
  height: calc(100vh - 48px);
}

/* Left side scroll if needed */
.modal__left {
  min-height: 0;
  overflow: hidden;
}

/* Right side scroll for long text */
.modal__right {
  min-height: 0;
  overflow: auto;
  max-height: calc(100vh - 48px);
  padding-right: 10px; /* ca să nu intre scrollbar peste text */
}

/* Make description wrap nicely */
.modal__desc {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

/* Better viewer proportions */
.modal__viewer {
  aspect-ratio: 16 / 10;
}

/* If your layout becomes too tight on small screens */
@media (max-width: 900px) {
  .modal__grid {
    height: auto;
    max-height: calc(100vh - 24px);
    overflow: hidden;
  }

  .modal__right {
    max-height: 42vh;
  }

  .modal__viewer {
    aspect-ratio: 16 / 12;
  }
}
/* ===== FIX: remove blur from images ===== */
.pageHero__media,
.room__media,
.modal__image,
.modal__thumb {
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Make sure backgrounds render crisp */
.pageHero__media,
.room__media,
.modal__image,
.modal__thumb {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
/* ===== Compartimentare (design) ===== */

.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.section__metaRight {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.metaChip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.compGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compCard {
  position: relative;
  border-radius: 18px;
  padding: 18px;
}

/* ===== CABANA: Compartimentare (Hotel-grade) ===== */
.planSection{
  padding:72px 0;
}

.planHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.planHead__title{
  margin:0;
  font-size:clamp(26px, 2.4vw, 34px);
  letter-spacing:.02em;
}

.planHead__subtitle{
  margin:8px 0 0;
  color:rgba(255,255,255,.72);
  max-width:70ch;
  line-height:1.6;
}

.planHead__right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.planChip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.88);
  font-size:13px;
  letter-spacing:.01em;
}

/* Grid */
.planGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

/* Card */
.planCard{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 18px 60px rgba(0,0,0,.30);
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.planCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}

.planCard__media{
  position:relative;
  height:220px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}

.planCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .35s ease;
}

.planCard:hover .planCard__media img{
  transform:scale(1.06);
}

.planCard__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.48) 100%);
}

.planCard__label{
  position:absolute;
  left:14px;
  top:14px;
  z-index:1;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.35);
  color:rgba(255,255,255,.92);
  font-size:12px;
  letter-spacing:.01em;
  backdrop-filter: blur(8px);
}

.planCard__body{
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.planCard__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.planCard__title{
  margin:0;
  font-size:18px;
  letter-spacing:.01em;
  color:#fff;
}

.planCard__meta{
  color:rgba(255,255,255,.70);
  font-size:13px;
  white-space:nowrap;
}

.planCard__text{
  margin:0;
  color:rgba(255,255,255,.80);
  line-height:1.6;
  font-size:14px;
}

.planCard__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}

.planTag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.86);
  font-size:12px;
}

/* Note box */
.planNote{
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:16px;
  display:grid;
  grid-template-columns:140px 1fr;
  gap:12px;
  align-items:start;
}

.planNote__title{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
  padding-top:2px;
}

.planNote__text{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.7;
  font-size:14px;
}

/* Responsive */
@media (max-width: 980px){
  .planGrid{
    grid-template-columns:1fr;
  }
  .planCard__media{
    height:240px;
  }
  .planNote{
    grid-template-columns:1fr;
  }
}
.hero__bg {
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.hero__bg.is-show {
  opacity: 1;
}

/* dots (dacă nu le ai deja) */
.hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
}

.hero__dot.is-active {
  background: rgba(255,255,255,0.95);
}
/* ========== WIDE CARD (clean sections) ========== */
.wideCard {
  padding: 34px 0;
}

.wideCard__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
  background: #042d44;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.wideCard--alt .wideCard__grid {
  background: #042d44;
}

.wideCard__grid--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.wideCard__media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wideCard__body {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wideCard__kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  opacity: 0.7;
  margin: 0 0 10px;
}

.wideCard__title {
  margin: 0 0 10px;
}

.wideCard__text {
  margin: 0 0 18px;
  opacity: 0.9;
  max-width: 48ch;
}

.wideCard__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* separare vizuală între carduri (să nu pară lipite) */
.wideCard + .wideCard {
  margin-top: 10px;
}

/* responsive */
@media (max-width: 900px) {
  .wideCard__grid,
  .wideCard__grid--reverse {
    grid-template-columns: 1fr;
  }

  .wideCard__media {
    min-height: 240px;
  }

  .wideCard__body {
    padding: 22px;
  }
}
.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px; /* ca să fie “badge” ca înainte */
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



.modal__desc { white-space: pre-line; }
