/* ============ VOLKI — макет «как Siberia»: левая панель + контент ============ */

/* ---------- ЛЕВАЯ ПАНЕЛЬ ---------- */
.side {
  position: fixed; inset: 0 auto 0 0; width: var(--side-w); z-index: 90;
  background: var(--cream); border-right: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 34px 34px 26px;
  overflow-y: auto; overflow-x: hidden;
}
/* живой фон панели: тёплые светы + бумажное зерно (подложка под контент) */
.side::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/><feColorMatrix type="matrix" values="0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.07 0 0 0 0.045 0"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>'),
    radial-gradient(420px 340px at 16% 6%, rgba(183,138,78,.10), transparent 70%),
    radial-gradient(560px 460px at 90% 104%, rgba(140,142,119,.14), transparent 72%),
    linear-gradient(180deg, #f3f2ed 0%, #ecece8 44%, #e8e6de 100%);
}
/* мягкий тёплый свет, медленно плывущий по панели */
.side::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 360px; height: 360px; left: -110px; top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,138,78,.13), transparent 62%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: no-preference) {
  .side::after { animation: sideGlow 26s ease-in-out infinite alternate; }
  @keyframes sideGlow {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 260px) scale(1.3); }
  }
}
.side > * { position: relative; z-index: 1; }
.side__logo { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 38px; }
.side__logo img { height: 66px; width: auto; filter: brightness(.34) sepia(.25) saturate(1.3); } /* золотой знак -> тёмный, читаем на кремовом */
.side__wordmark { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .34em; margin-right: -.34em; color: var(--graphite-2); text-transform: uppercase; }
.side__logo-sub {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sand); text-align: center; line-height: 1.7; max-width: 200px;
}
.side__nav { display: flex; flex-direction: column; gap: 4px; }
.side__nav a {
  position: relative; display: block; padding: 9px 0 9px 26px;
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); opacity: .78;
  transition: opacity .55s var(--ease), color .55s var(--ease),
              letter-spacing .55s var(--ease), transform .55s var(--ease-out);
}
.side__nav a::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 14px; height: 1px;
  background: var(--sage); opacity: 0; transform: translateY(-50%) scaleX(.4);
  transform-origin: left; transition: all var(--t) var(--ease);
}
.side__nav a:hover, .side__nav a.is-active { opacity: 1; color: var(--olive); }
.side__nav a:hover { letter-spacing: .21em; transform: translateX(5px); }
.side__nav a.is-active { transform: translateX(3px); }
.side__nav a:hover::before, .side__nav a.is-active::before { opacity: 1; transform: translateY(-50%) scaleX(1); }

/* ===== Панель живёт: каскад входа + дыхание знака (сдержанно, prefers-reduced-motion уважается) ===== */
@media (prefers-reduced-motion: no-preference) {
  @keyframes sideRise { from { opacity: 0; transform: translateY(14px); } }
  @keyframes sideSlide { from { opacity: 0; transform: translateX(-18px); } }
  @keyframes sideTrack { from { opacity: 0; letter-spacing: .6em; } }
  @keyframes markBreath { 50% { transform: translateY(-3px) scale(1.018); } }

  /* вход: знак → вордмарк → города → меню каскадом → низ */
  .side__logo img { animation: sideRise .9s var(--ease-out) .05s backwards, markBreath 9s ease-in-out 2.4s infinite; }
  .side__wordmark { animation: sideTrack 1.1s var(--ease-out) .22s backwards; }
  .side__logo-sub { animation: sideRise .8s var(--ease-out) .42s backwards; }
  .side__nav a { animation: sideSlide .65s var(--ease-out) backwards; }
  .side__nav a:nth-child(1)  { animation-delay: .50s; }
  .side__nav a:nth-child(2)  { animation-delay: .57s; }
  .side__nav a:nth-child(3)  { animation-delay: .64s; }
  .side__nav a:nth-child(4)  { animation-delay: .71s; }
  .side__nav a:nth-child(5)  { animation-delay: .78s; }
  .side__nav a:nth-child(6)  { animation-delay: .85s; }
  .side__nav a:nth-child(7)  { animation-delay: .92s; }
  .side__nav a:nth-child(8)  { animation-delay: .99s; }
  .side__nav a:nth-child(9)  { animation-delay: 1.06s; }
  .side__nav a:nth-child(10) { animation-delay: 1.13s; }
  .side__phone { animation: sideRise .8s var(--ease-out) 1.22s backwards; }
  .side__note { animation: sideRise .8s var(--ease-out) 1.30s backwards; }
  .side__soc a { animation: sideRise .6s var(--ease-out) backwards; }
  .side__soc a:nth-child(1) { animation-delay: 1.38s; }
  .side__soc a:nth-child(2) { animation-delay: 1.46s; }
  .side__soc a:nth-child(3) { animation-delay: 1.54s; }
  .side__soc a:nth-child(4) { animation-delay: 1.62s; }
}
.side__foot { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 6px; }
.side__phone { font-size: 1.02rem; font-weight: 600; color: var(--text); }
.side__phone:hover { color: var(--olive); }
.side__note { font-size: .78rem; color: var(--text-soft); }
.side__soc { display: flex; gap: 10px; margin-top: 14px; }
.side__soc a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--text-soft);
  transition: all var(--t) var(--ease);
}
.side__soc a:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); transform: translateY(-2px); }

