:root {
  --bg: #f0f1e3;
  --surface: #f8f8ef;
  --surface-strong: #ffffff;
  --ink: #2a343b;
  --muted: #67716f;
  --line: rgba(42, 52, 59, 0.15);
  --sage: #8e9b88;
  --sage-deep: #647361;
  --sand: #d9cdbd;
  --shadow: 0 28px 72px rgba(45, 55, 49, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1160px;
  --serif: "Bodoni 72", Didot, "Bodoni MT", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.section-muted { background: rgba(255,255,255,.38); }

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240, 241, 227, .9);
  border-bottom: 1px solid rgba(42,52,59,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy { min-width: 0; }
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .075em;
  line-height: 1.15;
  text-transform: uppercase;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .17em;
  line-height: 1.25;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.primary-nav > a {
  position: relative;
  text-decoration: none;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { right: 0; }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.language-switch button {
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  transition: color .2s ease, opacity .2s ease;
}
.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 750;
}
.language-switch button:hover { color: var(--ink); }

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}
.shimmer-button::before {
  content: "";
  position: absolute;
  top: -55%;
  left: 140%;
  width: 32%;
  height: 210%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: skewX(-22deg);
  animation: button-shimmer 6.8s ease-in-out infinite;
}
@keyframes button-shimmer {
  0%, 64% { left: 140%; opacity: 0; }
  69% { opacity: 1; }
  84% { left: -70%; opacity: 1; }
  88%, 100% { left: -70%; opacity: 0; }
}

.nav-toggle { display: none; }

.announcement {
  overflow: hidden;
  border-top: 1px solid rgba(42,52,59,.06);
  background: rgba(255,255,255,.16);
}
.announcement-track {
  display: flex;
  width: max-content;
  padding: 7px 0 8px;
  will-change: transform;
  animation: ticker 30s linear infinite;
}
.announcement-copy {
  flex: 0 0 auto;
  padding-right: 84px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .025em;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}
h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(47px, 5.9vw, 76px);
  letter-spacing: -.034em;
}
h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -.025em;
}
h3 { font-size: 26px; }
.lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.85vw, 20px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--bg); }
.button-primary:hover { background: var(--sage-deep); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.25); }
.button-ghost:hover { border-color: var(--ink); }
.button:focus-visible,
.primary-nav a:focus-visible,
.language-switch button:focus-visible,
.contact-list a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(100,115,97,.3);
  outline-offset: 4px;
}
.hero-notice {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual { position: relative; }
.logo-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  perspective: 1400px;
  isolation: isolate;
}
.logo-blob {
  position: absolute;
  inset: 4%;
  z-index: 0;
  border-radius: 49% 51% 47% 53% / 48% 46% 54% 52%;
  background: rgba(247,248,237,.92);
  box-shadow: var(--shadow);
  animation: blob-breathe 15s ease-in-out infinite;
}
.logo-bubble {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(.5px);
  will-change: transform;
}
.logo-bubble-one {
  width: 28%;
  aspect-ratio: 1;
  right: -4%;
  top: 5%;
  background: rgba(217,205,189,.72);
  animation: bubble-one 10.8s ease-in-out infinite;
}
.logo-bubble-two {
  width: 20%;
  aspect-ratio: 1;
  left: -3%;
  bottom: 8%;
  background: rgba(142,155,136,.32);
  animation: bubble-two 12.6s ease-in-out infinite;
}
.logo-flip {
  position: absolute;
  inset: 10%;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform .82s cubic-bezier(.22,.75,.2,1);
}
html[data-lang="ru"] .logo-flip { transform: rotateY(180deg); }
.logo-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8% 7% 6%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.logo-face-back { transform: rotateY(180deg); }
.logo-symbol {
  width: 72%;
  height: auto;
  object-fit: contain;
  margin-bottom: 3%;
}
.logo-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 43px);
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-name-ru {
  font-size: clamp(22px, 3.05vw, 39px);
  letter-spacing: .09em;
}
.logo-divider {
  width: 58%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 5.5% 0 3.4%;
}
.logo-divider span { height: 1px; background: rgba(42,52,59,.43); }
.logo-divider i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}
.logo-role {
  font-size: clamp(9px, 1.15vw, 13px);
  font-weight: 600;
  letter-spacing: .23em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-role-ru { letter-spacing: .17em; }

@keyframes blob-breathe {
  0%, 100% {
    border-radius: 49% 51% 47% 53% / 48% 46% 54% 52%;
    transform: scale(1);
  }
  33% {
    border-radius: 52% 48% 50% 50% / 46% 51% 49% 54%;
    transform: scale(1.012, .997);
  }
  66% {
    border-radius: 47% 53% 52% 48% / 52% 47% 53% 48%;
    transform: scale(.998, 1.01);
  }
}
@keyframes bubble-one {
  0%, 100% { transform: translate(0,0) scale(1); }
  35% { transform: translate(-5px,7px) scale(1.035); }
  70% { transform: translate(4px,-4px) scale(.982); }
}
@keyframes bubble-two {
  0%, 100% { transform: translate(0,0) scale(1); }
  38% { transform: translate(5px,-6px) scale(.975); }
  72% { transform: translate(-4px,4px) scale(1.03); }
}

.section-heading { max-width: 800px; margin-bottom: 54px; }
.support-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.support-list {
  margin: 0;
  padding-top: 9px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.58;
  letter-spacing: -.012em;
}

.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.sticky-heading { position: sticky; top: 144px; }
.approach-list { border-top: 1px solid var(--line); }
.approach-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.approach-number {
  padding-top: 7px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.approach-item h3 { margin: 0; }

.practical-heading h2 { max-width: 940px; }
.practical-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .95fr;
  gap: 18px;
  margin-bottom: 34px;
}
.practical-block {
  min-height: 290px;
  padding: 30px;
  border-top: 1px solid var(--ink);
  background: rgba(255,255,255,.25);
}
.practical-block p { margin: 0; color: var(--muted); }
.practical-intro { margin-bottom: 28px !important; font-size: 18px; }
.practical-kicker {
  margin-bottom: 20px !important;
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.price {
  margin-bottom: 20px !important;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.1;
}
.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}
.contact-list div { border-top: 1px solid var(--line); padding-top: 14px; }
.contact-list dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-list dd { margin: 0; }
.contact-list a {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px;
  border-radius: var(--radius-md);
  background: var(--sage-deep);
  color: #fff;
}
.booking-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(31px, 4vw, 49px);
}
.button-light { min-width: max-content; background: #fff; color: var(--ink); }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px 50px;
  align-items: start;
}
.site-footer strong { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.site-footer p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; font-size: 13px; }
.footer-note { max-width: 640px; }
.copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

