/* ============================================================
   FLOTARIUM — Redesign 2026
   Dark-luxury spa. Two directions: "water" / "violet".
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { min-height: 100vh; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Tokens ---------- */
:root {
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-display: var(--dir-display);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 80px);
  --section-pad-y: clamp(36px, 5vw, 75px);
  --section-pad-entry-y: clamp(72px, 10vw, 150px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.06rem);
  --step-1:  clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --step-3:  clamp(1.9rem, 1.5rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.8rem + 4vw, 5rem);
  --step-5:  clamp(3.4rem, 2rem + 7vw, 7.5rem);

  /* Coral accent — used for promo badges, ratings, and select highlights */
  --coral:      #ff6b81;
  --coral-deep: #f24f6a;
  --coral-soft: rgba(255,107,129,0.14);
}

/* ---------- Direction A: Deep Water ---------- */
[data-direction="water"] {
  --bg:        #060f1d;
  --bg-2:      #08121f;
  --surface:   #0d1c30;
  --surface-2: #112338;
  --line:      rgba(176,212,234,0.13);
  --line-strong: rgba(176,212,234,0.26);
  --text:      #e8f1f7;
  --text-dim:  rgba(232,241,247,0.64);
  --text-mute: rgba(232,241,247,0.40);
  --accent:      #4a8ed9;
  --accent-deep: #2766c6;
  --accent-2:    #88b6ec;
  --accent-soft: rgba(74,142,217,0.13);
  --accent-glow: rgba(43,104,210,0.45);
  --halo-1: rgba(33,96,200,0.42);
  --halo-2: rgba(60,120,225,0.20);
  --dir-display: 'Cormorant', 'Prata', Georgia, serif;
  --display-weight: 500;
  --display-tracking: -0.012em;
}

/* ---------- Direction B: Violet Silence ---------- */
[data-direction="violet"] {
  --bg:        #09090f;
  --bg-2:      #0c0c14;
  --surface:   #131320;
  --surface-2: #1a1a2a;
  --line:      rgba(200,194,235,0.12);
  --line-strong: rgba(200,194,235,0.24);
  --text:      #eeedf4;
  --text-dim:  rgba(238,237,244,0.62);
  --text-mute: rgba(238,237,244,0.38);
  --accent:      #9a8df3;
  --accent-deep: #6c5ce7;
  --accent-2:    #c9a6f0;
  --accent-soft: rgba(154,141,243,0.13);
  --accent-glow: rgba(108,92,231,0.45);
  --halo-1: rgba(108,92,231,0.40);
  --halo-2: rgba(180,120,230,0.18);
  --dir-display: 'Onest', system-ui, sans-serif;
  --display-weight: 300;
  --display-tracking: -0.02em;
}

/* Font tweak overrides (set on <html>) */
[data-display="editorial"] { --dir-display: 'Cormorant', 'Prata', Georgia, serif; --display-weight: 500; --display-tracking: -0.012em; }
[data-display="serif"]  { --dir-display: 'Prata', Georgia, serif; --display-weight: 400; --display-tracking: -0.005em; }
[data-display="grotesk"]{ --dir-display: 'Onest', system-ui, sans-serif; --display-weight: 300; --display-tracking: -0.02em; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}
/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.02;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.7;
}
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.7;
}
.lede { font-size: var(--step-1); color: var(--text-dim); line-height: 1.5; text-wrap: pretty; }
.mute { color: var(--text-dim); }
.accent-text { color: var(--accent); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.section-pad { padding-block: var(--section-pad-y); }
main > .section-pad:first-child,
main > :first-child:not(.section-pad) + .section-pad { padding-top: var(--section-pad-entry-y); }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bw: 1px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; padding: 1.05em 1.7em; border-radius: 100px;
  transition: transform .4s var(--ease-out), background .4s var(--ease), color .4s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--accent-deep); color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow), 0 14px 40px -16px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent); box-shadow: 0 0 38px -6px var(--accent-glow), 0 16px 44px -16px var(--accent-glow); }
