@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root{
  --bg: #0b1f3d;
  --bg2:#0f2d5c;
  --surface:#ffffff;
  --surface-2:#f4f7fb;
  --surface-3:#e8eff8;
  --text:#0f1b2b;
  --muted:#6c7e96;
  --border: rgba(15,27,43,.12);
  --shadow: 0 18px 38px rgba(6,18,36,.22);
  --shadow-soft: 0 8px 20px rgba(6,18,36,.12);
  --accent:#1e5aa7;
  --accent2:#2f7ad8;
  --accent-strong:#143e7a;
  --good:#2f9a6b;
  --warn:#d6a454;
  --radius: 14px;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --hero-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80");
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-body);
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(46,104,188,.28), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(23,74,150,.26), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2) 70%);
  color:#e9f2ff;
  line-height:1.5;
  position:relative;
  overflow-x:hidden;
}

body::before,
body::after{
  content:"";
  position:fixed;
  z-index:-1;
  pointer-events:none;
  border-radius:999px;
  opacity:.55;
}
body::before{
  width:520px;
  height:520px;
  top:-140px;
  left:-180px;
  background: radial-gradient(circle at 30% 30%, rgba(46,104,188,.35), transparent 60%);
}
body::after{
  width:640px;
  height:640px;
  top:-220px;
  right:-240px;
  background: radial-gradient(circle at 60% 40%, rgba(23,74,150,.28), transparent 62%);
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1160px, calc(100% - 32px));
  margin:0 auto;
}

