:root{
  /* ===== Design tokens (этап 02) ===== */
  --bg:#F8F6F2; --surface:#FFFFFF; --surface-2:#F3EFE8;
  --text:#1F1F1F; --text-2:#5D5D5D; --divider:rgba(0,0,0,.08);
  --accent:#1FAF54;        /* primary (зелёный, = WhatsApp) */
  --accent-2:#A67C52;      /* secondary (дерево) */
  --nature:#4D6B52;        /* природа */
  --warning:#C48A3B;

  /* ===== Motion tokens (этап 04) ===== */
  --motion-instant:120ms; --motion-fast:180ms; --motion-normal:280ms; --motion-slow:520ms; --motion-cinematic:900ms;
  --ease-standard:cubic-bezier(0.2,0,0,1); --ease-soft:cubic-bezier(0.16,1,0.3,1);
  --ease-out:cubic-bezier(0.22,1,0.36,1); --ease-in-out:cubic-bezier(0.65,0,0.35,1);

  /* ===== Layout tokens ===== */
  --container:1200px; --container-wide:1440px; --container-text:820px;
  --radius:24px; --radius-lg:28px;

  /* ===== Легаси-алиасы (чтобы текущие шаблоны работали; постепенно убрать) ===== */
  --cream:var(--bg); --cream2:var(--surface); --ink:var(--text); --muted:var(--text-2);
  --line:var(--divider); --wa:var(--accent); --amber:var(--accent-2); --amber2:#B98C63;
  --forest:var(--nature); --forest2:#5C8A6A; --wood:var(--accent-2);
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; background:var(--bg); color:var(--text); font-family:'Manrope',sans-serif;
  overflow-x:hidden; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  font-size:18px; line-height:1.6; }
.serif{ font-family:'Spectral',serif; }
.accent{ color:var(--accent-2); }
.muted{ color:var(--text-2); }

/* ===== Типографика: модульная шкала (fluid, clamp) ===== */
:root{
  --fs-eyebrow:0.78rem; --fs-body:1.125rem; --fs-lead:clamp(1.15rem,1rem + .6vw,1.4rem);
  --fs-h4:clamp(1.15rem,1rem + .6vw,1.35rem);
  --fs-h3:clamp(1.35rem,1.1rem + 1vw,1.75rem);
  --fs-h2:clamp(1.9rem,1.4rem + 2.2vw,3rem);
  --fs-h1:clamp(2.4rem,1.6rem + 3.6vw,4.25rem);
  --lh-tight:1.08; --lh-snug:1.25; --measure:70ch;
}
.serif,h1,h2,h3{ letter-spacing:-0.01em; }
/* читаемая длина строки для текстовых блоков */
.rh-measure{ max-width:var(--measure); }

/* ===== Контейнеры (этап 02) ===== */
.rh-container{ max-width:var(--container); margin-inline:auto; padding-inline:24px; }
.rh-container-wide{ max-width:var(--container-wide); margin-inline:auto; padding-inline:24px; }
.rh-prose{ max-width:var(--container-text); margin-inline:auto; padding-inline:24px; }
@media (min-width:768px){ .rh-container,.rh-container-wide,.rh-prose{ padding-inline:40px; } }

/* decorative blobs */
.blob{ position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; }
.b1{ width:520px;height:520px; background:rgba(166,124,82,.18); top:-160px; right:-120px; animation:f1 22s ease-in-out infinite; }
.b2{ width:460px;height:460px; background:rgba(77,107,82,.16); bottom:-140px; left:-120px; animation:f2 26s ease-in-out infinite; }
@keyframes f1{ 50%{ transform:translate(-50px,40px) scale(1.06);} }
@keyframes f2{ 50%{ transform:translate(50px,-30px) scale(1.07);} }

/* scroll reveal (этап 04) — только opacity + transform */
.reveal,.rh-reveal{ opacity:0; transform:translateY(28px); transition:opacity var(--motion-slow) var(--ease-soft), transform var(--motion-slow) var(--ease-soft); }
.reveal.in,.rh-reveal.in{ opacity:1; transform:none; }
.reveal-l{ opacity:0; transform:translateX(-40px); transition:opacity var(--motion-slow) var(--ease-soft), transform var(--motion-slow) var(--ease-soft); }
.reveal-r{ opacity:0; transform:translateX(40px); transition:opacity var(--motion-slow) var(--ease-soft), transform var(--motion-slow) var(--ease-soft); }
.reveal-l.in, .reveal-r.in{ opacity:1; transform:none; }