[data-i18n], [data-i18n-html] { transition: opacity .15s ease; }
html.lang-changing [data-i18n],
html.lang-changing [data-i18n-html] { opacity: 0; }

.legal-page { min-height: 100vh; background: var(--surface); }
.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248,248,239,.92);
}
.legal-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.legal-brand img { width: auto; height: 38px; object-fit: contain; }
.legal-brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.legal-tools { display: flex; align-items: center; gap: 24px; }
.back-link { text-decoration: none; border-bottom: 1px solid var(--line); font-size: 14px; }
.legal-main { padding: 80px 0 120px; }
.legal-copy { max-width: 780px; }
.legal-copy h1 { font-size: clamp(44px, 6vw, 72px); }
.legal-copy h2 { margin-top: 52px; font-size: 30px; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy strong { color: var(--ink); }

@media (max-width: 1040px) {
  .primary-nav { gap: 17px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 42px; }
  .support-layout { grid-template-columns: .65fr 1.35fr; gap: 54px; }
  .split-layout { gap: 60px; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .practical-block:first-child { grid-column: 1 / -1; min-height: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .brand img { height: 42px; max-width: 78px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 8px; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }
  .nav-toggle span[aria-hidden="true"] {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }
  .nav-toggle span[aria-hidden="true"] + span[aria-hidden="true"] { margin-top: 6px; }
  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.nav-cta) { display: block; padding: 10px 8px; }
  .language-switch { justify-content: center; padding: 10px 8px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .announcement-copy { padding-right: 58px; font-size: 11px; }
  .announcement-track { animation-duration: 26s; }

  .hero { min-height: auto; padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; max-width: 470px; width: 100%; margin-inline: auto; }
  h1 { font-size: clamp(41px, 12vw, 61px); }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .logo-stage { width: min(100%, 470px); }
  .logo-name { font-size: clamp(23px, 7.3vw, 36px); }
  .logo-name-ru { font-size: clamp(21px, 6.4vw, 32px); }
  .logo-role { font-size: clamp(8px, 2.6vw, 12px); }

  .support-layout, .split-layout { grid-template-columns: 1fr; gap: 18px; }
  .sticky-heading { position: static; }
  .section-heading { margin-bottom: 34px; }
  .support-list { padding-top: 0; font-size: clamp(23px, 7vw, 31px); }
  .approach-item { grid-template-columns: 42px 1fr; gap: 14px; }
  .approach-item h3 { font-size: 23px; }

  .practical-grid { grid-template-columns: 1fr; }
  .practical-block:first-child { grid-column: auto; }
  .practical-block { min-height: auto; }
  .booking-panel { align-items: stretch; flex-direction: column; padding: 30px; }
  .button-light { width: 100%; min-width: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { text-align: left; }

  .legal-header-inner { min-height: 68px; }
  .legal-brand strong { display: none; }
  .legal-tools { gap: 14px; }
  .legal-main { padding-top: 56px; }
}

@media (max-width: 410px) {
  .brand-copy { display: none; }
  .brand img { height: 44px; }
  .logo-role { letter-spacing: .16em; }
  .logo-role-ru { letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .announcement-track { transform: none !important; }
  .announcement-copy[aria-hidden="true"] { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- FR/RU v3 desktop refinements ---- */
:root {
  --container: 1240px;
  --display-scale-y: .91;
}

/* Header logo: original supplied artwork, always proportional. */
.brand img {
  width: auto;
  height: 52px;
  max-width: 94px;
  object-fit: contain;
}

/* The ticker is clipped to the exact same content width as the menu. */
.announcement { overflow: visible; }
.announcement-window {
  overflow: hidden;
}
.announcement-track {
  display: flex;
  width: max-content;
  padding: 10px 0 11px;
  will-change: transform;
  animation: ticker-v3 25s linear infinite;
}
.announcement-copy {
  flex: 0 0 auto;
  padding-right: 96px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .025em;
  white-space: nowrap;
}
@keyframes ticker-v3 {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333333%); }
}

/* Primary top CTA: original shine plus a softer mirrored return. */
.shimmer-button,
.booking-shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.shimmer-button::before,
.shimmer-button::after,
.booking-shimmer::before,
.booking-shimmer::after {
  content: "";
  position: absolute;
  top: -58%;
  width: 32%;
  height: 216%;
  pointer-events: none;
  z-index: 2;
}
.shimmer-button::before {
  left: 142%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: skewX(-22deg);
  animation: button-shimmer-main 5.8s ease-in-out infinite;
}
.shimmer-button::after {
  left: -68%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.27), transparent);
  transform: skewX(22deg);
  animation: button-shimmer-return 5.8s ease-in-out infinite;
}
@keyframes button-shimmer-main {
  0%, 57% { left: 142%; opacity: 0; }
  61% { opacity: 1; }
  80% { left: -68%; opacity: 1; }
  86%, 100% { left: -68%; opacity: 0; }
}
@keyframes button-shimmer-return {
  0%, 73% { left: -68%; opacity: 0; }
  76% { opacity: .48; }
  82% { left: 36%; opacity: .28; }
  87% { left: 60%; opacity: 0; }
  100% { left: 60%; opacity: 0; }
}

.booking-shimmer::before {
  left: 142%;
  background: linear-gradient(90deg, transparent, rgba(100,115,97,.20), transparent);
  transform: skewX(-22deg);
  animation: booking-shimmer-main 5.15s ease-in-out infinite;
}
.booking-shimmer::after {
  left: -68%;
  background: linear-gradient(90deg, transparent, rgba(100,115,97,.12), transparent);
  transform: skewX(22deg);
  animation: booking-shimmer-return 5.15s ease-in-out infinite;
}
@keyframes booking-shimmer-main {
  0%, 54% { left: 142%; opacity: 0; }
  58% { opacity: 1; }
  78% { left: -68%; opacity: 1; }
  84%, 100% { left: -68%; opacity: 0; }
}
@keyframes booking-shimmer-return {
  0%, 70% { left: -68%; opacity: 0; }
  73% { opacity: .45; }
  79% { left: 28%; opacity: .22; }
  83% { left: 48%; opacity: 0; }
  100% { left: 48%; opacity: 0; }
}

.hero {
  min-height: calc(100vh - 132px);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(470px, .78fr);
  gap: clamp(34px, 4vw, 58px);
}
.hero-copy { min-width: 0; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(44px, 4.4vw, 58px);
  line-height: 1.12;
  letter-spacing: .014em;
  transform: scaleY(var(--display-scale-y));
  transform-origin: left top;
}
.lead {
  max-width: 710px;
  font-size: clamp(17px, 1.55vw, 19px);
}
.hero-notice {
  max-width: 660px;
  font-size: 14px;
  line-height: 1.48;
}
.hero-notice span { display: block; }

/* Shared calmer display-heading treatment. */
.section-heading h2,
.booking-panel h2 {
  line-height: 1.1;
  letter-spacing: .012em;
  transform: scaleY(var(--display-scale-y));
  transform-origin: left top;
}
.section-heading h2 {
  font-size: clamp(37px, 4.1vw, 54px);
}

/* New hero composition: supplied logo, pale lime blob and portrait bubble. */
.hero-visual { position: relative; }
.logo-stage {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  perspective: 1400px;
  isolation: isolate;
}
.logo-blob {
  inset: 12% 7% 3% 3%;
  z-index: 1;
  border-radius: 51% 49% 46% 54% / 49% 45% 55% 51%;
  background: rgba(210, 232, 226, .72);
  box-shadow: 0 28px 72px rgba(71, 79, 51, .13);
  animation: blob-breathe-v3 13.4s ease-in-out infinite;
}
.logo-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(.35px);
  will-change: transform, border-radius;
}
.logo-bubble-white {
  z-index: 3;
  width: 24%;
  aspect-ratio: 1;
  right: -4%;
  top: 25%;
  background: rgba(255,255,255,.91);
  box-shadow: 0 18px 42px rgba(55,64,58,.08);
  animation: bubble-white-v3 10.2s ease-in-out infinite;
}
.logo-bubble-one {
  z-index: 0;
  width: 17%;
  right: -7%;
  top: 46%;
  background: rgba(150, 126, 171, .46);
  animation: bubble-one-v3 9.3s ease-in-out infinite;
}
.logo-bubble-two {
  z-index: 0;
  width: 16%;
  left: -3%;
  bottom: 6%;
  background: rgba(142,155,136,.36);
  animation: bubble-two-v3 10.9s ease-in-out infinite;
}
.portrait-bubble {
  position: absolute;
  z-index: 5;
  top: -2%;
  right: 12%;
  width: 34%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(248,248,239,.82);
  border-radius: 50% 50% 48% 52% / 50% 47% 53% 50%;
  box-shadow: 0 22px 54px rgba(42,52,59,.16);
  will-change: transform, border-radius;
  animation: portrait-float-v3 11.6s ease-in-out infinite;
}
.portrait-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.025);
}
.logo-flip {
  inset: 17% 11% 8% 8%;
  z-index: 4;
}
.logo-face {
  padding: 6% 7% 5%;
}
.logo-symbol {
  width: 80%;
  margin-bottom: 2.5%;
}
.logo-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  max-width: 100%;
  font-size: clamp(20px, 2.15vw, 29px);
  letter-spacing: .105em;
  line-height: .95;
  white-space: nowrap;
}
.logo-name-ru {
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: .075em;
}
.logo-initial {
  font-size: 1.31em;
  line-height: .78;
}
.logo-word-gap { width: .42em; }
.logo-divider {
  width: 52%;
  gap: 7px;
  margin: 4.3% 0 2.8%;
}
.logo-role {
  font-size: clamp(7px, .72vw, 10px);
  letter-spacing: .20em;
}
.logo-role-ru { letter-spacing: .13em; }