h1,h2,h3,.hero__title,.section__title,.brand__name,.resultsTop__title,.propTop__title{
  font-family: var(--font-display);
  letter-spacing:-.3px;
}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background:rgba(8,20,40,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(5,15,30,.35);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:16px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:34px; height:34px; border-radius:10px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 25px rgba(25,78,150,.35);
  font-weight:800;
  color:#fff;
}
.brand__name{font-weight:800; letter-spacing:.3px; color:#fff}
.brand--footer .brand__logo{width:30px;height:30px;border-radius:10px}

.nav{display:flex; gap:16px}
.nav__link{
  color:rgba(235,242,255,.75);
  font-weight:600;
  padding:8px 10px;
  border-radius:999px;
  transition: all .2s ease;
}
.nav__link:hover{background:rgba(255,255,255,.10); color:#fff}

.header__actions{display:flex; gap:10px; align-items:center}

.langSwitch{
  display:flex;
  gap:6px;
  padding:4px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.langSwitch__btn{
  border:none;
  background:transparent;
  color:rgba(235,242,255,.75);
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  transition: all .2s ease;
}
.langSwitch__btn:hover{color:#fff; background: rgba(255,255,255,.18)}
.langSwitch__btn.is-active{
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(10,24,48,.25);
}

/* Buttons */
.btn{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:10px 18px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background:var(--surface-2); box-shadow: var(--shadow-soft); transform: translateY(-1px)}
.btn--primary{
  border-color:transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 34px rgba(25,78,150,.32);
  color:#fff;
}
.btn--primary:hover{filter: brightness(1.05)}
.btn--ghost{background:transparent; border-color: rgba(255,255,255,.3); color:#fff}
.btn--wide{width:100%}

.header .btn--primary{box-shadow: 0 14px 30px rgba(20,60,120,.45)}
.header .btn--ghost{background: rgba(255,255,255,.08)}

.card .btn--ghost,
.filters .btn--ghost,
.bookCard .btn--ghost,
.contentBlock .btn--ghost,
.program .btn--ghost,
.review .btn--ghost,
.contactForm .btn--ghost{
  background: #f1f5fb;
  color: var(--text);
  border-color: rgba(15,27,43,.16);
}
.card .btn--ghost:hover,
.filters .btn--ghost:hover,
.bookCard .btn--ghost:hover,
.contentBlock .btn--ghost:hover,
.program .btn--ghost:hover,
.review .btn--ghost:hover,
.contactForm .btn--ghost:hover{
  background: #fff;
}

/* Hero */
.hero{
  padding:84px 0 36px;
  background:
    linear-gradient(180deg, rgba(8,20,40,.45), rgba(8,20,40,.85)),
    radial-gradient(900px 520px at 20% 10%, rgba(46,104,188,.35), transparent 60%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:24px;
  align-items:stretch;
}
.hero__content{max-width: 980px}
.badge{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.12);
  color:rgba(240,246,255,.9);
  font-weight:700;
  margin:0 0 14px;
}
.hero__title{
  margin:0;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height:1.06;
  letter-spacing:-.7px;
  color:#f7f9ff;
}
.hero__subtitle{
  margin:12px 0 18px;
  color:rgba(236,243,255,.85);
  font-size: 18px;
  line-height:1.7;
}

/* Search */
.search{
  background: #fff;
  border:1px solid rgba(15,27,43,.18);
  border-radius: 12px;
  padding:14px;
  box-shadow: 0 18px 40px rgba(7,19,38,.35);
  color: var(--text);
}
.search__row{
  display:grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr .8fr auto;
  gap:10px;
  align-items:center;
}
.search__row .btn{align-self:end; height:42px; padding:10px 22px}
.search__row--filters{
  margin-top:10px;
  grid-template-columns: repeat(4, 1fr) 1.1fr;
  align-items:center;
}
.search__meta{margin:10px 0 0; color:rgba(235,242,255,.7); font-size:13px; display:none}

.field{display:flex; flex-direction:column; gap:6px}
.field__label{font-size:12px; color:rgba(22,35,54,.7); font-weight:800; letter-spacing:.25px}
.field__input{
  width:100%;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid rgba(15,27,43,.16);
  background: #f7f9fc;
  color:var(--text);
  outline:none;
}
.field__input:focus{
  border-color: rgba(30,90,167,.55);
  box-shadow: 0 0 0 4px rgba(30,90,167,.16);
}
.field__hint{font-size:11px; color:rgba(96,110,130,.85)}
.field--compact .field__input{padding:11px 12px}

.chip{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--surface-2);
  color:var(--text);
  font-weight:700;
  user-select:none;
  transition: all .2s ease;
}
.chip:hover{background: #fff}
.chip input{accent-color: var(--accent)}

/* Trust */
.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.trust__item{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius:18px;
  padding:12px;
  box-shadow: var(--shadow-soft);
}
.trust__kpi{font-weight:900; font-size:18px}
.trust__text{color:var(--muted); font-size:12px; margin-top:3px}

/* Hero visual */
.hero__visual{display:flex}
.visualCard{
  flex:1;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:
    radial-gradient(650px 340px at 40% 0%, rgba(47,127,107,.12), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.visualCard__top{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--surface-2);
  font-weight:800;
  font-size:12px;
}
.pill--muted{color:var(--muted)}

.section .pill,
.hero .pill{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color:#e9f2ff;
}

.card .pill,
.filters .pill,
.bookCard .pill{
  background: #f1f5fb;
  border-color: rgba(15,27,43,.12);
  color: var(--text);
}
.visualCard__title{font-size:18px; font-weight:900}
.visualCard__row{display:flex; gap:8px; align-items:center}
.visualCard__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:4px;
}
.miniInfo{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius:16px;
  padding:10px 12px;
}
.miniInfo__label{color:var(--muted); font-size:11px; font-weight:800}
.miniInfo__value{font-weight:800; margin-top:2px}

.rating{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:42px;
  padding:6px 10px;
  border-radius:10px;
  background: rgba(30,90,167,.16);
  border:1px solid rgba(30,90,167,.3);
  font-weight:900;
  color: #0f3f7a;
}
.muted{color:var(--muted)}
.section .muted{color:rgba(233,242,255,.75)}
.card .muted,
.filters .muted,
.bookCard .muted,
.contentBlock .muted,
.reviewCard .muted,
.contactForm .muted{color:var(--muted)}
.small{font-size:12px}

/* Sections */
.section{padding:60px 0; color:#eaf2ff}
.section--alt{
  background: linear-gradient(180deg, rgba(20,62,120,.35), rgba(11,31,61,.1));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__head{margin-bottom:18px}
.section__head--center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
}
.section__head--center::before,
.section__head--center::after{
  content:"";
  flex:1;
  height:1px;
  background: rgba(255,255,255,.18);
}
.section__title{
  margin:0;
  font-size: 24px;
  letter-spacing:-.2px;
  color:#f5f8ff;
}
.section__title--pill{
  padding:8px 18px;
  border-radius:999px;
  border:1px solid rgba(15,27,43,.12);
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 10px 22px rgba(6,18,36,.18);
  text-transform:none;
}
.section__subtitle{margin:8px 0 0; color:rgba(233,242,255,.75)}
.section__head--center .section__subtitle{display:none}

/* Destination cards */
.grid{display:grid; gap:16px}
.grid--dest{grid-template-columns: repeat(3, 1fr)}
.destCard{
  position:relative;
  border:1px solid rgba(255,255,255,.2);
  background: #0f2d5a;
  border-radius: 12px;
  padding:16px;
  min-height:120px;
  box-shadow: 0 16px 32px rgba(6,18,36,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow:hidden;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  text-align:center;
}
.destCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--img, linear-gradient(120deg, #2b5aa3, #163b72));
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.destCard::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(6,18,36,.15), rgba(6,18,36,.75));
}
.destCard__title,
.destCard__meta{position:relative; z-index:1}
.destCard__meta{color:rgba(235,242,255,.85)}
.destCard:hover{transform: translateY(-2px); box-shadow: 0 20px 36px rgba(6,18,36,.45)}

.destCard--ru{--img: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=900&q=80")}
.destCard--ge{--img: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80")}
.destCard--az{--img: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=900&q=80")}
.destCard__title{font-weight:900; font-size:17px}
.destCard__meta{color:rgba(235,242,255,.85); margin-top:6px; font-size:13px}

/* Catalog cards */
.grid--cards{grid-template-columns: repeat(3, 1fr)}
.card{
  border:1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow:hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(6,18,36,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--text);
}
.card:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.card__media{
  position:relative;
  height:170px;
  background:
    linear-gradient(180deg, rgba(8,20,40,.25), rgba(8,20,40,.65)),
    var(--img, linear-gradient(135deg, #2f6bd5, #173f7a));
  background-size: cover;
  background-position: center;
}
.mediaStub{
  position:absolute; inset:0;
  display:grid; place-items:center;
  color:rgba(245,249,255,.85);
  font-weight:900;
}
.card__badge{
  position:absolute; top:12px; left:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(12,32,64,.85);
  border:1px solid rgba(255,255,255,.2);
  font-weight:900;
  font-size:12px;
  color:#fff;
}
.card__badge--muted{color:rgba(235,242,255,.85)}
.card__body{padding:14px}
.card__top{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:10px;
}
.card__title{margin:0; font-size:16px; font-weight:900}
.card__meta{margin:6px 0 10px; color:var(--muted); font-size:13px}
.tags{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px}
.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,27,43,.12);
  background: #f1f5fb;
  font-weight:800;
  font-size:12px;
  color: var(--text);
}
.card__bottom{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px;
}
.price__value{font-weight:950; font-size:16px}
.price__note{color:var(--muted); font-size:12px; margin-top:2px}

.card--borjomi .card__media{--img: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=900&q=80")}
.card--kislovodsk .card__media{--img: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=900&q=80")}
.card--essentuki .card__media{--img: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80")}

/* Steps */
.grid--steps{grid-template-columns: repeat(3, 1fr)}
.step{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.step__num{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(47,127,107,.16);
  border:1px solid rgba(47,127,107,.25);
  font-weight:900;
}
.step__title{margin:12px 0 6px; font-weight:900}
.step__text{margin:0; color:var(--muted); line-height:1.5}

/* Promo */
.grid--promo{grid-template-columns: repeat(2, 1fr)}
.promoCard{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  min-height:160px;
  background:
    linear-gradient(180deg, rgba(8,20,40,.25), rgba(8,20,40,.65)),
    var(--img, linear-gradient(135deg, #2f6bd5, #173f7a));
  background-size: cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.2);
  box-shadow: 0 18px 34px rgba(6,18,36,.35);
  display:flex;
  align-items:flex-end;
  padding:18px;
  color:#fff;
}
.promoCard__title{margin:0; font-size:22px; font-weight:700}
.promoCard__text{margin:6px 0 12px; color:rgba(235,242,255,.85)}
.promoCard__cta .btn{
  padding:8px 14px;
  background:#fff;
  color: var(--accent-strong);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(6,18,36,.25);
}
.promoCard__cta .btn:hover{background: #f4f7fb}
.promoCard--one{--img: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80")}
.promoCard--two{--img: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80")}

/* Reviews */
.grid--reviews{grid-template-columns: repeat(3, 1fr)}
.reviewCard{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:var(--text);
  box-shadow: 0 16px 30px rgba(6,18,36,.28);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.reviewCard__top{display:flex; gap:10px; align-items:center}
.reviewCard__avatar{
  width:42px;height:42px;border-radius:50%;
  background: linear-gradient(135deg, #2f6bd5, #173f7a);
  display:grid; place-items:center;
  color:#fff; font-weight:800;
}
.reviewCard__name{font-weight:800}
.reviewCard__meta{color:var(--muted); font-size:12px}
.reviewCard__text{margin:0; color:var(--muted); line-height:1.5}

/* CTA */
.section--cta{
  border-top:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(18,45,90,.6), rgba(8,20,40,.7));
}
.contactForm{
  max-width: 760px;
  margin: 0 auto;
  border:1px solid rgba(255,255,255,.18);
  background: #fff;
  border-radius: 12px;
  padding:16px;
  box-shadow: 0 18px 34px rgba(6,18,36,.35);
  display:grid;
  grid-template-columns: 1fr auto;
  gap:14px;
  align-items:end;
  color: var(--text);
}
.contactForm__fields{display:grid; gap:10px}
.contactForm__actions{display:flex; flex-direction:column; gap:10px; align-items:stretch}
.contactForm__actions .btn{min-width:160px}

/* Footer */
.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(255,255,255,.12);
  background: rgba(7,18,36,.92);
  color:rgba(235,242,255,.8);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.footer__links{display:flex; flex-direction:column; gap:10px}
.footer__link{color:rgba(235,242,255,.75); font-weight:700}
.footer__link:hover{color:#fff}
.footer__meta{display:flex; flex-direction:column; gap:10px; align-items:flex-start}

.center{display:flex; justify-content:center; margin-top:18px}

@keyframes fadeUp{
  from{opacity:0; transform: translateY(12px)}
  to{opacity:1; transform: translateY(0)}
}

.hero__content{animation: fadeUp .8s ease both}
.hero__visual{animation: fadeUp .8s ease .08s both}
.search{animation: fadeUp .8s ease .12s both}
.trust__item{animation: fadeUp .6s ease both}
.trust__item:nth-child(2){animation-delay:.08s}
.trust__item:nth-child(3){animation-delay:.16s}
.destCard{animation: fadeUp .6s ease both}
.destCard:nth-child(2){animation-delay:.06s}
.destCard:nth-child(3){animation-delay:.12s}
.destCard:nth-child(4){animation-delay:.18s}
.card{animation: fadeUp .7s ease both}
.card:nth-child(2){animation-delay:.08s}
.card:nth-child(3){animation-delay:.16s}
.step{animation: fadeUp .7s ease both}
.step:nth-child(2){animation-delay:.08s}
.step:nth-child(3){animation-delay:.16s}
.filters,.rCard,.bookCard,.contentBlock,.room,.review{animation: fadeUp .6s ease both}

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .search__row{grid-template-columns: 1fr 1fr}
  .search__row--filters{grid-template-columns: 1fr 1fr}
  .grid--dest{grid-template-columns: repeat(2, 1fr)}
  .grid--cards{grid-template-columns: 1fr}
  .grid--steps{grid-template-columns: 1fr}
  .grid--promo{grid-template-columns: 1fr}
  .grid--reviews{grid-template-columns: 1fr}
  .contactForm{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .nav{display:none}
}

@media (max-width: 520px){
  .search__row{grid-template-columns: 1fr}
  .search__row--filters{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr}
  .search__row .btn{width:100%}
}


/* ===========================
   SEARCH / PROPERTY PAGES
   =========================== */

.section--tight{padding:26px 0}

.resultsTop{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:16px;
}
.resultsTop__title{margin:0; font-size:26px; font-weight:950; color:#f5f8ff}
.resultsTop__subtitle{margin:8px 0 0; color:rgba(233,242,255,.75)}

.resultsSearch{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr .6fr auto;
  gap:10px;
  align-items:end;
  width:min(720px, 100%);
}

.resultsLayout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:14px;
  align-items:start;
}

.filters{
  position:sticky;
  top:76px;
  border:1px solid var(--border);
  border-radius:18px;
  background: var(--surface);
  padding:14px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.filters__head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom:10px;
}
.filters__title{font-weight:950; font-size:16px}
.filters__reset{padding:8px 10px}
.filters__block{margin-top:12px; display:flex; flex-direction:column; gap:8px}
.filters__label{font-size:12px; color:var(--muted); font-weight:900; letter-spacing:.2px}
.filters__note{margin-top:12px; color:var(--muted); font-size:12px; line-height:1.4}
.chip--block{border-radius:14px}

.resultsBar{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.resultsBar__left{display:flex; gap:8px; flex-wrap:wrap}
.resultsSort{display:flex; gap:8px; align-items:center}
.resultsSort .field__input{min-width: 180px}

.resultsGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

/* Result card */
.rCard{
  border:1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow:hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(6,18,36,.32);
  color: var(--text);
  display:grid;
  grid-template-columns: 220px 1fr;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rCard:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.rCard__media{
  position:relative;
  min-height:170px;
  background:
    linear-gradient(180deg, rgba(8,20,40,.25), rgba(8,20,40,.65)),
    var(--img, linear-gradient(135deg, #2f6bd5, #173f7a));
  background-size: cover;
  background-position: center;
}
.rCard__media .mediaStub{position:absolute; inset:0}
.rCard__body{padding:14px; display:flex; flex-direction:column; gap:10px}
.rCard__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.rCard__title{margin:0; font-weight:950; font-size:16px}
.rCard__meta{margin:4px 0 0; color:var(--muted); font-size:13px}
.rCard__bottom{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-top:auto}

/* Property page */
.crumbs{display:flex; align-items:center; gap:10px; margin-bottom:10px}
.crumbs__link{color:rgba(233,242,255,.75); font-weight:800}
.crumbs__link:hover{color:#fff}
.crumbs__sep{color:rgba(233,242,255,.4)}
.crumbs__current{color:rgba(233,242,255,.75); font-weight:800}

.propTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.propTop__title{margin:0; font-size:28px; font-weight:950; color:#f5f8ff}
.propTop__meta{margin:8px 0 0; color:rgba(233,242,255,.75)}
.propTop__badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.propTop__actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.propLayout{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:14px;
  align-items:start;
}

.propMain{display:flex; flex-direction:column; gap:14px}
.gallery{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.gallery__main{
  height: 320px;
  background: linear-gradient(135deg, rgba(47,127,107,.20), rgba(214,164,84,.14));
  position:relative;
}
.gallery__main .mediaStub{position:absolute; inset:0}
.gallery__thumbs{
  display:flex;
  gap:10px;
  padding:12px;
  border-top:1px solid var(--border);
}
.thumb{
  width:44px; height:36px;
  border-radius:12px;
  border:1px solid var(--border);
  background: var(--surface);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.thumb--active{
  border-color: rgba(47,127,107,.55);
  box-shadow: 0 0 0 4px rgba(47,127,107,.14);
}

.propInfo{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding:14px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.propInfo__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.infoBox{
  border:1px solid var(--border);
  background: var(--surface-2);
  border-radius:16px;
  padding:10px 12px;
}
.infoBox__label{color:var(--muted); font-size:11px; font-weight:900}
.infoBox__value{font-weight:900; margin-top:2px}

.contentBlock{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding:14px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.contentBlock__title{margin:0 0 10px; font-size:18px; font-weight:950}
.contentBlock__text{margin:0; color:var(--muted); line-height:1.6}

.programs{display:flex; flex-direction:column; gap:10px}
.program{
  border:1px solid var(--border);
  background: var(--surface-2);
  border-radius:16px;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.program__title{font-weight:950}
.program__meta{color:var(--muted); font-size:13px}
.program__cta{display:flex; gap:8px; align-items:center}

.room{
  border:1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow:hidden;
  display:grid;
  grid-template-columns: 220px 1fr 180px;
  gap:0;
  margin-bottom:12px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.room__media{min-height:140px; position:relative; background: var(--surface-2)}
.room__media .mediaStub{position:absolute; inset:0}
.room__body{padding:12px}
.room__title{font-weight:950}
.room__meta{color:var(--muted); font-size:13px; margin-top:4px}
.room__price{padding:12px; display:flex; flex-direction:column; gap:8px; align-items:flex-start; justify-content:flex-end}

.reviews{display:flex; flex-direction:column; gap:10px}
.review{
  border:1px solid var(--border);
  border-radius:18px;
  background: var(--surface-2);
  padding:12px;
  color: var(--text);
}
.review__top{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.review__text{margin:10px 0 0; color:var(--muted); line-height:1.6}

.bookCard{
  position:sticky;
  top:76px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding:14px;
  box-shadow: var(--shadow);
  color: var(--text);
}
.bookCard__title{font-weight:950; font-size:16px}
.bookCard__price{margin-top:10px}
.bookForm{margin-top:12px; display:flex; flex-direction:column; gap:10px}
.bookCard__fine{margin-top:12px; display:flex; gap:8px; flex-wrap:wrap}

/* Responsive */
@media (max-width: 980px){
  .resultsTop{flex-direction:column; align-items:stretch}
  .resultsSearch{grid-template-columns: 1fr 1fr; width:100%}
  .resultsLayout{grid-template-columns: 1fr}
  .filters{position:relative; top:auto}
  .resultsGrid{grid-template-columns: 1fr}
  .rCard{grid-template-columns: 1fr}
  .rCard__media{min-height:150px}
  .propLayout{grid-template-columns: 1fr}
  .bookCard{position:relative; top:auto}
  .propInfo__grid{grid-template-columns: 1fr}
  .room{grid-template-columns: 1fr}
}