.card{ background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg); box-shadow:0 10px 30px -22px rgba(0,0,0,.25); transition:transform var(--motion-normal) var(--ease-standard), box-shadow var(--motion-normal) var(--ease-standard); }
.card:hover{ transform:translateY(-4px); box-shadow:0 18px 44px -26px rgba(0,0,0,.3); }

/* ===== Кнопки: минимал (этап 02/04) — без проблеска/пульсации/scale ===== */
.wa-btn, .btn-ink{ transition:background-color var(--motion-normal) var(--ease-standard),
  transform var(--motion-fast) var(--ease-standard); }
.wa-btn{ background:var(--accent); color:#fff; }
.wa-btn:hover{ background:#1B9C4A; transform:translateY(-1px); }
.btn-ink{ background:var(--text); color:#fff; }
.btn-ink:hover{ background:#000; transform:translateY(-1px); }
.wa-btn:active, .btn-ink:active{ transform:translateY(0); }
/* .wa-pulse оставлен как класс-наследие, но без пульсации (запрещена дизайн-системой) */
.wa-pulse{}
.btn-ghost{ border:1px solid var(--divider); transition:background-color var(--motion-normal) var(--ease-standard); }
.btn-ghost:hover{ background:var(--surface-2); }
/* кнопки на тёмных сценах */
.btn-light{ background:#fff; color:var(--text); transition:background-color var(--motion-normal) var(--ease-standard), transform var(--motion-fast) var(--ease-standard); }
.btn-light:hover{ background:#F0EDE6; transform:translateY(-1px); }
.btn-outline-light{ border:1px solid rgba(255,255,255,.6); color:#fff; transition:background-color var(--motion-normal) var(--ease-standard); }
.btn-outline-light:hover{ background:rgba(255,255,255,.12); }
@media (prefers-reduced-motion: reduce){
  .wa-btn,.btn-ink,.wa-btn::before,.btn-ink::before{ transition:none; animation:none; }
}

.nav-blur{ backdrop-filter:blur(12px); background:rgba(247,240,228,.85); border-bottom:1px solid var(--line); }
.pill{ background:rgba(166,124,82,.12); color:var(--accent-2); }
.pill-green{ background:rgba(77,107,82,.12); color:var(--nature); }
.tick{ color:var(--forest); font-weight:700; }

/* Типографика текста статей блога */
.rh-article{ font-size:1.125rem; line-height:1.75; color:#41382C; }
.rh-article h2{ font-family:'Spectral',serif; font-weight:700; font-size:1.7rem; margin:2.2rem 0 .8rem; color:var(--ink); }
.rh-article h3{ font-family:'Spectral',serif; font-weight:700; font-size:1.3rem; margin:1.6rem 0 .6rem; color:var(--ink); }
.rh-article p{ margin:0 0 1.1rem; }
.rh-article ul,.rh-article ol{ margin:0 0 1.1rem 1.2rem; }
.rh-article li{ margin:.35rem 0; }
.rh-article a{ color:var(--amber); text-decoration:underline; }
.rh-article img{ border-radius:18px; margin:1.4rem 0; max-width:100%; height:auto; }
.rh-article blockquote{ border:1px solid var(--line); background:rgba(63,107,78,.06); border-radius:14px; padding:1rem 1.3rem; margin:1.4rem 0; font-family:'Spectral',serif; }

/* dropdown nav */
.dd{ position:relative; }
.dd-menu{ position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px); min-width:230px;
  background:var(--cream2); border:1px solid var(--line); border-radius:18px; padding:8px;
  box-shadow:0 24px 50px -20px rgba(80,55,20,.4); opacity:0; visibility:hidden; transition:all .25s ease; z-index:50; }
.dd:hover .dd-menu, .dd:focus-within .dd-menu{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(4px); }
.dd-menu a{ display:block; padding:10px 14px; border-radius:12px; color:var(--ink); font-weight:600; font-size:.95rem; }
.dd-menu a:hover{ background:rgba(166,124,82,.10); color:var(--accent-2); }

/* photo placeholder slots */
.ph{ position:relative; overflow:hidden; background:linear-gradient(150deg,var(--g1,#F3C98B),var(--g2,#E89B4C));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.25), 0 16px 40px -24px rgba(120,80,20,.4); transition:transform .45s cubic-bezier(.16,1,.3,1); }
.ph:hover{ transform:translateY(-5px) scale(1.01); }
.ph figcaption{ position:absolute; left:14px; bottom:12px; color:#fff; font-weight:700; font-size:.9rem; text-shadow:0 1px 6px rgba(0,0,0,.25); }
.ph::after{ content:""; position:absolute; inset:0; background:radial-gradient(120% 80% at 30% 20%, rgba(255,255,255,.35), transparent 60%); }

/* owner review chip */
.owner-quote{ background:rgba(63,107,78,.07); border:1px solid var(--line); border-radius:14px; padding:14px 18px; }
.owner-quote .who{ color:var(--forest); font-weight:700; }

/* FAQ */
details{ border-bottom:1px solid var(--line); }
details summary{ cursor:pointer; list-style:none; }
details summary::-webkit-details-marker{ display:none; }
details[open] .faq-q{ color:var(--amber); }

/* ===== Мультяшная сцена бани: банщик с веником ===== */
.banya-scene{ position:relative; cursor:pointer; user-select:none; }
.banya-scene .attendant{ transform:translateX(-70px); opacity:0;
  transition:transform var(--motion-cinematic) var(--ease-soft), opacity var(--motion-slow) var(--ease-soft); transform-box:fill-box; transform-origin:bottom center; }
.banya-scene:hover .attendant, .banya-scene.show .attendant{ transform:translateX(0); opacity:1; }
/* (временно: сцена бани будет заменена на гравюру/минимал-иллюстрацию — этап 02) */
.banya-scene .smoke{ animation:smoke 4s ease-in-out infinite; transform-box:fill-box; transform-origin:bottom center; }
@keyframes smoke{ 0%{ opacity:.25; transform:translateY(0) scale(1);} 50%{ opacity:.55;} 100%{ opacity:.15; transform:translateY(-10px) scale(1.15);} }
.banya-scene .hint{ position:absolute; bottom:10px; right:14px; font-size:.72rem; color:var(--muted); background:rgba(253,249,241,.85); padding:4px 10px; border-radius:999px; }
.banya-scene:hover .hint, .banya-scene.show .hint{ opacity:0; }
/* ============================================================= *
 *  ГЛАВНАЯ — кинематографичный маршрут (этап 03)
 * ============================================================= */
/* Hero */
.rh-hero{ position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden; color:#fff; }
.rh-hero-media{ position:absolute; inset:0; background:linear-gradient(160deg,#3a4a3f,#6f5536 70%,#8a6a3f);
  background-size:cover; background-position:center; }
.rh-hero-media video,.rh-hero-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rh-hero-scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,18,14,.22),rgba(20,18,14,.30) 45%,rgba(20,18,14,.5)); }
.rh-hero-inner{ position:relative; z-index:2; max-width:880px; padding:120px 24px; }
.rh-hero-inner h1,.rh-hero-inner p{ text-shadow:0 2px 18px rgba(0,0,0,.38); }
.rh-hero h1{ font-family:'Spectral',serif; font-weight:800; font-size:var(--fs-h1); line-height:var(--lh-tight); margin:0 0 20px; }
.rh-hero p{ font-size:var(--fs-lead); color:rgba(255,255,255,.88); margin:0 auto 36px; max-width:600px; }
.rh-hero .rh-cta-row{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.rh-scroll{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:2; color:rgba(255,255,255,.8);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; }
.rh-scroll::after{ content:""; width:1px; height:34px; background:rgba(255,255,255,.6); animation:rhScroll 2.4s var(--ease-in-out) infinite; }
@keyframes rhScroll{ 0%{ transform:scaleY(0); transform-origin:top; } 45%{ transform:scaleY(1); transform-origin:top; } 55%{ transform:scaleY(1); transform-origin:bottom; } 100%{ transform:scaleY(0); transform-origin:bottom; } }

/* Полноэкранные «главы»-секции с воздухом */
.rh-band{ padding:120px 0; }
@media (min-width:768px){ .rh-band{ padding:160px 0; } }
.rh-eyebrow{ font-size:var(--fs-eyebrow); letter-spacing:.22em; text-transform:uppercase; color:var(--accent-2); font-weight:700; }

/* Сцена услуги — крупное медиа + текст со скримом */
.rh-scene{ position:relative; min-height:86svh; display:flex; align-items:flex-end; overflow:hidden; }
.rh-scene-media{ position:absolute; inset:0; background-size:cover; background-position:center;
  background-image:linear-gradient(150deg,var(--g1,#E9C7A0),var(--g2,#C99362)); }
.rh-scene-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rh-scene-scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,18,14,.05) 30%,rgba(20,18,14,.62)); }
.rh-scene-content{ position:relative; z-index:2; width:100%; color:#fff; padding:0 0 64px; }
.rh-scene-content h2{ font-family:'Spectral',serif; font-weight:800; font-size:var(--fs-h2); line-height:var(--lh-snug); margin:12px 0 14px; max-width:14ch; }
.rh-scene-content p{ font-size:var(--fs-lead); color:rgba(255,255,255,.9); max-width:44ch; margin:0 0 26px; }
.rh-scene .rh-eyebrow{ color:rgba(255,255,255,.85); }

/* Виртуальная прогулка */
.rh-tour{ position:relative; min-height:70svh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; color:#fff; }
.rh-tour-media{ position:absolute; inset:0; background:linear-gradient(160deg,#42513f,#6c5a3c); background-size:cover; background-position:center; }
.rh-tour-scrim{ position:absolute; inset:0; background:rgba(20,18,14,.5); }
.rh-tour-inner{ position:relative; z-index:2; max-width:640px; padding:80px 24px; }

/* Отзывы — один на экран (scroll-snap) */
.rh-reviews-track{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:8px; }
.rh-reviews-track::-webkit-scrollbar{ height:0; }
.rh-review{ scroll-snap-align:center; flex:0 0 100%; max-width:760px; margin-inline:auto; text-align:center; }
.rh-review .stars{ color:var(--warning); letter-spacing:.1em; margin-bottom:18px; }
.rh-review blockquote{ font-family:'Spectral',serif; font-size:clamp(1.4rem,1rem + 1.8vw,2.1rem); line-height:1.4; color:var(--text); margin:0 0 20px; }

/* Локация — фото + кнопка маршрута */
.rh-split{ display:grid; gap:48px; align-items:center; grid-template-columns:1fr; }
@media (min-width:880px){ .rh-split{ grid-template-columns:1fr 1fr; gap:64px; } }
.rh-location-media{ position:relative; min-height:52svh; border-radius:var(--radius-lg); overflow:hidden;
  background:linear-gradient(150deg,#cfe0d2,#8fb89a); }
.rh-location-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* Бейдж-иконка «скоро» (360-тур) */
.rh-soon-badge{ display:inline-grid; place-items:center; width:72px; height:72px; border-radius:50%;
  background:var(--surface-2); color:var(--nature,#4D6B52); }
/* Карта проезда: статичная карта-картинка → ссылка на маршрут */
.rh-map > a{ position:absolute; inset:0; display:block; }
.rh-map-route{ position:absolute; right:14px; bottom:14px; z-index:2; display:inline-flex; align-items:center;
  padding:9px 16px; border-radius:999px; background:rgba(255,255,255,.95); color:var(--text,#1F1F1F);
  font-weight:700; font-size:.85rem; box-shadow:0 4px 16px rgba(0,0,0,.16);
  transition:transform var(--motion-fast,.2s) var(--ease-out,ease); }
.rh-map:hover .rh-map-route{ transform:translateY(-1px); }

/* Финальный CTA */
.rh-final{ position:relative; min-height:70svh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; color:#fff; }
.rh-final-media{ position:absolute; inset:0; background:linear-gradient(160deg,#7a5a34,#b07a3a 60%,#caa15f); background-size:cover; background-position:center; }
.rh-final-scrim{ position:absolute; inset:0; background:rgba(20,18,14,.42); }
.rh-final-inner{ position:relative; z-index:2; max-width:680px; padding:80px 24px; }
.rh-final h2,.rh-tour-inner h2{ font-family:'Spectral',serif; font-weight:800; font-size:var(--fs-h2); margin:0 0 16px; }

/* ===== Страница услуги ===== */
.rh-crumb{ color:rgba(255,255,255,.82); font-size:.85rem; letter-spacing:.02em; }
.rh-crumb a{ color:inherit; opacity:.85; }
.rh-crumb a:hover{ opacity:1; }
.rh-gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (min-width:880px){ .rh-gallery{ grid-template-columns:repeat(3,1fr); } }
.rh-gallery .ph{ aspect-ratio:4/5; border-radius:var(--radius); }
.ph img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.ph.has-img::after{ background:linear-gradient(to top, rgba(0,0,0,.5), transparent 52%); z-index:1; }
.ph figcaption{ z-index:2; }
.rh-pricecard{ background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg); padding:32px; }
.rh-pricecard .row{ display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid var(--divider); }
.rh-pricecard .row:last-child{ border-bottom:0; }
.rh-grid-3{ display:grid; gap:24px; grid-template-columns:1fr; }
@media (min-width:880px){ .rh-grid-3{ grid-template-columns:repeat(3,1fr); } }
.rh-relcard{ display:block; }
.rh-relcard .media{ aspect-ratio:16/10; border-radius:var(--radius); overflow:hidden; background:var(--surface-2); }
.rh-relcard .media img{ width:100%; height:100%; object-fit:cover; }

/* ===== Блог-журнал ===== */
.rh-featured{ display:grid; gap:32px; grid-template-columns:1fr; align-items:center; }
@media (min-width:880px){ .rh-featured{ grid-template-columns:1.15fr .85fr; gap:48px; } }
.rh-featured .media{ aspect-ratio:16/10; border-radius:var(--radius-lg); overflow:hidden; background:var(--surface-2); }
.rh-featured .media img{ width:100%; height:100%; object-fit:cover; }
.rh-meta{ font-size:.85rem; color:var(--text-2); letter-spacing:.02em; }
.rh-article-hero{ position:relative; min-height:64svh; display:flex; align-items:flex-end; overflow:hidden; color:#fff; }
.rh-article-hero .media{ position:absolute; inset:0; background:var(--surface-2); }
.rh-article-hero .media img{ width:100%; height:100%; object-fit:cover; }
.rh-article-hero .scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,18,14,.1) 35%,rgba(20,18,14,.7)); }
.rh-article-hero .inner{ position:relative; z-index:2; width:100%; padding:0 0 56px; }
.rh-article-hero h1{ font-family:'Spectral',serif; font-weight:800; font-size:var(--fs-h1); line-height:var(--lh-tight); max-width:18ch; margin:14px 0 0; }

/* ===== Галерея ===== */
.rh-filter{ display:flex; flex-wrap:wrap; gap:10px; }
.rh-filter button{ background:none; border:1px solid var(--divider); color:var(--text-2); font:inherit; cursor:pointer;
  padding:8px 18px; border-radius:999px; transition:all var(--motion-fast) var(--ease-standard); }
.rh-filter button.active, .rh-filter button:hover{ background:var(--text); color:#fff; border-color:var(--text); }
.rh-masonry{ columns:2; column-gap:16px; }
@media (min-width:880px){ .rh-masonry{ columns:3; } }
.rh-masonry .item{ break-inside:avoid; margin-bottom:16px; border-radius:var(--radius); overflow:hidden; }
.rh-masonry .item.hide{ display:none; }
.rh-masonry .ph{ aspect-ratio:auto; }
.rh-masonry .ph.tall{ min-height:360px; } .rh-masonry .ph.short{ min-height:220px; }
.rh-masonry .item img{ display:block; width:100%; height:auto; }
.rh-masonry .ph.has-img{ position:relative; }
.rh-masonry .ph.has-img img{ position:static; }

/* ===== Видео ===== */
.rh-video-card{ display:block; }
.rh-video-card .media{ position:relative; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; background:var(--surface-2); }
.rh-video-card .play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.rh-video-card .play span{ width:64px;height:64px;border-radius:999px;background:rgba(255,255,255,.92);display:flex;align-items:center;justify-content:center; }
.rh-video-card .play span::after{ content:""; border-left:18px solid var(--text); border-top:11px solid transparent; border-bottom:11px solid transparent; margin-left:4px; }

/* ============================================================= *
 *  Шапка: прозрачная на hero → светлая при скролле (этап 04 §9)
 * ============================================================= */
.rh-header{ position:fixed; inset:0 0 auto 0; z-index:60;
  transition:background-color var(--motion-normal) var(--ease-standard), backdrop-filter var(--motion-normal), box-shadow var(--motion-normal), border-color var(--motion-normal);
  background:rgba(248,246,242,.9); backdrop-filter:blur(12px); border-bottom:1px solid var(--divider); }
.rh-header .rh-bar{ max-width:var(--container-wide); margin-inline:auto; padding:0 24px; height:68px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.rh-logo{ font-family:'Spectral',serif; font-weight:700; font-size:1.15rem; color:var(--text); text-decoration:none; }
.rh-logo span{ color:var(--accent-2); }
.rh-nav{ display:none; gap:30px; align-items:center; font-size:.95rem; }
.rh-nav a, .rh-nav button{ color:var(--text-2); background:none; border:0; cursor:pointer; font:inherit; transition:color var(--motion-fast); }
.rh-nav a:hover, .rh-nav button:hover{ color:var(--text); }
/* WhatsApp-кнопка в шапке: вернуть зелёную плашку (перебивает .rh-nav a{background:none}) */
.rh-nav a.wa-btn{ background:var(--accent); color:#fff; }
.rh-nav a.wa-btn:hover{ background:#1B9C4A; color:#fff; }
@media (min-width:1024px){ .rh-nav{ display:flex; } }
/* прозрачная на тёмном hero */
body.has-hero .rh-header:not(.scrolled){ background:transparent; backdrop-filter:none; border-color:transparent; }
body.has-hero .rh-header:not(.scrolled) .rh-logo,
body.has-hero .rh-header:not(.scrolled) .rh-nav a,
body.has-hero .rh-header:not(.scrolled) .rh-nav button,
body.has-hero .rh-header:not(.scrolled) .rh-burger span{ color:#fff; }
body.has-hero .rh-header:not(.scrolled) .rh-logo span{ color:#fff; }
body.has-hero .rh-header:not(.scrolled) .rh-burger span{ background:#fff; }
/* Дропдаун «Услуги»: ссылки на белой плашке всегда тёмные, даже над hero */
body.has-hero .rh-header:not(.scrolled) .dd-menu a{ color:var(--ink); }
body.has-hero .rh-header:not(.scrolled) .dd-menu a:hover{ color:var(--accent-2); }

/* переключатель языков (Polylang) */
.rh-langs ul{ display:flex; gap:10px; list-style:none; margin:0; padding:0; }
.rh-langs a{ text-transform:uppercase; font-size:.82rem; letter-spacing:.04em; }
.rh-langs .current-lang a{ font-weight:700; color:var(--text); }

/* бургер */
.rh-burger{ display:flex; flex-direction:column; gap:5px; background:none; border:0; padding:8px; cursor:pointer; }
.rh-burger span{ display:block; width:24px; height:2px; background:var(--text); transition:transform var(--motion-fast), opacity var(--motion-fast); }
@media (min-width:1024px){ .rh-burger{ display:none; } }

/* мобильное полноэкранное меню */
.rh-mobile{ position:fixed; inset:0; z-index:70; background:var(--bg); opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity var(--motion-normal) var(--ease-standard), transform var(--motion-normal) var(--ease-standard), visibility var(--motion-normal); }
.rh-mobile.open{ opacity:1; visibility:visible; transform:none; }
.rh-mobile-inner{ padding:88px 28px 40px; display:flex; flex-direction:column; gap:6px; }
.rh-mobile a{ font-family:'Spectral',serif; font-size:1.7rem; color:var(--text); text-decoration:none; padding:12px 0; border-bottom:1px solid var(--divider); }
.rh-mobile .sub{ font-family:'Manrope',sans-serif; font-size:1.05rem; color:var(--text-2); padding:8px 0 8px 16px; border:0; }
.rh-mobile .wa-btn{ margin-top:20px; text-align:center; }
.rh-close{ position:absolute; top:20px; right:22px; background:none; border:0; font-size:30px; line-height:1; color:var(--text); cursor:pointer; }
body.menu-open{ overflow:hidden; }

/* ===== Юридические / документные страницы ===== */
.rh-doc-hero{ padding:120px 0 24px; }
@media(min-width:768px){ .rh-doc-hero{ padding:160px 0 32px; } }
.rh-doc{ font-size:1.05rem; line-height:1.75; color:#41382C; }
.rh-doc h2{ font-family:'Spectral',serif; font-weight:700; font-size:1.5rem; margin:2rem 0 .7rem; color:var(--text); }
.rh-doc h3{ font-family:'Spectral',serif; font-weight:700; font-size:1.2rem; margin:1.5rem 0 .5rem; color:var(--text); }
.rh-doc p{ margin:0 0 1rem; } .rh-doc ul,.rh-doc ol{ margin:0 0 1rem 1.2rem; } .rh-doc li{ margin:.3rem 0; }
.rh-doc a{ color:var(--accent-2); text-decoration:underline; }
.rh-doc table{ width:100%; border-collapse:collapse; margin:1rem 0; }
.rh-doc th,.rh-doc td{ text-align:left; padding:10px 12px; border-bottom:1px solid var(--divider); vertical-align:top; }
.rh-note{ background:rgba(196,138,59,.10); border:1px solid rgba(196,138,59,.3); border-radius:14px; padding:14px 18px; margin:1.2rem 0; }
.rh-updated{ font-size:.85rem; color:var(--text-2); }

/* зоны безопасности */
.rh-zones{ display:grid; gap:16px; grid-template-columns:1fr; }
@media(min-width:760px){ .rh-zones{ grid-template-columns:1fr 1fr; } }
.rh-zone{ background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg); padding:24px; }
.rh-zone .ico{ font-size:1.6rem; } .rh-zone h3{ font-family:'Spectral',serif; font-size:1.2rem; margin:8px 0; }

/* HTML-карта сайта */
.rh-sitemap{ display:grid; gap:32px; grid-template-columns:1fr; }
@media(min-width:760px){ .rh-sitemap{ grid-template-columns:repeat(3,1fr); } }
.rh-sitemap a{ display:block; padding:6px 0; color:var(--text-2); } .rh-sitemap a:hover{ color:var(--text); }

/* Cookie-баннер */
.rh-cookie{ position:fixed; left:16px; right:16px; bottom:16px; z-index:80; max-width:560px; margin-inline:auto;
  background:var(--surface); border:1px solid var(--divider); border-radius:18px; box-shadow:0 24px 60px -24px rgba(0,0,0,.35);
  padding:20px 22px; opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity var(--motion-normal) var(--ease-standard), transform var(--motion-normal) var(--ease-standard), visibility var(--motion-normal); }
.rh-cookie.show{ opacity:1; visibility:visible; transform:none; }
.rh-cookie p{ margin:0 0 14px; font-size:.92rem; color:var(--text-2); }
.rh-cookie .row{ display:flex; flex-wrap:wrap; gap:8px; }
.rh-cookie button{ font:inherit; cursor:pointer; border-radius:999px; padding:9px 18px; font-weight:600; font-size:.9rem; border:1px solid var(--divider); background:none; color:var(--text); transition:all var(--motion-fast); }
.rh-cookie button.primary{ background:var(--text); color:#fff; border-color:var(--text); }
.rh-cookie button:hover{ background:var(--surface-2); } .rh-cookie button.primary:hover{ background:#000; }
.rh-cookie .settings{ margin-top:12px; display:none; } .rh-cookie .settings.open{ display:block; }
.rh-cookie label{ display:flex; align-items:center; gap:8px; font-size:.9rem; padding:5px 0; color:var(--text); }

/* WhatsApp-нотис (тост) */
.rh-toast{ position:fixed; left:16px; right:16px; bottom:16px; z-index:90; max-width:420px; margin-inline:auto;
  background:var(--text); color:#fff; border-radius:14px; padding:14px 18px; font-size:.9rem; text-align:center;
  opacity:0; visibility:hidden; transform:translateY(12px); transition:all var(--motion-normal) var(--ease-standard); }
.rh-toast.show{ opacity:1; visibility:visible; transform:none; }

/* футер: юр-ссылки */
.rh-legal-links{ display:flex; flex-wrap:wrap; gap:6px 18px; font-size:.82rem; }
.rh-legal-links a{ color:var(--text-2); } .rh-legal-links a:hover{ color:var(--text); }

/* ===== Глобальный reduced-motion (этап 04 §14) ===== */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:1ms !important;
    transition-duration:1ms !important;
    scroll-behavior:auto !important;
  }
}
