/* ============================================================
   VARIANT 1 — PREMIUM LUXURY
   Dark emerald + deep red + gold. Serif accents, generous space.
   ============================================================ */

.v1 {
  --accent: var(--fortuna-gold);
  --accent-2: var(--fortuna-red);
  color: #f2ecdb;
  font-family: 'Manrope', sans-serif;
}
.v1-root {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(15,91,44,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 40%, rgba(200,16,46,0.18) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,11,7,0.88) 0%, rgba(5,11,7,0.95) 100%);
  min-height: 100vh;
}

/* ---- Hero ---- */
.v1-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 140px 64px 100px;
  align-items: center;
  position: relative;
}
.v1-hero-left { display: flex; flex-direction: column; }

/* Chips (crown above h1) */
.v1-crown {
  display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap;
}
.v1-crown .chip { background: rgba(232,185,74,0.1); border-color: rgba(232,185,74,0.3); color: var(--fortuna-gold); }
.chip-cycle {
  opacity: 0;
  animation: v1-chip-in 500ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
@keyframes v1-chip-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 0.85; transform: translateY(0); }
}

/* Headline */
/* Stage reserves space so lines don't reflow between rotations */
.v1-h1-stage {
  margin-bottom: 28px;
  display: block;
}
.v1-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
  /* Reserve height of the tallest slide (tennis = 4 lines) so the page
     does not jump when shorter slides (billiard / darts = 3 lines) rotate in.
     1em here = h1's own font-size; 4 lines × 1.04 line-height ≈ 4.16em → add buffer. */
  min-height: 4.4em;
}
.v1-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: v1-line-rise 720ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
@keyframes v1-line-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* The italic word with elegant underline */
.v1-word {
  font-style: italic;
  color: var(--fortuna-gold);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.v1-word::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%;
  bottom: 0.08em;
  height: 0.06em;
  background: linear-gradient(90deg, transparent 0%, var(--fortuna-gold) 15%, var(--fortuna-gold) 85%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.55;
  border-radius: 999px;
  animation: v1-word-underline 1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.5s forwards;
}
@keyframes v1-word-underline {
  to { transform: scaleX(1); }
}

/* Ampersand — big red italic serif with a subtle ribbon sway */
.v1-amp {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fortuna-red);
  display: inline-block;
  font-size: 1.15em;
  line-height: 0.9;
  vertical-align: -0.06em;
  padding: 0 0.03em;
  transform-origin: 50% 60%;
  animation: v1-amp-sway 6s ease-in-out infinite;
  text-shadow:
    0 2px 22px rgba(200, 16, 46, 0.35),
    0 0 1px rgba(255, 170, 170, 0.2);
  will-change: transform;
}
@keyframes v1-amp-sway {
  0%, 100% { transform: rotate(-3deg) skewX(-2deg); }
  25%      { transform: rotate(2deg) skewX(3deg); }
  50%      { transform: rotate(-2deg) skewX(-1deg); }
  75%      { transform: rotate(3deg) skewX(2deg); }
}

.v1-hero .lead {
  font-size: 19px;
  line-height: 1.55;
  opacity: 0.78;
  max-width: 520px;
  margin-bottom: 36px;
}
.v1-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.v1-hero-aside {
  display: flex; flex-direction: column; gap: 18px;
  align-items: stretch;
}

/* ============================================================
   "Сейчас в клубе" — live status
   ============================================================ */
.v1-now {
  padding: 24px 26px 22px;
  border-radius: 22px;
  border: 1px solid rgba(232,185,74,0.22);
  background: linear-gradient(180deg, rgba(15,91,44,0.2), rgba(8,14,10,0.62));
  position: relative;
  overflow: hidden;
}
.v1-now::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,185,74,0.55), transparent);
}
.v1-now-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 18px;
}
.v1-now-live {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fef5d5;
}
.v1-now-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61,220,132,0.7);
  animation: v1-pulse 1.8s infinite;
}
@keyframes v1-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,220,132,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(61,220,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}