.btn--ghost { color: var(--text); border: 1px solid var(--line-strong); background: rgba(255,255,255,0.015); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 0.7em 1.2em; }
.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.linklike {
  font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); display: inline-flex; align-items: center; gap: 0.6em; transition: color .35s, gap .35s var(--ease-out);
}
.linklike:hover { color: var(--accent); gap: 0.9em; }
.linklike .arrow { transition: transform .35s var(--ease-out); }
.linklike:hover .arrow { transform: translateX(3px); }

/* ---------- Image slots ---------- */
image-slot {
  --is-bg: var(--surface);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.imgwrap { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.imgwrap .stripe-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
  display: grid; place-items: center;
}
.ph-label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute); text-align: center; padding: 1em 1.4em; border: 1px dashed var(--line-strong); border-radius: 100px;
  background: rgba(0,0,0,0.25);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px var(--gut);
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding-block: 12px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand .tagline { display: none; }
.nav-main { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-main a {
  font-size: var(--step--1); letter-spacing: 0.02em; color: var(--text-dim);
  position: relative; padding: 6px 0; transition: color .3s;
}
.nav-main a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .35s var(--ease-out);
}
.nav-main a:hover { color: var(--text); }
.nav-main a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 18px; }
.city-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.city-switch { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.city-switch button {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; color: var(--text-mute); transition: color .3s, background .3s;
}
.city-switch button[aria-pressed="true"] { background: var(--accent-soft); color: var(--accent); }
.phone-num { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.02em; color: var(--text); transition: color .3s; }
.phone-num:hover { color: var(--accent); }
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 18px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease), opacity .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .halo {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.85;
  animation: drift 22s var(--ease) infinite alternate;
}
.hero-bg .halo.h1 { width: 60vw; height: 60vw; left: -10vw; top: -18vw; background: radial-gradient(circle, var(--halo-1), transparent 65%); }
.hero-bg .halo.h2 { width: 50vw; height: 50vw; right: -12vw; top: 6vw; background: radial-gradient(circle, var(--halo-2), transparent 60%); animation-duration: 28s; animation-direction: alternate-reverse; }
.hero-bg .halo.h3 { width: 44vw; height: 44vw; left: 22vw; bottom: -20vw; background: radial-gradient(circle, var(--accent-glow), transparent 62%); opacity: 0.5; animation-duration: 32s; }
[data-motion="off"] .hero-bg .halo { animation: none; }
.hero-bg .vignette { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, transparent 40%, var(--bg) 92%); }
.hero-bg .floor { position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(to bottom, transparent, var(--bg)); }

/* caustic ripple line motif */
.orbit-motif { position: absolute; z-index: 0; right: clamp(-160px, -6vw, -40px); top: 50%; transform: translateY(-50%); width: min(620px, 52vw); aspect-ratio: 1; opacity: 0.5; pointer-events: none; }
.orbit-motif .ring { position: absolute; inset: 0; border: 1px solid var(--accent); border-radius: 50%; opacity: 0.35; }
.orbit-motif .ring:nth-child(1) { transform: rotate(18deg) scaleX(0.55); }
.orbit-motif .ring:nth-child(2) { transform: rotate(-24deg) scaleX(0.62); opacity: 0.22; }
.orbit-motif .ring:nth-child(3) { inset: 18%; opacity: 0.5; border-color: var(--accent-2); transform: rotate(56deg) scaleX(0.7); }
.orbit-motif.spin .ring { animation: orbitspin 40s linear infinite; }
[data-motion="off"] .orbit-motif .ring { animation: none; }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.hero h1 { font-size: var(--step-5); margin-block: 0.18em 0; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
.hero .sub { max-width: 46ch; margin-top: clamp(20px, 3vw, 30px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4vw, 40px); }
.hero-tag { margin-bottom: clamp(18px, 3vw, 26px); }

/* stats rail */
.stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 64px); margin-top: clamp(40px, 6vw, 70px); padding-top: 28px; border-top: 1px solid var(--line); }
.stat .num { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); line-height: 1; color: var(--text); }
.stat .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); margin-top: 8px; }
.stat .num .accent-text { color: var(--accent); }

