*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #FAF8F3;
      --bg2:     #EFE9DF;
      --gold:    #b49a73;
      --gold-lt: #d4c4a8;
      --gold-dk: #8a7455;
      --red:     #D42B25;
      --accent:    #C8201D;
      --accent-dk: #A4171B;
      --dark:    #1C1916;
      --text:    #3D3530;
      --muted:   #8A7E76;
      --white:   #FFFFFF;
      --r-xl: 28px; --r-lg: 20px; --r-md: 14px;
      --sh-sm: 0 2px 12px rgba(28,25,22,.07);
      --sh-md: 0 8px 32px rgba(28,25,22,.13);
      --sh-lg: 0 24px 64px rgba(28,25,22,.18);
      --fs-bump: 1px;
    }

    html { scroll-behavior: smooth; scroll-padding-top: calc(92px + env(safe-area-inset-top)); }
    body { font-family: 'Manrope', sans-serif; font-size: calc(16px + var(--fs-bump)); background: var(--bg); color: var(--text); overflow-x: hidden; }

    /* ── HEADER ─────────────────────────────── */
    .hw {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
      width: calc(100% - 40px); max-width: 1180px; z-index: 200;
    }
    header {
      background: rgba(250,248,243,.88);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(180,154,115,.2); border-radius: 70px;
      padding: 10px 14px 10px 18px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
      box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,.85);
      transition: box-shadow .3s;
    }
    header.is-scrolled {
      box-shadow: 0 14px 44px rgba(28,25,22,.2), inset 0 1px 0 rgba(255,255,255,.85);
    }

    .logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .logo-img { height: 60px; width: auto; display: block; }

    nav { display: flex; gap: 2px; }
    nav a {
      font-size: calc(14px + var(--fs-bump)); font-weight: 600; color: var(--text); text-decoration: none;
      padding: 8px 15px; border-radius: 40px; transition: background .2s;
    }
    nav a:hover { background: var(--bg2); }

    .hdr-r { display: flex; align-items: center; gap: 16px; }
    .hdr-addr {
      display: flex; align-items: center; gap: 7px;
      font-size: calc(12px + var(--fs-bump)); font-weight: 600; color: var(--text);
      text-decoration: none; transition: color .2s;
      line-height: 1.25; max-width: 200px;
    }
    .hdr-addr:hover { color: var(--accent-dk); }
    .hdr-addr svg { color: var(--accent); flex-shrink: 0; }
    .hdr-addr span { display: inline-block; }
    .hdr-phone { font-size: calc(13px + var(--fs-bump)); font-weight: 700; color: var(--text); text-decoration: none; transition: color .2s; white-space: nowrap; }
    .hdr-phone:hover { color: var(--accent-dk); }

    .btn-gold {
      background: var(--accent); color: var(--white);
      font-family: 'Manrope', sans-serif; font-size: calc(12px + var(--fs-bump));
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 12px 22px; border-radius: 50px; border: none; cursor: pointer;
      text-decoration: none; white-space: nowrap; display: inline-block;
      box-shadow: 0 4px 16px rgba(200,32,29,.3);
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-gold:hover { background: var(--accent-dk); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(200,32,29,.4); }

    /* Мобильное меню шапки */
    .hdr-menu-btn {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: var(--dark);
      color: var(--white);
      cursor: pointer;
      flex-shrink: 0;
      box-shadow: 0 2px 14px rgba(28,25,22,.18);
      transition: background .2s, transform .15s;
    }
    .hdr-menu-btn:hover { background: #2c2722; transform: translateY(-1px); }
    .hdr-menu-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
    .hdr-menu-bar {
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 1px;
      display: block;
      position: relative;
    }
    .hdr-menu-bar::before,
    .hdr-menu-bar::after {
      content: '';
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 1px;
      transition: transform .25s ease, top .25s ease;
    }
    .hdr-menu-bar::before { top: -7px; }
    .hdr-menu-bar::after { top: 7px; }
    .hdr-menu-btn.is-open .hdr-menu-bar { background: transparent; }
    .hdr-menu-btn.is-open .hdr-menu-bar::before { top: 0; transform: rotate(45deg); }
    .hdr-menu-btn.is-open .hdr-menu-bar::after { top: 0; transform: rotate(-45deg); }

    .hdr-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(18,14,10,.45);
      z-index: 198;
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    }
    .hdr-panel {
      display: none;
      position: fixed;
      left: clamp(14px, 4vw, 22px);
      right: clamp(14px, 4vw, 22px);
      top: calc(16px + 72px + 12px + env(safe-area-inset-top, 0px));
      max-height: min(calc(100vh - 110px), calc(100dvh - 110px));
      overflow-y: auto;
      background: rgba(250,248,243,.97);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      border-radius: var(--r-xl);
      border: 1px solid rgba(180,154,115,.28);
      box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.9);
      z-index: 199;
      padding: 20px 16px 22px;
      transform: translateY(-16px);
      opacity: 0;
      visibility: hidden;
      transition: transform .38s cubic-bezier(.34, 1.22, .64, 1), opacity .3s ease, visibility .35s ease;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .hdr-panel::-webkit-scrollbar { display: none; width: 0; }
    .hdr-panel-inner { display: flex; flex-direction: column; gap: 2px; }
    .hdr-panel a.hdr-panel-link {
      font-size: calc(16px + var(--fs-bump));
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      padding: 14px 12px;
      border-radius: 14px;
      transition: background .2s;
    }
    .hdr-panel a.hdr-panel-link:hover,
    .hdr-panel a.hdr-panel-link:active { background: var(--bg2); }
    .hdr-panel-book {
      margin-top: 8px;
      text-align: center;
      width: 100%;
      max-width: 100%;
      display: inline-block;
      box-sizing: border-box;
    }

    .hdr-panel-contacts {
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(180,154,115,.2);
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .hdr-panel-contacts-cap {
      font-family: 'Manrope', sans-serif;
      font-size: calc(10px + var(--fs-bump));
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
      margin: 0 0 6px;
    }
    .hdr-panel-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 15px;
      border-radius: 18px;
      text-decoration: none;
      color: inherit;
      background: rgba(239,233,223,.52);
      border: 1px solid rgba(180,154,115,.22);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
      transition: transform .18s ease, border-color .2s, box-shadow .2s, background .2s;
      -webkit-tap-highlight-color: transparent;
    }
    .hdr-panel-card:active { transform: scale(.985); }
    .hdr-panel-card:hover {
      border-color: rgba(180,154,115,.38);
      background: rgba(239,233,223,.72);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.85), var(--sh-sm);
    }
    .hdr-panel-card-ico {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(155deg, rgba(255,255,255,.9) 0%, rgba(212,196,168,.38) 100%);
      border: 1px solid rgba(180,154,115,.35);
      color: var(--gold-dk);
    }
    .hdr-panel-card-ico svg { display: block; }
    .hdr-panel-card-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
      padding-top: 1px;
    }
    .hdr-panel-card-k {
      font-family: 'Manrope', sans-serif;
      font-size: calc(11px + var(--fs-bump));
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .hdr-panel-card-v {
      font-size: calc(15px + var(--fs-bump));
      font-weight: 700;
      line-height: 1.35;
      color: var(--dark);
      letter-spacing: .01em;
    }
    .hdr-panel-card--phone .hdr-panel-card-v {
      font-variant-numeric: tabular-nums;
      letter-spacing: .03em;
    }

    html.menu-lock { overflow: hidden; }
    html.menu-lock .hdr-backdrop { opacity: 1; pointer-events: auto; }
    html.menu-lock .hdr-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* ── HERO ─────────────────────────────────── */
    .hero-shell {
      position: relative;
    }

    .hero {
      position: relative;
      /* Сначала минимум 680px, затем полный экран — иначе последняя строка min-height перебивает 100vh */
      min-height: 680px;
      height: 100vh;
      /* svh не «дышит» вместе с адресной строкой браузера на мобилке — нет прыжков при скролле */
      height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    /* Десктоп: полоса поиска нависает над нижним краем первого экрана */
    .hero-shell > .tl-wrapper {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      z-index: 9;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0; background: var(--dark);
    }
    .hero-bg img,
    .hero-bg video {
      width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(to top, rgba(18,14,10,.85) 0%, rgba(18,14,10,.4) 42%, rgba(18,14,10,.05) 70%),
        linear-gradient(to right, rgba(18,14,10,.3) 0%, transparent 60%);
    }

    .hero-inner {
      position: relative; z-index: 1; width: 100%;
      flex: 1 1 auto;
      min-height: 0;
      padding: 0 60px clamp(112px, 20vh, 200px);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
    }

    /* ── TRAVELLINE ───────────────────────────── */
    #block-search-main {
      background-color: var(--accent);
      width: 100%;
      box-sizing: border-box;
      padding: 10px 0;
    }
    .tl-container {
      padding: 0 clamp(14px, 4vw, 25px);
      max-width: 1357px;
      margin: 0 auto;
    }
    #tl-search-form { min-height: 44px; }
    #tl-search-booking {
      min-height: 60px;
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    #block-search-main.booking-pulse,
    #booking.booking-pulse {
      animation: bookingPulse .9s ease;
    }
    @keyframes bookingPulse {
      0%, 100% { box-shadow: none; }
      50% { box-shadow: 0 0 0 4px rgba(200,32,29,.45), 0 12px 40px rgba(28,25,22,.2); }
    }

    .hero-text { max-width: 580px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.18); border-radius: 40px;
      padding: 7px 15px; margin-bottom: 22px;
      font-size: calc(11px + var(--fs-bump)); font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }
    .hero-eyebrow i {
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
      animation: pulse 2s infinite; font-style: normal; display: inline-block;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(calc(46px + var(--fs-bump)), 6.5vw, calc(80px + var(--fs-bump)));
      font-weight: 600; line-height: 1.06; letter-spacing: .005em;
      color: var(--white); margin-bottom: 18px;
    }
    .hero-title em { font-style: italic; color: var(--gold-lt); }

    .hero-sub {
      font-size: calc(16px + var(--fs-bump)); color: rgba(255,255,255,.82);
      line-height: 1.65; margin-bottom: 36px; max-width: 440px;
    }

    .hero-btns { display: flex; align-items: center; gap: 16px; }

    .btn-white {
      background: var(--white); color: var(--dark);
      font-family: 'Manrope', sans-serif; font-size: calc(13px + var(--fs-bump));
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 16px 32px; border-radius: 50px; text-decoration: none;
      box-shadow: 0 4px 24px rgba(0,0,0,.25);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }

    .hero-call {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--white); font-size: calc(14px + var(--fs-bump)); font-weight: 700;
      letter-spacing: .04em;
      text-decoration: none;
      padding: 14px 24px; border-radius: 50px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.35);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
    }
    .hero-call:hover {
      background: rgba(255,255,255,.18);
      border-color: var(--gold);
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(0,0,0,.25);
    }
    .hero-call svg { color: var(--gold); opacity: 1; }

    .hero-maps { display: none; }
    .page-hero .hero-maps { display: inline-flex; }

    /* ── DEALS CARD ───────────────────────────── */
    .deals {
      flex-shrink: 0; width: 320px;
      background: rgba(250,248,243,.96);
      backdrop-filter: blur(20px);
      border-radius: var(--r-xl);
      border: 1px solid rgba(180,154,115,.2);
      padding: 24px; box-shadow: var(--sh-lg);
    }
    .deals-hd {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
    }
    .deals-title {
      font-family: 'Manrope', sans-serif; font-size: calc(12px + var(--fs-bump));
      font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dark);
    }
    .deals-badge {
      background: var(--red); color: var(--white); font-size: calc(9px + var(--fs-bump));
      font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px;
    }
    .deal {
      display: flex; align-items: center; gap: 11px;
      padding: 11px 0; border-bottom: 1px solid var(--bg2);
    }
    .deal:last-of-type { border: none; }
    .deal-ico {
      width: 38px; height: 38px; border-radius: 11px; background: var(--bg2);
      display: flex; align-items: center; justify-content: center;
      font-size: calc(17px + var(--fs-bump)); flex-shrink: 0;
    }
    .deal-info { flex: 1; min-width: 0; }
    .deal-n { font-size: calc(12px + var(--fs-bump)); font-weight: 700; color: var(--dark); margin-bottom: 1px; }
    .deal-s { font-size: calc(11px + var(--fs-bump)); color: var(--muted); }
    .deal-p { text-align: right; flex-shrink: 0; }
    .deal-old { font-size: calc(10px + var(--fs-bump)); color: var(--muted); text-decoration: line-through; display: block; }
    .deal-new { font-family: 'Manrope', sans-serif; font-size: calc(14px + var(--fs-bump)); font-weight: 700; color: var(--gold-dk); }

    .deals-cta { display: block; text-align: center; margin-top: 15px; }

    /* ── STATS ────────────────────────────────── */
    .stats {
      background: var(--dark); padding: 30px 60px;
      display: flex; justify-content: center; gap: 80px;
      scroll-margin-top: calc(96px + env(safe-area-inset-top));
    }
    .stat { text-align: center; }
    .stat-n { font-family: 'Playfair Display', serif; font-size: calc(34px + var(--fs-bump)); font-weight: 600; color: var(--gold-lt); line-height: 1; margin-bottom: 7px; }
    .stat-l { font-size: calc(11px + var(--fs-bump)); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); }

    /* ── SECTIONS ─────────────────────────────── */
    section { padding: 96px 60px; }

    .stag {
      font-size: calc(11px + var(--fs-bump)); font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
      color: var(--accent); display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
    }
    .stag::before { content: ''; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

    .stitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(calc(28px + var(--fs-bump)), 3.5vw, calc(44px + var(--fs-bump)));
      font-weight: 600; letter-spacing: .005em;
      color: var(--dark); line-height: 1.15; margin-bottom: 12px;
    }
    .stitle em { font-style: italic; color: var(--accent); }

    .ssub { font-size: calc(15px + var(--fs-bump)); color: var(--muted); line-height: 1.65; max-width: 460px; }

    .shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }

    .btn-outline {
      background: transparent; color: var(--dark);
      font-family: 'Manrope', sans-serif; font-size: calc(11px + var(--fs-bump));
      font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
      padding: 11px 22px; border-radius: 30px;
      border: 1.5px solid rgba(28,25,22,.18); text-decoration: none;
      transition: all .2s; white-space: nowrap;
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,32,29,.05); }

    /* ── ROOMS ────────────────────────────────── */
    .rooms { background: var(--bg); }
    .rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

    .room {
      background: var(--white); border-radius: var(--r-xl); overflow: hidden;
      border: 1px solid rgba(180,154,115,.12); box-shadow: var(--sh-sm);
      transition: transform .3s, box-shadow .3s;
      display: flex; flex-direction: column; height: 100%;
    }
    .room:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

    .room-img { height: 320px; position: relative; overflow: hidden; }
    .room-slides { width: 100%; height: 100%; position: relative; }
    .room-slide {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; display: block;
      opacity: 0; transition: opacity .45s ease, transform .5s;
      pointer-events: none;
    }
    .room-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
    .room:hover .room-slide.active { transform: scale(1.06); }
    .room-img::after {
      content: ''; position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to top, rgba(20,16,12,.4) 0%, transparent 55%);
      pointer-events: none;
    }
    .room-slide-btn {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
      width: 34px; height: 34px; border: none; border-radius: 50%;
      background: rgba(255,255,255,.92); color: var(--dark);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; opacity: 0; transition: opacity .25s, background .2s, transform .15s;
      box-shadow: 0 2px 10px rgba(28,25,22,.15);
    }
    .room-slider:hover .room-slide-btn,
    .room-slider:focus-within .room-slide-btn { opacity: 1; }
    .room-slide-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
    .room-slide-btn.prev { left: 10px; }
    .room-slide-btn.next { right: 10px; }
    .room-slide-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    .room-dots {
      position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: 6px;
    }
    .room-dot {
      width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
      background: rgba(255,255,255,.45); cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .room-dot.active { background: var(--white); transform: scale(1.2); }
    .room-chip {
      position: absolute; top: 14px; left: 14px; z-index: 3;
      background: var(--white); color: var(--accent);
      font-size: calc(10px + var(--fs-bump)); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
    }

    .room-body {
      padding: 22px; flex: 1;
      display: flex; flex-direction: column; min-height: 0;
    }
    .room-name {
      font-family: 'Playfair Display', serif; font-size: calc(20px + var(--fs-bump)); font-weight: 600; color: var(--dark);
      margin-bottom: 6px; line-height: 1.3;
      flex: 0 0 auto; min-height: 25px;
    }
    .room-desc {
      font-size: calc(13px + var(--fs-bump)); color: var(--muted); line-height: 1.6; margin-bottom: 16px;
      flex: 0 0 auto; min-height: 62px;
      display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
    }
    .room-tags {
      display: flex; gap: 6px; flex-wrap: wrap; align-content: flex-start;
      flex-shrink: 0; margin-bottom: 18px;
    }
    .room-tag {
      background: var(--bg); border: 1px solid rgba(180,154,115,.3); border-radius: 30px; padding: 5px 12px;
      font-size: calc(11px + var(--fs-bump)); font-weight: 600; color: var(--text); line-height: 1.3;
    }
    .room-foot {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px 12px;
      flex-shrink: 0; margin-top: auto; padding-top: 14px;
      min-height: 54px;
      border-top: 1px solid var(--bg2);
    }
    .room-price {
      display: flex; align-items: baseline; flex-shrink: 1; min-width: 0; white-space: nowrap;
      min-height: 28px;
    }
    .room-price .amt { font-family: 'Playfair Display', serif; font-size: calc(22px + var(--fs-bump)); font-weight: 600; color: var(--dark); line-height: 1.2; }
    .room-price .per { font-size: calc(12px + var(--fs-bump)); color: var(--muted); line-height: 1.2; }
    .btn-book {
      background: var(--accent); color: var(--white); border: none;
      font-family: 'Manrope', sans-serif; font-size: calc(11px + var(--fs-bump));
      font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
      padding: 0 18px; border-radius: 30px; text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
      white-space: nowrap;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; height: 38px; line-height: 1;
      box-shadow: 0 4px 14px rgba(200,32,29,.3);
    }
    .btn-book:hover {
      background: var(--accent-dk); color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(200,32,29,.4);
    }

    /* ── AMENITIES ────────────────────────────── */
    .amen { background: var(--bg2); }
    .amen-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .amen-cards {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; width: 100%;
    }

    .amen-card {
      border-radius: var(--r-lg); min-height: 210px;
      border: 1px solid rgba(180,154,115,.14);
      box-shadow: var(--sh-sm);
      position: relative; overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }
    .amen-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
    .amen-card:hover .amen-card-bg { transform: scale(1.06); }

    .amen-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .55s ease;
    }
    .amen-card--cafe .amen-card-bg { background-image: url('../images/cafe.jpg.webp'); }
    .amen-card--parking .amen-card-bg { background-image: url('../images/Parking.jpg'); background-position: center 40%; }
    .amen-card--wifi .amen-card-bg { background-image: url('../images/amen/wifi.jpg'); }
    .amen-card--spa .amen-card-bg { background-image: url('../images/amen/spa.jpg'); }

    .amen-card-shade {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(16,12,8,.92) 0%,
        rgba(16,12,8,.72) 42%,
        rgba(16,12,8,.28) 100%
      );
    }

    .amen-card-body {
      position: relative; z-index: 1;
      min-height: 210px; padding: 22px;
      display: flex; flex-direction: column;
    }
    .amen-card-accent { display: none; }
    .amen-card-inner {
      display: flex; flex-direction: column; justify-content: flex-end;
      gap: 8px; flex: 1;
    }

    .amen-ico-wrap {
      width: 46px; height: 46px; border-radius: 13px;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.22);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 2px; flex-shrink: 0;
    }
    .amen-ico { font-size: calc(22px + var(--fs-bump)); line-height: 1; display: block; color: var(--white); }
    .amen-card-main { display: flex; flex-direction: column; gap: 4px; }
    .amen-n {
      font-family: 'Playfair Display', serif; font-size: calc(19px + var(--fs-bump)); font-weight: 600; color: var(--white);
    }
    .amen-s { font-size: calc(12px + var(--fs-bump)); color: rgba(255,255,255,.84); line-height: 1.55; }

    .amen-tag {
      align-self: flex-start; margin-top: 4px;
      font-size: calc(10px + var(--fs-bump)); font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 5px 11px; border-radius: 30px;
      display: inline-flex; align-items: center; gap: 5px;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    }
    .amen-tag.mix { text-transform: none; letter-spacing: .02em; font-size: calc(11px + var(--fs-bump)); font-weight: 600; }
    .amen-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
    .amen-tag.free { background: rgba(120,170,90,.32); color: #d4f0c0; border: 1px solid rgba(180,230,150,.25); }
    .amen-tag.paid { background: rgba(212,43,37,.32); color: #ffc8c5; border: 1px solid rgba(255,150,140,.25); }
    .amen-tag.book { background: rgba(180,154,115,.38); color: #f5e8d4; border: 1px solid rgba(220,200,170,.3); }

    a.amen-menu-btn,
    button.amen-menu-btn {
      appearance: none; border: none; cursor: pointer;
      align-self: flex-start; margin-top: 4px;
      font-family: 'Manrope', sans-serif;
      font-size: calc(10px + var(--fs-bump)); font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--white);
      background: var(--accent);
      padding: 9px 16px; border-radius: 30px;
      text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(200,32,29,.35);
      transition: transform .15s, box-shadow .2s, background .2s;
    }
    a.amen-menu-btn:hover,
    button.amen-menu-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(200,32,29,.45);
      background: var(--accent-dk);
    }

    .amen-list { list-style: none; margin-top: 26px; }
    .amen-list li {
      display: flex; align-items: center; gap: 11px;
      padding: 10px 0; border-bottom: 1px solid rgba(180,154,115,.18);
      font-size: calc(15px + var(--fs-bump)); font-weight: 500; color: var(--text);
    }
    .amen-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

    /* ── REVIEWS ──────────────────────────────── */
    .reviews { background: var(--bg); }
    .rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

    .rev {
      background: var(--white); border-radius: var(--r-xl); padding: 26px;
      border: 1px solid rgba(180,154,115,.12); box-shadow: var(--sh-sm);
      transition: transform .3s, box-shadow .3s;
    }
    .rev:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
    .rev-stars { display: flex; gap: 2px; margin-bottom: 13px; }
    .star { color: #E0A23C; font-size: calc(14px + var(--fs-bump)); }
    .rev-text { font-size: calc(14px + var(--fs-bump)); line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 18px; }
    .rev-by { display: flex; align-items: center; gap: 10px; }
    .av {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Manrope', sans-serif; font-weight: 700;
      font-size: calc(12px + var(--fs-bump)); color: var(--white); flex-shrink: 0;
    }
    .av1{background:var(--gold)} .av2{background:var(--red)} .av3{background:var(--dark)}
    .rev-nm { font-size: calc(13px + var(--fs-bump)); font-weight: 700; color: var(--dark); }
    .rev-dt { font-size: calc(11px + var(--fs-bump)); color: var(--muted); }

    .rev-more {
      margin-top: 44px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    .rev-more .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      white-space: normal;
      text-align: center;
      line-height: 1.35;
      max-width: min(100%, 360px);
      justify-content: center;
    }
    .rev-more .btn-outline .ext-ico {
      flex-shrink: 0;
      opacity: .65;
    }

    /* ── BOOKING ──────────────────────────────── */
    .booking {
      background: var(--dark); padding: 90px 60px;
      text-align: center; position: relative; overflow: hidden;
      scroll-margin-top: calc(100px + env(safe-area-inset-top));
    }
    .booking::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(180,154,115,.1) 1.5px, transparent 1.5px);
      background-size: 28px 28px;
    }
    .booking .stitle { color: var(--white); position: relative; }
    .booking .ssub { color: rgba(255,255,255,.42); margin: 12px auto 32px; position: relative; max-width: 520px; }

    .bnote { margin-top: 20px; font-size: calc(13px + var(--fs-bump)); color: rgba(255,255,255,.25); position: relative; z-index: 1; }
    .bnote a { color: var(--gold-lt); text-decoration: none; }
    .bnote a:hover { color: var(--gold); }

    /* ── FOOTER ───────────────────────────────── */
    footer { background: #131110; color: rgba(255,255,255,.42); padding: 60px 60px 34px; }
    .fi {
      display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 52px;
      padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 26px;
    }
    .fb .logo-img { height: 84px; margin-bottom: 16px; }
    .fb-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: calc(18px + var(--fs-bump)); font-weight: 600; letter-spacing: .04em; margin-bottom: 12px; }
    .fb p { font-size: calc(13px + var(--fs-bump)); line-height: 1.7; }
    .fc h4 { font-family: 'Manrope', sans-serif; font-size: calc(11px + var(--fs-bump)); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
    .fc ul { list-style: none; }
    .fc li { margin-bottom: 8px; }
    .fc a { color: rgba(255,255,255,.42); text-decoration: none; font-size: calc(13px + var(--fs-bump)); transition: color .2s; }
    .fc a:hover { color: var(--gold); }
    .fbot { display: flex; justify-content: space-between; align-items: center; font-size: calc(12px + var(--fs-bump)); gap: 16px; flex-wrap: wrap; }
    .fbot a { color: var(--gold-lt); text-decoration: none; }
    .fbot a:hover { color: var(--gold); }

    /* ── REVEAL ANIM ──────────────────────────── */
    .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .rv.in { opacity: 1; transform: none; }
    .d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}

    /* ── ДИЗАЙН-ДЕТАЛИ ────────────────────────── */
    ::selection { background: var(--accent); color: var(--white); }
    @media (min-width: 961px) {
      ::-webkit-scrollbar { width: 12px; }
      ::-webkit-scrollbar-track { background: var(--bg2); }
      ::-webkit-scrollbar-thumb { background: #CBBBA0; border-radius: 8px; border: 3px solid var(--bg2); }
      ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
    }

    /* Появление хиро при загрузке */
    @keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
    .hero-eyebrow { animation: heroIn .8s .15s cubic-bezier(.22,.9,.3,1) both; }
    .hero-title   { animation: heroIn .9s .3s  cubic-bezier(.22,.9,.3,1) both; }
    .hero-sub     { animation: heroIn .9s .45s cubic-bezier(.22,.9,.3,1) both; }
    .hero-btns    { animation: heroIn .9s .6s  cubic-bezier(.22,.9,.3,1) both; }

    /* Номера карточек — как километровые отметки */
    .rooms-grid { counter-reset: room; }
    .room { counter-increment: room; }
    .room-img::before {
      content: "0" counter(room);
      position: absolute; right: 18px; bottom: 10px; z-index: 3;
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 54px; font-weight: 600; line-height: 1;
      color: rgba(255,255,255,.9);
      text-shadow: 0 2px 20px rgba(0,0,0,.45);
      pointer-events: none;
    }

    /* Большая кавычка в отзывах */
    .rev { position: relative; overflow: hidden; }
    .rev::before {
      content: '«'; position: absolute; top: -6px; right: 16px;
      font-family: 'Playfair Display', serif; font-size: 110px; line-height: 1;
      color: rgba(200,32,29,.1); pointer-events: none;
    }

    /* Бегущая строка — мотив дорожной разметки */
    .ticker {
      background: var(--dark); overflow: hidden; padding: 19px 0;
      border-top: 1px solid rgba(180,154,115,.18);
      border-bottom: 1px solid rgba(180,154,115,.18);
    }
    .ticker-track { display: flex; width: max-content; animation: tickerMove 36s linear infinite; }
    .tk-set { display: flex; align-items: center; gap: 38px; padding-right: 38px; flex-shrink: 0; }
    .tk-set span {
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: calc(17px + var(--fs-bump)); color: rgba(250,248,243,.85); white-space: nowrap;
    }
    .tk-set i { width: 24px; height: 3px; border-radius: 2px; background: var(--gold); opacity: .65; flex-shrink: 0; }
    @keyframes tickerMove { to { transform: translateX(-50%); } }

    /* Неоновая табличка в духе придорожного мотеля */
    .neon {
      display: inline-flex; align-items: center;
      padding: 11px 24px; margin-bottom: 28px;
      border: 1.5px solid rgba(255,118,112,.55); border-radius: 14px;
      font-size: calc(12px + var(--fs-bump)); font-weight: 800;
      letter-spacing: .24em; text-transform: uppercase;
      color: #FF9D98;
      text-shadow: 0 0 7px rgba(255,90,84,.9), 0 0 20px rgba(255,60,54,.45);
      box-shadow: 0 0 26px rgba(255,70,64,.16), inset 0 0 18px rgba(255,70,64,.1);
      animation: neonFlicker 7s linear infinite;
    }
    @keyframes neonFlicker {
      0%, 100% { opacity: 1; }
      3%   { opacity: .5; }
      4%   { opacity: 1; }
      6.5% { opacity: .75; }
      7.5% { opacity: 1; }
      46%  { opacity: 1; }
      47%  { opacity: .55; }
      48.5%{ opacity: 1; }
      74%  { opacity: 1; }
      75%  { opacity: .8; }
      76%  { opacity: 1; }
    }

    /* Водяной знак «784» в секции бронирования */
    .booking::after {
      content: '784';
      position: absolute; right: -24px; bottom: -70px; z-index: 0;
      font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic;
      font-size: clamp(190px, 26vw, 340px); line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(212,196,168,.13);
      pointer-events: none; user-select: none;
    }
    .booking > * { position: relative; z-index: 1; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .hero-eyebrow, .hero-title, .hero-sub, .hero-btns,
      .ticker-track, .neon, .hero-eyebrow i { animation: none; }
      .rv { transition: none; opacity: 1; transform: none; }
    }

    @media(min-width: 961px){
      .hdr-menu-btn,
      .hdr-backdrop,
      .hdr-panel { display: none !important; pointer-events: none !important; }
      html.menu-lock { overflow: auto; }
      html.menu-lock body { overflow: auto; }
    }

    @media(max-width: 960px){
      /* Нативный скролл — smooth на iOS/Android даёт рывки при инерции */
      html { scroll-behavior: auto; }
      /* Без reveal-анимаций при скролле — меньше перерисовок */
      .rv { transition: none; opacity: 1; transform: none; }
      /* Фиксированная шапка без blur — дешевле при скролле */
      header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(250,248,243,.97);
      }
      /* Мобилка: текст и видео — один экран; модуль ниже только после скролла */
      .hero-shell > .tl-wrapper {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
      }
      #block-search-main {
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
      }
      .hdr-backdrop { display: block; }
      .hdr-panel { display: block; }
      .hdr-menu-btn { display: inline-flex; }
      .hdr-book-desktop { display: none !important; }
      /* Плавающий виджет TravelLine «Узнать цены» (ключик в кружке) */
      [class*="x-tl-booking-widget"] { display: none !important; }
      .hdr-addr,
      .hdr-phone { display: none !important; }
      /* Фиксированная высота без svh/vh — адресная строка браузера не сдвигает контент */
      .hero {
        height: auto;
        min-height: 580px;
      }
      .hero-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        padding-top: 100px;
        padding-left: 22px;
        padding-right: 22px;
        padding-bottom: max(32px, calc(20px + env(safe-area-inset-bottom, 0px)));
        gap: 22px;
      }
      .hero-eyebrow {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,.14);
      }
      .hero-text { max-width: 100%; }
      .hero-eyebrow { margin-bottom: 16px; }
      .hero-title {
        font-size: clamp(calc(34px + var(--fs-bump)), 10.5vw, calc(52px + var(--fs-bump)));
        margin-bottom: 14px;
      }
      .hero-sub {
        max-width: 100%;
        line-height: 1.55;
        margin-bottom: 26px;
        color: rgba(255,255,255,.9);
      }
      .hero-btns {
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
      }
      .btn-white {
        flex: 1 1 100%;
        text-align: center;
        padding: 16px 24px;
      }
      .hero-call,
      .hero-maps {
        flex: 0 1 calc(50% - 6px);
        min-width: 0;
        justify-content: center;
        padding: 13px 12px;
        gap: 7px;
        font-size: calc(13px + var(--fs-bump));
        white-space: nowrap;
      }
      .hero-call svg,
      .hero-maps svg { flex-shrink: 0; }
      .hero-maps { display: inline-flex; }
      .deals { width: 100%; }
      .rooms-grid, .rev-grid { grid-template-columns: 1fr; }
      .room-slide-btn { display: none; }
      /* На тач-устройствах убираем залипающий :hover, из-за которого карточка дёргалась при скролле */
      .room-slider { touch-action: pan-y; }
      .room { transform: none !important; }
      .room:hover { box-shadow: var(--sh-sm); }
      .room:hover .room-slide.active { transform: none; }
      .rev:hover,
      .amen-card:hover,
      .price-card:hover { transform: none; box-shadow: var(--sh-sm); }
      .amen-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .amen-list { display: none; }
      .amen-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .amen-card {
        min-height: 0;
        height: 168px;
        background: var(--dark);
        border-color: rgba(180,154,115,.22);
        box-shadow: var(--sh-md);
      }
      .amen-card:hover { transform: none; }
      .amen-card:hover .amen-card-bg { transform: none; }
      .amen-card-bg,
      .amen-card-shade { display: block; }
      .amen-card-shade {
        background: linear-gradient(
          to top,
          rgba(14,10,7,.94) 0%,
          rgba(14,10,7,.6) 48%,
          rgba(14,10,7,.12) 100%
        );
      }
      .amen-card-accent { display: none; }
      .amen-card-body {
        min-height: 0;
        height: 100%;
        padding: 16px 18px 18px;
        flex-direction: column;
        justify-content: flex-end;
      }
      .amen-card-inner {
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 0;
      }
      .amen-ico-wrap {
        position: absolute;
        top: 14px; left: 16px;
        width: 46px; height: 46px;
        margin-bottom: 0;
        background: rgba(255,255,255,.16);
        border-color: rgba(255,255,255,.26);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 14px rgba(0,0,0,.22);
      }
      .amen-ico { color: var(--white); font-size: calc(22px + var(--fs-bump)); }
      .amen-card-main { flex: none; min-width: 0; gap: 3px; }
      .amen-n { font-size: calc(17px + var(--fs-bump)); color: var(--white); }
      .amen-s {
        font-size: calc(12px + var(--fs-bump));
        color: rgba(255,255,255,.82);
        line-height: 1.45;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
      }
      .amen-tag {
        position: absolute;
        top: 18px; right: 16px;
        align-self: auto;
        margin-top: 0;
        font-size: calc(9px + var(--fs-bump));
        letter-spacing: .08em;
        backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
      }
      .amen-tag.free { background: rgba(120,170,90,.4); color: #e6f7d6; border-color: rgba(180,230,150,.4); }
      .amen-tag.book { background: rgba(180,154,115,.46); color: #fbf0df; border-color: rgba(220,200,170,.42); }
      a.amen-menu-btn,
      button.amen-menu-btn {
        position: absolute;
        top: 14px; right: 16px;
        align-self: auto;
        margin-top: 0;
        font-size: calc(9px + var(--fs-bump));
        padding: 9px 15px;
        white-space: nowrap;
        box-shadow: 0 4px 14px rgba(0,0,0,.28);
      }
      footer {
        padding: 48px 24px calc(28px + env(safe-area-inset-bottom, 0px));
      }
      .fi {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding-bottom: 32px;
        margin-bottom: 22px;
      }
      .fb {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 24px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255,255,255,.07);
      }
      .fb .logo-img {
        height: 68px;
        margin-left: auto;
        margin-right: auto;
      }
      .fb p { max-width: 320px; margin-left: auto; margin-right: auto; }
      .fc h4 { margin-bottom: 12px; }
      .fc li { margin-bottom: 6px; }
      .fc a {
        display: inline-block;
        padding: 3px 0;
        line-height: 1.45;
      }
      .fi .fc:last-child {
        grid-column: 1 / -1;
        padding-top: 4px;
        border-top: 1px solid rgba(255,255,255,.07);
      }
      .fbot {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        line-height: 1.5;
      }
      .stats {
        gap: 28px 40px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 28px 20px;
        scroll-margin-top: calc(80px + env(safe-area-inset-top));
      }
      nav { display: none; }
      section { padding: 60px 24px; }
      .booking { padding: 60px 24px; }
      .room-img::before { font-size: 42px; right: 14px; bottom: 8px; }
      .tk-set { gap: 26px; padding-right: 26px; }
      .tk-set span { font-size: calc(15px + var(--fs-bump)); }
      .neon { letter-spacing: .14em; padding: 10px 18px; font-size: calc(11px + var(--fs-bump)); }
      .booking::after { font-size: 160px; right: -16px; bottom: -38px; }
    }

    @media(max-width: 480px) {
      .fi {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .fi .fc:last-child {
        grid-column: auto;
        border-top: 1px solid rgba(255,255,255,.07);
        padding-top: 20px;
        margin-top: 2px;
      }
    }

    /* Узкие телефоны (iPhone SE / mini, компактные Android) */
    @media(max-width: 380px) {
      .hero-inner { gap: 18px; padding-left: 18px; padding-right: 18px; }
      .hero-eyebrow {
        font-size: calc(9px + var(--fs-bump));
        letter-spacing: .1em;
        padding: 6px 12px;
        margin-bottom: 14px;
      }
      .hero-title { font-size: clamp(calc(30px + var(--fs-bump)), 9.2vw, calc(40px + var(--fs-bump))); }
      .hero-sub { font-size: calc(14px + var(--fs-bump)); }
      .btn-white { font-size: calc(12px + var(--fs-bump)); padding: 14px 18px; letter-spacing: .04em; }
      .hero-btns { gap: 10px; }
      .hero-call,
      .hero-maps {
        flex: 0 1 calc(50% - 5px);
        font-size: calc(11px + var(--fs-bump));
        letter-spacing: .01em;
        padding: 12px 8px;
        gap: 5px;
      }
      .hero-call svg,
      .hero-maps svg { width: 14px; height: 14px; }
    }

/* ── ВНУТРЕННИЕ СТРАНИЦЫ ──────────────────── */
nav a.active { background: var(--bg2); color: var(--accent-dk); }

nav a { white-space: nowrap; }

@media (min-width: 961px) and (max-width: 1279px) {
  .hdr-addr { display: none; }
}

/* Компактный хиро подстраниц.
   Верхний отступ — чтобы контент не уезжал под плавающую шапку,
   когда текста больше, чем min-height. */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 620px;
  min-height: clamp(620px, 78vh, 820px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--dark);
  padding: calc(140px + env(safe-area-inset-top, 0px)) 60px 72px;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,14,10,.88) 0%, rgba(18,14,10,.42) 48%, rgba(18,14,10,.18) 100%),
    linear-gradient(to right, rgba(18,14,10,.3) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero .hero-title { font-size: clamp(calc(38px + var(--fs-bump)), 5vw, calc(64px + var(--fs-bump))); }
.page-hero .hero-sub { margin-bottom: 28px; }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: calc(12px + var(--fs-bump)); font-weight: 600;
  color: rgba(255,255,255,.55);
}
.crumbs a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--gold-lt); }
.crumbs i { font-style: normal; color: rgba(255,255,255,.35); }

