:root{
  --ink:#0b1220;
  --white:#fff;
  --glass:rgba(255,255,255,.12);
  --glass-2:rgba(255,255,255,.18);
  --line:rgba(255,255,255,.22);
  --shadow:0 18px 60px rgba(2,6,23,.28);
  --shadow-2:0 14px 34px rgba(2,6,23,.24);
  --radius:18px;
  --max:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#1f1c17;
  background:#fff;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input{font:inherit}

.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.container{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding:0 16px;
}

.header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:20;
  padding:18px 0;
  color:#fff;
}
.header__inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
}
.logo{
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
}

.nav{
  display:flex;
  justify-content:center;
  gap:10px;
}
.nav__link{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:999px;
  opacity:.92;
  transition:background .15s ease, opacity .15s ease, transform .15s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
  opacity:1;
}
.nav__link.isActive{
  background:rgba(255,255,255,.14);
  opacity:1;
  font-weight:800;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 14px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:saturate(150%) blur(10px);
  box-shadow:0 12px 26px rgba(2,6,23,.22);
  transition:background .15s ease, transform .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.16)}
.btn:active{transform:translateY(0)}

.navToggle{
  display:none;
  width:44px;height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:saturate(150%) blur(10px);
  box-shadow:0 12px 26px rgba(2,6,23,.22);
  padding:11px 12px;
  gap:6px;
  flex-direction:column;
  justify-content:center;
  cursor:pointer;
}
.navToggle__line{
  height:2px;
  width:100%;
  background:rgba(255,255,255,.92);
  border-radius:999px;
}

