/* ===== Landing — сочная палитра (Level.Travel vibe) ===== */
:root {
  /* электрический лайм шапки Level.Travel ≈ #D4FF00 */
  --ld-lime: #d4ff00;
  --ld-lime-hover: #c4ef00;
  --ld-lime-text: #141408;
  /* акценты */
  --ld-pink: #ff2d8a;
  --ld-pink-hover: #e6006e;
  --ld-yellow: #ffe600;
  --ld-yellow-dark: #f5d000;
  --ld-orange: #ff6600;
  --ld-orange-hover: #e85a00;
  /* алиасы для совместимости */
  --ld-blue: var(--ld-pink);
  --ld-blue-dark: var(--ld-pink-hover);
  --ld-green: #a3e635;
  --ld-purple: var(--ld-pink);
  --ld-bg: #fafafa;
  --ld-white: #ffffff;
  --ld-text: #0a0a0a;
  --ld-muted: #525252;
  --ld-border: #e8e8e8;
  --ld-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --ld-radius: 16px;
  --ld-header-h: 64px;
  --ld-max: 1480px;
}

html { scroll-behavior: smooth; }

body.page-landing {
  background: var(--ld-bg);
  color: var(--ld-text);
}

/* ===== Header — лаймовая полоса как Level.Travel ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ld-lime);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 0 rgba(255, 230, 0, 0.35);
}
.site-header__inner {
  position: relative;
  max-width: var(--ld-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  height: var(--ld-header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 15px;
  color: var(--ld-lime-text);
  flex-shrink: 0;
}
.site-logo svg { flex-shrink: 0; }
.site-logo__mark { display: block; }
.site-logo span { white-space: nowrap; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin: 0 auto;
}
.site-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ld-lime-text);
  opacity: 0.72;
  transition: opacity 0.15s, color 0.15s;
}
.site-nav a:hover { opacity: 1; }
.site-nav a.is-active {
  opacity: 1;
  color: var(--ld-pink);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ld-lime-text);
  opacity: 0.8;
  white-space: nowrap;
}
.site-link:hover { opacity: 1; }
.site-link.is-logged-in { font-weight: 800; }
.btn-rent.is-logged-in { box-shadow: 0 4px 14px rgba(255, 45, 138, 0.35); }
.site-link--hide-mobile { display: none; }

.btn-rent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ld-pink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 45, 138, 0.32);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}
.btn-rent svg {
  flex-shrink: 0;
  color: #fff;
  opacity: 0.95;
}
.btn-rent:hover {
  background: var(--ld-pink-hover);
  box-shadow: 0 6px 18px rgba(255, 45, 138, 0.42);
}
.btn-rent:active { transform: scale(0.98); }

/* Аватар в шапке (мобилка) */
.header-avatar {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.header-avatar[hidden] { display: none !important; }

/* Нижняя панель — мобилка */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  height: calc(60px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--ld-white);
  border-top: 1px solid var(--ld-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}
.mobile-tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ld-muted);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-tabbar__item.is-active {
  color: var(--ld-pink);
}
.mobile-tabbar__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.mobile-tabbar__item--profile.is-logged-in .mobile-tabbar__icon--guest {
  display: none;
}
.mobile-tabbar__avatar-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ld-border);
}
.mobile-tabbar__avatar-wrap[hidden] { display: none !important; }
.mobile-tabbar__item--profile.is-logged-in .mobile-tabbar__avatar-wrap {
  display: block;
  border-color: var(--ld-pink);
}
.mobile-tabbar__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ld-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.landing-hero {
  padding: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 28px) clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(212, 255, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 45, 138, 0.06), transparent 50%),
    var(--ld-bg);
}
.landing-inner {
  max-width: var(--ld-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr minmax(340px, 420px) minmax(360px, 460px);
  gap: clamp(24px, 2.5vw, 48px);
  align-items: start;
}

/* Left column */
.landing-left h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ld-pink);
  letter-spacing: -0.02em;
}
.landing-left.is-tours h1 { color: var(--ld-orange); }
.landing-left .landing-sub {
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--ld-text);
}