/* ---- "Сейчас в клубе": закрытое состояние ---- */
.v1-now.is-closed .v1-now-pulse {
  background: #e0394c;
  box-shadow: 0 0 0 0 rgba(224,57,76,0.7);
  animation: v1-pulse-red 2.4s infinite;
}
@keyframes v1-pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(224,57,76,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(224,57,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,57,76,0); }
}
.v1-now.is-closed .v1-now-grid {
  filter: grayscale(1);
  opacity: 0.45;
  pointer-events: none;
}
.v1-now-cta.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
}

/* Глобальное отключение кнопок бронирования при закрытом клубе */
body.club-closed .btn-primary,
body.club-closed .v1-dock-cta {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
}
.v1-now-time { text-align: right; }
.v1-now-clock {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 22px; font-weight: 700;
  color: #f2ecdb; letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.v1-now-open {
  display: block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fortuna-gold); opacity: 0.9;
  margin-top: 2px;
}

.v1-now-grid { display: flex; flex-direction: column; gap: 2px; }
.v1-now-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v1-now-row:last-child { border-bottom: none; }
.v1-now-row-cat {
  font-size: 14px; font-weight: 600;
}
.v1-now-row-pill {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.v1-now-row-pill strong {
  font-size: 18px; font-weight: 700;
  color: #3ddc84;
}
.v1-now-row.tone-y .v1-now-row-pill strong { color: #f6c755; }
.v1-now-row.tone-r .v1-now-row-pill strong { color: #ff6a6a; }
.v1-now-row-pill span { opacity: 0.4; }
.v1-now-row-dots { display: flex; gap: 4px; }
.v1-now-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.v1-now-dot.free {
  background: #3ddc84;
  box-shadow: 0 0 8px rgba(61,220,132,0.45);
}
.v1-now-row.tone-y .v1-now-dot.free { background: #f6c755; box-shadow: 0 0 8px rgba(246,199,85,0.4); }
.v1-now-row.tone-r .v1-now-dot.free { background: #ff6a6a; }
.v1-now-row.is-busy .v1-now-row-cat { opacity: 0.55; }

.v1-now-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.v1-now-cta {
  color: var(--fortuna-gold); text-decoration: none;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 11px;
}
.v1-now-cta:hover { color: #fde89a; }

/* ============================================================
   Floating contact dock (always visible)
   ============================================================ */
.v1-dock {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  padding: 12px 14px;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  max-width: calc(100vw - 48px);
  border-radius: 16px;
  background: rgba(8,14,10,0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(232,185,74,0.28);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,185,74,0.08) inset;
}
.v1-dock-row {
  display: flex; align-items: center; gap: 12px;
  color: inherit; text-decoration: none;
}
.v1-dock-icn {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(232,185,74,0.12);
  color: var(--fortuna-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v1-dock-lbl {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.55; font-weight: 700;
}
.v1-dock-val {
  font-size: 15px; font-weight: 700; margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.v1-dock-val--sm { font-size: 13px; font-weight: 600; opacity: 0.9; }
.v1-dock-sep {
  width: 1px; height: 30px; background: rgba(255,255,255,0.08);
}
.v1-dock-cta {
  display: inline-block; text-align: center; white-space: nowrap;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2c96b, #b48a28);
  color: #1a1208;
  font-weight: 700; font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 18px -6px rgba(232,185,74,0.5);
  transition: transform 0.15s;
}
.v1-dock-cta:hover { transform: translateY(-1px); }

/* ---- About ---- */
.v1-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v1-about .lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  font-style: italic;
  text-wrap: pretty;
}
.v1-about .lede em { color: var(--fortuna-gold); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.stat-cell {
  padding: 28px 24px;
  background: rgba(5,11,7,0.6);
  backdrop-filter: blur(12px);
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 500;
  color: var(--fortuna-gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stat-label {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

/* ---- Services ---- */
.v1-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v1-svc-card {
  padding: 32px;
  border-radius: 20px;
  position: relative;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.v1-svc-card:hover { transform: translateY(-6px); border-color: rgba(232,185,74,0.3); }
.v1-svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.v1-svc-card p { opacity: 0.7; font-size: 15px; line-height: 1.55; }
.v1-svc-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--fortuna-gold);
  opacity: 0.5;
}

/* ---- Halls ---- */
.v1-halls { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.v1-hall-card {
  position: relative;
  padding: 22px 22px 26px;
  border-radius: 18px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 6px;
  background: linear-gradient(180deg, rgba(15,91,44,0.12), rgba(5,11,7,0.4));
  border: 1px solid rgba(255,255,255,0.08);
}
.v1-hall-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 72px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.v1-hall-card .count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--fortuna-gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.v1-hall-card h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.v1-hall-card .note { font-size: 14px; opacity: 0.7; line-height: 1.5; }

/* ---- Coaches ---- */
.coaches {
  --c-bg-2: #131a16;
  --c-card: #161d18;
  --c-line: rgba(255,255,255,.08);
  --c-text: #e8ece9;
  --c-muted: #9aa39d;
  --c-accent: var(--fortuna-gold);
}
.coaches *,
.coaches *::before,
.coaches *::after { box-sizing: border-box; }

.coaches__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.coaches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.coach {
  background: linear-gradient(180deg, var(--c-card) 0%, var(--c-bg-2) 100%);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.coach:hover {
  transform: translateY(-4px);
  border-color: rgba(201,163,90,.35);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6),
              0 0 0 1px rgba(201,163,90,.08);
}

.coach__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0e0c;
}
.coach__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.95) contrast(1.02);
  transition: transform .8s ease;
  transform: scale(var(--photo-zoom, 1));
}
.coach:hover .coach__photo img { transform: scale(calc(var(--photo-zoom, 1) * 1.04)); }
.coach__photo img[src*="kirill"] { --photo-zoom: 1.18; }
.coach__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,20,16,.85) 100%);
  pointer-events: none;
}

.coach__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(14,20,16,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--c-text);
}
.coach__tags {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.coach__tags .coach__tag {
  position: static;
  left: auto;
  bottom: auto;
}
.coach__tag a {
  color: var(--c-accent);
  text-decoration: none;
}
.coach__tag a:hover { text-decoration: underline; }

.coach__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.coach__name {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.01em;
}
.coach__name span {
  display: block;
  color: var(--c-muted);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
}

.coach__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coach__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #c8cfcb;
}
.coach__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--c-accent);
}
.coach__list li:first-child {
  color: var(--c-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(201,163,90,.18);
}
.coach__list li:first-child::before { display: none; }

.coach--featured {
  border-color: rgba(201,163,90,.25);
  box-shadow: 0 0 0 1px rgba(201,163,90,.06),
              0 30px 60px -30px rgba(0,0,0,.5);
}

/* ---- Booking form ---- */
.booking-form .bf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.55; font-weight: 700;
}
.field input, .field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--fortuna-gold);
  background: rgba(232,185,74,0.06);
}

/* ---- Reviews ---- */
.v1-reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.v1-review { padding: 28px; border-radius: 18px; }
.v1-review .stars { color: var(--fortuna-gold); letter-spacing: 2px; margin-bottom: 12px; }
.v1-review p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.v1-review .name { font-size: 13px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }

/* ---- MyReviews carousel ---- */
.v1-myreviews-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-radius: 20px;
}
.v1-myreviews-frame {
  width: 100%;
  max-width: 1170px;
  height: 520px;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  display: block;
  background: transparent;
}