@keyframes blob-breathe-v3 {
  0%, 100% {
    border-radius: 51% 49% 46% 54% / 49% 45% 55% 51%;
    transform: translate(0,0) scale(1);
  }
  30% {
    border-radius: 56% 44% 51% 49% / 44% 54% 46% 56%;
    transform: translate(-5px, 7px) scale(1.025, .982);
  }
  64% {
    border-radius: 45% 55% 57% 43% / 56% 43% 57% 44%;
    transform: translate(7px, -4px) scale(.985, 1.022);
  }
  82% {
    border-radius: 48% 52% 44% 56% / 52% 57% 43% 48%;
    transform: translate(3px, 5px) scale(1.012, .993);
  }
}
@keyframes bubble-white-v3 {
  0%, 100% { transform: translate(0,0) scale(1); border-radius: 50%; }
  38% { transform: translate(-11px, 13px) scale(1.055); border-radius: 46% 54% 51% 49% / 53% 47% 53% 47%; }
  72% { transform: translate(9px, -8px) scale(.975); border-radius: 54% 46% 48% 52% / 47% 54% 46% 53%; }
}
@keyframes bubble-one-v3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  34% { transform: translate(-12px, 14px) scale(1.07); }
  69% { transform: translate(10px, -9px) scale(.966); }
}
@keyframes bubble-two-v3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  36% { transform: translate(11px, -13px) scale(.96); }
  73% { transform: translate(-10px, 10px) scale(1.065); }
}
@keyframes portrait-float-v3 {
  0%, 100% {
    transform: translate(0,0) scale(1);
    border-radius: 50% 50% 48% 52% / 50% 47% 53% 50%;
  }
  43% {
    transform: translate(18px, 22px) scale(1.012);
    border-radius: 47% 53% 51% 49% / 54% 46% 52% 48%;
  }
  70% {
    transform: translate(9px, 11px) scale(.995);
    border-radius: 52% 48% 46% 54% / 48% 53% 47% 52%;
  }
}