.landing-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.landing-features[hidden] { display: none !important; }
.landing-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ld-text);
}
.landing-feat__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.landing-feat__text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ld-text);
  line-height: 1.25;
}
.landing-feat__text span {
  font-size: 13px;
  color: var(--ld-muted);
  line-height: 1.35;
}
.landing-feat__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.landing-feat__icon .feat-icon,
.landing-feat__icon img.feat-icon,
.landing-feat__icon svg.feat-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.landing-feat__icon--orange { background: rgba(255, 102, 0, 0.14); color: var(--ld-orange); }
.landing-feat__icon--purple { background: rgba(255, 45, 138, 0.12); color: var(--ld-pink); }
.landing-feat__icon--yellow { background: rgba(255, 230, 0, 0.35); color: #c9a800; }
.landing-feat__icon--blue   { background: rgba(255, 230, 0, 0.35); color: var(--ld-orange); }
.landing-feat__icon--green  { background: rgba(212, 255, 0, 0.45); color: #6b7a00; }

.landing-stats-card {
  background: var(--ld-white);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.landing-stat strong {
  display: block;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.landing-stat span {
  font-size: 11px;
  color: var(--ld-muted);
  line-height: 1.35;
}
.landing-stat--blue strong   { color: var(--ld-pink); }
.landing-stat--green strong  { color: var(--ld-yellow-dark); }
.landing-stat--orange strong { color: var(--ld-orange); }

.landing-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.landing-avatars {
  display: flex;
  padding-left: 4px;
}
.landing-avatars img,
.landing-avatars .av-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--ld-white);
  margin-left: -12px;
  object-fit: cover;
  background: var(--ld-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.landing-avatars img:first-child,
.landing-avatars .av-placeholder:first-child { margin-left: 0; }
.landing-social p {
  margin: 0;
  font-size: 14px;
  color: var(--ld-pink);
  font-weight: 700;
  line-height: 1.4;
  max-width: 280px;
}

/* Center — form card (rai-da style) */
.landing-center { position: relative; z-index: 2; }

.form-card {
  background: var(--ld-white);
  border-radius: 20px;
  border: 1px solid var(--ld-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-tabs {
  display: flex;
  background: #f8f9fb;
  border-bottom: 1px solid var(--ld-border);
  overflow: hidden;
}
.form-tab {
  flex: 1;
  height: 52px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--ld-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-tab .tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}
.form-tab:not(:last-child) { border-right: 1px solid var(--ld-border); }
.form-tab.is-active {
  background: var(--ld-white);
  color: var(--ld-pink);
  box-shadow: inset 0 -3px 0 var(--ld-pink);
}
.form-tab[data-tab="tours"].is-active {
  color: var(--ld-orange);
  box-shadow: inset 0 -3px 0 var(--ld-orange);
}

.booking-form {
  background: var(--ld-white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.booking-form[hidden] { display: none !important; }

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f1f3;
}
.form-row:last-of-type { border-bottom: none; }
.form-row--stack .form-row__main { display: flex; flex-direction: column; gap: 0; }
.form-row--toggle .form-row__main--inline,
.form-row .form-row__main--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.form-row--note { align-items: flex-start; }

.form-row__ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-row__ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.form-row__ico--pink   { background: rgba(255, 45, 138, 0.12); color: var(--ld-pink); }
.form-row__ico--yellow { background: rgba(255, 230, 0, 0.35); color: #b89600; }
.form-row__ico--purple { background: rgba(255, 45, 138, 0.08); color: #a855f7; }
.form-row__ico--lime   { background: rgba(212, 255, 0, 0.4); color: #6b7a00; }
.form-row__ico--orange { background: rgba(255, 102, 0, 0.14); color: var(--ld-orange); }
.form-row__ico--blue   { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.form-row__ico--gray   { background: #f3f4f6; color: #6b7280; }

.form-row__main {
  flex: 1;
  min-width: 0;
}
.form-row__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ld-muted);
  margin-bottom: 6px;
}
.form-row__main--inline > .form-row__label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ld-text);
}

.form-row__control {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: var(--ld-text);
  padding: 0;
  min-height: 24px;
  transition: color 0.15s;
}
.form-row__control:focus {
  outline: none;
}
.form-row__control--area {
  min-height: 56px;
  resize: vertical;
  font-weight: 500;
  line-height: 1.45;
}
select.form-row__control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23525252' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}
input[type="date"].form-row__control,
input[type="number"].form-row__control {
  font-weight: 600;
}
input.form-row__control::placeholder,
textarea.form-row__control::placeholder {
  color: #a3a3a3;
  font-weight: 500;
}

.form-row__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e8e8e8;
  font-size: 13px;
  font-weight: 600;
  color: var(--ld-text);
}

.form-dates {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-dates .form-row__control { flex: 1; min-width: 0; }
.form-dates .sep { color: var(--ld-muted); font-size: 14px; flex-shrink: 0; }

.form-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #f3f4f6;
}
.form-subrow:first-of-type { border-top: none; padding-top: 4px; }
.form-subrow__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ld-text);
}

.form-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.form-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.form-toggle span {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.form-toggle input:checked + span { background: var(--ld-pink); }
.form-toggle input:checked + span::after { transform: translateX(20px); }

.form-counter__ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.form-counter__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--ld-border);
  background: var(--ld-white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--ld-text);
  display: grid;
  place-items: center;
  transition: background 0.1s, border-color 0.1s;
}
.form-counter__btn:hover {
  background: #f8f9fb;
  border-color: #d1d5db;
}
.form-counter__btn:disabled { opacity: 0.35; cursor: default; }
.form-counter__val {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
}

.form-footer {
  padding: 18px 18px 20px;
  background: #fafbfc;
  border-top: 1px solid var(--ld-border);
}

.btn-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: var(--ld-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}
.btn-submit:hover {
  background: var(--ld-orange-hover);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.45);
}
.btn-submit:active { transform: scale(0.99); }
.btn-submit--tours {
  background: var(--ld-pink);
  box-shadow: 0 6px 20px rgba(255, 45, 138, 0.35);
}
.btn-submit--tours:hover {
  background: var(--ld-pink-hover);
  box-shadow: 0 8px 24px rgba(255, 45, 138, 0.45);
}

.form-hint {
  font-size: 12px;
  color: var(--ld-muted);
  text-align: center;
  margin: 10px 0 0;
}

/* Right — hero sliders */
.landing-right {
  display: flex;
  justify-content: stretch;
  align-items: flex-start;
  padding-top: 0;
  min-width: 0;
}

.hero-sliders {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-slider {
  width: 100%;
}

.hero-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 2px;
  gap: 12px;
}
.hero-slider__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-slider--tours .hero-slider__title { color: var(--ld-pink); }
.hero-slider--housing .hero-slider__title { color: var(--ld-orange); }

.hero-slider__dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.25s, background 0.2s, border-radius 0.25s;
}
.hero-dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--ld-pink);
}
.hero-slider--housing .hero-dot.is-active { background: var(--ld-orange); }