/* ---------- ОСНОВНАЯ КОЛОНКА ---------- */
.main { margin-left: var(--side-w); }
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(22px, 4vw, 56px); }

/* мобильная шапка (панель прячется) */
.mhead { display: none; }

/* ---------- INTRO (hero как у референса) ---------- */
.intro { position: relative; min-height: 100svh; display: flex; flex-direction: column; color: var(--cream); overflow: hidden; }
.intro__bg { position: absolute; inset: 0; }
.intro__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: introZoom 16s var(--ease) forwards; }
/* живое видео поверх фолбэк-картинки (на мобильных — лёгкая 720p-версия, см. main.js) */
.intro__bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@keyframes introZoom { to { transform: scale(1); } }
.intro__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,16,14,.45), rgba(18,16,14,.18) 34%, rgba(18,16,14,.5) 100%); }
.intro__top {
  position: relative; z-index: 2; display: flex; justify-content: flex-end; align-items: center; gap: 26px;
  padding: 26px clamp(22px, 4vw, 56px);
}
.intro__hours { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(236,236,232,.9); display: inline-flex; align-items: center; gap: .7em; }
.intro__hours::before { content: ''; width: 15px; height: 15px; border: 1.4px solid currentColor; border-radius: 50%; box-shadow: inset 0 -4px 0 -2.6px currentColor; opacity: .9; }
.lang { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: .8rem; letter-spacing: .12em; color: var(--cream); }
.lang__sep, .lang__alt { opacity: .5; }
.lang:hover .lang__alt { opacity: 1; }
.intro__content { position: relative; z-index: 2; margin: auto 0; padding: 40px clamp(28px, 6vw, 96px) 120px; max-width: 980px; }
.intro__title { font-size: clamp(2.2rem, 4.6vw, 4.05rem); font-weight: 400; color: #fff; }
.intro__sub { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.15rem, 2vw, 1.6rem); color: rgba(236,236,232,.92); margin-top: 26px; max-width: 640px; line-height: 1.5; }
.intro__address { display: flex; align-items: flex-start; gap: 12px; margin-top: 46px; color: rgba(236,236,232,.92); }
.intro__address div { display: flex; flex-direction: column; gap: 3px; font-size: .92rem; }
.intro__address svg { margin-top: 2px; opacity: .9; }

/* пилюля-кнопка (sage, как у референса) */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.15em 2.6em; border-radius: var(--r-pill);
  background: var(--sage); color: #fff;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease);
  margin-top: 40px;
}
.pill:hover { background: var(--olive); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(81,80,41,.35); }
.pill--ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.pill--ghost:hover { background: var(--olive); border-color: var(--olive); color: #fff; }
.pill--full { width: 100%; margin-top: 8px; }

/* кнопки hero в ряд */
.intro__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 40px; }
.intro__cta .pill { margin-top: 0; }

