/* БАНЬСКЪ — premium heritage spa site · v2 (wood luxe) */

:root {
  /* Wood luxe palette — dark walnut + amber light + brass */
  --wood-deep: #14100C;          /* ebony walnut */
  --wood: #1E1812;               /* dark walnut */
  --wood-soft: #2A2018;          /* warm walnut */
  --wood-warm: #3A2A1E;          /* burled oak */
  --ink: #1A1410;
  --ink-soft: #2B2218;
  --ash: #7A6856;
  --paper: #F0E5CC;              /* warm linen — lighter, easier to read */
  --paper-deep: #E2D2AE;         /* mid burlwood, softer */
  --paper-light: #F8EFD8;
  --brass: #8C5E22;              /* deeper brass for light-bg legibility */
  --brass-on-light: #6E4515;     /* darkest brass — for eyebrows on paper */
  --brass-dim: #6E4515;
  --brass-bright: #E0B068;       /* polished brass — used only on dark bg */
  --moss: #3F4A3A;
  --rule: rgba(60, 35, 12, 0.24);
  --rule-soft: rgba(60, 35, 12, 0.12);
  --rule-light: rgba(232, 218, 188, 0.16);

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Spectral", "PT Serif", Georgia, serif;
  --font-caps: "Cormorant Garamond", Georgia, serif;
}

/* Mountain backgrounds (Krasnaya Polyana / Western Caucasus) — заменили деревянные текстуры */
.bg-wood-light {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 1400px 700px at 30% 0%, rgba(220, 170, 90, 0.10), transparent 70%),
    radial-gradient(ellipse 1000px 800px at 80% 60%, rgba(150, 162, 170, 0.06), transparent 65%);
  background-size: auto, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
}
.bg-wood-burl {
  background-color: var(--paper-deep);
  background-image:
    radial-gradient(ellipse 1200px 600px at 70% 30%, rgba(200, 150, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 900px 700px at 10% 80%, rgba(132, 146, 156, 0.07), transparent 55%);
  background-size: auto, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
}
.bg-wood-dark {
  background-color: var(--wood);
  background-image:
    radial-gradient(ellipse 1200px 600px at 30% 20%, rgba(200, 140, 70, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(18,14,10,0.82) 0%, rgba(18,14,10,0.90) 100%),
    url("/media/hero-mountains.jpg");
  background-size: auto, cover, cover;
  background-position: 0 0, center, center;
  background-attachment: scroll, fixed, fixed;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.64;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 1400px 700px at 20% 0%, rgba(220, 170, 90, 0.08), transparent 70%);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "onum";
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; padding: 0; cursor: pointer; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 0.96;
}
.eyebrow {
  font-family: var(--font-caps);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--brass-on-light);
  font-feature-settings: "lnum";
}
.eyebrow-en {
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ash);
  font-weight: 500;
}
.rule { height: 1px; background: var(--rule); width: 100%; }
.tnum { font-variant-numeric: tabular-nums lining-nums; }

.wrap {
  width: min(1320px, 100% - 64px);
  margin: 0 auto;
}
.wrap-narrow {
  width: min(820px, 100% - 64px);
  margin: 0 auto;
}
section { position: relative; }

/* ───── Scroll reveal — disabled (always visible); subtle entry handled by CSS hover only ───── */
.reveal { opacity: 1; transform: none; }
.reveal-pending { opacity: 0; transform: translateY(20px); transition: opacity 800ms cubic-bezier(.16,.84,.44,1), transform 800ms cubic-bezier(.16,.84,.44,1); }
.reveal-2 { transition-delay: 90ms; }
.reveal-3 { transition-delay: 180ms; }
.reveal-4 { transition-delay: 270ms; }

/* ───── Top bar ───── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: background 320ms ease, color 320ms ease, backdrop-filter 320ms ease, border-color 320ms ease;
  border-bottom: 1px solid transparent;
}
.topbar.on-dark { color: var(--paper); }
.topbar.scrolled {
  background: rgba(22, 16, 11, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--paper);
  border-bottom-color: rgba(200, 150, 74, 0.16);
}
.topbar .brand {
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.topbar nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar nav::-webkit-scrollbar { display: none; }
.topbar nav a {
  opacity: 0.78;
  transition: opacity 200ms, color 200ms;
  position: relative;
}
.topbar nav a:hover { opacity: 1; color: var(--brass); }
.topbar .meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.topbar .lang {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.topbar .lang .seg {
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 200ms;
  opacity: 0.5;
}
.topbar .lang .seg.on {
  color: var(--brass);
  opacity: 1;
}
.topbar .book {
  border: 1px solid currentColor;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  transition: background 200ms, color 200ms;
}
.topbar .book:hover { background: var(--brass); color: var(--wood-deep); border-color: var(--brass); }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--wood-deep);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero .stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* 20/80 horizontal fade: strong shadow at left (text area), photo visible at right */
    linear-gradient(90deg, rgba(20, 14, 8, 0.96) 0%, rgba(20, 14, 8, 0.85) 25%, rgba(20, 14, 8, 0.35) 55%, rgba(20, 14, 8, 0.05) 100%),
    /* darker base under stats row at the bottom */
    linear-gradient(180deg, transparent 60%, rgba(20, 14, 8, 0.78) 100%),
    /* subtle warm light from top-right */
    radial-gradient(ellipse at 85% 15%, rgba(224, 176, 104, 0.18), transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.hero .stage .ph {
  position: absolute;
  inset: 0;
  background-color: #1a120c;
  background-image: url("/media/hero-mountains.jpg");
  background-size: cover;
  background-position: center center;
  transition: transform 800ms ease-out;
}
.hero .stage .ph image-slot { opacity: 0; pointer-events: none; }
.hero.parallax .ph {
  transform: scale(1.08);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 92px 0 44px;
}
.hero-title-wrap {
  align-self: center;
  padding-bottom: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(233, 220, 194, 0.7);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-eyebrow .dot {
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--paper);
  font-weight: 300;
}
.hero h1 .brass { color: var(--brass-bright); font-style: italic; font-weight: 400; }

.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid rgba(233, 220, 194, 0.18);
}
.hero-foot .pitch {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.28;
  font-style: italic;
  color: var(--paper);
  max-width: 360px;
  font-weight: 300;
}
.hero-foot .stat .k {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.hero-foot .stat .k .small { font-size: 26px; vertical-align: 10px; color: var(--brass-bright); }
.hero-foot .stat .v {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 236, 219, 0.9);
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(233, 220, 194, 0.18);
  background: rgba(10, 8, 6, 0.55);
  padding: 16px 0;
  overflow: hidden;
  color: rgba(233, 220, 194, 0.7);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.hero-marquee .track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 180s linear infinite;
}
.hero-marquee .track span.group { display: inline-flex; align-items: center; }
.hero-marquee .name {
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
}
.hero-marquee .sep {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  color: rgba(200, 150, 74, 0.55);
  letter-spacing: 0;
  user-select: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero scroll cue */
.hero-cue {
  position: absolute;
  bottom: 196px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.hero-cue .line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--brass-bright), transparent);
  animation: cue 2.4s ease-in-out infinite;
}
@media (max-width: 1100px) {
  .hero-cue { display: none; }
}
@keyframes cue {
  0%, 100% { transform: translateY(-8px); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ───── Section primitives ───── */
.section { padding: 140px 0; }
.section.tight { padding: 96px 0; }
.section.dark {
  color: var(--paper);
}
.section.dark .eyebrow { color: var(--brass-bright); }
.section.dark .rule { background: rgba(233, 220, 194, 0.18); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.section-head .num {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--ash);
  font-weight: 300;
  font-style: italic;
  opacity: 0.5;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.section-head h2 em { color: var(--brass); font-style: italic; font-weight: 300; }
.section.dark .section-head h2 em { color: var(--brass-bright); }
.section-head .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 56ch;
}
.section.dark .section-head .lede { color: rgba(233, 220, 194, 0.72); }
.section-head .meta {
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ash);
  font-weight: 500;
  margin-top: 8px;
}
.section.dark .section-head .meta { color: rgba(233, 220, 194, 0.5); }

/* ───── Image placeholder + slot ───── */
.ph-img {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(26,20,16,0.045) 0 1px, transparent 1px 8px),
    var(--paper-deep);
  overflow: hidden;
}
.ph-img.dark {
  background:
    repeating-linear-gradient(135deg, rgba(233, 220, 194, 0.05) 0 1px, transparent 1px 8px),
    #221c16;
  color: rgba(233, 220, 194, 0.55);
}
image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