.hero-slider__viewport {
  position: relative;
  width: 100%;
  height: clamp(230px, 26vw, 300px);
  border-radius: var(--ld-radius);
  overflow: hidden;
}
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.is-leaving {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  z-index: 0;
}

.hero-slider__skeleton {
  position: absolute;
  inset: 0;
  border-radius: var(--ld-radius);
  background: linear-gradient(110deg, #e2e8f0 30%, #f1f5f9 50%, #e2e8f0 70%);
  background-size: 200% 100%;
  animation: hero-shimmer 1.4s ease infinite;
}
@keyframes hero-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Preview cards */
.hero-card {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: var(--ld-radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  position: relative;
  background: #0f172a;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}
.hero-card:active { transform: scale(0.99); }
.hero-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.08) 100%);
}
.hero-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: #fff;
  z-index: 1;
}
.hero-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
}
.hero-slider--tours .hero-card__tag { background: rgba(255, 45, 138, 0.85); }
.hero-slider--housing .hero-card__tag { background: rgba(255, 102, 0, 0.9); }

.hero-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hero-card__price {
  font-size: 15px;
  font-weight: 900;
}
.hero-card--tour .hero-card__price { color: #ffb3d9; }
.hero-card--house .hero-card__price { color: #ffc48a; }
.hero-card__rate {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}
.hero-card__pin {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 14px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* ===== Catalog sections (light) ===== */
.page-landing .catalog-section {
  padding: clamp(32px, 5vw, 56px) clamp(16px, 3vw, 32px);
}
.catalog-section.anchor { scroll-margin-top: calc(var(--ld-header-h, 64px) + 12px); }
.page-landing .catalog-section--alt {
  background: var(--ld-white);
  border-top: 1px solid var(--ld-border);
  border-bottom: 1px solid var(--ld-border);
}
.catalog-head {
  max-width: 1240px;
  margin: 0 auto 24px;
}
.catalog-head h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--ld-text);
}
.catalog-head p {
  margin: 0;
  font-size: 15px;
  color: var(--ld-muted);
}

.page-landing .tours,
.page-landing .housing {
  color: var(--ld-text);
  padding-top: 0;
}
.page-landing .t-tag,
.page-landing .h-tag {
  background: var(--ld-white);
  border-color: var(--ld-border);
  color: var(--ld-muted);
}
.page-landing .t-tag.active,
.page-landing .h-tag.active {
  background: var(--ld-blue);
  border-color: var(--ld-blue);
  color: #fff;
}
.page-landing #housing .h-tag.active {
  background: var(--ld-orange);
  border-color: var(--ld-orange);
}
.page-landing .t-card,
.page-landing .h-card {
  background: var(--ld-white);
  border-color: var(--ld-border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.page-landing .t-card .t-body,
.page-landing .h-card .h-body { color: var(--ld-text); }
.page-landing .t-card .t-sub,
.page-landing .h-card .h-sub { color: var(--ld-muted); }
.page-landing .t-price,
.page-landing .h-price { color: var(--ld-blue); }
.page-landing #housing .h-price { color: var(--ld-orange); }
.page-landing .seo-block {
  background: var(--ld-white);
  border-radius: var(--ld-radius);
  border: 1px solid var(--ld-border);
  color: var(--ld-text) !important;
  margin-top: 0 !important;
}
.page-landing .seo-block h2 { color: var(--ld-text) !important; }
.page-landing .faq h2 { color: var(--ld-text) !important; }
.page-landing .faq details {
  background: var(--ld-white) !important;
  border-color: var(--ld-border) !important;
  color: var(--ld-text) !important;
}
.page-landing .site-footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 13px;
  color: var(--ld-muted);
  border-top: 1px solid var(--ld-border);
}
.page-landing .site-footer a { color: var(--ld-pink); font-weight: 600; }

/* Social FABs — reposition for light page */
.page-landing .social-fabs {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-landing .social-fabs .fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ld-white);
  border: 1px solid var(--ld-border);
  box-shadow: var(--ld-shadow);
  display: grid;
  place-items: center;
  transition: transform 0.15s;
}
.page-landing .social-fabs .fab:hover { transform: scale(1.06); }
.page-landing .social-fabs .fab img { width: 28px; height: 28px; border-radius: 50%; }