/* Two-column difficulty list, using the same body character as the hero copy. */
.support-layout {
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(56px, 7vw, 104px);
}
.support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 70px);
  padding-top: 8px;
}
.support-columns ul {
  display: grid;
  align-content: start;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-columns li {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.48;
}

/* No decorative 01 / 02 numbers. */
.approach-item {
  display: block;
  padding: 38px 0;
}
.approach-item h3 {
  max-width: 720px;
  margin: 0;
}

.practical-heading h2 { max-width: 1050px; }
.booking-panel h2 { font-size: clamp(31px, 3.7vw, 48px); }
.button-light { overflow: hidden; }

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
  }
  .announcement-copy { font-size: 17px; }
  .logo-stage { width: min(100%, 500px); }
}

@media (max-width: 760px) {
  /* Only structural safety for now; the dedicated mobile pass comes later. */
  .brand img { height: 43px; max-width: 80px; }
  .announcement-track { padding: 8px 0 9px; animation-duration: 23s; }
  .announcement-copy { padding-right: 62px; font-size: 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 {
    font-size: clamp(39px, 11vw, 56px);
    transform: scaleY(.93);
  }
  .logo-stage { width: min(100%, 500px); }
  .portrait-bubble { width: 31%; right: 11%; }
  .support-columns { grid-template-columns: 1fr; gap: 15px; }
  .support-columns ul { gap: 13px; }
  .approach-item { padding: 30px 0; }
}

/* Third correction pass */
html { scroll-padding-top: 115px; }
.logo-blob {
  animation-name: blob-breathe-v3;
  animation-duration: 13.4s;
}
.hero {
  min-height: calc(100vh - 170px);
  padding-top: 24px;
  padding-bottom: 24px;
}
.logo-flip {
  transform: translateX(26px);
}
html[data-lang="ru"] .logo-flip {
  transform: translateX(26px) rotateY(180deg);
}
.portrait-orb {
  animation: none !important;
}
.portrait-orb img {
  clip-path: circle(50%);
}
.support-columns li {
  display: flex;
  align-items: center;
}
.support-columns li::before {
  content: "•";
  font-size: 0.85em;
  margin-right: 12px;
  color: var(--sage-deep);
}


/* ---- v4.1 correction: exact desktop placement and balance ---- */
@media (min-width: 761px) {
  /* Make the first screen substantially more compact without changing later sections. */
  .hero {
    min-height: clamp(620px, calc(100vh - 340px), 720px);
    padding-top: 28px;
    padding-bottom: 28px;
  }

  /* Portrait sits above and to the left of the main logo bubble. The photo itself is fixed;
     only the crop edge gently changes shape. */
  .portrait-bubble {
    top: -7%;
    right: auto;
    left: -14%;
    width: 34%;
    transform: none;
    will-change: border-radius;
    animation: portrait-shape-v4 11.6s ease-in-out infinite;
  }

  /* Keep the name centred; shift only the supplied rectangular symbol PNG by roughly
     the visual width of two logo letters. Its long flourish may leave the frame. */
  .logo-flip {
    transform: none;
  }
  html[data-lang="ru"] .logo-flip {
    transform: rotateY(180deg);
  }
  .logo-symbol {
    transform: translateX(clamp(44px, 4vw, 54px));
  }
}

/* A much paler, lighter and lower-contrast blue-turquoise background bubble. */
.logo-blob {
  background: rgba(224, 241, 240, .42);
  box-shadow: 0 22px 54px rgba(65, 91, 91, .04);
}

@keyframes portrait-shape-v4 {
  0%, 100% {
    border-radius: 50% 50% 48% 52% / 50% 47% 53% 50%;
  }
  43% {
    border-radius: 46% 54% 52% 48% / 55% 45% 51% 49%;
  }
  72% {
    border-radius: 53% 47% 46% 54% / 48% 54% 46% 52%;
  }
}

/* Two columns share one visual height: first items and final items align. */
.support-columns {
  align-items: stretch;
}
.support-columns ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.support-columns li {
  align-items: flex-start;
}
.support-columns li::before {
  flex: 0 0 auto;
  line-height: 1.48;
  margin-top: 0;
  font-weight: 400;
  opacity: .7;
}


/* ---- v4.2: exact colour, portrait nudge, persistent header and stable language control ---- */
:root {
  --home-header-height: 126px;
}

/* Keep the complete navigation + ticker assembly visible for the full scroll. */
body[data-page="home"] {
  padding-top: var(--home-header-height);
}
body[data-page="home"] .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateZ(0);
}
html {
  scroll-padding-top: calc(var(--home-header-height) + 18px);
}