.authPage{
  background:radial-gradient(900px 520px at 12% 8%, rgba(245,158,11,.20), rgba(255,255,255,0)), #fff;
}
.auth{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px 16px;
}
.authCard{
  width:min(460px, 100%);
  border-radius:24px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(255,255,255,.92);
  box-shadow:0 22px 80px rgba(11,18,32,.12);
  padding:22px 22px;
}
.authBrand{
  display:inline-block;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:13px;
  color:#0b1220;
}
.authTitle{
  margin:12px 0 6px;
  font-size:26px;
  letter-spacing:-.03em;
  font-weight:950;
  color:#0b1220;
}
.authDesc{
  margin:0 0 16px;
  color:rgba(31,28,23,.62);
  font-weight:650;
  line-height:1.7;
  font-size:13px;
}
.authForm{display:grid;gap:10px}
.authLabel{
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:900;
  color:rgba(11,18,32,.82);
}
.authInput{
  height:46px;
  border-radius:16px;
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  padding:0 12px;
  outline:none;
}
.authInput:focus{border-color:rgba(245,158,11,.60)}
.authError{
  display:none;
  border-radius:16px;
  padding:10px 12px;
  border:1px solid rgba(239,68,68,.28);
  background:rgba(239,68,68,.08);
  color:rgba(127,29,29,.92);
  font-weight:750;
  font-size:12px;
  line-height:1.6;
}
.authError.isVisible{display:block}
.authBtn{
  height:46px;
  border-radius:16px;
  border:0;
  background:linear-gradient(180deg,#f59e0b,#ea7a22);
  color:#fff;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  cursor:pointer;
}
.authBtn:disabled{opacity:.6;cursor:not-allowed}
.authFoot{
  margin-top:14px;
  color:rgba(31,28,23,.54);
  font-weight:650;
  font-size:12px;
}

.adminPage{
  background:#fff;
}
.adminBar{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(11,18,32,.08);
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(10px);
}
.adminBar__inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.adminBar__logo{
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:13px;
  color:#0b1220;
}
.adminBar__right{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.adminBar__user{
  color:rgba(31,28,23,.62);
  font-weight:750;
  font-size:12px;
}
.adminBar__btn{
  height:40px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}
.adminBar__btn:disabled{opacity:.6;cursor:not-allowed}
.admin{padding:26px 0 44px}
.adminTitle{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-.03em;
  font-weight:950;
  color:#0b1220;
}
.adminDesc{
  margin:0 0 18px;
  color:rgba(31,28,23,.62);
  font-weight:650;
  font-size:13px;
  line-height:1.75;
}
.adminPanels{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.adminCard{
  border-radius:22px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(255,255,255,.94);
  padding:16px 16px;
}
.adminCard--click{
  width:100%;
  text-align:left;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, background-color .12s ease;
}
.adminCard--click:hover{
  transform:translateY(-1px);
  border-color:rgba(11,18,32,.14);
  background:rgba(255,255,255,.98);
}
.adminCard--click:active{transform:translateY(0)}
.adminCard--click:focus-visible{
  outline:2px solid rgba(245,158,11,.55);
  outline-offset:2px;
}
.adminCard__hint{
  margin-top:10px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(11,18,32,.55);
}
.adminCard--toggle{padding:0}
.adminCard__summary{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
}
.adminCard__summary::-webkit-details-marker{display:none}
.adminCard--toggle:hover .adminCard__summary{
  background:rgba(11,18,32,.02);
}
.adminCard--toggle[open] .adminCard__summary{
  border-bottom:1px solid rgba(11,18,32,.08);
  background:rgba(11,18,32,.02);
}
.adminCard__body{
  padding:14px 16px 16px;
}
.adminCard--toggle[open]{padding:0}
.adminCard__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.adminCard__title{
  font-weight:950;
  letter-spacing:-.02em;
  color:#0b1220;
  font-size:16px;
}
.adminCard__sub{
  margin-top:6px;
  color:rgba(31,28,23,.62);
  font-weight:650;
  font-size:12px;
  line-height:1.6;
}
.adminStatus{
  min-height:20px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(11,18,32,.10);
  color:rgba(31,28,23,.62);
  font-weight:850;
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  white-space:nowrap;
  background:rgba(255,255,255,.92);
}
.adminStatus:empty{
  padding:0;
  border:0;
  background:transparent;
}
.adminStatus.isOk{
  border-color:rgba(34,197,94,.26);
  background:rgba(34,197,94,.08);
  color:rgba(20,83,45,.92);
}
.adminStatus.isErr{
  border-color:rgba(239,68,68,.26);
  background:rgba(239,68,68,.08);
  color:rgba(127,29,29,.92);
}
.adminForm{display:grid;gap:12px}
.adminRow{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.adminField{display:grid;gap:8px}
.adminLabel{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:950;
  color:rgba(11,18,32,.72);
}
.adminInput,.adminTextarea,.adminSelect{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  padding:0 12px;
  outline:none;
  color:#0b1220;
}
.adminInput,.adminSelect{height:44px}
.adminTextarea{padding:12px 12px;resize:vertical}
.adminInput:focus,.adminTextarea:focus,.adminSelect:focus{border-color:rgba(245,158,11,.62)}
.adminGroup{
  border-radius:18px;
  border:1px solid rgba(11,18,32,.08);
  background:rgba(11,18,32,.02);
  padding:12px 12px;
  display:grid;
  gap:10px;
}
.adminGroup__title{
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(11,18,32,.66);
}
.adminActions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:2px;
}
.adminBtn{
  height:44px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  color:#0b1220;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}
.adminBtn--primary{
  border:0;
  background:linear-gradient(180deg,#f59e0b,#ea7a22);
  color:#fff;
}
.adminBtn:disabled{opacity:.6;cursor:not-allowed}
.modal{
  position:fixed;
  inset:0;
  z-index:60;
  display:none;
  padding:22px;
  place-items:center;
}
.modal.isOpen{display:grid}
.isModalOpen{overflow:hidden}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(11,18,32,.55);
  backdrop-filter:saturate(140%) blur(10px);
}
.modal__panel{
  position:relative;
  width:min(980px, 100%);
  max-height:86vh;
  overflow:auto;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(18,24,36,.44);
  backdrop-filter:saturate(140%) blur(16px);
  box-shadow:0 24px 80px rgba(0,0,0,.45);
  color:#fff;
}
.modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:18px 18px 14px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.modal__title{
  font-weight:950;
  letter-spacing:-.02em;
  font-size:18px;
}
.modal__sub{
  margin-top:6px;
  color:rgba(255,255,255,.70);
  font-weight:650;
  font-size:12px;
  line-height:1.6;
}
.modal__close{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:950;
  font-size:16px;
  cursor:pointer;
}
.modal__body{padding:16px 18px 18px}
.modalForm{display:grid;gap:14px}
.modalList{display:grid;gap:14px}
.modalActions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.modalActions__right{display:flex;gap:10px;flex-wrap:wrap}
.modalBtn{
  height:44px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}
.modalBtn--primary{
  border:0;
  background:linear-gradient(180deg,#f59e0b,#ea7a22);
  color:#fff;
}
.modalField{display:grid;gap:8px}
.modalLabel{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:950;
  color:rgba(255,255,255,.78);
}
.modalInput,.modalTextarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  padding:0 12px;
  outline:none;
  color:#fff;
}
.modalFile{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  padding:10px 12px;
  outline:none;
  color:#fff;
}
.modalFile::file-selector-button{
  height:32px;
  padding:0 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:10px;
  cursor:pointer;
  margin-right:10px;
}
.modalFile:focus{border-color:rgba(245,158,11,.65)}
.modalSelect{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  padding:0 12px;
  outline:none;
  color:#fff;
  height:44px;
}
.modalSelect:focus{border-color:rgba(245,158,11,.65)}
.modalInput{height:44px}
.modalTextarea{padding:12px 12px;resize:vertical}
.modalInput:focus,.modalTextarea:focus{border-color:rgba(245,158,11,.65)}
.modalSection{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:14px 14px 16px;
  display:grid;
  gap:12px;
}
.modalSection__title{
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(255,255,255,.78);
}
.amenities{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.switch{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:10px 10px;
  cursor:pointer;
  user-select:none;
}
.switch__input{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
}
.switch__ui{
  width:44px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  position:relative;
  flex:0 0 auto;
}
.switch__ui::after{
  content:"";
  width:20px;
  height:20px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  position:absolute;
  top:2px;
  left:2px;
  transition:transform .14s ease, background-color .14s ease;
}
.switch__label{
  font-weight:850;
  font-size:12px;
  color:rgba(255,255,255,.84);
}
.switch__input:checked + .switch__ui{
  background:rgba(245,158,11,.35);
  border-color:rgba(245,158,11,.55);
}
.switch__input:checked + .switch__ui::after{
  transform:translateX(18px);
  background:#fff;
}
.switch:has(.switch__input:focus-visible){
  outline:2px solid rgba(245,158,11,.55);
  outline-offset:2px;
}
.slideEditor{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  overflow:hidden;
  display:grid;
  grid-template-columns:220px minmax(0, 1fr);
}
.slideEditor__preview{
  position:relative;
  background:rgba(0,0,0,.22);
}
.slideEditor__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.slideEditor__fields{padding:14px 14px 16px;display:grid;gap:12px}
.slideEditor__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.slideEditor__title{
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(255,255,255,.80);
}
.slideEditor__remove{
  height:34px;
  padding:0 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(239,68,68,.16);
  color:#fff;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:10px;
  cursor:pointer;
}
.slideEditor__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.adminGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.adminTile{
  border-radius:22px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(255,255,255,.92);
  padding:16px 16px;
}
.adminTile__k{
  color:rgba(31,28,23,.62);
  font-weight:850;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.adminTile__v{
  margin-top:10px;
  font-weight:950;
  letter-spacing:-.02em;
  color:#0b1220;
  font-size:16px;
}
@media (max-width: 920px){
  .adminGrid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .adminPanels{grid-template-columns:1fr}
  .adminRow{grid-template-columns:1fr}
  .slideEditor{grid-template-columns:1fr}
  .slideEditor__preview{height:180px}
  .slideEditor__grid{grid-template-columns:1fr}
  .amenities{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .adminGrid{grid-template-columns:1fr}
}

.slider{
  position:relative;
  height:100vh;
  min-height:640px;
  overflow:hidden;
  color:#fff;
}
.slider__viewport{
  position:absolute;
  inset:0;
}
.slider__track{
  position:absolute;
  inset:0;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.03);
  transition:opacity .65s ease, transform .85s ease;
  pointer-events:none;
}
.slide.isActive{
  opacity:1;
  transform:scale(1);
  pointer-events:auto;
}
.slide__img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.slide__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 520px at 18% 28%, rgba(0,0,0,.10), rgba(0,0,0,.56)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.68));
}
.slide__content{
  position:absolute;
  left:0;
  right:0;
  bottom:70px;
  display:grid;
  gap:10px;
  z-index:2;
  max-width:860px;
  margin:0 auto;
  text-align:center;
  justify-items:center;
}
.slide__kicker{
  width:max-content;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.10);
  backdrop-filter:saturate(150%) blur(10px);
}
.slide__title{
  margin:0;
  font-size:clamp(34px, 4.6vw, 62px);
  letter-spacing:-.02em;
  line-height:1.04;
  font-weight:900;
  text-shadow:0 14px 32px rgba(0,0,0,.30);
}
.slide__desc{
  margin:0;
  max-width:72ch;
  color:rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.75;
  font-weight:600;
}

.sliderUI{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0;
  border-radius:0;
  border:0;
  background:transparent;
  backdrop-filter:none;
  box-shadow:none;
}
.iconBtn{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:800;
  transition:background .15s ease, transform .15s ease;
}
.iconBtn:hover{background:rgba(255,255,255,.16);transform:translateY(-1px)}
.iconBtn:active{transform:translateY(0)}
.dots{
  display:flex;
  gap:10px;
  align-items:center;
}
.dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, width .2s ease;
}
.dot:hover{transform:scale(1.08)}
.dot.isActive{
  background:rgba(255,255,255,.92);
  width:22px;
}

.sectionLight{
  background:#fff;
  color:#1f1c17;
  padding:60px 0;
}
.sectionLight a{color:inherit}
.shopBy{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:18px;
  align-items:stretch;
}
.shopBy__aside{
  border-radius:26px;
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.shopBy__title{
  font-weight:950;
  font-size:18px;
  letter-spacing:-.02em;
}
.shopBy__stat{
  display:flex;
  gap:12px;
  align-items:center;
  padding:0;
  border-radius:0;
  border:0;
  background:transparent;
}
.shopBy__statIcon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:0;
  background:transparent;
  color:rgba(31,28,23,.86);
}
.shopBy__statIcon svg{width:22px;height:22px}
.shopBy__statValue{
  display:block;
  font-weight:950;
  letter-spacing:-.02em;
}
.shopBy__statLabel{
  display:block;
  color:rgba(31,28,23,.62);
  font-weight:700;
  font-size:12px;
}
.shopBy__all{
  margin-top:auto;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.82;
}
.shopBy__all:hover{opacity:1}
.shopBy__cats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.catCard{
  position:relative;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  display:grid;
  gap:0;
  align-content:stretch;
  justify-items:stretch;
  height:132px;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.catCard::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.42));
  pointer-events:none;
}
.catCard:hover{
  transform:translateY(-4px);
  box-shadow:none;
  background:transparent;
}
.catCard__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  background:transparent;
  padding:0;
}
.catCard__label{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:1;
  font-weight:950;
  letter-spacing:-.02em;
  color:#fff;
  text-align:left;
  padding:0;
  line-height:1.15;
  text-shadow:0 14px 30px rgba(0,0,0,.32);
}

.promoGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.promo{
  position:relative;
  border-radius:0;
  overflow:hidden;
  min-height:200px;
  height: 400px;
  border:0;
  box-shadow:none;
  background:#fff;
  display:block;
}
.promo__img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.promo__shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18));
}
.promo__frame{
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.60);
  border-radius:0;
  pointer-events:none;
}
.promo__content{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  gap:10px;
  text-align:center;
  color:#fff;
  font-weight:900;
}
.promo__title{
  font-size:clamp(22px, 3vw, 40px);
  letter-spacing:-.02em;
  text-shadow:0 16px 44px rgba(0,0,0,.28);
}
.promo__btn{
  width:max-content;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(180deg,#f59e0b,#ea7a22);
  color:#fff;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  box-shadow:none;
}

.rentals{
  margin-top:34px;
}
.rentals__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.rentals__title{
  margin:0;
  font-size:22px;
  letter-spacing:-.02em;
  font-weight:950;
}
.rentals__desc{
  margin:0;
  color:rgba(31,28,23,.62);
  font-weight:700;
  font-size:13px;
}
.rentalGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.rentalCard{
  display:flex;
  flex-direction:column;
  gap:10px;
  color:inherit;
  text-decoration:none;
}
.rentalCard__media{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f3f3f3;
}
.rentalCard__img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rentalCard__tag{
  position:absolute;
  left:12px;
  top:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:rgba(31,28,23,.92);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:950;
}
.rentalCard__body{
  display:grid;
  gap:4px;
}
.rentalCard__place{
  font-weight:950;
  letter-spacing:-.02em;
  font-size:14px;
}
.rentalCard__meta{
  color:rgba(31,28,23,.62);
  font-weight:700;
  font-size:12px;
}
.rentalCard__price{
  font-weight:950;
  letter-spacing:-.02em;
  font-size:14px;
}
.rentalCard:hover .rentalCard__media{
  filter:brightness(.98) contrast(1.02);
}

.footer{
  background:
    radial-gradient(800px 460px at 20% -10%, rgba(245,158,11,.18), rgba(11,18,32,0)),
    radial-gradient(720px 420px at 80% -10%, rgba(234,122,34,.16), rgba(11,18,32,0)),
    #0b1220;
  color:#fff;
  padding:34px 0 22px;
}
.footer a{color:inherit}
.footer__cta{padding-bottom:18px}
.footerCta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  backdrop-filter:saturate(140%) blur(10px);
}
.footerCta__copy{display:grid;gap:6px}
.footerCta__kicker{
  font-weight:950;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.footerCta__title{
  font-weight:950;
  letter-spacing:-.02em;
  font-size:18px;
}
.footerCta__sub{
  color:rgba(255,255,255,.70);
  font-weight:650;
  font-size:13px;
}
.footerCta__actions{display:flex;gap:10px;flex-wrap:wrap}
.footerPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footerPill--accent{
  border-color:rgba(245,158,11,.34);
  background:linear-gradient(180deg,#f59e0b,#ea7a22);
}

.footer__grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:26px;
  padding:18px 0 18px;
}
.footer__brand{
  display:grid;
  gap:12px;
}
.footer__logo{
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:14px;
}
.footer__tagline{
  margin:0;
  color:rgba(255,255,255,.74);
  font-weight:650;
  line-height:1.75;
  font-size:13px;
}
.footer__facts{display:grid;gap:8px;margin-top:2px}
.footerFact{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.footerFact__k{
  color:rgba(255,255,255,.62);
  font-weight:850;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.footerFact__v{
  color:rgba(255,255,255,.82);
  font-weight:750;
  font-size:13px;
}
.footerSocial{
  display:flex;
  gap:10px;
  margin-top:2px;
}
.footerSocial__a{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
}
.footerSocial__a svg{width:20px;height:20px}

.footer__cols{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}
.footer__col{
  display:grid;
  gap:10px;
  align-content:start;
}
.footer__h{
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(255,255,255,.86);
}
.footer__a{
  color:rgba(255,255,255,.74);
  font-weight:650;
  font-size:13px;
}
.footer__a:hover{color:#fff}
.footer__a--inline{opacity:.85}
.footer__a--inline:hover{opacity:1}
.footer__muted{
  color:rgba(255,255,255,.58);
  font-weight:650;
  font-size:12px;
}
.footerForm{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footerForm__input{
  flex:1 1 170px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:0 12px;
  outline:none;
}
.footerForm__input::placeholder{color:rgba(255,255,255,.58)}
.footerForm__btn{
  height:44px;
  padding:0 14px;
  border-radius:16px;
  border:0;
  background:rgba(255,255,255,.92);
  color:#0b1220;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
}

.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__bottomRight{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

@media (max-width: 920px){
  .nav{display:none}
  .navToggle{display:flex;justify-self:center}
  .header__inner{grid-template-columns:auto auto auto}
  .btn--cta{padding:11px 12px}
  .slide__content{bottom:92px}
  .shopBy{grid-template-columns:1fr}
  .shopBy__cats{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .promoGrid{grid-template-columns:1fr}
  .rentals__head{align-items:flex-start;flex-direction:column}
  .rentalGrid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .footerCta{flex-direction:column;align-items:flex-start}
  .footer__grid{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

@media (max-width: 920px){
  .nav.isOpen{
    display:flex;
    position:absolute;
    top:70px;
    left:16px;
    right:16px;
    flex-direction:column;
    gap:6px;
    padding:10px 10px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(0,0,0,.36);
    backdrop-filter:saturate(140%) blur(14px);
    box-shadow:var(--shadow);
  }
  .nav__link{width:100%}
}

@media (max-width: 520px){
  .slider{min-height:560px}
  .slide__title{font-size:clamp(30px, 9vw, 46px)}
  .sliderUI{gap:10px;padding:10px 10px}
  .iconBtn{width:42px;height:42px}
  .shopBy__cats{grid-template-columns:1fr}
  .catCard{height:124px}
  .promo{min-height:180px}
  .rentalGrid{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;align-items:flex-start}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .slide{transition:none}
  .iconBtn,.btn,.nav__link,.dot{transition:none}
}