.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; }
.stars { color: var(--coral); letter-spacing: 2px; font-size: 0.9rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { display: grid; gap: 18px; max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.sec-head h2 { font-size: var(--step-3); }
.sec-head .lede { max-width: 56ch; }

/* ============================================================
   ABOUT / WHAT IS FLOATING
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.about-figure { position: relative; }
.about-figure image-slot, .about-figure .imgwrap { width: 100%; aspect-ratio: 4/5; }
.about-figure .badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: 18px 22px; backdrop-filter: blur(8px); max-width: 230px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.about-figure .badge .big { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); color: var(--accent); line-height: 1; }
.about-figure .badge .cap { font-size: var(--step--1); color: var(--text-dim); margin-top: 6px; }

.float-def { display: grid; gap: 26px; }
.float-def .big-quote { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); line-height: 1.25; }
.float-def .big-quote em { font-style: italic; color: var(--accent); }
.float-meta { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.float-meta .m .v { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); }
.float-meta .m .k { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; }

/* ============================================================
   FOR WHOM (interactive)
   ============================================================ */
.whom { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; }
.whom-tabs { display: flex; flex-direction: column; gap: 4px; }
.whom-tab {
  display: flex; align-items: center; gap: 18px; text-align: left; width: 100%;
  padding: 20px 22px; border-radius: var(--r-md); border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s; position: relative;
}
.whom-tab .idx { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); width: 24px; }
.whom-tab .nm { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); color: var(--text-dim); transition: color .35s; }
.whom-tab .ar { margin-left: auto; opacity: 0; transform: translateX(-6px); transition: opacity .35s, transform .35s var(--ease-out); color: var(--accent); }
.whom-tab:hover { background: rgba(255,255,255,0.02); }
.whom-tab[aria-selected="true"] { background: var(--surface); border-color: var(--line); }
.whom-tab[aria-selected="true"] .nm { color: var(--text); }
.whom-tab[aria-selected="true"] .idx { color: var(--accent); }
.whom-tab[aria-selected="true"] .ar { opacity: 1; transform: translateX(0); }

.whom-panel { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); min-height: 540px; display: flex; }
/* Photo fills the whole panel; the body text floats over its lower third on a
   gradient scrim. This uses the full panel height for the image (≈3:2, almost
   no vertical crop, so heads stay in frame) and lets the heading overlap the
   photo instead of sitting on a tall solid block. */
.whom-pane { position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease); }
.whom-pane.active { opacity: 1; visibility: visible; }
.whom-pane .media { position: absolute; inset: 0; overflow: hidden; }
.whom-pane .media .imgwrap, .whom-pane .media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: 0;
  --whom-s: 1; --whom-ty: 0%; transform-origin: 50% 50%; will-change: transform;
  transform: translateY(var(--whom-ty)) scale(var(--whom-s)); }
/* Per-pane reframe: a slight zoom + upward shift lifts each subject out from
   behind the text overlay so the focal point reads clearly (pane 0 keeps its
   natural framing). Tuned values, %-based so they hold at any panel size. */
.whom-pane[data-pane="1"] .media .imgwrap, .whom-pane[data-pane="1"] .media image-slot { --whom-s: 1.12; --whom-ty: -4%; }
.whom-pane[data-pane="2"] .media .imgwrap, .whom-pane[data-pane="2"] .media image-slot { --whom-s: 1.12; --whom-ty: -4.6%; }
.whom-pane[data-pane="3"] .media .imgwrap, .whom-pane[data-pane="3"] .media image-slot { --whom-s: 1.18; --whom-ty: -8.2%; }
.whom-pane[data-pane="4"] .media .imgwrap, .whom-pane[data-pane="4"] .media image-slot { --whom-s: 1.14; --whom-ty: -6.1%; }
.whom-pane[data-pane="5"] .media .imgwrap, .whom-pane[data-pane="5"] .media image-slot { --whom-s: 1.12; --whom-ty: -4.6%; }
.whom-pane .media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,
      var(--surface) 0%,
      var(--surface) 30%,
      color-mix(in srgb, var(--surface) 90%, transparent) 48%,
      color-mix(in srgb, var(--surface) 50%, transparent) 66%,
      transparent 86%); }
/* Ken-Burns: each time a pane becomes active the photo eases inward (a smooth
   "приближение"). Base state stays scale(1) for print / reduced-motion. */