/* ---- Yandex reviews (legacy) ---- */
.v1-reviews-wrap {
  border-radius: 24px;
  padding: 20px;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(232,185,74,0.16);
  background:
    linear-gradient(180deg, rgba(15,91,44,0.18), rgba(5,11,7,0.65));
}
.v1-yandex-frame {
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: 720px;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1811;
  box-shadow:
    inset 0 0 0 1px rgba(232,185,74,0.18),
    0 20px 60px -30px rgba(0,0,0,0.8);
}
.v1-yandex-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
  /* Dark-mode shim: invert the white UI to match the site palette */
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85) brightness(0.95);
}
.v1-yandex-link {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  color: rgba(232,185,74,0.8);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(5,11,7,0) 0%, rgba(5,11,7,0.9) 60%);
  padding: 18px 12px 10px;
}
.v1-yandex-link:hover { color: var(--fortuna-gold); }

/* ---- Contact (info + map) ---- */
.v1-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  padding: 48px;
  border-radius: 24px;
  align-items: stretch;
}
.v1-contact-info { display: flex; flex-direction: column; }
.v1-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.1;
}
.v1-contact .c-row { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v1-contact .c-row .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.5; font-weight: 700; margin-bottom: 4px; }
.v1-contact .c-row .val { font-size: 17px; }
.v1-contact .c-row .val a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(232,185,74,0.5); }
.v1-contact .c-row .val a:hover { color: var(--fortuna-gold); border-bottom-color: var(--fortuna-gold); }

