/* LORD Core v1 — shared components for inner pages */

/* ==========================================================================
   1. Reset & Base  (site.css canonical, reconciled with styles.css)
   ========================================================================== */
:root {
  --font-head: "Prata", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --bg-start: #6a4d3a;
  --bg-mid: #a37a59;
  --bg-end: #e2c5a8;

  --surface: rgba(255, 247, 238, 0.76);
  --surface-strong: rgba(255, 245, 232, 0.9);
  --surface-dark: rgba(59, 41, 29, 0.78);

  --text: #2a1e16;
  --text-soft: #6f5543;
  --text-inverse: #fff7ef;

  --line: rgba(99, 73, 53, 0.2);
  --line-strong: rgba(90, 62, 38, 0.35);

  --gold-1: #fcce6d;
  --gold-2: #fbc44f;
  --gold-3: #fbbc36;
  --gold-4: #faaf12;
  --gold-gradient: linear-gradient(112deg, var(--gold-1) 0%, var(--gold-2) 34%, var(--gold-3) 68%, var(--gold-4) 100%);

  --shadow-soft: 0 14px 34px rgba(77, 52, 34, 0.18);
  --shadow-strong: 0 18px 50px rgba(72, 43, 22, 0.28);

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

/* ==========================================================================
   2. Container & Section
   ========================================================================== */
.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.4rem, 7vw, 6.6rem) 0;
}

.section + .section {
  border-top: 1px solid rgba(90, 62, 38, 0.1);
}

/* ==========================================================================
   3. Page-shell & Body states
   ========================================================================== */
.page-shell {
  position: relative;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s ease, visibility 0.38s ease, transform 0.38s ease;
}

body.lord-loading {
  overflow: hidden;
}

body.lord-loading .page-shell {
  opacity: 0;
  visibility: hidden;
  animation: lordLoadingFailSafe 0s linear 5s forwards;
}

html.lord-lite-mobile .lord-loader,
html.lord-safe-mode .lord-loader {
  display: none !important;
}

html.lord-lite-mobile body.lord-loading,
html.lord-safe-mode body.lord-loading {
  overflow: auto !important;
}

html.lord-lite-mobile body.lord-loading .page-shell,
html.lord-safe-mode body.lord-loading .page-shell {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

@media (max-width: 760px) {
  body.lord-loading {
    overflow: auto !important;
  }

  body:not(.page-love):not([data-page="main"]).lord-loading .page-shell {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
  }

  body:not(.page-love):not([data-page="main"]) .lord-loader {
    display: none !important;
  }
}

body.page-leaving .page-shell {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ==========================================================================
   4. Lord Loader — base + variants
   ========================================================================== */
.lord-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 224, 122, 0.18), transparent 45%),
    radial-gradient(circle at 76% 76%, rgba(255, 210, 129, 0.2), transparent 52%),
    linear-gradient(160deg, #6a4d3a 0%, #3d2b1f 52%, #1f1610 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.lord-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lord-loader__inner {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.lord-loader__ring {
  width: 68px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 3px solid rgba(255, 222, 154, 0.2);
  border-top-color: var(--gold-2);
  border-right-color: var(--gold-3);
  box-shadow: 0 0 22px rgba(255, 218, 137, 0.2);
  animation: lordLoaderSpin 1s linear infinite;
}

.lord-loader__logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.lord-loader__sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 239, 0.78);
}

.lord-loader__line {
  position: relative;
  width: clamp(132px, 18vw, 220px);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 238, 191, 0.16);
}

.lord-loader__line span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 239, 173, 0.08) 0%, rgba(255, 210, 96, 0.9) 46%, rgba(176, 108, 28, 0.08) 100%);
  box-shadow: 0 0 14px rgba(252, 206, 109, 0.28);
  animation: lordLoaderLineSweep 1.04s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes lordLoaderLineSweep {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(180%);
  }
}

body.page-main .lord-loader--main-video {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 215, 101, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(7, 18, 62, 0.16) 0%, rgba(4, 10, 36, 0.38) 100%),
    url("../lord/loader-main-0310-mid-1s-poster.jpg") center center / cover no-repeat;
}

body.page-main .lord-loader--main-video .lord-loader__video,
body.page-main .lord-loader--main-video .lord-loader__motion-fallback,
body.page-main .lord-loader--main-video .lord-loader__veil {
  position: absolute;
  inset: 0;
}

body.page-main .lord-loader--main-video .lord-loader__motion-fallback {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

body.page-main .lord-loader--main-video .lord-loader__video {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  background: transparent;
}

body.page-main .lord-loader--main-video .lord-loader__video::-webkit-media-controls,
body.page-main .lord-loader--main-video .lord-loader__video::-webkit-media-controls-enclosure,
body.page-main .lord-loader--main-video .lord-loader__video::-webkit-media-controls-panel,
body.page-main .lord-loader--main-video .lord-loader__video::-webkit-media-controls-overlay-play-button,
body.page-main .lord-loader--main-video .lord-loader__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.page-main .lord-loader--main-video .lord-loader__veil {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 222, 140, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(3, 11, 40, 0.42) 0%, rgba(3, 11, 40, 0.6) 44%, rgba(4, 10, 32, 0.84) 100%);
}

body.page-main .lord-loader--main-video .lord-loader__inner {
  position: relative;
  z-index: 4;
  gap: 16px;
  text-align: center;
}

body.page-main .lord-loader--main-video.lord-loader--motion-fallback .lord-loader__video {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.page-main .lord-loader--main-video .lord-loader__logo {
  font-size: clamp(44px, 9vw, 92px);
  text-shadow: 0 0 22px rgba(244, 198, 76, 0.22);
}

body.page-main .lord-loader--main-video .lord-loader__sub {
  font-size: 12px;
  letter-spacing: 0.2em;
}

body.page-love .lord-loader--love {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 240, 248, 0.54), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 252, 0.96) 0%, rgba(244, 238, 232, 0.98) 100%);
}

body.page-love .lord-loader--love::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 250, 0.08) 0%, rgba(255, 250, 252, 0.12) 48%, rgba(255, 255, 255, 0.18) 100%),
    image-set(
      url("../love/loader-love-bg-mobile.webp") type("image/webp"),
      url("../love/loader-love-bg-mobile.jpg") type("image/jpeg")
    ) center top / cover no-repeat;
  opacity: 0.94;
}

body.page-love .lord-loader--love .lord-loader__inner {
  position: relative;
  z-index: 1;
  gap: 15px;
}

body.page-love .lord-loader--love .lord-loader__ring {
  border-color: rgba(188, 126, 152, 0.18);
  border-top-color: #f0adc8;
  border-right-color: #d97ea4;
  box-shadow: 0 0 18px rgba(219, 125, 163, 0.14);
}

body.page-love .lord-loader--love .lord-loader__logo {
  background: linear-gradient(116deg, #f9d8e6 0%, #efb1ca 40%, #d479a1 72%, #8b345a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(38px, 7vw, 72px);
  letter-spacing: 0.18em;
}

body.page-love .lord-loader--love .lord-loader__sub {
  color: rgba(116, 70, 90, 0.82);
}

body.page-love .lord-loader--love .lord-loader__line {
  background: rgba(167, 107, 132, 0.18);
}

body.page-love .lord-loader--love .lord-loader__line span {
  background: linear-gradient(90deg, rgba(255, 240, 247, 0.08) 0%, rgba(241, 171, 198, 0.96) 48%, rgba(185, 96, 136, 0.08) 100%);
  box-shadow: 0 0 14px rgba(213, 122, 158, 0.22);
}

@keyframes lordLoadingFailSafe {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes lordLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Lord Loader — Radost variant ---------- */
body.theme-radost.radost-v4 .lord-loader--radost {
  position: fixed;
  overflow: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 229, 255, 0.28), transparent 46%),
    radial-gradient(circle at 86% 20%, rgba(255, 61, 222, 0.26), transparent 52%),
    radial-gradient(circle at 52% 78%, rgba(45, 110, 255, 0.16), transparent 48%),
    linear-gradient(96deg, #061544 0%, #12439f 36%, #4b2a9f 67%, #972f98 100%);
}

body.theme-radost.radost-v4 .lord-loader--radost::before,
body.theme-radost.radost-v4 .lord-loader--radost::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.theme-radost.radost-v4 .lord-loader--radost::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(237, 245, 255, 0) 0,
      rgba(237, 245, 255, 0) 48px,
      rgba(237, 245, 255, 0.04) 49px,
      rgba(237, 245, 255, 0) 50px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(237, 245, 255, 0) 0,
      rgba(237, 245, 255, 0) 48px,
      rgba(237, 245, 255, 0.04) 49px,
      rgba(237, 245, 255, 0) 50px
    );
}