@media (prefers-reduced-motion: no-preference) {
  .whom-pane.active .media .imgwrap, .whom-pane.active .media image-slot { animation: whomKenBurns 7s var(--ease-out) both; }
}
@keyframes whomKenBurns {
  from { transform: translateY(var(--whom-ty)) scale(var(--whom-s)); }
  to   { transform: translateY(var(--whom-ty)) scale(calc(var(--whom-s) * 1.07)); }
}
.whom-pane .body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(24px, 3vw, 38px); z-index: 2; text-shadow: 0 1px 16px color-mix(in srgb, var(--surface) 80%, transparent); }
.whom-pane .body h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); margin-bottom: 16px; }
.whom-pane .body ul { display: grid; gap: 11px; }
.whom-pane .body li { display: flex; gap: 12px; align-items: baseline; color: var(--text-dim); font-size: var(--step-0); }
.whom-pane .body li::before { content: ""; flex-shrink: 0; width: 5px; height: 5px; margin-top: 8px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   RITUAL / SESSION
   ============================================================ */
.ritual-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 70px); }
.ritual-list { display: grid; gap: 0; }
.ritual-step {
  display: grid; grid-template-columns: 90px 1fr auto; gap: clamp(16px, 3vw, 40px); align-items: center;
  padding: clamp(22px, 3vw, 34px) 0; border-top: 1px solid var(--line); position: relative;
}
.ritual-step:last-child { border-bottom: 1px solid var(--line); }
.ritual-step .rnum { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em; }
.ritual-step .rmain h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); transition: color .4s; }
.ritual-step .rmain p { color: var(--text-dim); font-size: var(--step-0); margin-top: 6px; max-width: 60ch; }
.ritual-step .rtime { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.08em; white-space: nowrap; }
.ritual-step::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-soft), transparent); opacity: 0; transition: opacity .5s; pointer-events: none; }
.ritual-step:hover::after { opacity: 1; }
.ritual-step:hover .rmain h3 { color: var(--accent); }

/* ============================================================
   OFFERS / PRICING
   ============================================================ */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.offer-card {
  grid-column: span 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s, background .5s;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.offer-card.feature { grid-column: span 2; background: linear-gradient(150deg, var(--surface-2), var(--surface)); border-color: var(--accent-soft); }
.offer-card.feature::before { content: ""; position: absolute; right: -30%; top: -30%; width: 70%; height: 80%; background: radial-gradient(circle, var(--accent-glow), transparent 70%); opacity: 0.35; filter: blur(30px); }
.offer-card .tag-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; border: 1px solid var(--line-strong); color: var(--text-dim); }
.chip.hot { background: var(--coral); border-color: var(--coral); color: #11182a; }
.chip.promo { color: var(--coral); border-color: color-mix(in srgb, var(--coral) 48%, transparent); background: var(--coral-soft); }
.chip.save { color: var(--accent-2); border-color: color-mix(in srgb, var(--accent-2) 40%, transparent); }
.offer-card h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); position: relative; }
.offer-card.feature h3 { font-size: var(--step-2); }
.offer-card .desc { color: var(--text-dim); font-size: var(--step--1); margin-top: -4px; position: relative; }
.price-row { margin-top: auto; display: flex; align-items: baseline; gap: 12px; position: relative; }
.price-now { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); color: var(--text); }
.price-old { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-mute); text-decoration: line-through; }
.offer-card .cta-mini { position: relative; }

/* ============================================================
   CERTIFICATES
   ============================================================ */