/* ───── Lineage ───── */
.lineage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding-top: 20px;
}
.lineage .axis {
  position: sticky;
  top: 110px;
  align-self: start;
}
.lineage .axis .now {
  font-family: var(--font-display);
  font-size: 130px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.lineage .axis .now em { color: var(--brass); font-style: italic; }
.lineage .axis .span {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ash);
  margin-top: 10px;
  font-weight: 500;
}
.lineage-rows {
  display: flex;
  flex-direction: column;
}
.gen-row {
  display: grid;
  grid-template-columns: 56px 150px 1fr 210px;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.gen-row:first-child { border-top: 1px solid var(--ink); }
.gen-row:last-child { border-bottom: 1px solid var(--rule); }
.gen-row .roman {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.gen-row .year {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.gen-row .who {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
}
.gen-row .who small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ash);
  margin-top: 6px;
  line-height: 1.5;
  font-style: italic;
}
.gen-row .note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}
.gen-row.current { background: linear-gradient(90deg, rgba(200, 150, 74, 0.1), transparent 70%); }

/* ───── Longread ───── */
.longread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.longread .col p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.longread .col > p:first-of-type:first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--brass);
}
.longread .col .ph-img {
  max-height: 55vh;
  max-width: none;
  width: 100%;
}
.longread .col h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 300;
  padding: 48px 0;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 60px 0;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 24px;
  font-weight: 500;
}

/* ───── COMPLEX — perfectly symmetric editorial grid (4 × 2 on wide, 2 × 4 on narrow) ───── */
.complex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--wood-soft);
  isolation: isolate;
  aspect-ratio: 4 / 5;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.tile:hover { transform: translateY(-4px); }
.tile:hover .tile-img { transform: scale(1.04); }
.tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1200ms cubic-bezier(.2,.8,.2,1);
}
.tile-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.05) 0%, rgba(20, 16, 12, 0.25) 50%, rgba(20, 16, 12, 0.92) 100%);
  z-index: 1;
}
.tile-img .ph-img { position: absolute; inset: 0; }
.tile-img image-slot { width: 100%; height: 100%; }
.tile-label {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 26px 24px 24px;
  color: var(--paper-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tile-label .kicker {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-bright);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tile-label .kicker .k-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: rgba(233, 220, 194, 0.55);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.tile-label .name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.tile-label .sub {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(233, 220, 194, 0.7);
  margin-top: 2px;
  font-style: italic;
  min-height: 2.9em;
}
.tile-label .meta-line {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(233, 220, 194, 0.18);
  padding-top: 10px;
}
.tile-label .meta-line .l {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.5);
  font-weight: 500;
}
.tile-label .meta-line .v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--brass-bright);
}

/* ───── Ritual steps ───── */
.ritual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(233, 220, 194, 0.2);
  border-bottom: 1px solid rgba(233, 220, 194, 0.2);
}
.ritual .step {
  padding: 56px 36px 56px 0;
  border-right: 1px solid rgba(233, 220, 194, 0.12);
}
.ritual .step:last-child { border-right: 0; padding-right: 0; }
.ritual .step + .step { padding-left: 36px; }
.ritual .step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--brass-bright);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.ritual .step h4 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 14px;
}
.ritual .step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 220, 194, 0.7);
}

/* ───── Signature rituals slider ───── */
.signature-section {
  position: relative;
  overflow: hidden;
}
/* ───── Sliders: drag-to-scroll + grab cursor ───── */
.drag-scroll {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.drag-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.drag-scroll.dragging * { pointer-events: none; }

.signature-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 28px;
  padding: 8px 0 32px;
  scroll-padding: 0 32px;
}
.signature-slider::-webkit-scrollbar { display: none; }
.sig-card {
  flex: 0 0 460px;
  scroll-snap-align: start;
  background: var(--wood-soft);
  color: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.sig-card:hover { transform: translateY(-4px); }
.sig-card.signature {
  background: linear-gradient(180deg, var(--wood-warm) 0%, var(--wood-deep) 100%);
}
.sig-card .sig-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.sig-card .sig-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,16,12,0.6));
}
.sig-card .sig-img .ph-img { position: absolute; inset: 0; }
.sig-card .badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--brass);
  color: var(--wood-deep);
  padding: 7px 12px;
  font-weight: 600;
}
.sig-card .sig-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sig-card .price {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--brass-bright);
}
.sig-card .price small {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.6);
  margin-left: 6px;
  font-weight: 500;
  vertical-align: 10px;
}
.sig-card .duration {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.5);
  margin-bottom: 24px;
  font-weight: 500;
}
.sig-card h4 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 14px;
}
.sig-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 220, 194, 0.74);
  margin-bottom: auto;
}
.sig-card .more {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: gap 200ms;
}
.sig-card .more:hover { gap: 14px; }

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(233, 220, 194, 0.3);
  border-radius: 50%;
  color: var(--paper);
  font-size: 20px;
  transition: all 200ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slider-controls button:hover { background: var(--brass); color: var(--wood-deep); border-color: var(--brass); }
.slider-controls button:disabled { opacity: 0.3; cursor: default; }
.slider-controls button:disabled:hover { background: transparent; color: var(--paper); border-color: rgba(233, 220, 194, 0.3); }