.v1-contact-map {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1811;
  box-shadow: inset 0 0 0 1px rgba(232,185,74,0.18);
}
.v1-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85) brightness(0.95);
}
.v1-contact-map .v1-map-attr {
  position: absolute;
  left: 8px;
  z-index: 2;
  color: #eee;
  font-size: 12px;
  text-decoration: none;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.v1-contact-map .v1-map-attr:hover { color: var(--fortuna-gold); }

/* Footer */
.v1-footer {
  padding: 48px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; opacity: 0.55;
}

@media (max-width: 1100px) {
  .v1-hero { grid-template-columns: 1fr; padding: 110px 24px 60px; }
  .v1-about { grid-template-columns: 1fr; gap: 40px; }
  .v1-services, .v1-reviews { grid-template-columns: 1fr; }
  .coaches__grid { grid-template-columns: 1fr; gap: 32px; max-width: 480px; margin: 0 auto; }
  .v1-halls { grid-template-columns: repeat(2, 1fr); }
  .v1-contact { grid-template-columns: 1fr; padding: 32px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .booking-form .bf-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 760px) {
  /* Header: оставляем только логотип, навигацию и CTA скрываем */
  .site-header { margin: 8px 12px 0; padding: 8px 12px; gap: 12px; }
  .site-header nav { display: none; }
  .site-header .btn-primary { display: none; }
  .site-header .logo-txt small { font-size: 9px; letter-spacing: 0.18em; }

  /* Section padding и заголовки */
  .section { padding: 56px 18px; }
  .section-header { margin-bottom: 28px; gap: 12px; }
  .section-title { font-size: clamp(30px, 8vw, 40px); max-width: 100%; }
  .section-sub { font-size: 15px; max-width: 100%; }

  /* Hero */
  .v1-hero { padding: 88px 18px 40px; gap: 28px; }
  .v1-hero .lead { font-size: 16px; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row .btn { width: 100%; justify-content: center; }

  /* Now-at-club блок */
  .v1-now { padding: 20px 18px; }
  .v1-now-row { padding: 10px 0; gap: 8px; }
  .v1-now-row-cat { font-size: 13px; }
  .v1-now-foot { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* About / Stats */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Halls */
  .v1-halls { grid-template-columns: 1fr; }
  .v1-hall-card { padding: 20px 18px 24px; min-height: 0; padding-right: 76px; }
  .v1-hall-logo { width: 56px; top: 10px; right: 12px; opacity: 0.55; }
  .v1-hall-card .count { font-size: 56px; }
  .v1-hall-card .note { font-size: 13.5px; }

  /* Pricing table — горизонтальный скролл */
  .glass.panel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 580px; }
  .pricing-note { font-size: 12px; line-height: 1.6; }

  /* Coaches */
  .coach__body { padding: 22px 22px 26px; gap: 14px; }
  .coach__name { font-size: 24px; }
  .coach__list li { font-size: 14px; }
  .coach__tag { left: 12px; bottom: 12px; padding: 9px 14px; font-size: 13px; }

  /* Services cards */
  .v1-services { gap: 14px; }

  /* Contact */
  .v1-contact { padding: 22px 18px; }
  .v1-contact h3 { font-size: 32px; }
  .v1-contact .c-row .val { font-size: 15px; word-break: break-word; }
  .v1-contact-map { min-height: 280px; }

  /* Footer */
  .v1-footer { flex-direction: column; gap: 14px; padding: 32px 20px; text-align: center; }

  /* Sticky contact dock — на мобиле занимает половину экрана, скрываем */
  .v1-dock { display: none; }
}