.cert { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.cert-media { min-width: 0; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cert-media .cert-visual { width: 100%; }
.cert-visual { position: relative; aspect-ratio: 4/3; }
.cert-card3d { position: absolute; inset: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); transition: opacity .6s, transform .6s var(--ease-out); }
.cert-card3d .imgwrap, .cert-card3d image-slot { width: 100%; height: 100%; border-radius: 0; border: 0; }
.cert-card3d:not(.show) { opacity: 0; pointer-events: none; transform: scale(0.96); }
.cert-toggle { display: inline-flex; gap: 3px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 100px; padding: 4px; }
.cert-toggle button { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; color: var(--text-mute); transition: color .3s, background .3s; }
.cert-toggle button[aria-pressed="true"] { background: var(--accent-soft); color: var(--accent); }
.cert-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.cert-list li { display: flex; gap: 12px; color: var(--text-dim); }
.cert-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

/* ============================================================
   DEPOSIT band
   ============================================================ */
.deposit { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, var(--surface-2), var(--surface)); padding: clamp(34px, 5vw, 64px); }
.deposit::before { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 160%; background: radial-gradient(circle, var(--halo-1), transparent 65%); opacity: 0.5; filter: blur(40px); }
.deposit-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.deposit-tiers { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.deposit-tiers--four { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.deposit-tiers--four .tier { min-width: 0; padding-inline: clamp(14px, 1.4vw, 20px); }
.tier { position: relative; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; background: rgba(255,255,255,0.02); min-width: 150px; }
.tier .tier-badge { position: absolute; top: -10px; right: 14px; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; background: var(--coral); color: #11182a; }
.tier .pct { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); color: var(--accent); line-height: 1; }
.tier .amt { font-size: var(--step--1); color: var(--text-dim); margin-top: 8px; }

/* ============================================================
   PHOTO MOSAIC — asymmetric gallery with quiet captions
   Standard UI-Kit component for atmosphere/photo sections.
   Add .photo-mosaic--extended when the gallery has 7–8 frames.
   ============================================================ */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(76px, 7.5vw, 104px);
  gap: clamp(9px, 1.2vw, 14px);
}
.photo-mosaic figure {
  position: relative; overflow: hidden; margin: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
}
.photo-mosaic figure:nth-child(1) { grid-column: span 5; grid-row: span 5; }
.photo-mosaic figure:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.photo-mosaic figure:nth-child(3) { grid-column: span 4; grid-row: span 4; }
.photo-mosaic figure:nth-child(4) { grid-column: 6 / span 3; grid-row: 4 / span 3; }
.photo-mosaic figure:nth-child(5) { grid-column: 9 / span 4; grid-row: 5 / span 3; }
.photo-mosaic figure:nth-child(6) { grid-column: 1 / span 5; grid-row: 6 / span 2; }
.photo-mosaic--extended figure:nth-child(1) { grid-column: 1 / span 5; grid-row: 1 / span 4; }
.photo-mosaic--extended figure:nth-child(2) { grid-column: 6 / span 3; grid-row: 1 / span 3; }
.photo-mosaic--extended figure:nth-child(3) { grid-column: 9 / span 4; grid-row: 1 / span 4; }
.photo-mosaic--extended figure:nth-child(4) { grid-column: 6 / span 3; grid-row: 4 / span 3; }
.photo-mosaic--extended figure:nth-child(5) { grid-column: 1 / span 5; grid-row: 5 / span 4; }
.photo-mosaic--extended figure:nth-child(6) { grid-column: 6 / span 3; grid-row: 7 / span 2; }
.photo-mosaic--extended figure:nth-child(7) { grid-column: 9 / span 4; grid-row: 5 / span 2; }
.photo-mosaic--extended figure:nth-child(8) { grid-column: 9 / span 4; grid-row: 7 / span 2; }
.photo-mosaic image-slot,
.photo-mosaic .imgwrap { width: 100%; height: 100%; border: 0; border-radius: 0; display: block; }
.photo-mosaic image-slot::part(image) { width: 100%; height: 100%; object-fit: cover; }
.photo-mosaic image-slot { transition: transform 1s var(--ease-out); }
.photo-mosaic figure::after {
  content: ""; position: absolute; inset: 50% 0 0;
  background: linear-gradient(to top, rgba(6,15,29,.55), transparent); pointer-events: none;
}
.photo-mosaic figure:hover image-slot { transform: scale(1.045); }
.photo-mosaic figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: rgba(255,255,255,.62); font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(3,9,18,.75);
  opacity: .72; pointer-events: none; transition: color .35s var(--ease), opacity .35s var(--ease);
}
.photo-mosaic figure:hover figcaption { color: rgba(255,255,255,.86); opacity: 1; }
@media (max-width: 700px) {
  .photo-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .photo-mosaic figure:nth-child(n) { grid-column: auto; grid-row: auto; }
  .photo-mosaic figure:nth-child(1),
  .photo-mosaic figure:nth-child(5) { grid-column: span 2; }
}

/* ============================================================
   GALLERY / ATMOSPHERE — edge-to-edge drag filmstrip
   ============================================================ */