/* ───── 3D Tour ───── */
.tour-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--wood-deep);
  isolation: isolate;
}
.tour-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.tour-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.55), rgba(20, 16, 12, 0.9)),
    repeating-linear-gradient(135deg, rgba(255,250,235,0.03) 0 1px, transparent 1px 9px),
    radial-gradient(ellipse at center, #2c2018, #14100c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  cursor: pointer;
  transition: opacity 600ms;
}
.tour-cover.hidden { opacity: 0; pointer-events: none; }
.tour-cover .ring {
  width: 96px;
  height: 96px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  transition: transform 300ms;
}
.tour-cover:hover .ring { transform: scale(1.08); }
.tour-cover .ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200, 150, 74, 0.35);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
.tour-cover .play {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brass);
  font-style: italic;
  margin-left: 6px;
}
.tour-cover h3 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 14px;
}
.tour-cover h3 em { color: var(--brass); font-style: italic; font-weight: 300; }
.tour-cover p {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.6);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ───── Map ───── */
.map-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  background: var(--wood-deep);
  color: var(--paper);
  min-height: 560px;
}
.map-canvas {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200, 150, 74, 0.06), transparent 60%),
    var(--wood-deep);
}
.map-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.map-side {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--wood);
  border-left: 1px solid rgba(200, 150, 74, 0.18);
}
.map-side h3 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}
.map-side h3 em { color: var(--brass); font-style: italic; font-weight: 300; }
.map-side .address {
  font-size: 19px;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 36px;
  color: rgba(233, 220, 194, 0.85);
}
.map-side .point {
  padding: 18px 0;
  border-top: 1px solid rgba(233, 220, 194, 0.16);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: baseline;
}
.map-side .point:last-of-type { border-bottom: 1px solid rgba(233, 220, 194, 0.16); }
.map-side .point .t {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-size: 16px;
  letter-spacing: 0.04em;
}
.map-side .point .lbl {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}
.map-side .point .lbl small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.5);
  margin-top: 6px;
  font-weight: 500;
}
.map-side .open-yandex {
  margin-top: 36px;
  border: 1px solid var(--brass);
  color: var(--brass-bright);
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: all 200ms;
  align-self: flex-start;
}
.map-side .open-yandex:hover { background: var(--brass); color: var(--wood-deep); }

/* SVG map elements — clean, no animation noise */
.map-route { stroke: var(--brass); stroke-width: 1.6; fill: none; stroke-dasharray: 4 6; opacity: 0.85; }
.map-river { stroke: rgba(120, 150, 180, 0.42); stroke-width: 1.4; fill: none; }
.map-river.glow { stroke: rgba(120, 150, 180, 0.12); stroke-width: 6; }
.map-contour { stroke: rgba(200, 150, 74, 0.14); stroke-width: 1; fill: none; }
.map-poi { fill: var(--brass); }
.map-poi.target { fill: var(--brass-bright); }
.map-poi-ring {
  fill: none;
  stroke: var(--brass-bright);
  stroke-width: 1;
  opacity: 0.5;
  transform-origin: center;
  transform-box: fill-box;
  animation: poi-pulse 3.2s ease-out infinite;
}
@keyframes poi-pulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.map-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  fill: rgba(233, 220, 194, 0.65);
}
.map-label.bold { fill: var(--brass-bright); font-style: normal; font-weight: 600; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; }
.map-label.range { fill: rgba(233, 220, 194, 0.32); font-style: normal; font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; }

/* ───── Kitchen ───── */
.kitchen {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.kitchen .ph-img {
  aspect-ratio: 4/5;
  max-height: 72vh;
  max-width: 540px;
  width: 100%;
  justify-self: center;
}
.kitchen h3 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 28px;
}
.kitchen h3 em { color: var(--brass); font-style: italic; font-weight: 300; }
.kitchen p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.lidia-card {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.lidia-card .age {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 300;
  color: var(--brass);
}
.lidia-card .age small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 8px;
  font-weight: 500;
}
.lidia-card .copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lidia-card .copy strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
/* Лидия/соленья — вертикальная карточка под фото: число сверху, описание во всю ширину */
.kitchen-col1 { display: flex; flex-direction: column; align-items: center; }
.kitchen-col1 .lidia-card { width: 100%; max-width: 540px; }
.lidia-card.solo { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ───── Guests ───── */
.guests-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.guests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.guest {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  transition: background 240ms;
}
.guest:hover { background: rgba(232, 220, 194, 0.5); }
.guest .name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
}
.guest .role {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 10px;
  font-weight: 500;
}
.guest .visit {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--brass);
  margin-top: 16px;
}
.guests-foot {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--ash);
  text-align: center;
}

/* ───── Reviews carousel ───── */
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 28px;
  padding: 8px 0 16px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 460px;
  scroll-snap-align: start;
  background: var(--paper-light);
  padding: 40px 36px 36px;
  border: 1px solid var(--rule);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.review-card .quote {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.review-card .quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0;
  color: var(--brass);
  position: absolute;
  top: 50px;
  left: 24px;
  opacity: 0.18;
  font-style: italic;
}
.review-card .who {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.review-card .who .nm {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.review-card .who .rl {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 4px;
  font-weight: 500;
}

/* ───── Team — Pavel hero + 3×3 grid ───── */
.team-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.team-head-text .eyebrow { color: var(--brass-bright); }
.team-head-text .meta {
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(233, 220, 194, 0.5);
  font-weight: 500;
  margin-top: 8px;
}
.team-head-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  font-weight: 400;
}
.team-head-text h2 em { color: var(--brass-bright); font-style: italic; font-weight: 300; }
.team-head-text .lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(233, 220, 194, 0.72);
  margin-top: 24px;
  max-width: 50ch;
}
.team-head-host .ph-img {
  aspect-ratio: 3/4;
  max-height: 70vh;
}
.team-head-host {
  display: flex;
  flex-direction: column;
}
.team-host-caption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(233, 220, 194, 0.18);
}
.team-host-caption .who {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
}
.team-host-caption .role {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.55);
  margin-top: 6px;
  font-weight: 500;
}
.team-host-caption .since {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--brass-bright);
  margin-top: 6px;
}

.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  .team-head { grid-template-columns: 1fr; gap: 32px; }
  .team-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.team-card .ph-img {
  aspect-ratio: 3/4;
  margin-bottom: 18px;
  background:
    repeating-linear-gradient(135deg, rgba(233, 220, 194, 0.05) 0 1px, transparent 1px 8px),
    #2a2018;
}
.team-card .who {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}
.team-card .role {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.6);
  margin-top: 6px;
  font-weight: 500;
}
.team-card .since {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-bright);
  margin-top: 8px;
}