/* Boot loader light */
.page-landing #boot .boot-box {
  background: var(--ld-white);
  color: var(--ld-text);
  border: 1px solid var(--ld-border);
  box-shadow: var(--ld-shadow);
}
.page-landing #boot .boot-spin { border-color: var(--ld-border); border-top-color: var(--ld-lime); }

/* Sheet stays dark — fine for modals */
.page-landing .sheet { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .landing-inner {
    grid-template-columns: 1fr 1fr;
  }
  .landing-right {
    grid-column: 1 / -1;
    order: 3;
    padding-top: 8px;
  }
  .hero-sliders {
    max-width: 100%;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
  }
  .hero-slider { flex: 1; min-width: 0; }
  .hero-slider__viewport { height: clamp(200px, 28vw, 260px); }
}

@media (max-width: 768px) {
  body.page-landing {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  .site-nav { display: none; }
  .site-actions .site-link,
  .site-actions .site-link--hide-mobile { display: none; }
  .btn-rent--desktop { display: none !important; }
  .burger { display: none !important; }

  .header-avatar:not([hidden]) {
    display: block;
  }

  .mobile-tabbar {
    display: flex;
  }

  .site-footer {
    margin-bottom: 8px;
  }

  .landing-inner {
    grid-template-columns: 1fr;
  }
  .landing-right {
    display: block;
    order: 3;
  }
  .hero-sliders {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
  }
  .hero-slider__viewport { height: 220px; }
  .landing-left { order: 1; }
  .landing-center { order: 2; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .site-link--hide-mobile { display: inline; }
  .btn-rent--desktop { display: inline-flex; }
  .mobile-tabbar { display: none !important; }
  .header-avatar { display: none !important; }
}

@media (min-width: 1400px) {
  :root { --ld-max: 1560px; }
  .landing-inner {
    grid-template-columns: 1.2fr minmax(360px, 440px) minmax(400px, 500px);
  }
}
