    /* ═══════════════ ТОКЕНЫ ═══════════════ */
    :root {
      --bg:        #100B12;    /* основной — тёмный, легчайший сливовый оттенок */
      --bg-2:      #1A121B;    /* для cards/surfaces */
      --bg-deep:   #0A070C;    /* самая тёмная точка градиента */
      --gold:      #C79A52;
      --gold-dim:  rgba(199,154,82,0.18);
      --gold-glow: rgba(199,154,82,0.32);
      --coral:     #E07840;
      --pink:      #D02878;
      --text:      #F2E8D5;
      --muted:     rgba(242,232,213,0.62);
      --border:    rgba(199,154,82,0.20);
      --radius:    14px;
      --radius-btn: 100px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; height: auto; }
    html { scroll-behavior: smooth; color-scheme: dark; }
    /* Перекраска нативных иконок (date picker calendar) под темную тему */
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
      filter: invert(0.7) sepia(0.4) saturate(2.5) hue-rotate(0deg);
      cursor: pointer; opacity: 0.85;
    }
    input[type="date"]::-webkit-calendar-picker-indicator:hover,
    input[type="time"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
    section[id], div[id] { scroll-margin-top: 80px; }
    body {
      background:
        radial-gradient(1200px circle at 75% 0%, rgba(199,154,82,0.08), transparent 60%),
        radial-gradient(900px circle at 15% 35%, rgba(208,40,120,0.05), transparent 55%),
        linear-gradient(180deg, #1A121B 0%, #100B12 40%, #0A070C 100%);
      background-attachment: fixed;
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    /* iOS/тач: fixed-фон заставляет WebKit растеризовать градиент размером
       во всю высоту страницы — на айфонах это чёрный экран / краш отрисовки.
       На тач-устройствах фон просто скроллится вместе со страницей. */
    @media (hover: none) and (pointer: coarse) {
      body { background-attachment: scroll; }
    }
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

    /* ═══════════════ ХЕДЕР ═══════════════ */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 14px 0;
      transition: background 0.25s, padding 0.25s, backdrop-filter 0.25s, border-color 0.25s;
      border-bottom: 1px solid transparent;
    }
    .site-header.is-scrolled {
      background: rgba(16,11,18,0.92);
      backdrop-filter: blur(14px);
      padding: 10px 0;
      border-bottom-color: var(--border);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .logo { display: flex; flex-direction: column; line-height: 1; }
    .logo-main { font-family: 'Geologica', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: 0.04em; color: var(--text); }
    .logo-main em { font-style: normal; color: var(--gold); }
    .logo-sub { font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
    .nav-links { list-style: none; display: flex; gap: 26px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
    .nav-burger {
      display: none; flex-direction: column; justify-content: center; align-items: center;
      width: 44px; height: 44px; background: transparent; border: none; cursor: pointer;
      color: var(--text); gap: 5px; padding: 0;
    }
    .nav-burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

    /* ═══════════════ КНОПКИ ═══════════════ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 26px; border-radius: var(--radius-btn);
      font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 0.02em; cursor: pointer; border: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-gold { background: var(--gold); color: #1a1014; }
    .btn-gold:hover, .btn-gold:focus-visible { background: #d4a85e; transform: translateY(-1px); box-shadow: 0 8px 24px var(--gold-glow); }
    .btn-outline {
      background: transparent; color: var(--text);
      border: 1px solid rgba(208,40,120,0.35);
    }
    .btn-outline:hover, .btn-outline:focus-visible { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

    /* ═══════════════ HERO ═══════════════ */
    .hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: flex-end; padding: 100px 0 clamp(60px, 8vh, 100px); overflow: hidden; }
    .hero-photo {
      position: absolute; inset: 0;
      background-image: url('/images/hero.webp');
      background-size: cover; background-position: center 38%;
      filter: brightness(0.40) saturate(0.85);
    }
    .hero-grad {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(16,11,18,0.30) 0%, rgba(16,11,18,0.10) 30%, rgba(16,11,18,0.60) 70%, rgba(16,11,18,0.96) 100%);
    }
    .hero-inner { position: relative; z-index: 2; width: 100%; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 16px; border: 1px solid rgba(199,154,82,0.4); border-radius: 100px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 22px;
    }
    .hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(199,154,82,0.18); }
    .hero-title {
      font-family: 'Geologica', sans-serif; font-weight: 900;
      font-size: clamp(34px, 6.5vw, 78px); line-height: 1.02; letter-spacing: -0.015em;
      margin-bottom: 18px; max-width: 920px;
    }
    .hero-title em { font-style: normal; color: var(--gold); }
    .hero-sub {
      font-size: clamp(16px, 2vw, 19px); color: rgba(242,232,213,0.78);
      max-width: 680px; margin-bottom: 30px; line-height: 1.55;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

    .hero-trust {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 12px 20px 12px 14px;
      background: linear-gradient(135deg, rgba(199,154,82,0.16) 0%, rgba(208,40,120,0.08) 100%);
      border: 1px solid rgba(199,154,82,0.45); border-radius: 12px;
      backdrop-filter: blur(8px); max-width: 420px;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .hero-trust:hover { border-color: var(--gold); transform: translateY(-1px); box-shadow: 0 8px 30px var(--gold-glow); }
    .hero-trust-icon {
      width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
      background: var(--gold-dim); border: 1px solid rgba(199,154,82,0.4); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
    }
    .hero-trust-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
    .hero-trust-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
    .hero-trust-main { font-size: 13px; color: rgba(242,232,213,0.92); }
    .hero-trust-main strong { font-family: 'Geologica', sans-serif; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }

    /* ═══════════════ ОБЩЕЕ ДЛЯ СЕКЦИЙ ═══════════════ */
    .section { padding: clamp(70px, 10vw, 120px) 0; border-top: 1px solid var(--border); }
    .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-title {
      font-family: 'Geologica', sans-serif; font-weight: 800;
      font-size: clamp(28px, 4.4vw, 44px); line-height: 1.1; letter-spacing: -0.01em;
      margin-bottom: 18px; max-width: 880px;
    }
    .section-title em, .modal-title em { font-style: normal; color: var(--gold); }
    .section-lead {
      font-size: clamp(15px, 1.7vw, 17px); color: rgba(242,232,213,0.7);
      line-height: 1.65; max-width: 720px; margin-bottom: 50px;
    }

    /* ═══════════════ АФИША — горизонтальный скролл ═══════════════ */
    .events-scroller {
      position: relative; margin: 0 -20px;
      mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 32px), transparent 100%);
    }
    .events-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 300px;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      padding: 4px 20px 18px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(199,154,82,0.4) transparent;
    }
    .events-grid::-webkit-scrollbar { height: 6px; }
    .events-grid::-webkit-scrollbar-track { background: transparent; }
    .events-grid::-webkit-scrollbar-thumb { background: rgba(199,154,82,0.4); border-radius: 4px; }
    .events-grid::-webkit-scrollbar-thumb:hover { background: var(--gold); }
    .event-card { scroll-snap-align: start; min-height: 280px; }
    @media (max-width: 480px) {
      .events-grid { grid-auto-columns: 80vw; }
    }
    /* Подсказка свайпа + точки-индикаторы (видны на мобиле, если карточек > 1) */
    .events-hint { display: none; align-items: center; justify-content: center; gap: 7px;
      margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--gold);
      letter-spacing: .02em; transition: opacity .45s ease; }
    .events-hint-arrow { display: inline-block; animation: events-nudge 1.3s ease-in-out infinite; }
    @keyframes events-nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
    .events-hint.is-hidden { opacity: 0; pointer-events: none; }
    .events-dots { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
    .events-dots button { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
      background: rgba(199,154,82,.32); cursor: pointer; transition: background .2s, transform .2s; }
    .events-dots button.active { background: var(--gold); transform: scale(1.35); }
    @media (max-width: 700px) {
      .events-hint { display: flex; }
      .events-dots { display: flex; }
    }
    /* ═══════════════ ПРОШЕДШИЕ — «что уже было» ═══════════════ */
    .past-events { margin-top: 64px; }
    .past-events-head { text-align: center; margin-bottom: 28px; }
    .past-events-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(199,154,82,0.7); }
    .past-events-title { font-family: var(--font-display, 'Geologica', sans-serif); font-size: clamp(20px, 3vw, 30px); color: var(--text, #F2E8D5); margin: 8px 0 0; }
    .past-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
    .past-card { border: 1px solid var(--border, rgba(199,154,82,0.2)); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; }
    .past-cover { aspect-ratio: 16/10; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(199,154,82,0.14), rgba(199,154,82,0.03)); display: flex; align-items: center; justify-content: center; }
    .past-cover img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12) brightness(0.92); display: block; }
    .past-cover img.past-abstract { filter: none; }
    .past-cover-note { font-size: 34px; color: rgba(199,154,82,0.35); }
    .past-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(8,4,0,0.6); color: var(--gold, #C79A52); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(199,154,82,0.3); }
    .past-body { padding: 12px 15px 15px; }
    .past-when { font-size: 12px; font-weight: 600; color: rgba(199,154,82,0.85); margin-bottom: 5px; }
    .past-title { font-size: 15px; font-weight: 700; color: var(--text, #F2E8D5); line-height: 1.25; }
    .past-venue { font-size: 12px; color: rgba(242,232,213,0.4); margin-top: 6px; }
    /* Состояния афиши: загрузка / пусто */
    .events-loading, .events-empty {
      grid-column: 1 / -1;
      padding: 32px 28px;
      background: rgba(255,255,255,0.025);
      border: 1px dashed var(--border);
      border-radius: var(--radius);
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .events-empty strong { color: var(--text); display: block; margin-bottom: 6px; font-family: 'Geologica', sans-serif; font-size: 16px; }
    .events-empty a { color: var(--gold); }
    .events-empty a:hover { text-decoration: underline; }
    .event-price { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 0.04em; }
    .event-price-free { color: var(--muted); font-weight: 600; }
    .event-card {
      display: flex; flex-direction: column;
      background: rgba(255,255,255,0.035); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px 22px 22px;
      transition: border-color 0.25s, transform 0.25s, background 0.25s;
      overflow: hidden;
    }
    .event-cover { margin: -24px -22px 18px; aspect-ratio: 16 / 10; overflow: hidden; background: rgba(199,154,82,0.07); }
    .event-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .event-card.no-cover .event-cover { display: none; }
    .event-card:hover { border-color: rgba(199,154,82,0.45); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
    .event-date {
      display: flex; align-items: baseline; gap: 10px;
      font-family: 'Geologica', sans-serif; color: var(--gold);
      margin-bottom: 14px; padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .event-date-day { font-size: 32px; font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
    .event-date-month { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
    .event-date-time { margin-left: auto; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--text); }
    .event-format { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
    .event-title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.25; margin-bottom: 8px; }
    .event-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; flex: 1; }
    .event-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .event-place { font-size: 12px; color: var(--muted); }
    .event-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: var(--gold);
      letter-spacing: 0.02em;
    }
    .event-cta:hover { text-decoration: underline; }

    /* ═══════════════ О ПЛОЩАДКЕ — двухколоночно, выравнивание по центру ═══════════════ */
    .about-grid {
      display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 64px);
      align-items: center;
    }
    .about-text { display: flex; flex-direction: column; gap: 18px; font-size: clamp(15px, 1.7vw, 17px); color: rgba(242,232,213,0.82); line-height: 1.7; }
    .about-text p:first-child { font-size: clamp(17px, 1.9vw, 19px); color: var(--text); }
    .about-text strong { color: var(--text); font-weight: 600; }
    .about-photo {
      position: relative; border-radius: var(--radius); overflow: hidden;
      aspect-ratio: 3 / 4; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      border: 1px solid var(--border); margin: 0;
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.92) saturate(0.95); }
    .about-photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 32px 20px 18px; color: var(--text);
      background: linear-gradient(to top, rgba(16,11,18,0.92), transparent);
      font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
      font-family: 'Geologica', sans-serif; font-weight: 700; color: var(--gold);
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-photo { max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; }
    }

    /* ═══════════════ ФОРМАТЫ ═══════════════ */
    .formats-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 820px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .formats-grid { grid-template-columns: 1fr; } }
    .format-tile {
      display: flex; align-items: center; gap: 14px;
      padding: 22px 22px;
      background: rgba(255,255,255,0.035); border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: border-color 0.25s, transform 0.25s, background 0.25s;
    }
    .format-tile:hover, .format-tile:focus-visible {
      border-color: rgba(199,154,82,0.45); background: rgba(255,255,255,0.06); transform: translateY(-2px);
    }
    .format-tile-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: var(--gold-dim); border: 1px solid rgba(199,154,82,0.3); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
    }
    .format-tile-text { display: flex; flex-direction: column; gap: 2px; }
    .format-tile-name { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.01em; color: var(--text); line-height: 1.2; }
    .format-tile-arrow { margin-left: auto; color: var(--muted); transition: transform 0.25s, color 0.25s; flex-shrink: 0; }
    .format-tile:hover .format-tile-arrow { transform: translateX(3px); color: var(--gold); }

    /* ═══════════════ АРЕНДА ═══════════════ */
    .rent-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px; margin-bottom: 36px;
    }
    .rent-card {
      display: flex; flex-direction: column;
      background: rgba(255,255,255,0.035); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 26px;
      position: relative; transition: border-color 0.25s, background 0.25s;
    }
    .rent-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(199,154,82,0.4); }
    .rent-card.is-featured {
      background: linear-gradient(160deg, rgba(199,154,82,0.10) 0%, rgba(208,40,120,0.06) 50%, rgba(255,255,255,0.04) 100%);
      border-color: rgba(199,154,82,0.4);
    }
    .rent-card-badge {
      position: absolute; top: -10px; left: 22px;
      padding: 3px 12px; background: var(--gold); color: #1a1014;
      font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 800;
      letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px;
    }
    .rent-name { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 6px; letter-spacing: 0.01em; }
    .rent-tagline { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 22px; }
    .rent-price-block { margin-bottom: 18px; }
    .rent-price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
    .rent-price-row:last-child { border-bottom: none; }
    .rent-price-label { color: var(--muted); line-height: 1.4; }
    .rent-price-label small { display: block; font-size: 11px; opacity: 0.7; margin-top: 2px; }
    .rent-price-val { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 700; color: var(--gold); white-space: nowrap; }
    .rent-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
    .rent-includes li { font-size: 13px; color: rgba(242,232,213,0.82); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
    .rent-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
    .rent-note { font-size: 12px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--border); line-height: 1.5; margin-top: auto; margin-bottom: 18px; }
    .rent-cta { width: 100%; margin-top: auto; }
    .rent-final-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 14px; }
    .rent-final-cta-note { font-size: 13px; color: var(--muted); }

    /* ═══════════════ ОСНАЩЕНИЕ — одна колонка, без фото ═══════════════ */
    /* Оснащение — 2-колоночный список параметров (компактнее таблицы) */
    .equip-caption {
      color: var(--muted); font-size: 13px; margin-bottom: 18px;
      letter-spacing: 0.04em;
    }
    .equip-specs {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 48px;
      max-width: 980px;
      margin: 0;
    }
    .equip-spec {
      display: grid;
      grid-template-columns: minmax(110px, 38%) 1fr;
      align-items: baseline; gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .equip-spec dt {
      color: var(--muted); font-weight: 500;
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    }
    .equip-spec dd {
      color: var(--text); font-size: 15px; line-height: 1.45;
      margin: 0;
    }
    @media (max-width: 760px) {
      .equip-specs { grid-template-columns: 1fr; gap: 0; }
    }
    .equip-zamuruev {
      display: block; position: relative;
      margin-top: 28px; padding: 14px 20px 14px 38px;
      background: var(--gold-dim); border: 1px solid rgba(199,154,82,0.35); border-radius: 12px;
      font-size: 14px; line-height: 1.6; color: rgba(242,232,213,0.92); max-width: 760px;
    }
    .equip-zamuruev::before {
      content: ''; position: absolute; left: 16px; top: 22px;
      width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
      box-shadow: 0 0 0 4px rgba(199,154,82,0.18);
    }
    .equip-zamuruev strong { color: var(--text); font-family: 'Geologica', sans-serif; font-weight: 700; }
    .equip-zamuruev a { color: var(--gold); }
    .equip-zamuruev a:hover { text-decoration: underline; }

    /* ═══════════════ ГАЛЕРЕЯ — masonry с natural aspect ═══════════════ */
    .gallery-grid {
      column-count: 3; column-gap: 14px;
    }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: var(--radius);
      background: var(--bg-2); margin: 0 0 14px;
      break-inside: avoid; -webkit-column-break-inside: avoid;
      display: block;
    }
    .gallery-item img {
      width: 100%; height: auto; display: block;
      transition: transform 0.5s ease, filter 0.4s ease;
      filter: brightness(0.92);
    }
    .gallery-item:hover img { transform: scale(1.03); filter: brightness(1); }
    @media (max-width: 820px) { .gallery-grid { column-count: 2; } }
    @media (max-width: 480px) { .gallery-grid { column-count: 1; } }

    /* ═══════════════ КОНТАКТЫ ═══════════════ */
    .contacts-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 60px); align-items: stretch;
    }
    @media (max-width: 820px) { .contacts-grid { grid-template-columns: 1fr; } }
    .contacts-info { display: flex; flex-direction: column; gap: 18px; }
    .contacts-row {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 0; border-bottom: 1px solid var(--border);
    }
    .contacts-row:first-child { padding-top: 0; }
    .contacts-row:last-child  { border-bottom: none; }
    .contacts-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: var(--gold-dim); border: 1px solid rgba(199,154,82,0.3);
      color: var(--gold); display: flex; align-items: center; justify-content: center;
    }
    .contacts-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .contacts-val { font-size: 16px; line-height: 1.45; color: var(--text); font-style: normal; }
    .contacts-val a { color: var(--text); }
    .contacts-val a:hover, .contacts-val a:focus-visible { color: var(--gold); }
    .contacts-val small { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 400; }
    .contacts-map {
      overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border);
      background: var(--bg-2); min-height: 360px; display: flex;
    }
    .contacts-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

    /* ═══════════════ FAQ ═══════════════ */
    .faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }
    .faq-item {
      background: rgba(255,255,255,0.035); border: 1px solid var(--border); border-radius: var(--radius);
      transition: border-color 0.25s, background 0.25s;
    }
    .faq-item[open] { border-color: rgba(199,154,82,0.45); background: rgba(255,255,255,0.06); }
    .faq-item summary {
      list-style: none; cursor: pointer;
      padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
      font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 16px; color: var(--text);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+'; flex-shrink: 0;
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--gold-dim); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 400; line-height: 1;
      transition: transform 0.3s ease, background 0.25s;
    }
    .faq-item[open] summary::after { content: '−'; background: var(--gold); color: #1a1014; }
    .faq-answer {
      padding: 0 22px 22px;
      color: rgba(242,232,213,0.85); font-size: 15px; line-height: 1.65;
    }
    .faq-answer a { color: var(--gold); }
    .faq-answer a:hover { text-decoration: underline; }

    /* ═══════════════ ПОЛОСЫ-РАЗДЕЛИТЕЛИ ═══════════════ */
    .stripe {
      position: relative; width: 100%; overflow: hidden;
      aspect-ratio: 21 / 9;
      max-height: 380px;
    }
    .stripe-tall { aspect-ratio: 16 / 9; max-height: 540px; }
    .stripe img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.65) saturate(0.85); }
    .stripe-grad {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(16,11,18,0.45) 0%, rgba(16,11,18,0) 30%, rgba(16,11,18,0) 70%, rgba(16,11,18,0.45) 100%);
    }
    .stripe-caption {
      position: absolute; left: 50%; bottom: clamp(24px, 4vw, 48px); transform: translateX(-50%);
      max-width: 720px; text-align: center; padding: 0 24px;
      font-family: 'Geologica', sans-serif; font-weight: 700;
      font-size: clamp(18px, 2.4vw, 26px); line-height: 1.3;
      color: var(--text); text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
    .stripe-caption em { font-style: normal; color: var(--gold); }

    /* ═══════════════ CTA-БАННЕР перед футером ═══════════════ */
    .cta-banner {
      position: relative; width: 100%; overflow: hidden;
      min-height: clamp(360px, 50vh, 540px);
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: clamp(60px, 8vw, 100px) 24px;
    }
    .cta-banner-bg {
      position: absolute; inset: 0;
      background-image: url('/images/sections/cta-banner.webp');
      background-size: cover; background-position: center 40%;
      filter: brightness(0.40) saturate(0.85);
    }
    .cta-banner-grad {
      position: absolute; inset: 0;
      background:
        radial-gradient(900px circle at 50% 50%, rgba(199,154,82,0.18), transparent 65%),
        linear-gradient(180deg, rgba(16,11,18,0.4) 0%, rgba(16,11,18,0.85) 100%);
    }
    .cta-banner-inner { position: relative; z-index: 2; max-width: 720px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
    .cta-banner-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); padding: 8px 18px; border: 1px solid rgba(199,154,82,0.45); border-radius: 100px;
      background: rgba(199,154,82,0.08); backdrop-filter: blur(4px);
    }
    .cta-banner-title {
      font-family: 'Geologica', sans-serif; font-weight: 900;
      font-size: clamp(28px, 4.5vw, 46px); line-height: 1.1; letter-spacing: -0.01em;
    }
    .cta-banner-title em { font-style: normal; color: var(--gold); }
    .cta-banner-sub { font-size: clamp(15px, 1.9vw, 18px); color: rgba(242,232,213,0.82); line-height: 1.55; }
    .cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

    /* ═══════════════ AI-ПОМОЩНИК ═══════════════ */
    .ai-fab {
      position: fixed; bottom: 24px; right: 24px; z-index: 90;
      display: inline-flex; align-items: center; gap: 10px;
      padding: 13px 20px 13px 14px;
      background: linear-gradient(135deg, var(--gold) 0%, #d4a85e 100%);
      color: #1a1014;
      border: none; border-radius: 100px;
      font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 0.02em; cursor: pointer;
      box-shadow: 0 12px 30px rgba(199,154,82,0.4), 0 0 0 4px rgba(199,154,82,0.10);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .ai-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(199,154,82,0.5), 0 0 0 6px rgba(199,154,82,0.14); }
    .ai-fab svg { flex-shrink: 0; }
    .ai-fab-dot {
      position: absolute; top: 10px; right: 14px;
      width: 8px; height: 8px; border-radius: 50%;
      background: #4caf7a; border: 2px solid #1a1014;
    }
    @media (max-width: 520px) {
      .ai-fab { bottom: 16px; right: 16px; padding: 11px 16px 11px 12px; font-size: 13px; }
      .ai-fab-label { display: none; }
      .ai-fab { padding: 12px; width: 56px; height: 56px; justify-content: center; }
    }

    .ai-modal {
      position: fixed; inset: 0; z-index: 150;
      display: none; align-items: flex-end; justify-content: flex-end;
      padding: 20px;
      animation: ai-fade 0.18s ease-out;
    }
    .ai-modal.is-open { display: flex; }
    @keyframes ai-fade { from { opacity: 0 } to { opacity: 1 } }
    .ai-modal::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(8,5,11,0.55); backdrop-filter: blur(4px);
    }
    .ai-window {
      position: relative; z-index: 2;
      width: 420px; max-width: 100%; height: min(640px, calc(100vh - 40px));
      background: linear-gradient(180deg, #1A121B, #100B12);
      border: 1px solid rgba(199,154,82,0.4); border-radius: 18px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      display: flex; flex-direction: column; overflow: hidden;
      animation: ai-slide 0.22s ease-out;
    }
    @keyframes ai-slide { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
    .ai-header {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 20px;
      background: linear-gradient(180deg, rgba(199,154,82,0.10), transparent);
      border-bottom: 1px solid var(--border);
    }
    .ai-header-avatar {
      width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
      color: #1a1014;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Geologica', sans-serif; font-weight: 900; font-size: 16px;
    }
    .ai-header-text { flex: 1; line-height: 1.2; }
    .ai-header-title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
    .ai-header-sub { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
    .ai-header-sub::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: #4caf7a; box-shadow: 0 0 0 2px rgba(76,175,122,0.25); }
    .ai-header-sub.is-saved::before { background: var(--gold); box-shadow: 0 0 0 2px rgba(199,154,82,0.25); }
    .ai-profile-btn {
      width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
      background: transparent; color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .ai-profile-btn:hover, .ai-profile-btn.is-active { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }
    .ai-profile-panel {
      padding: 14px 18px; border-bottom: 1px solid var(--border);
      background: rgba(199,154,82,0.06);
      display: flex; flex-direction: column; gap: 8px;
    }
    /* Атрибут hidden должен перебивать display:flex выше */
    .ai-profile-panel[hidden] { display: none; }
    .ai-profile-title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); }
    .ai-profile-hint { font-size: 11px; color: var(--muted); line-height: 1.4; }
    .ai-profile-input {
      width: 100%; padding: 9px 12px;
      background: rgba(0,0,0,0.30); border: 1px solid var(--border); border-radius: 9px;
      color: var(--text); font-family: 'Nunito', sans-serif; font-size: 14px;
    }
    .ai-profile-input:focus { outline: none; border-color: var(--gold); }
    .ai-profile-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 11px; color: var(--muted); line-height: 1.4; cursor: pointer; }
    .ai-profile-consent input { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
    .ai-profile-consent a { color: var(--gold); }
    .ai-profile-actions { display: flex; gap: 8px; margin-top: 2px; }
    .ai-profile-save {
      flex: 1; padding: 9px; border: none; border-radius: 9px;
      background: var(--gold); color: #1a1014; font-family: 'Nunito', sans-serif;
      font-weight: 700; font-size: 13px; cursor: pointer; transition: background 0.18s;
    }
    .ai-profile-save:hover { background: #d4a85e; }
    .ai-profile-clear {
      padding: 9px 14px; border: 1px solid var(--border); border-radius: 9px;
      background: transparent; color: var(--muted); font-family: 'Nunito', sans-serif;
      font-size: 13px; cursor: pointer; transition: color 0.18s, border-color 0.18s;
    }
    .ai-profile-clear:hover { color: #ffb29a; border-color: rgba(232,85,48,0.4); }
    .ai-close {
      width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
      background: transparent; color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .ai-close:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }

    .ai-msgs {
      flex: 1; overflow-y: auto;
      padding: 16px 20px;
      display: flex; flex-direction: column; gap: 12px;
      scrollbar-width: thin; scrollbar-color: rgba(199,154,82,0.3) transparent;
    }
    .ai-msgs::-webkit-scrollbar { width: 6px; }
    .ai-msgs::-webkit-scrollbar-thumb { background: rgba(199,154,82,0.3); border-radius: 4px; }
    .ai-msg {
      max-width: 88%; padding: 10px 14px;
      border-radius: 14px;
      font-size: 14px; line-height: 1.45;
      word-wrap: break-word; white-space: pre-wrap;
    }
    .ai-msg.is-user {
      align-self: flex-end;
      background: var(--gold); color: #1a1014;
      border-bottom-right-radius: 4px;
    }
    .ai-msg.is-bot {
      align-self: flex-start;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      color: var(--text);
      border-bottom-left-radius: 4px;
    }
    .ai-msg.is-bot a { color: var(--gold); text-decoration: underline; }
    .ai-msg.is-bot a:hover { color: #d4a85e; }
    .ai-msg.is-bot strong { color: var(--gold); font-weight: 700; }
    .ai-msg-typing {
      align-self: flex-start;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      padding: 12px 16px; border-radius: 14px; border-bottom-left-radius: 4px;
      display: flex; gap: 4px;
    }
    .ai-msg-typing span {
      width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
      animation: ai-dot 1.2s infinite ease-in-out;
    }
    .ai-msg-typing span:nth-child(2) { animation-delay: 0.15s; }
    .ai-msg-typing span:nth-child(3) { animation-delay: 0.3s; }
    @keyframes ai-dot {
      0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
      30% { opacity: 1; transform: scale(1); }
    }

    .ai-suggest {
      display: flex; flex-wrap: wrap; gap: 6px;
      padding: 0 20px 12px;
    }
    .ai-suggest button {
      padding: 7px 12px;
      background: rgba(199,154,82,0.10); border: 1px solid rgba(199,154,82,0.32);
      border-radius: 100px; color: var(--text);
      font-size: 12px; font-family: 'Nunito', sans-serif; cursor: pointer;
      transition: border-color 0.18s, background 0.18s;
    }
    .ai-suggest button:hover { border-color: var(--gold); background: rgba(199,154,82,0.20); }

    .ai-input-row {
      display: flex; gap: 8px; padding: 14px 16px;
      border-top: 1px solid var(--border);
      background: rgba(0,0,0,0.18);
    }
    .ai-input {
      flex: 1; padding: 11px 14px;
      background: rgba(0,0,0,0.35); border: 1px solid var(--border); border-radius: 22px;
      color: var(--text); font-family: 'Nunito', sans-serif; font-size: 14px;
      resize: none; line-height: 1.4; max-height: 100px;
    }
    .ai-input:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.50); }
    .ai-send {
      width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; border: none;
      background: var(--gold); color: #1a1014; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.18s, transform 0.18s;
    }
    .ai-send:hover:not(:disabled) { background: #d4a85e; transform: scale(1.05); }
    .ai-send:disabled { opacity: 0.4; cursor: not-allowed; }

    @media (max-width: 520px) {
      .ai-modal { padding: 0; align-items: stretch; justify-content: stretch; }
      .ai-window { width: 100%; height: 100%; border-radius: 0; }
    }

    /* ═══════════════ МОДАЛКА БРОНИРОВАНИЯ ═══════════════ */
    .booking-trigger-wrap { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; max-width: 720px; }
    .booking-trigger-wrap p { font-size: clamp(15px, 1.7vw, 17px); color: rgba(242,232,213,0.82); line-height: 1.65; }

    .modal-backdrop {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(8,5,11,0.72); backdrop-filter: blur(6px);
      display: none; align-items: flex-start; justify-content: center;
      padding: 20px; overflow-y: auto;
      animation: modal-fade 0.18s ease-out;
    }
    .modal-backdrop.is-open { display: flex; }
    @keyframes modal-fade { from { opacity: 0 } to { opacity: 1 } }

    .modal {
      position: relative; width: 100%; max-width: 980px;
      background: linear-gradient(180deg, #1A121B, #100B12);
      border: 1px solid rgba(199,154,82,0.35); border-radius: 16px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      margin: 40px 0 60px;
      animation: modal-slide 0.22s ease-out;
    }
    @keyframes modal-slide { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
    .modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 28px; border-bottom: 1px solid var(--border);
    }
    .modal-title { font-family: 'Geologica', sans-serif; font-weight: 800; font-size: 22px; color: var(--text); letter-spacing: -0.005em; }
    .modal-close {
      width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
      background: transparent; color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .modal-close:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }
    .modal-body { padding: 24px 28px 28px; }

    /* Выбор тарифа */
    .tariff-picker {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; margin-bottom: 22px;
    }
    .tariff-opt {
      display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border); border-radius: 12px;
      color: var(--text); cursor: pointer; text-align: left;
      transition: border-color 0.18s, background 0.18s, transform 0.18s;
      font-family: 'Nunito', sans-serif;
    }
    .tariff-opt:hover { border-color: rgba(199,154,82,0.55); background: rgba(255,255,255,0.06); }
    .tariff-opt.is-active {
      border-color: var(--gold);
      background: rgba(199,154,82,0.14);
      box-shadow: 0 0 0 1px var(--gold) inset;
    }
    .tariff-opt-name { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); }
    .tariff-opt.is-active .tariff-opt-name { color: var(--gold); }
    .tariff-opt-price { font-size: 13px; color: var(--text); font-weight: 600; }
    .tariff-opt-note  { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
    @media (max-width: 620px) {
      .tariff-picker { grid-template-columns: 1fr; gap: 8px; }
      .tariff-opt { flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
      .tariff-opt-price { margin-left: auto; }
      .tariff-opt-note { flex-basis: 100%; }
    }

    /* Шаг 2 — pickers-row: длительность (2/3) + регулярность (1/3) */
    .pickers-row {
      display: grid; grid-template-columns: 2fr 1fr;
      gap: 12px; margin-bottom: 18px;
    }
    .pickers-row.no-duration { grid-template-columns: 1fr; } /* длительность скрыта (concert тариф) */
    @media (max-width: 720px) {
      .pickers-row { grid-template-columns: 1fr; }
    }

    .picker-box {
      padding: 12px 14px;
      background: rgba(199,154,82,0.08);
      border: 1px solid rgba(199,154,82,0.3);
      border-radius: 10px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .picker-box-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--gold);
    }

    /* Длительность для почасовки */
    .duration-picker { display: none; }
    .duration-picker.is-on { display: flex; }
    .duration-pills { display: flex; flex-wrap: wrap; gap: 6px; }
    .duration-pill {
      padding: 6px 14px;
      background: rgba(0,0,0,0.25); border: 1px solid var(--border);
      border-radius: 100px; cursor: pointer;
      color: var(--text); font-size: 13px; font-weight: 600;
      font-family: 'Nunito', sans-serif;
      transition: border-color 0.18s, background 0.18s, color 0.18s;
    }
    .duration-pill:hover { border-color: var(--gold); color: var(--gold); }
    .duration-pill.is-active { background: var(--gold); color: #1a1014; border-color: var(--gold); }
    .duration-picker-hint { font-size: 11px; color: var(--muted); }

    /* Регулярная аренда — компакт-вариант */
    .recurring-picker { padding: 10px 14px; }
    .recur-toggle {
      display: flex; align-items: center; gap: 10px;
      cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text);
    }
    .recur-toggle input { display: none; }
    .recur-toggle-icon {
      width: 36px; height: 20px; flex-shrink: 0; position: relative;
      background: rgba(0,0,0,0.45);
      border: 1px solid var(--border); border-radius: 100px;
      transition: background 0.2s, border-color 0.2s;
    }
    .recur-toggle-icon::after {
      content: ''; position: absolute; top: 1px; left: 1px;
      width: 16px; height: 16px; border-radius: 50%;
      background: var(--muted); transition: transform 0.2s, background 0.2s;
    }
    .recur-toggle input:checked + .recur-toggle-icon { background: var(--gold-dim); border-color: var(--gold); }
    .recur-toggle input:checked + .recur-toggle-icon::after { transform: translateX(16px); background: var(--gold); }
    .recur-toggle-label-svg { color: var(--gold); display: flex; }
    .recur-toggle-text { color: var(--text); }
    .recur-toggle-hint { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 500; }

    .recurring-end { display: none; }
    .recurring-end.is-on { display: flex; flex-direction: column; gap: 4px; }
    .recurring-end-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
    }
    .recurring-end input {
      width: 100%; padding: 8px 10px;
      background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 8px;
      color: var(--text); font-family: 'Nunito', sans-serif; font-size: 13px;
      color-scheme: dark;
    }
    .recurring-end input:focus { outline: none; border-color: var(--gold); }

    /* Календарь */
    .cal-nav {
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      margin-bottom: 14px;
    }
    .cal-nav-title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); }
    .cal-nav button {
      width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border);
      background: transparent; color: var(--text); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .cal-nav button:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
    .cal-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
    .cal-loading { font-size: 12px; color: var(--muted); margin-left: auto; padding-left: 14px; }

    .cal-grid {
      --col-h: 22px;   /* высота 30-минутного подшага */
      --label-w: 56px;
      display: grid;
      grid-template-columns: var(--label-w) repeat(7, 1fr);
      border: 1px solid var(--border); border-radius: 10px;
      overflow: hidden;
      font-size: 12px;
      user-select: none;
    }
    .cal-cell {
      border-right: 1px solid var(--border);
      border-bottom: 1px solid rgba(199,154,82,0.10);
      min-height: var(--col-h);
      position: relative;
    }
    .cal-cell:last-child, .cal-cell.cal-day-head:last-child { border-right: none; }
    .cal-row-hour .cal-cell { border-bottom: 1px solid rgba(199,154,82,0.22); } /* подсветка целого часа */

    .cal-day-head {
      background: rgba(199,154,82,0.08); border-bottom: 1px solid var(--border);
      padding: 8px 6px; text-align: center; font-family: 'Geologica', sans-serif;
      font-weight: 700; font-size: 12px; color: var(--text); letter-spacing: 0.02em;
      position: sticky; top: 0; z-index: 2;
    }
    .cal-day-head small { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; font-size: 10px; letter-spacing: 0.06em; }
    .cal-day-head.cal-today { color: var(--gold); }
    .cal-day-head.cal-today small { color: var(--gold); opacity: 0.85; }

    .cal-time-label {
      grid-column: 1; padding: 0 8px 0 6px; font-size: 10px; color: var(--muted);
      text-align: right; line-height: var(--col-h);
      border-right: 1px solid var(--border);
    }
    .cal-time-label.cal-time-half { color: rgba(242,232,213,0.30); font-size: 9px; }

    .cal-slot {
      cursor: pointer; transition: background 0.12s;
    }
    .cal-slot:hover { background: rgba(199,154,82,0.16); }
    .cal-slot.is-past { cursor: not-allowed; background: rgba(255,255,255,0.015); }
    .cal-slot.is-past:hover { background: rgba(255,255,255,0.015); }
    .cal-slot.is-busy {
      background: repeating-linear-gradient(
        135deg,
        rgba(232,85,48,0.20) 0 6px,
        rgba(232,85,48,0.30) 6px 12px
      );
      cursor: not-allowed;
    }
    .cal-slot.is-busy:hover { background: repeating-linear-gradient(135deg, rgba(232,85,48,0.20) 0 6px, rgba(232,85,48,0.30) 6px 12px); }
    .cal-slot.is-restricted { background: rgba(199,154,82,0.10); cursor: help; }
    .cal-slot.is-restricted:hover { background: rgba(199,154,82,0.20); }
    .cal-slot.is-tariff-disabled {
      background: rgba(255,255,255,0.025);
      cursor: not-allowed;
      pointer-events: auto;
    }
    .cal-slot.is-tariff-disabled:hover { background: rgba(255,255,255,0.025); }
    .cal-day-head.is-day-disabled { color: rgba(242,232,213,0.30); }
    .cal-day-head.is-day-disabled small { color: rgba(242,232,213,0.20); }
    .cal-slot.is-selected {
      background: var(--gold);
    }
    .cal-slot.is-selected:hover { background: #d4a85e; }
    .cal-slot.is-drag-preview {
      background: rgba(199,154,82,0.45);
    }

    /* Подсказка занятого слота */
    .cal-busy-label {
      position: absolute; left: 2px; right: 2px; top: 1px;
      font-size: 9px; color: rgba(255,200,180,0.9); pointer-events: none;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .cal-legend {
      display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px;
      font-size: 11px; color: var(--muted); align-items: center;
    }
    .cal-legend-item { display: flex; align-items: center; gap: 6px; }
    .cal-legend-sw {
      width: 14px; height: 14px; border-radius: 3px;
      border: 1px solid var(--border);
    }
    .cal-legend-sw.sw-free  { background: transparent; }
    .cal-legend-sw.sw-busy  { background: repeating-linear-gradient(135deg, rgba(232,85,48,0.30) 0 4px, rgba(232,85,48,0.40) 4px 8px); }
    .cal-legend-sw.sw-restr { background: rgba(199,154,82,0.20); }
    .cal-legend-sw.sw-sel   { background: var(--gold); }

    .cal-selection {
      margin-top: 18px; padding: 14px 18px;
      background: rgba(199,154,82,0.10); border: 1px solid rgba(199,154,82,0.4);
      border-radius: 10px; font-size: 14px; color: var(--text);
      display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    }
    .cal-selection strong { color: var(--gold); font-family: 'Geologica', sans-serif; }
    .cal-selection-clear { margin-left: auto; color: var(--muted); font-size: 12px; cursor: pointer; background: none; border: none; }
    .cal-selection-clear:hover { color: var(--gold); }

    /* Контактные поля */
    .booking-fields {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
      margin-top: 24px; padding-top: 22px;
      border-top: 1px solid var(--border);
    }
    .booking-field { display: flex; flex-direction: column; gap: 6px; }
    .booking-field-full { grid-column: 1 / -1; }
    .booking-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
    .booking-input, .booking-textarea, .booking-select {
      width: 100%; padding: 12px 14px;
      background: rgba(0,0,0,0.30); border: 1px solid var(--border); border-radius: 10px;
      color: var(--text); font-family: 'Nunito', sans-serif; font-size: 15px;
      transition: border-color 0.2s, background 0.2s;
      color-scheme: dark;
    }
    .booking-input:focus, .booking-textarea:focus, .booking-select:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.45); }
    .booking-textarea { min-height: 80px; resize: vertical; line-height: 1.5; }
    .booking-help { font-size: 12px; color: var(--muted); line-height: 1.4; }
    .booking-consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--muted); line-height: 1.5; }
    .booking-consent input { margin-top: 2px; accent-color: var(--gold); }
    .booking-submit { grid-column: 1 / -1; margin-top: 4px; }
    .booking-result {
      grid-column: 1 / -1; padding: 12px 16px; border-radius: 10px; font-size: 13px;
      display: none; line-height: 1.5;
    }
    .booking-result.is-ok { display: block; background: rgba(80,180,120,0.10); border: 1px solid rgba(80,180,120,0.4); color: #94e5b3; }
    .booking-result.is-err{ display: block; background: rgba(232,85,48,0.10); border: 1px solid rgba(232,85,48,0.4); color: #ffb29a; }

    /* ═══════════════ NOTICE (inline-уведомления внутри модалки) ═══════════════ */
    .notice-overlay {
      position: absolute; inset: 0; z-index: 5;
      display: none; align-items: center; justify-content: center;
      padding: 20px;
      background: rgba(8,5,11,0.78); backdrop-filter: blur(4px);
      border-radius: 16px;
      animation: notice-fade 0.16s ease-out;
    }
    .notice-overlay.is-on { display: flex; }
    @keyframes notice-fade { from { opacity: 0 } to { opacity: 1 } }
    .notice {
      max-width: 460px; width: 100%;
      background: linear-gradient(160deg, #1F1521, #150E18);
      border: 1px solid rgba(199,154,82,0.45);
      border-radius: 14px;
      padding: 24px 24px 22px;
      box-shadow: 0 22px 60px rgba(0,0,0,0.55);
      animation: notice-slide 0.20s ease-out;
    }
    @keyframes notice-slide { from { transform: translateY(12px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
    .notice-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
    .notice-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: var(--gold-dim); border: 1px solid rgba(199,154,82,0.4);
      color: var(--gold);
      display: flex; align-items: center; justify-content: center;
    }
    .notice-title {
      font-family: 'Geologica', sans-serif; font-weight: 700;
      font-size: 17px; color: var(--text); line-height: 1.25;
      letter-spacing: -0.005em;
    }
    .notice-text {
      font-size: 14px; color: rgba(242,232,213,0.82); line-height: 1.55;
      margin-bottom: 20px;
    }
    .notice-text strong { color: var(--gold); font-weight: 600; }
    .notice-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
    .notice-actions .btn { padding: 10px 20px; font-size: 13px; }
    .notice-callback {
      display: none; flex-direction: column; gap: 10px;
      margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--border);
    }
    .notice-callback.is-on { display: flex; }
    .notice-callback-row { display: flex; gap: 8px; }
    .notice-callback-row input {
      flex: 1; padding: 10px 14px;
      background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 10px;
      color: var(--text); font-family: 'Nunito', sans-serif; font-size: 14px;
      color-scheme: dark;
    }
    .notice-callback-row input:focus { outline: none; border-color: var(--gold); }
    .notice-callback-row .btn { padding: 10px 18px; font-size: 13px; white-space: nowrap; }
    .notice-callback-hint { font-size: 12px; color: var(--muted); line-height: 1.4; }
    .notice-callback-ok {
      font-size: 13px; color: #94e5b3;
      padding: 10px 14px; background: rgba(80,180,120,0.10);
      border: 1px solid rgba(80,180,120,0.4); border-radius: 10px;
      display: none;
    }
    .notice-callback-ok.is-on { display: block; }

    @media (max-width: 700px) {
      .modal-body { padding: 18px 14px 20px; }
      .modal-header { padding: 16px 18px; }
      .cal-grid { --col-h: 20px; --label-w: 42px; font-size: 11px; }
      .cal-day-head { font-size: 11px; padding: 6px 2px; }
      .cal-day-head small { display: none; }
      .booking-fields { grid-template-columns: 1fr; }
    }

    /* ═══════════════ FOOTER ═══════════════ */
    .site-footer { padding: 50px 0 40px; border-top: 1px solid var(--border); background: rgba(0,0,0,0.18); }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 60px; align-items: start; }
    .footer-nap { font-style: normal; line-height: 1.75; font-size: 14px; color: var(--text); }
    .footer-nap-name { font-family: 'Geologica', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; margin-bottom: 6px; }
    .footer-nap a { color: var(--gold); }
    .footer-nap a:hover { text-decoration: underline; }
    .footer-social-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
    .footer-social a {
      display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
      border: 1px solid var(--border); border-radius: 100px;
      font-size: 13px; font-weight: 600; color: var(--text);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .footer-social a:hover, .footer-social a:focus-visible { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
    .footer-copy { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
    .footer-copy a { color: inherit; }
    .footer-copy a:hover { color: var(--gold); }

    /* ═══════════════ МОБАЙЛ ═══════════════ */
    @media (max-width: 820px) {
      .nav-links {
        display: none; position: fixed; inset: 0; background: rgba(16,11,18,0.97);
        flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99;
      }
      .nav-links.is-open { display: flex; }
      .nav-links a { font-size: 20px; color: var(--text); }
      .nav-burger { display: flex; z-index: 101; position: relative; }
      .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-burger.is-open span:nth-child(2) { opacity: 0; }
      .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .nav .btn { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { justify-content: center; }
      /* Компактная плашка Замуруева на мобиле */
      .hero-trust { max-width: 100%; padding: 10px 14px 10px 12px; gap: 10px; }
      .hero-trust-icon { width: 32px; height: 32px; }
      .hero-trust-main { font-size: 12px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
      html { scroll-behavior: auto; }
    }
  