body.theme-radost.radost-v4 .lord-loader--radost::after {
  background: radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.1), transparent 48%);
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__inner {
  position: relative;
  z-index: 2;
  gap: 0.6rem;
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__ring {
  border: 3px solid rgba(173, 236, 255, 0.24);
  border-top-color: #00e5ff;
  border-right-color: #ff3dde;
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.35),
    0 0 26px rgba(255, 61, 222, 0.24);
  animation:
    lordLoaderSpin 0.92s linear infinite,
    radostLoaderPulse 2.1s ease-in-out infinite;
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__logo {
  background: linear-gradient(104deg, #fff4bf 0%, #ffe389 34%, #f9ca52 68%, #eaa723 100%);
  background-size: 210% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(247, 199, 77, 0.3);
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__sub {
  color: rgba(238, 247, 255, 0.88);
  letter-spacing: 0.2em;
  font-size: 11px;
  text-shadow: 0 0 10px rgba(33, 183, 255, 0.2);
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__line {
  width: min(356px, 66vw);
  height: 5px;
  border-radius: 999px;
  background: rgba(222, 240, 255, 0.14);
  border: 1px solid rgba(155, 230, 255, 0.4);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 14px rgba(0, 229, 255, 0.2);
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00e5ff 0%, #39c6ff 36%, #ff3dde 100%);
  box-shadow:
    0 0 16px rgba(0, 229, 255, 0.32),
    0 0 20px rgba(255, 61, 222, 0.24);
  animation: radostLoaderLineSweep 1.22s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.9vw, 1.4rem);
  line-height: 1;
  color: rgba(141, 231, 255, 0.8);
  text-shadow:
    0 0 12px rgba(0, 229, 255, 0.34),
    0 0 16px rgba(255, 61, 222, 0.2);
  opacity: 0.56;
  transform: translate3d(0, 0, 0);
  animation: radostLoaderShapeFloat var(--dur, 8.4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-1 { top: 12%; left: 7%;   --dur: 8.8s; --delay: -1.2s; --dx: 10px;  --rot: 10deg;  }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-2 { top: 22%; left: 21%;  --dur: 9.4s; --delay: -0.6s; --dx: -8px;  --rot: -12deg; }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-3 { top: 15%; right: 18%; color: rgba(255, 177, 241, 0.88); --dur: 8.1s; --delay: -2.1s; --dx: 7px; --rot: 9deg; }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-4 { top: 30%; right: 8%;  color: rgba(255, 172, 239, 0.82); --dur: 9.8s; --delay: -1.7s; --dx: -10px; --rot: -11deg; }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-5 { top: 47%; left: 6%;   --dur: 8.6s; --delay: -2.8s; --dx: 11px;  --rot: 13deg;  }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-6 { top: 62%; left: 18%;  --dur: 9.2s; --delay: -0.9s; --dx: -9px;  --rot: -8deg;  }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-7 { bottom: 16%; left: 28%;  --dur: 8.4s; --delay: -1.4s; --dx: 8px;  --rot: 12deg;  }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-8 { bottom: 12%; right: 30%; color: rgba(255, 193, 246, 0.84); --dur: 9.6s; --delay: -2.3s; --dx: -7px; --rot: -10deg; }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-9 { top: 42%; right: 42%;  --dur: 8.9s; --delay: -1.8s; --dx: 6px;  --rot: 9deg;   }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-10 { bottom: 26%; right: 10%; color: rgba(255, 174, 239, 0.86); --dur: 8.3s; --delay: -0.7s; --dx: -11px; --rot: -11deg; }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-11 { top: 72%; left: 44%;  --dur: 9.1s; --delay: -2.5s; --dx: 9px;  --rot: 10deg;  }
body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-12 { top: 26%; right: 32%; color: rgba(255, 184, 244, 0.88); --dur: 8.7s; --delay: -1s; --dx: -8px; --rot: -9deg; }

@keyframes radostLoaderLineSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(250%); }
}

@keyframes radostLoaderPulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(0, 229, 255, 0.24),
      0 0 18px rgba(255, 61, 222, 0.18);
  }
  50% {
    box-shadow:
      0 0 26px rgba(0, 229, 255, 0.42),
      0 0 24px rgba(255, 61, 222, 0.34);
  }
}

@keyframes radostLoaderShapeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.52;
  }
  50% {
    transform: translate3d(var(--dx, 8px), -18px, 0) rotate(var(--rot, 10deg));
    opacity: 0.98;
  }
}