/* Инфо-полоса (часы, телефон и т.п.) */
.info-strip {
  background: var(--dark);
  padding: 22px 60px;
  display: flex; justify-content: center; align-items: center;
  gap: 18px 64px; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 13px; }
.info-item .bi { font-size: calc(20px + var(--fs-bump)); color: var(--gold); }
.info-k { font-size: calc(10px + var(--fs-bump)); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.info-v { font-size: calc(15px + var(--fs-bump)); font-weight: 700; color: var(--white); }
.info-v a { color: inherit; text-decoration: none; }
.info-v a:hover { color: var(--gold-lt); }

/* Меню кафе — «доска дайнера» */
.board { background: var(--dark); position: relative; overflow: hidden; }
.board::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(180,154,115,.09) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.board .stitle { color: var(--white); }
.board .ssub { color: rgba(255,255,255,.45); }
.board > * { position: relative; z-index: 1; }

/* Карточки услуг / тарифов */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white); border-radius: var(--r-xl); padding: 30px 28px;
  border: 1px solid rgba(180,154,115,.14); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.price-card.featured { border-color: rgba(200,32,29,.35); box-shadow: var(--sh-md); }
.price-chip {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: var(--white);
  font-size: calc(9px + var(--fs-bump)); font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.price-ico {
  width: 52px; height: 52px; border-radius: 15px; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: calc(23px + var(--fs-bump)); color: var(--accent); margin-bottom: 18px;
}
.price-name { font-family: 'Playfair Display', serif; font-size: calc(20px + var(--fs-bump)); font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.price-desc { font-size: calc(13px + var(--fs-bump)); color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.price-list { list-style: none; margin: 0 0 22px; }
.price-list li {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  font-size: calc(13px + var(--fs-bump)); font-weight: 500; color: var(--text);
}
.price-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.price-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--bg2); }
.price-amt { font-family: 'Playfair Display', serif; font-size: calc(21px + var(--fs-bump)); font-weight: 600; color: var(--dark); }
.price-amt .per { font-family: 'Manrope', sans-serif; font-size: calc(12px + var(--fs-bump)); color: var(--muted); font-weight: 600; }

/* Маршрутная карточка (горнолыжная страница) */
.route-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(180,154,115,.18); box-shadow: var(--sh-md);
  padding: 34px; display: flex; flex-direction: column; gap: 0;
}
.route-row { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.route-row:last-child { padding-bottom: 0; }
.route-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(200,32,29,.14);
  position: relative; z-index: 1;
}
.route-row + .route-row .route-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(180,154,115,.18); }
.route-row:not(:last-child)::before {
  content: ''; position: absolute; left: 6px; top: 22px; bottom: 2px;
  border-left: 2px dashed rgba(180,154,115,.5);
}
.route-k { font-size: calc(10px + var(--fs-bump)); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.route-v { font-family: 'Playfair Display', serif; font-size: calc(19px + var(--fs-bump)); font-weight: 600; color: var(--dark); line-height: 1.3; }
.route-s { font-size: calc(13px + var(--fs-bump)); color: var(--muted); margin-top: 3px; }
.route-meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.route-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg2); border-radius: 30px; padding: 8px 16px;
  font-size: calc(12px + var(--fs-bump)); font-weight: 700; color: var(--text);
}
.route-pill .bi { color: var(--accent); }

/* Снег на зимней странице */
.snow { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.snow i {
  position: absolute; top: -12px; border-radius: 50%;
  background: rgba(255,255,255,.75); font-style: normal;
  animation: snowFall linear infinite;
}
@keyframes snowFall {
  to { transform: translateY(110vh) translateX(40px); }
}

@media (max-width: 960px) {
  .shead { flex-direction: column; align-items: stretch; gap: 22px; }
  .shead .btn-outline { align-self: stretch; text-align: center; justify-content: center; }
  .page-hero {
    min-height: 520px;
    padding: calc(118px + env(safe-area-inset-top, 0px)) 22px 48px;
  }
  .info-strip { padding: 22px 24px; gap: 16px 28px; justify-content: flex-start; }
  .price-grid { grid-template-columns: 1fr; }
  .route-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .snow i { animation: none; display: none; }
}