/* =========
   Base
   ========= */
:root{
  --bg: #ffffff;
  --muted-bg: #ededed;
  --text: #121212;
  --muted: rgba(18,18,18,.7);
  --line: rgba(18,18,18,.12);
  --accent: #ff3300;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  padding: .75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip-link:focus{ left: 1rem; top: 1rem; z-index: 9999; }

.h2{
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 .75rem;
  letter-spacing: -.02em;
}
.h3{
  font-size: 1.1rem;
  margin: 0 0 .35rem;
}
.text-lg{
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}
.small{ font-size: .9rem; }
.muted{ color: var(--muted); }

/* =========
   Header / Nav
   ========= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  color: #fff;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none !important;
}
.brand__mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
  letter-spacing: .08em;
}
.brand__text{
  display: grid;
  line-height: 1.15;
}
.brand__text small{
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}

.nav{
  justify-self: center;
}
.nav__menu{
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.nav__menu a{
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none !important;
  padding: .4rem .25rem;
}
.nav__menu a:hover{ color: #fff; }

.header__meta{
  display: flex;
  align-items: center;
  gap: .85rem;
}
.phone{
  color: rgba(255,255,255,.92);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none !important;
}

.nav__burger{
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.nav__burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
}

/* =========
   Buttons
   ========= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background-color .15s ease, border-color .15s ease;
  user-select: none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--primary{
  background: var(--accent);
  color: #fff;
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn--lg{ padding: .95rem 1.25rem; border-radius: 14px; }

/* =========
   Hero
   ========= */
.hero{
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("/images/dolina-01.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero__content{
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero__kicker{
  margin: 0 0 .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.hero__title{
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.hero__lead{
  max-width: 62ch;
  margin: 0 0 1.6rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,.86);
}
.hero__cta{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero__chips{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 560px;
}
.chip{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: .8rem .9rem;
}
.chip strong{ display: block; font-size: 1.15rem; }
.chip span{ display: block; color: rgba(255,255,255,.80); font-size: .9rem; }
.hero__note{ margin: .85rem 0 0; color: rgba(255,255,255,.70); font-size: .9rem; }

/* =========
   Sections
   ========= */
.section{ padding: clamp(3rem, 6vw, 5rem) 0; }
.section--muted{ background: var(--muted-bg); }
.section__head{ margin-bottom: 1.6rem; max-width: 68ch; }
.section__actions{ margin-top: 1.25rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.section__note{ margin-top: 1rem; }

.grid-2{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

/* Facts */
.facts{ margin: 1.25rem 0 0; padding: 0; }
.facts__row{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}
.facts__row dt{ color: var(--muted); }
.facts__row dd{ margin: 0; font-weight: 600; }

/* Media */
.media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.22);
}
.media img{
  width: 100%;
  height: min(520px, 70vh);
  object-fit: cover;
}
.media__badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: .65rem .75rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.media__badge strong{ display:block; }
.media__badge span{ display:block; opacity: .85; font-size: .9rem; }

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  display: grid;
}
.card__img{
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.card__body{ padding: 1.1rem 1.1rem 1rem; }
.list{
  margin: .8rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .95rem;
  padding-top: .95rem;
  border-top: 1px solid var(--line);
}
.price{ font-weight: 800; font-size: 1.2rem; }

/* CTA */
.cta{
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.cta__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.35)),
    url("/images/dolina-01.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.cta__content{ position: relative; max-width: 72ch; }
.cta__title{
  margin: 0 0 .75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -.02em;
}
.cta__text{ margin: 0 0 1.25rem; color: rgba(255,255,255,.85); }
.cta__actions{ display:flex; gap:.75rem; flex-wrap:wrap; }

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .9rem;
}
.gallery__item{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background: #fff;
}
.gallery__item--lg{ grid-column: span 8; }
.gallery img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery__item--lg img{ height: 360px; }

/* Features */
.features{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.feature{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: var(--shadow);
}
.feature__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,51,0,.10);
  border: 1px solid rgba(255,51,0,.18);
  font-weight: 800;
  margin-bottom: .8rem;
}

/* Reviews */
.reviews{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.review{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.review__top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}
.review p{ margin: 0; color: var(--muted); }

/* FAQ */
.faq{
  display: grid;
  gap: .85rem;
  max-width: 860px;
}
.faq__item{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: var(--shadow);
  padding: .2rem 1rem;
}
.faq__item summary{
  cursor: pointer;
  padding: .85rem 0;
  font-weight: 700;
  list-style: none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__content{
  padding: 0 0 1rem;
  color: var(--muted);
}

/* Contacts */
.contact{
  margin-top: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}
.contact__row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__row:last-child{ border-bottom: 0; }

.map iframe{
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.footer{
  background: #0b0b0b;
  color: #fff;
  padding: 1.25rem 0;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__left, .footer__right{
  display:grid;
  gap: .25rem;
}
.footer__right{
  text-align: right;
  align-content: start;
}
.footer a{ color: rgba(255,255,255,.8); text-decoration: none !important; }
.footer a:hover{ color: #fff; }

.bkng{
  background: #0b0b0b;

}
/* =========
   Responsive
   ========= */
@media (max-width: 980px){
  .header__inner{
    grid-template-columns: auto 1fr auto;
  }
  .nav{ justify-self: end; }
  .nav__burger{ display: inline-block; }
  .nav__menu{
    position: absolute;
    right: 1rem;
    top: calc(100% + .6rem);
    min-width: min(340px, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .4rem;
    background: rgba(10,10,10,.92);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  .nav__menu a{
    padding: .85rem .9rem;
    border-radius: 12px;
  }
  .nav__menu a:hover{
    background: rgba(255,255,255,.08);
  }
  .nav__menu.is-open{ display: flex; }

  .phone{ display:none; }

  .grid-2{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }

  .hero__chips{ grid-template-columns: 1fr; max-width: 320px; }
  .facts__row{ grid-template-columns: 1fr; gap: .25rem; }
  .gallery{ grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--lg{ grid-column: auto; }
  .gallery img{ height: 220px; }
  .gallery__item--lg img{ height: 220px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn{ transition: none; }
}