.gallery-row {
  --gal-h: clamp(340px, 56vh, 640px);
  display: flex; gap: 14px; height: var(--gal-h);
  overflow-x: auto; overflow-y: hidden;
  padding: 0 var(--gut) 4px;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
  overscroll-behavior-x: contain;
}
.gallery-row::-webkit-scrollbar { display: none; height: 0; }
.gallery-row.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.gallery-row.is-dragging .gallery-item { pointer-events: none; }
.gallery-item {
  flex: 0 0 auto; height: 100%; width: auto; aspect-ratio: 3/4;
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: var(--surface);
}
.gallery-item.wide { aspect-ratio: 4/3; }
.gallery-item .imgwrap, .gallery-item image-slot { width: 100%; height: 100%; border-radius: 0; border: 0; display: block; }
.gallery-item image-slot::part(img) { width: 100%; height: 100%; object-fit: cover; }
.gallery-item image-slot { transition: transform .9s var(--ease-out); }
.gallery-row:not(.is-dragging) .gallery-item:hover image-slot { transform: scale(1.04); }
.gallery-hint { cursor: default; }
.gallery-hint:hover { color: var(--text-dim); gap: 0.6em; }

/* ============================================================
   REVIEWS — edge-to-edge drag filmstrip (как «Атмосфера») + popup
   ============================================================ */
.reviews-row {
  display: flex; gap: 18px; align-items: stretch;
  overflow-x: auto; overflow-y: hidden;
  padding: 6px var(--gut) 12px;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
  overscroll-behavior-x: contain;
}
.reviews-row::-webkit-scrollbar { display: none; height: 0; }
.reviews-row.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.reviews-row.is-dragging .review { pointer-events: none; }
.review { flex: 0 0 auto; width: clamp(300px, 34vw, 392px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; cursor: pointer; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.reviews-row:not(.is-dragging) .review:hover,
.review:focus-visible { border-color: var(--accent); transform: translateY(-4px); outline: none; }
.rv-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.rv-date { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }
.review .stars { font-size: 0.85rem; }
.review .txt { color: var(--text-dim); font-size: var(--step-0); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review .rv-more { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.review .rv-full { display: none; }
@media (max-width: 600px) { .review { width: 82vw; } }
.review .who { display: flex; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line); }
.review .av { width: 40px; height: 40px; border-radius: 50%; background: var(--coral-soft); display: grid; place-items: center; font-family: var(--font-display); color: var(--coral); }
.review .who .nm { font-size: var(--step--1); }
.review .who .src { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }

/* review detail popup */
.modal--review { width: min(640px, 100%); display: flex; flex-direction: column; max-height: min(84vh, 740px); }
.rvm-head { display: flex; align-items: center; gap: 14px; padding-right: 48px; }
.rvm-head .av { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; color: var(--accent); }
.rvm-head .nm { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); line-height: 1.1; }
.rvm-head .src { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-top: 5px; }
.rv-top--modal { justify-content: flex-start; margin-top: 20px; }
.rv-top--modal .stars { font-size: 0.85rem; }
.rvm-body { margin-top: 16px; padding-right: 10px; overflow-y: auto; display: grid; gap: 1em; align-content: start; color: var(--text-dim); line-height: 1.7; font-size: var(--step-0); scrollbar-width: thin; }
.rvm-body::-webkit-scrollbar { width: 6px; }
.rvm-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 10px; }

.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--text); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.carousel-nav button:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }
.carousel-nav button:disabled { opacity: 0.3; cursor: default; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.faq-list { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; gap: 20px; width: 100%; text-align: left; padding: 26px 0; }
.faq-q .qx { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-mute); }
.faq-q .qt { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-1); flex: 1; transition: color .3s; }
.faq-q:hover .qt { color: var(--accent); }
.faq-q .qi { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); flex-shrink: 0; position: relative; transition: background .3s, border-color .3s; }
.faq-q .qi::before, .faq-q .qi::after { content: ""; position: absolute; background: var(--text); transition: transform .4s var(--ease); }
.faq-q .qi::before { width: 12px; height: 1.5px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.faq-q .qi::after { width: 1.5px; height: 12px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.faq-item.open .qi { background: var(--accent-soft); border-color: var(--accent); }
.faq-item.open .qi::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item.open .qi::before { background: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 26px; color: var(--text-dim); max-width: 62ch; line-height: 1.65; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.loc-tab { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 20px; border-radius: 100px; border: 1px solid var(--line); color: var(--text-dim); transition: all .3s; }
.loc-tab[aria-selected="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.loc-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 50px); align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 22px; }
.loc-info h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); }
.loc-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.loc-row svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.loc-row .k { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); display: block; margin-bottom: 4px; }
.loc-map { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 380px; background: var(--surface); }
.loc-map .imgwrap, .loc-map image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: 0; }
.loc-pin { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); }
.loc-pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2.4s var(--ease) infinite; }
[data-motion="off"] .loc-pin .dot { animation: none; }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final-cta { position: relative; text-align: center; padding-block: clamp(80px, 12vw, 170px); overflow: hidden; }
.final-cta .halo { position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%); width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; background: radial-gradient(circle, var(--halo-1), transparent 60%); filter: blur(60px); opacity: 0.5; z-index: 0; }
.final-cta .inner { position: relative; z-index: 2; }
.final-cta h2 { font-size: var(--step-4); margin-bottom: 24px; }