/* The supplied sample is essentially RGB 236 / 239 / 228. */
.logo-blob {
  background: rgba(188, 197, 184, 0.75);
  box-shadow: 0 22px 54px rgba(65, 91, 91, .025);
}

@media (min-width: 761px) {
  /* A subtle half-display-letter adjustment in all three dimensions. */
  .portrait-bubble {
    width: calc(34% + 24px);
    top: calc(-7% + 24px);
    left: calc(-14% + 24px);
  }

  /* The language control is a fixed grid column. Translated navigation text adapts
     only inside its own column, so FR / RU never escapes from under the pointer. */
  .primary-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px 212px;
    align-items: center;
    column-gap: 18px;
    width: min(100%, 760px);
  }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2vw, 25px);
    min-width: 0;
  }
  .nav-links > a {
    position: relative;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-links > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transition: right .2s ease;
  }
  .nav-links > a:hover::after,
  .nav-links > a:focus-visible::after {
    right: 0;
  }
  .language-switch {
    width: 58px;
    min-width: 58px;
    justify-content: center;
  }
  .nav-cta {
    width: 212px;
    min-width: 212px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] {
    padding-top: var(--home-header-height);
  }
  .nav-links {
    display: contents;
  }
}

/* Preserve the stable switch layout on narrower desktop widths as well. */
@media (min-width: 761px) and (max-width: 1040px) {
  .primary-nav {
    grid-template-columns: 58px 212px;
    width: 288px;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-links > a {
    display: block;
    padding: 10px 8px;
    text-decoration: none;
  }
}