/* яркая Instagram-кнопка (фирменный градиент IG + мягкая пульсация свечения) */
.pill--ig {
  gap: .6em;
  background: rgba(236,236,232,.08);
  border: 1px solid rgba(236,236,232,.5);
  color: var(--text-inv, #ecece8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill--ig:hover { background: var(--olive); border-color: var(--olive); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(81,80,41,.35); }

/* закреплённая нижняя полоса (как у референса) */
.bookbar {
  position: fixed; left: var(--side-w); right: 0; bottom: 0; z-index: 80;
  background: var(--sage); color: #fff; text-align: center;
  padding: 17px 20px; font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  transition: background var(--t) var(--ease);
}
.bookbar:hover { background: var(--olive); }
.main { padding-bottom: 54px; } /* чтобы полоса не перекрывала футер */

/* кнопка «наверх» (над нижней полосой) */
.to-top {
  position: fixed; right: 22px; bottom: 72px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--olive);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 8px 24px rgba(32,36,26,.14);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s, color .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--olive); color: #fff; }

/* плавающая кнопка «Написать в Telegram» — низкий порог захвата для холодного трафика */
.tg-fab {
  position: fixed; right: 22px; bottom: 132px; z-index: 92;
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 20px 0 15px; border-radius: 27px;
  background: linear-gradient(135deg, #2f4020, #203013);
  color: #EEE9D5; text-decoration: none;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap;
  box-shadow: 0 10px 30px rgba(32,36,26,.30);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .2s;
}
.tg-fab svg { flex: 0 0 auto; }
.tg-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(32,36,26,.42); color: #fff; }
.tg-fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 27px; pointer-events: none;
  animation: tgpulse 2.8s var(--ease) infinite;
}
@keyframes tgpulse {
  0%   { box-shadow: 0 0 0 0 rgba(117,65,20,.50); }
  70%  { box-shadow: 0 0 0 16px rgba(117,65,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(117,65,20,0); }
}
@media (max-width: 700px) {
  .tg-fab { bottom: 80px; right: 16px; padding: 0; width: 54px; justify-content: center; }
  .tg-fab__label { display: none; }
}
@media (prefers-reduced-motion: reduce) { .tg-fab::after { animation: none; } }

/* ============ КВИЗ-ПОДБОР (модалка) — вовлекающий захват заявок ============ */
.quiz-ov {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(18,16,14,.62); backdrop-filter: blur(4px);
}
.quiz-ov.open { display: flex; animation: quizFade .3s var(--ease); }
@keyframes quizFade { from { opacity: 0; } }
.quiz {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  background: var(--cream, #EEE9D5); border-radius: 18px;
  box-shadow: 0 30px 80px rgba(18,16,14,.5);
  padding: 34px clamp(20px, 4vw, 40px) 30px;
  animation: quizRise .4s var(--ease-out);
}
@keyframes quizRise { from { opacity: 0; transform: translateY(24px) scale(.98); } }
.quiz__x {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--graphite, #20241A);
  display: grid; place-items: center; cursor: pointer; transition: all var(--t) var(--ease);
}
.quiz__x:hover { background: var(--olive); color: #fff; border-color: var(--olive); }
.quiz__bar { height: 4px; border-radius: 4px; background: rgba(117,65,20,.14); margin-bottom: 8px; overflow: hidden; }
.quiz__bar i { display: block; height: 100%; background: linear-gradient(90deg, #754114, #b98a4a); border-radius: 4px; transition: width .4s var(--ease); }
.quiz__step-n { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand, #a98d63); margin-bottom: 18px; }
.quiz__q { font-family: var(--font-display, Georgia, serif); font-size: clamp(1.25rem, 3vw, 1.6rem); line-height: 1.25; color: var(--graphite-2, #203013); margin-bottom: 20px; }
.quiz__opts { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt {
  text-align: left; padding: 15px 18px; border-radius: 12px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line, #e0dccf); color: var(--text, #20241A);
  font-size: .95rem; font-weight: 500; transition: all .2s var(--ease);
  display: flex; align-items: center; gap: 12px;
}
.quiz__opt::before { content: ''; flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--sand, #b98a4a); transition: all .2s; }
.quiz__opt:hover { border-color: var(--olive, #754114); transform: translateX(3px); box-shadow: 0 6px 18px rgba(117,65,20,.12); }
.quiz__opt.sel { border-color: var(--olive, #754114); background: rgba(117,65,20,.06); }
.quiz__opt.sel::before { background: var(--olive, #754114); border-color: var(--olive, #754114); box-shadow: inset 0 0 0 3px #fff; }
.quiz__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; gap: 12px; }
.quiz__back { background: none; border: none; color: var(--text-soft, #6b6b5e); font-size: .85rem; cursor: pointer; padding: 8px 4px; }
.quiz__back:hover { color: var(--olive); }
.quiz__next {
  background: var(--olive, #754114); color: #fff; border: none; border-radius: 24px;
  padding: 13px 28px; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: all .25s var(--ease);
}
.quiz__next:hover { background: var(--graphite-2, #203013); transform: translateY(-1px); }
.quiz__next:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.quiz__field { margin-bottom: 12px; }
.quiz__field label { display: block; font-size: .78rem; color: var(--text-soft, #6b6b5e); margin-bottom: 5px; }
.quiz__field input {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--line, #e0dccf);
  background: #fff; font-size: .95rem; color: var(--text); font-family: inherit;
}
.quiz__field input:focus { outline: none; border-color: var(--olive, #754114); }
.quiz__consent { display: flex; gap: 9px; align-items: flex-start; font-size: .74rem; color: var(--text-soft, #6b6b5e); line-height: 1.5; margin: 6px 0 4px; }
.quiz__consent input { margin-top: 2px; flex: 0 0 auto; }
.quiz__consent a { color: var(--olive); }
.quiz__note { font-size: .78rem; color: var(--text-soft, #6b6b5e); margin-top: 12px; line-height: 1.5; }
.quiz__done { text-align: center; padding: 20px 4px; }
.quiz__done h3 { font-family: var(--font-display, Georgia, serif); font-size: 1.5rem; color: var(--graphite-2, #203013); margin-bottom: 12px; }
.quiz__done p { color: var(--text, #20241A); font-size: .95rem; line-height: 1.6; margin-bottom: 18px; }
.quiz__done .pill { display: inline-flex; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 560px) { .quiz { padding: 30px 18px 24px; border-radius: 14px; } }

/* крестик закрытия мобильного меню (виден только на мобильном) */
.side__close {
  display: none;
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--graphite);
  align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.side__close:hover { border-color: var(--olive); color: var(--olive); background: rgba(140,142,119,.08); }

/* ---------- заголовки секций: подпись слева + тайтл справа (как у референса) ---------- */
.sec-label { font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--sand); display: inline-flex; align-items: center; gap: .8em; white-space: nowrap; }
.sec-label::before { content: ''; width: 30px; height: 1px; background: currentColor; opacity: .55; }
.sec-label--center { justify-content: center; display: flex; margin-bottom: 26px; }
.sec-label--center::before { width: 26px; }
.sec-head--split { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head--split h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--graphite-2); max-width: 720px; }
.sec-head--inv h2 { color: #fff; }
.sec-head--inv .sec-label { color: var(--sand-2); }

/* ---------- ОСОБЕННОСТИ ---------- */
.features { background: var(--cream); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat { background: var(--white); border-radius: var(--r-card); padding: 30px 26px; border: 1px solid rgba(38,34,31,.05); box-shadow: var(--shadow-sm); transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease); }
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat__num { font-family: var(--font-display); font-size: .95rem; color: var(--sand); display: block; margin-bottom: 16px; }
.feat h3 { font-size: 1.14rem; font-weight: 700; font-family: var(--font-body); color: var(--olive); margin-bottom: 10px; }
.feat p { font-size: .92rem; color: var(--text-soft); }

/* ---------- БАНИ ---------- */
.baths { background: var(--cream-2); }
.baths__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bath { background: var(--white); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease); }
.bath:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bath__img { aspect-ratio: 4/3; overflow: hidden; }
.bath__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.bath:hover .bath__img img { transform: scale(1.06); }
.bath__body { padding: 24px 24px 26px; }
.bath__body h3 { font-size: 1.35rem; color: var(--graphite-2); margin-bottom: 10px; }
.bath__body p { font-size: .9rem; color: var(--text-soft); }
.bath__more { display: inline-flex; align-items: center; gap: .5em; margin-top: 16px; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); transition: color var(--t) var(--ease); }
.bath__more::after { content: '→'; transition: transform var(--t) var(--ease); }
.bath:hover .bath__more { color: var(--olive); }
.bath:hover .bath__more::after { transform: translateX(4px); }

/* ---------- ЭКОНОМИКА (тёмная) ---------- */
.econ { background: var(--graphite); color: var(--cream); }
.econ__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ecard { background: rgba(255,255,255,.045); border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 34px 30px; position: relative; transition: transform var(--t) var(--ease-out), background var(--t) var(--ease); }
.ecard:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.ecard--feat { background: var(--olive); border-color: var(--olive); }
.ecard__tag { position: absolute; top: 20px; right: 20px; font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--sage); color: #fff; padding: 5px 12px; border-radius: var(--r-pill); }
.ecard h3 { font-size: 1.5rem; color: #fff; margin-bottom: 18px; }
.ecard--feat h3 { padding-right: 96px; } /* не наезжать на плашку «Оптимально» */
.ecard__inv { display: flex; flex-direction: column; gap: 3px; padding-bottom: 20px; margin-bottom: 18px; border-bottom: 1px solid var(--line-light); }
.ecard__inv span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-inv-soft); }
.ecard__inv b { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: #fff; }
.ecard__rows { display: flex; flex-direction: column; gap: 12px; }
.ecard__rows li { display: flex; justify-content: space-between; gap: 12px; font-size: .93rem; }
.ecard__rows li span { color: var(--text-inv-soft); }
.ecard__rows li b { color: #fff; font-weight: 600; }
.econ__note { margin-top: 26px; font-size: .84rem; color: var(--text-inv-soft); }

/* ---------- О СОЗДАТЕЛЕ ---------- */
.founder { background: var(--cream-2); }
.founder__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.founder__photo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }
.founder__body h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--graphite-2); margin: 14px 0 20px; }
.founder__body p { color: var(--text-soft); line-height: 1.7; margin-bottom: 14px; max-width: 60ch; }
.founder__sign { display: flex; flex-direction: column; gap: 3px; margin: 22px 0 26px; padding-left: 16px; border-left: 3px solid var(--sage); }
.founder__sign b { font-size: 1.05rem; color: var(--graphite-2); }
.founder__sign span { font-size: .85rem; color: var(--text-soft); }
.founder__press {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 20px 22px; max-width: 480px;
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.founder__press:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.founder__press-tag { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); }
.founder__press-title { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.45; color: var(--graphite-2); }
.founder__press-cta { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-top: 4px; transition: color var(--t) var(--ease); }
.founder__press:hover .founder__press-cta { color: var(--accent); }
@media (max-width: 980px) { .founder__grid { grid-template-columns: 1fr; } .founder__photo { max-width: 420px; } }

/* ---------- ЦИТАТА ---------- */
.quote { background: var(--cream); }
.quote blockquote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.15rem, 2.1vw, 1.6rem); line-height: 1.6; color: var(--graphite-2); }
.quote p + p { margin-top: 22px; }
.quote footer { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.quote footer b { font-size: 1rem; }
.quote footer span { font-size: .85rem; color: var(--text-soft); }

/* ---------- ПРОЕКТЫ (слайдер) ---------- */
.cases { background: var(--cream-2); }
.cases__swiper { padding-inline: clamp(22px, 4vw, 56px); }
.case { position: relative; aspect-ratio: 16/10; max-height: 420px; border-radius: var(--r-lg); overflow: hidden; }
.case::before { content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transform: scale(1.03); transition: transform var(--t-slow) var(--ease); }
.case::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,16,14,.06), rgba(18,16,14,.76)); }
.case:hover::before { transform: scale(1.08); }
.case__in { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(20px, 2.6vw, 34px); color: var(--cream); }
.case__meta { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sand-2); }
.case__in h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); color: #fff; margin: 8px 0 8px; }
.case__in p { color: var(--text-inv-soft); font-size: .88rem; max-width: 480px; }
.cases__nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; padding-right: clamp(22px, 4vw, 56px); }
.cnav { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all var(--t) var(--ease); }
.cnav:hover { background: var(--olive); border-color: var(--olive); }
.cnav::before { content: ''; width: 10px; height: 10px; border-top: 1.8px solid var(--olive); border-right: 1.8px solid var(--olive); transition: border-color var(--t) var(--ease); }
.cnav:hover::before { border-color: var(--cream); }
.cnav--prev::before { transform: rotate(-135deg); margin-left: 4px; }
.cnav--next::before { transform: rotate(45deg); margin-right: 4px; }

/* ---------- ГАЛЕРЕЯ (отдельное окно) ---------- */
.galmodal {
  position: fixed; inset: 0; z-index: 150; background: var(--cream);
  overflow-y: auto; animation: galIn .35s var(--ease-out);
}
.galmodal[hidden] { display: none; }
@keyframes galIn { from { opacity: 0; transform: translateY(24px); } }
.galmodal__head {
  position: sticky; top: 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  padding: 26px clamp(22px, 4vw, 56px) 20px;
  background: rgba(236,236,232,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.galmodal__head h2 { font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--graphite-2); margin-top: 8px; }
.galmodal__close {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--graphite-2); font-size: 1rem;
  display: grid; place-items: center; transition: all var(--t) var(--ease);
}
.galmodal__close:hover { background: var(--graphite); border-color: var(--graphite); color: var(--cream); }
.galmodal__body { padding: 28px clamp(22px, 4vw, 56px) 60px; }
.gallery__grid { columns: 3; column-gap: 22px; }
.gitem {
  position: relative; break-inside: avoid; margin: 0 0 22px; border-radius: var(--r-card);
  overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease);
}
.gitem:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gitem img { width: 100%; display: block; transition: transform var(--t-slow) var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(18,16,14,.72));
  color: var(--cream); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
@media (max-width: 1100px) { .gallery__grid { columns: 2; } }
@media (max-width: 620px)  { .gallery__grid { columns: 1; } }

/* лайтбокс */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(18,16,14,.94);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
  padding: 4vh 4vw; animation: lbIn .3s var(--ease-out);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: var(--r-card); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: var(--cream); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.lightbox__close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-light); color: var(--cream); font-size: 1.05rem;
  display: grid; place-items: center; transition: all var(--t) var(--ease);
}
.lightbox__close:hover { background: var(--cream); color: var(--graphite); }

/* ---------- ДЛЯ КОГО ---------- */
.audience { background: var(--cream); }
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.acard { background: var(--white); border-radius: var(--r-card); padding: 28px 26px; border: 1px solid rgba(38,34,31,.05); display: flex; flex-direction: column; gap: 10px; transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease); }
.acard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.acard h3 { font-size: 1.06rem; font-weight: 700; font-family: var(--font-body); color: var(--olive); }
.acard p { font-size: .91rem; color: var(--text-soft); flex: 1; }
.acard__kpi { font-size: .78rem; font-weight: 600; color: var(--sand); letter-spacing: .02em; padding-top: 12px; border-top: 1px solid var(--line); }

/* ---------- ОФФЕРЫ ---------- */
.offers { background: var(--cream-2); }
.offers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.offer { background: var(--white); border-radius: var(--r-lg); padding: clamp(30px, 3.4vw, 50px); box-shadow: var(--shadow-sm); }
.offer h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--graphite-2); margin: 16px 0 16px; }
.offer__lead { color: var(--text-soft); margin-bottom: 24px; line-height: 1.6; }
.offer__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.offer__list li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--text-soft); }
.offer__list li::before { content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.offer__price { display: flex; flex-direction: column; gap: 4px; padding-bottom: 24px; }
.offer__price b { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--olive); }
.offer__price span { font-size: .85rem; color: var(--text-soft); }
.offer .pill { margin-top: 0; }
.offer--dark { background: var(--graphite); color: var(--cream); }
.offer--dark h2 { color: #fff; }
.offer--dark .offer__lead, .offer--dark .offer__list li { color: var(--text-inv-soft); }
.offer--dark .offer__price b { color: #fff; }
.offer--dark .offer__price span { color: var(--text-inv-soft); }
/* действия в оффере: пилюля + тонкая PDF-ссылка */
.offer__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.offer__pdf { display: inline-flex; align-items: center; gap: .55em; font-size: .8rem; font-weight: 600; letter-spacing: .06em; color: var(--olive); border-bottom: 1px solid rgba(81,80,41,.35); padding-bottom: 3px; transition: color var(--t) var(--ease), border-color var(--t) var(--ease); }
.offer__pdf:hover { color: var(--accent); border-color: var(--accent); }
.offer__pdf--inv { color: var(--sand-2); border-color: rgba(184,166,149,.4); }
.offer__pdf--inv:hover { color: #fff; border-color: #fff; }

/* заметная карточка отзыва */
.review-card {
  position: relative; max-width: 920px; margin: clamp(48px, 6vw, 84px) auto 0;
  background: var(--white); border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 52px) clamp(26px, 4.5vw, 60px);
  box-shadow: var(--shadow-md); border-left: 5px solid var(--sage);
}
.review-card__mark {
  position: absolute; top: -6px; left: 22px;
  font-family: var(--font-display); font-size: 7rem; line-height: 1; color: var(--sage); opacity: .28;
  pointer-events: none;
}
.review-card__tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.review-card__body p { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.12rem, 1.9vw, 1.45rem); line-height: 1.6; color: var(--graphite-2); }
.review-card__body footer { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.review-card__ava {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--olive); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .06em;
}
.review-card__who { display: flex; flex-direction: column; gap: 2px; }
.review-card__who b { font-size: .98rem; color: var(--graphite-2); }
.review-card__who span { font-size: .84rem; color: var(--text-soft); }

/* отзыв с видео: ролик слева, текст справа */
.review-card--media { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 3vw, 44px); align-items: center; }
.review-card__video video { width: 100%; display: block; border-radius: var(--r-card); background: #000; box-shadow: var(--shadow-md); }
.review-card__vlabel { display: block; margin-top: 12px; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); }
@media (max-width: 980px) { .review-card--media { grid-template-columns: 1fr; } }

/* ---------- ДВА ФОРМАТА ФРАНШИЗЫ ---------- */
.plans { margin-top: clamp(56px, 7vw, 100px); }
.plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.plan {
  background: var(--white); border-radius: var(--r-lg); padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid rgba(38,34,31,.07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan__tag { align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill); background: var(--cream); color: var(--text-soft); border: 1px solid var(--line); margin-bottom: 18px; }
.plan__tag--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.plan h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); color: var(--graphite-2); margin-bottom: 10px; }
.plan__who { font-size: .92rem; color: var(--text-soft); margin-bottom: 24px; }
.plan__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.plan__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: .95rem; border-bottom: 1px dashed rgba(38,34,31,.12); padding-bottom: 10px; }
.plan__rows li span { color: var(--text-soft); }
.plan__rows li b { font-weight: 600; color: var(--graphite-2); }
.plan__fee { margin: auto 0 24px; padding: 18px 20px; background: var(--cream-2); border-radius: var(--r-card); }
.plan__fee div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.plan__fee span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.plan__fee b { font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--olive); white-space: nowrap; }
.plan__fee small { display: block; margin-top: 6px; font-size: .8rem; color: var(--text-soft); }
.plan .pill { align-self: flex-start; margin-top: 0; }
.plan--feat { background: var(--graphite); border-color: var(--graphite); }
.plan--feat h3 { color: #fff; }
.plan--feat .plan__who { color: var(--text-inv-soft); }
.plan--feat .plan__rows li { border-color: var(--line-light); }
.plan--feat .plan__rows li span { color: var(--text-inv-soft); }
.plan--feat .plan__rows li b { color: #fff; }
.plan--feat .plan__fee { background: rgba(255,255,255,.06); }
.plan--feat .plan__fee b { color: var(--sand-2); }
.plan--feat .plan__fee span, .plan--feat .plan__fee small { color: var(--text-inv-soft); }
.plans__note { margin-top: 24px; font-size: .88rem; color: var(--text-soft); max-width: 860px; }

/* ---------- ГЕЙТ ПРЕЗЕНТАЦИЙ ---------- */
.gate { background: var(--sage); }
.gate__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.gate .sec-label { color: rgba(38,34,31,.65); }
.gate__left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--graphite-2); margin: 14px 0 16px; }
.gate__lead { color: rgba(38,34,31,.8); margin-bottom: 22px; }
.gate__list { display: flex; flex-direction: column; gap: 11px; }
.gate__list li { position: relative; padding-left: 28px; color: rgba(38,34,31,.85); font-size: .95rem; }
.gate__list li::before { content: ''; position: absolute; left: 0; top: .48em; width: 14px; height: 8px; border-left: 2px solid var(--graphite-2); border-bottom: 2px solid var(--graphite-2); transform: rotate(-45deg); }
.gate__box { background: var(--white); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-lg); }
.gate__form { display: flex; flex-direction: column; gap: 16px; }
.gate__form label { display: flex; flex-direction: column; gap: 7px; font-size: .84rem; color: var(--text-soft); }
.gate__form input[type="text"], .gate__form input[type="tel"] { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; font-family: inherit; font-size: .95rem; color: var(--text); transition: border-color var(--t) var(--ease); }
.gate__form input[type="text"]:focus, .gate__form input[type="tel"]:focus { outline: none; border-color: var(--sage); }
.gate__form input::placeholder { color: var(--text-soft); opacity: .45; }
.gate__consent { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-size: .8rem !important; }
.gate__consent input { margin-top: 3px; accent-color: var(--olive); }
.gate__done { display: flex; flex-direction: column; gap: 14px; }
.gate__done[hidden], .gate__form[hidden] { display: none; } /* hidden сильнее display:flex */
.gate__done .pill { margin-top: 0; text-align: center; }
.gate__thanks { font-size: .95rem; color: var(--text-soft); }

/* ---------- КОНТАКТЫ ---------- */
.contact { background: var(--graphite); color: var(--cream); }
.contact .sec-label { color: var(--sand-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.contact__left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin: 16px 0 16px; }
.contact__lead { color: var(--text-inv-soft); }
.contact__info { margin-top: 30px; display: flex; flex-direction: column; }
.contact__info li { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.contact__info li span { color: var(--text-inv-soft); font-size: .88rem; }
.contact__info li a { font-weight: 600; }
.contact__info li a:hover { color: var(--sand-2); }
.contact__form { background: rgba(255,255,255,.05); border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; }
.contact__form label { display: flex; flex-direction: column; gap: 7px; font-size: .82rem; color: var(--text-inv-soft); }
.contact__form input, .contact__form select { background: rgba(0,0,0,.22); border: 1px solid var(--line-light); border-radius: var(--r-sm); padding: 13px 15px; color: var(--cream); font-family: inherit; font-size: .94rem; transition: border-color var(--t) var(--ease); }
.contact__form input:focus, .contact__form select:focus { outline: none; border-color: var(--sand-2); }
.contact__form option { color: #222; }
.form__note { font-size: .76rem; color: var(--text-inv-soft); text-align: center; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form__done { font-size: .9rem; color: #b9d29a; text-align: center; }
.form__err { font-size: .9rem; color: #e0a9a4; text-align: center; }
.form__done[hidden], .form__err[hidden] { display: none; }

/* ---------- FOOTER ---------- */
.foot { background: #1c1917; color: var(--text-inv-soft); padding-block: 34px; }
.foot__in { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .84rem; }

/* ---------- АДАПТИВ ---------- */
@media (max-width: 1220px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .baths__grid, .audience__grid, .econ__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  :root { --side-w: 0px; }
  .side { transform: translateX(-100%); transition: transform var(--t) var(--ease); width: 300px; z-index: 120; }
  .side.open { transform: none; box-shadow: var(--shadow-lg); }
  .main { margin-left: 0; }
  .bookbar { left: 0; }
  .mhead {
    display: flex; position: fixed; inset: 0 0 auto 0; z-index: 110;
    align-items: center; justify-content: space-between;
    padding: 12px 18px; background: rgba(236,236,232,.94); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .mhead__logo { height: 40px; width: auto; filter: brightness(.34) sepia(.25) saturate(1.3); }
  .intro__top .lang { display: none; } /* на мобильном язык переключается в шапке */
  .burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .burger span { width: 24px; height: 2px; background: var(--graphite); }
  .side__close { display: flex; }
  .to-top { right: 16px; bottom: 66px; width: 46px; height: 46px; }
  .lang--m { color: var(--graphite); }
  .intro__top { justify-content: flex-end; padding-top: 74px; }
  .intro__hours { display: none; }
  .offers__grid, .contact__grid, .plans__grid, .gate__grid { grid-template-columns: 1fr; }
  .sec-head--split { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 620px) {
  .features__grid, .baths__grid, .audience__grid, .econ__grid { grid-template-columns: 1fr; }
  .intro__content { padding-bottom: 90px; }
  /* плашка «Оптимально» — в поток над заголовком, чтобы не наезжала */
  .ecard__tag { position: static; display: inline-block; margin-bottom: 14px; }
  .ecard--feat h3 { padding-right: 0; }
}

/* ссылки на политику */
.foot__link { text-decoration: underline; text-underline-offset: 3px; transition: color var(--t) var(--ease); }
.foot__link:hover { color: #fff; }
.form__note a, .gate__consent a { text-decoration: underline; text-underline-offset: 2px; color: inherit; }
.form__note a:hover, .gate__consent a:hover { color: var(--accent); }

/* ── Рваные переходы между блоками (дизайн-приём нового volki.by, 22.07.2026) ── */
.rip-host { position: relative; }
.rip-top {
  position: absolute; left: 0; right: 0; top: -22px; height: 23px; pointer-events: none; z-index: 3;
  clip-path: polygon(0% 100%, 0% 58%, 1.5% 74%, 3% 38%, 4.5% 66%, 6% 16%, 8% 72%, 10% 44%, 12% 84%, 14% 26%, 16% 60%, 18% 8%, 20% 52%, 22% 78%, 24% 32%, 26% 64%, 28% 14%, 30% 56%, 32% 82%, 34% 38%, 36% 68%, 38% 10%, 40% 50%, 42% 76%, 44% 28%, 46% 58%, 48% 18%, 50% 70%, 52% 42%, 54% 86%, 56% 30%, 58% 62%, 60% 6%, 62% 54%, 64% 80%, 66% 36%, 68% 66%, 70% 12%, 72% 58%, 74% 84%, 76% 40%, 78% 70%, 80% 20%, 82% 52%, 84% 78%, 86% 34%, 88% 62%, 90% 10%, 92% 56%, 94% 80%, 96% 28%, 98% 60%, 100% 44%, 100% 100%);
}
.rip-top--cream    { background: var(--cream); }
.rip-top--cream2   { background: var(--cream-2); }
.rip-top--graphite { background: var(--graphite); }
.rip-top--sage     { background: var(--sage); }
.rip-line {
  display: block; width: min(1040px, 90%); height: 14px; margin: 0 auto;
  color: var(--line); opacity: .9;
}
.rip-line svg { display: block; width: 100%; height: 100%; }
@media (max-width: 700px) { .rip-top { top: -14px; height: 15px; } }
.rip-bottom {
  position: absolute; left: 0; right: 0; bottom: -22px; height: 23px; pointer-events: none; z-index: 3;
  transform: scaleY(-1);
  clip-path: polygon(0% 100%, 0% 58%, 1.5% 74%, 3% 38%, 4.5% 66%, 6% 16%, 8% 72%, 10% 44%, 12% 84%, 14% 26%, 16% 60%, 18% 8%, 20% 52%, 22% 78%, 24% 32%, 26% 64%, 28% 14%, 30% 56%, 32% 82%, 34% 38%, 36% 68%, 38% 10%, 40% 50%, 42% 76%, 44% 28%, 46% 58%, 48% 18%, 50% 70%, 52% 42%, 54% 86%, 56% 30%, 58% 62%, 60% 6%, 62% 54%, 64% 80%, 66% 36%, 68% 66%, 70% 12%, 72% 58%, 74% 84%, 76% 40%, 78% 70%, 80% 20%, 82% 52%, 84% 78%, 86% 34%, 88% 62%, 90% 10%, 92% 56%, 94% 80%, 96% 28%, 98% 60%, 100% 44%, 100% 100%);
}
.rip-cta { text-align: center; padding: 46px 22px 6px; }
@media (max-width: 700px) { .rip-bottom { bottom: -14px; height: 15px; } }