.site-footer { border-top: 1px solid var(--line); padding-block: clamp(50px, 7vw, 90px) 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-mission { max-width: 38ch; color: var(--text-dim); margin-top: 22px; font-size: var(--step--1); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-dim); padding: 6px 0; transition: color .3s; font-size: var(--step--1); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: clamp(40px, 6vw, 70px); padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom .small { font-family: var(--font-body); font-size: 0.68rem; color: var(--text-mute); letter-spacing: 0.04em; line-height: 1.7; }
.footer-bottom a.small:hover { color: var(--accent); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(3,8,14,0.7); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { width: min(560px, 100%); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px); position: relative; transform: translateY(20px) scale(0.98); transition: transform .5s var(--ease-out); max-height: 92vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; right: 18px; top: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-dim); transition: all .3s; }
.modal-close:hover { color: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.modal h3 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); margin-bottom: 8px; }
.modal .form-grid { display: grid; gap: 16px; margin-top: 24px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; }
.field input, .field select { width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; color: var(--text); transition: border-color .3s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.seg { display: flex; gap: 8px; }
.seg button { flex: 1; padding: 13px; border-radius: var(--r-sm); border: 1px solid var(--line); color: var(--text-dim); font-size: var(--step--1); transition: all .3s; }
.seg button[aria-pressed="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.modal .ok-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; padding: 16px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--text-dim); font-size: var(--step--1); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 1500; background: var(--bg); transform: translateX(100%); transition: transform .55s var(--ease-out); display: flex; flex-direction: column; padding: 90px var(--gut) 40px; visibility: hidden; }
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a.mlink { font-family: var(--font-display); font-weight: var(--display-weight); font-size: var(--step-2); padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .mfoot { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }
.mclose { position: absolute; top: 24px; right: var(--gut); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--text-dim); transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }
.mclose:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Base = visible (no-JS / frozen-compositor safe). Hidden state only under html.anim. */
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.anim .reveal { opacity: 0; transform: translateY(26px); }
html.anim .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
[data-motion="off"] .reveal { opacity: 1 !important; transform: none !important; transition: none; }

/* ---------- Keyframes ---------- */
@keyframes drift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(4vw, 3vw) scale(1.12); } }
@keyframes orbitspin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70% { box-shadow: 0 0 0 22px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card.feature { grid-column: span 2; }
}
@media (max-width: 960px) {
  .nav-main, .city-phone .phone-num { display: none; }
  .burger { display: flex; }
  .about-grid, .whom, .cert, .faq-grid, .loc-grid, .deposit-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 32px; }
  .whom-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .whom-tab { flex-direction: column; align-items: flex-start; min-width: 150px; gap: 10px; }
  .whom-tab .ar { display: none; }
  .whom-panel { min-height: 560px; }
  .deposit-grid { gap: 28px; }
  .ritual-step { grid-template-columns: 56px 1fr; }
  .ritual-step .rtime { grid-column: 2; }
}
@media (max-width: 720px) {
  .deposit-tiers--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .deposit-tiers--four { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card.feature { grid-column: span 1; }
  .stats { gap: 22px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-figure .badge { left: 0; }
  .city-phone { display: none; }
  .header-right { gap: 10px; }
}