/* ───── Pricing ───── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.pricing-card {
  background: var(--wood-deep);
  color: var(--paper);
  padding: 48px 40px;
  border: 1px solid rgba(200, 150, 74, 0.22);
  display: flex;
  flex-direction: column;
}
.pricing-card .season-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid rgba(233, 220, 194, 0.3);
}
.pricing-card .season-tabs button {
  flex: 1;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.6);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 200ms;
  font-weight: 500;
}
.pricing-card .season-tabs button.on {
  background: var(--brass);
  color: var(--wood-deep);
}
.pricing-card .row-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(233, 220, 194, 0.18);
}
.pricing-card .row-input .lbl {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}
.pricing-card .row-input .lbl small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.5);
  margin-top: 4px;
  font-weight: 500;
}
.stepper { display: flex; align-items: center; gap: 16px; }
.stepper button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(233, 220, 194, 0.5);
  border-radius: 50%;
  color: var(--paper);
  font-size: 18px;
  line-height: 1;
  transition: all 200ms;
}
.stepper button:hover { background: var(--brass); color: var(--wood-deep); border-color: var(--brass); }
.stepper .val {
  font-family: var(--font-display);
  font-size: 26px;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.pricing-card .total {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(233, 220, 194, 0.4);
}
.pricing-card .total .k {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  transition: color 300ms;
}
.pricing-card .total .k em {
  color: var(--brass-bright);
  font-style: normal;
  font-size: 32px;
  vertical-align: 14px;
  margin-left: 4px;
}
.pricing-card .total .v {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.6);
  margin-top: 10px;
  font-weight: 500;
}
.pricing-card .cta {
  margin-top: 32px;
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--brass);
  color: var(--wood-deep);
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 200ms;
}
.pricing-card .cta:hover { background: var(--brass-bright); }
.pricing-card .fine {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(233, 220, 194, 0.5);
  text-align: center;
}

.includes-list { display: flex; flex-direction: column; }
.includes-list .item {
  display: grid;
  grid-template-columns: 150px 1fr 60px;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.includes-list .item:last-child { border-bottom: 0; }
.includes-list .item .cat {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
}
.includes-list .item .desc {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 400;
}
.includes-list .item .desc em { color: var(--brass); font-style: italic; }
.includes-list .item .desc small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.45;
}
.includes-list .item .mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-size: 17px;
  text-align: right;
}

/* ───── FAQ ───── */
.faq { border-top: 1px solid var(--rule); }
.faq .q {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 24px;
  align-items: start;
  transition: background 200ms;
}
.faq .q:hover { background: rgba(232, 220, 194, 0.3); padding-left: 12px; padding-right: 12px; }
.faq .q .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  letter-spacing: 0.06em;
}
.faq .q .head {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 400;
}
.faq .q .plus {
  font-family: var(--font-display);
  font-size: 28px;
  text-align: right;
  color: var(--ash);
  transition: transform 240ms;
}
.faq .q.open .plus { transform: rotate(45deg); color: var(--brass); }
.faq .a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}
.faq .q.open + .a { grid-template-rows: 1fr; }
.faq .a > div { overflow: hidden; }
.faq .a-inner {
  padding: 0 60px 32px 84px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: none;
}

/* ───── Footer — aligned columns ───── */
.footer {
  color: var(--paper);
  padding: 100px 0 40px;
}
.footer .glyph-wrap {
  text-align: center;
  margin-bottom: 80px;
}
.footer .glyph {
  font-family: var(--font-display);
  font-size: clamp(160px, 26vw, 480px);
  line-height: 0.8;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--brass);
  display: inline-block;
  text-shadow: 0 0 60px rgba(200, 150, 74, 0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(233, 220, 194, 0.18);
  align-items: stretch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 220px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col .col-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col .line {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--paper);
  display: block;
}
.footer-col .col-muted,
.footer-col .line.muted {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-body);
  color: rgba(233, 220, 194, 0.52);
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
  font-style: italic;
}
.footer-base {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(233, 220, 194, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233, 220, 194, 0.5);
  font-weight: 500;
}

/* ───── AI Banshchik widget ───── */
.ai-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wood-warm);
  color: var(--paper);
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 150, 74, 0.4);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(200, 150, 74, 0.04);
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), border-color 200ms;
}
.ai-launcher:hover { transform: translateY(-2px); border-color: var(--brass); }
.ai-launcher .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brass-bright), var(--brass-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--wood-deep);
  font-weight: 500;
  font-style: italic;
  position: relative;
}
.ai-launcher .avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  opacity: 0;
  animation: ai-pulse 3s ease-out infinite;
}
@keyframes ai-pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ai-launcher .who {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}
.ai-launcher .who small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-top: 4px;
  font-weight: 500;
}

.ai-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 48px);
  background: var(--wood);
  color: var(--paper);
  border: 1px solid rgba(200, 150, 74, 0.32);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  /* No entry animation — page-wide opacity transitions are unreliable
     because of heavy repeating-gradient body background. */
}
.ai-head {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(233, 220, 194, 0.12);
  background: linear-gradient(180deg, var(--wood-warm), var(--wood));
}
.ai-head .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brass-bright), var(--brass-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wood-deep);
  font-style: italic;
}
.ai-head .who {
  flex: 1;
}
.ai-head .who .nm {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}
.ai-head .who .st {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-bright);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.ai-head .who .st::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6acf6a;
  box-shadow: 0 0 8px #6acf6a;
}
.ai-head .x {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(233, 220, 194, 0.6);
  font-size: 18px;
  transition: background 200ms;
}
.ai-head .x:hover { background: rgba(233, 220, 194, 0.1); color: var(--paper); }

.ai-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(233, 220, 194, 0.2) transparent;
}
.ai-body::-webkit-scrollbar { width: 6px; }
.ai-body::-webkit-scrollbar-thumb { background: rgba(233, 220, 194, 0.2); border-radius: 3px; }