@media (max-width: 760px) {
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-7,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-8,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-9,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-10,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-11,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape-12 {
    display: none;
  }

  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__line {
    width: min(280px, 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__line span,
  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__shape {
    animation: none !important;
    transform: none !important;
  }

  body.theme-radost.radost-v4 .lord-loader--radost .lord-loader__ring {
    animation: lordLoaderSpin 2.4s linear infinite !important;
  }
}

/* ---------- Lord Loader — Schastye variant ---------- */
body.theme-schastye.schastye-v4 .lord-loader--schastye {
  background:
    linear-gradient(155deg, rgba(5, 10, 32, 0.62), rgba(6, 12, 36, 0.68)),
    radial-gradient(circle at 22% 18%, rgba(250, 220, 145, 0.26), transparent 44%),
    radial-gradient(circle at 78% 80%, rgba(255, 206, 128, 0.22), transparent 52%),
    url("../schastye/disco-ball-main.webp") center / cover no-repeat;
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__inner {
  gap: 0.66rem;
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__ring {
  border: 3px solid rgba(201, 226, 255, 0.25);
  border-top-color: #ffd87e;
  border-right-color: #76c8ff;
  box-shadow:
    0 0 18px rgba(255, 216, 126, 0.28),
    0 0 20px rgba(118, 200, 255, 0.22);
  animation:
    lordLoaderSpin 0.94s linear infinite,
    schastyeLoaderPulse 2.2s ease-in-out infinite;
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__logo {
  font-size: clamp(40px, 4.6vw, 58px);
  letter-spacing: 0.07em;
  text-shadow:
    0 0 14px rgba(255, 216, 126, 0.28),
    0 0 18px rgba(118, 200, 255, 0.16);
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__sub {
  color: rgba(245, 250, 255, 0.9);
  letter-spacing: 0.19em;
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__line {
  width: min(320px, 68vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(230, 241, 255, 0.16);
  border: 1px solid rgba(221, 237, 255, 0.42);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 12px rgba(117, 196, 255, 0.2);
}

body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__line span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd87e 0%, #ffe9b4 34%, #7bc6ff 100%);
  box-shadow:
    0 0 14px rgba(255, 216, 126, 0.3),
    0 0 16px rgba(118, 200, 255, 0.24);
  animation: schastyeLoaderLineSweep 1.32s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes schastyeLoaderLineSweep {
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(270%); }
}

@keyframes schastyeLoaderPulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(255, 216, 126, 0.24),
      0 0 20px rgba(118, 200, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 26px rgba(255, 216, 126, 0.36),
      0 0 24px rgba(118, 200, 255, 0.3);
  }
}

@media (max-width: 760px) {
  body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__line {
    width: min(280px, 74vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__line span {
    animation: none !important;
    transform: none !important;
  }

  body.theme-schastye.schastye-v4 .lord-loader--schastye .lord-loader__ring {
    animation: lordLoaderSpin 2.4s linear infinite !important;
  }
}

/* ==========================================================================
   5. Radost Boot Loader
   ========================================================================== */
html.radost-boot-loading body.theme-radost.radost-v4 {
  overflow: hidden;
}

html.radost-boot-loading body.theme-radost.radost-v4 .page-shell {
  opacity: 0 !important;
  visibility: hidden !important;
}

.radost-boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 19%, rgba(0, 229, 255, 0.22), transparent 48%),
    radial-gradient(circle at 86% 23%, rgba(255, 61, 222, 0.2), transparent 52%),
    repeating-linear-gradient(
      90deg,
      rgba(244, 251, 255, 0) 0,
      rgba(244, 251, 255, 0) 50px,
      rgba(244, 251, 255, 0.04) 51px,
      rgba(244, 251, 255, 0) 52px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(244, 251, 255, 0) 0,
      rgba(244, 251, 255, 0) 50px,
      rgba(244, 251, 255, 0.03) 51px,
      rgba(244, 251, 255, 0) 52px
    ),
    linear-gradient(94deg, #083b78 0%, #155db8 37%, #6b45c5 67%, #be46b7 100%);
}

html.radost-boot-loading body.theme-radost.radost-v4 .radost-boot-loader {
  display: grid;
}

.radost-boot-loader__ambient {
  position: absolute;
  inset: 0;
}

.radost-boot-loader__shape {
  position: absolute;
  color: rgba(186, 237, 255, 0.66);
  text-shadow:
    0 0 14px rgba(57, 198, 255, 0.22),
    0 0 16px rgba(255, 61, 222, 0.16);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  animation: radostBootShapeFloat 8.4s ease-in-out infinite;
}

.radost-boot-loader__shape.s1 { top: 18%; left: 7%; }
.radost-boot-loader__shape.s2 { top: 28%; left: 22%; }
.radost-boot-loader__shape.s3 { top: 22%; right: 17%; }
.radost-boot-loader__shape.s4 { top: 35%; right: 8%; }
.radost-boot-loader__shape.s5 { bottom: 16%; right: 30%; }
.radost-boot-loader__shape.s6 { bottom: 27%; right: 10%; }
.radost-boot-loader__shape.s7 { bottom: 19%; left: 27%; }
.radost-boot-loader__shape.s8 { bottom: 28%; left: 45%; }

.radost-boot-loader__inner {
  display: grid;
  justify-items: center;
  gap: 10px;
  z-index: 2;
}

.radost-boot-loader__ring {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 3px solid rgba(173, 236, 255, 0.28);
  border-top-color: #00e5ff;
  border-right-color: #ff3dde;
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.28),
    0 0 26px rgba(255, 61, 222, 0.18);
  animation: lordLoaderSpin 0.94s linear infinite;
}

.radost-boot-loader__logo {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: 0.06em;
  color: transparent;
  background: linear-gradient(104deg, #fff4bf 0%, #ffe389 34%, #f9ca52 68%, #eaa723 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 16px rgba(247, 199, 77, 0.3);
}

.radost-boot-loader__sub {
  color: rgba(206, 229, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.radost-boot-loader__line {
  width: min(356px, 66vw);
  height: 5px;
  border-radius: 999px;
  border: 1px solid rgba(173, 236, 255, 0.5);
  background: rgba(211, 238, 255, 0.12);
  overflow: hidden;
  margin-top: 4px;
}

.radost-boot-loader__line span {
  display: block;
  height: 100%;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00e5ff 0%, #39c6ff 38%, #ff3dde 100%);
  box-shadow:
    0 0 12px rgba(0, 229, 255, 0.32),
    0 0 14px rgba(255, 61, 222, 0.2);
  animation: radostBootLineSweep 1.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes radostBootLineSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(250%); }
}

@keyframes radostBootShapeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.54;
  }
  50% {
    transform: translate3d(0, -14px, 0);
    opacity: 0.94;
  }
}

/* ==========================================================================
   6. Header  (canonical: header-main-clone.css, без !important)
   ========================================================================== */

/* --- Base shell --------------------------------------------------------- */
body.page-main .main-header-clone,
body.page-love .main-header-clone,
body.theme-schastye .main-header-clone,
body.theme-radost .main-header-clone,
body.theme-radost.radost-v2 .main-header-clone {
  --clone-shell-bg: linear-gradient(130deg, rgba(14, 28, 89, 0.9) 0%, rgba(21, 40, 118, 0.86) 52%, rgba(13, 25, 76, 0.9) 100%);
  --clone-shell-border: rgba(255, 206, 96, 0.38);
  --clone-shell-shadow:
    0 16px 36px rgba(0, 6, 28, 0.44),
    inset 0 1px 0 rgba(255, 239, 191, 0.18);
  --clone-link: #f5d787;
  --clone-link-hover: #ffe9b1;
  --clone-link-active-bg: rgba(255, 229, 161, 0.14);
  --clone-link-active-border: rgba(255, 230, 173, 0.38);
  --clone-cta-bg: linear-gradient(112deg, #fff6d8 0%, #f3d27d 34%, #d8a84f 72%, #aa7123 100%);
  --clone-cta-text: #142b66;
  --clone-mobile-bg: linear-gradient(145deg, rgba(15, 27, 86, 0.97), rgba(22, 35, 104, 0.94));
  --clone-panel-bg: linear-gradient(145deg, rgba(8, 18, 55, 0.97), rgba(14, 27, 78, 0.94));
  position: sticky;
  top: 10px;
  z-index: 64;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  isolation: isolate;
}

body.page-main .main-header-clone::before,
body.page-love .main-header-clone::before,
body.page-main .main-header-clone::after,
body.page-love .main-header-clone::after,
body.theme-schastye .main-header-clone::before,
body.theme-schastye .main-header-clone::after,
body.theme-radost .main-header-clone::before,
body.theme-radost .main-header-clone::after,
body.theme-radost.radost-v2 .main-header-clone::before,
body.theme-radost.radost-v2 .main-header-clone::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .container,
body.page-love .main-header-clone .container,
body.theme-schastye .main-header-clone .container,
body.theme-radost .main-header-clone .container,
body.theme-radost.radost-v2 .main-header-clone .container {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

/* --- Header row --------------------------------------------------------- */
body.page-main .main-header-clone .header-row,
body.page-love .main-header-clone .header-row,
body.theme-schastye .main-header-clone .header-row,
body.theme-radost .main-header-clone .header-row,
body.theme-radost.radost-v2 .main-header-clone .header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "nav brand actions";
  grid-auto-flow: column;
  align-items: center;
  gap: 0.9rem;
  padding: 0 clamp(0.88rem, 2vw, 1.45rem);
  border-radius: 44px;
  border: 1px solid var(--clone-shell-border);
  background: var(--clone-shell-bg);
  box-shadow: var(--clone-shell-shadow);
  backdrop-filter: blur(18px) saturate(148%);
  -webkit-backdrop-filter: blur(18px) saturate(148%);
  position: relative;
  z-index: 2;
}

body.page-main .main-header-clone .header-row > *,
body.page-love .main-header-clone .header-row > *,
body.theme-schastye .main-header-clone .header-row > *,
body.theme-radost .main-header-clone .header-row > *,
body.theme-radost.radost-v2 .main-header-clone .header-row > * {
  align-self: center;
}

/* --- Site nav ----------------------------------------------------------- */
body.page-main .main-header-clone .header-row > .site-nav,
body.page-love .main-header-clone .header-row > .site-nav,
body.theme-schastye .main-header-clone .header-row > .site-nav,
body.theme-radost .main-header-clone .header-row > .site-nav,
body.theme-radost.radost-v2 .main-header-clone .header-row > .site-nav {
  grid-area: nav;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-main .main-header-clone .site-nav ul,
body.page-love .main-header-clone .site-nav ul,
body.theme-schastye .main-header-clone .site-nav ul,
body.theme-radost .main-header-clone .site-nav ul,
body.theme-radost.radost-v2 .main-header-clone .site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.86rem, 1.2vw, 1.35rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

body.page-main .main-header-clone .site-nav a,
body.page-love .main-header-clone .site-nav a,
body.theme-schastye .main-header-clone .site-nav a,
body.theme-radost .main-header-clone .site-nav a,
body.theme-radost.radost-v2 .main-header-clone .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.3rem 0.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--clone-link);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.34);
  overflow: visible;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

body.page-main .main-header-clone .site-nav a:hover,
body.page-love .main-header-clone .site-nav a:hover,
body.page-main .main-header-clone .site-nav a:focus-visible,
body.page-love .main-header-clone .site-nav a:focus-visible,
body.theme-schastye .main-header-clone .site-nav a:hover,
body.theme-schastye .main-header-clone .site-nav a:focus-visible,
body.theme-radost .main-header-clone .site-nav a:hover,
body.theme-radost .main-header-clone .site-nav a:focus-visible,
body.theme-radost.radost-v2 .main-header-clone .site-nav a:hover,
body.theme-radost.radost-v2 .main-header-clone .site-nav a:focus-visible {
  color: var(--clone-link-hover);
  background: var(--clone-link-active-bg);
  border-color: var(--clone-link-active-border);
  transform: translateY(-1px);
}

body.page-main .main-header-clone .site-nav a[aria-current="page"],
body.page-love .main-header-clone .site-nav a[aria-current="page"],
body.theme-schastye .main-header-clone .site-nav a[aria-current="page"],
body.theme-radost .main-header-clone .site-nav a[aria-current="page"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[aria-current="page"] {
  color: var(--clone-link);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

/* --- Brand -------------------------------------------------------------- */
body.page-main .main-header-clone .header-row > .brand,
body.page-love .main-header-clone .header-row > .brand,
body.theme-schastye .main-header-clone .header-row > .brand,
body.theme-radost .main-header-clone .header-row > .brand,
body.theme-radost.radost-v2 .main-header-clone .header-row > .brand {
  grid-area: brand;
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  line-height: 1;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin: 0;
  padding: 0;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost.radost-v2 .main-header-clone .brand::before {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::after,
body.theme-radost.radost-v2 .main-header-clone .brand::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big,
body.theme-radost.radost-v2 .main-header-clone .brand-big {
  order: 2;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 0.98;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(108deg, #fff8e7 0%, #f0cc76 32%, #deab53 55%, #ffebba 78%, #d1943e 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 6px 24px rgba(232, 180, 84, 0.28);
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small,
body.theme-radost.radost-v2 .main-header-clone .brand-small {
  display: none;
}

/* --- Header actions ----------------------------------------------------- */
body.page-main .main-header-clone .header-row > .header-actions,
body.page-love .main-header-clone .header-row > .header-actions,
body.theme-schastye .main-header-clone .header-row > .header-actions,
body.theme-radost .main-header-clone .header-row > .header-actions,
body.theme-radost.radost-v2 .main-header-clone .header-row > .header-actions {
  grid-area: actions;
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  margin: 0;
}

body.page-main .main-header-clone .header-contact-menu,
body.page-love .main-header-clone .header-contact-menu,
body.theme-schastye .main-header-clone .header-contact-menu,
body.theme-radost .main-header-clone .header-contact-menu,
body.theme-radost.radost-v2 .main-header-clone .header-contact-menu {
  position: relative;
}

body.page-main .main-header-clone .header-contact-menu > summary,
body.page-love .main-header-clone .header-contact-menu > summary,
body.theme-schastye .main-header-clone .header-contact-menu > summary,
body.theme-radost .main-header-clone .header-contact-menu > summary,
body.theme-radost.radost-v2 .main-header-clone .header-contact-menu > summary {
  list-style: none;
  cursor: pointer;
}

body.page-main .main-header-clone .header-contact-menu > summary::-webkit-details-marker,
body.page-love .main-header-clone .header-contact-menu > summary::-webkit-details-marker,
body.theme-schastye .main-header-clone .header-contact-menu > summary::-webkit-details-marker,
body.theme-radost .main-header-clone .header-contact-menu > summary::-webkit-details-marker,
body.theme-radost.radost-v2 .main-header-clone .header-contact-menu > summary::-webkit-details-marker {
  display: none;
}

body.page-main .main-header-clone .header-contact-trigger,
body.page-love .main-header-clone .header-contact-trigger,
body.theme-schastye .main-header-clone .header-contact-trigger,
body.theme-radost .main-header-clone .header-contact-trigger,
body.theme-radost.radost-v2 .main-header-clone .header-contact-trigger {
  min-height: 44px;
  min-width: 148px;
  padding-inline: 1.18rem;
}

body.page-main .main-header-clone .header-contact-panel,
body.page-love .main-header-clone .header-contact-panel,
body.theme-schastye .main-header-clone .header-contact-panel,
body.theme-radost .main-header-clone .header-contact-panel,
body.theme-radost.radost-v2 .main-header-clone .header-contact-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.58rem);
  min-width: 198px;
  display: grid;
  gap: 0.42rem;
  padding: 0.56rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 142, 0.38);
  background: var(--clone-panel-bg);
  box-shadow: 0 18px 32px rgba(2, 7, 21, 0.44);
  backdrop-filter: blur(18px) saturate(148%);
  -webkit-backdrop-filter: blur(18px) saturate(148%);
}

body.page-main .main-header-clone .header-contact-menu:not([open]) .header-contact-panel,
body.page-love .main-header-clone .header-contact-menu:not([open]) .header-contact-panel,
body.theme-schastye .main-header-clone .header-contact-menu:not([open]) .header-contact-panel,
body.theme-radost .main-header-clone .header-contact-menu:not([open]) .header-contact-panel,
body.theme-radost.radost-v2 .main-header-clone .header-contact-menu:not([open]) .header-contact-panel {
  display: none;
}

body.page-main .main-header-clone .header-contact-link,
body.page-love .main-header-clone .header-contact-link,
body.theme-schastye .main-header-clone .header-contact-link,
body.theme-radost .main-header-clone .header-contact-link,
body.theme-radost.radost-v2 .main-header-clone .header-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 230, 174, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #edf4ff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

body.page-main .main-header-clone .header-contact-link:hover,
body.page-main .main-header-clone .header-contact-link:focus-visible,
body.page-love .main-header-clone .header-contact-link:hover,
body.page-love .main-header-clone .header-contact-link:focus-visible,
body.theme-schastye .main-header-clone .header-contact-link:hover,
body.theme-schastye .main-header-clone .header-contact-link:focus-visible,
body.theme-radost .main-header-clone .header-contact-link:hover,
body.theme-radost .main-header-clone .header-contact-link:focus-visible,
body.theme-radost.radost-v2 .main-header-clone .header-contact-link:hover,
body.theme-radost.radost-v2 .main-header-clone .header-contact-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 224, 147, 0.36);
}

body.page-main .main-header-clone .header-contact-link--phone,
body.page-love .main-header-clone .header-contact-link--phone,
body.theme-schastye .main-header-clone .header-contact-link--phone,
body.theme-radost .main-header-clone .header-contact-link--phone,
body.theme-radost.radost-v2 .main-header-clone .header-contact-link--phone {
  background: linear-gradient(125deg, rgba(255, 226, 145, 0.18), rgba(255, 173, 76, 0.12));
  color: #fff2ca;
}

/* --- Menu toggle -------------------------------------------------------- */
body.page-main .main-header-clone .header-row > .menu-toggle,
body.page-love .main-header-clone .header-row > .menu-toggle,
body.theme-schastye .main-header-clone .header-row > .menu-toggle,
body.theme-radost .main-header-clone .header-row > .menu-toggle,
body.theme-radost.radost-v2 .main-header-clone .header-row > .menu-toggle {
  grid-column: 3;
  justify-self: end;
  position: absolute;
  right: clamp(0.88rem, 2vw, 1.45rem);
  top: 50%;
  transform: translateY(-50%);
}

body.page-main .main-header-clone .menu-toggle,
body.page-love .main-header-clone .menu-toggle,
body.theme-schastye .main-header-clone .menu-toggle,
body.theme-radost .main-header-clone .menu-toggle,
body.theme-radost.radost-v2 .main-header-clone .menu-toggle {
  display: none;
  color: var(--clone-link);
  background: rgba(255, 247, 236, 0.12);
  border-color: rgba(255, 216, 151, 0.34);
}

/* --- CTA button --------------------------------------------------------- */
body.page-main .main-header-clone .header-actions .btn-primary,
body.page-love .main-header-clone .header-actions .btn-primary,
body.theme-schastye .main-header-clone .header-actions .btn-primary,
body.theme-radost .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v2 .main-header-clone .header-actions .btn-primary {
  min-height: 44px;
  padding: 0.74rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 101, 0.56);
  color: var(--clone-cta-text);
  background: var(--clone-cta-bg);
  box-shadow:
    0 12px 28px rgba(20, 12, 7, 0.28),
    inset 0 0 0 1px rgba(255, 247, 220, 0.24);
}

body.page-main .main-header-clone .header-actions .btn-primary:hover,
body.page-love .main-header-clone .header-actions .btn-primary:hover,
body.theme-schastye .main-header-clone .header-actions .btn-primary:hover,
body.theme-radost .main-header-clone .header-actions .btn-primary:hover,
body.theme-radost.radost-v2 .main-header-clone .header-actions .btn-primary:hover {
  color: #18263f;
  transform: translateY(-1px);
  box-shadow:
    0 15px 32px rgba(18, 11, 7, 0.34),
    inset 0 0 0 1px rgba(255, 247, 220, 0.3);
}

/* --- Mobile ≤ 760px ----------------------------------------------------- */
@media (max-width: 760px) {
  body.page-main .main-header-clone,
  body.page-love .main-header-clone,
  body.theme-schastye .main-header-clone,
  body.theme-radost .main-header-clone,
  body.theme-radost.radost-v2 .main-header-clone {
    top: 0;
  }

  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row,
  body.theme-schastye .main-header-clone .header-row,
  body.theme-radost .main-header-clone .header-row,
  body.theme-radost.radost-v2 .main-header-clone .header-row {
    display: flex;
    min-height: 72px;
    border-radius: 0 0 24px 24px;
    padding-inline: 0.92rem;
    gap: 0.74rem;
    grid-template-areas: none;
  }

  body.page-main .main-header-clone .menu-toggle,
  body.page-love .main-header-clone .menu-toggle,
  body.theme-schastye .main-header-clone .menu-toggle,
  body.theme-radost .main-header-clone .menu-toggle,
  body.theme-radost.radost-v2 .main-header-clone .menu-toggle {
    display: inline-flex;
    position: static;
    right: auto;
    top: auto;
    transform: none;
  }

  body.page-main .main-header-clone .header-row > .header-actions,
  body.page-love .main-header-clone .header-row > .header-actions,
  body.theme-schastye .main-header-clone .header-row > .header-actions,
  body.theme-radost .main-header-clone .header-row > .header-actions,
  body.theme-radost.radost-v2 .main-header-clone .header-row > .header-actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  body.page-main .main-header-clone .header-contact-trigger,
  body.page-love .main-header-clone .header-contact-trigger,
  body.theme-schastye .main-header-clone .header-contact-trigger,
  body.theme-radost .main-header-clone .header-contact-trigger,
  body.theme-radost.radost-v2 .main-header-clone .header-contact-trigger {
    min-height: 40px;
    min-width: 124px;
    padding-inline: 0.9rem;
    font-size: 0.82rem;
  }

  body.page-main .main-header-clone .site-nav,
  body.page-love .main-header-clone .site-nav,
  body.theme-schastye .main-header-clone .site-nav,
  body.theme-radost .main-header-clone .site-nav,
  body.theme-radost.radost-v2 .main-header-clone .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    border-radius: 20px;
    border: 1px solid var(--clone-shell-border);
    background: var(--clone-mobile-bg);
    box-shadow: 0 12px 26px rgba(8, 11, 20, 0.2);
    padding: 0.78rem 0.94rem 0.96rem;
  }

  body.page-main .main-header-clone .site-nav.open,
  body.page-love .main-header-clone .site-nav.open,
  body.theme-schastye .main-header-clone .site-nav.open,
  body.theme-radost .main-header-clone .site-nav.open,
  body.theme-radost.radost-v2 .main-header-clone .site-nav.open {
    display: block;
  }

  body.page-main .main-header-clone .site-nav ul,
  body.page-love .main-header-clone .site-nav ul,
  body.theme-schastye .main-header-clone .site-nav ul,
  body.theme-radost .main-header-clone .site-nav ul,
  body.theme-radost.radost-v2 .main-header-clone .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.56rem;
  }

  body.page-main .main-header-clone .site-nav a,
  body.page-love .main-header-clone .site-nav a,
  body.theme-schastye .main-header-clone .site-nav a,
  body.theme-radost .main-header-clone .site-nav a,
  body.theme-radost.radost-v2 .main-header-clone .site-nav a {
    justify-content: flex-start;
    color: #1e2736;
    text-shadow: none;
    padding: 0.44rem 0.56rem;
  }

  body.page-main .main-header-clone .brand::before,
  body.page-love .main-header-clone .brand::before,
  body.theme-schastye .main-header-clone .brand::before,
  body.theme-radost .main-header-clone .brand::before,
  body.theme-radost.radost-v2 .main-header-clone .brand::before {
    width: 30px;
    height: 12px;
    top: -12px;
  }

  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.theme-radost.radost-v2 .main-header-clone .brand-big {
    font-size: 28px;
  }

  body.page-main .main-header-clone .header-contact-panel,
  body.page-love .main-header-clone .header-contact-panel,
  body.theme-schastye .main-header-clone .header-contact-panel,
  body.theme-radost .main-header-clone .header-contact-panel,
  body.theme-radost.radost-v2 .main-header-clone .header-contact-panel {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: min(86vw, 212px);
  }

  body.page-main .main-header-clone .menu-toggle,
  body.page-love .main-header-clone .menu-toggle,
  body.theme-schastye .main-header-clone .menu-toggle,
  body.theme-radost .main-header-clone .menu-toggle,
  body.theme-radost.radost-v2 .main-header-clone .menu-toggle {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-main .main-header-clone .site-nav a,
  body.page-love .main-header-clone .site-nav a,
  body.theme-schastye .main-header-clone .site-nav a,
  body.theme-radost .main-header-clone .site-nav a,
  body.theme-radost.radost-v2 .main-header-clone .site-nav a {
    transition: none;
  }
}

/* --- LORD Final Logo Swap v3 -------------------------------------------- */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand,
body.theme-radost.radost-v2 .main-header-clone .brand {
  width: clamp(132px, 14vw, 196px);
  height: clamp(42px, 4.8vw, 70px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 0;
  background: none;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::after,
body.theme-radost.radost-v2 .main-header-clone .brand::before,
body.theme-radost.radost-v2 .main-header-clone .brand::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-big,
body.theme-radost.radost-v2 .main-header-clone .brand-small,
body.theme-radost.radost-v2 .main-header-clone .brand-big {
  display: none;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand,
  body.page-love .main-header-clone .brand,
  body.theme-schastye .main-header-clone .brand,
  body.theme-radost .main-header-clone .brand,
  body.theme-radost.radost-v2 .main-header-clone .brand {
    width: 144px;
    height: 48px;
  }
}

/* --- Love Header Cloud Theme v5 ----------------------------------------- */
body.page-main .main-header-clone,
body.page-love .main-header-clone {
  --clone-shell-bg: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(251, 248, 241, 0.98) 52%,
    rgba(246, 240, 230, 0.98) 100%
  );
  --clone-shell-border: rgba(214, 185, 128, 0.62);
  --clone-shell-shadow:
    0 14px 36px rgba(150, 126, 84, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  --clone-link: #73501a;
  --clone-link-hover: #5f3d0f;
  --clone-link-active-bg: rgba(214, 177, 108, 0.18);
  --clone-link-active-border: rgba(198, 151, 74, 0.4);
  --clone-cta-bg: linear-gradient(112deg, #fff7dc 0%, #efcf84 44%, #d49f45 100%);
  --clone-cta-text: #4a3310;
  --clone-mobile-bg: rgba(252, 248, 241, 0.99);
}

body.page-main .main-header-clone .header-row,
body.page-love .main-header-clone .header-row {
  border-radius: 56px;
  backdrop-filter: blur(10px) saturate(1.06);
  overflow: visible;
  isolation: isolate;
}

body.page-main .main-header-clone .header-row::before,
body.page-love .main-header-clone .header-row::before,
body.page-main .main-header-clone .header-row::after,
body.page-love .main-header-clone .header-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body.page-main .main-header-clone .header-row::before,
body.page-love .main-header-clone .header-row::before {
  inset: -10px -12px -8px;
  border-radius: 62px;
  background:
    radial-gradient(36px 26px at 10% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 25% 8%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 41% 6%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 58% 6%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 75% 8%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(36px 26px at 90% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
}

body.page-main .main-header-clone .header-row::after,
body.page-love .main-header-clone .header-row::after {
  inset: -2px;
  border-radius: 56px;
  background: radial-gradient(110% 120% at 50% -30%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
}

body.page-main .main-header-clone .site-nav a,
body.page-love .main-header-clone .site-nav a {
  text-shadow: none;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row {
    border-radius: 34px;
  }

  body.page-main .main-header-clone .header-row::before,
  body.page-love .main-header-clone .header-row::before {
    inset: -6px -6px -6px;
    border-radius: 40px;
    background:
      radial-gradient(28px 18px at 15% 12%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
      radial-gradient(30px 20px at 50% 8%, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0) 100%),
      radial-gradient(28px 18px at 85% 12%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.86;
  }

  body.page-main .main-header-clone .header-row::after,
  body.page-love .main-header-clone .header-row::after {
    border-radius: 34px;
  }
}

/* --- Header Unified LORD Thin v30 Final Lock ---------------------------- */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand,
body.theme-radost.radost-v2 .main-header-clone .brand,
body.theme-radost.radost-v3 .main-header-clone .brand,
body.theme-radost.radost-v4 .main-header-clone .brand {
  min-height: 56px;
  overflow: visible;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::after,
body.theme-radost.radost-v2 .main-header-clone .brand::before,
body.theme-radost.radost-v2 .main-header-clone .brand::after,
body.theme-radost.radost-v3 .main-header-clone .brand::before,
body.theme-radost.radost-v3 .main-header-clone .brand::after,
body.theme-radost.radost-v4 .main-header-clone .brand::before,
body.theme-radost.radost-v4 .main-header-clone .brand::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small,
body.theme-radost.radost-v2 .main-header-clone .brand-small,
body.theme-radost.radost-v3 .main-header-clone .brand-small,
body.theme-radost.radost-v4 .main-header-clone .brand-small {
  display: none;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big,
body.theme-radost.radost-v2 .main-header-clone .brand-big,
body.theme-radost.radost-v3 .main-header-clone .brand-big,
body.theme-radost.radost-v4 .main-header-clone .brand-big {
  display: block;
  order: 1;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(30px, 2.25vw, 38px);
  font-weight: 400;
  letter-spacing: 0.085em;
  line-height: 1.03;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(112deg, #fff2c7 0%, #f8cf57 37%, #f3bc40 65%, #e3a029 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: none;
}

/* --- Nav link direction colors ------------------------------------------ */
body.page-main .main-header-clone .site-nav a[href*="schastye"],
body.page-love .main-header-clone .site-nav a[href*="schastye"],
body.theme-schastye .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="schastye"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ffe8aa 0%, #f8cf57 35%, #f2b32d 70%, #ffd876 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .site-nav a[href*="love"],
body.page-love .main-header-clone .site-nav a[href*="love"],
body.theme-schastye .main-header-clone .site-nav a[href*="love"],
body.theme-radost .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="love"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ff9fd0 0%, #ff5fa2 38%, #c11f67 68%, #671530 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .site-nav a[href*="radost"],
body.page-love .main-header-clone .site-nav a[href*="radost"],
body.theme-schastye .main-header-clone .site-nav a[href*="radost"],
body.theme-radost .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="radost"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ffd38c 0%, #ffb553 34%, #ff8b2b 67%, #ff6a00 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .header-actions .btn-primary,
body.page-love .main-header-clone .header-actions .btn-primary,
body.theme-schastye .main-header-clone .header-actions .btn-primary,
body.theme-radost .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v2 .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v3 .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v4 .main-header-clone .header-actions .btn-primary {
  color: #111;
  -webkit-text-fill-color: #111;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.theme-radost.radost-v2 .main-header-clone .brand-big,
  body.theme-radost.radost-v3 .main-header-clone .brand-big,
  body.theme-radost.radost-v4 .main-header-clone .brand-big {
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: 0.075em;
  }

  body.page-main .main-header-clone .site-nav a[href*="schastye"],
  body.page-love .main-header-clone .site-nav a[href*="schastye"],
  body.page-main .main-header-clone .site-nav a[href*="love"],
  body.page-love .main-header-clone .site-nav a[href*="love"],
  body.page-main .main-header-clone .site-nav a[href*="radost"],
  body.page-love .main-header-clone .site-nav a[href*="radost"],
  body.theme-schastye .main-header-clone .site-nav a[href*="schastye"],
  body.theme-schastye .main-header-clone .site-nav a[href*="love"],
  body.theme-schastye .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost .main-header-clone .site-nav a[href*="love"],
  body.theme-radost .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="radost"] {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* --- Mobile Header Hierarchy Refresh v1 --------------------------------- */
@media (max-width: 760px) {
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title],
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title],
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title],
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title] {
    position: relative;
    display: inline-flex;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: calc(100% - 90px);
    min-height: 48px;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0.1rem 0;
    background: none;
    overflow: visible;
    text-align: left;
    line-height: 1;
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-small,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-small,
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-big,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-big,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-small,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-big,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-small,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title] .brand-big {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    transform: none;
    clip-path: none;
    filter: none;
    text-shadow: none;
    pointer-events: none;
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::before {
    content: attr(data-brand-kicker);
    margin: 0 0 0.16rem;
    font-size: clamp(0.56rem, 2vw, 0.72rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    color: transparent;
    background: linear-gradient(112deg, #fff3cf 0%, #f3c95c 44%, #c8882d 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    content: attr(data-brand-title);
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.72rem, 7vw, 2.45rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    font-weight: 700;
    text-transform: none;
    white-space: nowrap;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(115deg, #ffbfd9 0%, #ff8fb9 34%, #ff5d9a 64%, #b52f67 100%);
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(112deg, #fff3cf 0%, #f3c95c 44%, #c8882d 100%);
  }

  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(112deg, #ffd186 0%, #ffb54f 32%, #ff8a1f 62%, #d95c00 100%);
  }

  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(108deg, #fff6b8 0%, #ffe36f 34%, #ffc928 64%, #d89a00 100%);
  }
}

/* --- Header Gold Sync v2 ------------------------------------------------ */
body.page-main .main-header-clone,
body.page-love .main-header-clone,
body.theme-schastye .main-header-clone,
body.theme-radost .main-header-clone {
  --clone-shell-border: rgba(251, 188, 54, 0.28);
  --clone-link: var(--gold-3, #fbbc36);
  --clone-link-hover: var(--gold-1, #fcce6d);
  --clone-link-active-bg: rgba(251, 188, 54, 0.14);
  --clone-link-active-border: rgba(251, 188, 54, 0.38);
  --clone-cta-bg: var(--gold-gradient, linear-gradient(112deg, #fcce6d 0%, #fbc44f 34%, #fbbc36 68%, #faaf12 100%));
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big {
  background: var(--gold-gradient, linear-gradient(112deg, #fcce6d 0%, #fbc44f 34%, #fbbc36 68%, #faaf12 100%));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small {
  background: var(--gold-gradient, linear-gradient(112deg, #fcce6d 0%, #fbc44f 34%, #fbbc36 68%, #faaf12 100%));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Header Text Unclip Lock v12 ---------------------------------------- */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand {
  min-height: 58px;
  padding-block: 2px;
  overflow: visible;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big {
  display: block;
  line-height: 1.16;
  padding-block: 0.06em;
  overflow: visible;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small {
  line-height: 1.2;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand,
  body.page-love .main-header-clone .brand,
  body.theme-schastye .main-header-clone .brand,
  body.theme-radost .main-header-clone .brand {
    min-height: 46px;
  }

  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big {
    line-height: 1.15;
    padding-block: 0.05em;
  }
}

/* --- Global Header Brand + Active Crown v7 ------------------------------ */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand,
body.theme-radost.radost-v2 .main-header-clone .brand,
body.theme-radost.radost-v3 .main-header-clone .brand,
body.theme-radost.radost-v4 .main-header-clone .brand {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  background: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::after,
body.theme-radost.radost-v2 .main-header-clone .brand::before,
body.theme-radost.radost-v2 .main-header-clone .brand::after,
body.theme-radost.radost-v3 .main-header-clone .brand::before,
body.theme-radost.radost-v3 .main-header-clone .brand::after,
body.theme-radost.radost-v4 .main-header-clone .brand::before,
body.theme-radost.radost-v4 .main-header-clone .brand::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small,
body.theme-radost.radost-v2 .main-header-clone .brand-small,
body.theme-radost.radost-v3 .main-header-clone .brand-small,
body.theme-radost.radost-v4 .main-header-clone .brand-small {
  display: block;
  order: 2;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.06;
  letter-spacing: 0.14em;
  text-transform: none;
  color: transparent;
  background: linear-gradient(104deg, #f7e7b6 0%, #e4bc63 45%, #b87a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big,
body.theme-radost.radost-v2 .main-header-clone .brand-big,
body.theme-radost.radost-v3 .main-header-clone .brand-big,
body.theme-radost.radost-v4 .main-header-clone .brand-big {
  display: block;
  order: 1;
  font-size: clamp(30px, 2.35vw, 44px);
  line-height: 0.95;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(108deg, #fff8e7 0%, #f0cc76 32%, #deab53 55%, #ffebba 78%, #d1943e 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 6px 24px rgba(232, 180, 84, 0.28);
  animation: cloneGoldFlow 6.8s ease-in-out infinite;
}

body.page-main .main-header-clone .site-nav li,
body.page-love .main-header-clone .site-nav li,
body.theme-schastye .main-header-clone .site-nav li,
body.theme-radost .main-header-clone .site-nav li,
body.theme-radost.radost-v2 .main-header-clone .site-nav li,
body.theme-radost.radost-v3 .main-header-clone .site-nav li,
body.theme-radost.radost-v4 .main-header-clone .site-nav li {
  position: relative;
}

body.page-main .main-header-clone .site-nav li.is-active-nav::after,
body.page-love .main-header-clone .site-nav li.is-active-nav::after,
body.theme-schastye .main-header-clone .site-nav li.is-active-nav::after,
body.theme-radost .main-header-clone .site-nav li.is-active-nav::after,
body.theme-radost.radost-v2 .main-header-clone .site-nav li.is-active-nav::after,
body.theme-radost.radost-v3 .main-header-clone .site-nav li.is-active-nav::after,
body.theme-radost.radost-v4 .main-header-clone .site-nav li.is-active-nav::after {
  content: "\1F451";
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(236, 181, 76, 0.56));
  animation: cloneCrownFly 2.35s ease-in-out infinite;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.theme-radost.radost-v2 .main-header-clone .brand-big,
  body.theme-radost.radost-v3 .main-header-clone .brand-big,
  body.theme-radost.radost-v4 .main-header-clone .brand-big {
    font-size: 24px;
  }

  body.page-main .main-header-clone .brand-small,
  body.page-love .main-header-clone .brand-small,
  body.theme-schastye .main-header-clone .brand-small,
  body.theme-radost .main-header-clone .brand-small,
  body.theme-radost.radost-v2 .main-header-clone .brand-small,
  body.theme-radost.radost-v3 .main-header-clone .brand-small,
  body.theme-radost.radost-v4 .main-header-clone .brand-small {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  body.page-main .main-header-clone .site-nav li.is-active-nav::after,
  body.page-love .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-schastye .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v2 .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v3 .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v4 .main-header-clone .site-nav li.is-active-nav::after {
    top: -13px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.theme-radost.radost-v2 .main-header-clone .brand-big,
  body.theme-radost.radost-v3 .main-header-clone .brand-big,
  body.theme-radost.radost-v4 .main-header-clone .brand-big,
  body.page-main .main-header-clone .site-nav li.is-active-nav::after,
  body.page-love .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-schastye .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v2 .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v3 .main-header-clone .site-nav li.is-active-nav::after,
  body.theme-radost.radost-v4 .main-header-clone .site-nav li.is-active-nav::after {
    animation: none;
  }
}

@keyframes cloneCrownFly {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-7px) rotate(8deg); }
}

@keyframes cloneGoldFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* --- Header Text Lock v9 ------------------------------------------------ */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand {
  width: auto;
  height: auto;
  min-height: 52px;
  padding: 0;
  margin: 0;
  gap: 2px;
  background: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  text-decoration: none;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::after,
body.page-main .main-header-clone .site-nav li.is-active-nav::after,
body.page-love .main-header-clone .site-nav li.is-active-nav::after,
body.theme-schastye .main-header-clone .site-nav li.is-active-nav::after,
body.theme-radost .main-header-clone .site-nav li.is-active-nav::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big {
  display: block;
  order: 1;
  font-size: clamp(27px, 2.05vw, 35px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(108deg, #fff8e7 0%, #f0cc76 32%, #deab53 55%, #ffebba 78%, #d1943e 100%);
  background-size: 210% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: none;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small {
  display: block;
  order: 2;
  margin-top: 1px;
  font-size: 10px;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(104deg, #f7e7b6 0%, #e4bc63 45%, #b87a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
}

body.page-main .main-header-clone .header-row,
body.page-love .main-header-clone .header-row,
body.theme-schastye .main-header-clone .header-row,
body.theme-radost .main-header-clone .header-row {
  min-height: 82px;
  overflow: visible;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand,
  body.page-love .main-header-clone .brand,
  body.theme-schastye .main-header-clone .brand,
  body.theme-radost .main-header-clone .brand {
    min-height: 44px;
    gap: 1px;
  }

  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big {
    font-size: 23px;
  }

  body.page-main .main-header-clone .brand-small,
  body.page-love .main-header-clone .brand-small,
  body.theme-schastye .main-header-clone .brand-small,
  body.theme-radost .main-header-clone .brand-small {
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row,
  body.theme-schastye .main-header-clone .header-row,
  body.theme-radost .main-header-clone .header-row {
    min-height: 72px;
  }
}

/* --- Header Text Stabilizer v10 ----------------------------------------- */
body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big {
  text-transform: uppercase;
  letter-spacing: 0.065em;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small {
  font-size: clamp(7px, 0.58vw, 8.5px);
  letter-spacing: 0.055em;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big {
    font-size: 22px;
  }

  body.page-main .main-header-clone .brand-small,
  body.page-love .main-header-clone .brand-small,
  body.theme-schastye .main-header-clone .brand-small,
  body.theme-radost .main-header-clone .brand-small {
    font-size: 7px;
    letter-spacing: 0.045em;
  }
}

/* --- Love Header Cloud Shape v11 ---------------------------------------- */
body.page-main .main-header-clone,
body.page-love .main-header-clone {
  --clone-shell-bg: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(251, 248, 241, 0.98) 52%,
    rgba(246, 240, 230, 0.98) 100%
  );
  --clone-shell-border: rgba(214, 185, 128, 0.62);
  --clone-shell-shadow:
    0 14px 36px rgba(150, 126, 84, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  --clone-link: #73501a;
  --clone-link-hover: #5f3d0f;
  --clone-link-active-bg: rgba(214, 177, 108, 0.18);
  --clone-link-active-border: rgba(198, 151, 74, 0.4);
  --clone-cta-bg: linear-gradient(112deg, #fff7dc 0%, #efcf84 44%, #d49f45 100%);
  --clone-cta-text: #4a3310;
  --clone-mobile-bg: rgba(252, 248, 241, 0.99);
}

body.page-main .main-header-clone .header-row,
body.page-love .main-header-clone .header-row {
  min-height: 82px;
  border-radius: 56px;
  overflow: visible;
  isolation: isolate;
  backdrop-filter: blur(10px) saturate(1.06);
}

body.page-main .main-header-clone .header-row::before,
body.page-love .main-header-clone .header-row::before,
body.page-main .main-header-clone .header-row::after,
body.page-love .main-header-clone .header-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body.page-main .main-header-clone .header-row::before,
body.page-love .main-header-clone .header-row::before {
  inset: -10px -12px -8px;
  border-radius: 62px;
  background:
    radial-gradient(36px 26px at 10% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 25% 8%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 41% 6%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 58% 6%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(44px 30px at 75% 8%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(36px 26px at 90% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
}

body.page-main .main-header-clone .header-row::after,
body.page-love .main-header-clone .header-row::after {
  inset: -2px;
  border-radius: 56px;
  background: radial-gradient(110% 120% at 50% -30%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
}

body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand {
  overflow: visible;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big {
  color: transparent;
  background: linear-gradient(108deg, #fff8e7 0%, #f0cc76 32%, #deab53 55%, #ffebba 78%, #d1943e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small {
  color: #1a1a1a;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row {
    border-radius: 34px;
  }

  body.page-main .main-header-clone .header-row::before,
  body.page-love .main-header-clone .header-row::before {
    inset: -6px -6px -6px;
    border-radius: 40px;
  }

  body.page-main .main-header-clone .header-row::after,
  body.page-love .main-header-clone .header-row::after {
    border-radius: 34px;
  }
}

/* --- Header Unified LORD Thin v30 FINAL (append-last) ------------------- */
body.page-main .main-header-clone .brand,
body.page-love .main-header-clone .brand,
body.theme-schastye .main-header-clone .brand,
body.theme-radost .main-header-clone .brand,
body.theme-radost.radost-v2 .main-header-clone .brand,
body.theme-radost.radost-v3 .main-header-clone .brand,
body.theme-radost.radost-v4 .main-header-clone .brand {
  min-height: 56px;
  overflow: visible;
}

body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.page-main .main-header-clone .brand::after,
body.page-love .main-header-clone .brand::after,
body.theme-schastye .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::after,
body.theme-radost .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::after,
body.theme-radost.radost-v2 .main-header-clone .brand::before,
body.theme-radost.radost-v2 .main-header-clone .brand::after,
body.theme-radost.radost-v3 .main-header-clone .brand::before,
body.theme-radost.radost-v3 .main-header-clone .brand::after,
body.theme-radost.radost-v4 .main-header-clone .brand::before,
body.theme-radost.radost-v4 .main-header-clone .brand::after {
  content: none;
  display: none;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small,
body.theme-radost.radost-v2 .main-header-clone .brand-small,
body.theme-radost.radost-v3 .main-header-clone .brand-small,
body.theme-radost.radost-v4 .main-header-clone .brand-small {
  display: none;
}

body.page-main .main-header-clone .brand-big,
body.page-love .main-header-clone .brand-big,
body.theme-schastye .main-header-clone .brand-big,
body.theme-radost .main-header-clone .brand-big,
body.theme-radost.radost-v2 .main-header-clone .brand-big,
body.theme-radost.radost-v3 .main-header-clone .brand-big,
body.theme-radost.radost-v4 .main-header-clone .brand-big {
  display: block;
  order: 1;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(30px, 2.25vw, 38px);
  font-weight: 400;
  letter-spacing: 0.085em;
  line-height: 1.03;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(112deg, #fff2c7 0%, #f8cf57 37%, #f3bc40 65%, #e3a029 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: none;
}

body.page-main .main-header-clone .site-nav a[href*="schastye"],
body.page-love .main-header-clone .site-nav a[href*="schastye"],
body.theme-schastye .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="schastye"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="schastye"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ffe8aa 0%, #f8cf57 35%, #f2b32d 70%, #ffd876 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .site-nav a[href*="love"],
body.page-love .main-header-clone .site-nav a[href*="love"],
body.theme-schastye .main-header-clone .site-nav a[href*="love"],
body.theme-radost .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="love"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="love"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ff9fd0 0%, #ff5fa2 38%, #c11f67 68%, #671530 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .site-nav a[href*="radost"],
body.page-love .main-header-clone .site-nav a[href*="radost"],
body.theme-schastye .main-header-clone .site-nav a[href*="radost"],
body.theme-radost .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="radost"],
body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="radost"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(112deg, #ffd38c 0%, #ffb553 34%, #ff8b2b 67%, #ff6a00 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

body.page-main .main-header-clone .header-actions .btn-primary,
body.page-love .main-header-clone .header-actions .btn-primary,
body.theme-schastye .main-header-clone .header-actions .btn-primary,
body.theme-radost .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v2 .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v3 .main-header-clone .header-actions .btn-primary,
body.theme-radost.radost-v4 .main-header-clone .header-actions .btn-primary {
  color: #111;
  -webkit-text-fill-color: #111;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.theme-radost.radost-v2 .main-header-clone .brand-big,
  body.theme-radost.radost-v3 .main-header-clone .brand-big,
  body.theme-radost.radost-v4 .main-header-clone .brand-big {
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: 0.075em;
  }

  body.page-main .main-header-clone .site-nav a[href*="schastye"],
  body.page-love .main-header-clone .site-nav a[href*="schastye"],
  body.page-main .main-header-clone .site-nav a[href*="love"],
  body.page-love .main-header-clone .site-nav a[href*="love"],
  body.page-main .main-header-clone .site-nav a[href*="radost"],
  body.page-love .main-header-clone .site-nav a[href*="radost"],
  body.theme-schastye .main-header-clone .site-nav a[href*="schastye"],
  body.theme-schastye .main-header-clone .site-nav a[href*="love"],
  body.theme-schastye .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost .main-header-clone .site-nav a[href*="love"],
  body.theme-radost .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v2 .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v3 .main-header-clone .site-nav a[href*="radost"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="schastye"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="love"],
  body.theme-radost.radost-v4 .main-header-clone .site-nav a[href*="radost"] {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* ==========================================================================
   7. Buttons base
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.74rem 1.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

/* ==========================================================================
   8. Forms base
   ========================================================================== */
.form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(114, 82, 58, 0.28);
  background: rgba(255, 249, 243, 0.9);
  border-radius: 11px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.form-status {
  font-size: 0.86rem;
  font-weight: 700;
  min-height: 1.1rem;
}

.form-status.success {
  color: #2b7c2b;
}

.form-status.error {
  color: #ae2d2d;
}

/* ==========================================================================
   9. Footer base
   ========================================================================== */
.page-footer {
  margin-top: 2.4rem;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(96, 68, 48, 0.2);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: right;
}

/* ==========================================================================
   10. Reveal animation
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: none;
}

body.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

body.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   11. Floating Call Widget — base only
   ========================================================================== */
.floating-call-widget {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 130;
  width: min(330px, calc(100vw - 24px));
  pointer-events: none;
}

.floating-call-widget > summary {
  list-style: none;
  pointer-events: auto;
  margin-left: auto;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 225, 152, 0.56);
  box-shadow: 0 14px 26px rgba(0, 8, 28, 0.42), 0 0 0 1px rgba(255, 239, 196, 0.24) inset;
  animation: floatingWidgetPulse 2.6s ease-in-out infinite;
}

.floating-call-widget > summary::-webkit-details-marker {
  display: none;
}

.floating-call-widget__icon {
  color: #fef7e2;
  font-size: 1.58rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(255, 215, 121, 0.55));
}

.floating-call-widget__panel {
  margin-top: 0.78rem;
  padding: 0.86rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 219, 142, 0.32);
  background: linear-gradient(145deg, rgba(8, 18, 50, 0.94), rgba(12, 28, 72, 0.9));
  box-shadow: 0 18px 36px rgba(0, 8, 24, 0.5);
  backdrop-filter: blur(11px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.floating-call-widget[open] .floating-call-widget__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-call-widget__title {
  margin: 0;
  color: #ffd978;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.floating-call-widget__phone {
  margin-top: 0.5rem;
  display: inline-flex;
  text-decoration: none;
  color: #f4f8ff;
  font-weight: 800;
  font-size: 1rem;
}

.floating-call-widget__actions {
  margin-top: 0.74rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.floating-call-widget__action {
  text-decoration: none;
  border-radius: 999px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f5faff;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-call-widget__action:hover,
.floating-call-widget__action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(1, 9, 29, 0.38);
  filter: saturate(1.08);
}

.floating-call-widget__action.action-tg {
  background: linear-gradient(130deg, #27a7e7 0%, #137dbc 100%);
  border-color: rgba(116, 214, 255, 0.38);
}

.floating-call-widget__action.action-call {
  background: linear-gradient(130deg, #2fc9d8 0%, #0f93b4 100%);
  border-color: rgba(120, 239, 255, 0.38);
}

@keyframes floatingWidgetPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 26px rgba(0, 8, 28, 0.42), 0 0 0 1px rgba(255, 239, 196, 0.24) inset;
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 18px 32px rgba(0, 8, 28, 0.46), 0 0 0 1px rgba(255, 239, 196, 0.24) inset, 0 0 24px rgba(255, 201, 109, 0.35);
  }
}

/* ==========================================================================
   Phase 1 — Unified Mobile Header: Liquid Glass + Gold Border
   All inner pages get identical frosted-glass header, gold outline,
   page-name branding via pseudo-elements, and standardised menu toggle.
   ========================================================================== */
@media (max-width: 760px) {

  /* --- 1a. Header shell — sticky liquid glass with gold border ----------- */
  body.page-main .main-header-clone,
  body.page-love .main-header-clone,
  body.theme-schastye .main-header-clone,
  body.theme-radost .main-header-clone {
    top: 6px !important;
    padding-inline: 6px;
  }

  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row,
  body.theme-schastye .main-header-clone .header-row,
  body.theme-radost .main-header-clone .header-row {
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    border-radius: 20px !important;
    border: 1.5px solid rgba(251, 188, 54, 0.5) !important;
    background-color: rgba(10, 22, 58, 0.48) !important;
    background-image:
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
      ) !important;
    box-shadow:
      0 8px 24px rgba(0, 6, 28, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(18px) saturate(160%) brightness(1.06) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.06) !important;
    padding-inline: 14px !important;
    overflow: visible !important;
    isolation: isolate;
  }

  /* Love page: remove cloud-shape pseudo-elements from header-row */
  body.page-main .main-header-clone .header-row::before,
  body.page-love .main-header-clone .header-row::before,
  body.page-main .main-header-clone .header-row::after,
  body.page-love .main-header-clone .header-row::after {
    display: none !important;
    content: none !important;
  }

  /* --- 1b. Brand — show page name via data-attribute pseudo-elements ----- */
  body.page-main .main-header-clone .brand,
  body.page-love .main-header-clone .brand,
  body.theme-schastye .main-header-clone .brand,
  body.theme-radost .main-header-clone .brand {
    flex: 1 !important;
    min-height: auto !important;
    min-width: 0 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0.1rem 0 !important;
    background: none !important;
    overflow: visible !important;
    text-align: left !important;
    line-height: 1 !important;
  }

  /* Visually hide original span text, keep for a11y */
  body.page-main .main-header-clone .brand .brand-small,
  body.page-love .main-header-clone .brand .brand-small,
  body.page-main .main-header-clone .brand .brand-big,
  body.page-love .main-header-clone .brand .brand-big,
  body.theme-schastye .main-header-clone .brand .brand-small,
  body.theme-schastye .main-header-clone .brand .brand-big,
  body.theme-radost .main-header-clone .brand .brand-small,
  body.theme-radost .main-header-clone .brand .brand-big {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  /* Re-enable pseudo-elements (override v30 FINAL "content:none") */
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    text-shadow: none !important;
    pointer-events: none !important;
  }

  /* Kicker line: "by LORD" — small gold text */
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::before,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::before {
    content: attr(data-brand-kicker) !important;
    margin: 0 0 0.12rem !important;
    font-size: 0.56rem !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-image: linear-gradient(112deg, #fff3cf 0%, #f3c95c 44%, #c8882d 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }

  /* Page title: "Любовь" / "Счастье" / "Радость" */
  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after,
  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    content: attr(data-brand-title) !important;
    margin: 0 !important;
    font-family: "Cormorant Garamond", "Times New Roman", serif !important;
    font-size: 1.55rem !important;
    line-height: 0.92 !important;
    letter-spacing: 0.03em !important;
    font-weight: 700 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }

  body.page-love .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(115deg, #ffbfd9 0%, #ff8fb9 34%, #ff5d9a 64%, #b52f67 100%) !important;
  }

  body.page-main .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(112deg, #fff3cf 0%, #f3c95c 44%, #c8882d 100%) !important;
  }

  body.theme-schastye .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(108deg, #fff6b8 0%, #ffe36f 34%, #ffc928 64%, #d89a00 100%) !important;
  }

  body.theme-radost .main-header-clone .brand[data-brand-kicker][data-brand-title]::after {
    background-image: linear-gradient(112deg, #ffd186 0%, #ffb54f 32%, #ff8a1f 62%, #d95c00 100%) !important;
  }

  /* --- 1c. Menu toggle — unified medium size, gold-accented -------------- */
  body.page-main .main-header-clone .menu-toggle,
  body.page-love .main-header-clone .menu-toggle,
  body.theme-schastye .main-header-clone .menu-toggle,
  body.theme-radost .main-header-clone .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    min-width: 40px !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    border-radius: 14px !important;
    border: 1.5px solid rgba(251, 188, 54, 0.45) !important;
    background: rgba(255, 247, 236, 0.08) !important;
    color: var(--lord-gold-100, #fcce6d) !important;
    -webkit-text-fill-color: var(--lord-gold-100, #fcce6d) !important;
    backdrop-filter: blur(10px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
    box-shadow: 0 4px 14px rgba(0, 6, 28, 0.22) !important;
    cursor: pointer;
    flex-shrink: 0;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-left: auto;
  }

  /* --- 1d. Dropdown nav — liquid glass with gold border ------------------- */
  body.page-main .main-header-clone .site-nav,
  body.page-love .main-header-clone .site-nav,
  body.theme-schastye .main-header-clone .site-nav,
  body.theme-radost .main-header-clone .site-nav {
    border-radius: 18px !important;
    border: 1.5px solid rgba(251, 188, 54, 0.45) !important;
    background-color: rgba(10, 22, 58, 0.6) !important;
    background-image:
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.03) 100%
      ) !important;
    box-shadow: 0 12px 32px rgba(0, 6, 28, 0.44) !important;
    backdrop-filter: blur(20px) saturate(160%) brightness(1.05) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) brightness(1.05) !important;
    padding: 0.78rem 0.94rem 0.96rem !important;
  }

  /* Nav links in dropdown: gold on dark glass */
  body.page-main .main-header-clone .site-nav a,
  body.page-love .main-header-clone .site-nav a,
  body.theme-schastye .main-header-clone .site-nav a,
  body.theme-radost .main-header-clone .site-nav a {
    color: #f5dfa0 !important;
    -webkit-text-fill-color: #f5dfa0 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 0.7rem !important;
    border-radius: 12px !important;
    border-color: transparent !important;
  }

  body.page-main .main-header-clone .site-nav a:hover,
  body.page-love .main-header-clone .site-nav a:hover,
  body.page-main .main-header-clone .site-nav a:active,
  body.page-love .main-header-clone .site-nav a:active,
  body.theme-schastye .main-header-clone .site-nav a:hover,
  body.theme-schastye .main-header-clone .site-nav a:active,
  body.theme-radost .main-header-clone .site-nav a:hover,
  body.theme-radost .main-header-clone .site-nav a:active {
    background: rgba(251, 188, 54, 0.15) !important;
    color: #ffe9b1 !important;
    -webkit-text-fill-color: #ffe9b1 !important;
  }

  /* Hide desktop-only header actions on mobile */
  body.page-main .main-header-clone .header-actions,
  body.page-love .main-header-clone .header-actions,
  body.theme-schastye .main-header-clone .header-actions,
  body.theme-radost .main-header-clone .header-actions {
    display: none !important;
  }
}

/* ==========================================================================
   Phase 2 — Remove redundant contact bars, keep only FAB
   ========================================================================== */
@media (max-width: 760px) {
  .mobile-contact-bar,
  .mobile-contact-bar--joy,
  .love-mobile-contact-bar {
    display: none !important;
  }
}

/* --- FAB color swap: Schastye → gold/orange, Radost → blue --------------- */
body.theme-schastye .floating-call-widget--schastye > summary {
  background: linear-gradient(136deg, rgba(251, 188, 54, 0.96) 0%, rgba(222, 152, 4, 0.96) 50%, rgba(250, 175, 18, 0.96) 100%) !important;
  border-color: rgba(255, 225, 152, 0.56) !important;
}

body.theme-radost .floating-call-widget--radost > summary {
  background: linear-gradient(136deg, rgba(25, 64, 178, 0.96) 0%, rgba(39, 116, 255, 0.96) 40%, rgba(111, 85, 255, 0.92) 100%) !important;
  border-color: rgba(140, 200, 255, 0.5) !important;
}

/* ==========================================================================
   LORD Round-2 header hard-stop overrides
   ========================================================================== */
body.page-main .main-header-clone .header-row::before,
body.page-main .main-header-clone .header-row::after,
body.page-love .main-header-clone .header-row::before,
body.page-love .main-header-clone .header-row::after,
body.theme-schastye .main-header-clone .header-row::before,
body.theme-schastye .main-header-clone .header-row::after,
body.theme-radost .main-header-clone .header-row::before,
body.theme-radost .main-header-clone .header-row::after,
body.page-main.page-team-profile .main-header-clone .header-row::before,
body.page-main.page-team-profile .main-header-clone .header-row::after,
body.page-main .main-header-clone .brand::before,
body.page-love .main-header-clone .brand::before,
body.theme-schastye .main-header-clone .brand::before,
body.theme-radost .main-header-clone .brand::before,
body.page-main.page-team-profile .main-header-clone .brand::before {
  content: none !important;
  display: none !important;
}

body.page-main .main-header-clone .brand-small,
body.page-love .main-header-clone .brand-small,
body.theme-schastye .main-header-clone .brand-small,
body.theme-radost .main-header-clone .brand-small,
body.page-main.page-team-profile .main-header-clone .brand-small {
  display: none !important;
}

@media (max-width: 1024px) {
  body.page-main .main-header-clone .header-actions,
  body.page-love .main-header-clone .header-actions,
  body.theme-schastye .main-header-clone .header-actions,
  body.theme-radost .main-header-clone .header-actions,
  body.page-main.page-team-profile .main-header-clone .header-actions {
    display: flex !important;
  }
}

html.lord-lite-mobile body.page-main .lord-loader--main-video,
html.lord-lite-mobile body.page-love .lord-loader--love,
html.lord-lite-mobile body.theme-schastye.schastye-v4 .lord-loader--schastye {
  display: grid !important;
}

html.lord-lite-mobile body.page-main.lord-loading,
html.lord-lite-mobile body.page-love.lord-loading,
html.lord-lite-mobile body.theme-schastye.schastye-v4.lord-loading {
  overflow: hidden !important;
}

html.lord-lite-mobile body.page-main.lord-loading .page-shell,
html.lord-lite-mobile body.page-love.lord-loading .page-shell,
html.lord-lite-mobile body.theme-schastye.schastye-v4.lord-loading .page-shell {
  opacity: 0 !important;
  visibility: hidden !important;
  animation: lordLoadingFailSafe 0s linear 5s forwards !important;
}

/* ==========================================================================
   LORD Wave 2 — shared header finalization
   ========================================================================== */
body.page-main .main-header-clone,
body.page-love .main-header-clone,
body.theme-schastye .main-header-clone,
body.theme-radost .main-header-clone,
body.page-main.page-team-profile .main-header-clone {
  --clone-shell-bg: linear-gradient(
    128deg,
    rgba(26, 47, 136, 0.72) 0%,
    rgba(38, 64, 164, 0.58) 28%,
    rgba(196, 154, 92, 0.18) 50%,
    rgba(34, 57, 156, 0.62) 72%,
    rgba(16, 31, 96, 0.76) 100%
  );
  --clone-shell-border: rgba(255, 213, 115, 0.46);
  --clone-shell-shadow:
    0 18px 38px rgba(5, 9, 28, 0.34),
    inset 0 1px 0 rgba(255, 240, 196, 0.18);
  --clone-cta-bg: linear-gradient(118deg, #fff6dd 0%, #f2cf74 30%, #e6ad39 62%, #c9861c 100%);
  --clone-cta-text: #17120d;
  --clone-mobile-bg: linear-gradient(145deg, rgba(19, 31, 95, 0.88), rgba(29, 47, 125, 0.82));
  --clone-panel-bg: linear-gradient(145deg, rgba(13, 24, 72, 0.9), rgba(22, 36, 96, 0.84));
}

body.page-main .main-header-clone .header-row,
body.page-love .main-header-clone .header-row,
body.theme-schastye .main-header-clone .header-row,
body.theme-radost .main-header-clone .header-row,
body.page-main.page-team-profile .main-header-clone .header-row {
  grid-template-columns: minmax(132px, 1fr) auto minmax(132px, 1fr) !important;
  gap: clamp(0.7rem, 1.8vw, 1rem) !important;
  min-height: 76px !important;
}

body.page-main .main-header-clone .header-row > .site-nav,
body.page-love .main-header-clone .header-row > .site-nav,
body.theme-schastye .main-header-clone .header-row > .site-nav,
body.theme-radost .main-header-clone .header-row > .site-nav,
body.page-main.page-team-profile .main-header-clone .header-row > .site-nav {
  position: absolute !important;
  top: calc(100% + 0.64rem) !important;
  left: 0 !important;
  right: 0 !important;
  display: none !important;
  grid-area: unset !important;
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
  align-self: start !important;
  padding: 0.88rem 0.96rem 1rem !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 215, 124, 0.34) !important;
  background: var(--clone-mobile-bg) !important;
  box-shadow: 0 18px 34px rgba(4, 9, 26, 0.32) !important;
  backdrop-filter: blur(20px) saturate(152%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(152%) !important;
  z-index: 8 !important;
}

body.page-main .main-header-clone .site-nav.open,
body.page-love .main-header-clone .site-nav.open,
body.theme-schastye .main-header-clone .site-nav.open,
body.theme-radost .main-header-clone .site-nav.open,
body.page-main.page-team-profile .main-header-clone .site-nav.open {
  display: block !important;
}

body.page-main .main-header-clone .site-nav ul,
body.page-love .main-header-clone .site-nav ul,
body.theme-schastye .main-header-clone .site-nav ul,
body.theme-radost .main-header-clone .site-nav ul,
body.page-main.page-team-profile .main-header-clone .site-nav ul {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.42rem !important;
}

body.page-main .main-header-clone .site-nav a,
body.page-love .main-header-clone .site-nav a,
body.theme-schastye .main-header-clone .site-nav a,
body.theme-radost .main-header-clone .site-nav a,
body.page-main.page-team-profile .main-header-clone .site-nav a {
  justify-content: flex-start !important;
  min-height: 42px !important;
  padding: 0.58rem 0.72rem !important;
  border: 1px solid transparent !important;
  color: #f4e5bc !important;
  text-shadow: none !important;
}

body.page-main .main-header-clone .site-nav a:hover,
body.page-main .main-header-clone .site-nav a:focus-visible,
body.page-love .main-header-clone .site-nav a:hover,
body.page-love .main-header-clone .site-nav a:focus-visible,
body.theme-schastye .main-header-clone .site-nav a:hover,
body.theme-schastye .main-header-clone .site-nav a:focus-visible,
body.theme-radost .main-header-clone .site-nav a:hover,
body.theme-radost .main-header-clone .site-nav a:focus-visible,
body.page-main.page-team-profile .main-header-clone .site-nav a:hover,
body.page-main.page-team-profile .main-header-clone .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 225, 152, 0.28) !important;
  color: #fff3cf !important;
  transform: none !important;
}

body.page-main .main-header-clone .site-nav a[aria-current="page"],
body.page-love .main-header-clone .site-nav a[aria-current="page"],
body.theme-schastye .main-header-clone .site-nav a[aria-current="page"],
body.theme-radost .main-header-clone .site-nav a[aria-current="page"],
body.page-main.page-team-profile .main-header-clone .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 225, 152, 0.22) !important;
  color: #fff3cf !important;
}

body.page-main .main-header-clone .header-row > .menu-toggle,
body.page-love .main-header-clone .header-row > .menu-toggle,
body.theme-schastye .main-header-clone .header-row > .menu-toggle,
body.theme-radost .main-header-clone .header-row > .menu-toggle,
body.page-main.page-team-profile .main-header-clone .header-row > .menu-toggle {
  position: static !important;
  grid-column: 1 !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  min-width: 120px !important;
  padding: 0.72rem 1.05rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 220, 126, 0.56) !important;
  background: var(--clone-cta-bg) !important;
  color: #17120d !important;
  box-shadow:
    0 12px 28px rgba(20, 12, 7, 0.24),
    inset 0 0 0 1px rgba(255, 247, 220, 0.24) !important;
  text-shadow: none !important;
}

body.page-main .main-header-clone .menu-toggle[aria-expanded="true"],
body.page-love .main-header-clone .menu-toggle[aria-expanded="true"],
body.theme-schastye .main-header-clone .menu-toggle[aria-expanded="true"],
body.theme-radost .main-header-clone .menu-toggle[aria-expanded="true"],
body.page-main.page-team-profile .main-header-clone .menu-toggle[aria-expanded="true"] {
  transform: translateY(-1px) !important;
  box-shadow:
    0 16px 32px rgba(19, 12, 7, 0.28),
    inset 0 0 0 1px rgba(255, 247, 220, 0.28) !important;
}

body.page-main .main-header-clone .header-actions,
body.page-love .main-header-clone .header-actions,
body.theme-schastye .main-header-clone .header-actions,
body.theme-radost .main-header-clone .header-actions,
body.page-main.page-team-profile .main-header-clone .header-actions {
  display: flex !important;
}

body.page-main .main-header-clone .header-contact-trigger,
body.page-love .main-header-clone .header-contact-trigger,
body.theme-schastye .main-header-clone .header-contact-trigger,
body.theme-radost .main-header-clone .header-contact-trigger,
body.page-main.page-team-profile .main-header-clone .header-contact-trigger {
  color: #17120d !important;
}

@media (max-width: 760px) {
  body.page-main .main-header-clone,
  body.page-love .main-header-clone,
  body.theme-schastye .main-header-clone,
  body.theme-radost .main-header-clone,
  body.page-main.page-team-profile .main-header-clone {
    top: 0 !important;
  }

  body.page-main .main-header-clone .header-row,
  body.page-love .main-header-clone .header-row,
  body.theme-schastye .main-header-clone .header-row,
  body.theme-radost .main-header-clone .header-row,
  body.page-main.page-team-profile .main-header-clone .header-row {
    display: grid !important;
    grid-template-columns: minmax(104px, 1fr) auto minmax(104px, 1fr) !important;
    min-height: 72px !important;
    gap: 0.56rem !important;
    padding: 0 0.78rem !important;
    border-radius: 0 0 24px 24px !important;
  }

  body.page-main .main-header-clone .header-row > .header-actions,
  body.page-love .main-header-clone .header-row > .header-actions,
  body.theme-schastye .main-header-clone .header-row > .header-actions,
  body.theme-radost .main-header-clone .header-row > .header-actions,
  body.page-main.page-team-profile .main-header-clone .header-row > .header-actions {
    order: unset !important;
    margin-left: 0 !important;
    justify-self: end !important;
  }

  body.page-main .main-header-clone .header-row > .brand,
  body.page-love .main-header-clone .header-row > .brand,
  body.theme-schastye .main-header-clone .header-row > .brand,
  body.theme-radost .main-header-clone .header-row > .brand,
  body.page-main.page-team-profile .main-header-clone .header-row > .brand {
    justify-self: center !important;
  }

  body.page-main .main-header-clone .brand-big,
  body.page-love .main-header-clone .brand-big,
  body.theme-schastye .main-header-clone .brand-big,
  body.theme-radost .main-header-clone .brand-big,
  body.page-main.page-team-profile .main-header-clone .brand-big {
    font-size: clamp(26px, 6vw, 32px) !important;
  }

  body.page-main .main-header-clone .menu-toggle,
  body.page-love .main-header-clone .menu-toggle,
  body.theme-schastye .main-header-clone .menu-toggle,
  body.theme-radost .main-header-clone .menu-toggle,
  body.page-main.page-team-profile .main-header-clone .menu-toggle {
    min-height: 40px !important;
    min-width: 102px !important;
    padding: 0.58rem 0.88rem !important;
    font-size: 0.85rem !important;
  }

  body.page-main .main-header-clone .header-contact-trigger,
  body.page-love .main-header-clone .header-contact-trigger,
  body.theme-schastye .main-header-clone .header-contact-trigger,
  body.theme-radost .main-header-clone .header-contact-trigger,
  body.page-main.page-team-profile .main-header-clone .header-contact-trigger {
    min-height: 40px !important;
    min-width: 112px !important;
    padding: 0.58rem 0.92rem !important;
    font-size: 0.84rem !important;
  }

  body.page-main .main-header-clone .site-nav,
  body.page-love .main-header-clone .site-nav,
  body.theme-schastye .main-header-clone .site-nav,
  body.theme-radost .main-header-clone .site-nav,
  body.page-main.page-team-profile .main-header-clone .site-nav {
    top: calc(100% + 8px) !important;
  }
}