.ai-msg {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.ai-msg.bot {
  background: rgba(233, 220, 194, 0.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--paper);
}
.ai-msg.user {
  background: var(--brass);
  color: var(--wood-deep);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.ai-msg.bot.typing { display: inline-flex; gap: 4px; padding: 14px 18px; }
.ai-msg.bot.typing span {
  width: 6px;
  height: 6px;
  background: var(--brass-bright);
  border-radius: 50%;
  animation: dot 1.2s ease-in-out infinite;
}
.ai-msg.bot.typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-msg.bot.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.ai-suggestions {
  padding: 0 22px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-suggestions button {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(200, 150, 74, 0.32);
  border-radius: 999px;
  color: rgba(233, 220, 194, 0.85);
  transition: all 200ms;
}
.ai-suggestions button:hover { background: var(--brass); color: var(--wood-deep); border-color: var(--brass); }

.ai-input-bar {
  padding: 14px 16px;
  border-top: 1px solid rgba(233, 220, 194, 0.12);
  display: flex;
  gap: 8px;
  background: var(--wood-deep);
}
.ai-input-bar input {
  flex: 1;
  background: rgba(233, 220, 194, 0.06);
  border: 1px solid rgba(233, 220, 194, 0.14);
  color: var(--paper);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms;
}
.ai-input-bar input:focus { border-color: var(--brass); }
.ai-input-bar input::placeholder { color: rgba(233, 220, 194, 0.4); }
.ai-input-bar .send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--wood-deep);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
}
.ai-input-bar .send:hover { background: var(--brass-bright); }
.ai-input-bar .send:disabled { opacity: 0.4; cursor: default; }

/* ───── Founder note layout ───── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.founder-grid .col-portrait .ph-img {
  aspect-ratio: 3/4;
  max-width: 360px;
  max-height: 70vh;
}
.founder-grid .col-portrait .caption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ash);
}
.founder-grid .col-portrait .caption .meta {
  color: var(--brass);
  display: block;
}
.founder-grid .col-quote .eyebrow { margin-bottom: 18px; }
.founder-grid .col-quote .quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 48px;
}
.founder-grid .col-quote .body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}
.founder-grid .col-quote .sigrow {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.founder-grid .col-quote .sigrow .sigline {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.founder-grid .col-quote .sigrow .signame {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
}
@media (max-width: 1100px) {
  .founder-grid { grid-template-columns: 1fr; }
}

/* Section variants on light surfaces — force brass-on-light eyebrow legibility */
.section .eyebrow,
.section .lede .em,
.section .pullquote cite { color: var(--brass-on-light); }
.section.dark .eyebrow,
.section.dark .lede .em { color: var(--brass-bright); }

@media (max-width: 1100px) {
  .section-head, .longread, .kitchen, .guests-head, .map-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lineage { grid-template-columns: 1fr; }
  .lineage .axis { position: static; }
  .gen-row { grid-template-columns: 56px 110px 1fr; gap: 18px; }
  .gen-row .note { grid-column: 1/-1; padding-left: 184px; margin-top: -10px; font-size: 14px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual { grid-template-columns: repeat(2, 1fr); }
  .topbar nav { font-size: 14px; gap: 14px; }
  .complex-grid { grid-template-columns: repeat(2, 1fr); }
  .tile { aspect-ratio: 5 / 4; }
  .pricing-wrap { grid-template-columns: 1fr 1.2fr; gap: 28px; }
  .map-side { padding: 40px 32px; }
  .pricing-card { position: static; }
  .sig-card { flex: 0 0 320px; min-height: 520px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .pricing-wrap { grid-template-columns: 1fr; }
  .complex-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gen-row { grid-template-columns: 40px 1fr; gap: 12px; }
  .gen-row .year { grid-column: 2; font-size: 16px; color: var(--brass); }
  .gen-row .note { padding-left: 52px; }
  .team-grid-3 { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 640px) {
  .ai-launcher .who { display: none; }
  .ai-launcher { padding: 10px; }
  .ai-panel { right: 8px; bottom: 8px; left: 8px; width: auto; }
}

/* ── Header logo + phone + active nav (06.06.2026) ── */
.topbar .brand{ display:inline-flex; align-items:center; line-height:0; }
.topbar .brand .brand-logo{ display:block; width:150px; height:21px; background-color:currentColor; -webkit-mask:url(/media/logo.svg) no-repeat left center/contain; mask:url(/media/logo.svg) no-repeat left center/contain; }
.topbar .tel{ font-weight:600; letter-spacing:.05em; white-space:nowrap; opacity:.92; transition:color .2s,opacity .2s; }
.topbar .tel:hover{ color:var(--brass); opacity:1; }
.topbar nav a.active{ opacity:1; color:var(--brass-bright); }
.topbar nav a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-7px; height:1.5px; background:var(--brass); border-radius:2px; }
@media(max-width:760px){ .topbar .tel{ font-size:13px; } .topbar .brand .brand-logo{ width:122px; height:17px; } }
/* ── Footer Б monogram (replaces glowing Ъ) + socials ── */
.footer .glyph-b{ display:inline-block; width:clamp(120px,17vw,200px); aspect-ratio:1/1; background-color:var(--brass); -webkit-mask:url(/media/logo-b.svg) no-repeat center/contain; mask:url(/media/logo-b.svg) no-repeat center/contain; animation:bGlow 3.4s ease-in-out infinite; }
@keyframes bGlow{ 0%,100%{ filter:drop-shadow(0 0 20px rgba(224,176,104,.28)); } 50%{ filter:drop-shadow(0 0 46px rgba(224,176,104,.6)); } }
.footer .social{ display:flex; gap:16px; margin-top:12px; flex-wrap:wrap; }
.footer .social a{ opacity:.82; transition:opacity .2s,color .2s; }
.footer .social a:hover{ opacity:1; color:var(--brass); }

/* ── Special offer + calc extra + aroma (06.06.2026) ── */
.special-offer{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; max-width:1100px; margin:0 auto 40px; padding:22px 30px; border:1px solid var(--brass); border-radius:14px; background:linear-gradient(120deg, rgba(224,176,104,.10), rgba(224,176,104,.02)); }
.special-offer .so-tag{ font-family:var(--font-body); letter-spacing:.16em; text-transform:uppercase; font-size:13px; color:var(--brass-on-light,var(--brass)); font-weight:600; }
.special-offer .so-row{ display:flex; align-items:baseline; gap:18px; }
.special-offer .so-main{ font-family:var(--font-display); font-style:italic; font-size:22px; color:var(--ink); }
.special-offer .so-price{ font-family:var(--font-display); font-size:34px; font-weight:500; color:var(--brass); }
.special-offer .so-cta{ padding:12px 24px; border-radius:999px; background:var(--brass); color:var(--wood-deep); font-weight:600; font-size:14px; letter-spacing:.06em; white-space:nowrap; transition:background .2s; }
.special-offer .so-cta:hover{ background:var(--brass-bright); }
.calc-extra{ margin-top:10px; font-size:14px; color:var(--brass); font-style:italic; min-height:18px; }
@media(max-width:640px){ .special-offer{ flex-direction:column; align-items:flex-start; } }

/* ── Клуб Павла (06.06.2026) ── */
.club-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:1100px; margin:0 auto; }
.club-card{ background:#FCF8F0; border:1px solid var(--rule); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 18px 44px -28px rgba(60,40,18,.5); }
.club-img{ aspect-ratio:16/10; overflow:hidden; }
.club-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.club-card:hover .club-img img{ transform:scale(1.05); }
.club-body{ padding:30px 32px 34px; display:flex; flex-direction:column; flex:1; }
.club-tag{ font-family:var(--font-body); letter-spacing:.18em; text-transform:uppercase; font-size:13px; color:var(--brass); font-weight:600; margin-bottom:12px; }
.club-body h3{ font-family:var(--font-display); font-weight:500; font-size:30px; color:var(--ink); margin-bottom:14px; line-height:1.1; }
.club-body p{ font-size:17px; line-height:1.6; color:#3D2F1E; margin-bottom:18px; }
.club-list{ list-style:none; padding:0; margin:0 0 22px; }
.club-list li{ position:relative; padding:7px 0 7px 24px; font-size:16px; color:#3D2F1E; border-bottom:1px solid var(--rule); }
.club-list li::before{ content:""; position:absolute; left:2px; top:15px; width:7px; height:7px; border-radius:50%; background:var(--brass); }
.club-body .inline-cta{ margin-top:auto; align-self:flex-start; }
@media(max-width:780px){ .club-grid{ grid-template-columns:1fr; } }

/* ── QA-пасс 06.06.2026: вёрстка ── */
/* team: photo bigger, tighter, top-aligned */
.team-head{ grid-template-columns:1fr 0.92fr; gap:46px; align-items:start; }
.team-head-host .ph-img{ aspect-ratio:4/5; max-height:none; }
/* calculator includes: fix "Принадлежности" overlap */
.includes-list .item{ grid-template-columns:178px 1fr 44px; gap:18px; }
.includes-list .item .cat{ font-size:13px; letter-spacing:0.12em; line-height:1.3; }
@media(max-width:560px){ .includes-list .item{ grid-template-columns:1fr auto; } .includes-list .item .cat{ grid-column:1 / -1; } }
/* header: always blur what scrolls under it; dark-page scrim */
.topbar{ -webkit-backdrop-filter:blur(14px) saturate(120%); backdrop-filter:blur(14px) saturate(120%); }
.topbar.on-dark:not(.scrolled){ background:linear-gradient(180deg, rgba(18,13,9,0.74) 0%, rgba(18,13,9,0.04) 100%); }
.topbar:not(.on-dark):not(.scrolled){ background:linear-gradient(180deg, rgba(247,241,228,0.82) 0%, rgba(247,241,228,0.25) 100%); }
/* special offer: borderless, left-aligned, CTA-forward */
.special-offer{ border:none !important; background:none !important; padding:0 !important; justify-content:flex-start !important; gap:28px; margin:4px auto 40px; }
.special-offer .so-row{ gap:14px; }
.special-offer .so-cta{ box-shadow:0 10px 26px -10px rgba(200,150,74,0.6); }
/* footer Б: bigger + keep glow (match old Ъ size) */
.footer .glyph-b{ width:clamp(150px,24vw,400px); }
/* gsl guests slider: gentler snap */
.gsl-card{ scroll-snap-align:none; }

.footer-badge{ text-align:center; margin:40px 0 28px; }
.footer-badge img{ height:clamp(72px,8vw,96px); width:auto; opacity:.95; transition:opacity .2s; }
.footer-badge a:hover img{ opacity:1; }

/* ── QA2 06.06: glyph glow + special offer + ── */
.footer .glyph-wrap{ position:relative; }
.footer .glyph-wrap::before{ content:""; position:absolute; left:50%; top:130px; transform:translate(-50%,-50%); width:min(46vw,560px); height:min(46vw,560px); background:radial-gradient(circle, rgba(224,176,104,0.34) 0%, rgba(224,176,104,0.10) 40%, transparent 70%); border-radius:50%; pointer-events:none; z-index:0; animation:glowPulse 3.6s ease-in-out infinite; }
.footer .glyph-b{ position:relative; z-index:1; filter:drop-shadow(0 0 26px rgba(224,176,104,0.5)); animation:bGlow 3.6s ease-in-out infinite; }
@keyframes bGlow{ 0%,100%{ filter:drop-shadow(0 0 22px rgba(224,176,104,0.4)); } 50%{ filter:drop-shadow(0 0 50px rgba(232,192,136,0.85)); } }
@keyframes glowPulse{ 0%,100%{ opacity:.55; transform:translate(-50%,-50%) scale(.9); } 50%{ opacity:1; transform:translate(-50%,-50%) scale(1.12); } }
/* special offer — refined left-accent card */
.special-offer{ display:flex !important; align-items:center; justify-content:space-between !important; gap:28px; flex-wrap:wrap; max-width:1100px; margin:0 auto 48px !important; padding:24px 34px !important; background:linear-gradient(120deg, rgba(224,176,104,0.13), rgba(224,176,104,0.02)) !important; border:none !important; border-left:3px solid var(--brass) !important; border-radius:0 14px 14px 0; }
.special-offer .so-tag{ font-family:var(--font-body); letter-spacing:.2em; text-transform:uppercase; font-size:12px; color:var(--brass); }
.special-offer .so-row{ display:flex; align-items:baseline; gap:16px; margin-top:6px; }
.special-offer .so-main{ font-family:var(--font-display); font-style:italic; font-size:24px; color:var(--ink); }
.special-offer .so-price{ font-family:var(--font-display); font-size:36px; font-weight:600; color:var(--brass); }
.special-offer .so-cta{ padding:14px 30px; border-radius:999px; background:var(--brass); color:var(--wood-deep); font-weight:600; font-size:14px; letter-spacing:.08em; white-space:nowrap; transition:background .2s; }
.special-offer .so-cta:hover{ background:var(--brass-bright); }
@media(max-width:640px){ .special-offer{ flex-direction:column; align-items:flex-start; } }

/* compact unified footer */
.footer .glyph-wrap{ margin-bottom:34px !important; }
.footer-tagline{ font-family:var(--font-display); font-style:italic; font-size:22px; color:rgba(233,220,194,0.72); margin-top:18px; font-weight:300; }
.footer-grid{ padding-top:42px !important; gap:30px !important; }
.footer-badge{ margin:30px 0 20px !important; }

/* lightbox */
.lbx{ position:fixed; inset:0; z-index:10000; background:rgba(13,10,7,.93); display:none; align-items:center; justify-content:center; cursor:zoom-out; padding:24px; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); }
.lbx.open{ display:flex; }
.lbx img{ max-width:94vw; max-height:92vh; border-radius:8px; box-shadow:0 30px 90px rgba(0,0,0,.7); }
.lbx-close{ position:fixed; top:20px; right:28px; color:#F4ECDB; font-size:38px; line-height:1; background:none; border:none; cursor:pointer; opacity:.8; }
.lbx-close:hover{ opacity:1; color:var(--brass-bright); }
.gallery-mosaic .tile img, .split img, #complex .tile img{ cursor:zoom-in; }

/* ── QA3 06.06: offer left + team center + gen gap ── */
.special-offer{ max-width:1100px !important; margin:4px auto 44px !important; justify-content:space-between !important; }
.special-offer .so-left{ display:flex; flex-direction:column; gap:8px; }
.special-offer .so-price span{ font-family:var(--font-body); font-size:16px; color:var(--ash); font-weight:400; letter-spacing:.04em; }
.team-head{ grid-template-columns:minmax(0,540px) minmax(280px,360px) !important; justify-content:center !important; gap:44px !important; max-width:1000px; margin-left:auto !important; margin-right:auto !important; }
.gen-row{ gap:36px !important; }
@media(max-width:760px){ .team-head{ grid-template-columns:1fr !important; } }

/* gsl global (EN+RU) — guests slider card styling so EN (no inline) renders */
.gsl-head{display:flex;justify-content:space-between;align-items:baseline;gap:24px;flex-wrap:wrap;margin:42px 0 22px;}
.gsl-nav{display:flex;gap:10px;}
.gsl-nav button{width:46px;height:46px;border-radius:50%;border:1px solid var(--rule);color:var(--ink);background:transparent;cursor:pointer;font-size:18px;transition:all .25s;}
.gsl-nav button:hover{border-color:var(--brass);color:var(--brass);}
.gsl-track{display:block;white-space:nowrap;overflow-x:auto;overflow-y:hidden;scroll-behavior:auto;padding:6px 2px 22px;font-size:0;-ms-overflow-style:none;scrollbar-width:none;cursor:grab;touch-action:pan-x;-webkit-user-select:none;user-select:none;}
.gsl-rail{display:flex;gap:20px;transition:transform .55s cubic-bezier(.2,.7,.3,1);will-change:transform;}
.gsl-card{display:inline-block;vertical-align:top;white-space:normal;font-size:1rem;width:clamp(286px,80vw,348px);margin-right:20px;background:#FCF8F0;border:1px solid var(--rule);border-radius:14px;overflow:hidden;box-shadow:0 16px 42px -26px rgba(60,40,18,.55);}
.gsl-photo{position:relative;width:100%;aspect-ratio:5/6;background:#191410;overflow:hidden;}
.gsl-photo img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease;}
.gsl-card:hover .gsl-photo img{transform:scale(1.05);}
.gsl-body{padding:20px 22px 24px;display:flex;flex-direction:column;flex:1;}
.gsl-name{font-family:var(--font-display);font-weight:500;font-size:23px;line-height:1.1;color:var(--ink);}
.gsl-role{font-family:var(--font-body);font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:var(--ash);margin-top:6px;}
.gsl-quote{font-family:var(--font-display);font-style:italic;font-size:17px;line-height:1.42;color:#3D2F1E;margin-top:14px;}
.gsl-visit{font-family:var(--font-display);font-style:italic;font-size:15px;color:var(--brass);margin-top:auto;padding-top:14px;}

/* ── Round5 09.06: offer left+inline, featured CTA align, menu book, map up ── */
.special-offer{ display:block !important; max-width:640px; margin:0 0 46px !important; padding:18px 0 18px 24px !important; background:none !important; border:none !important; border-left:3px solid var(--brass) !important; }
.special-offer .so-tag{ font-family:var(--font-body); letter-spacing:.2em; text-transform:uppercase; font-size:13px; color:var(--brass); margin-bottom:16px; }
.special-offer .so-line{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.special-offer .so-price{ font-family:var(--font-display); font-size:38px; font-weight:600; color:var(--brass); line-height:1; }
.special-offer .so-price span{ font-family:var(--font-body); font-size:16px; color:var(--ash); font-weight:400; letter-spacing:.04em; }
.special-offer .so-cta{ padding:13px 30px; border-radius:999px; background:var(--brass); color:var(--wood-deep); font-weight:600; font-size:14px; letter-spacing:.06em; white-space:nowrap; transition:background .2s; }
.special-offer .so-cta:hover{ background:var(--brass-bright); }
/* first (featured) ritual CTA align with the rest */
.ritual-row.featured{ padding-right:0 !important; }
/* kitchen-style menu book: 2 balanced columns, whole categories */
.menu-book{ column-count:2; column-gap:64px; max-width:1040px; margin:0 auto; }
.menu-book .menu-cat{ break-inside:avoid; -webkit-column-break-inside:avoid; max-width:none !important; margin:0 0 38px !important; }
.menu-book .menu-cat-h{ font-size:27px; }
.menu-book .menu-row{ padding:15px 0; }
.menu-book .menu-row h4{ font-size:19px; }
.menu-book .menu-row .price{ font-size:19px; }
@media(max-width:780px){ .menu-book{ column-count:1; } }
/* raise map block */
#contact .section-head{ margin-bottom:26px; }

.gsl-photo img,.gsl-track img{ -webkit-user-drag:none; -khtml-user-drag:none; -moz-user-drag:none; user-drag:none; }

/* uniform guest cards — all match the tallest (commented) card */
.gsl-body{ min-height:160px; }
.gsl-visit{ margin-top:auto; }
.gsl-card.more{ min-height:577px; justify-content:center; }
@media(max-width:600px){ .gsl-card.more{ min-height:0; } }

/* round7 justify */
.longread .col p, .wrap-narrow > p { text-align: justify; -webkit-hyphens:auto; hyphens:auto; }


/* ═══════════════ MOBILE ≤540px (round10 — аудит) ═══════════════ */
.nav-toggle { display: none; }
@media (max-width: 540px) {
  /* — глобальная защита — */
  img, video { max-width: 100%; height: auto; }
  html, body { overflow-x: hidden; }
  .wrap { width: min(1320px, 100% - 36px); }
  .wrap-narrow { width: min(820px, 100% - 36px); }

  /* — хедер: гамбургер — */
  .topbar { padding: 12px 16px; gap: 10px; flex-wrap: wrap; }
  .topbar .brand .brand-logo { width: 112px; height: 16px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 10px; margin-left: auto; }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform .25s, opacity .2s; }
  .topbar nav, .topbar .meta { display: none; }
  .topbar.nav-open { background: rgba(20,15,11,.97) !important; color: var(--paper) !important; backdrop-filter: blur(10px); max-height: 92vh; overflow-y: auto; }
  .topbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .topbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .topbar.nav-open nav { display: flex; flex-direction: column; gap: 16px; width: 100%; order: 3; padding: 14px 2px 4px; overflow: visible; }
  .topbar.nav-open nav a { font-size: 16px; opacity: 1; letter-spacing: .1em; }
  .topbar.nav-open .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; width: 100%; order: 4; padding-bottom: 8px; }
  .topbar.nav-open .meta .tel { display: inline; }

  /* — герой — */
  .hero-eyebrow { font-size: 11px; letter-spacing: .18em; gap: 8px; margin-bottom: 22px; }
  .hero-foot { grid-template-columns: 1fr 1fr; gap: 20px 16px; align-items: start; }
  .hero-foot .pitch { grid-column: 1 / -1; font-size: 17px; max-width: none; margin-bottom: 4px; }
  .hero-foot .stat .k { font-size: 38px; }
  .hero-foot .stat .k .small { font-size: 17px; vertical-align: 5px; }
  .hero-foot .stat .v { font-size: 11px; letter-spacing: .14em; margin-top: 8px; }
  .hero-marquee { font-size: 15px; padding: 12px 0; }
  .hero-marquee .name { padding: 0 18px; }

  /* — лонгрид/история — */
  .longread .col .ph-img { max-height: none; }
  .longread .col p, .wrap-narrow > p { text-align: left; font-size: 17px; }
  .longread.with-cap > .col:first-child > p:first-of-type::first-letter,
  .longread.with-cap > .col:first-child > p:first-of-type:first-letter { font-size: 3.4em !important; }
  .pullquote { font-size: 26px; padding: 32px 0; margin: 40px 0; }
  .pullquote cite { font-size: 12px; letter-spacing: .16em; margin-top: 16px; }

  /* — заголовки секций — */
  .section-head { margin-bottom: 36px; gap: 14px; }
  .section-head .num { font-size: 52px; }
  .section-head h2 { font-size: clamp(30px, 8vw, 40px); line-height: 1.04; }
  .section-head .lede { font-size: 16px; margin-top: 16px; max-width: 100%; }

  /* — комплекс: портретные плитки (не режутся) — */
  #complex .complex-grid { grid-template-columns: 1fr; }
  #complex .tile { aspect-ratio: 4/5; }
  #complex .tile-label { padding: 18px 18px 16px; }
  #complex .tile-label .name { font-size: 23px; }
  #complex .tile-label .sub { min-height: 0; font-size: 13px; }

  /* — слайдер ритуалов — */
  #rituals .sig-card { flex: 0 0 82vw; min-height: 0; }
  #rituals .sig-card .sig-body { padding: 24px 22px 28px; }
  #rituals .sig-card h4 { font-size: 27px; }

  /* — прайс/калькулятор — */
  .pricing-card { padding: 30px 22px; }
  .pricing-card .total .k { font-size: clamp(40px, 12vw, 54px); }
  .pricing-card .total .k em { font-size: 24px; vertical-align: 8px; }
  .pricing-card .season-tabs button { letter-spacing: .08em; padding: 12px 6px; font-size: 12px; }

  /* — кухня — */
  .kitchen { gap: 28px; }
  .kitchen h3 { font-size: 34px; margin-bottom: 18px; }
  .kitchen p { font-size: 16px; }
  .lidia-card { grid-template-columns: 64px 1fr; gap: 16px; padding-top: 22px; margin-top: 26px; }
  .lidia-card .age { font-size: 50px; }

  /* — карта — */
  .map-wrap { min-height: 0; }
  .map-canvas { min-height: 300px; }
  .map-side { padding: 32px 22px; }
  .map-side h3 { font-size: 34px; }

  /* — FAQ — */
  .faq .q { grid-template-columns: 34px 1fr 24px; gap: 12px; padding: 20px 0; }
  .faq .q .head { font-size: 20px; line-height: 1.3; }
  .faq .q .n { font-size: 15px; }
  .faq .q .plus { font-size: 24px; }
  .faq .a-inner { padding: 0 2px 24px 48px; font-size: 15px; }

  /* — генеалогия (стр. Род) — */
  .lineage .axis .now { font-size: 72px; line-height: 1; }
  .gen-row { gap: 14px !important; }

  /* — футер — */
  .footer { padding: 64px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col { min-height: 0; }
  .footer-col .line { font-size: 16px; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 8px; letter-spacing: .08em; font-size: 11px; line-height: 1.5; }

  /* — герои подстраниц — */
  .page-hero { padding: 88px 0 40px; }
  .page-hero h1 { font-size: clamp(32px, 8.5vw, 44px); }
  .page-hero .lede { font-size: 17px; }

  /* — кнопки не должны переполнять — */
  .inline-cta, .so-cta, .map-side .open-yandex { max-width: 100%; white-space: normal; }
}


/* ═══ round11: кремовый текст на латунных кнопках/табах («жёлтым как фон» #F0E5CC) ═══ */
.inline-cta:not(.ghost),
.so-cta,
.special-offer .so-cta,
.pricing-card .cta,
.season-tabs button.on,
.pricing-card .season-tabs button.on,
.topbar .book:hover,
.map-side .open-yandex:hover,
.slider-controls button:hover,
.stepper button:hover { color: var(--paper) !important; }
/* hover у кнопок, где фон светлеет до brass-bright → текст обратно тёмный для контраста */
.inline-cta:not(.ghost):hover,
.so-cta:hover,
.special-offer .so-cta:hover,
.pricing-card .cta:hover { color: var(--wood-deep) !important; }


/* ═══ round12: мобильная генеалогия — имя/описание во всю ширину (≤540) ═══ */
@media (max-width: 540px) {
  .gen-row { grid-template-columns: auto 1fr !important; gap: 4px 14px !important; padding: 18px 0; }
  .gen-row .roman { grid-column: 1; font-size: 22px; align-self: baseline; }
  .gen-row .year { grid-column: 2; font-size: 20px; align-self: baseline; }
  .gen-row .who { grid-column: 1 / -1; font-size: 25px; margin-top: 4px; }
  .gen-row .who small { font-size: 14px; line-height: 1.5; }
  .gen-row .note { grid-column: 1 / -1; padding-left: 0 !important; margin-top: 8px; font-size: 14px; }
}


/* ═══ round-bigfont: крупнее мелкий текст на телефоне (≤600px) ═══ */
@media (max-width: 600px) {
  .lede { font-size: 17px !important; }
  .desc, .sub, .gsl-role, .gsl-quote, .gen-row .note, .timeline-row .body,
  .footer-col .line, .map-side .address, .ritual-row .desc, .menu-row .item small,
  figcaption, .a-inner, .pullquote cite { font-size: 15px !important; }
  small, .eyebrow, .meta, .footer-base, .duration, .ritual-row .duration { font-size: 13.5px !important; }
  .gen-row .who small, .lidia-card .copy { font-size: 14.5px !important; }
}


/* round-hdr2: читаемый светлый текст хедера на тёмном + без металлического saturate */
.topbar.on-dark, .topbar.scrolled { color: #F0E5CC !important; }
.topbar.on-dark .brand .brand-logo, .topbar.scrolled .brand .brand-logo { background-color: #F0E5CC !important; }
.topbar { -webkit-backdrop-filter: blur(9px) !important; backdrop-filter: blur(9px) !important; }

/* round-hdr3: явный светлый цвет ВСЕХ текст-элементов хедера на тёмном */
.topbar.on-dark nav a, .topbar.on-dark .tel, .topbar.on-dark .book, .topbar.on-dark .seg, .topbar.on-dark .lang span, .topbar.on-dark .meta,
.topbar.scrolled nav a, .topbar.scrolled .tel, .topbar.scrolled .book, .topbar.scrolled .seg, .topbar.scrolled .lang span, .topbar.scrolled .meta { color: #F0E5CC !important; }
.topbar.on-dark .book, .topbar.scrolled .book { border-color: rgba(240,229,204,0.55) !important; }

/* round-hdr4: посещённые ссылки хедера на тёмном тоже светлые (:visited не наследует) */
.topbar.on-dark nav a:visited, .topbar.scrolled nav a:visited, .topbar.on-dark .tel:visited, .topbar.scrolled .tel:visited, .topbar.on-dark .book:visited, .topbar.scrolled .book:visited { color: #F0E5CC !important; }

/* round-balance: заголовки без «висячего» одного слова в конце */
h1, h2, h3, .display { text-wrap: balance; }
