﻿:root {
  --ink: #15110d;
  --ink-2: #211a14;
  --ink-3: #2b2219;
  --paper: #f4efe4;
  --paper-2: #e9dfd0;
  --white: #fffaf0;
  --muted: rgba(255, 250, 240, 0.66);
  --dark-muted: rgba(21, 17, 13, 0.62);
  --line: rgba(255, 250, 240, 0.18);
  --line-dark: rgba(21, 17, 13, 0.14);
  --green: #5f7b5d;
  --water: #638d9c;
  --copper: #b9784a;
  --sand: #d8c39b;
  --display: "Cormorant Garamond", serif;
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
  --hero-font: var(--display);
  --hero-progress: 0;
  --project-bg-y: 0px;
  --continuity-image: url("assets/reference-clouds.jpg");
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-ui-fast: 280ms;
  --duration-ui: 480ms;
  --duration-ui-slow: 720ms;
  --duration-modal-open: 820ms;
  --duration-modal-close: 560ms;
  --duration-reveal: 850ms;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.35;
  padding-bottom: 88px;
  letter-spacing: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) auto minmax(96px, 0.58fr);
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: 20px clamp(28px, 6vw, 92px);
  background: linear-gradient(180deg, rgba(21, 17, 13, 0.54), rgba(21, 17, 13, 0));
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 220px;
  color: #fff;
}

.brand-image {
  display: block;
  width: clamp(142px, 11vw, 182px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.26));
  transition: opacity var(--duration-ui) var(--ease-soft), filter var(--duration-ui) var(--ease-soft);
}

.brand-image-dark {
  display: none;
}

.brand-word {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.28);
}

.brand-region {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-links a,
.header-cta,
.site-footer a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  overflow: hidden;
}

.nav-links a::after,
.header-cta::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: translateX(-102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: translateX(0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-cta {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 250, 240, 0.4);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.08);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 240, 0.16);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: #fff;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-drawer {
  position: fixed;
  top: 78px;
  right: clamp(20px, 6vw, 96px);
  z-index: 80;
  width: min(420px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background: rgba(21, 17, 13, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-drawer nav {
  display: grid;
}

.menu-drawer a {
  padding: 17px 14px;
  border-radius: 6px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 22px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.menu-drawer a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button,
.header-cta {
  cursor: pointer;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(255, 250, 240, 0.1);
  color: #fff;
  font-weight: 900;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 240, 0.2);
  outline: none;
}

.button-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.hero-section {
  position: relative;
  height: 210svh;
  background: var(--ink);
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  font-family: var(--hero-font);
  background:
    radial-gradient(ellipse 44% 72% at 50% 48%, rgba(247, 230, 196, 0.42), rgba(160, 133, 99, 0.16) 34%, transparent 66%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.88) 0%, rgba(21, 16, 12, 0.74) 18%, rgba(48, 38, 28, 0.18) 48%, rgba(21, 16, 12, 0.78) 82%, rgba(2, 2, 2, 0.9) 100%),
    linear-gradient(130deg, rgba(43, 33, 24, 0.92) 0%, rgba(23, 18, 13, 0.84) 56%, rgba(48, 35, 25, 0.9) 100%),
    var(--continuity-image);
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 50% 34%;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.58)),
    repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 49%, transparent 0 27%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.48) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: -12vh -8vw;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 49, 87, calc(var(--hero-progress) * 0.7)), rgba(8, 80, 132, calc(var(--hero-progress) * 0.52))),
    radial-gradient(ellipse 29% 61% at 50% 49%, rgba(255, 245, 218, 0.42), rgba(255, 231, 182, 0.14) 44%, transparent 72%),
    linear-gradient(90deg, transparent 0%, rgba(255, 235, 198, 0.09) 44%, rgba(255, 246, 223, 0.22) 50%, rgba(255, 235, 198, 0.09) 56%, transparent 100%);
  opacity: max(0.42, calc(0.78 - var(--hero-progress) * 0.18));
  pointer-events: none;
}

.hero-window {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(360px, 34vw, 590px);
  height: clamp(500px, 70vh, 720px);
  padding: clamp(18px, 2.2vw, 34px);
  border-radius: clamp(30px, 4.2vw, 62px);
  background:
    linear-gradient(90deg, rgba(44, 36, 29, 0.94), rgba(214, 207, 188, 0.98) 16%, rgba(246, 241, 226, 1) 48%, rgba(122, 113, 96, 0.96) 78%, rgba(36, 30, 25, 0.98)),
    linear-gradient(180deg, #f6f0df, #8b8a82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 34px 96px rgba(0, 0, 0, 0.52),
    0 0 118px rgba(244, 224, 188, 0.35),
    inset 16px 0 34px rgba(21, 17, 13, 0.44),
    inset -14px 0 36px rgba(255, 255, 255, 0.46);
  transform:
    translate(-50%, -50%)
    scale(calc(1 + var(--hero-progress) * 4.4));
  transition: border-radius 120ms linear, box-shadow 220ms ease;
  will-change: transform;
}

.hero-window::before {
  content: "";
  position: absolute;
  inset: clamp(8px, 1.1vw, 16px);
  z-index: 2;
  border-radius: calc(clamp(30px, 4.2vw, 62px) - 8px);
  border: 1px solid rgba(21, 17, 13, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 18px 0 28px rgba(255, 255, 255, 0.42),
    inset -18px 0 34px rgba(20, 16, 12, 0.36);
  opacity: max(0, calc(1 - var(--hero-progress) * 1.35));
  pointer-events: none;
}

.hero-window::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 64%;
  height: 22%;
  border-radius: 0 0 46% 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  filter: blur(8px);
  transform: translateX(-50%) translateY(-22%);
  opacity: max(0, calc(0.72 - var(--hero-progress) * 0.9));
  pointer-events: none;
}

.window-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: clamp(20px, 3vw, 44px);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 68, 105, 0.18) 48%, rgba(21, 17, 13, 0.2)),
    var(--continuity-image);
  background-size: cover;
  background-position: 50% 34%;
  filter: saturate(1.08) contrast(1.02) brightness(1.08);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.54),
    inset 0 0 46px rgba(20, 28, 28, 0.36);
}

.window-scene::before,
.window-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.window-scene::before {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.28), transparent 22%, transparent 70%, rgba(255, 255, 255, 0.1));
  opacity: max(0.18, calc(0.62 - var(--hero-progress) * 0.38));
}

.window-scene::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 49, 87, calc(var(--hero-progress) * 0.74)) 100%),
    linear-gradient(90deg, rgba(9, 24, 33, 0.18), transparent 16%, transparent 78%, rgba(7, 18, 28, 0.22)),
    linear-gradient(180deg, transparent 46%, rgba(7, 34, 48, 0.26));
  opacity: max(0.34, calc(0.58 - var(--hero-progress) * 0.18));
}

.window-frame {
  position: absolute;
  inset: clamp(18px, 2.2vw, 34px);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(20px, 3vw, 44px);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.13),
    inset 0 0 30px rgba(255, 255, 255, 0.26);
  opacity: max(0, calc(1 - var(--hero-progress) * 1.45));
  pointer-events: none;
}

.window-title {
  position: absolute;
  left: 50%;
  top: calc(50% - var(--hero-progress) * 38vh);
  z-index: 7;
  display: grid;
  width: max-content;
  max-width: min(340px, calc(100vw - 40px));
  place-items: center;
  text-align: center;
  color: #fff;
  transform: translate(-50%, -50%) scale(calc(1 - var(--hero-progress) * 0.22));
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.54);
  pointer-events: none;
  will-change: top, transform;
}

.window-logo {
  display: block;
  width: clamp(176px, 18vw, 278px);
  max-width: min(78vw, 278px);
  height: auto;
  filter:
    drop-shadow(0 18px 46px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(255, 244, 220, 0.12));
}

.window-title span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.window-title strong {
  display: block;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-left,
.hero-right {
  position: absolute;
  z-index: 5;
  color: #fff;
  opacity: max(0, calc(1 - var(--hero-progress) * 1.55));
  will-change: transform, opacity;
}

.hero-left {
  left: clamp(28px, 6.4vw, 96px);
  top: 20%;
  width: min(43vw, 580px);
  transform: translate(calc(var(--hero-progress) * -92px), calc(var(--hero-progress) * -54px));
}

.hero-right {
  right: clamp(28px, 5.8vw, 88px);
  top: 40%;
  width: min(39vw, 520px);
  transform: translate(calc(var(--hero-progress) * 104px), calc(var(--hero-progress) * 38px));
}

.hero-left h1,
.hero-right h2,
.hero-expanded-text h2,
.intro-grid h2,
.section-heading h2,
.split-section h2,
.apply-form h2,
.apply-visual h2 {
  margin: 0;
  font-size: clamp(54px, 7.6vw, 118px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-right h2 {
  font-size: clamp(50px, 6.7vw, 96px);
  text-align: left;
}

.hero-left p,
.hero-right p {
  max-width: 315px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-right p {
  display: none;
}

.hero-left p::before,
.hero-right p::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 18px;
  background: rgba(255, 250, 240, 0.82);
}

.hero-expanded-text {
  position: absolute;
  left: 50%;
  bottom: 16vh;
  z-index: 6;
  width: min(910px, calc(100% - 40px));
  text-align: center;
  color: #fff;
  opacity: max(0, calc((var(--hero-progress) - 0.58) * 2.6));
  transform: translate(-50%, calc((1 - var(--hero-progress)) * 42px));
  pointer-events: none;
}

.hero-expanded-text h2 {
  font-size: clamp(44px, 6.6vw, 104px);
}

.hero-expanded-text p {
  width: min(620px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 17px;
  font-weight: 800;
}

.hero-bottom {
  position: absolute;
  left: clamp(28px, 6.4vw, 96px);
  right: clamp(28px, 5.8vw, 88px);
  bottom: 28px;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  opacity: max(0, calc(1 - var(--hero-progress) * 1.35));
}

.hero-actions {
  display: none;
}

.hero-note {
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.hero-facts {
  display: none;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  justify-self: end;
  color: rgba(255, 250, 240, 0.76);
}

.hero-facts div {
  min-width: 110px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 250, 240, 0.2);
  text-align: center;
}

.hero-facts strong {
  display: block;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
}

.hero-facts span {
  font-size: 12px;
  font-weight: 850;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 9;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 250, 240, 0.8);
  border-bottom: 2px solid rgba(255, 250, 240, 0.8);
  transform: translateX(-50%) rotate(45deg);
  animation: hintMove 1.8s ease-in-out infinite;
}

.fact-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line-dark);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(244, 239, 228, 0) 76px),
    var(--paper);
  color: var(--ink);
}

.fact-band div {
  min-height: 154px;
  display: grid;
  align-content: center;
  padding: 26px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line-dark);
}

.fact-band div:last-child {
  border-right: 0;
}

.fact-value {
  display: block;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 950;
  line-height: 0.92;
}

.fact-label {
  display: block;
  max-width: 210px;
  margin-top: 12px;
  color: var(--dark-muted);
  font-size: 14px;
  font-weight: 800;
}

.intro-section,
.content-section,
.apply-section {
  padding: clamp(78px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.intro-section,
.map-section,
.trust-section {
  background: var(--paper);
  color: var(--ink);
}

.future-section,
.timeline-section,
.lots-section,
.faq-section {
  background: #17120e;
  color: var(--white);
}

.content-section:not(.future-section):not(.timeline-section):not(.lots-section):not(.faq-section):not(.map-section):not(.trust-section) {
  background: var(--ink);
  color: var(--white);
}

.intro-grid,
.section-heading,
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 7vw, 102px);
  align-items: start;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 60px);
}

.intro-grid h2,
.section-heading h2,
.split-section h2,
.apply-form h2,
.apply-visual h2 {
  font-size: clamp(38px, 5.8vw, 86px);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.altai-photo-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 168px) clamp(18px, 5vw, 82px);
  background:
    radial-gradient(circle at 18% 12%, rgba(95, 123, 93, 0.2), transparent 34%),
    radial-gradient(circle at 84% 38%, rgba(99, 141, 156, 0.2), transparent 42%),
    linear-gradient(180deg, #18130f 0%, #0f0d0b 52%, #17120e 100%);
  color: var(--white);
  isolation: isolate;
}

.altai-photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.32)),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.035) 0 1px, transparent 1px 7px);
  opacity: 0.42;
  pointer-events: none;
}

.altai-photo-copy {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(260px, 0.54fr);
  gap: clamp(26px, 6vw, 96px);
  align-items: end;
  margin: 0 auto clamp(38px, 6vw, 84px);
}

.altai-photo-copy h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 6.2vw, 98px);
  line-height: 0.9;
}

.altai-photo-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 800;
}

.altai-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  align-items: stretch;
}

.altai-photo-frame {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: clamp(18px, 2.2vw, 30px);
  background: #17120e;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 250, 240, 0.12);
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0 round clamp(18px, 2.2vw, 30px));
  isolation: isolate;
}

.altai-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 36%, rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 20% 10%, rgba(255, 250, 240, 0.18), transparent 26%);
  pointer-events: none;
}

.altai-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06) brightness(1.05);
  transform: translate3d(0, 0, 0) scale(1.055);
  transition: transform 950ms var(--ease-out-expo), filter 650ms var(--ease-soft);
  will-change: transform;
}

.altai-photo-frame:hover img {
  transform: translate3d(0, 0, 0) scale(1.085);
  filter: saturate(1.24) contrast(1.08) brightness(1.07);
}

.altai-photo-frame figcaption {
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(14px, 1.7vw, 24px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 950;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.64);
}

.altai-photo-frame figcaption::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 150px;
  background: rgba(255, 250, 240, 0.36);
}

.altai-photo-large {
  grid-row: span 2;
  min-height: min(74svh, 760px);
}

.altai-photo-lake img {
  object-position: 50% 48%;
}

.altai-photo-ridge {
  min-height: 430px;
}

.altai-photo-ridge img {
  object-position: 50% 42%;
}

.altai-photo-valley {
  grid-column: 1 / -1;
  min-height: clamp(260px, 34vw, 470px);
}

.altai-photo-valley img {
  object-position: 50% 44%;
}

.intro-copy {
  max-width: 620px;
  color: var(--dark-muted);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 750;
  line-height: 1.25;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 22px;
}

.project-sky-section {
  position: relative;
  min-height: 156svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding-top: clamp(106px, 12vw, 172px);
  padding-bottom: clamp(210px, 20vw, 330px);
  margin-bottom: -1px;
  background: #0b6fae;
  color: #fff;
  isolation: isolate;
}

.project-sky-section::before,
.project-sky-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.project-sky-section::before {
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(9, 84, 137, 0.18) 0%, rgba(10, 106, 169, 0.32) 52%, rgba(244, 239, 228, 0.28) 100%),
    var(--continuity-image);
  background-size: cover, cover;
  background-position: center, 50% calc(34% + var(--project-bg-y));
  transform: translate3d(0, 0, 0) scale(1.1);
  filter: blur(16px) saturate(1.18) contrast(0.96) brightness(1.03);
}

.project-sky-section::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 49, 86, 0.28) 0%, rgba(5, 86, 143, 0.26) 34%, rgba(11, 112, 176, 0.2) 58%, rgba(244, 239, 228, 0.9) 94%, var(--paper) 100%),
    radial-gradient(ellipse 80% 42% at 50% 18%, rgba(255, 255, 255, 0.18), transparent 68%),
    linear-gradient(90deg, rgba(3, 28, 52, 0.36), rgba(9, 102, 162, 0.1) 48%, rgba(3, 31, 56, 0.28));
  opacity: 1;
}

.project-sky-section > * {
  position: relative;
  z-index: 1;
}

.project-sky-section .section-kicker {
  width: min(1180px, 100%);
  margin: 0 auto clamp(20px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  clip-path: inset(0 100% 0 0);
  text-shadow: 0 10px 32px rgba(0, 33, 62, 0.44);
}

.project-sky-section .intro-grid {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  margin: 0 auto;
}

.project-sky-section .intro-grid h2 {
  max-width: 1060px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.92;
  text-shadow: 0 20px 58px rgba(0, 28, 52, 0.62);
}

.project-sky-section .intro-copy {
  max-width: 620px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.34;
  text-shadow: 0 12px 34px rgba(0, 30, 55, 0.46);
}

.project-sky-section .intro-copy p + p {
  margin-top: 14px;
}

.project-sky-section .motion-line-clip {
  clip-path: inset(0 0 0 0);
  transition: clip-path 980ms var(--ease-out-expo);
}

.project-sky-section .motion-line {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 820ms ease,
    filter 920ms ease,
    transform 980ms var(--ease-out-expo);
}

.project-reveal-text {
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.project-reveal-text::before {
  content: attr(aria-label);
  position: absolute;
  inset: 0;
  z-index: 0;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: none;
}

.project-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
  white-space: nowrap;
}

.project-char {
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: blur(1.8px);
  transform: translate3d(-0.12em, 0, 0);
  transition:
    opacity 760ms ease,
    clip-path 520ms var(--ease-out-expo),
    filter 920ms ease,
    transform 960ms var(--ease-out-expo);
  transition-delay: calc(var(--char-index) * 14ms);
  will-change: transform, opacity, filter;
}

.project-sky-section .section-kicker,
.project-sky-section .intro-copy p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 820ms ease,
    transform 980ms var(--ease-out-expo);
}

.project-sky-section.is-project-ready .motion-line-clip,
.project-sky-section.is-project-ready .motion-line,
.project-sky-section.is-project-ready .project-char,
.project-sky-section.is-project-ready .section-kicker,
.project-sky-section.is-project-ready .intro-copy p {
  transition: none;
}

.project-sky-section.is-visible .motion-line-clip {
  clip-path: inset(0 0 0 0);
}

.project-sky-section.is-visible .section-kicker {
  clip-path: inset(0 0 0 0);
}

.project-sky-section.is-visible .project-char {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.project-sky-section.is-visible .motion-line,
.project-sky-section.is-visible .section-kicker,
.project-sky-section.is-visible .intro-copy p {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.project-sky-section.is-visible .motion-line-clip:nth-child(2) {
  transition-delay: 80ms;
}

.project-sky-section.is-visible .motion-line-clip:nth-child(3) {
  transition-delay: 160ms;
}

.project-sky-section.is-visible .motion-line-clip:nth-child(4) {
  transition-delay: 240ms;
}

.project-sky-section.is-visible .intro-copy p:nth-child(2) {
  transition-delay: 120ms;
}

.section-heading > p,
.split-section > div:first-child p,
.apply-visual p {
  margin: 0;
  max-width: 560px;
  color: currentColor;
  opacity: 0.68;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 750;
}

.gallery-grid,
.comparison-grid,
.experience-grid,
.lots-grid,
.trust-grid {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

.gallery-grid {
  grid-template-columns: 1.05fr 0.82fr 0.82fr;
  grid-auto-flow: dense;
}

.gallery-grid .photo-card:nth-child(1) {
  grid-row: span 2;
  min-height: 700px;
}

.gallery-grid .photo-card:nth-child(3),
.gallery-grid .photo-card:nth-child(5) {
  min-height: 420px;
}

.visual-slot {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  color: #fff;
  background: #303b34;
  isolation: isolate;
  transform: translateZ(0);
}

.visual-slot::before,
.visual-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.visual-slot::before {
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.05), rgba(21, 17, 13, 0.7)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.42), rgba(21, 17, 13, 0.08));
  opacity: 0.92;
  transition: opacity 260ms ease;
}

.visual-slot:hover::before {
  transform: scale(1.07);
}

.visual-slot:hover::after {
  opacity: 0.78;
}

.visual-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(21, 17, 13, 0.42);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.photo-card,
.experience-card,
.feature-render {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.photo-card h3,
.experience-card h3,
.feature-render h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 950;
  line-height: 0.95;
}

.photo-card p,
.experience-card p,
.feature-render p {
  margin: 0;
  max-width: 440px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 15px;
  font-weight: 750;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.current-gallery .feature-render h3,
.future-gallery .feature-render h3 {
  color: rgba(255, 250, 240, 0.98);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.current-gallery .visual-label,
.future-gallery .visual-label {
  background: rgba(21, 17, 13, 0.34);
  color: rgba(255, 250, 240, 0.96);
}

.current-territory::before,
.current-road::before,
.current-engineering::before {
  background-image: url("assets/altai-current.png");
}

.current-cabins::before,
.current-common::before {
  background-image: url("assets/altai-hero.png");
}

.current-water::before,
.render-pier::before,
.life-retreat::before {
  background-image: url("assets/altai-water.png");
}

.render-cabins::before,
.render-form::before {
  background-image: url("assets/altai-renovation.png");
}

.render-spa::before,
.life-meeting::before {
  background-image: url("assets/altai-spa.png");
}

.render-event::before,
.life-family::before {
  background-image: url("assets/altai-evening.png");
}

.compare-cafe.compare-before::before {
  background-image: url("assets/compare-cafe-before.png");
}

.compare-cafe.compare-after::before {
  background-image: url("assets/compare-cafe-after.png");
}

.compare-territory.compare-before::before {
  background-image: url("assets/compare-territory-before.png");
}

.compare-territory.compare-after::before {
  background-image: url("assets/compare-territory-after.png");
}

.compare-building.compare-before::before {
  background-image: url("assets/compare-building-before.png");
}

.compare-building.compare-after::before {
  background-image: url("assets/compare-building-after.png");
}

.compare-layer.compare-cafe::before,
.compare-layer.compare-territory::before,
.compare-layer.compare-building::before {
  background-position: 50% 50%;
}

.compare-layer.compare-cafe.compare-before::before {
  background-size: 130% auto;
  background-position: 44% 50%;
}

.compare-layer.compare-territory.compare-before::before {
  background-size: 104% auto;
  background-position: 49% 50%;
}

.compare-layer.compare-territory.compare-after::before {
  background-size: 108% auto;
  background-position: 56% 50%;
}

.compare-layer.compare-building.compare-before::before {
  background-size: 112% auto;
  background-position: 0% 50%;
}

.compare-layer.compare-building.compare-after::before {
  background-size: cover;
  background-position: 50% 50%;
}

.future-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -14px 0 16px;
}

.gallery-control {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.gallery-control:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 240, 0.16);
}

.future-layout {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 20px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(255, 250, 240, 0.34) transparent;
}

.future-layout.is-gallery-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.future-layout .feature-render {
  flex: 0 0 min(74vw, 880px);
  min-height: 680px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.future-layout .feature-render:nth-child(even) {
  flex-basis: min(58vw, 690px);
}

.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-card,
.lot-card,
.trust-card,
.faq-item,
.apply-form,
.fund-bars {
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.055);
  box-shadow: var(--shadow);
}

.comparison-card {
  overflow: hidden;
}

.comparison-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}

.compare-layer {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 18px;
  color: #fff;
}

.compare-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: saturate(1.03) contrast(0.97) brightness(1.02);
}

.compare-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.02), transparent 42%, rgba(21, 17, 13, 0.58)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.16), transparent 34%, rgba(21, 17, 13, 0.1));
}

.compare-layer span {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.58);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-after {
  clip-path: inset(0 0 0 var(--split));
}

.split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: #fff;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.comparison-card.is-split-start .split-line,
.comparison-card.is-split-end .split-line {
  opacity: 0;
}

.comparison-copy {
  display: grid;
  gap: 16px;
  padding: 20px;
  color: rgba(255, 250, 240, 0.72);
}

.comparison-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.comparison-copy label {
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--copper);
}

.renovation-map {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(244, 239, 228, 0.08), rgba(21, 17, 13, 0.16)),
    url("assets/altai-plan.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(21, 17, 13, 0.18);
}

.map-river,
.map-road {
  display: none;
}

.map-pin {
  position: absolute;
  min-height: 40px;
  max-width: 165px;
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 9px 14px;
  box-shadow: 0 14px 34px rgba(21, 17, 13, 0.18);
  cursor: default;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.pin-cabins { left: 18%; top: 34%; }
.pin-spa { left: 50%; top: 46%; }
.pin-kitchen { left: 34%; top: 64%; }
.pin-fire { left: 58%; top: 68%; }
.pin-pier { right: 12%; bottom: 22%; }
.pin-parking { left: 8%; top: 16%; }

.split-section {
  align-items: center;
}

.fund-bars {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.08);
}

.fund-row {
  display: grid;
  gap: 10px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 14px;
  font-weight: 850;
}

.fund-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
}

.fund-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sand), var(--copper), var(--water));
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.1);
}

.timeline-list li {
  min-height: 232px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: rgba(255, 250, 240, 0.045);
}

.timeline-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
}

.timeline-list strong {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.timeline-list p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
  font-weight: 750;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
  min-height: 450px;
}

.life-family::before {
  background-image: url("assets/scenario-family-weekend.png");
  background-position: 50% 50%;
}

.life-meeting::before {
  background-image: url("assets/scenario-closed-meeting.png");
  background-position: 50% 50%;
}

.life-retreat::before {
  background-image: url("assets/scenario-banya-retreat.png");
  background-position: 54% 50%;
}

.experience-grid .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.02) 0%, rgba(21, 17, 13, 0.16) 48%, rgba(21, 17, 13, 0.74) 100%),
    linear-gradient(90deg, rgba(21, 17, 13, 0.44), rgba(21, 17, 13, 0.04) 62%);
  opacity: 0.9;
}

@media (min-width: 981px) {
  #life-scenarios .experience-card h3 {
    max-width: min(100%, 390px);
    font-size: clamp(32px, 2.2vw, 36px);
    line-height: 0.98;
  }

  #life-scenarios .experience-card p {
    max-width: min(100%, 360px);
  }
}

.lots-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lot-card,
.trust-card {
  min-height: 326px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 24px;
}

.lot-featured {
  background: linear-gradient(180deg, rgba(185, 120, 74, 0.24), rgba(255, 250, 240, 0.06));
}

.lot-name {
  color: var(--sand);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lot-card strong {
  display: block;
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 55px);
  font-weight: 950;
  line-height: 0.94;
}

.lot-card p,
.trust-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 15px;
  font-weight: 750;
}

.lot-use {
  display: block;
  color: rgba(255, 250, 240, 0.9);
  font-size: 15px;
  font-weight: 900;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  border-color: var(--line-dark);
  background: rgba(21, 17, 13, 0.06);
  box-shadow: 0 24px 70px rgba(21, 17, 13, 0.12);
}

.trust-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
}

.trust-card p {
  color: var(--dark-muted);
}

.document-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.document-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--dark-muted);
  font-size: 14px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 22px;
  text-align: left;
  color: rgba(255, 250, 240, 0.72);
  cursor: pointer;
}

.faq-item span {
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.faq-item small {
  display: none;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.64);
  font-size: 15px;
  font-weight: 750;
}

.faq-item[aria-expanded="true"] small {
  display: block;
}

.apply-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.94fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.apply-visual {
  min-height: 760px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 28px 90px rgba(21, 17, 13, 0.16);
}

.apply-visual h2 {
  color: #fff;
}

.apply-visual p {
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.78);
}

.apply-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 46px);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(21, 17, 13, 0.12);
}

.apply-form label {
  display: grid;
  gap: 7px;
  color: rgba(21, 17, 13, 0.68);
  font-size: 14px;
  font-weight: 850;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus,
.drawer-form input:focus,
.drawer-form select:focus,
.drawer-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(185, 120, 74, 0.18);
}

.checkbox-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--copper);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.form-status.error {
  color: #a03924;
}

.dock-cta {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: none;
}

.dock-shell {
  pointer-events: auto;
  position: relative;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(24px) saturate(1.2);
  color: var(--ink);
  cursor: pointer;
}

.dock-main,
.dock-logo {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.dock-main {
  min-width: 188px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 950;
  white-space: nowrap;
}

.dock-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dock-logo img {
  display: block;
  width: 36px;
  height: 36px;
}

.dock-shell:hover .dock-logo,
.dock-shell[aria-expanded="true"] .dock-logo {
  transform: rotate(-8deg) scale(1.04);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.application-drawer {
  position: fixed;
  left: 50%;
  bottom: max(96px, calc(env(safe-area-inset-bottom) + 96px));
  z-index: 89;
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100svh - 138px);
  overflow-y: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(26px) saturate(1.12);
  transform: translate(-50%, calc(100% + 150px));
  opacity: 0;
  pointer-events: none;
  transition: transform 390ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

body.application-open {
  overflow: hidden;
}

body.application-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.application-open .application-drawer {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  font-size: 28px;
  line-height: 1;
}

.drawer-kicker {
  margin: 0 0 12px;
  color: rgba(21, 17, 13, 0.56);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.application-drawer h2 {
  margin: 0;
  padding-right: 54px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 950;
  line-height: 0.92;
}

.drawer-copy {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(21, 17, 13, 0.66);
  font-size: 17px;
  font-weight: 750;
}

.drawer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.drawer-form label {
  display: grid;
  gap: 7px;
  color: rgba(21, 17, 13, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.drawer-form label:nth-of-type(4),
.drawer-check,
.drawer-submit,
.application-drawer .form-status {
  grid-column: 1 / -1;
}

.drawer-form input,
.drawer-form select,
.drawer-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.drawer-submit {
  border: 0;
  margin-top: 6px;
  background: var(--ink);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(22px, 6vw, 96px);
  background: #0d0a08;
  color: rgba(255, 250, 240, 0.56);
  font-size: 14px;
  font-weight: 750;
}

.site-footer p {
  margin: 0;
  max-width: 780px;
}

.site-footer a {
  color: #fff;
  font-weight: 950;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hintMove {
  0%, 100% {
    transform: translate(-50%, 0) rotate(45deg);
    opacity: 0.68;
  }
  50% {
    transform: translate(-50%, 7px) rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(160px, 0.45fr) auto minmax(72px, 0.45fr);
    padding-inline: 28px;
  }

  .nav-links {
    gap: 16px;
  }

  .timeline-list,
  .lots-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-left h1,
  .hero-right h2 {
    font-size: clamp(52px, 7vw, 90px);
  }
}

@media (max-width: 1080px) {
  .gallery-grid,
  .comparison-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid .photo-card:nth-child(1) {
    grid-row: auto;
    min-height: 460px;
  }

  .future-layout .feature-render,
  .future-layout .feature-render:nth-child(even) {
    flex-basis: min(82vw, 680px);
    min-height: 580px;
  }

  .apply-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .apply-visual {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .brand-logo {
    min-width: 0;
  }

  .brand-image {
    width: clamp(134px, 27vw, 168px);
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-section {
    height: 175svh;
  }

  .hero-window {
    width: min(66vw, 470px);
    height: 58vh;
    top: 46%;
    padding: 18px;
  }

  .window-scene {
    background-position: 50% 32%;
  }

  .hero-left,
  .hero-right {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .hero-left {
    top: 17%;
  }

  .hero-right {
    top: auto;
    bottom: 24%;
  }

  .window-title {
    top: calc(48% - var(--hero-progress) * 34vh);
  }

  .window-logo {
    width: clamp(158px, 34vw, 230px);
  }

  .hero-left h1,
  .hero-right h2 {
    font-size: clamp(44px, 13vw, 78px);
  }

  .hero-left p,
  .hero-right p {
    display: none;
  }

  .hero-bottom {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-note,
  .hero-facts {
    display: none;
  }

  .fact-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-sky-section {
    min-height: 138svh;
    padding-top: 104px;
    padding-bottom: 220px;
  }

  .project-sky-section .intro-copy {
    max-width: 620px;
    margin-left: 0;
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .gallery-grid,
  .comparison-grid,
  .experience-grid,
  .lots-grid,
  .trust-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .experience-card {
    min-height: 300px;
  }

  .future-toolbar {
    justify-content: flex-start;
  }

  .future-layout .feature-render,
  .future-layout .feature-render:nth-child(even) {
    flex-basis: 88vw;
    min-height: 520px;
  }

  .renovation-map {
    min-height: 540px;
  }

  .drawer-form {
    grid-template-columns: 1fr;
  }

  .application-drawer {
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 86svh;
    border-radius: 8px 8px 0 0;
    transform: translateY(106%);
  }

  body.application-open .application-drawer {
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  :root {
    --continuity-image: url("assets/altai-sky-mountains-1280.jpg");
  }

  body {
    padding-bottom: 76px;
  }

  .brand-word {
    font-size: 16px;
  }

  .brand-image {
    width: clamp(124px, 39vw, 150px);
  }

  .brand-region,
  .brand-divider,
  .header-cta {
    display: none;
  }

  .hero-window {
    width: 74vw;
    height: 48vh;
    padding: 14px;
  }

  .window-scene {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 68, 105, 0.18) 48%, rgba(21, 17, 13, 0.2)),
      var(--continuity-image);
    background-position: 52% 31%;
  }

  .window-frame {
    inset: 14px;
  }

  .window-title span {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .window-title strong {
    font-size: 24px;
  }

  .window-logo {
    width: clamp(144px, 46vw, 188px);
  }

  .hero-expanded-text h2 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .fact-band {
    grid-template-columns: 1fr;
  }

  .project-sky-section {
    min-height: 132svh;
    padding-top: 90px;
    padding-bottom: 210px;
  }

  .project-sky-section::before {
    background-image:
      linear-gradient(180deg, rgba(9, 84, 137, 0.18) 0%, rgba(10, 106, 169, 0.32) 52%, rgba(244, 239, 228, 0.28) 100%),
      var(--continuity-image);
    background-position: center, 52% calc(31% + var(--project-bg-y));
  }

  .project-sky-section .intro-grid h2 {
    font-size: clamp(32px, 10vw, 52px);
    line-height: 0.94;
  }

  .project-sky-section .intro-copy {
    font-size: 15px;
    line-height: 1.42;
  }

  .intro-section,
  .content-section,
  .apply-section {
    padding-inline: 18px;
  }

  .dock-main {
    min-width: 146px;
    max-width: 156px;
    padding: 0 16px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dock-logo {
    width: 44px;
    height: 44px;
  }

  .application-drawer {
    padding: 24px 18px;
  }

  .site-footer {
    display: grid;
  }
}


/* Motion layer restored: Jesko-like bottom-up hovers, soft image zooms, and scroll polish. */
.nav-links a,
.header-cta,
.menu-drawer a,
.site-footer a {
  isolation: isolate;
  border-radius: 999px;
  transition: color 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a,
.header-cta {
  padding-inline: 8px;
  margin-inline: -8px;
}

.nav-links a::before,
.header-cta::before,
.menu-drawer a::before,
.site-footer a::before {
  content: "";
  position: absolute;
  inset: 2px -4px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 250, 240, 0.13);
  opacity: 0;
  transform: translateY(112%);
  transform-origin: bottom center;
  transition: opacity 240ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::after,
.header-cta::after,
.site-footer a::after {
  bottom: 0;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 260ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.menu-drawer a:hover,
.menu-drawer a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.header-cta:hover::before,
.header-cta:focus-visible::before,
.menu-drawer a:hover::before,
.menu-drawer a:focus-visible::before,
.site-footer a:hover::before,
.site-footer a:focus-visible::before,
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.button,
.gallery-control,
.dock-shell {
  isolation: isolate;
  overflow: hidden;
}

.button::before,
.gallery-control::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.26), rgba(255, 250, 240, 0.08));
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 260ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover::before,
.button:focus-visible::before,
.gallery-control:hover::before,
.gallery-control:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.fact-band div,
.timeline-list li,
.lot-card,
.trust-card,
.faq-item,
.fund-bars,
.document-strip span,
.map-pin {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease, border-color 320ms ease, background 320ms ease;
}

.fact-band div::before,
.timeline-list li::before,
.lot-card::before,
.trust-card::before,
.faq-item::before,
.fund-bars::before,
.document-strip span::before,
.map-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.16), rgba(185, 120, 74, 0.16));
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 260ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fact-band div:hover,
.timeline-list li:hover,
.lot-card:hover,
.trust-card:hover,
.faq-item:hover,
.fund-bars:hover,
.document-strip span:hover,
.map-pin:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.22);
}

.fact-band div:hover::before,
.timeline-list li:hover::before,
.lot-card:hover::before,
.trust-card:hover::before,
.faq-item:hover::before,
.fund-bars:hover::before,
.document-strip span:hover::before,
.map-pin:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.visual-slot {
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 620ms ease;
  will-change: transform;
}

.visual-slot::before {
  background-position: center calc(50% + var(--parallax-y, 0px));
  transform: scale(1.025);
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1), background-position 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, background-position;
}

.visual-slot::after {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(180deg, rgba(21, 17, 13, 0.04), rgba(21, 17, 13, 0.7)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.42), rgba(21, 17, 13, 0.08));
  opacity: 0.82;
  transition: opacity 320ms ease;
}

.visual-slot:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 38px 105px rgba(0, 0, 0, 0.36);
}

.visual-slot:hover::before {
  transform: scale(1.115);
}

.visual-label,
.photo-card h3,
.photo-card p,
.experience-card h3,
.experience-card p,
.feature-render h3,
.feature-render p {
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}

.visual-slot:hover .visual-label {
  transform: translateY(-3px);
}

.visual-slot:hover h3,
.visual-slot:hover p {
  transform: translateY(-5px);
}

.compare-layer::before {
  transform: scale(1.02);
  transition:
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms var(--ease-soft);
}

.comparison-card:hover .compare-layer::before {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(0.985) brightness(1.025);
}

.renovation-map {
  background-size: 100% 100%, 106% auto;
  transition: background-size 1200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.renovation-map:hover {
  background-size: 100% 100%, 114% auto;
  transform: translateY(-6px);
  box-shadow: 0 38px 110px rgba(21, 17, 13, 0.24);
}

.dock-shell {
  --dock-x: 0px;
  --dock-y: 0px;
  --dock-light-x: 50%;
  --dock-light-y: 50%;
  transform: translate3d(var(--dock-x), var(--dock-y), 0);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 420ms ease;
  will-change: transform;
}

.dock-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--dock-light-x) var(--dock-light-y), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12) 34%, transparent 68%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.dock-shell:hover,
.dock-shell[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.dock-shell:hover::before,
.dock-shell[aria-expanded="true"]::before {
  opacity: 1;
}

[data-reveal] {
  filter: blur(8px);
  transform: translateY(48px) scale(0.992);
  transition: opacity 820ms ease, transform 920ms cubic-bezier(0.16, 1, 0.3, 1), filter 920ms ease;
}

[data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

[data-reveal] .section-kicker,
[data-reveal] h2,
[data-reveal] .section-heading > p,
[data-reveal] .intro-copy,
[data-reveal] .visual-slot,
[data-reveal] .comparison-card,
[data-reveal] .timeline-list li,
[data-reveal] .lot-card,
[data-reveal] .trust-card,
[data-reveal] .faq-item,
[data-reveal] .fund-row,
[data-reveal] .transparency-points article,
[data-reveal] .platform-feature-grid article,
[data-reveal] .platform-mockup-stage,
[data-reveal] .dashboard-frame,
[data-reveal] .platform-ai-card,
[data-reveal] .platform-roadmap-intro,
[data-reveal] .platform-module-grid article,
[data-reveal] .platform-value-strip article,
[data-reveal] .owner-meeting-strip article {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible .section-kicker,
[data-reveal].is-visible h2,
[data-reveal].is-visible .section-heading > p,
[data-reveal].is-visible .intro-copy,
[data-reveal].is-visible .visual-slot,
[data-reveal].is-visible .comparison-card,
[data-reveal].is-visible .timeline-list li,
[data-reveal].is-visible .lot-card,
[data-reveal].is-visible .trust-card,
[data-reveal].is-visible .faq-item,
[data-reveal].is-visible .fund-row,
[data-reveal].is-visible .transparency-points article,
[data-reveal].is-visible .platform-feature-grid article,
[data-reveal].is-visible .platform-mockup-stage,
[data-reveal].is-visible .dashboard-frame,
[data-reveal].is-visible .platform-ai-card,
[data-reveal].is-visible .platform-roadmap-intro,
[data-reveal].is-visible .platform-module-grid article,
[data-reveal].is-visible .platform-value-strip article,
[data-reveal].is-visible .owner-meeting-strip article {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .visual-slot:nth-child(2),
[data-reveal].is-visible .comparison-card:nth-child(2),
[data-reveal].is-visible .timeline-list li:nth-child(2),
[data-reveal].is-visible .lot-card:nth-child(2),
[data-reveal].is-visible .trust-card:nth-child(2),
[data-reveal].is-visible .faq-item:nth-child(2),
[data-reveal].is-visible .fund-row:nth-child(2),
[data-reveal].is-visible .transparency-points article:nth-child(2),
[data-reveal].is-visible .platform-feature-grid article:nth-child(2),
[data-reveal].is-visible .dashboard-frame:nth-child(2),
[data-reveal].is-visible .platform-module-grid article:nth-child(2),
[data-reveal].is-visible .platform-value-strip article:nth-child(2),
[data-reveal].is-visible .owner-meeting-strip article:nth-child(2) {
  transition-delay: 80ms;
}

[data-reveal].is-visible .visual-slot:nth-child(3),
[data-reveal].is-visible .comparison-card:nth-child(3),
[data-reveal].is-visible .timeline-list li:nth-child(3),
[data-reveal].is-visible .lot-card:nth-child(3),
[data-reveal].is-visible .trust-card:nth-child(3),
[data-reveal].is-visible .faq-item:nth-child(3),
[data-reveal].is-visible .fund-row:nth-child(3),
[data-reveal].is-visible .transparency-points article:nth-child(3),
[data-reveal].is-visible .platform-feature-grid article:nth-child(3),
[data-reveal].is-visible .platform-module-grid article:nth-child(3),
[data-reveal].is-visible .platform-value-strip article:nth-child(3),
[data-reveal].is-visible .owner-meeting-strip article:nth-child(3) {
  transition-delay: 150ms;
}

[data-reveal].is-visible .visual-slot:nth-child(4),
[data-reveal].is-visible .timeline-list li:nth-child(4),
[data-reveal].is-visible .lot-card:nth-child(4),
[data-reveal].is-visible .trust-card:nth-child(4),
[data-reveal].is-visible .faq-item:nth-child(4),
[data-reveal].is-visible .fund-row:nth-child(4),
[data-reveal].is-visible .transparency-points article:nth-child(4),
[data-reveal].is-visible .platform-feature-grid article:nth-child(4),
[data-reveal].is-visible .platform-module-grid article:nth-child(4),
[data-reveal].is-visible .platform-value-strip article:nth-child(4) {
  transition-delay: 220ms;
}

[data-reveal].is-visible .visual-slot:nth-child(5),
[data-reveal].is-visible .timeline-list li:nth-child(5),
[data-reveal].is-visible .fund-row:nth-child(5),
[data-reveal].is-visible .platform-feature-grid article:nth-child(5),
[data-reveal].is-visible .platform-module-grid article:nth-child(5),
[data-reveal].is-visible .platform-value-strip article:nth-child(5) {
  transition-delay: 290ms;
}

[data-reveal].is-visible .visual-slot:nth-child(6),
[data-reveal].is-visible .timeline-list li:nth-child(6),
[data-reveal].is-visible .platform-feature-grid article:nth-child(6),
[data-reveal].is-visible .platform-module-grid article:nth-child(6) {
  transition-delay: 360ms;
}

/* Motion layer visibility fixes. */
.button,
.gallery-control {
  position: relative;
}

.button::before,
.gallery-control::before,
.fact-band div::before,
.timeline-list li::before,
.lot-card::before,
.trust-card::before,
.faq-item::before,
.fund-bars::before,
.document-strip span::before,
.map-pin::before {
  z-index: 0;
  pointer-events: none;
}

.button,
.gallery-control,
.fact-band div,
.timeline-list li,
.lot-card,
.trust-card,
.faq-item,
.fund-bars,
.document-strip span,
.map-pin {
  isolation: isolate;
}

.button > *,
.gallery-control > *,
.fact-band div > *,
.timeline-list li > *,
.lot-card > *,
.trust-card > *,
.faq-item > *,
.fund-bars > *,
.document-strip span > *,
.map-pin > * {
  position: relative;
  z-index: 1;
}

.nav-links a::before,
.header-cta::before,
.menu-drawer a::before,
.site-footer a::before {
  z-index: 0;
  pointer-events: none;
}

.nav-links a,
.header-cta,
.menu-drawer a,
.site-footer a {
  z-index: 0;
}

/* Senior motion pass: slow, scroll-driven, layered interactions. */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.site-header,
.dock-shell,
.dock-main,
.dock-logo,
.menu-toggle {
  transition-duration: var(--duration-ui);
  transition-timing-function: var(--ease-soft);
}

.site-header {
  transition-property: color, background, backdrop-filter, opacity;
}

body.on-light-surface .site-header {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(244, 239, 228, 0.78), rgba(244, 239, 228, 0));
}

body.on-light-surface .site-header .brand-logo,
body.on-light-surface .site-header .nav-links,
body.on-light-surface .site-header .header-cta {
  color: var(--ink);
}

body.on-light-surface .site-header .brand-image-light {
  display: none;
}

body.on-light-surface .site-header .brand-image-dark {
  display: block;
  filter: drop-shadow(0 12px 24px rgba(21, 17, 13, 0.12));
}

body.on-light-surface .site-header .brand-region {
  color: rgba(21, 17, 13, 0.58);
}

body.on-light-surface .site-header .brand-divider {
  background: rgba(21, 17, 13, 0.22);
}

body.on-light-surface .site-header .menu-toggle {
  border-color: rgba(21, 17, 13, 0.24);
  background: rgba(244, 239, 228, 0.72);
}

body.on-light-surface .site-header .menu-toggle span {
  background: var(--ink);
}

.menu-drawer {
  transform: translate3d(0, -14px, 0) scale(0.96);
  transform-origin: top right;
  filter: blur(8px);
  transition:
    opacity 520ms var(--ease-out-expo),
    transform 560ms var(--ease-out-expo),
    filter 560ms var(--ease-out-expo);
}

.menu-drawer.is-open {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.menu-drawer.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0) scale(0.975);
  filter: blur(6px);
  transition-duration: 340ms;
}

.menu-drawer a {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 520ms var(--ease-out-expo),
    transform 560ms var(--ease-out-expo),
    color 300ms ease,
    background 340ms ease;
}

.menu-drawer.is-open a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.menu-drawer.is-open a:nth-child(1) { transition-delay: 35ms; }
.menu-drawer.is-open a:nth-child(2) { transition-delay: 80ms; }
.menu-drawer.is-open a:nth-child(3) { transition-delay: 125ms; }
.menu-drawer.is-open a:nth-child(4) { transition-delay: 170ms; }
.menu-drawer.is-open a:nth-child(5) { transition-delay: 215ms; }
.menu-drawer.is-open a:nth-child(6) { transition-delay: 260ms; }

.menu-drawer a:hover,
.menu-drawer a:focus-visible {
  transform: translate3d(4px, 0, 0);
}

.motion-line-clip {
  display: block;
  overflow: clip;
}

.motion-line {
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity, filter;
}

.motion-gsap .hero-section {
  height: 100svh;
}

.motion-gsap .hero-stage {
  position: relative;
  min-height: 100svh;
}

.motion-gsap .hero-window,
.motion-gsap .hero-left,
.motion-gsap .hero-right,
.motion-gsap .hero-expanded-text,
.motion-gsap .window-title {
  opacity: 1;
}

.motion-gsap .hero-window {
  transform: translate3d(-50%, -50%, 0);
}

.motion-gsap .hero-left,
.motion-gsap .hero-right {
  transform: translate3d(0, 0, 0);
}

.motion-gsap .window-title {
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.motion-gsap .hero-expanded-text {
  bottom: 15vh;
  opacity: 0;
  transform: translate3d(-50%, 80px, 0);
}

.motion-gsap .hero-expanded-text .motion-line-clip {
  overflow: clip;
}

.window-scene {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
}

.fact-value {
  font-variant-numeric: tabular-nums;
}

[data-reveal] {
  transform: translate3d(0, 44px, 0);
  transition:
    opacity var(--duration-reveal) var(--ease-out-expo),
    transform 980ms var(--ease-out-expo),
    filter 980ms var(--ease-out-expo);
}

[data-reveal]:not(.is-visible) {
  filter: blur(8px);
}

[data-reveal] .visual-slot,
[data-reveal] .comparison-card,
[data-reveal] .timeline-list li,
[data-reveal] .lot-card,
[data-reveal] .trust-card,
[data-reveal] .faq-item,
[data-reveal] .fund-row,
[data-reveal] .apply-form label,
[data-reveal] .apply-form .button,
[data-reveal] .apply-form .checkbox-label {
  will-change: transform, opacity;
}

.visual-slot,
.comparison-card,
.timeline-list li,
.lot-card,
.trust-card,
.faq-item,
.fund-row {
  transition:
    transform 620ms var(--ease-out-expo),
    box-shadow 620ms ease,
    border-color 380ms ease,
    background 380ms ease;
}

.visual-slot:hover,
.comparison-card:hover,
.timeline-list li:hover,
.lot-card:hover,
.trust-card:hover,
.faq-item:hover,
.fund-row:hover {
  transform: translate3d(0, -4px, 0);
}

.visual-slot:hover::before {
  transform: scale(1.035);
}

.faq-item {
  position: relative;
  overflow: hidden;
  transition:
    background var(--duration-ui) ease,
    border-color var(--duration-ui) ease,
    transform var(--duration-ui-slow) var(--ease-out-expo);
}

#faq .faq-item {
  transition:
    opacity 760ms ease,
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 420ms ease,
    transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item span::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.72);
  font-size: 20px;
  line-height: 1;
  transform: rotate(0deg);
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background var(--duration-ui-fast) ease,
    color var(--duration-ui-fast) ease;
}

.faq-item small {
  display: block;
  height: 0;
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 3px, 0);
  transition:
    height 340ms linear,
    margin-top 240ms linear,
    opacity 180ms ease,
    transform 240ms ease;
  will-change: height, opacity, transform;
}

.faq-item[aria-expanded="true"] span::after {
  transform: rotate(45deg);
  background: rgba(255, 250, 240, 0.12);
  color: #fff;
}

.faq-item[aria-expanded="true"] small {
  margin-top: 14px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#faq .faq-item[aria-expanded="true"] small {
  margin-top: 14px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.drawer-backdrop {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition:
    opacity 520ms ease,
    background 520ms ease,
    backdrop-filter 620ms var(--ease-out-expo);
}

.application-drawer {
  width: min(1180px, calc(100vw - 48px));
  bottom: max(24px, env(safe-area-inset-bottom));
  border-radius: 20px;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-50%, 110px, 0) scale(0.96);
  transition:
    transform var(--duration-modal-open) var(--ease-out-expo),
    opacity 620ms ease,
    filter var(--duration-modal-open) var(--ease-out-expo);
}

.application-drawer > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 560ms ease,
    transform 720ms var(--ease-out-expo);
}

body.application-open {
  overflow: hidden;
}

body.application-open main,
body.application-open .site-header,
body.application-open .site-footer {
  opacity: 0.65;
  filter: blur(2px);
  transform: scale(0.985);
  transform-origin: center top;
  transition:
    opacity 680ms ease,
    filter 740ms var(--ease-out-expo),
    transform 740ms var(--ease-out-expo);
}

main,
.site-header,
.site-footer {
  transition:
    opacity 620ms ease,
    filter 620ms var(--ease-out-expo),
    transform 620ms var(--ease-out-expo);
}

body.application-open .drawer-backdrop {
  opacity: 1;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

body.application-open .application-drawer {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, 0, 0) scale(1);
}

body.application-open .application-drawer > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.application-open .application-drawer > :nth-child(1) { transition-delay: 80ms; }
body.application-open .application-drawer > :nth-child(2) { transition-delay: 130ms; }
body.application-open .application-drawer > :nth-child(3) { transition-delay: 185ms; }
body.application-open .application-drawer > :nth-child(4) { transition-delay: 240ms; }
body.application-open .application-drawer > :nth-child(5) { transition-delay: 300ms; }

body.application-closing .drawer-backdrop {
  transition-duration: 460ms;
}

body.application-closing .application-drawer {
  transition-duration: var(--duration-modal-close);
}

.drawer-form label,
.drawer-check,
.drawer-submit {
  transition:
    opacity 540ms ease,
    transform 680ms var(--ease-out-expo);
}

body.application-open .drawer-form label,
body.application-open .drawer-check,
body.application-open .drawer-submit {
  animation: drawerFieldIn 760ms var(--ease-out-expo) both;
}

body.application-open .drawer-form label:nth-of-type(1) { animation-delay: 330ms; }
body.application-open .drawer-form label:nth-of-type(2) { animation-delay: 385ms; }
body.application-open .drawer-form label:nth-of-type(3) { animation-delay: 440ms; }
body.application-open .drawer-form label:nth-of-type(4) { animation-delay: 495ms; }
body.application-open .drawer-check { animation-delay: 550ms; }
body.application-open .drawer-submit { animation-delay: 605ms; }

@keyframes drawerFieldIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.dock-shell {
  transition:
    transform 500ms var(--ease-out-expo),
    background 420ms ease,
    box-shadow 520ms ease,
    color 420ms ease;
}

.dock-main,
.dock-logo {
  transition:
    transform 480ms var(--ease-out-expo),
    background 420ms ease,
    color 420ms ease,
    box-shadow 520ms ease;
}

.dock-shell:hover {
  transform: translate3d(var(--dock-x, 0), var(--dock-y, 0), 0) scale(1.035);
}

.dock-shell:hover .dock-logo,
.dock-shell[aria-expanded="true"] .dock-logo {
  transform: translate3d(2px, -1px, 0) rotate(-10deg) scale(1.055);
}

body.on-light-surface .dock-shell {
  background: rgba(21, 17, 13, 0.12);
  box-shadow: 0 24px 70px rgba(21, 17, 13, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body.on-light-surface .dock-main,
body.on-light-surface .dock-logo {
  background: rgba(21, 17, 13, 0.94);
  color: var(--white);
}

/* Top-right menu: warm glass panel with slower, calmer motion. */
.menu-toggle {
  width: 54px;
  height: 54px;
  gap: 0;
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.18);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 250, 240, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.025));
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 250, 240, 0.2),
    inset 0 -10px 22px rgba(0, 0, 0, 0.16);
  transition:
    transform 560ms var(--ease-out-expo),
    background 480ms var(--ease-soft),
    border-color 480ms var(--ease-soft),
    box-shadow 560ms var(--ease-soft),
    color 380ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.035);
  border-color: rgba(255, 250, 240, 0.3);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 250, 240, 0.26), transparent 36%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.13), rgba(255, 250, 240, 0.045));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 250, 240, 0.26),
    inset 0 -12px 26px rgba(0, 0, 0, 0.18);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 19px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 620ms var(--ease-out-expo),
    opacity 360ms ease,
    width 520ms var(--ease-soft),
    background 380ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate3d(0, -7px, 0);
}

.menu-toggle span:nth-child(2) {
  width: 14px;
  transform: translate3d(0, 0, 0);
}

.menu-toggle span:nth-child(3) {
  transform: translate3d(0, 7px, 0);
}

.menu-toggle[aria-expanded="true"] {
  transform: translate3d(0, 0, 0) scale(1.02);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 8px;
  transform: scaleX(0.25);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

body.on-light-surface .site-header .menu-toggle {
  color: var(--ink);
  border-color: rgba(21, 17, 13, 0.16);
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.82), rgba(216, 195, 155, 0.34));
  box-shadow:
    0 20px 54px rgba(21, 17, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -12px 26px rgba(21, 17, 13, 0.08);
}

body.on-light-surface .site-header .menu-toggle span {
  background: currentColor;
}

body.menu-open .site-header .menu-toggle,
body.menu-closing .site-header .menu-toggle,
body.on-light-surface.menu-open .site-header .menu-toggle,
body.on-light-surface.menu-closing .site-header .menu-toggle {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.22);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 250, 240, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(47, 38, 29, 0.88), rgba(21, 17, 13, 0.78));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 250, 240, 0.18),
    inset 0 -14px 28px rgba(0, 0, 0, 0.18);
}

.menu-drawer {
  top: 82px;
  right: clamp(14px, 5vw, 82px);
  width: min(318px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(216, 195, 155, 0.16), transparent 32%),
    linear-gradient(150deg, rgba(31, 25, 19, 0.93), rgba(13, 11, 9, 0.88));
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.34),
    0 8px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 250, 240, 0.14),
    inset 0 -20px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(28px) saturate(1.18);
  -webkit-backdrop-filter: blur(28px) saturate(1.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(10px, -18px, 0) scale(0.92);
  transform-origin: calc(100% - 28px) -18px;
  filter: blur(12px);
  clip-path: inset(0 0 100% 0 round 18px);
  transition:
    opacity 430ms ease,
    transform 720ms var(--ease-out-expo),
    filter 640ms var(--ease-out-expo),
    clip-path 720ms var(--ease-in-out-smooth);
}

.menu-drawer::after {
  content: "";
  position: absolute;
  top: -7px;
  right: 23px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(255, 250, 240, 0.12);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  background: linear-gradient(135deg, rgba(42, 34, 26, 0.86), rgba(24, 20, 15, 0.82));
  transform: rotate(45deg);
  pointer-events: none;
}

.menu-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 18px);
}

.menu-drawer.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(7px, -13px, 0) scale(0.955);
  filter: blur(8px);
  clip-path: inset(0 0 24% 0 round 18px);
  transition:
    opacity 300ms ease,
    transform 460ms var(--ease-soft),
    filter 420ms var(--ease-soft),
    clip-path 460ms var(--ease-in-out-smooth);
}

.menu-drawer nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
}

.menu-drawer a {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.055);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(6px);
  transition:
    opacity 620ms var(--ease-out-expo),
    transform 660ms var(--ease-out-expo),
    filter 640ms var(--ease-out-expo),
    color 340ms ease,
    background 360ms var(--ease-soft);
}

.menu-drawer a:first-child {
  border-top: 0;
}

.menu-drawer a::before {
  content: "";
  position: absolute;
  inset: 5px 6px;
  z-index: -1;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.035)),
    radial-gradient(circle at 92% 50%, rgba(216, 195, 155, 0.2), transparent 30%);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scaleY(0.86);
  transition:
    opacity 380ms ease,
    transform 480ms var(--ease-out-expo);
}

.menu-drawer a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: translate3d(-10px, 0, 0) scale(0.55);
  transition:
    opacity 360ms ease,
    transform 500ms var(--ease-out-expo);
}

.menu-drawer.is-open a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.menu-drawer.is-open a:nth-child(1) { transition-delay: 90ms; }
.menu-drawer.is-open a:nth-child(2) { transition-delay: 135ms; }
.menu-drawer.is-open a:nth-child(3) { transition-delay: 180ms; }
.menu-drawer.is-open a:nth-child(4) { transition-delay: 225ms; }
.menu-drawer.is-open a:nth-child(5) { transition-delay: 270ms; }
.menu-drawer.is-open a:nth-child(6) { transition-delay: 315ms; }

.menu-drawer a:hover,
.menu-drawer a:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translate3d(6px, 0, 0);
}

.menu-drawer a:hover::before,
.menu-drawer a:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleY(1);
}

.menu-drawer a:hover::after,
.menu-drawer a:focus-visible::after {
  opacity: 0.7;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 620px) {
  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .menu-drawer {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
    border-radius: 20px;
    transform-origin: calc(100% - 26px) -16px;
    clip-path: inset(0 0 100% 0 round 20px);
  }

  .menu-drawer.is-open {
    clip-path: inset(0 0 0 0 round 20px);
  }

  .menu-drawer a {
    min-height: 54px;
    padding: 16px 16px;
  }
}

/* Balanced application drawer and custom lot choice controls. */
.application-drawer {
  width: min(1040px, calc(100vw - 56px));
  max-height: calc(100svh - 48px);
  padding: clamp(28px, 3.6vw, 46px);
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(244, 239, 228, 0.96)),
    var(--paper);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.drawer-close {
  width: 42px;
  height: 42px;
  right: 20px;
  top: 20px;
  border-color: #000;
  background: #000;
  color: #fff;
  font-size: 24px;
  transition: transform 260ms var(--ease-soft), background 220ms ease, color 220ms ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: #fff;
  color: #000;
  transform: rotate(90deg) scale(1.03);
}

.drawer-kicker {
  margin-bottom: 10px;
  color: rgba(21, 17, 13, 0.52);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.application-drawer h2 {
  max-width: 780px;
  padding-right: 64px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.9;
  letter-spacing: 0;
}

.drawer-copy {
  max-width: 600px;
  margin: 18px 0 26px;
  color: rgba(21, 17, 13, 0.62);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
}

.drawer-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 18px;
  align-items: start;
}

.drawer-form label,
.lot-choice {
  min-width: 0;
}

.drawer-form label,
.lot-choice legend {
  color: rgba(21, 17, 13, 0.66);
  font-size: 12px;
  font-weight: 850;
}

.drawer-goal,
.lot-choice,
.drawer-check,
.drawer-submit,
.application-drawer .form-status {
  grid-column: 1 / -1;
}

.drawer-form input,
.drawer-form textarea {
  min-height: 44px;
  border-color: rgba(21, 17, 13, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 12px 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.drawer-form textarea {
  min-height: 92px;
  resize: vertical;
}

.drawer-form input:hover,
.drawer-form textarea:hover {
  border-color: rgba(21, 17, 13, 0.28);
}

.drawer-form input:focus,
.drawer-form textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.lot-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.lot-choice legend {
  margin: 0 0 8px;
  padding: 0;
}

.lot-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lot-choice label {
  display: block;
  cursor: pointer;
}

.lot-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lot-choice span {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 17, 13, 0.76);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms var(--ease-soft), box-shadow 220ms ease;
}

.lot-choice small {
  color: rgba(21, 17, 13, 0.5);
  font-size: 11px;
  font-weight: 750;
}

.lot-choice label:hover span,
.lot-choice input:focus-visible + span {
  border-color: #000;
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(21, 17, 13, 0.08);
}

.lot-choice input:checked + span {
  border-color: #000;
  background: #000;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lot-choice input:checked + span small {
  color: rgba(255, 255, 255, 0.68);
}

.drawer-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: rgba(21, 17, 13, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.drawer-check input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #000;
}

.drawer-submit {
  min-height: 48px;
  margin-top: 2px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 900;
  transition: transform 220ms var(--ease-soft), background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.drawer-submit:hover,
.drawer-submit:focus-visible {
  background: #fff;
  color: #000;
  box-shadow: inset 0 0 0 1px #000, 0 14px 30px rgba(21, 17, 13, 0.12);
  transform: translateY(-1px);
}

.application-drawer .form-status {
  min-height: 18px;
  font-size: 13px;
}

.lots-section-redesign {
  color-scheme: light;
}

.lot-format {
  transition: transform 260ms var(--ease-soft), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.lot-format:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 17, 13, 0.3);
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 26px 74px rgba(45, 36, 25, 0.12);
}

.lot-format-featured:hover {
  border-color: rgba(21, 17, 13, 0.36);
  background: linear-gradient(180deg, rgba(255, 250, 240, 1), rgba(236, 228, 214, 0.9));
}

.lot-format-private:hover {
  border-color: rgba(255, 250, 240, 0.34);
  background: #0f0d0b;
}

@media (min-width: 1040px) {
  .application-drawer {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.16fr);
    column-gap: clamp(30px, 4vw, 56px);
  }

  .drawer-close {
    grid-column: 2;
    justify-self: end;
  }

  .drawer-kicker,
  .application-drawer h2,
  .drawer-copy {
    grid-column: 1;
  }

  .drawer-form {
    grid-column: 2;
    grid-row: 2 / span 4;
    align-self: end;
  }
}

@media (max-width: 900px) {
  .application-drawer {
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 90svh;
    padding: 28px 20px 22px;
    border-radius: 18px 18px 0 0;
    transform: translate3d(0, 106%, 0) scale(1);
  }

  body.application-open .application-drawer {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .application-drawer h2 {
    max-width: 13ch;
    font-size: clamp(36px, 10vw, 54px);
  }

  .drawer-copy {
    max-width: 34rem;
    margin-bottom: 22px;
  }

  .drawer-form {
    grid-template-columns: 1fr;
  }

  .lot-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .lot-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .motion-gsap .hero-section {
    height: 100svh;
  }

  .application-drawer {
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 88svh;
    border-radius: 18px 18px 0 0;
    transform: translate3d(0, 106%, 0) scale(1);
  }

  body.application-open .application-drawer {
    transform: translate3d(0, 0, 0) scale(1);
  }

  body.application-open main,
  body.application-open .site-header,
  body.application-open .site-footer {
    transform: scale(0.992);
    filter: blur(1px);
  }
}

/* Reference pass: darker aircraft-window hero, one cloud background, lighter scroll work. */
.hero-section {
  height: 162svh;
  margin-bottom: -1px;
  background: #120e0a;
}

.hero-stage {
  background:
    radial-gradient(ellipse 36% 65% at 50% 48%, rgba(245, 235, 218, 0.42), rgba(118, 103, 91, 0.24) 24%, rgba(45, 36, 29, 0.2) 42%, transparent 62%),
    linear-gradient(90deg, rgba(7, 5, 4, 0.96) 0%, rgba(25, 18, 13, 0.9) 22%, rgba(43, 33, 25, 0.52) 50%, rgba(24, 17, 12, 0.9) 78%, rgba(7, 5, 4, 0.98) 100%),
    linear-gradient(135deg, #241b14 0%, #19120d 48%, #2d221a 100%);
}

.hero-stage::before {
  background:
    radial-gradient(ellipse 34% 58% at 50% 50%, transparent 0 34%, rgba(255, 244, 226, 0.08) 45%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 29%, transparent 71%, rgba(0, 0, 0, 0.66));
  opacity: 1;
}

.hero-stage::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(9, 114, 181, 0.34) 58%, rgba(3, 112, 180, 0.5)),
    var(--continuity-image);
  background-size: cover;
  background-position: center;
  opacity: clamp(0, calc(var(--hero-progress) * 2.25 - 0.62), 1);
}

.hero-window {
  z-index: 4;
  width: clamp(330px, 31vw, 540px);
  height: clamp(475px, 68vh, 705px);
  padding: clamp(17px, 2vw, 30px);
  border-radius: 48% / 43%;
  background:
    radial-gradient(ellipse at 52% 45%, rgba(255, 255, 255, 0.94), rgba(219, 224, 224, 0.98) 36%, rgba(139, 139, 136, 0.98) 61%, rgba(42, 37, 33, 1) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 30px 82px rgba(0, 0, 0, 0.62),
    0 0 112px rgba(245, 234, 214, 0.32),
    inset 18px 0 34px rgba(255, 255, 255, 0.44),
    inset -22px 0 42px rgba(19, 16, 14, 0.4);
  opacity: clamp(0, calc(1.38 - var(--hero-progress) * 1.55), 1);
  transform: translate(-50%, -50%) scale(calc(1 + var(--hero-progress) * 5.15));
}

.hero-window::before {
  inset: clamp(8px, 1vw, 14px);
  border-radius: inherit;
  border-color: rgba(19, 31, 38, 0.2);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.56),
    inset 18px 0 26px rgba(255, 255, 255, 0.42),
    inset -18px 0 32px rgba(15, 19, 21, 0.22);
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.15), 1);
}

.hero-window::after {
  top: 3%;
  width: 44%;
  height: 13%;
  border-radius: 0 0 48% 48%;
  background: linear-gradient(180deg, rgba(22, 21, 20, 0.38), rgba(255, 255, 255, 0.06));
  filter: none;
  opacity: max(0, calc(0.54 - var(--hero-progress) * 0.8));
}

.window-scene {
  border-radius: 45% / 40%;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(20, 144, 210, 0.08) 44%, rgba(4, 111, 180, 0.3)),
    var(--continuity-image);
  background-size: cover;
  background-position: 50% 45%;
  filter: saturate(1.08) contrast(1.01) brightness(1.08);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.66),
    inset 0 0 42px rgba(19, 54, 70, 0.24);
  transform: scale(calc(1 + var(--hero-progress) * 0.08));
}

.window-scene::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.34), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.12));
  opacity: max(0.12, calc(0.48 - var(--hero-progress) * 0.36));
}

.window-scene::after {
  background:
    linear-gradient(180deg, transparent 46%, rgba(12, 94, 153, calc(var(--hero-progress) * 0.4))),
    linear-gradient(90deg, rgba(8, 18, 23, 0.14), transparent 20%, transparent 80%, rgba(8, 18, 23, 0.18));
  opacity: max(0.2, calc(0.44 - var(--hero-progress) * 0.2));
}

.window-frame {
  border-radius: 45% / 40%;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.12),
    inset 0 0 22px rgba(255, 255, 255, 0.22);
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.05), 1);
}

.hero-left,
.hero-right {
  z-index: 3;
  text-shadow: none;
}

.hero-left {
  top: 22%;
  width: min(45vw, 610px);
}

.hero-right {
  right: clamp(28px, 6vw, 100px);
  top: 50%;
  width: min(31vw, 420px);
}

.hero-left h1,
.hero-right h2 {
  font-size: clamp(58px, 7.8vw, 122px);
  line-height: 0.9;
  text-shadow: none;
}

.hero-right h2 {
  font-size: clamp(56px, 6.9vw, 104px);
}

.hero-left p,
.hero-right p,
.hero-note {
  text-shadow: none;
}

.project-sky-section {
  min-height: 108svh;
  padding-top: clamp(104px, 11vw, 156px);
  padding-bottom: clamp(118px, 12vw, 176px);
  background: #087fcb;
}

.project-sky-section::before {
  background-image:
    linear-gradient(180deg, rgba(250, 253, 255, 0.18), rgba(17, 142, 210, 0.08) 34%, rgba(0, 111, 190, 0.5) 100%),
    var(--continuity-image);
  background-size: cover;
  background-position: center;
  transform: none;
  filter: none;
  opacity: 1;
}

.project-sky-section::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(7, 119, 194, 0.18) 44%, rgba(9, 96, 158, 0.56) 76%, #18130f 100%),
    radial-gradient(ellipse 72% 34% at 50% 10%, rgba(255, 255, 255, 0.22), transparent 70%);
}

.project-sky-section .section-kicker {
  color: rgba(255, 255, 255, 0.84);
  text-shadow: none;
}

.project-sky-section .intro-grid {
  min-height: calc(100svh - 260px);
  align-content: center;
}

.project-sky-section .intro-grid h2 {
  max-width: 1180px;
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 1.02;
  text-shadow: none;
}

.project-sky-section .intro-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.7vw, 25px);
  text-shadow: none;
}

.project-reveal-text::before {
  content: none;
}

.project-char,
.project-sky-section .motion-line {
  will-change: auto;
}

.project-sky-section .motion-line-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-out-expo);
}

.project-sky-section .motion-line {
  opacity: 0.18;
  filter: blur(7px);
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 760ms ease,
    filter 900ms ease,
    transform 940ms var(--ease-out-expo);
}

.project-sky-section .section-kicker,
.project-sky-section .intro-copy {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms ease,
    filter 880ms ease,
    transform 920ms var(--ease-out-expo);
}

.project-sky-section.is-visible .motion-line-clip {
  clip-path: inset(0 0 0 0);
}

.project-sky-section.is-visible .motion-line {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.project-sky-section.is-visible .motion-line-clip:nth-child(2) {
  transition-delay: 85ms;
}

.project-sky-section.is-visible .motion-line-clip:nth-child(3) {
  transition-delay: 170ms;
}

.project-sky-section.is-visible .motion-line-clip:nth-child(4) {
  transition-delay: 255ms;
}

.project-sky-section.is-visible .motion-line-clip:nth-child(5) {
  transition-delay: 340ms;
}

.project-sky-section.is-visible .section-kicker,
.project-sky-section.is-visible .intro-copy {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.project-sky-section.is-visible .intro-copy {
  transition-delay: 360ms;
}

.altai-photo-section {
  margin-top: -1px;
  padding-top: clamp(118px, 12vw, 190px);
  background:
    linear-gradient(180deg, #18130f 0%, #0f0d0b 46%, #17120e 100%);
}

.altai-photo-section::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(95, 123, 93, 0.18), transparent 34%),
    radial-gradient(circle at 84% 38%, rgba(99, 141, 156, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.3));
  opacity: 0.62;
}

[data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-reveal] .section-kicker,
[data-reveal] h2,
[data-reveal] .section-heading > p,
[data-reveal] .intro-copy,
[data-reveal] .visual-slot,
[data-reveal] .comparison-card,
[data-reveal] .timeline-list li,
[data-reveal] .lot-card,
[data-reveal] .trust-card,
[data-reveal] .faq-item,
[data-reveal] .fund-row {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-section {
    height: 150svh;
  }

  .hero-window {
    width: min(70vw, 450px);
    height: 58vh;
    top: 48%;
  }

  .hero-left {
    top: 17%;
  }

  .hero-right {
    top: auto;
    bottom: 21%;
  }

  .hero-left h1,
  .hero-right h2 {
    font-size: clamp(44px, 13vw, 82px);
  }

  .project-sky-section {
    min-height: 100svh;
    padding-bottom: 120px;
  }

  .project-sky-section .intro-grid {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --continuity-image: url("assets/reference-clouds.jpg");
  }

  .hero-window {
    width: 76vw;
    height: 50vh;
  }

  .window-scene {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(20, 144, 210, 0.08) 44%, rgba(4, 111, 180, 0.3)),
      var(--continuity-image);
    background-position: 50% 45%;
  }

  .project-sky-section .intro-grid h2 {
    font-size: clamp(34px, 11vw, 62px);
    line-height: 0.96;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Full-photo opening pages: no internal window, no sky transition. */
.hero-section.altai-landing-hero,
.motion-gsap .hero-section.altai-landing-hero {
  position: relative;
  min-height: 100svh;
  height: auto;
  margin-bottom: 0;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #0d0d0a;
  isolation: isolate;
}

.altai-landing-hero .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 70%;
  filter: saturate(1.04) contrast(1.04) brightness(0.9);
  transform: scale(1.01);
}

.altai-landing-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.7) 0%, rgba(7, 10, 10, 0.34) 42%, rgba(7, 10, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.05) 36%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.altai-landing-hero .hero-content {
  width: min(1050px, calc(100% - clamp(44px, 10vw, 176px)));
  margin-inline: clamp(22px, 6.2vw, 104px);
  padding-top: clamp(80px, 12vh, 140px);
  color: #fff;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
}

.hero-kicker {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.78);
}

.altai-landing-hero h1,
.altai-photo-copy h2,
.intro-grid h2,
.section-heading h2,
.split-section h2,
.apply-form h2,
.apply-visual h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

.altai-landing-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(62px, 9.8vw, 164px);
  line-height: 0.86;
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.altai-landing-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  text-shadow: none;
}

.altai-landing-hero .button-secondary {
  background: rgba(255, 250, 240, 0.08);
  color: #fff;
  border-color: rgba(255, 250, 240, 0.54);
  backdrop-filter: blur(14px);
}

.altai-landing-hero .hero-bottom {
  left: clamp(22px, 6.2vw, 104px);
  right: clamp(22px, 6.2vw, 104px);
  bottom: clamp(28px, 5vh, 56px);
  grid-template-columns: minmax(160px, 1fr) auto;
  align-items: end;
  opacity: 1;
}

.altai-landing-hero .hero-note {
  color: rgba(255, 250, 240, 0.72);
}

.altai-landing-hero .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 0;
}

.altai-landing-hero .hero-facts div {
  min-width: 0;
  padding: 0 clamp(16px, 2vw, 28px);
  border-left-color: rgba(255, 250, 240, 0.26);
}

.altai-landing-hero .scroll-hint {
  bottom: clamp(22px, 4vh, 44px);
}

.altai-views-page {
  min-height: 100svh;
  margin-top: 0;
  padding: clamp(104px, 10vw, 154px) clamp(24px, 6vw, 104px) clamp(76px, 8vw, 132px);
  background: var(--paper);
  color: var(--ink);
}

.altai-views-page::before,
.altai-views-page::after {
  content: none;
}

.altai-views-page .section-kicker {
  color: var(--copper);
}

#altai-views-title {
  scroll-margin-top: 118px;
}

.altai-views-page .altai-photo-copy {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(38px, 5vw, 72px);
}

.altai-views-page .altai-photo-copy h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 9vw, 138px);
  line-height: 0.86;
}

.altai-views-page .altai-photo-copy > p:last-child {
  max-width: 1380px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.45;
}

.altai-views-page .altai-photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(14px, 1.4vw, 22px);
}

.altai-views-page .altai-photo-frame {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  clip-path: none;
  background: #17120e;
}

.altai-views-page .altai-photo-frame::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 44%, rgba(0, 0, 0, 0.36));
}

.altai-views-page .altai-photo-large {
  grid-column: 1 / -1;
  width: auto;
  min-height: min(68svh, 760px);
  height: min(68svh, 760px);
  margin-inline: calc(var(--section-x) * -1);
}

.altai-views-page .altai-photo-large img {
  object-position: 50% 52%;
}

.altai-views-page .altai-photo-lake,
.altai-views-page .altai-photo-ridge,
.altai-views-page .altai-photo-valley {
  min-height: clamp(300px, 34vw, 520px);
}

.altai-views-page .altai-photo-frame figcaption {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.86);
}

@media (max-width: 980px) {
  .altai-landing-hero .hero-content {
    width: min(760px, calc(100% - 44px));
    margin-inline: 22px;
  }

  .altai-landing-hero .hero-bottom {
    display: block;
    left: 22px;
    right: 22px;
  }

  .altai-landing-hero .hero-facts {
    display: none;
  }

  .altai-views-page {
    padding-inline: 22px;
  }

  .altai-views-page .altai-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .altai-landing-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
    line-height: 0.9;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    font-size: 16px;
  }

  .altai-landing-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(330px, 100%);
  }

  .altai-views-page .altai-photo-copy h2 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    font-size: 17px;
  }

  .altai-views-page .altai-photo-large {
    min-height: 58svh;
    height: 58svh;
  }
}

/* Concept refresh: full-width Altai photo flow and updated participation formats. */
.altai-views-page .altai-photo-grid {
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.2vw, 18px);
}

.altai-views-page .altai-photo-frame,
.altai-views-page .altai-photo-large,
.altai-views-page .altai-photo-lake,
.altai-views-page .altai-photo-ridge,
.altai-views-page .altai-photo-valley {
  grid-column: auto;
  width: auto;
  max-width: none;
  min-height: clamp(380px, 58svh, 720px);
  height: clamp(380px, 58svh, 720px);
  margin-inline: calc(var(--section-x) * -1);
}

.altai-views-page .altai-photo-large {
  min-height: clamp(460px, 68svh, 780px);
  height: clamp(460px, 68svh, 780px);
}

.altai-views-page .altai-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.altai-views-page .altai-photo-ridge img {
  object-position: 50% 64%;
}

.altai-views-page .altai-photo-valley img {
  object-position: 50% 66%;
}

/* Editorial text balance for the wide photo and before/after intros. */
.altai-views-page .altai-photo-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.36fr);
  column-gap: clamp(32px, 7vw, 128px);
  row-gap: 18px;
  align-items: end;
  max-width: 1560px;
  margin-inline: 0;
}

.altai-views-page .altai-photo-copy .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.altai-views-page .altai-photo-copy h2 {
  max-width: 980px;
  font-size: clamp(58px, 8.1vw, 126px);
  line-height: 0.9;
  text-wrap: balance;
}

.altai-views-page .altai-photo-copy > p:last-child {
  max-width: 500px;
  margin: 0 0 clamp(4px, 0.8vw, 12px);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.5;
}

#before-after .section-heading {
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.38fr);
  align-items: end;
  gap: clamp(32px, 6vw, 108px);
  max-width: none;
  margin-inline: 0;
}

#before-after .section-heading h2 {
  max-width: 980px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.94;
  text-wrap: balance;
}

#before-after .section-heading > p {
  max-width: 500px;
  margin-bottom: clamp(4px, 0.8vw, 10px);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.52;
  opacity: 0.76;
}

@media (max-width: 980px) {
  .altai-views-page {
    padding-top: clamp(82px, 14vw, 116px);
  }

  .altai-views-page .altai-photo-copy,
  #before-after .section-heading {
    grid-template-columns: 1fr;
    max-width: min(680px, 100%);
    margin-inline: 0;
    gap: clamp(16px, 3.5vw, 24px);
  }

  .altai-views-page .altai-photo-copy .section-kicker {
    grid-column: auto;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 10ch;
    font-size: clamp(46px, 12vw, 74px);
    line-height: 0.94;
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 34rem;
    margin: 0;
    font-size: clamp(16px, 3.2vw, 18px);
    line-height: 1.5;
  }

  #before-after .section-heading h2 {
    max-width: 19ch;
    font-size: clamp(34px, 7.2vw, 44px);
    line-height: 0.98;
  }

  #before-after .section-heading > p {
    max-width: 33rem;
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
  }
}

@media (max-width: 620px) {
  .altai-views-page {
    padding: clamp(76px, 14vw, 92px) 22px clamp(64px, 12vw, 90px);
  }

  .altai-views-page .altai-photo-copy {
    margin-bottom: 34px;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 9.6ch;
    font-size: clamp(44px, 11.5vw, 62px);
    line-height: 0.98;
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 30rem;
    font-size: 16px;
  }

  #before-after {
    padding-top: clamp(76px, 14vw, 104px);
  }

  #before-after .section-heading {
    gap: 22px;
    margin-bottom: 32px;
  }

  #before-after .section-heading h2 {
    max-width: 19ch;
    font-size: clamp(33px, 7.1vw, 40px);
    line-height: 0.98;
  }

  #before-after .section-heading > p {
    max-width: 100%;
    font-size: 16px;
    font-weight: 700;
    opacity: 0.78;
  }
}

.lots-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.lot-card {
  min-height: 380px;
}

.lot-card strong {
  font-size: clamp(29px, 3vw, 46px);
}

.lot-private {
  border-color: rgba(255, 250, 240, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.11), rgba(21, 17, 13, 0.1)),
    rgba(21, 17, 13, 0.24);
}

#current,
#future,
#before-after,
#structure,
#lots,
#faq {
  scroll-margin-top: 104px;
}

@media (max-width: 620px) {
  .altai-views-page .altai-photo-frame,
  .altai-views-page .altai-photo-large,
  .altai-views-page .altai-photo-lake,
  .altai-views-page .altai-photo-ridge,
  .altai-views-page .altai-photo-valley {
    min-height: 56svh;
    height: 56svh;
  }

  .lot-card {
    min-height: 330px;
  }
}

/* Participation formats: clearer financial table with premium editorial spacing. */
.lots-section-redesign {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(238, 231, 218, 0.98)),
    var(--paper);
  color: var(--ink);
}

.lots-section-redesign .section-kicker {
  color: var(--copper);
}

.lots-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(28px, 4.8vw, 64px);
}

.lots-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.lots-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 6.8vw, 106px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.88;
}

.lots-intro > p {
  margin: 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 750;
  line-height: 1.55;
}

.lots-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 17, 13, 0.16);
  border-bottom: 1px solid rgba(21, 17, 13, 0.16);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.lots-principles article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.2vw, 32px);
  border-right: 1px solid rgba(21, 17, 13, 0.14);
}

.lots-principles article:last-child {
  border-right: 0;
}

.lots-principles span,
.lot-metrics span,
.lot-breakdown dt {
  color: rgba(21, 17, 13, 0.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lots-principles strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 950;
  line-height: 1;
}

.lots-principles p {
  margin: 0;
  color: rgba(21, 17, 13, 0.64);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.lots-stack {
  display: grid;
  gap: 14px;
}

.lot-format {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(320px, 1fr) minmax(240px, 0.72fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(20px, 2.8vw, 38px);
  border: 1px solid rgba(21, 17, 13, 0.13);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.74);
  box-shadow: 0 24px 70px rgba(45, 36, 25, 0.08);
}

.lot-format-featured {
  border-color: rgba(148, 92, 55, 0.34);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(238, 226, 209, 0.82));
}

.lot-format-private {
  background: #16120e;
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.18);
  box-shadow: 0 30px 80px rgba(21, 17, 13, 0.18);
}

.lot-format-main {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.lot-format .lot-name {
  color: var(--copper);
}

.lot-format-main > strong {
  display: block;
  color: inherit;
  font-size: clamp(32px, 3.4vw, 56px);
  font-weight: 950;
  line-height: 0.95;
}

.lot-format-main p {
  margin: 0;
  color: rgba(21, 17, 13, 0.66);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.lot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lot-metrics div {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(21, 17, 13, 0.1);
  border-radius: 8px;
  background: rgba(21, 17, 13, 0.035);
}

.lot-metrics strong {
  color: var(--ink);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 950;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.lot-format-private .lot-metrics strong {
  font-size: clamp(20px, 1.7vw, 30px);
}

.lot-breakdown {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
}

.lot-breakdown div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(21, 17, 13, 0.12);
}

.lot-breakdown div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.lot-breakdown dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.lot-format-private .lot-name,
.lot-format-private .lot-metrics span,
.lot-format-private .lot-breakdown dt {
  color: rgba(255, 250, 240, 0.58);
}

.lot-format-private .lot-format-main p,
.lot-format-private .lots-principles p {
  color: rgba(255, 250, 240, 0.66);
}

.lot-format-private .lot-metrics div {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.06);
}

.lot-format-private .lot-metrics strong,
.lot-format-private .lot-breakdown dd {
  color: var(--white);
}

.lot-format-private .lot-breakdown div {
  border-bottom-color: rgba(255, 250, 240, 0.14);
}

.lots-note {
  max-width: 880px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: rgba(21, 17, 13, 0.58);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .lot-format {
    grid-template-columns: 1fr;
  }

  .lot-format-main {
    align-content: start;
  }
}

@media (max-width: 900px) {
  .lots-intro,
  .lots-principles {
    grid-template-columns: 1fr;
  }

  .lots-intro .section-kicker {
    margin-bottom: 0;
  }

  .lots-principles article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 17, 13, 0.12);
  }

  .lots-principles article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .lot-format {
    padding: 20px;
  }

  .lot-metrics,
  .lot-breakdown div {
    grid-template-columns: 1fr;
  }

  .lot-metrics div {
    min-height: 0;
  }

  .lot-breakdown dd {
    text-align: left;
  }
}

/* Floating CTA: compact original shape with tighter safe-area spacing. */
.altai-landing-hero .hero-content {
  padding-bottom: clamp(132px, 18vh, 210px);
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  max-width: 700px;
}

.dock-cta {
  width: auto;
  max-width: calc(100vw - 36px);
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
}

.dock-shell {
  width: auto;
  justify-content: flex-start;
  min-height: 56px;
  gap: 6px;
  padding: 6px;
}

.dock-main {
  flex: 0 1 auto;
  min-width: 164px;
  max-width: calc(100vw - 112px);
  min-height: 44px;
  padding-inline: 20px;
  font-size: 14px;
  line-height: 1;
}

.dock-logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.dock-logo img {
  width: 32px;
  height: 32px;
}

@media (min-width: 981px) {
  .header-actions {
    min-width: 0;
  }

  .dock-cta {
    bottom: max(26px, calc(env(safe-area-inset-bottom) + 20px));
  }

  .altai-landing-hero .hero-content {
    transform: translateY(2vh);
  }
}

@media (max-width: 620px) {
  .altai-landing-hero .hero-content {
    width: min(100% - 40px, 520px);
    margin-inline: 20px;
    padding-top: clamp(92px, 13vh, 122px);
    padding-bottom: 134px;
  }

  .altai-landing-hero h1 {
    font-size: clamp(52px, 15.6vw, 78px);
    line-height: 0.9;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    max-width: 34rem;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.48;
  }

  .dock-cta {
    max-width: calc(100vw - 28px);
    bottom: max(10px, calc(env(safe-area-inset-bottom) + 8px));
  }

  .dock-shell {
    min-height: 52px;
    gap: 5px;
    padding: 5px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .dock-main {
    min-width: 172px;
    max-width: calc(100vw - 84px);
    min-height: 42px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .dock-logo {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .dock-logo img {
    width: 31px;
    height: 31px;
  }

}

/* Section rhythm pass: clearer boundaries, shared spacing, balanced headings. */
main > section:not(.hero-section) {
  --section-line: rgba(255, 250, 240, 0.13);
  --section-x: clamp(22px, 6vw, 96px);
  --section-y: clamp(86px, 9vw, 144px);
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid var(--section-line);
  box-shadow: inset 0 1px rgba(255, 250, 240, 0.035);
}

.altai-views-page {
  --section-line: rgba(21, 17, 13, 0.11);
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 100%);
  color: var(--ink);
}

#current {
  --section-line: rgba(255, 250, 240, 0.14);
  background: linear-gradient(180deg, var(--ink) 0%, #1c1510 100%);
  color: var(--white);
}

#future {
  --section-line: rgba(255, 250, 240, 0.14);
  background: linear-gradient(180deg, #17120e 0%, #15110d 100%);
  color: var(--white);
}

#before-after {
  --section-line: rgba(255, 250, 240, 0.13);
  background: linear-gradient(180deg, #15110d 0%, #1b1510 100%);
  color: var(--white);
}

.map-section {
  --section-line: rgba(21, 17, 13, 0.12);
  background: linear-gradient(180deg, var(--paper) 0%, #ece1d0 100%);
  color: var(--ink);
}

#structure {
  --section-line: rgba(255, 250, 240, 0.13);
  background: linear-gradient(180deg, #1b1510 0%, var(--ink) 100%);
  color: var(--white);
}

.timeline-section {
  --section-line: rgba(255, 250, 240, 0.13);
  background: linear-gradient(180deg, #17120e 0%, #15110d 100%);
  color: var(--white);
}

main > section[aria-labelledby="experience-title"] {
  --section-line: rgba(255, 250, 240, 0.13);
  background: linear-gradient(180deg, var(--ink) 0%, #17120e 100%);
  color: var(--white);
}

.lots-section-redesign {
  --section-line: rgba(21, 17, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(238, 231, 218, 0.98)),
    var(--paper);
  color: var(--ink);
}

.trust-section {
  --section-line: rgba(21, 17, 13, 0.12);
  background: linear-gradient(180deg, var(--paper) 0%, #ece1d0 100%);
  color: var(--ink);
}

.faq-section {
  --section-line: rgba(255, 250, 240, 0.13);
  background: linear-gradient(180deg, #17120e 0%, #0f0d0b 100%);
  color: var(--white);
}

.content-section > .section-heading,
.lots-intro,
.altai-views-page .altai-photo-copy {
  width: 100%;
  max-width: 1480px;
  margin-inline: 0;
}

.content-section > .section-heading,
.lots-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.38fr);
  align-items: end;
  gap: clamp(28px, 5.4vw, 96px);
  margin-bottom: clamp(30px, 4.8vw, 62px);
}

.content-section > .section-heading h2,
.split-section h2,
.lots-intro h2 {
  max-width: 960px;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}

.content-section > .section-heading > p,
.split-section > div:first-child p,
.lots-intro > p {
  max-width: 540px;
  margin: 0 0 0.25em;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
  font-weight: 700;
  opacity: 0.74;
}

#before-after .section-heading {
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.38fr);
  max-width: 1480px;
  margin-inline: 0;
}

#before-after .section-heading h2 {
  max-width: 980px;
  font-size: clamp(44px, 4.8vw, 74px);
}

.split-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.46fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: center;
}

.gallery-grid,
.comparison-grid,
.experience-grid,
.timeline-list,
.trust-grid,
.faq-list,
.lots-principles,
.lots-stack {
  margin-top: 0;
}

.photo-card p,
.experience-card p,
.feature-render p,
.comparison-copy,
.timeline-list p,
.trust-card p,
.faq-item small,
.lot-format-main p,
.lots-principles p {
  line-height: 1.5;
}

@media (max-width: 980px) {
  main > section:not(.hero-section) {
    --section-x: 22px;
    --section-y: clamp(76px, 13vw, 112px);
  }

  .content-section > .section-heading,
  .lots-intro,
  .altai-views-page .altai-photo-copy,
  #before-after .section-heading {
    grid-template-columns: 1fr;
    max-width: min(700px, 100%);
    margin-inline: 0;
    gap: clamp(16px, 3.6vw, 24px);
  }

  .content-section > .section-heading h2,
  .split-section h2,
  .lots-intro h2 {
    max-width: 18ch;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.98;
  }

  .content-section > .section-heading > p,
  .split-section > div:first-child p,
  .lots-intro > p {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.5;
  }

  #before-after .section-heading h2 {
    max-width: 19ch;
    font-size: clamp(33px, 7.1vw, 44px);
  }

  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main > section:not(.hero-section) {
    --section-x: 18px;
    --section-y: clamp(70px, 14vw, 96px);
  }

  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading {
    margin-bottom: 30px;
  }

  .content-section > .section-heading h2,
  .split-section h2,
  .lots-intro h2 {
    max-width: 19ch;
    font-size: clamp(32px, 7.5vw, 42px);
  }

  #before-after .section-heading h2 {
    max-width: 19ch;
    font-size: clamp(33px, 7vw, 40px);
  }
}

/* Current state gallery: real source photos with an editorial masonry rhythm. */
.gallery-current {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(260px, 0.78fr);
  gap: clamp(14px, 1.5vw, 24px);
  align-items: stretch;
}

.gallery-current .photo-card {
  min-height: clamp(320px, 28vw, 460px);
}

.gallery-current .photo-card:nth-child(1),
.gallery-current .photo-card:nth-child(3),
.gallery-current .photo-card:nth-child(5) {
  grid-row: auto;
  min-height: clamp(320px, 28vw, 460px);
}

.gallery-current .current-courtyard {
  grid-column: span 2;
  min-height: clamp(480px, 42vw, 680px);
}

.gallery-current .current-veranda {
  min-height: clamp(480px, 42vw, 680px);
}

.current-courtyard::before {
  background-image: url("assets/current-courtyard-main.png");
  background-position: 50% 54%;
}

.current-veranda::before {
  background-image: url("assets/current-veranda-house.jpg");
  background-position: 50% 52%;
}

.current-open-yard::before {
  background-image: url("assets/current-open-yard.png");
  background-position: 50% 54%;
}

.current-territory-view::before {
  background-image: url("assets/current-territory-view.png");
  background-position: 50% 50%;
}

.current-wood-gallery::before {
  background-image: url("assets/current-wood-gallery.png");
  background-position: 50% 44%;
}

.gallery-current .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.02), rgba(21, 17, 13, 0.18) 42%, rgba(21, 17, 13, 0.72)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.38), rgba(21, 17, 13, 0.06) 58%);
  opacity: 0.88;
}

@media (max-width: 1120px) {
  .gallery-current {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-current .current-courtyard {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .gallery-current {
    grid-template-columns: 1fr;
  }

  .gallery-current .photo-card,
  .gallery-current .photo-card:nth-child(1),
  .gallery-current .photo-card:nth-child(3),
  .gallery-current .photo-card:nth-child(5),
  .gallery-current .current-courtyard,
  .gallery-current .current-veranda {
    grid-column: auto;
    min-height: clamp(320px, 56vw, 520px);
  }

  .gallery-current .current-wood-gallery {
    min-height: clamp(500px, 118vw, 680px);
  }
}

@media (max-width: 620px) {
  .gallery-current .photo-card,
  .gallery-current .photo-card:nth-child(1),
  .gallery-current .photo-card:nth-child(3),
  .gallery-current .photo-card:nth-child(5),
  .gallery-current .current-courtyard,
  .gallery-current .current-veranda {
    min-height: 340px;
  }

  .gallery-current .current-wood-gallery {
    min-height: 560px;
  }
}

/* Current state gallery: horizontal, like the future-renovation gallery. */
.current-toolbar {
  margin-top: calc(var(--section-content-gap, 42px) * -0.38);
}

.current-gallery {
  gap: clamp(14px, 1.4vw, 22px);
  padding-bottom: 24px;
}

.current-gallery .feature-render,
.current-gallery .feature-render:nth-child(even) {
  flex: 0 0 min(62vw, 780px);
  min-height: clamp(520px, 60vh, 700px);
}

.current-gallery .current-territory-view,
.current-gallery .current-parking-cafe {
  flex-basis: min(78vw, 980px);
}

.current-gallery .current-courtyard {
  flex-basis: min(70vw, 880px);
}

.current-gallery .current-open-yard,
.current-gallery .current-communications {
  flex-basis: min(60vw, 760px);
}

.current-gallery .current-room-wide-view,
.current-gallery .current-room-window-view {
  flex-basis: min(54vw, 680px);
}

.current-courtyard::before {
  background-image: url("assets/current-courtyard-main.png");
  background-position: 50% 54%;
}

.current-veranda::before {
  background-image: url("assets/current-veranda-house.jpg");
  background-position: 50% 52%;
}

.current-open-yard::before {
  background-image: url("assets/current-open-yard.png");
  background-position: 50% 54%;
}

.current-territory-view::before {
  background-image: url("assets/current-territory-view.png");
  background-position: 50% 50%;
}

.current-communications::before {
  background-image: url("assets/current-communications.jpg");
  background-position: 50% 50%;
}

.current-room-wide-view::before {
  background-image: url("assets/current-room-wide-view.png");
  background-position: 50% 50%;
}

.current-room-window-view::before {
  background-image: url("assets/current-room-window-view.png");
  background-position: 50% 50%;
}

.current-parking-cafe::before {
  background-image: url("assets/current-parking-cafe.jpg");
  background-position: 50% 48%;
}

.current-gallery .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0), rgba(21, 17, 13, 0.06) 42%, rgba(21, 17, 13, 0.5)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.21), rgba(21, 17, 13, 0.015) 58%);
  opacity: 0.74;
}

.current-gallery .visual-slot::before {
  filter: saturate(1.04) contrast(1.02) brightness(1.04);
}

@media (max-width: 980px) {
  .current-gallery .feature-render,
  .current-gallery .feature-render:nth-child(even),
  .current-gallery .current-territory-view,
  .current-gallery .current-courtyard,
  .current-gallery .current-open-yard,
  .current-gallery .current-parking-cafe,
  .current-gallery .current-communications,
  .current-gallery .current-room-wide-view,
  .current-gallery .current-room-window-view {
    flex-basis: min(86vw, 620px);
    min-height: clamp(500px, 76vh, 680px);
  }
}

@media (max-width: 620px) {
  .current-gallery {
    gap: 14px;
    padding-bottom: 18px;
  }

  .current-gallery .feature-render,
  .current-gallery .feature-render:nth-child(even),
  .current-gallery .current-territory-view,
  .current-gallery .current-courtyard,
  .current-gallery .current-open-yard,
  .current-gallery .current-parking-cafe,
  .current-gallery .current-communications,
  .current-gallery .current-room-wide-view,
  .current-gallery .current-room-window-view {
    flex-basis: calc(100vw - 44px);
    min-height: 480px;
  }
}

/* Future image gallery: territory, rooms, bathroom, and banya. */
.future-gallery {
  gap: clamp(14px, 1.4vw, 22px);
  padding-bottom: 24px;
}

.future-gallery .feature-render,
.future-gallery .feature-render:nth-child(even) {
  flex: 0 0 min(64vw, 820px);
  min-height: clamp(560px, 66vh, 760px);
}

.future-gallery .future-arrival-evening {
  flex-basis: min(82vw, 1040px);
}

.future-gallery .future-terrace-house,
.future-gallery .future-courtyard-lane,
.future-gallery .future-room-gallery,
.future-gallery .future-bedroom-soft,
.future-gallery .future-suite-lounge,
.future-gallery .future-suite-bathroom {
  flex-basis: min(52vw, 640px);
}

.future-gallery .future-banya {
  flex-basis: min(72vw, 900px);
}

.future-arrival-evening::before {
  background-image: url("assets/future-arrival-evening.png");
  background-position: 50% 54%;
}

.future-terrace-house::before {
  background-image: url("assets/future-terrace-house.png");
  background-position: 50% 50%;
}

.future-courtyard-lane::before {
  background-image: url("assets/future-courtyard-lane.png");
  background-position: 50% 48%;
}

.future-room-gallery::before {
  background-image: url("assets/future-room-gallery.png");
  background-position: 50% 50%;
}

.future-bedroom-soft::before {
  background-image: url("assets/future-bedroom-soft.png");
  background-position: 50% 52%;
}

.future-suite-lounge::before {
  background-image: url("assets/future-suite-lounge.png");
  background-position: 50% 50%;
}

.future-suite-bathroom::before {
  background-image: url("assets/future-suite-bathroom.png");
  background-position: 50% 50%;
}

.future-banya::before {
  background-image: url("assets/future-banya.png");
  background-position: 50% 50%;
}

.future-gallery .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.02), rgba(21, 17, 13, 0.16) 45%, rgba(21, 17, 13, 0.74)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.36), rgba(21, 17, 13, 0.05) 58%);
  opacity: 0.9;
}

@media (max-width: 980px) {
  .future-gallery .feature-render,
  .future-gallery .feature-render:nth-child(even),
  .future-gallery .future-arrival-evening,
  .future-gallery .future-terrace-house,
  .future-gallery .future-courtyard-lane,
  .future-gallery .future-room-gallery,
  .future-gallery .future-bedroom-soft,
  .future-gallery .future-suite-lounge,
  .future-gallery .future-suite-bathroom,
  .future-gallery .future-banya {
    flex-basis: min(86vw, 620px);
    min-height: clamp(520px, 78vh, 700px);
  }
}

@media (max-width: 620px) {
  .future-gallery {
    gap: 14px;
    padding-bottom: 18px;
  }

  .future-gallery .feature-render,
  .future-gallery .feature-render:nth-child(even),
  .future-gallery .future-arrival-evening,
  .future-gallery .future-terrace-house,
  .future-gallery .future-courtyard-lane,
  .future-gallery .future-room-gallery,
  .future-gallery .future-bedroom-soft,
  .future-gallery .future-suite-lounge,
  .future-gallery .future-suite-bathroom,
  .future-gallery .future-banya {
    flex-basis: calc(100vw - 44px);
    min-height: 560px;
  }

  .future-gallery .future-arrival-evening,
  .future-gallery .future-banya {
    min-height: 420px;
  }
}

/* Smooth handoff from Altai photos into the current-state section. */
.altai-views-page {
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 70%, #15110d 100%);
}

.altai-views-page .altai-photo-grid {
  margin-bottom: 0;
}

.altai-views-page .altai-photo-valley {
  position: relative;
}

.altai-views-page .altai-photo-valley::before {
  content: none;
}

.altai-views-page .altai-photo-valley::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(21, 17, 13, 0.06) 46%,
    rgba(21, 17, 13, 0.32) 70%,
    rgba(21, 17, 13, 0.78) 90%,
    #15110d 100%
  );
}

#current {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  border-top: 0;
  box-shadow: none;
  padding-top: clamp(76px, 8vw, 128px);
  background: linear-gradient(180deg, #15110d 0%, var(--ink) 52%, #1c1510 100%);
}

#current::before {
  content: none;
}

#current::after {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  z-index: 0;
  height: clamp(110px, 12vw, 220px);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.018), rgba(255, 250, 240, 0));
  pointer-events: none;
}

#current > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 620px) {
  .altai-views-page {
    padding-bottom: 0;
  }

  .altai-views-page .altai-photo-valley {
    min-height: 62svh;
    height: 62svh;
  }

  .altai-views-page .altai-photo-valley::before {
    content: none;
  }

#current {
    padding-top: 70px;
  }
}

/* Refined black-white quick menu. */
.menu-toggle {
  width: 50px;
  height: 50px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.74);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #000;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span:nth-child(2) {
  width: 13px;
}

body.on-light-surface .site-header .menu-toggle {
  color: #000;
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

body.menu-open .site-header .menu-toggle,
body.menu-closing .site-header .menu-toggle,
body.on-light-surface.menu-open .site-header .menu-toggle,
body.on-light-surface.menu-closing .site-header .menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: #000;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.menu-drawer {
  top: 82px;
  right: clamp(16px, 5vw, 82px);
  width: min(292px, calc(100vw - 32px));
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.88);
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.02);
  -webkit-backdrop-filter: blur(18px) saturate(1.02);
  transform-origin: calc(100% - 24px) -16px;
  clip-path: inset(0 0 100% 0 round 14px);
}

.menu-drawer::after {
  right: 24px;
  border-left-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.88);
}

.menu-drawer.is-open {
  clip-path: inset(0 0 0 0 round 14px);
}

.menu-drawer.is-closing {
  clip-path: inset(0 0 18% 0 round 14px);
}

.menu-drawer nav {
  gap: 0;
}

.menu-drawer a {
  min-height: 42px;
  padding: 11px 12px 11px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.menu-drawer a::before {
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-drawer a::after {
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.26;
  transform: translate3d(0, 0, 0) scaleX(0.72);
  transform-origin: right center;
}

.menu-drawer a:hover,
.menu-drawer a:focus-visible {
  color: #fff;
  transform: translate3d(3px, 0, 0);
}

.menu-drawer a:hover::after,
.menu-drawer a:focus-visible::after {
  opacity: 0.72;
  transform: translate3d(0, 0, 0) scaleX(1);
}

@media (max-width: 620px) {
  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .menu-drawer {
    top: 74px;
    right: 16px;
    left: auto;
    width: min(294px, calc(100vw - 32px));
    border-radius: 14px;
    transform-origin: calc(100% - 24px) -14px;
    clip-path: inset(0 0 100% 0 round 14px);
  }

  .menu-drawer.is-open {
    clip-path: inset(0 0 0 0 round 14px);
  }

  .menu-drawer a {
    min-height: 42px;
    padding: 11px 12px 11px 14px;
    font-size: 14px;
  }
}

/* Final readability pass for the application drawer. */
.application-drawer {
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: min(1160px, calc(100vw - 32px));
  max-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 18px clamp(30px, 3.4vw, 48px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(28px, 3vw, 40px);
  transform: translate3d(-50%, 42px, 0) scale(0.985);
}

body.application-open .application-drawer {
  transform: translate3d(-50%, 0, 0) scale(1);
}

.drawer-close {
  z-index: 4;
}

.drawer-kicker {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  align-self: start;
}

.application-drawer h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 11.4ch;
  padding-right: 0;
  font-size: clamp(40px, 3.45vw, 54px);
  line-height: 1;
}

.drawer-copy {
  grid-column: 1;
  grid-row: 3;
  max-width: 29rem;
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.drawer-form {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: start;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
}

.drawer-form label,
.lot-choice {
  min-width: 0;
}

.drawer-form label,
.lot-choice legend {
  line-height: 1.2;
}

.drawer-form input,
.drawer-form textarea {
  font-size: 15px;
  line-height: 1.35;
}

.drawer-form textarea {
  min-height: 104px;
}

.lot-choice-grid {
  --lot-button-height: 66px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: var(--lot-button-height);
  gap: 10px;
  align-items: stretch;
}

.drawer-form .lot-choice-grid > label,
.drawer-form .lot-choice-grid > label:nth-of-type(4) {
  grid-column: auto;
  grid-row: auto;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

body.application-open .drawer-form .lot-choice-grid > label {
  animation: none;
  opacity: 1;
  transform: none;
}

.lot-choice span {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px 13px;
  gap: 4px;
  font-size: 13px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.lot-choice small {
  display: block;
  line-height: 1.2;
}

.drawer-check {
  position: relative;
  align-items: start;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  line-height: 1.45;
  background: transparent;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.drawer-check:hover,
.drawer-check:active,
.drawer-check:focus-within {
  background: transparent;
  box-shadow: none;
}

.drawer-check input {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  accent-color: #000;
}

.drawer-check input::before {
  content: none;
}

.drawer-check input:focus,
.drawer-check input:active {
  background: transparent;
  box-shadow: none;
}

.drawer-check input:focus-visible {
  outline: 1px solid #000;
  outline-offset: 3px;
}

.drawer-submit {
  min-height: 50px;
  margin-top: 0;
}

@media (max-width: 1040px) {
  .application-drawer {
    left: 50%;
    width: min(760px, calc(100vw - 32px));
    max-height: calc(100svh - 32px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 30px 22px 24px;
    transform: translate3d(-50%, 42px, 0) scale(0.985);
  }

  body.application-open .application-drawer {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .drawer-kicker,
  .application-drawer h2,
  .drawer-copy,
  .drawer-form {
    grid-column: 1;
    grid-row: auto;
  }

  .application-drawer h2 {
    max-width: 13ch;
    padding-right: 48px;
    font-size: clamp(38px, 8vw, 54px);
    line-height: 0.98;
  }

  .drawer-copy {
    max-width: 38rem;
    margin: 0 0 10px;
  }
}

@media (max-width: 680px) {
  .application-drawer {
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 90svh;
    border-radius: 18px 18px 0 0;
    padding: 26px 18px 20px;
    transform: translate3d(0, 106%, 0) scale(1);
  }

  body.application-open .application-drawer {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .drawer-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .application-drawer h2 {
    max-width: 12ch;
    padding-right: 46px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .drawer-copy {
    font-size: 15px;
  }

  .drawer-form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .lot-choice-grid {
    --lot-button-height: 58px;
    grid-template-columns: 1fr;
  }
}

/* Clearer placement for the Altai views intro text. */
.altai-views-page {
  padding-top: clamp(86px, 8vw, 126px);
}

.altai-views-page .altai-photo-copy {
  max-width: 1420px;
  margin-bottom: clamp(34px, 4.6vw, 64px);
  row-gap: clamp(12px, 1.4vw, 18px);
}

.altai-views-page .altai-photo-copy h2 {
  max-width: 10.5ch;
}

.altai-views-page .altai-photo-copy > p:last-child {
  align-self: end;
  max-width: 480px;
}

@media (max-width: 980px) {
  .altai-views-page {
    padding-top: clamp(60px, 10vw, 82px);
  }

  .altai-views-page .altai-photo-copy {
    max-width: min(660px, 100%);
    gap: clamp(12px, 3vw, 18px);
    margin-bottom: clamp(30px, 6vw, 44px);
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 9.8ch;
  }
}

@media (max-width: 620px) {
  .altai-views-page {
    padding: clamp(50px, 10vw, 64px) 18px 0;
  }

  .altai-views-page .altai-photo-copy {
    margin-bottom: 34px;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 9.4ch;
  }
}

/* Interactive top-view development map. */
.renovation-map.territory-map {
  position: relative;
  min-height: clamp(560px, 52vw, 760px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 62% 52%, rgba(255, 250, 240, 0.58) 0 10%, transparent 34%),
    radial-gradient(circle at 76% 20%, rgba(50, 81, 58, 0.22), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(50, 81, 58, 0.18), transparent 32%),
    linear-gradient(135deg, #d8cfba 0%, #aeb999 42%, #e8ddc7 100%);
  background-size: auto;
  background-position: center;
  box-shadow: 0 32px 92px rgba(45, 36, 25, 0.18);
}

.renovation-map.territory-map:hover {
  transform: none;
  background-size: auto;
  box-shadow: 0 34px 96px rgba(45, 36, 25, 0.2);
}

.territory-map::before,
.territory-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.territory-map::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.28), transparent 22%, transparent 74%, rgba(255, 250, 240, 0.46)),
    radial-gradient(circle at 78% 42%, rgba(31, 55, 39, 0.24), transparent 34%);
}

.territory-map::after {
  z-index: 8;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.22), inset 0 -80px 90px rgba(255, 250, 240, 0.28);
}

.territory-map > span,
.territory-map .map-zone {
  position: absolute;
}

.map-forest {
  z-index: 1;
  pointer-events: none;
}

.map-forest-top {
  inset: 0 0 auto;
  height: 42%;
  background:
    repeating-linear-gradient(102deg, rgba(17, 45, 31, 0.16) 0 9px, transparent 9px 26px),
    linear-gradient(180deg, rgba(31, 67, 45, 0.58), rgba(31, 67, 45, 0.08));
  clip-path: polygon(0 0, 100% 0, 100% 62%, 78% 48%, 58% 68%, 38% 52%, 18% 70%, 0 56%);
}

.map-road-main {
  z-index: 2;
  left: -7%;
  bottom: 7%;
  width: 70%;
  height: 15%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 250, 240, 0.48) 46% 48%, transparent 48% 100%),
    linear-gradient(180deg, #5c5a54, #343331);
  box-shadow: 0 18px 34px rgba(21, 17, 13, 0.18);
  transform: rotate(-18deg);
}

.map-road-entry {
  z-index: 2;
  left: 30%;
  bottom: 26%;
  width: 25%;
  height: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 174, 151, 0.82), rgba(221, 210, 187, 0.62));
  box-shadow: 0 10px 22px rgba(45, 36, 25, 0.13);
  transform: rotate(10deg);
}

.map-yard {
  z-index: 2;
  left: 44%;
  top: 47%;
  width: 36%;
  height: 24%;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 48% 52% 46% 54%;
  background:
    radial-gradient(circle at 46% 52%, rgba(185, 120, 74, 0.34) 0 3%, transparent 4%),
    radial-gradient(circle at 46% 52%, rgba(255, 250, 240, 0.24) 0 9%, transparent 10%),
    rgba(76, 105, 66, 0.22);
  box-shadow: inset 0 0 0 18px rgba(255, 250, 240, 0.05);
}

.map-building,
.map-parking {
  z-index: 3;
  pointer-events: none;
}

.map-building {
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 250, 240, 0.18) 49% 51%, transparent 52%),
    linear-gradient(135deg, #143f36 0%, #245244 48%, #0f2b26 100%);
  box-shadow: 0 18px 30px rgba(21, 17, 13, 0.28);
}

.map-building::after {
  content: "";
  position: absolute;
  inset: 100% 8% auto;
  height: 16px;
  border-radius: 0 0 5px 5px;
  background: rgba(75, 50, 34, 0.42);
  transform: skewX(-22deg);
  transform-origin: top left;
}

.map-building-rooms {
  left: 16%;
  top: 30%;
  width: 32%;
  height: 9%;
  transform: rotate(-8deg);
}

.map-building-vip {
  left: 52%;
  top: 24%;
  width: 13%;
  height: 13%;
  transform: rotate(10deg);
}

.map-building-suites {
  left: 32%;
  top: 45%;
  width: 27%;
  height: 10%;
  transform: rotate(-4deg);
}

.map-building-cafe {
  right: 9%;
  bottom: 13%;
  width: 22%;
  height: 14%;
  transform: rotate(-8deg);
}

.map-building-banya {
  right: 12%;
  top: 27%;
  width: 13%;
  height: 14%;
  transform: rotate(12deg);
}

.map-parking {
  left: 24%;
  top: 64%;
  width: 22%;
  height: 13%;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 18px;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 250, 240, 0.5) 14px 16px),
    rgba(62, 66, 64, 0.5);
  transform: rotate(5deg);
  box-shadow: 0 16px 28px rgba(21, 17, 13, 0.18);
}

.map-zone {
  z-index: 10;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.map-zone-label {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(21, 17, 13, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 16px 34px rgba(21, 17, 13, 0.16);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 240ms var(--ease-soft), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.map-zone-label span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(21, 17, 13, 0.22);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.map-zone::after {
  content: "";
  position: absolute;
  left: var(--dot-left, 28px);
  top: var(--dot-top, calc(100% + 10px));
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 6px rgba(255, 250, 240, 0.24), 0 8px 16px rgba(0, 0, 0, 0.22);
}

.map-zone:hover,
.map-zone:focus,
.map-zone:focus-visible {
  outline: none;
}

.map-zone:hover .map-zone-label,
.map-zone:focus .map-zone-label,
.map-zone:focus-visible .map-zone-label {
  border-color: #000;
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.map-zone:hover .map-zone-label span,
.map-zone:focus .map-zone-label span,
.map-zone:focus-visible .map-zone-label span {
  background: #fff;
  color: #000;
}

.map-tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: min(290px, 34vw);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 22px 58px rgba(21, 17, 13, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 180ms ease, transform 220ms var(--ease-soft);
}

.map-tooltip strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.map-tooltip small {
  color: rgba(21, 17, 13, 0.68);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.map-zone:hover .map-tooltip,
.map-zone:focus .map-tooltip,
.map-zone:focus-visible .map-tooltip {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.zone-rooms { left: 16%; top: 24%; --dot-left: 50%; --dot-top: calc(100% + 22px); }
.zone-vip { left: 51%; top: 14%; --dot-left: 50%; --dot-top: calc(100% + 24px); }
.zone-suites { left: 30%; top: 41%; --dot-left: 58%; --dot-top: calc(100% + 18px); }
.zone-parking { left: 24%; top: 58%; --dot-left: 34%; --dot-top: calc(100% + 16px); }
.zone-cafe { right: 8%; bottom: 10%; --dot-left: 66%; --dot-top: -18px; }
.zone-banya { right: 10%; top: 24%; --dot-left: 52%; --dot-top: calc(100% + 18px); }
.zone-territory { left: 52%; top: 50%; --dot-left: 50%; --dot-top: calc(100% + 16px); }

.zone-cafe .map-tooltip,
.zone-parking .map-tooltip,
.zone-territory .map-tooltip {
  top: auto;
  bottom: calc(100% + 14px);
}

.zone-banya .map-tooltip,
.zone-cafe .map-tooltip {
  right: 0;
  left: auto;
}

@media (max-width: 900px) {
  .renovation-map.territory-map {
    min-height: 620px;
  }

  .map-zone-label {
    min-height: 38px;
    gap: 7px;
    padding: 7px 10px 7px 7px;
    font-size: 11px;
  }

  .map-zone-label span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 15px;
  }

  .map-tooltip {
    width: min(260px, calc(100vw - 48px));
  }

  .zone-rooms { left: 7%; top: 27%; }
  .zone-vip { left: 48%; top: 13%; }
  .zone-suites { left: 14%; top: 43%; }
  .zone-parking { left: 8%; top: 64%; }
  .zone-cafe { right: 5%; bottom: 8%; }
  .zone-banya { right: 4%; top: 28%; }
  .zone-territory { left: 40%; top: 54%; }
}

@media (max-width: 560px) {
  .renovation-map.territory-map {
    min-height: 680px;
  }

  .map-tooltip {
    padding: 13px;
  }

  .map-tooltip strong {
    font-size: 21px;
  }

  .zone-vip .map-tooltip,
  .zone-banya .map-tooltip,
  .zone-cafe .map-tooltip {
    right: 0;
    left: auto;
  }
}

/* Rendered territory map background with readable interactive labels. */
.renovation-map.territory-map {
  aspect-ratio: 1448 / 1086;
  min-height: 0;
  overflow: visible;
  border-radius: 12px;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 240, 0.12), rgba(21, 17, 13, 0.18)),
    url("assets/territory-map-render.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 110px rgba(45, 36, 25, 0.24);
}

.renovation-map.territory-map:hover {
  background-size: cover;
}

.territory-map::before {
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 3% 12%, rgba(255, 250, 240, 0.82) 0 8%, transparent 28%),
    radial-gradient(ellipse at 98% 14%, rgba(255, 250, 240, 0.72) 0 7%, transparent 27%),
    radial-gradient(ellipse at 4% 92%, rgba(255, 250, 240, 0.78) 0 10%, transparent 30%),
    radial-gradient(ellipse at 96% 90%, rgba(255, 250, 240, 0.52) 0 8%, transparent 28%),
    radial-gradient(ellipse at 50% 104%, rgba(255, 250, 240, 0.76) 0 12%, transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.64), rgba(255, 250, 240, 0.22) 14%, transparent 31%, transparent 70%, rgba(255, 250, 240, 0.22) 86%, rgba(255, 250, 240, 0.66)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.46), rgba(255, 250, 240, 0.12) 18%, transparent 34%, transparent 70%, rgba(255, 250, 240, 0.18) 86%, rgba(255, 250, 240, 0.58));
  filter: blur(1.4px);
}

.territory-map::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 240, 0.22),
    inset 0 90px 100px rgba(255, 250, 240, 0.18),
    inset 0 -120px 120px rgba(255, 250, 240, 0.36);
}

.territory-map > span {
  display: none;
}

.map-zone {
  z-index: 12;
  width: 0;
  height: 0;
  overflow: visible;
}

.map-zone-label {
  position: absolute;
  left: 0;
  top: 0;
  border-color: rgba(255, 250, 240, 0.44);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 18px 42px rgba(12, 10, 8, 0.24);
  transform: translate(-50%, calc(-100% - 18px));
}

.map-zone::after {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow:
    0 0 0 2px #111,
    0 0 0 9px rgba(255, 250, 240, 0.32),
    0 10px 22px rgba(0, 0, 0, 0.34);
}

.map-zone:hover .map-zone-label,
.map-zone:focus .map-zone-label,
.map-zone:focus-visible .map-zone-label {
  transform: translate(-50%, calc(-100% - 20px));
}

.renovation-map.territory-map .map-tooltip {
  left: 0;
  right: auto;
  top: auto;
  bottom: 78px;
  --tooltip-accent: 70, 92, 48;
  width: min(320px, calc(100vw - 56px));
  display: grid;
  gap: 9px;
  padding: 24px 24px 21px;
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 14px;
  background: rgba(252, 248, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(21, 17, 13, 0.2);
  filter: blur(6px);
  transform: translate(var(--tooltip-x, -50%), 22px) scale(0.975);
  transform-origin: 50% 100%;
  transition:
    opacity 940ms var(--ease-soft),
    transform 1080ms var(--ease-out-expo),
    filter 920ms var(--ease-soft),
    box-shadow 1080ms var(--ease-soft);
  will-change: opacity, transform, filter;
}

.renovation-map.territory-map .map-tooltip::before {
  content: none;
}

.map-tooltip-icon {
  position: relative;
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(var(--tooltip-accent), 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.86), transparent 56%),
    linear-gradient(145deg, rgba(var(--tooltip-accent), 0.13), rgba(255, 255, 255, 0.34));
  color: rgba(var(--tooltip-accent), 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 24px rgba(var(--tooltip-accent), 0.11);
}

.map-tooltip-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(var(--tooltip-accent), 0.12);
  border-radius: 8px;
}

.map-tooltip-icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.renovation-map.territory-map .map-tooltip::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(45deg, transparent 45%, rgba(var(--tooltip-accent), 0.74) 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(var(--tooltip-accent), 0.74) 46% 54%, transparent 55%);
}

.renovation-map.territory-map .map-tooltip strong {
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.renovation-map.territory-map .map-tooltip small {
  max-width: 24ch;
  color: rgba(21, 17, 13, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.34;
}

.map-tooltip-list {
  display: grid;
  gap: 0;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 17, 13, 0.1);
}

.map-tooltip-list span {
  min-height: 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(21, 17, 13, 0.74);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.map-tooltip-list span::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(21, 17, 13, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(var(--tooltip-accent), 0.84);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.zone-rooms { --tooltip-accent: 88, 67, 48; }
.zone-vip { --tooltip-accent: 83, 78, 112; }
.zone-suites { --tooltip-accent: 67, 92, 72; }
.zone-parking { --tooltip-accent: 71, 76, 82; }
.zone-cafe { --tooltip-accent: 120, 78, 45; }
.zone-banya { --tooltip-accent: 67, 98, 94; }
.zone-territory { --tooltip-accent: 137, 83, 47; }

.renovation-map.territory-map .map-zone:hover,
.renovation-map.territory-map .map-zone:focus,
.renovation-map.territory-map .map-zone:focus-visible {
  z-index: 30;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
  filter: blur(0);
  transform: translate(var(--tooltip-x, -50%), 0) scale(1);
}

.zone-rooms,
.zone-parking {
  --tooltip-x: -50%;
}

.zone-cafe,
.zone-banya {
  --tooltip-x: -50%;
}

.zone-rooms {
  left: 22%;
  top: 43%;
  --label-x: -110px;
  --label-y: -58px;
}

.zone-vip {
  left: 60%;
  top: 29%;
  --label-x: -94px;
  --label-y: -62px;
}

.zone-suites {
  left: 42%;
  top: 49%;
  --label-x: -118px;
  --label-y: -54px;
}

.zone-parking {
  left: 35%;
  top: 62%;
  --label-x: -112px;
  --label-y: -4px;
}

.zone-cafe {
  left: 81%;
  right: auto;
  top: 80%;
  bottom: auto;
  --label-x: -46px;
  --label-y: 24px;
}

.zone-banya {
  left: 83%;
  right: auto;
  top: 31%;
  --label-x: -90px;
  --label-y: 18px;
}

.zone-territory {
  left: 60%;
  top: 56%;
  --label-x: -82px;
  --label-y: -62px;
}

@media (max-width: 900px) {
  .renovation-map.territory-map {
    min-height: 0;
    background-position: center;
  }

  .zone-rooms {
    --label-x: -72px;
    --label-y: -58px;
  }

  .zone-banya {
    --label-x: -86px;
    --label-y: 16px;
  }

  .zone-territory {
    --label-x: -105px;
    --label-y: -52px;
  }
}

@media (max-width: 560px) {
  .renovation-map.territory-map {
    min-height: 0;
    background-position: center;
  }

  .map-zone-label {
    min-height: 32px;
    gap: 5px;
    padding: 5px 8px 5px 5px;
    font-size: 10px;
  }

  .map-zone-label span {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    font-size: 13px;
  }

  .map-tooltip {
    width: min(220px, calc(100vw - 36px));
    gap: 5px;
    padding: 10px 11px;
  }

  .map-tooltip strong {
    font-size: 17px;
    line-height: 1.05;
  }

  .map-tooltip small {
    font-size: 11px;
    line-height: 1.3;
  }

  .renovation-map.territory-map .map-zone-label {
    transform: translate(-50%, calc(-100% - 12px));
  }

  .renovation-map.territory-map .map-zone:hover .map-zone-label,
  .renovation-map.territory-map .map-zone:focus .map-zone-label,
  .renovation-map.territory-map .map-zone:focus-visible .map-zone-label {
    transform: translate(-50%, calc(-100% - 14px));
  }

  .renovation-map.territory-map .map-tooltip {
    bottom: 58px;
    width: min(214px, calc(100vw - 30px));
    gap: 5px;
    padding: 12px 13px;
    border-radius: 10px;
    transform: translate(var(--tooltip-x, -50%), 14px) scale(0.98);
  }

  .renovation-map.territory-map .map-tooltip::before {
    width: 24px;
    height: 18px;
    margin-bottom: 4px;
  }

  .map-tooltip-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 3px;
    border-radius: 9px;
  }

  .map-tooltip-icon::after {
    inset: 5px;
    border-radius: 6px;
  }

  .map-tooltip-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.85;
  }

  .renovation-map.territory-map .map-tooltip::after {
    top: 13px;
    right: 13px;
    width: 12px;
    height: 12px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    max-width: 13ch;
    font-size: 16px;
  }

  .renovation-map.territory-map .map-tooltip small {
    max-width: 22ch;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .map-tooltip-list {
    margin-top: 6px;
    padding-top: 7px;
  }

  .map-tooltip-list span {
    min-height: 19px;
    gap: 7px;
    font-size: 10px;
    line-height: 1.12;
  }

  .map-tooltip-list span::before {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .renovation-map.territory-map .map-zone:hover .map-tooltip,
  .renovation-map.territory-map .map-zone:focus .map-tooltip,
  .renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
    transform: translate(var(--tooltip-x, -50%), 0) scale(1);
  }

  .zone-rooms {
    --label-x: -54px;
    --label-y: -74px;
  }

  .zone-vip {
    --label-x: -80px;
    --label-y: -78px;
  }
}

/* Review polish: brighter hero controls and calmer compact map callouts. */
:root {
  --warm-glow: #f1d69b;
  --button-ink: #130f0b;
}

.altai-landing-hero .hero-photo {
  filter: saturate(1.12) contrast(1.07) brightness(1.02);
}

.altai-landing-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.58) 0%, rgba(7, 10, 10, 0.25) 43%, rgba(7, 10, 10, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.44) 100%);
}

.hero-kicker,
.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  color: rgba(255, 250, 240, 0.9);
}

.menu-toggle {
  border-color: rgba(255, 250, 240, 0.34);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 250, 240, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.17), rgba(255, 250, 240, 0.055));
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 250, 240, 0.32),
    inset 0 -12px 26px rgba(0, 0, 0, 0.16);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 250, 240, 0.52);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 250, 240, 0.46), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.23), rgba(255, 250, 240, 0.08));
}

.menu-drawer {
  width: min(310px, calc(100vw - 32px));
  border-color: rgba(255, 250, 240, 0.24);
  background:
    radial-gradient(circle at 88% 0%, rgba(241, 214, 155, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(23, 29, 30, 0.9), rgba(10, 12, 11, 0.88));
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 250, 240, 0.04),
    inset 0 1px 0 rgba(255, 250, 240, 0.17);
}

.menu-drawer::after {
  border-left-color: rgba(255, 250, 240, 0.24);
  border-top-color: rgba(255, 250, 240, 0.24);
  background: rgba(18, 22, 21, 0.92);
}

.menu-drawer a {
  min-height: 44px;
  color: rgba(255, 250, 240, 0.8);
  border-top-color: rgba(255, 250, 240, 0.1);
}

.menu-drawer a::before {
  border-color: rgba(241, 214, 155, 0.16);
  background:
    linear-gradient(90deg, rgba(241, 214, 155, 0.18), rgba(255, 250, 240, 0.08)),
    rgba(255, 250, 240, 0.035);
}

.menu-drawer a::after {
  opacity: 0.34;
}

.menu-drawer a:hover,
.menu-drawer a:focus-visible {
  color: #fffdf7;
}

.button,
.dock-shell {
  border-color: rgba(255, 250, 240, 0.36);
}

.button-primary,
.drawer-submit {
  background: linear-gradient(180deg, #fffaf0 0%, #eadcbe 100%);
  color: var(--button-ink);
  border-color: rgba(255, 250, 240, 0.88);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.button-primary:hover,
.button-primary:focus-visible,
.drawer-submit:hover,
.drawer-submit:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #f2dfb6 100%);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(241, 214, 155, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dock-shell {
  border: 1px solid rgba(255, 250, 240, 0.36);
  background:
    radial-gradient(circle at var(--dock-light-x, 50%) var(--dock-light-y, 50%), rgba(255, 250, 240, 0.34), transparent 54%),
    rgba(255, 250, 240, 0.22);
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.dock-main,
.dock-logo {
  background: linear-gradient(180deg, #fffdf8 0%, #f1e3c9 100%);
  color: var(--button-ink);
  box-shadow:
    0 13px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.dock-logo {
  border: 1px solid rgba(19, 15, 11, 0.1);
}

body.on-light-surface .dock-shell {
  background:
    radial-gradient(circle at var(--dock-light-x, 50%) var(--dock-light-y, 50%), rgba(255, 250, 240, 0.38), transparent 55%),
    rgba(21, 17, 13, 0.18);
}

body.on-light-surface .dock-main,
body.on-light-surface .dock-logo {
  background: linear-gradient(180deg, #241b13 0%, #0f0b08 100%);
  color: var(--white);
}

.renovation-map.territory-map .map-zone-label {
  min-height: 38px;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  font-size: 12px;
  box-shadow: 0 14px 32px rgba(12, 10, 8, 0.2);
  transition:
    transform 520ms var(--ease-out-expo),
    background 420ms var(--ease-soft),
    color 420ms ease,
    border-color 420ms ease,
    box-shadow 520ms var(--ease-soft);
}

.renovation-map.territory-map .map-zone-label span {
  width: 25px;
  height: 25px;
  flex-basis: 25px;
  font-size: 15px;
}

.renovation-map.territory-map .map-tooltip {
  bottom: 68px;
  width: min(272px, calc(100vw - 56px));
  gap: 7px;
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: rgba(252, 248, 240, 0.94);
  box-shadow: 0 20px 58px rgba(21, 17, 13, 0.17);
  filter: blur(4px);
  transform: translate(var(--tooltip-x, -50%), 18px) scale(0.985);
  transition:
    opacity 1180ms var(--ease-soft),
    transform 1340ms var(--ease-out-expo),
    filter 1180ms var(--ease-soft),
    box-shadow 1340ms var(--ease-soft);
}

.renovation-map.territory-map .map-tooltip::after {
  top: 17px;
  right: 17px;
  width: 13px;
  height: 13px;
}

.map-tooltip-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
  border-radius: 10px;
}

.map-tooltip-icon::after {
  inset: 6px;
  border-radius: 7px;
}

.map-tooltip-icon svg {
  width: 21px;
  height: 21px;
}

.renovation-map.territory-map .map-tooltip strong {
  max-width: 13ch;
  font-size: 18px;
  line-height: 1.06;
}

.renovation-map.territory-map .map-tooltip small {
  max-width: 23ch;
  font-size: 11.5px;
  line-height: 1.32;
}

.map-tooltip-list {
  margin-top: 7px;
  padding-top: 9px;
}

.map-tooltip-list span {
  min-height: 24px;
  gap: 8px;
  font-size: 10.8px;
}

.map-tooltip-list span::before {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
  border-radius: 4px;
  font-size: 8px;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
  box-shadow: 0 24px 64px rgba(21, 17, 13, 0.2);
  filter: blur(0);
  opacity: 1;
  transform: translate(var(--tooltip-x, -50%), 0) scale(1);
}

@media (max-width: 620px) {
  .altai-landing-hero .hero-photo {
    filter: saturate(1.1) contrast(1.06) brightness(1.01);
  }

  .menu-drawer {
    width: min(306px, calc(100vw - 28px));
  }

  .renovation-map.territory-map .map-zone-label {
    min-height: 30px;
    gap: 5px;
    padding: 5px 8px 5px 5px;
    font-size: 9.5px;
  }

  .renovation-map.territory-map .map-zone-label span {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 12px;
  }

  .renovation-map.territory-map .map-tooltip {
    bottom: 52px;
    width: min(192px, calc(100vw - 32px));
    gap: 4px;
    padding: 10px 11px;
    transform: translate(var(--tooltip-x, -50%), 12px) scale(0.985);
  }

  .map-tooltip-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
  }

  .map-tooltip-icon svg {
    width: 16px;
    height: 16px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 14.5px;
  }

  .renovation-map.territory-map .map-tooltip small,
  .map-tooltip-list span {
    font-size: 9.5px;
  }

  .map-tooltip-list {
    margin-top: 5px;
    padding-top: 6px;
  }

  .map-tooltip-list span {
    min-height: 17px;
    gap: 6px;
  }

  .map-tooltip-list span::before {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }
}

/* Layout balance pass: tighter section rhythm and clearer text planes. */
:root {
  --section-copy-width: 520px;
  --section-heading-gap: clamp(24px, 4.4vw, 76px);
  --section-content-gap: clamp(26px, 3.6vw, 52px);
}

main > section:not(.hero-section) {
  --section-y: clamp(66px, 6.6vw, 112px);
  padding-block: var(--section-y) calc(var(--section-y) * 0.92);
}

.content-section > .section-heading,
.lots-intro,
.altai-views-page .altai-photo-copy,
#before-after .section-heading {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.4fr);
  align-items: center;
  gap: var(--section-heading-gap);
  margin-bottom: var(--section-content-gap);
}

.content-section > .section-heading > div,
.lots-intro > :first-child,
.altai-views-page .altai-photo-copy > :first-child {
  min-width: 0;
}

.section-kicker {
  margin: 0 0 clamp(10px, 1vw, 15px);
}

.content-section > .section-heading h2,
.split-section h2,
.lots-intro h2,
.altai-views-page .altai-photo-copy h2,
#before-after .section-heading h2 {
  margin: 0;
}

.content-section > .section-heading > p,
.split-section > div:first-child p,
.lots-intro > p,
.altai-views-page .altai-photo-copy > p:last-child,
#before-after .section-heading > p {
  align-self: center;
  max-width: var(--section-copy-width);
  margin: 0;
  line-height: 1.5;
}

.gallery-grid,
.future-layout,
.comparison-grid,
.renovation-map,
.timeline-list,
.fund-bars,
.experience-grid,
.lots-principles,
.lots-stack,
.trust-grid,
.faq-list {
  margin-top: 0;
}

.altai-views-page {
  padding-top: clamp(68px, 6.8vw, 108px);
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 76%, #15110d 100%);
}

.altai-views-page .altai-photo-copy {
  row-gap: 12px;
  margin-bottom: clamp(24px, 3.2vw, 46px);
}

.altai-views-page .altai-photo-copy .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

.altai-views-page .altai-photo-grid {
  gap: clamp(10px, 1.25vw, 18px);
}

.altai-views-page .altai-photo-frame,
.altai-views-page .altai-photo-lake,
.altai-views-page .altai-photo-ridge,
.altai-views-page .altai-photo-valley {
  min-height: clamp(340px, 50svh, 620px);
  height: clamp(340px, 50svh, 620px);
}

.altai-views-page .altai-photo-large {
  min-height: clamp(420px, 58svh, 700px);
  height: clamp(420px, 58svh, 700px);
}

.altai-views-page .altai-photo-valley::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(21, 17, 13, 0.04) 52%,
    rgba(21, 17, 13, 0.22) 76%,
    rgba(21, 17, 13, 0.62) 94%,
    #15110d 100%
  );
}

#current {
  margin-top: clamp(-80px, -4.2vw, -36px);
  padding-top: clamp(54px, 4.2vw, 74px);
}

#current::after {
  height: clamp(64px, 8vw, 128px);
}

#current .section-heading {
  margin-bottom: clamp(26px, 3vw, 44px);
}

.gallery-current {
  gap: clamp(12px, 1.25vw, 20px);
}

.gallery-current .current-courtyard,
.gallery-current .current-veranda {
  min-height: clamp(420px, 34vw, 590px);
}

.gallery-current .photo-card,
.gallery-current .photo-card:nth-child(1),
.gallery-current .photo-card:nth-child(3),
.gallery-current .photo-card:nth-child(5) {
  min-height: clamp(300px, 24vw, 410px);
}

.photo-card,
.experience-card,
.feature-render {
  padding: clamp(20px, 2.4vw, 32px);
}

.visual-label {
  top: clamp(12px, 1.2vw, 16px);
  left: clamp(12px, 1.2vw, 16px);
}

#future {
  padding-top: clamp(64px, 6vw, 102px);
}

.future-toolbar {
  margin: calc(var(--section-content-gap) * -0.45) 0 clamp(14px, 1.6vw, 22px);
}

.future-gallery {
  padding-bottom: 16px;
}

.future-gallery .feature-render,
.future-gallery .feature-render:nth-child(even) {
  min-height: clamp(500px, 58vh, 680px);
}

#before-after .section-heading {
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.comparison-grid,
.experience-grid,
.trust-grid {
  gap: clamp(12px, 1.6vw, 22px);
}

.comparison-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.map-section {
  padding-top: clamp(64px, 6vw, 98px);
}

.map-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.renovation-map.territory-map {
  max-width: min(1440px, 100%);
}

#structure {
  padding-top: clamp(64px, 6vw, 100px);
}

.split-section {
  align-items: center;
  gap: clamp(28px, 4.8vw, 82px);
}

.fund-bars {
  align-self: center;
}

.timeline-section,
main > section[aria-labelledby="experience-title"],
.lots-section-redesign,
.trust-section,
.faq-section {
  padding-top: clamp(64px, 6.2vw, 104px);
}

.timeline-list li {
  min-height: clamp(190px, 14vw, 232px);
  padding: clamp(18px, 1.7vw, 22px);
}

.experience-card {
  min-height: clamp(380px, 31vw, 470px);
}

.lots-intro {
  align-items: center;
  margin-bottom: clamp(24px, 3.4vw, 50px);
}

.lots-intro .section-kicker {
  margin-bottom: -2px;
}

.lots-principles {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.lots-principles article {
  min-height: clamp(160px, 12vw, 190px);
  padding: clamp(18px, 1.9vw, 28px);
}

.lot-format {
  padding: clamp(18px, 2.2vw, 32px);
  gap: clamp(16px, 2.4vw, 34px);
}

.trust-section .section-heading,
.faq-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.trust-card {
  min-height: clamp(260px, 18vw, 326px);
}

.document-strip {
  margin-top: clamp(14px, 1.8vw, 22px);
}

.faq-list {
  max-width: 1240px;
}

@media (min-width: 1440px) {
  .content-section > .section-heading h2,
  .split-section h2,
  #before-after .section-heading h2 {
    max-width: 14.5ch;
  }

  .lots-intro h2,
  .altai-views-page .altai-photo-copy h2 {
    max-width: 10.5ch;
  }
}

@media (max-width: 980px) {
  main > section:not(.hero-section) {
    --section-y: clamp(58px, 10vw, 88px);
  }

  .content-section > .section-heading,
  .lots-intro,
  .altai-views-page .altai-photo-copy,
  #before-after .section-heading {
    grid-template-columns: 1fr;
    gap: clamp(14px, 3vw, 22px);
    margin-bottom: clamp(24px, 5vw, 38px);
  }

  .content-section > .section-heading > p,
  .split-section > div:first-child p,
  .lots-intro > p,
  .altai-views-page .altai-photo-copy > p:last-child,
  #before-after .section-heading > p {
    max-width: 36rem;
  }

  #current {
    margin-top: -34px;
    padding-top: clamp(40px, 8vw, 66px);
  }

  .future-toolbar {
    justify-content: flex-start;
    margin: -6px 0 16px;
  }

  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main > section:not(.hero-section) {
    --section-x: 18px;
    --section-y: clamp(52px, 12vw, 74px);
  }

  .altai-views-page {
    padding: clamp(52px, 11vw, 68px) 18px 0;
  }

  .altai-views-page .altai-photo-frame,
  .altai-views-page .altai-photo-large,
  .altai-views-page .altai-photo-lake,
  .altai-views-page .altai-photo-ridge,
  .altai-views-page .altai-photo-valley {
    min-height: 52svh;
    height: 52svh;
  }

  .altai-views-page .altai-photo-copy,
  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading {
    margin-bottom: 24px;
  }

  #current {
    margin-top: -24px;
    padding-top: 38px;
  }

  .gallery-current .photo-card,
  .gallery-current .photo-card:nth-child(1),
  .gallery-current .photo-card:nth-child(3),
  .gallery-current .photo-card:nth-child(5),
  .gallery-current .current-courtyard,
  .gallery-current .current-veranda {
    min-height: 318px;
  }

  .future-gallery .feature-render,
  .future-gallery .feature-render:nth-child(even),
  .future-gallery .future-arrival-evening,
  .future-gallery .future-terrace-house,
  .future-gallery .future-courtyard-lane,
  .future-gallery .future-room-gallery,
  .future-gallery .future-bedroom-soft,
  .future-gallery .future-suite-lounge,
  .future-gallery .future-suite-bathroom,
  .future-gallery .future-banya {
    min-height: 450px;
  }

  .comparison-frame {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .timeline-list {
    grid-template-columns: 1fr;
  }

  .timeline-list li,
  .lots-principles article,
  .trust-card {
    min-height: 0;
  }

  .lot-format {
    padding: 18px;
  }
}

/* Text composition pass: consistent editorial columns and stable map anchor. */
:root {
  --section-heading-max: 1360px;
  --section-right-copy-width: 490px;
  --section-right-copy-offset: clamp(26px, 1.8vw, 36px);
}

#current,
#future,
#before-after,
#map-title,
#structure,
#timeline,
#lots,
#faq {
  scroll-margin-top: clamp(126px, 9vw, 152px);
}

.content-section > .section-heading,
.lots-intro,
#before-after .section-heading,
.altai-views-page .altai-photo-copy {
  max-width: var(--section-heading-max);
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.42fr);
  align-items: start;
  column-gap: clamp(44px, 5vw, 92px);
}

.content-section > .section-heading > p,
.lots-intro > p,
#before-after .section-heading > p,
.altai-views-page .altai-photo-copy > p:last-child {
  justify-self: start;
  align-self: start;
  max-width: var(--section-right-copy-width);
  margin-top: var(--section-right-copy-offset);
  padding-top: 0;
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.48;
  text-wrap: pretty;
}

#current .section-heading,
.map-section .section-heading {
  max-width: var(--section-heading-max);
}

#current .section-heading > p,
.map-section .section-heading > p {
  margin-top: var(--section-right-copy-offset);
  padding-top: 0;
  max-width: 500px;
}

.map-section {
  scroll-margin-top: clamp(126px, 9vw, 152px);
  padding-top: clamp(104px, 7.2vw, 138px);
}

.map-section .section-heading h2 {
  max-width: 11.6ch;
  font-size: clamp(52px, 5.2vw, 92px);
  line-height: 0.93;
}

.renovation-map.territory-map {
  width: min(1540px, 100%);
  max-width: none;
  margin-inline: auto;
  margin-top: clamp(6px, 1vw, 16px);
}

#current .section-heading h2 {
  max-width: 12.6ch;
}

@media (min-width: 1640px) {
  .map-section .section-heading h2 {
    font-size: clamp(58px, 4.8vw, 90px);
  }
}

@media (max-width: 980px) {
  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading,
  .altai-views-page .altai-photo-copy {
    grid-template-columns: 1fr;
    max-width: min(720px, 100%);
  }

  .content-section > .section-heading > p,
  .lots-intro > p,
  #before-after .section-heading > p,
  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 36rem;
    margin-top: 0;
    padding-top: 0;
  }

  .map-section {
    padding-top: clamp(78px, 12vw, 106px);
  }

  .map-section .section-heading h2,
  #current .section-heading h2 {
    max-width: 15ch;
  }
}

@media (max-width: 620px) {
  #current,
  #future,
  #before-after,
  #map-title,
  #structure,
  #timeline,
  #lots,
  #faq {
    scroll-margin-top: 108px;
  }

  .map-section {
    padding-top: 70px;
  }
}

/* Final text layout pass: stable desktop text rails and calmer mobile wrapping. */
:root {
  --section-heading-max: 1680px;
  --section-right-copy-width: 560px;
}

@media (min-width: 981px) {
  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading,
  .altai-views-page .altai-photo-copy {
    width: min(100%, var(--section-heading-max));
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.28fr) minmax(440px, var(--section-right-copy-width));
    column-gap: clamp(48px, 5vw, 96px);
    align-items: end;
  }

  .content-section > .section-heading h2,
  .lots-intro h2,
  #before-after .section-heading h2,
  .altai-views-page .altai-photo-copy h2,
  #current .section-heading h2,
  .map-section .section-heading h2 {
    max-width: min(100%, 1120px);
    text-wrap: balance;
  }

  .content-section > .section-heading > p,
  .lots-intro > p,
  #before-after .section-heading > p,
  .altai-views-page .altai-photo-copy > p:last-child {
    align-self: end;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  #current .section-heading,
  .faq-section .section-heading,
  .map-section .section-heading {
    width: min(100%, var(--section-heading-max));
    margin-inline: auto;
  }

  .faq-section .section-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .faq-section .section-heading > div {
    width: min(100%, 1120px);
  }

  .faq-section .section-heading h2 {
    max-width: min(100%, 1120px);
    text-wrap: balance;
  }

  .map-section .section-heading {
    grid-template-columns: minmax(0, 1.28fr) minmax(440px, var(--section-right-copy-width));
    column-gap: clamp(48px, 5vw, 96px);
    align-items: end;
  }

  .map-section .section-heading h2 {
    font-size: clamp(42px, 5.2vw, 82px);
    line-height: 0.94;
  }

  #current .section-heading > p,
  .map-section .section-heading > p {
    align-self: end;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .renovation-map.territory-map,
  .faq-list {
    width: min(100%, var(--section-heading-max));
    max-width: var(--section-heading-max);
    margin-inline: auto;
  }

  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 20px);
  }
}

@media (min-width: 1740px) {
  :root {
    --section-heading-max: 1760px;
  }
}

@media (max-width: 980px) {
  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading,
  .faq-section .section-heading,
  .altai-views-page .altai-photo-copy {
    gap: clamp(16px, 3vw, 24px);
  }

  .content-section > .section-heading h2,
  .lots-intro h2,
  #before-after .section-heading h2,
  .altai-views-page .altai-photo-copy h2,
  .map-section .section-heading h2,
  .faq-section .section-heading h2,
  #current .section-heading h2 {
    max-width: min(100%, 22ch);
  }

  .renovation-map.territory-map,
  .faq-list {
    width: 100%;
    max-width: min(720px, 100%);
    margin-inline: 0;
  }
}

@media (max-width: 620px) {
  .content-section > .section-heading,
  .lots-intro,
  #before-after .section-heading,
  .faq-section .section-heading,
  .altai-views-page .altai-photo-copy {
    max-width: 100%;
    gap: 18px;
  }

  .content-section > .section-heading h2,
  .lots-intro h2,
  #before-after .section-heading h2,
  .altai-views-page .altai-photo-copy h2,
  .map-section .section-heading h2,
  .faq-section .section-heading h2,
  #current .section-heading h2 {
    max-width: 100%;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* Final conversion-flow lock. */
.altai-landing-hero h1 {
  max-width: 1120px;
  font-size: clamp(50px, 7.8vw, 116px);
  line-height: 0.92;
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  max-width: 780px;
}

.concept-section,
.early-section,
.final-cta-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 250, 240, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.03), rgba(255, 250, 240, 0));
}

.concept-grid,
.location-points,
.early-grid {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin-inline: auto;
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
}

.concept-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.location-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(34px, 4vw, 58px);
}

.early-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(34px, 4vw, 58px);
}

.concept-grid article,
.location-points article,
.early-grid article,
.final-cta-box {
  min-width: 0;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.055);
  padding: clamp(18px, 1.8vw, 26px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.concept-grid span,
.location-points span,
.early-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(226, 166, 104, 0.92);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.concept-grid strong,
.location-points strong,
.early-grid strong {
  display: block;
  color: rgba(255, 250, 240, 0.94);
  font-family: var(--sans);
  font-size: clamp(18px, 1.1vw, 21px);
  font-weight: 800;
  line-height: 1.18;
}

.concept-grid p,
.location-points p,
.early-grid p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.section-cta {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(24px, 2.8vw, 40px) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.section-cta span {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.private-scenario {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(16px, 2vw, 28px) auto 0;
}

.private-scenario .lot-format-private {
  border-style: dashed;
  background: rgba(255, 250, 240, 0.04);
}

.suitability-section .trust-card h3 {
  color: rgba(255, 250, 240, 0.92);
}

.final-cta-box {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.final-cta-box h2 {
  max-width: 12ch;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.96);
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.final-cta-box p:not(.section-kicker) {
  max-width: 640px;
  margin: 22px auto 28px;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}

.drawer-form select {
  min-height: 44px;
  border: 1px solid rgba(21, 17, 13, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 12px 38px 12px 13px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.drawer-form select:hover {
  border-color: rgba(21, 17, 13, 0.28);
}

.drawer-form select:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.application-open .drawer-form label:nth-of-type(5) { animation-delay: 550ms; }
body.application-open .drawer-form label:nth-of-type(6) { animation-delay: 605ms; }
body.application-open .drawer-form label:nth-of-type(7) { animation-delay: 660ms; }
body.application-open .drawer-check { animation-delay: 715ms; }
body.application-open .drawer-submit { animation-delay: 770ms; }

[data-reveal].is-visible .timeline-list li:nth-child(7) {
  transition-delay: 420ms;
}

@media (max-width: 1180px) {
  .concept-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-points,
  .early-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .altai-landing-hero h1 {
    max-width: 11ch;
    font-size: clamp(44px, 12vw, 72px);
  }

  .concept-grid,
  .location-points,
  .early-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .altai-landing-hero .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .final-cta-box {
    text-align: left;
  }

  .final-cta-box h2,
  .final-cta-box p:not(.section-kicker) {
    margin-inline: 0;
  }
}

/* Final photo-to-current handoff: no strip between image and black section. */
main > section.altai-views-page[aria-labelledby="altai-views-title"] {
  padding-bottom: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 58%, #0f0d0b 58%, #0f0d0b 100%);
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] .altai-photo-grid,
main > section.altai-views-page[aria-labelledby="altai-views-title"] .altai-photo-frame,
main > section.altai-views-page[aria-labelledby="altai-views-title"] .altai-photo-valley {
  margin-bottom: 0;
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] .altai-photo-valley::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(15, 13, 11, 0.08) 46%,
    rgba(15, 13, 11, 0.36) 72%,
    rgba(15, 13, 11, 0.82) 92%,
    #0f0d0b 100%
  );
}

main > section#current {
  margin-top: 0;
  padding-top: clamp(42px, 4.2vw, 70px);
  border-top: 0;
  background: linear-gradient(180deg, #0f0d0b 0%, #0f0d0b 58%, #1c1510 100%);
  box-shadow: none;
}

main > section#current::after {
  content: none;
}

main > section#current > .section-heading {
  margin-top: 0;
  margin-bottom: clamp(24px, 3vw, 42px);
}

@media (max-width: 900px) {
  main > section#current {
    padding-top: clamp(34px, 8vw, 52px);
  }
}

@media (max-width: 620px) {
  main > section#current {
    margin-top: 0;
    padding-top: 34px;
  }
}

/* Compact map markers and stable callouts. */
.renovation-map.territory-map {
  --map-label-height: 34px;
  --map-label-pad-x: 10px;
  --map-number-size: 23px;
  --map-tooltip-width: 246px;
  --map-tooltip-height: 226px;
  --map-tooltip-gap: 6px;
  --map-tooltip-pad: 16px;
}

.renovation-map.territory-map .map-zone-label {
  min-height: var(--map-label-height);
  gap: 6px;
  padding: 5px var(--map-label-pad-x) 5px 5px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.renovation-map.territory-map .map-zone-label > span {
  width: var(--map-number-size);
  height: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  display: inline-grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.renovation-map.territory-map .map-tooltip {
  width: min(var(--map-tooltip-width), calc(100vw - 36px));
  height: var(--map-tooltip-height);
  min-height: var(--map-tooltip-height);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: var(--map-tooltip-gap);
  padding: var(--map-tooltip-pad);
  overflow: hidden;
}

.renovation-map.territory-map .map-tooltip strong {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.08;
}

.renovation-map.territory-map .map-tooltip small {
  max-width: 100%;
  font-size: 10.8px;
  line-height: 1.28;
}

.renovation-map.territory-map .map-tooltip-list {
  align-self: end;
  margin-top: 4px;
  padding-top: 7px;
}

.renovation-map.territory-map .map-tooltip-list span {
  min-height: 18px;
  gap: 6px;
  font-size: 9.6px;
  line-height: 1.15;
}

.renovation-map.territory-map .map-tooltip-list span::before {
  width: 11px;
  height: 11px;
  flex-basis: 11px;
  border-radius: 3px;
  font-size: 7px;
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) {
  z-index: 12;
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-zone-label {
  border-color: rgba(255, 250, 240, 0.44);
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  transform: translate(-50%, calc(-100% - 18px));
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-zone-label > span {
  background: #fff;
  color: var(--ink);
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-tooltip {
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transform: translate(var(--tooltip-x, -50%), 18px) scale(0.985);
}

@media (max-width: 900px) {
  .renovation-map.territory-map {
    --map-label-height: 30px;
    --map-label-pad-x: 8px;
    --map-number-size: 20px;
    --map-tooltip-width: 214px;
    --map-tooltip-height: 214px;
    --map-tooltip-gap: 4px;
    --map-tooltip-pad: 11px;
  }

  .renovation-map.territory-map .map-zone-label {
    gap: 5px;
    font-size: 9.4px;
  }

  .renovation-map.territory-map .map-zone:hover .map-zone-label,
  .renovation-map.territory-map .map-zone:focus .map-zone-label,
  .renovation-map.territory-map .map-zone:focus-visible .map-zone-label {
    transform: translate(-50%, calc(-100% - 13px));
  }

  .renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-zone-label {
    transform: translate(-50%, calc(-100% - 12px));
  }
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-height: 28px;
    --map-number-size: 18px;
    --map-tooltip-width: 188px;
    --map-tooltip-height: 152px;
    --map-tooltip-pad: 10px;
  }

  .renovation-map.territory-map .map-zone-label {
    padding: 4px 7px 4px 4px;
    font-size: 8.8px;
  }

  .renovation-map.territory-map .map-zone-label > span {
    font-size: 10.5px;
  }

  .renovation-map.territory-map .map-tooltip {
    bottom: 46px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 13px;
    line-height: 1.05;
  }

  .renovation-map.territory-map .map-tooltip small,
  .renovation-map.territory-map .map-tooltip-list span {
    font-size: 8.9px;
  }

  .renovation-map.territory-map .map-tooltip-list {
    display: none;
    margin-top: 3px;
    padding-top: 5px;
  }

  .renovation-map.territory-map .map-tooltip-list span {
    min-height: 15px;
  }

  .renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-tooltip {
    transform: translate(var(--tooltip-x, -50%), 12px) scale(0.985);
  }
}

/* Final lots intro alignment: the kicker starts exactly with the heading. */
main > section#lots > .lots-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
  column-gap: clamp(64px, 9vw, 160px);
  align-items: start;
  justify-content: initial;
  width: min(100%, var(--premium-section-max));
  max-width: var(--premium-section-max);
  min-height: 0;
  margin-inline: auto;
  text-align: left;
}

main > section#lots > .lots-intro .section-kicker {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: auto;
  max-width: 760px;
  margin: 0 0 clamp(26px, 2vw, 32px);
  text-align: left;
}

main > section#lots > .lots-intro h2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

main > section#lots > .lots-intro > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  main > section#lots > .lots-intro {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
  }

  main > section#lots > .lots-intro .section-kicker,
  main > section#lots > .lots-intro h2,
  main > section#lots > .lots-intro > p:last-child {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  main > section#lots > .lots-intro .section-kicker {
    width: auto;
    margin-bottom: 0;
  }
}

/* Lots intro alignment: keep the kicker flush with the heading on desktop. */
main > section#lots > .lots-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
  column-gap: clamp(64px, 9vw, 160px);
  align-items: start;
  justify-content: initial;
  width: min(100%, var(--premium-section-max));
  max-width: var(--premium-section-max);
  min-height: 0;
  margin-inline: auto;
  text-align: left;
}

main > section#lots > .lots-intro .section-kicker {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: auto;
  max-width: 760px;
  margin: 0 0 clamp(26px, 2vw, 32px);
  text-align: left;
}

main > section#lots > .lots-intro h2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

main > section#lots > .lots-intro > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  main > section#lots > .lots-intro {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
  }

  main > section#lots > .lots-intro .section-kicker,
  main > section#lots > .lots-intro h2,
  main > section#lots > .lots-intro > p:last-child {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  main > section#lots > .lots-intro .section-kicker {
    width: auto;
    margin-bottom: 0;
  }
}

/* Final font discipline: only Cormorant Garamond and Manrope are used. */
body,
button,
input,
select,
textarea,
.nav-links,
.nav-links a,
.header-cta,
.menu-drawer,
.menu-drawer a,
.button,
.dock-shell,
.dock-main,
.section-kicker,
.section-description,
.section-heading > p,
.altai-photo-copy > p:last-child,
.intro-copy,
.hero-left p,
.hero-right p,
.photo-card p,
.feature-render p,
.comparison-copy,
.experience-card p,
.timeline-list,
.timeline-list p,
.fact-band,
.lot-card,
.lot-card p,
.lot-format,
.lots-principles,
.trust-card,
.trust-card p,
.document-strip,
.fund-bars,
.faq-list,
.faq-item,
.faq-item span,
.faq-item small,
.apply-form,
.drawer-copy,
.drawer-form,
.form-status,
.map-zone-label,
.renovation-map.territory-map .map-tooltip,
.renovation-map.territory-map .map-tooltip strong,
.renovation-map.territory-map .map-tooltip small,
.map-tooltip-list,
.site-footer {
  font-family: var(--sans);
}

.hero-left h1,
.hero-right h2,
.hero-expanded-text h2,
.intro-grid h2,
.section-heading h2,
.split-section h2,
.altai-photo-copy h2,
.lots-intro h2,
.apply-form h2,
.apply-visual h2,
.application-drawer h2,
.project-sky-section h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.section-heading h2,
.altai-photo-copy h2,
.lots-intro h2,
.split-section h2 {
  font-weight: 500;
  line-height: 0.94;
}

.nav-links a,
.header-cta {
  font-size: clamp(14px, 0.82vw, 15px);
  font-weight: 600;
  line-height: 1.1;
}

.menu-drawer a,
.button,
.dock-main,
.drawer-submit,
.gallery-control,
.lot-choice span,
.document-strip span {
  font-weight: 600;
  line-height: 1.15;
}

.section-kicker,
.fact-label,
.lot-card span,
.lot-format-main span,
.lot-metrics span,
.lot-breakdown dt,
.document-strip span,
.map-zone-label {
  font-weight: 600;
}

.section-description,
.section-heading > p,
.altai-photo-copy > p:last-child,
.intro-copy p,
.hero-left p,
.hero-right p,
.photo-card p,
.feature-render p,
.comparison-copy,
.experience-card p,
.timeline-list p,
.lot-card p,
.lot-format-main p,
.lot-breakdown dd,
.lots-principles p,
.trust-card p,
.drawer-copy,
.faq-item small,
.renovation-map.territory-map .map-tooltip small,
.map-tooltip-list span {
  font-weight: 500;
  line-height: 1.5;
}

.section-description,
main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description,
main > section#before-after > .section-heading.section-header-grid .section-description,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-description,
main > section#faq > .section-heading.section-header-grid .section-description {
  font-weight: 500;
  opacity: 0.76;
}

.faq-item span {
  font-weight: 600;
  line-height: 1.25;
}

.timeline-list strong,
.lot-card strong,
.trust-card h3,
.fact-value,
.fund-row strong,
.renovation-map.territory-map .map-tooltip strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-left h1,
  .hero-right h2,
  .hero-expanded-text h2,
  .intro-grid h2,
  .section-heading h2,
  .split-section h2,
  .altai-photo-copy h2,
  .lots-intro h2,
  .apply-form h2,
  .apply-visual h2,
  .application-drawer h2,
  .project-sky-section h2 {
    line-height: 0.96;
  }
}

/* Two-font typography lock: Cormorant for display headings, Manrope for interface copy. */
body,
button,
input,
select,
textarea,
.nav-links,
.nav-links a,
.header-cta,
.menu-drawer,
.menu-drawer a,
.button,
.dock-shell,
.dock-main,
.section-kicker,
.section-description,
.section-heading > p,
.altai-photo-copy > p:last-child,
.intro-copy,
.hero-left p,
.hero-right p,
.photo-card p,
.feature-render p,
.comparison-copy,
.experience-card p,
.timeline-list,
.timeline-list p,
.fact-band,
.lot-card,
.lot-card p,
.lot-format,
.lots-principles,
.trust-card,
.trust-card p,
.document-strip,
.fund-bars,
.faq-list,
.faq-item,
.faq-item span,
.faq-item small,
.apply-form,
.drawer-copy,
.drawer-form,
.form-status,
.map-zone-label,
.renovation-map.territory-map .map-tooltip,
.renovation-map.territory-map .map-tooltip strong,
.renovation-map.territory-map .map-tooltip small,
.map-tooltip-list,
.site-footer {
  font-family: var(--sans);
}

.hero-left h1,
.hero-right h2,
.hero-expanded-text h2,
.intro-grid h2,
.section-heading h2,
.split-section h2,
.altai-photo-copy h2,
.lots-intro h2,
.apply-form h2,
.apply-visual h2,
.application-drawer h2,
.project-sky-section h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.section-heading h2,
.altai-photo-copy h2,
.lots-intro h2,
.split-section h2 {
  font-weight: 500;
  line-height: 0.94;
}

.nav-links a,
.header-cta {
  font-size: clamp(14px, 0.82vw, 15px);
  font-weight: 600;
  line-height: 1.1;
}

.menu-drawer a,
.button,
.dock-main,
.drawer-submit,
.gallery-control,
.lot-choice span,
.document-strip span {
  font-weight: 600;
  line-height: 1.15;
}

.section-kicker,
.fact-label,
.lot-card span,
.lot-format-main span,
.lot-metrics span,
.lot-breakdown dt,
.document-strip span,
.map-zone-label {
  font-weight: 600;
}

.section-description,
.section-heading > p,
.altai-photo-copy > p:last-child,
.intro-copy p,
.hero-left p,
.hero-right p,
.photo-card p,
.feature-render p,
.comparison-copy,
.experience-card p,
.timeline-list p,
.lot-card p,
.lot-format-main p,
.lot-breakdown dd,
.lots-principles p,
.trust-card p,
.drawer-copy,
.faq-item small,
.renovation-map.territory-map .map-tooltip small,
.map-tooltip-list span {
  font-weight: 500;
  line-height: 1.5;
}

.section-description,
main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description,
main > section#before-after > .section-heading.section-header-grid .section-description,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-description,
main > section#faq > .section-heading.section-header-grid .section-description {
  font-weight: 500;
  opacity: 0.76;
}

.faq-item span {
  font-weight: 600;
  line-height: 1.25;
}

.timeline-list strong,
.lot-card strong,
.trust-card h3,
.fact-value,
.fund-row strong,
.renovation-map.territory-map .map-tooltip strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-left h1,
  .hero-right h2,
  .hero-expanded-text h2,
  .intro-grid h2,
  .section-heading h2,
  .split-section h2,
  .altai-photo-copy h2,
  .lots-intro h2,
  .apply-form h2,
  .apply-visual h2,
  .application-drawer h2,
  .project-sky-section h2 {
    line-height: 0.96;
  }
}

/* Specificity fix: keep the four edited intros in the intended two-column text layout. */
main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid,
main > section#before-after > .section-heading.section-header-grid,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid,
main > section#faq > .section-heading.section-header-grid {
  display: grid;
  align-items: start;
  justify-content: initial;
  width: min(100%, var(--premium-section-max));
  max-width: var(--premium-section-max);
  min-height: 0;
  margin-inline: auto;
  text-align: left;
}

main > section#before-after > .section-heading.section-header-grid > div,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid > div,
main > section#faq > .section-heading.section-header-grid > div {
  width: 100%;
  min-width: 0;
  max-width: none;
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-kicker,
main > section#before-after > .section-heading.section-header-grid .section-kicker,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-kicker,
main > section#faq > .section-heading.section-header-grid .section-kicker {
  display: block;
  margin: 0 0 clamp(26px, 2vw, 32px);
  font-size: clamp(12px, 0.72vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid h2,
main > section#before-after > .section-heading.section-header-grid h2,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid h2,
main > section#faq > .section-heading.section-header-grid h2 {
  width: min(100%, 100%);
  margin: 0;
  margin-inline: 0;
  font-size: clamp(54px, 5.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-align: left;
  text-wrap: balance;
}

main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid h2,
main > section#before-after > .section-heading.section-header-grid h2 {
  max-width: 760px;
}

main > section#faq > .section-heading.section-header-grid h2 {
  max-width: 650px;
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid h2 {
  max-width: 1280px;
}

main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description,
main > section#before-after > .section-heading.section-header-grid .section-description,
main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-description,
main > section#faq > .section-heading.section-header-grid .section-description {
  align-self: center;
  justify-self: start;
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 1.15vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.72;
  text-align: left;
  text-wrap: pretty;
}

@media (min-width: 901px) {
  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid,
  main > section#before-after > .section-heading.section-header-grid,
  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid,
  main > section#faq > .section-heading.section-header-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
    column-gap: clamp(64px, 9vw, 160px);
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid h2 {
    grid-column: 1;
    grid-row: 2;
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    transform: translateY(clamp(4px, 0.6vw, 10px));
  }

  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid {
    margin-bottom: clamp(56px, 4.4vw, 72px);
  }

  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-description {
    align-self: center;
    transform: translateY(clamp(12px, 1.2vw, 22px));
  }

  main > section#before-after > .section-heading.section-header-grid {
    margin-bottom: clamp(56px, 4.4vw, 72px);
  }

  main > section#before-after > .section-heading.section-header-grid .section-description {
    align-self: center;
    transform: translateY(calc(clamp(4px, 0.6vw, 10px) * -1));
  }

  main > section#faq > .section-heading.section-header-grid {
    margin-bottom: clamp(52px, 4vw, 64px);
  }

  main > section#faq > .section-heading.section-header-grid .section-description {
    align-self: center;
    transform: translateY(clamp(4px, 0.5vw, 10px));
  }
}

@media (max-width: 900px) {
  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid,
  main > section#before-after > .section-heading.section-header-grid,
  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid,
  main > section#faq > .section-heading.section-header-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-kicker,
  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid h2,
  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description {
    grid-column: auto;
    grid-row: auto;
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid h2,
  main > section#before-after > .section-heading.section-header-grid h2,
  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid h2,
  main > section#faq > .section-heading.section-header-grid h2 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.96;
  }

  main > section.altai-views-page[aria-labelledby="altai-views-title"] > .altai-photo-copy.section-header-grid .section-description,
  main > section#before-after > .section-heading.section-header-grid .section-description,
  main > section.map-section[aria-labelledby="map-title"] > .section-heading.section-header-grid .section-description,
  main > section#faq > .section-heading.section-header-grid .section-description {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    transform: none;
  }
}

/* Direct-OOO content pass: keep the longer v2.0 hero and CTA tidy on narrow screens. */
@media (max-width: 620px) {
  .altai-landing-hero .hero-content {
    width: auto;
    max-width: calc(100vw - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    width: min(310px, 100%);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-availability,
  .hero-availability span {
    max-width: 100%;
  }

  .hero-availability span {
    white-space: normal;
  }

  .dock-shell {
    max-width: calc(100vw - 28px);
  }

  .dock-main {
    min-width: 0;
    max-width: calc(100vw - 104px);
    padding-inline: 16px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }

  .dock-logo {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .dock-logo img {
    width: 29px;
    height: 29px;
  }
}

/* Location photo concept: compact editorial mosaic with one shared visual grade. */
main > section#location.altai-views-page {
  --location-gallery-gap: clamp(12px, 0.95vw, 18px);
  --location-block-gap: clamp(26px, 3vw, 46px);
  padding-bottom: clamp(72px, 7vw, 118px);
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 76%, #15110d 100%);
}

main > section#location .location-points {
  margin-bottom: 0;
}

main > section#location .altai-photo-grid {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: var(--location-block-gap) auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(240px, 0.72fr) minmax(0, 1.32fr);
  grid-template-rows: repeat(2, clamp(228px, 15vw, 340px));
  gap: var(--location-gallery-gap);
  align-items: stretch;
}

main > section#location .altai-photo-frame,
main > section#location .altai-photo-lake,
main > section#location .altai-photo-ridge,
main > section#location .altai-photo-valley,
main > section#location .altai-photo-large {
  min-height: 0;
  height: 100%;
  margin: 0;
  border-color: rgba(21, 17, 13, 0.11);
  border-radius: 8px;
  background: #17120e;
  box-shadow:
    0 24px 70px rgba(21, 17, 13, 0.16),
    inset 0 1px 0 rgba(255, 250, 240, 0.16);
  clip-path: inset(0 0 0 0 round 8px);
}

main > section#location .altai-photo-large {
  grid-column: 3;
  grid-row: 1 / span 2;
}

main > section#location .altai-photo-lake {
  grid-column: 2;
  grid-row: 1;
}

main > section#location .altai-photo-ridge {
  grid-column: 2;
  grid-row: 2;
}

main > section#location .altai-photo-valley {
  grid-column: 1;
  grid-row: 1 / span 2;
}

main > section#location .altai-photo-frame {
  --location-photo-grade: saturate(0.94) contrast(1.07) brightness(0.99) sepia(0.03);
}

main > section#location .altai-photo-large {
  --location-photo-grade: saturate(1.06) contrast(1.1) brightness(1.08) sepia(0.02);
}

main > section#location .altai-photo-lake {
  --location-photo-grade: saturate(0.88) contrast(1.07) brightness(0.98) sepia(0.04);
}

main > section#location .altai-photo-ridge {
  --location-photo-grade: saturate(0.9) contrast(1.04) brightness(0.99) sepia(0.04);
}

main > section#location .altai-photo-valley {
  --location-photo-grade: saturate(0.86) contrast(1.05) brightness(0.97) sepia(0.03);
}

main > section#location .altai-photo-frame::after,
main > section#location .altai-photo-valley::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(90deg, rgba(14, 10, 7, 0.12), transparent 28%, transparent 72%, rgba(14, 10, 7, 0.1));
}

main > section#location .altai-photo-valley::before {
  content: none;
}

main > section#location .altai-photo-frame img {
  min-height: 0;
  object-fit: cover;
  filter: var(--location-photo-grade);
  transform: translate3d(0, 0, 0) scale(1.015);
}

main > section#location .altai-photo-frame:hover img {
  filter: var(--location-photo-grade);
  transform: translate3d(0, 0, 0) scale(1.04);
}

main > section#location .altai-photo-large img {
  object-position: 46% 50%;
}

main > section#location .altai-photo-lake img {
  object-position: 50% 50%;
}

main > section#location .altai-photo-ridge img {
  object-position: 50% 36%;
}

main > section#location .altai-photo-valley img {
  object-position: 50% 54%;
}

main > section#location .altai-photo-frame figcaption {
  left: clamp(14px, 1.4vw, 22px);
  right: clamp(14px, 1.4vw, 22px);
  bottom: clamp(12px, 1.25vw, 20px);
  gap: 12px;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(13px, 0.92vw, 16px);
  letter-spacing: 0;
}

main > section#location .altai-photo-frame figcaption::after {
  max-width: 86px;
  background: rgba(255, 250, 240, 0.28);
}

@media (max-width: 1100px) {
  main > section#location .altai-photo-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    grid-template-rows:
      clamp(220px, 28vw, 300px)
      clamp(220px, 28vw, 300px)
      clamp(210px, 28vw, 280px);
  }

  main > section#location .altai-photo-large {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  main > section#location .altai-photo-ridge {
    grid-column: 1;
    grid-row: 3;
  }

  main > section#location .altai-photo-lake {
    grid-column: 2;
    grid-row: 3;
  }

  main > section#location .altai-photo-valley {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 680px) {
  main > section#location.altai-views-page {
    padding-bottom: 68px;
    background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 82%, #15110d 100%);
  }

  main > section#location .altai-photo-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    margin-top: clamp(22px, 5.5vw, 28px);
  }

  main > section#location .altai-photo-frame,
  main > section#location .altai-photo-large,
  main > section#location .altai-photo-lake,
  main > section#location .altai-photo-ridge,
  main > section#location .altai-photo-valley {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    min-height: 0;
  }

  main > section#location .altai-photo-large,
  main > section#location .altai-photo-lake {
    aspect-ratio: 16 / 10;
  }

  main > section#location .altai-photo-ridge,
  main > section#location .altai-photo-valley {
    aspect-ratio: 4 / 5;
  }

  main > section#location .altai-photo-frame figcaption {
    font-size: 13px;
  }

  main > section#location .altai-photo-frame figcaption::after {
    max-width: 48px;
  }

  main > section#location .altai-photo-valley {
    order: 1;
  }

  main > section#location .altai-photo-lake {
    order: 2;
  }

  main > section#location .altai-photo-ridge {
    order: 3;
  }

  main > section#location .altai-photo-large {
    order: 4;
  }
}

/* Final request panel: compact lower card with a centered close control. */
.application-drawer {
  left: 50%;
  bottom: max(38px, calc(env(safe-area-inset-bottom) + 38px));
  width: min(880px, calc(100vw - 72px));
  max-height: none;
  display: block;
  overflow: visible;
  padding: 34px 36px 30px;
  border-radius: 18px;
  transform: translate3d(-50%, 76px, 0) scale(0.96);
}

body.application-open .application-drawer {
  transform: translate3d(-50%, 0, 0) scale(1);
}

.drawer-close {
  top: -56px;
  right: auto;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.88);
  background: linear-gradient(180deg, #fffaf0 0%, #eadcbe 100%);
  color: var(--button-ink);
  font-size: 24px;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
  transition:
    transform 500ms var(--ease-out-expo),
    background 420ms ease,
    color 420ms ease,
    box-shadow 520ms ease;
}

body.application-open .application-drawer > .drawer-close {
  transform: translateX(-50%);
}

body.application-open .application-drawer > .drawer-close:hover,
body.application-open .application-drawer > .drawer-close:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #f2dfb6 100%);
  color: var(--button-ink);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(241, 214, 155, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) translateY(-2px) scale(1.035);
}

.application-drawer h2,
.drawer-copy {
  text-align: center;
}

.application-drawer h2 {
  max-width: 100%;
  margin: 0;
  padding-right: 0;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.98;
}

.drawer-copy {
  max-width: 47rem;
  margin: 13px auto 22px;
  font-size: 15px;
  line-height: 1.45;
}

.drawer-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.drawer-form label,
.lot-choice {
  min-width: 0;
}

.drawer-form label,
.lot-choice legend {
  gap: 6px;
  font-size: 10.5px;
  line-height: 1.2;
}

.drawer-form input,
.drawer-form select,
.drawer-form textarea {
  min-height: 48px;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.25;
}

.lot-choice {
  grid-column: 1 / -1;
  margin: 3px 0 0;
}

.lot-choice legend {
  margin-bottom: 7px;
  text-align: center;
}

.lot-choice-grid {
  --lot-button-height: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--lot-button-height);
  gap: 10px;
}

.lot-choice span {
  height: 100%;
  min-height: 0;
  padding: 10px 12px;
  gap: 2px;
  font-size: 13px;
  line-height: 1.12;
}

.lot-choice small {
  font-size: 9.5px;
  line-height: 1.15;
}

.drawer-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(21, 17, 13, 0.66);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

.drawer-check input {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 1px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  accent-color: #000;
}

.drawer-check span {
  display: block;
}

.drawer-submit {
  grid-column: 1 / -1;
  min-height: 52px;
  margin-top: 0;
  padding: 13px 20px;
  font-size: 15px;
}

.application-drawer .form-status {
  grid-column: 1 / -1;
  min-height: 14px;
  font-size: 12px;
}

@media (max-width: 560px) {
  .application-drawer {
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
    width: min(470px, calc(100vw - 22px));
    padding: 20px 16px 17px;
  }

  .drawer-close {
    top: -50px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .application-drawer h2 {
    font-size: clamp(31px, 9vw, 36px);
  }

  .drawer-copy {
    margin-bottom: 13px;
    font-size: 12.5px;
  }

  .drawer-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .lot-choice-grid {
    --lot-button-height: 44px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .lot-choice span {
    padding: 7px 8px;
    font-size: 11px;
  }

  .drawer-check {
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.3;
  }

  .drawer-submit {
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .application-drawer {
    width: min(360px, calc(100vw - 16px));
    padding: 16px 12px 14px;
  }

  .drawer-form {
    gap: 7px;
  }

  .drawer-form input,
  .drawer-form select,
  .drawer-form textarea {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .lot-choice span {
    padding-inline: 6px;
    font-size: 10.5px;
  }

  .lot-choice small {
    font-size: 9px;
  }
}

/* Final quick menu color pass: keep the drawer neutral black, not green-tinted. */
.menu-drawer {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.96), rgba(4, 4, 4, 0.94));
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-drawer::after {
  border-left-color: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.2);
  background: rgba(12, 12, 11, 0.96);
}

.menu-drawer a {
  color: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.09);
}

.menu-drawer a::before {
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.2);
}

.menu-drawer a:hover,
.menu-drawer a:focus-visible {
  color: #fff;
}

/* Desktop crop for the Altai ridge photo: keep the snowy mountains in frame. */
@media (min-width: 981px) {
  .altai-views-page .altai-photo-ridge img {
    object-position: 50% 38%;
  }
}

/* Final Altai views intro pass: match the section heading rhythm. */
.altai-views-page .altai-photo-copy {
  width: min(100%, var(--section-heading-max));
  margin-inline: auto;
  margin-bottom: clamp(28px, 3.6vw, 56px);
  row-gap: clamp(10px, 1vw, 14px);
}

.altai-views-page .altai-photo-copy .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 clamp(8px, 0.8vw, 12px);
}

.altai-views-page .altai-photo-copy h2 {
  max-width: min(100%, 1120px);
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}

.altai-views-page .altai-photo-copy > p:last-child {
  align-self: end;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(21, 17, 13, 0.72);
  font-size: clamp(16px, 1.08vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .altai-views-page .altai-photo-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(440px, var(--section-right-copy-width));
    column-gap: clamp(48px, 5vw, 96px);
    align-items: end;
  }
}

@media (max-width: 980px) {
  .altai-views-page .altai-photo-copy {
    grid-template-columns: 1fr;
    max-width: min(720px, 100%);
    margin-inline: 0;
    gap: clamp(16px, 3vw, 24px);
  }

  .altai-views-page .altai-photo-copy .section-kicker {
    grid-column: auto;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: min(100%, 22ch);
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.98;
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 36rem;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 620px) {
  .altai-views-page .altai-photo-copy {
    max-width: 100%;
    gap: 18px;
    margin-bottom: 24px;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 100%;
    font-size: clamp(32px, 7.5vw, 42px);
  }
}

/* Future section desktop density: use the wide row without oversized gaps. */
@media (min-width: 981px) {
  #future {
    padding-top: clamp(48px, 4.6vw, 78px);
  }

  #future .section-heading {
    grid-template-columns: minmax(0, 1.45fr) minmax(420px, 0.55fr);
    column-gap: clamp(32px, 3.4vw, 64px);
    margin-bottom: clamp(18px, 2.3vw, 34px);
  }

  #future .section-heading h2 {
    max-width: min(100%, 1220px);
  }

  #future .section-heading > p {
    max-width: none;
    margin-top: 0;
  }

  #future .future-toolbar {
    margin-top: clamp(-16px, -1.1vw, -8px);
  }
}

/* Final participation intro pass: align formats copy with the shared heading grid. */
.lots-section-redesign {
  padding-top: clamp(56px, 5.2vw, 86px);
}

.lots-intro {
  width: min(100%, var(--section-heading-max));
  margin-inline: auto;
  margin-bottom: clamp(24px, 3.2vw, 48px);
  row-gap: clamp(10px, 1vw, 14px);
}

.lots-intro .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 clamp(8px, 0.8vw, 12px);
}

.lots-intro h2 {
  max-width: min(100%, 1120px);
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}

.lots-intro > p {
  align-self: end;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(21, 17, 13, 0.72);
  font-size: clamp(16px, 1.08vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .lots-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(440px, var(--section-right-copy-width));
    column-gap: clamp(48px, 5vw, 96px);
    align-items: end;
  }
}

@media (max-width: 980px) {
  .lots-section-redesign {
    padding-top: clamp(58px, 10vw, 88px);
  }

  .lots-intro {
    grid-template-columns: 1fr;
    max-width: min(720px, 100%);
    margin-inline: 0;
    gap: clamp(16px, 3vw, 24px);
  }

  .lots-intro .section-kicker {
    grid-column: auto;
  }

  .lots-intro h2 {
    max-width: min(100%, 22ch);
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.98;
  }

  .lots-intro > p {
    max-width: 36rem;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 620px) {
  .lots-intro {
    max-width: 100%;
    gap: 18px;
    margin-bottom: 24px;
  }

  .lots-intro h2 {
    max-width: 100%;
    font-size: clamp(32px, 7.5vw, 42px);
  }
}

/* Clean Altai intro: remove the kicker and keep the copy calm and readable. */
.altai-views-page .altai-photo-copy .section-kicker {
  display: none;
}

.altai-views-page .altai-photo-copy {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.altai-views-page .altai-photo-copy h2 {
  max-width: min(100%, 1040px);
}

.altai-views-page .altai-photo-copy > p:last-child {
  color: rgba(21, 17, 13, 0.7);
  font-weight: 650;
}

@media (min-width: 981px) {
  .altai-views-page .altai-photo-copy {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.58fr);
    column-gap: clamp(36px, 4vw, 72px);
  }
}

@media (max-width: 980px) {
  .altai-views-page .altai-photo-copy {
    gap: clamp(12px, 2.6vw, 18px);
  }
}

@media (max-width: 620px) {
  .altai-views-page {
    padding-top: clamp(42px, 9vw, 58px);
  }

  .altai-views-page .altai-photo-copy {
    gap: 14px;
    margin-bottom: 24px;
  }

  .altai-views-page .altai-photo-copy h2 {
    font-size: clamp(34px, 7.2vw, 40px);
    line-height: 1;
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 32rem;
    font-size: 16px;
    line-height: 1.48;
  }
}

/* Desktop centered Altai intro on the light band. */
@media (min-width: 981px) {
  .altai-views-page .altai-photo-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 24vw, 360px);
    width: min(100%, 1120px);
    margin-inline: auto;
    margin-bottom: clamp(28px, 3.4vw, 52px);
    text-align: center;
  }

  .altai-views-page .altai-photo-copy h2 {
    max-width: 980px;
    margin-inline: auto;
  }

  .altai-views-page .altai-photo-copy > p:last-child {
    max-width: 780px;
    margin-inline: auto;
  }
}

/* Centered section intros: consistent readable headings below the Altai intro. */
main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
.lots-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3.2vw, 48px);
  gap: clamp(12px, 1.4vw, 18px);
  text-align: center;
}

main > section:not(.hero-section):not(.altai-views-page) > .section-heading > div,
.lots-intro > :not(p:last-child) {
  width: min(100%, 980px);
}

main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
.lots-intro h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}

main > section:not(.hero-section):not(.altai-views-page) > .section-heading > p,
.lots-intro > p:last-child {
  align-self: center;
  justify-self: center;
  width: min(100%, 780px);
  max-width: 780px;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.split-section > div:first-child {
  text-align: center;
}

.split-section > div:first-child h2,
.split-section > div:first-child p {
  margin-inline: auto;
}

@media (min-width: 981px) {
  .split-section {
    align-items: center;
  }
}

@media (max-width: 980px) {
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
  .lots-intro {
    width: min(100%, 720px);
    max-width: 720px;
    gap: clamp(12px, 2.8vw, 18px);
  }

  main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
  .lots-intro h2 {
    max-width: 100%;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.98;
  }

  main > section:not(.hero-section):not(.altai-views-page) > .section-heading > p,
  .lots-intro > p:last-child {
    width: min(100%, 36rem);
    max-width: 36rem;
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
  .lots-intro {
    width: 100%;
    margin-bottom: 24px;
  }

  main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
  .lots-intro h2 {
    font-size: clamp(32px, 7.5vw, 42px);
  }
}

/* Left-rail section intros: readable typography aligned like the opening screen. */
.altai-views-page .altai-photo-copy,
main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
.lots-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 1080px);
  max-width: 1080px;
  margin-inline: 0 auto;
  text-align: left;
}

.altai-views-page .altai-photo-copy {
  justify-content: center;
  min-height: clamp(190px, 20vw, 300px);
  margin-bottom: clamp(26px, 3.2vw, 48px);
}

.altai-views-page .altai-photo-copy h2,
main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
.lots-intro h2 {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: 0;
  text-align: left;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.94;
  text-wrap: balance;
}

.altai-views-page .altai-photo-copy > p:last-child,
main > section:not(.hero-section):not(.altai-views-page) > .section-heading > p,
.lots-intro > p:last-child {
  align-self: flex-start;
  width: min(100%, 720px);
  max-width: 720px;
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

main > section:not(.hero-section):not(.altai-views-page) > .section-heading > div,
.lots-intro > :not(p:last-child) {
  width: min(100%, 980px);
}

.split-section > div:first-child {
  text-align: left;
}

.split-section > div:first-child h2,
.split-section > div:first-child p {
  margin-inline: 0 auto;
}

@media (min-width: 981px) {
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
  .lots-intro {
    justify-content: center;
    min-height: clamp(140px, 13vw, 230px);
    margin-bottom: clamp(22px, 2.8vw, 44px);
    gap: clamp(12px, 1.3vw, 18px);
  }
}

@media (max-width: 980px) {
  .altai-views-page .altai-photo-copy,
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
  .lots-intro {
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
    gap: clamp(12px, 2.8vw, 18px);
  }

  .altai-views-page .altai-photo-copy h2,
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
  .lots-intro h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 0.98;
  }

  .altai-views-page .altai-photo-copy > p:last-child,
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading > p,
  .lots-intro > p:last-child {
    width: min(100%, 36rem);
    max-width: 36rem;
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .altai-views-page .altai-photo-copy,
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading,
  .lots-intro {
    width: 100%;
    min-height: 0;
    margin-bottom: 24px;
  }

  .altai-views-page .altai-photo-copy h2,
  main > section:not(.hero-section):not(.altai-views-page) > .section-heading h2,
  .lots-intro h2 {
    font-size: clamp(32px, 7.5vw, 42px);
  }
}

/* Premium typography pass for the requested section intros only. */
:root {
  --premium-section-max: 1680px;
  --premium-copy-width: 500px;
}

main > section#lots > .lots-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
  column-gap: clamp(64px, 9vw, 160px);
  align-items: start;
  justify-content: initial;
  width: min(100%, var(--premium-section-max));
  max-width: var(--premium-section-max);
  min-height: 0;
  margin-inline: auto;
  text-align: left;
}

main > section#lots > .lots-intro .section-kicker {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: auto;
  max-width: 760px;
  margin: 0 0 clamp(26px, 2vw, 32px);
  text-align: left;
}

main > section#lots > .lots-intro h2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: min(100%, 760px);
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

main > section#lots > .lots-intro > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  margin: 0;
  text-align: left;
}

body,
button,
input,
select,
textarea,
.nav-links,
.nav-links a,
.header-cta,
.menu-drawer,
.menu-drawer a,
.button,
.dock-shell,
.dock-main,
.section-kicker,
.section-description,
.section-heading > p,
.altai-photo-copy > p:last-child,
.intro-copy,
.hero-left p,
.hero-right p,
.photo-card p,
.feature-render p,
.comparison-copy,
.experience-card p,
.timeline-list,
.timeline-list p,
.fact-band,
.lot-card,
.lot-card p,
.lot-format,
.lots-principles,
.trust-card,
.trust-card p,
.document-strip,
.fund-bars,
.faq-list,
.faq-item,
.faq-item span,
.faq-item small,
.apply-form,
.drawer-copy,
.drawer-form,
.form-status,
.map-zone-label,
.renovation-map.territory-map .map-tooltip,
.renovation-map.territory-map .map-tooltip strong,
.renovation-map.territory-map .map-tooltip small,
.map-tooltip-list,
.site-footer {
  font-family: var(--sans);
}

p,
small,
li,
dt,
dd,
label,
input,
select,
textarea,
button {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
}

h3,
h4,
strong,
b {
  font-family: var(--sans);
  font-weight: 600;
}

.nav-links a,
.header-cta {
  font-size: clamp(14px, 0.82vw, 15px);
  font-weight: 600;
  line-height: 1.1;
}

.menu-drawer a,
.button,
.dock-main,
.drawer-submit,
.gallery-control,
.lot-choice span,
.document-strip span {
  font-weight: 600;
  line-height: 1.15;
}

.section-kicker,
.fact-label,
.lot-card span,
.lot-format-main span,
.lot-metrics span,
.lot-breakdown dt,
.document-strip span,
.map-zone-label {
  font-weight: 600;
}

.timeline-list strong,
.lot-card strong,
.trust-card h3,
.fact-value,
.fund-row strong,
.renovation-map.territory-map .map-tooltip strong {
  font-weight: 600;
}

#before-after .section-heading.section-header-grid,
.map-section .section-heading.section-header-grid,
.faq-section .section-heading.section-header-grid,
.altai-views-page .altai-photo-copy.section-header-grid {
  display: grid;
  width: min(100%, var(--premium-section-max));
  max-width: var(--premium-section-max);
  min-height: 0;
  margin-inline: auto;
  text-align: left;
}

#before-after .section-heading.section-header-grid > div,
.map-section .section-heading.section-header-grid > div,
.faq-section .section-heading.section-header-grid > div {
  width: 100%;
  min-width: 0;
}

#before-after .section-heading.section-header-grid .section-kicker,
.map-section .section-heading.section-header-grid .section-kicker,
.faq-section .section-heading.section-header-grid .section-kicker,
.altai-views-page .altai-photo-copy.section-header-grid .section-kicker {
  display: block;
  margin: 0 0 clamp(26px, 2vw, 32px);
  font-size: clamp(12px, 0.72vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

#before-after .section-heading.section-header-grid h2,
.map-section .section-heading.section-header-grid h2,
.faq-section .section-heading.section-header-grid h2,
.altai-views-page .altai-photo-copy.section-header-grid h2 {
  width: min(100%, 100%);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.6vw, 96px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-align: left;
  text-wrap: balance;
}

.map-section .section-heading.section-header-grid h2 {
  max-width: 760px;
}

#before-after .section-heading.section-header-grid h2 {
  max-width: 760px;
}

.faq-section .section-heading.section-header-grid h2 {
  max-width: 650px;
}

.altai-views-page .altai-photo-copy.section-header-grid h2 {
  max-width: 1280px;
}

.section-description,
#before-after .section-heading.section-header-grid .section-description,
.map-section .section-heading.section-header-grid .section-description,
.faq-section .section-heading.section-header-grid .section-description,
.altai-views-page .altai-photo-copy.section-header-grid .section-description {
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  margin: 0;
  padding: 0;
  color: currentColor;
  font-size: clamp(18px, 1.15vw, 20px);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.76;
  text-align: left;
  text-wrap: pretty;
}

#before-after .section-heading.section-header-grid .section-description,
.faq-section .section-heading.section-header-grid .section-description {
  opacity: 0.74;
}

@media (min-width: 901px) {
  #before-after .section-heading.section-header-grid,
  .map-section .section-heading.section-header-grid,
  .faq-section .section-heading.section-header-grid,
  .altai-views-page .altai-photo-copy.section-header-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
    column-gap: clamp(64px, 9vw, 160px);
    align-items: start;
  }

  .altai-views-page .altai-photo-copy.section-header-grid .section-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  .altai-views-page .altai-photo-copy.section-header-grid h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .altai-views-page .altai-photo-copy.section-header-grid .section-description {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: start;
    transform: translateY(clamp(6px, 0.7vw, 12px));
  }

  .map-section .section-heading.section-header-grid {
    margin-bottom: clamp(56px, 4.4vw, 72px);
  }

  .map-section .section-heading.section-header-grid .section-description {
    align-self: end;
    justify-self: start;
  }

  #before-after .section-heading.section-header-grid {
    margin-bottom: clamp(56px, 4.4vw, 72px);
  }

  #before-after .section-heading.section-header-grid .section-description {
    align-self: center;
    justify-self: start;
    transform: translateY(calc(clamp(6px, 0.8vw, 14px) * -1));
  }

  .faq-section .section-heading.section-header-grid {
    margin-bottom: clamp(52px, 4vw, 64px);
  }

  .faq-section .section-heading.section-header-grid .section-description {
    align-self: center;
    justify-self: start;
  }

  .altai-views-page .altai-photo-copy.section-header-grid {
    margin-bottom: clamp(38px, 3.4vw, 56px);
  }
}

.faq-item span {
  font-family: var(--sans);
  font-size: clamp(18px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

/* Final map compactness lock. */
.renovation-map.territory-map .map-zone-label {
  min-height: var(--map-label-height);
  gap: 6px;
  padding: 5px var(--map-label-pad-x) 5px 5px;
  font-size: 11px;
  line-height: 1;
}

.renovation-map.territory-map .map-zone-label > span {
  width: var(--map-number-size);
  height: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  display: inline-grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.renovation-map.territory-map .map-tooltip {
  width: min(var(--map-tooltip-width), calc(100vw - 36px));
  height: var(--map-tooltip-height);
  min-height: var(--map-tooltip-height);
  gap: var(--map-tooltip-gap);
  padding: var(--map-tooltip-pad);
  overflow: hidden;
}

.renovation-map.territory-map .map-tooltip strong {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.08;
}

.renovation-map.territory-map .map-tooltip small {
  max-width: 100%;
  font-size: 10.8px;
  font-weight: 500;
  line-height: 1.28;
}

.renovation-map.territory-map .map-tooltip-list span {
  min-height: 18px;
  gap: 6px;
  font-size: 9.6px;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .renovation-map.territory-map .map-zone-label {
    gap: 5px;
    font-size: 9.4px;
  }
}

@media (max-width: 620px) {
  .renovation-map.territory-map .map-zone-label {
    padding: 4px 7px 4px 4px;
    font-size: 8.8px;
  }

  .renovation-map.territory-map .map-zone-label > span {
    font-size: 10.5px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 13px;
    line-height: 1.05;
  }

  .renovation-map.territory-map .map-tooltip small,
  .renovation-map.territory-map .map-tooltip-list span {
    font-size: 8.9px;
  }
}

/* Aerial territory map: keep the misted frame, align live labels with the render. */
.renovation-map.territory-map {
  --map-label-height: 31px;
  --map-number-size: 22px;
  --map-tooltip-width: 258px;
  --map-tooltip-height: 214px;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(21, 17, 13, 0.1)),
    url("assets/territory-map-aerial-vip-clean.png");
}

.renovation-map.territory-map::before {
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 1% 7%, rgba(255, 250, 240, 0.88) 0 13%, transparent 30%),
    radial-gradient(ellipse at 99% 8%, rgba(255, 250, 240, 0.78) 0 11%, transparent 29%),
    radial-gradient(ellipse at 0% 92%, rgba(255, 250, 240, 0.84) 0 15%, transparent 31%),
    radial-gradient(ellipse at 99% 96%, rgba(255, 250, 240, 0.38) 0 7%, transparent 22%),
    radial-gradient(ellipse at 48% 103%, rgba(255, 250, 240, 0.66) 0 10%, transparent 27%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.74), rgba(255, 250, 240, 0.32) 10%, transparent 23%, transparent 77%, rgba(255, 250, 240, 0.28) 90%, rgba(255, 250, 240, 0.7)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.6), rgba(255, 250, 240, 0.16) 15%, transparent 31%, transparent 76%, rgba(255, 250, 240, 0.12) 88%, rgba(255, 250, 240, 0.48));
  filter: blur(0.35px);
}

.renovation-map.territory-map::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 240, 0.3),
    inset 0 68px 82px rgba(255, 250, 240, 0.22),
    inset 0 -78px 84px rgba(255, 250, 240, 0.18);
}

.renovation-map.territory-map .map-zone {
  --tooltip-x: -50%;
}

.renovation-map.territory-map .map-zone::after {
  content: none;
}

.territory-map > .map-cafe-sign {
  position: absolute;
  left: 75.25%;
  top: 78.95%;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 15px;
  padding: 2px 7px 3px;
  border: 1px solid rgba(216, 195, 155, 0.26);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(82, 55, 35, 0.68), rgba(31, 22, 15, 0.72)),
    rgba(35, 25, 16, 0.5);
  color: #ffe6a4;
  font-family: var(--sans);
  font-size: clamp(8px, 0.72vw, 12px);
  font-weight: 880;
  line-height: 1;
  text-shadow:
    0 0 3px rgba(255, 226, 157, 0.76),
    0 0 8px rgba(185, 120, 74, 0.46),
    0 1px 3px rgba(21, 17, 13, 0.82);
  box-shadow:
    0 3px 8px rgba(21, 17, 13, 0.2),
    0 0 8px rgba(255, 194, 105, 0.12),
    inset 0 1px 0 rgba(255, 235, 188, 0.18);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(9deg) skewX(-10deg);
}

.territory-map > .map-cafe-sign::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  border: 1px solid rgba(255, 226, 157, 0.11);
  pointer-events: none;
}

.territory-map > .map-fire-flame {
  position: absolute;
  left: 70.55%;
  top: 46.95%;
  z-index: 11;
  display: block;
  width: clamp(18px, 1.55vw, 26px);
  height: clamp(28px, 2.35vw, 42px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 11%, rgba(47, 35, 20, 0.16) 0 18%, transparent 42%),
    radial-gradient(ellipse at 50% 78%, rgba(255, 150, 55, 0.46) 0 16%, rgba(255, 105, 28, 0.2) 32%, transparent 58%);
  filter:
    drop-shadow(0 0 5px rgba(255, 177, 71, 0.74))
    drop-shadow(0 0 11px rgba(185, 86, 34, 0.34));
  transform: translate(-50%, -76%);
}

.territory-map > .map-fire-flame::before,
.territory-map > .map-fire-flame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform-origin: 50% 88%;
  pointer-events: none;
}

.territory-map > .map-fire-flame::before {
  width: 54%;
  height: 58%;
  border-radius: 52% 48% 56% 44% / 68% 68% 32% 32%;
  background:
    radial-gradient(circle at 52% 70%, rgba(255, 242, 162, 0.85) 0 10%, transparent 27%),
    linear-gradient(180deg, rgba(255, 238, 144, 0.96) 0%, rgba(255, 132, 38, 0.9) 52%, rgba(147, 54, 25, 0.54) 100%);
  transform: translateX(-54%) rotate(-9deg);
}

.territory-map > .map-fire-flame::after {
  width: 32%;
  height: 43%;
  border-radius: 50% 50% 54% 46% / 72% 72% 28% 28%;
  background: linear-gradient(180deg, rgba(255, 252, 190, 0.98), rgba(255, 178, 54, 0.86) 72%, rgba(255, 119, 36, 0.38));
  transform: translateX(-30%) rotate(10deg);
}

.renovation-map.territory-map .map-zone-label {
  min-height: var(--map-label-height);
  gap: 7px;
  box-sizing: border-box;
  justify-content: flex-start;
  padding: 4px 12px 4px 5px;
  border-color: rgba(185, 120, 74, 0.22);
  background: rgba(255, 250, 240, 0.96);
  color: rgba(32, 24, 17, 0.86);
  font-size: 10.5px;
  font-weight: 820;
  box-shadow:
    0 10px 24px rgba(21, 17, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.renovation-map.territory-map .map-zone-label > span {
  width: var(--map-number-size);
  height: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.85), transparent 58%),
    linear-gradient(180deg, rgba(216, 195, 155, 0.78), rgba(185, 120, 74, 0.22));
  color: #6b4a2e;
  box-shadow:
    inset 0 0 0 1px rgba(137, 83, 47, 0.16),
    0 1px 4px rgba(21, 17, 13, 0.08);
  font-size: 10.8px;
  font-weight: 860;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label,
.renovation-map.territory-map .map-zone:focus .map-zone-label,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label {
  border-color: rgba(185, 120, 74, 0.38);
  background: rgba(255, 250, 240, 0.99);
  color: var(--ink);
  box-shadow:
    0 13px 30px rgba(21, 17, 13, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%) scale(1.025);
}

.renovation-map.territory-map .map-zone:hover .map-zone-label > span,
.renovation-map.territory-map .map-zone:focus .map-zone-label > span,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label > span {
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.9), transparent 58%),
    linear-gradient(180deg, rgba(216, 195, 155, 0.86), rgba(185, 120, 74, 0.3));
  color: #5f3c24;
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-zone-label {
  border-color: rgba(185, 120, 74, 0.22);
  background: rgba(255, 250, 240, 0.96);
  color: rgba(32, 24, 17, 0.86);
  transform: translate(-50%, -50%);
}

.zone-rooms {
  left: 26.9%;
  top: 23.4%;
}

.zone-vip {
  left: 58.6%;
  top: 16.6%;
}

.zone-suites {
  left: 52.8%;
  top: 35.6%;
}

.zone-parking {
  left: 39.5%;
  top: 51.8%;
}

.zone-cafe {
  left: 76.9%;
  right: auto;
  top: 73.6%;
  bottom: auto;
}

.zone-banya {
  left: 84.05%;
  right: auto;
  top: 21.3%;
}

.zone-territory {
  left: 70.75%;
  top: 47.5%;
}

.zone-rooms .map-zone-label { min-width: 128px; }
.zone-vip .map-zone-label { min-width: 126px; }
.zone-suites .map-zone-label { min-width: 132px; }
.zone-parking .map-zone-label { min-width: 86px; }
.zone-cafe .map-zone-label { min-width: 70px; }
.zone-banya .map-zone-label { min-width: 136px; }
.zone-territory .map-zone-label { min-width: 102px; }

.renovation-map.territory-map .map-tooltip {
  left: 0;
  right: auto;
  top: auto;
  bottom: calc(var(--map-label-height) / 2 + 18px);
  width: min(var(--map-tooltip-width), calc(100vw - 44px));
  height: var(--map-tooltip-height);
  min-height: var(--map-tooltip-height);
  transform: translate(-50%, 14px) scale(0.985);
  transform-origin: 50% 100%;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
  transform: translate(-50%, 0) scale(1);
}

.zone-parking .map-tooltip,
.zone-cafe .map-tooltip {
  top: auto;
  bottom: calc(var(--map-label-height) / 2 + 18px);
  transform: translate(-50%, 14px) scale(0.985);
  transform-origin: 50% 100%;
}

.zone-parking:hover .map-tooltip,
.zone-parking:focus .map-tooltip,
.zone-parking:focus-visible .map-tooltip,
.zone-cafe:hover .map-tooltip,
.zone-cafe:focus .map-tooltip,
.zone-cafe:focus-visible .map-tooltip {
  transform: translate(-50%, 0) scale(1);
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-tooltip {
  transform: translate(-50%, 14px) scale(0.985);
}

.zone-parking:focus:not(:focus-visible):not(:hover) .map-tooltip,
.zone-cafe:focus:not(:focus-visible):not(:hover) .map-tooltip {
  transform: translate(-50%, 14px) scale(0.985);
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-height: 27px;
    --map-number-size: 18px;
    --map-tooltip-width: 196px;
    --map-tooltip-height: 154px;
  }

  .renovation-map.territory-map .map-zone-label {
    gap: 5px;
    padding: 4px 8px 4px 4px;
    font-size: 8.7px;
  }

  .renovation-map.territory-map .map-zone-label > span {
    font-size: 10px;
  }

  .zone-rooms .map-zone-label,
  .zone-vip .map-zone-label,
  .zone-suites .map-zone-label,
  .zone-parking .map-zone-label,
  .zone-cafe .map-zone-label,
  .zone-banya .map-zone-label,
  .zone-territory .map-zone-label {
    min-width: 0;
  }

  .territory-map > .map-cafe-sign {
    left: 75.8%;
    top: 79.35%;
    min-width: 31px;
    min-height: 11px;
    padding: 1px 4px 2px;
    font-size: 5.6px;
  }

  .territory-map > .map-fire-flame {
    width: 13px;
    height: 21px;
  }

  .zone-banya {
    top: 26%;
  }

  .zone-territory {
    top: 49.2%;
  }
}

/* Hero and territory map polish: calmer first screen, denser map mist, bounded popovers. */
.altai-landing-hero .hero-content {
  width: min(920px, calc(100% - clamp(44px, 10vw, 176px)));
  padding-top: clamp(86px, 12vh, 136px);
  padding-bottom: clamp(150px, 20vh, 230px);
}

@media (min-width: 981px) {
  .altai-landing-hero .hero-content {
    transform: none;
  }
}

.altai-landing-hero h1 {
  max-width: 940px;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 0.95;
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(16px, 1.24vw, 20px);
  line-height: 1.58;
}

.altai-landing-hero .hero-actions {
  margin-top: 24px;
}

.altai-landing-hero .button-secondary {
  padding: 13px 18px;
  border-color: rgba(255, 250, 240, 0.34);
  background: rgba(255, 250, 240, 0.065);
}

.altai-landing-hero .hero-availability {
  max-width: 760px;
  margin-top: 18px;
  gap: 8px;
}

.altai-landing-hero .hero-availability span {
  min-height: 34px;
  padding: 8px 12px;
  border-color: rgba(255, 250, 240, 0.2);
  background: rgba(255, 250, 240, 0.075);
  color: rgba(255, 250, 240, 0.78);
  font-size: 11px;
}

.altai-landing-hero .hero-bottom {
  grid-template-columns: minmax(280px, 520px) minmax(360px, 540px);
  gap: clamp(26px, 4vw, 64px);
  bottom: clamp(34px, 5.5vh, 68px);
}

.altai-landing-hero .hero-note {
  max-width: 520px;
  font-size: 12.5px;
  line-height: 1.5;
}

.altai-landing-hero .hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: stretch;
  max-width: 540px;
}

.altai-landing-hero .hero-facts div {
  padding: 0 clamp(14px, 1.7vw, 24px);
  text-align: left;
}

.altai-landing-hero .hero-facts strong {
  font-size: clamp(20px, 1.7vw, 26px);
}

.altai-landing-hero .hero-facts span {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.territory-map > .map-cafe-sign {
  display: none;
}

.renovation-map.territory-map::before {
  background:
    radial-gradient(ellipse at 0% 6%, rgba(255, 250, 240, 0.82) 0 14%, transparent 31%),
    radial-gradient(ellipse at 100% 8%, rgba(255, 250, 240, 0.74) 0 12%, transparent 29%),
    radial-gradient(ellipse at 0% 92%, rgba(255, 250, 240, 0.78) 0 15%, transparent 31%),
    radial-gradient(ellipse at 100% 96%, rgba(255, 250, 240, 0.44) 0 9%, transparent 24%),
    radial-gradient(ellipse at 50% 104%, rgba(255, 250, 240, 0.58) 0 10%, transparent 27%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.68), rgba(255, 250, 240, 0.3) 10%, transparent 23%, transparent 77%, rgba(255, 250, 240, 0.3) 90%, rgba(255, 250, 240, 0.66)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.54), rgba(255, 250, 240, 0.16) 14%, transparent 29%, transparent 77%, rgba(255, 250, 240, 0.16) 89%, rgba(255, 250, 240, 0.48));
  filter: blur(0.45px);
}

.renovation-map.territory-map::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 240, 0.3),
    inset 0 64px 78px rgba(255, 250, 240, 0.22),
    inset 0 -72px 84px rgba(255, 250, 240, 0.2),
    inset 54px 0 72px rgba(255, 250, 240, 0.14),
    inset -54px 0 72px rgba(255, 250, 240, 0.14);
}

.renovation-map.territory-map .map-zone {
  --tooltip-x: -50%;
  --tooltip-y-closed: 14px;
  --tooltip-y-open: 0;
}

.renovation-map.territory-map .map-zone:hover,
.renovation-map.territory-map .map-zone:focus,
.renovation-map.territory-map .map-zone:focus-visible {
  z-index: 40;
}

.renovation-map.territory-map .map-tooltip {
  box-sizing: border-box;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  transform: translate(var(--tooltip-x), var(--tooltip-y-closed)) scale(0.985);
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
  transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1);
}

.zone-rooms,
.zone-vip,
.zone-banya {
  --tooltip-y-closed: -12px;
}

.zone-rooms .map-tooltip,
.zone-vip .map-tooltip,
.zone-banya .map-tooltip {
  top: calc(var(--map-label-height) / 2 + 18px);
  bottom: auto;
  transform-origin: 50% 0;
}

.zone-rooms { --tooltip-x: -24%; }
.zone-vip {
  --map-tooltip-width: 238px;
  --map-tooltip-height: 202px;
  --tooltip-x: -38%;
}

.zone-vip .map-tooltip {
  top: calc(var(--map-label-height) / 2 + 46px);
}
.zone-suites { --tooltip-x: -52%; }
.zone-parking { --tooltip-x: -44%; }
.zone-territory { --tooltip-x: -72%; }
.zone-cafe { --tooltip-x: -82%; }
.zone-banya { --tooltip-x: -88%; }

.zone-parking .map-tooltip,
.zone-cafe .map-tooltip,
.zone-territory .map-tooltip {
  bottom: calc(var(--map-label-height) / 2 + 20px);
  transform-origin: 50% 100%;
}

@media (max-width: 900px) {
  .altai-landing-hero .hero-content {
    width: min(100% - 40px, 720px);
    margin-inline: 20px;
    padding-bottom: 132px;
  }

  .altai-landing-hero h1 {
    font-size: clamp(46px, 12vw, 82px);
  }
}

@media (max-width: 620px) {
  .renovation-map.territory-map::before {
    filter: blur(0.42px);
  }

  .zone-rooms { --tooltip-x: -18%; }
  .zone-vip {
    --map-tooltip-width: 184px;
    --map-tooltip-height: 148px;
    --tooltip-x: -36%;
  }

  .zone-vip .map-tooltip {
    top: calc(var(--map-label-height) / 2 + 30px);
  }
  .zone-suites { --tooltip-x: -50%; }
  .zone-parking { --tooltip-x: -38%; }
  .zone-territory { --tooltip-x: -70%; }
  .zone-cafe { --tooltip-x: -84%; }
  .zone-banya { --tooltip-x: -90%; }
}

@media (max-width: 900px) {
  main > section#lots > .lots-intro {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
  }

  main > section#lots > .lots-intro .section-kicker,
  main > section#lots > .lots-intro h2,
  main > section#lots > .lots-intro > p:last-child {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  main > section#lots > .lots-intro .section-kicker {
    width: auto;
    margin-bottom: 0;
  }

  #before-after .section-heading.section-header-grid,
  .map-section .section-heading.section-header-grid,
  .faq-section .section-heading.section-header-grid,
  .altai-views-page .altai-photo-copy.section-header-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
  }

  .altai-views-page .altai-photo-copy.section-header-grid .section-kicker,
  .altai-views-page .altai-photo-copy.section-header-grid h2,
  .altai-views-page .altai-photo-copy.section-header-grid .section-description {
    grid-column: auto;
    grid-row: auto;
  }

  #before-after .section-heading.section-header-grid h2,
  .map-section .section-heading.section-header-grid h2,
  .faq-section .section-heading.section-header-grid h2,
  .altai-views-page .altai-photo-copy.section-header-grid h2 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.96;
  }

  .section-description,
  #before-after .section-heading.section-header-grid .section-description,
  .map-section .section-heading.section-header-grid .section-description,
  .faq-section .section-heading.section-header-grid .section-description,
  .altai-views-page .altai-photo-copy.section-header-grid .section-description {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    transform: none;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* Single-CTA funnel and contrast fixes. */
.hero-availability,
.concept-route,
.final-checks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 36px);
}

.hero-availability span,
.concept-route span,
.final-checks span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.82);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.concept-route {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(26px, 3vw, 42px) auto 0;
}

.concept-route span {
  position: relative;
}

.concept-route span:not(:last-of-type)::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 12px;
  background: rgba(255, 250, 240, 0.32);
}

.concept-route p {
  flex: 1 1 380px;
  min-width: min(100%, 320px);
  margin: 0 0 0 8px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.final-checks {
  justify-content: center;
  margin-top: clamp(20px, 2.4vw, 28px);
}

main > section#location {
  color: var(--ink);
}

main > section#location .altai-photo-copy,
main > section#location .altai-photo-copy h2,
main > section#location .section-description {
  color: var(--ink);
}

main > section#location .section-description {
  opacity: 0.72;
}

main > section#location .altai-photo-copy.section-header-grid {
  row-gap: clamp(20px, 2vw, 30px);
  margin-bottom: clamp(42px, 4.8vw, 76px);
}

.location-copy-stack {
  width: min(100%, var(--premium-copy-width));
  max-width: var(--premium-copy-width);
  display: grid;
  justify-items: start;
  gap: clamp(22px, 2.2vw, 32px);
}

main > section#location .location-copy-stack .section-description {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  width: 100%;
  max-width: none;
  transform: none;
}

.location-map-button {
  justify-self: start;
  min-width: 132px;
  margin: 0;
  border-color: rgba(185, 120, 74, 0.34);
  background:
    linear-gradient(180deg, #241b13 0%, #0f0b08 100%);
  color: var(--white);
  box-shadow:
    0 16px 42px rgba(21, 17, 13, 0.16),
    inset 0 1px 0 rgba(255, 250, 240, 0.12);
}

.location-map-button:hover,
.location-map-button:focus-visible {
  border-color: rgba(185, 120, 74, 0.62);
  background:
    linear-gradient(180deg, #302218 0%, #15100c 100%);
  color: #fff;
  box-shadow:
    0 20px 54px rgba(21, 17, 13, 0.22),
    0 0 0 3px rgba(185, 120, 74, 0.12),
    inset 0 1px 0 rgba(255, 250, 240, 0.16);
}

@media (min-width: 901px) {
  main > section#location .altai-photo-copy.section-header-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.62fr);
    column-gap: clamp(64px, 8vw, 132px);
    align-items: start;
  }

  main > section#location .altai-photo-copy.section-header-grid .section-description {
    align-self: start;
    transform: none;
  }

  .altai-views-page .altai-photo-copy.section-header-grid .location-copy-stack {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  main > section#location .altai-photo-copy.section-header-grid {
    row-gap: clamp(18px, 5vw, 28px);
  }

  .location-map-button {
    width: fit-content;
  }
}

.location-map-viewer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms var(--ease-soft),
    visibility 0s linear 260ms;
}

body.location-map-open {
  overflow: hidden;
}

body.location-map-open .location-map-viewer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.location-map-open .dock-cta {
  opacity: 0;
  pointer-events: none;
}

.location-map-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 240, 0.16), transparent 32%),
    rgba(15, 11, 8, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.location-map-panel {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100vw - clamp(28px, 4vw, 64px)));
  max-height: min(920px, calc(100svh - clamp(28px, 4vw, 64px)));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #f2e7d5 0%, #d5ba8e 100%);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 250, 240, 0.62);
  transform: translateY(14px) scale(0.985);
  transition: transform 320ms var(--ease-soft);
}

body.location-map-open .location-map-panel {
  transform: translateY(0) scale(1);
}

.location-map-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(14px, 1.6vw, 22px) clamp(16px, 2vw, 28px);
  border-bottom: 1px solid rgba(84, 51, 29, 0.14);
  color: var(--ink);
}

.location-map-panel-head p {
  margin: 0 0 4px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.location-map-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.location-map-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 17, 13, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease-soft), background 180ms ease, border-color 180ms ease;
}

.location-map-close:hover,
.location-map-close:focus-visible {
  border-color: rgba(185, 120, 74, 0.48);
  background: #fffaf0;
  outline: none;
  transform: translateY(-1px);
}

.location-map-scroll {
  min-height: 0;
  overflow: auto;
  padding: clamp(8px, 1vw, 14px);
  scrollbar-width: thin;
  scrollbar-color: rgba(84, 51, 29, 0.5) rgba(255, 250, 240, 0.36);
}

.location-map-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.location-map-scroll::-webkit-scrollbar-track {
  background: rgba(255, 250, 240, 0.36);
}

.location-map-scroll::-webkit-scrollbar-thumb {
  background: rgba(84, 51, 29, 0.5);
  border-radius: 999px;
}

.location-map-scroll img {
  display: block;
  width: 100%;
  min-width: min(100%, 960px);
  height: auto;
  border-radius: 6px;
  filter: sepia(0.2) saturate(1.02) contrast(1.08) brightness(1.03);
}

@media (max-width: 760px) {
  .location-map-viewer {
    padding: 10px;
  }

  .location-map-panel {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .location-map-panel-head {
    align-items: flex-start;
    padding: 14px;
  }

  .location-map-panel-head h2 {
    max-width: 10ch;
  }

  .location-map-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .location-map-scroll img {
    width: 980px;
    max-width: none;
    min-width: 980px;
  }
}

.location-points article {
  border-color: rgba(21, 17, 13, 0.12);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 52px rgba(21, 17, 13, 0.08);
}

.location-points span {
  color: var(--copper);
}

.location-points strong {
  color: var(--ink);
}

.location-points p {
  color: rgba(21, 17, 13, 0.68);
}

.suitability-section,
main > section#trust {
  color: var(--ink);
}

.suitability-section .trust-card,
main > section#trust .trust-card {
  border-color: rgba(21, 17, 13, 0.12);
  background: rgba(21, 17, 13, 0.045);
}

.suitability-section .trust-card h3,
main > section#trust .trust-card h3 {
  color: var(--ink);
}

.suitability-section .trust-card p,
main > section#trust .trust-card p {
  color: rgba(21, 17, 13, 0.66);
}

@media (max-width: 900px) {
  .hero-availability,
  .concept-route,
  .final-checks {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-route span:not(:last-of-type)::after {
    display: none;
  }

  .concept-route p {
    margin-left: 0;
  }

  .final-checks {
    justify-content: flex-start;
  }
}

/* Timeline seven-step lock: equal rhythm on desktop, clean full-width stack on narrow screens. */
.timeline-list {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.timeline-list li:last-child {
  grid-column: auto;
}

@media (min-width: 1121px) {
  .timeline-list li {
    min-height: clamp(218px, 15vw, 260px);
    padding: clamp(16px, 1.45vw, 22px);
  }

  .timeline-list strong {
    font-size: clamp(17px, 1.05vw, 20px);
    line-height: 1.15;
  }

  .timeline-list p {
    font-size: clamp(12.5px, 0.82vw, 14px);
    line-height: 1.45;
  }
}

@media (max-width: 1120px) {
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .timeline-list li {
    min-height: auto;
    gap: 16px;
  }
}

/* Individual close-out scenario stays visually separated as the dark card. */
.private-scenario .lot-format-private {
  border-style: solid;
  border-color: rgba(255, 250, 240, 0.18);
  background: #16120e;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(21, 17, 13, 0.18);
}

.private-scenario .lot-format-private .lot-format-main p {
  color: rgba(255, 250, 240, 0.66);
}

.private-scenario .lot-format-private .lot-metrics div {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.06);
}

.private-scenario .lot-format-private .lot-metrics strong,
.private-scenario .lot-format-private .lot-breakdown dd {
  color: var(--white);
}

/* Compact closing section: same premium rhythm, without a full-screen finish. */
main > sectionmain > section.transparency-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(42px, 4.6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 16%, rgba(185, 120, 74, 0.18), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(99, 141, 156, 0.1), transparent 38%),
    linear-gradient(180deg, #15110d 0%, #211a14 52%, #17120e 100%);
  background-size: min(16vw, 220px) 100%, auto, auto, auto;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  color: var(--white);
}

.transparency-section .section-heading {
  position: relative;
  z-index: 2;
}

.transparency-section .section-heading h2,
.platform-hero-heading h2 {
  color: rgba(255, 250, 240, 0.96);
}

.transparency-section .section-description,
.transparency-copy > p {
  color: rgba(255, 250, 240, 0.7);
}

.platform-hero-heading {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: 0 auto;
}

.platform-hero-heading .section-kicker {
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

.platform-hero-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.7vw, 78px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.transparency-layout {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(18px, 2vw, 30px) auto 0;
  display: grid;
  grid-template-columns: minmax(450px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.transparency-copy {
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.transparency-copy > p,
.platform-lead {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(13.5px, 0.9vw, 15.5px);
  font-weight: 760;
  line-height: 1.42;
}

.transparency-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 12px);
  margin-top: clamp(14px, 1.5vw, 22px);
  min-height: 0;
}

.transparency-points article,
.platform-value-strip article,
.owner-meeting-strip article {
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.transparency-points article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 9px;
  min-height: 0;
  height: 100%;
  align-content: center;
  padding: clamp(14px, 1.25vw, 22px);
}

.transparency-points span {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 50%;
  color: var(--sand);
  font-size: 9.5px;
  font-weight: 950;
}

.transparency-points strong,
.platform-value-strip strong,
.owner-meeting-strip strong {
  color: rgba(255, 250, 240, 0.94);
  font-size: clamp(14.5px, 0.92vw, 17.5px);
  font-weight: 900;
  line-height: 1.18;
}

.transparency-points p,
.platform-value-strip p,
.owner-meeting-strip p {
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: clamp(12px, 0.78vw, 13px);
  font-weight: 700;
  line-height: 1.38;
}

.transparency-points p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.dashboard-showcase {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: end;
  isolation: isolate;
  margin-top: 0;
  padding-bottom: clamp(78px, 6.5vw, 112px);
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  inset: 2% 0 9% 2%;
  z-index: -1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 16%, rgba(111, 152, 164, 0.18), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(185, 120, 74, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.035));
  filter: blur(18px);
}

.dashboard-frame {
  margin: 0;
}

.dashboard-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-frame-desktop {
  width: min(100%, 1040px);
  border: 1px solid rgba(216, 195, 155, 0.42);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 38px 108px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(185, 120, 74, 0.12),
    0 24px 90px rgba(111, 152, 164, 0.1);
  background: #10120f;
}

.dashboard-frame-mobile {
  position: absolute;
  right: clamp(-12px, -0.35vw, -4px);
  bottom: clamp(82px, 7vw, 118px);
  width: clamp(142px, 14.2vw, 224px);
  border: 1px solid rgba(216, 195, 155, 0.42);
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(185, 120, 74, 0.12);
  background: #2a241d;
}

.platform-ai-card {
  position: absolute;
  left: clamp(14px, 1.7vw, 32px);
  bottom: 0;
  width: min(410px, 48%);
  padding: clamp(14px, 1.4vw, 20px);
  border: 1px solid rgba(216, 195, 155, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 120, 74, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(216, 195, 155, 0.14), rgba(255, 250, 240, 0.055)),
    rgba(27, 21, 16, 0.94);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(18px);
}

.platform-ai-card span {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 9px;
  border: 1px solid rgba(216, 195, 155, 0.34);
  border-radius: 999px;
  background: rgba(216, 195, 155, 0.08);
  color: var(--sand);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.platform-ai-card strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.96);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 950;
  line-height: 1.15;
}

.platform-ai-card p {
  margin: 7px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(11.5px, 0.82vw, 13px);
  font-weight: 750;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.platform-roadmap {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(22px, 2.8vw, 38px) auto 0;
  padding-top: clamp(18px, 2.2vw, 30px);
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 52px);
  align-items: stretch;
}

.platform-roadmap-intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-roadmap-intro h3 {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 250, 240, 0.96);
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.platform-roadmap-intro > p:not(.section-kicker) {
  max-width: 420px;
  margin: clamp(12px, 1.5vw, 18px) 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1.58;
}

.platform-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.platform-module-grid article {
  min-height: clamp(124px, 7.6vw, 148px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  padding: clamp(14px, 1.35vw, 20px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.09), rgba(255, 250, 240, 0.04)),
    rgba(255, 250, 240, 0.04);
  backdrop-filter: blur(12px);
}

.platform-module-grid span {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  margin-bottom: clamp(12px, 1vw, 15px);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.platform-module-grid strong {
  display: block;
  color: rgba(255, 250, 240, 0.95);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 900;
  line-height: 1.18;
}

.platform-module-grid p {
  max-width: 340px;
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.46;
}

.platform-value-strip {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(20px, 2.5vw, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.12);
}

.platform-value-strip article {
  min-height: 132px;
  padding: clamp(13px, 1.15vw, 18px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.platform-value-strip .platform-value-vip {
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 195, 155, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(185, 120, 74, 0.18), rgba(111, 152, 164, 0.08)),
    rgba(255, 250, 240, 0.065);
}

.platform-value-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.platform-value-strip strong {
  display: block;
  max-width: 330px;
  margin-bottom: 9px;
  font-size: clamp(13.5px, 0.82vw, 16px);
  line-height: 1.16;
}

.owner-meeting-strip {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(30px, 4vw, 60px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.12);
}

.owner-meeting-strip article {
  min-height: 170px;
  padding: clamp(18px, 2vw, 28px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.owner-meeting-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.owner-meeting-strip strong {
  display: block;
  max-width: 330px;
  margin-bottom: 12px;
}

@media (max-width: 1120px) {
  .platform-hero-heading h2 {
    max-width: 860px;
    font-size: clamp(42px, 8vw, 76px);
  }

  .transparency-layout {
    grid-template-columns: 1fr;
  }

  .transparency-copy {
    display: block;
  }

  .transparency-copy > p {
    max-width: 820px;
  }

  .transparency-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .transparency-points article {
    height: auto;
    min-height: 102px;
    align-content: start;
  }

  .dashboard-frame-desktop {
    width: min(92%, 900px);
  }

  .dashboard-frame-mobile {
    right: 4%;
    width: clamp(142px, 22vw, 210px);
  }

  .platform-ai-card {
    width: min(420px, 50%);
  }

  .platform-roadmap {
    grid-template-columns: 1fr;
  }

  .platform-roadmap-intro h3,
  .platform-roadmap-intro > p:not(.section-kicker) {
    max-width: 760px;
  }

  .platform-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-value-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .transparency-section {
    padding-block: clamp(42px, 10vw, 64px);
  }

  .transparency-points,
  .owner-meeting-strip {
    grid-template-columns: 1fr;
  }

  .platform-value-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .platform-value-strip article {
    min-height: 148px;
    padding: 11px 9px;
  }

  .platform-value-strip span {
    margin-bottom: 8px;
    font-size: 8.5px;
  }

  .platform-value-strip strong {
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.14;
  }

  .platform-value-strip p {
    font-size: 10.5px;
    line-height: 1.34;
  }

  .transparency-points {
    grid-template-rows: none;
  }

  .transparency-points article {
    height: auto;
    min-height: 102px;
    align-content: start;
  }

  .transparency-points p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .platform-module-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase {
    min-height: auto;
    gap: 16px;
    padding-bottom: 0;
  }

  .dashboard-frame-desktop {
    width: 100%;
  }

  .dashboard-frame-mobile {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(58vw, 230px);
  }

  .platform-ai-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .platform-value-strip {
    grid-template-columns: 1fr;
  }

  .platform-value-strip article {
    min-height: 118px;
    padding: 16px;
  }

  .platform-value-strip span {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .platform-value-strip strong {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .platform-value-strip p {
    font-size: 12px;
    line-height: 1.38;
  }
}

/* Digital platform refresh: reference-driven mockup composition. */
.transparency-section {
  padding: clamp(34px, 4vw, 68px) clamp(22px, 6vw, 96px) clamp(44px, 5vw, 84px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.032) 1px, transparent 1px),
    linear-gradient(120deg, #050505 0%, #0a0908 42%, #11100e 100%);
  background-size: min(18vw, 240px) 100%, auto;
}

.transparency-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.03), rgba(255, 250, 240, 0)),
    linear-gradient(90deg, rgba(185, 120, 74, 0.08), rgba(255, 250, 240, 0.018) 44%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.platform-experience {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 0.66fr) minmax(620px, 1.34fr);
  gap: clamp(32px, 3.8vw, 72px);
  align-items: start;
}

.platform-copy-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  align-content: start;
  padding-top: clamp(4px, 0.4vw, 8px);
}

.platform-copy-panel .section-kicker {
  margin: 0 0 clamp(12px, 1.1vw, 18px);
  color: var(--copper);
}

.platform-copy-panel h2 {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 250, 240, 0.96);
  font-family: var(--display);
  font-size: clamp(44px, 4.25vw, 74px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.platform-copy-panel .platform-lead {
  max-width: 620px;
  margin: clamp(14px, 1.45vw, 22px) 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(15px, 1.02vw, 17.5px);
  font-weight: 600;
  line-height: 1.44;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: clamp(10px, 0.8vw, 14px);
  margin-top: clamp(24px, 2.35vw, 38px);
}

.platform-feature-grid article,
.platform-value-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 155, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.035)),
    rgba(18, 15, 12, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 250, 240, 0.05);
  backdrop-filter: blur(14px);
}

.platform-feature-grid article {
  min-height: clamp(136px, 7.4vw, 156px);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: clamp(12px, 0.95vw, 16px);
  align-items: start;
  padding: clamp(16px, 1.35vw, 24px);
}

.platform-feature-icon,
.platform-value-icon {
  display: inline-grid;
  place-items: center;
  color: #d69b63;
}

.platform-feature-icon {
  width: 32px;
  height: 32px;
  margin-top: 1px;
}

.platform-feature-icon svg,
.platform-value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-feature-grid strong,
.platform-value-strip strong {
  display: block;
  color: rgba(255, 250, 240, 0.95);
  font-family: var(--display);
  font-size: clamp(19px, 1.22vw, 24px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.platform-feature-grid p,
.platform-value-strip p {
  margin: 7px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: clamp(12.5px, 0.8vw, 13.75px);
  font-weight: 600;
  line-height: 1.38;
}

.platform-mockup-stage {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(106%, 1080px);
  margin: 0;
  margin-top: clamp(128px, 12vw, 220px);
  isolation: isolate;
  background: transparent;
}

.platform-mockup-stage::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 4%;
  bottom: 0;
  height: 19%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(30px);
  transform: skewX(-9deg);
}

.platform-devices-cutout {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  filter:
    drop-shadow(0 30px 56px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 22px rgba(216, 195, 155, 0.08));
}

.platform-value-strip {
  position: relative;
  z-index: 2;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: clamp(30px, 3vw, 52px) auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 0.95vw, 16px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.platform-value-strip article {
  min-height: clamp(116px, 6.2vw, 142px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: clamp(12px, 0.9vw, 16px);
  align-items: center;
  padding: clamp(16px, 1.25vw, 24px);
}

.platform-value-strip .platform-value-vip {
  background:
    linear-gradient(135deg, rgba(216, 195, 155, 0.13), rgba(185, 120, 74, 0.1)),
    rgba(18, 15, 12, 0.78);
}

.platform-value-strip .platform-value-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  color: #d69b63;
}

.platform-value-strip strong {
  max-width: none;
  margin: 0;
  font-size: clamp(16px, 1vw, 20px);
}

.platform-value-strip p {
  max-width: 270px;
  font-size: clamp(11.5px, 0.72vw, 13px);
}

@media (max-width: 1280px) {
  .platform-experience {
    grid-template-columns: minmax(380px, 0.72fr) minmax(470px, 1.28fr);
    gap: clamp(28px, 3.4vw, 48px);
  }

  .platform-copy-panel h2 {
    font-size: clamp(40px, 4.1vw, 60px);
  }

  .platform-feature-grid article {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 126px;
    padding: 15px;
  }

  .platform-mockup-stage {
    width: min(104%, 900px);
    margin-top: clamp(96px, 10vw, 132px);
  }
}

@media (max-width: 1040px) {
  .platform-experience {
    grid-template-columns: 1fr;
  }

  .platform-copy-panel h2,
  .platform-copy-panel .platform-lead {
    max-width: 860px;
  }

  .platform-mockup-stage {
    width: min(100%, 860px);
    justify-self: center;
    margin-top: clamp(28px, 5vw, 48px);
  }

  .platform-devices-cutout {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .platform-value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  main > section.transparency-section {
    padding-block: clamp(36px, 10vw, 56px);
  }

  .platform-copy-panel h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .platform-copy-panel .platform-lead {
    font-size: 14px;
  }

  .platform-feature-grid,
  .platform-value-strip {
    grid-template-columns: 1fr;
  }

  .platform-feature-grid article,
  .platform-value-strip article {
    min-height: 0;
  }

  .platform-mockup-stage {
    width: 100%;
    margin-inline: 0;
  }

  .platform-devices-cutout {
    width: 108%;
    margin-left: -6%;
    margin-right: -2%;
  }
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding-block: clamp(52px, 6vw, 92px);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 166, 104, 0.12), transparent 32%),
    linear-gradient(180deg, #17120e 0%, #100d0b 100%);
  border-top: 1px solid rgba(255, 250, 240, 0.08);
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  color: var(--white);
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
  background-size: min(18vw, 260px) 100%, auto;
  opacity: 0.5;
  pointer-events: none;
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.final-cta-copy h2 {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 250, 240, 0.96);
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.final-cta-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: clamp(16px, 1.8vw, 24px) 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 650;
  line-height: 1.5;
}

.final-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.final-checks article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px 16px;
  align-items: start;
  padding: clamp(16px, 1.65vw, 24px);
  background: rgba(255, 250, 240, 0.06);
}

.final-checks span {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  padding: 0;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  backdrop-filter: none;
}

.final-checks strong {
  display: block;
  color: rgba(255, 250, 240, 0.94);
  font-family: var(--sans);
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 900;
  line-height: 1.15;
}

.final-checks p {
  margin: 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.final-cta-note {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: clamp(18px, 2.2vw, 30px) 0 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  padding-top: clamp(14px, 1.5vw, 20px);
  color: rgba(255, 250, 240, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .final-cta-section {
    min-height: auto;
    align-items: start;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: clamp(20px, 6vw, 34px);
    align-items: start;
  }

  .final-cta-copy h2 {
    max-width: 680px;
    font-size: clamp(32px, 9vw, 50px);
  }
}

/* Keep the individual scenario desktop card on the same sizing rhythm as the other formats. */
@media (min-width: 1121px) {
  .private-scenario .lot-format-private {
    grid-template-columns: minmax(220px, 0.76fr) minmax(320px, 1fr) minmax(240px, 0.72fr);
    align-items: stretch;
    gap: clamp(18px, 3vw, 42px);
    min-height: clamp(260px, 17vw, 320px);
    padding: clamp(20px, 2.8vw, 38px);
  }

  .private-scenario .lot-format-private .lot-format-main,
  .private-scenario .lot-format-private .lot-breakdown {
    min-height: 100%;
  }

  .private-scenario .lot-format-private .lot-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    height: 100%;
  }

  .private-scenario .lot-format-private .lot-metrics div {
    min-height: 124px;
    height: 100%;
    padding: 16px;
  }

  .private-scenario .lot-format-private .lot-breakdown {
    align-content: center;
  }
}

/* Structure section: tighter hierarchy and denser information placement. */
#structure.structure-section {
  align-items: start;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 4vw, 70px);
  padding-top: clamp(54px, 5.2vw, 88px);
  padding-bottom: clamp(56px, 5.8vw, 96px);
}

.structure-copy {
  display: grid;
  align-content: start;
  gap: clamp(16px, 2vw, 26px);
}

.structure-copy .section-kicker {
  margin: 0 0 -4px;
}

.structure-copy h2 {
  max-width: 780px;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 0.98;
}

.structure-lead {
  max-width: 690px;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.structure-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.1);
}

.structure-points article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(16px, 1.45vw, 22px);
  background: rgba(255, 250, 240, 0.055);
}

.structure-points span,
.fund-summary span {
  color: rgba(226, 166, 104, 0.92);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.structure-points strong {
  color: rgba(255, 250, 240, 0.94);
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 900;
  line-height: 1.15;
}

.structure-points p {
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

#structure .fund-bars {
  align-self: start;
  gap: clamp(13px, 1.3vw, 18px);
  padding: clamp(18px, 2.1vw, 30px);
}

.fund-summary {
  display: grid;
  gap: 9px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  padding-bottom: clamp(14px, 1.4vw, 20px);
}

.fund-summary strong {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.94);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 900;
  line-height: 1.18;
}

#structure .fund-row {
  gap: 8px;
  font-size: 13px;
  line-height: 1.25;
}

#structure .fund-track {
  height: 10px;
}

/* Early-stage section: compact cards and balanced columns on tablet/mobile widths. */
#early-stage {
  padding-top: clamp(54px, 5.6vw, 92px);
  padding-bottom: clamp(54px, 5.8vw, 94px);
}

#early-stage .early-heading {
  margin-bottom: clamp(18px, 2.6vw, 34px);
  gap: clamp(20px, 4vw, 62px);
}

#early-stage .early-heading h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.98;
}

#early-stage .early-heading > p {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

#early-stage .early-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin-bottom: 0;
}

#early-stage .early-grid article {
  min-height: clamp(168px, 13vw, 220px);
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(16px, 1.5vw, 24px);
}

#early-stage .early-grid span {
  margin-bottom: 2px;
}

#early-stage .early-grid strong {
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.16;
}

#early-stage .early-grid p {
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  #structure.structure-section {
    grid-template-columns: 1fr;
  }

  .structure-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #early-stage .early-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #early-stage .early-grid article {
    min-height: 150px;
  }
}

@media (max-width: 720px) {
  #structure.structure-section {
    gap: 22px;
  }

  .structure-copy h2,
  #early-stage .early-heading h2 {
    font-size: clamp(34px, 8.4vw, 48px);
    line-height: 1;
  }

  .structure-points article {
    min-height: auto;
  }

  #early-stage .early-heading {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  #early-stage .early-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .structure-points {
    grid-template-columns: 1fr;
  }

  #early-stage .early-grid {
    grid-template-columns: 1fr;
  }
}

/* Alignment pass for structure and early-stage sections. */
#structure.structure-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 28px);
}

.structure-copy,
#structure .fund-bars {
  height: 100%;
  min-height: clamp(420px, 30vw, 520px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.07), rgba(255, 250, 240, 0.035));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.structure-copy {
  grid-template-rows: auto auto auto 1fr;
  padding: clamp(18px, 2.2vw, 32px);
}

.structure-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 62px);
}

.structure-lead {
  max-width: 620px;
  margin: 0;
  align-self: start;
}

.structure-points {
  align-self: end;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(8px, 1.2vw, 18px);
}

.structure-points article {
  min-height: clamp(116px, 8vw, 142px);
  padding: clamp(14px, 1.25vw, 18px);
}

.structure-points p {
  align-self: start;
  max-width: none;
  font-size: 12px;
  line-height: 1.35;
}

#structure .fund-bars {
  align-content: stretch;
  padding: clamp(18px, 2.2vw, 32px);
}

#structure .fund-row {
  align-content: center;
  min-height: 48px;
}

#structure .fund-row span {
  display: block;
}

#early-stage {
  padding-top: clamp(56px, 5vw, 84px);
  padding-bottom: clamp(56px, 5vw, 86px);
}

#early-stage .early-heading {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.44fr);
  align-items: end;
  margin-bottom: clamp(16px, 2vw, 28px);
}

#early-stage .early-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 60px);
}

#early-stage .early-heading > p {
  justify-self: end;
  max-width: 480px;
  margin-bottom: 2px;
}

#early-stage .early-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
}

#early-stage .early-grid article {
  min-height: clamp(178px, 12vw, 214px);
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 10px 14px;
}

#early-stage .early-grid span {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(226, 166, 104, 0.28);
  border-radius: 50%;
  background: rgba(226, 166, 104, 0.08);
  font-size: 11px;
}

#early-stage .early-grid strong,
#early-stage .early-grid p {
  min-width: 0;
}

#early-stage .early-grid strong {
  align-self: end;
}

#early-stage .early-grid p {
  align-self: start;
}

@media (min-width: 1121px) {
  #structure .fund-bars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(14px, 1.4vw, 22px);
    row-gap: clamp(12px, 1.1vw, 16px);
  }

  #structure .fund-summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  #structure.structure-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .structure-copy,
  #structure .fund-bars {
    min-height: auto;
  }

  #early-stage .early-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #early-stage .early-heading > p {
    justify-self: start;
    max-width: 680px;
  }

  #early-stage .early-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .structure-copy {
    gap: 14px;
  }

  .structure-points {
    gap: 1px;
  }

  .structure-points strong {
    font-size: 14px;
  }

  #early-stage .early-grid article {
    min-height: 142px;
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .structure-points,
  #early-stage .early-grid {
    grid-template-columns: 1fr;
  }

  #early-stage .early-grid article {
    min-height: auto;
  }
}

/* Early-stage final alignment: one left rail for heading and cards. */
#early-stage .early-heading,
#early-stage .early-grid {
  width: min(100%, var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin-inline: 0 auto;
}

#early-stage .early-heading {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(10px, 1vw, 14px);
  row-gap: clamp(14px, 1.8vw, 24px);
  align-items: end;
  min-height: 0;
}

#early-stage .early-heading > div {
  grid-column: 1 / span 2;
  width: 100%;
  max-width: none;
}

#early-stage .early-heading > p {
  grid-column: 3 / span 2;
  justify-self: stretch;
  align-self: end;
  width: 100%;
  max-width: 620px;
  margin: 0;
}

#early-stage .early-grid {
  align-items: stretch;
}

#early-stage .early-grid article {
  height: 100%;
}

@media (max-width: 1120px) {
  #early-stage .early-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #early-stage .early-heading > div,
  #early-stage .early-heading > p {
    grid-column: 1 / -1;
  }

  #early-stage .early-heading > p {
    max-width: 680px;
  }
}

@media (min-width: 641px) and (max-width: 1120px) {
  #early-stage .early-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    column-gap: clamp(14px, 2vw, 24px);
    align-items: start;
  }

  #early-stage .early-heading > div {
    grid-column: 1;
  }

  #early-stage .early-heading > p {
    grid-column: 2;
    align-self: start;
    justify-self: stretch;
    max-width: 100%;
    padding-top: clamp(28px, 5.4vw, 46px);
  }
}

@media (min-width: 981px) {
  #early-stage .early-heading {
    margin-bottom: clamp(18px, 2vw, 28px);
  }
}

@media (max-width: 760px) {
  #early-stage .early-heading {
    grid-template-columns: 1fr;
  }
}

/* Drawer keeps scroll behavior, but without the visible right scrollbar. */
.application-drawer {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.application-drawer::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Compact application drawer: floating card, denser content, no full-screen feel. */
.application-drawer {
  overscroll-behavior: contain;
}

@media (max-width: 1040px) {
  .application-drawer {
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
    width: min(680px, calc(100vw - 32px));
    max-height: min(720px, calc(100svh - 150px));
    gap: 8px;
    padding: 22px 20px 18px;
    border-radius: 18px;
  }

  .drawer-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .drawer-kicker {
    margin-bottom: 2px;
    font-size: 9px;
  }

  .application-drawer h2 {
    max-width: 100%;
    padding-right: 48px;
    font-size: clamp(34px, 6.8vw, 48px);
    line-height: 0.96;
  }

  .drawer-copy {
    max-width: 40rem;
    margin: 2px 0 10px;
    font-size: 14px;
    line-height: 1.42;
  }

  .drawer-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .drawer-form label,
  .lot-choice legend {
    font-size: 11px;
  }

  .drawer-form input,
  .drawer-form select,
  .drawer-form textarea {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 14px;
  }

  .lot-choice-grid {
    --lot-button-height: 52px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lot-choice span {
    padding: 9px 11px;
    font-size: 12px;
  }

  .drawer-form textarea {
    min-height: 58px;
  }

  .drawer-check {
    gap: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .drawer-submit {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .application-drawer {
    left: 50%;
    bottom: max(88px, calc(env(safe-area-inset-bottom) + 88px));
    width: min(620px, calc(100vw - 28px));
    max-height: min(690px, calc(100svh - 140px));
    padding: 20px 16px 16px;
    border-radius: 18px;
    transform: translate3d(-50%, 42px, 0) scale(0.985);
  }

  body.application-open .application-drawer {
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@media (max-width: 520px) {
  .application-drawer {
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 82px));
    width: min(440px, calc(100vw - 20px));
    max-height: min(660px, calc(100svh - 126px));
  }

  .drawer-form,
  .lot-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* Final compact drawer composition: small floating application card. */
@media (max-width: 1040px) {
  .application-drawer {
    left: 50%;
    bottom: max(104px, calc(env(safe-area-inset-bottom) + 104px));
    width: min(560px, calc(100vw - 96px));
    max-height: min(610px, calc(100svh - 230px));
    display: block;
    padding: 18px;
    border-radius: 16px;
    transform: translate3d(-50%, 34px, 0) scale(0.985);
  }

  body.application-open .application-drawer {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .drawer-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .drawer-kicker {
    margin: 0 0 4px;
    font-size: 9px;
    line-height: 1;
  }

  .application-drawer h2 {
    max-width: 100%;
    margin: 0;
    padding-right: 42px;
    font-size: clamp(30px, 5vw, 38px);
    line-height: 0.96;
  }

  .drawer-copy {
    max-width: 31rem;
    margin: 8px 0 12px;
    font-size: 13px;
    line-height: 1.38;
  }

  .drawer-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .drawer-form label,
  .lot-choice legend {
    font-size: 10.5px;
    line-height: 1.15;
  }

  .drawer-form input,
  .drawer-form select,
  .drawer-form textarea {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .lot-choice legend {
    margin-bottom: 6px;
  }

  .lot-choice-grid {
    --lot-button-height: 44px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .lot-choice span {
    padding: 7px 9px;
    gap: 2px;
    font-size: 11.5px;
  }

  .lot-choice small {
    font-size: 10px;
  }

  .drawer-form textarea {
    min-height: 46px;
    max-height: 68px;
    resize: vertical;
  }

  .drawer-check {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 7px;
    font-size: 11.5px;
    line-height: 1.3;
  }

  .drawer-check input {
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .drawer-submit {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .application-drawer .form-status {
    min-height: 14px;
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .application-drawer {
    width: min(540px, calc(100vw - 72px));
    max-height: min(600px, calc(100svh - 220px));
  }
}

@media (max-width: 560px) {
  .application-drawer {
    width: min(420px, calc(100vw - 24px));
    max-height: min(620px, calc(100svh - 132px));
    padding: 16px;
  }

  .drawer-form,
  .lot-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual scenario width lock: match the regular lot cards exactly. */
.private-scenario {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
}

.private-scenario .lot-format-private {
  width: 100%;
  min-height: auto;
}

.private-scenario .lot-format-private .lot-format-main > strong {
  font-size: clamp(30px, 2.9vw, 48px);
  line-height: 1.02;
}

@media (min-width: 1121px) {
  .private-scenario .lot-format-private {
    min-height: auto;
  }
}

/* Premium scenario navigator: a warm guided-selling bridge into the application flow. */
#scenario-lab.scenario-lab-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 7vw, 118px);
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.035) 0 1px, transparent 1px 12.5%),
    linear-gradient(180deg, #f7f0e3 0%, var(--paper) 56%, #e9dfd0 100%);
  border-top: 1px solid rgba(21, 17, 13, 0.1);
  border-bottom: 1px solid rgba(21, 17, 13, 0.1);
  color: var(--ink);
  isolation: isolate;
}

#scenario-lab.scenario-lab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(185, 120, 74, 0.11), transparent 34%, rgba(95, 123, 93, 0.08) 68%, transparent),
    repeating-linear-gradient(0deg, rgba(21, 17, 13, 0.026) 0 1px, transparent 1px 46px);
  opacity: 0.72;
  pointer-events: none;
}

.scenario-lab-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(36px, 7vw, 128px)), var(--premium-section-max, 1680px));
  max-width: var(--premium-section-max, 1680px);
  margin: 0 auto;
}

.scenario-lab-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.54fr);
  gap: clamp(22px, 5vw, 86px);
  align-items: end;
  margin-bottom: clamp(22px, 3.2vw, 44px);
}

#scenario-lab .scenario-lab-heading h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 78px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

#scenario-lab .section-kicker {
  color: var(--copper);
}

.scenario-lab-heading > p {
  max-width: 520px;
  margin: 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.52;
}

.scenario-lab-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.66fr) minmax(620px, 1fr);
  gap: clamp(18px, 2.5vw, 38px);
  align-items: stretch;
}

.scenario-controls {
  display: grid;
  gap: 14px;
  align-content: start;
}

.scenario-choice {
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 1.4vw, 22px);
  border: 1px solid rgba(21, 17, 13, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.7);
}

.scenario-choice legend {
  margin: 0 0 8px;
  padding: 0;
  color: rgba(21, 17, 13, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.scenario-choice-hint {
  max-width: 520px;
  margin: 0 0 14px;
  color: rgba(21, 17, 13, 0.58);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
}

.scenario-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.scenario-choice button {
  position: relative;
  width: 100%;
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 7px;
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 8px;
  padding: 13px 13px 13px 38px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.78);
  cursor: pointer;
  text-align: left;
  transition:
    transform 220ms var(--ease-soft),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.scenario-choice button::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(21, 17, 13, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scenario-choice button span {
  display: block;
  font-size: clamp(12.5px, 0.86vw, 14px);
  font-weight: 700;
  line-height: 1.18;
}

.scenario-choice button small {
  display: block;
  color: rgba(21, 17, 13, 0.58);
  font-size: clamp(11px, 0.72vw, 12px);
  font-weight: 500;
  line-height: 1.34;
}

.scenario-choice button:hover,
.scenario-choice button:focus-visible {
  border-color: rgba(185, 120, 74, 0.42);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(21, 17, 13, 0.08), inset 0 1px 0 rgba(255, 250, 240, 0.9);
}

.scenario-choice button:focus-visible,
.scenario-cta:focus-visible {
  outline: 2px solid rgba(185, 120, 74, 0.72);
  outline-offset: 3px;
}

.scenario-choice button[aria-pressed="true"] {
  border-color: rgba(185, 120, 74, 0.58);
  background: #fffaf0;
  box-shadow:
    0 18px 42px rgba(185, 120, 74, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.scenario-choice button[aria-pressed="true"]::before {
  border-color: var(--copper);
  background: var(--copper);
  box-shadow: inset 0 0 0 3px #fffaf0;
}

.scenario-result {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  grid-template-areas:
    "visual head"
    "visual panel"
    "cards cards"
    "questions cta";
  gap: clamp(15px, 1.6vw, 22px);
  align-items: stretch;
  padding: clamp(18px, 1.9vw, 28px);
  border: 1px solid rgba(21, 17, 13, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.72)),
    rgba(255, 250, 240, 0.86);
  box-shadow: 0 28px 90px rgba(80, 57, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.scenario-visual {
  grid-area: visual;
  position: relative;
  min-height: 100%;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(21, 17, 13, 0.08);
}

.scenario-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 32vw, 560px);
  object-fit: cover;
  filter: saturate(0.98) contrast(0.98) brightness(1.02);
  transition: opacity 220ms ease, transform 700ms var(--ease-soft);
}

.scenario-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(21, 17, 13, 0.68));
  pointer-events: none;
}

.scenario-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 600;
  line-height: 1.42;
}

.scenario-result-head {
  grid-area: head;
  min-width: 0;
  align-self: start;
}

.scenario-result-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border: 1px solid rgba(185, 120, 74, 0.32);
  border-radius: 999px;
  background: rgba(185, 120, 74, 0.08);
  color: #7a4e2d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.scenario-result-head h3 {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.scenario-result-head p {
  max-width: 710px;
  margin: 13px 0 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.52;
}

.scenario-format-panel {
  grid-area: panel;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 1px;
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(21, 17, 13, 0.1);
}

.scenario-format-main,
.scenario-format-side {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: clamp(15px, 1.2vw, 20px);
  background: rgba(244, 239, 228, 0.92);
}

.scenario-format-main {
  background: linear-gradient(180deg, #fffaf0, rgba(244, 239, 228, 0.98));
}

.scenario-format-panel span,
.scenario-card span,
.scenario-questions span {
  color: rgba(21, 17, 13, 0.56);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.scenario-format-panel strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(31px, 2.2vw, 42px);
  font-weight: 600;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.scenario-format-panel p {
  margin: 0;
  color: rgba(21, 17, 13, 0.64);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  line-height: 1.4;
}

.scenario-card-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scenario-card {
  min-height: 132px;
  padding: clamp(14px, 1vw, 18px);
  border: 1px solid rgba(21, 17, 13, 0.11);
  border-radius: 8px;
  background: rgba(244, 239, 228, 0.64);
}

.scenario-card p {
  margin: 10px 0 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(12px, 0.82vw, 13px);
  font-weight: 500;
  line-height: 1.42;
}

.scenario-questions {
  grid-area: questions;
  align-self: stretch;
  min-height: 76px;
  display: grid;
  align-content: center;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: rgba(95, 123, 93, 0.08);
}

.scenario-questions p {
  margin: 8px 0 0;
  color: rgba(21, 17, 13, 0.7);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  line-height: 1.42;
}

.scenario-cta {
  grid-area: cta;
  align-self: center;
  justify-self: end;
  width: fit-content;
  min-height: 48px;
  padding-inline: 22px;
}

.scenario-result [data-scenario-title],
.scenario-result [data-scenario-copy],
.scenario-result [data-scenario-tag],
.scenario-result [data-scenario-card],
.scenario-result [data-scenario-emotion],
.scenario-result [data-scenario-format],
.scenario-result [data-scenario-format-meta],
.scenario-result [data-scenario-adjacent],
.scenario-result [data-scenario-adjacent-meta],
.scenario-result [data-scenario-questions],
.scenario-result [data-scenario-image] {
  transition: opacity 180ms ease, transform 220ms var(--ease-soft);
}

.scenario-lab-grid.is-changing [data-scenario-title],
.scenario-lab-grid.is-changing [data-scenario-copy],
.scenario-lab-grid.is-changing [data-scenario-tag],
.scenario-lab-grid.is-changing [data-scenario-card],
.scenario-lab-grid.is-changing [data-scenario-emotion],
.scenario-lab-grid.is-changing [data-scenario-format],
.scenario-lab-grid.is-changing [data-scenario-format-meta],
.scenario-lab-grid.is-changing [data-scenario-adjacent],
.scenario-lab-grid.is-changing [data-scenario-adjacent-meta],
.scenario-lab-grid.is-changing [data-scenario-questions],
.scenario-lab-grid.is-changing [data-scenario-image] {
  opacity: 0;
  transform: translateY(7px);
}

[data-reveal] .scenario-choice,
[data-reveal] .scenario-result,
[data-reveal] .scenario-card,
[data-reveal] .scenario-visual,
[data-reveal] .scenario-format-panel,
[data-reveal] .scenario-questions {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible .scenario-choice,
[data-reveal].is-visible .scenario-result,
[data-reveal].is-visible .scenario-card,
[data-reveal].is-visible .scenario-visual,
[data-reveal].is-visible .scenario-format-panel,
[data-reveal].is-visible .scenario-questions {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .scenario-choice:nth-child(2),
[data-reveal].is-visible .scenario-card:nth-child(2) {
  transition-delay: 80ms;
}

[data-reveal].is-visible .scenario-choice:nth-child(3),
[data-reveal].is-visible .scenario-card:nth-child(3) {
  transition-delay: 150ms;
}

@media (max-width: 1240px) {
  .scenario-lab-grid {
    grid-template-columns: 1fr;
  }

  .scenario-result {
    grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .scenario-lab-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #scenario-lab .scenario-lab-heading h2 {
    font-size: clamp(38px, 9vw, 68px);
  }

  .scenario-result {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "head"
      "panel"
      "cards"
      "questions"
      "cta";
  }

  .scenario-visual img {
    min-height: min(520px, 58vw);
  }
}

@media (max-width: 620px) {
  #scenario-lab.scenario-lab-section {
    padding-block: 50px 64px;
  }

  .scenario-lab-shell {
    width: min(calc(100% - 32px), var(--premium-section-max, 1680px));
  }

  .scenario-choice-list,
  .scenario-choice-rhythm .scenario-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-choice button {
    min-height: 78px;
  }

  .scenario-result {
    padding: 15px;
  }

  .scenario-visual img {
    min-height: 300px;
  }

  .scenario-format-panel,
  .scenario-card-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    min-height: auto;
  }

  .scenario-cta {
    width: 100%;
    justify-content: center;
    justify-self: stretch;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .scenario-choice button {
    padding: 12px 12px 12px 36px;
  }

  .scenario-result-head h3 {
    font-size: 30px;
  }
}

@media (max-width: 360px) {
  .scenario-choice-list,
  .scenario-choice-rhythm .scenario-choice-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scenario-lab-grid.is-changing [data-scenario-title],
  .scenario-lab-grid.is-changing [data-scenario-copy],
  .scenario-lab-grid.is-changing [data-scenario-tag],
  .scenario-lab-grid.is-changing [data-scenario-card],
  .scenario-lab-grid.is-changing [data-scenario-emotion],
  .scenario-lab-grid.is-changing [data-scenario-format],
  .scenario-lab-grid.is-changing [data-scenario-format-meta],
  .scenario-lab-grid.is-changing [data-scenario-adjacent],
  .scenario-lab-grid.is-changing [data-scenario-adjacent-meta],
  .scenario-lab-grid.is-changing [data-scenario-questions],
  .scenario-lab-grid.is-changing [data-scenario-image] {
    opacity: 1;
    transform: none;
  }
}

/* Criteria sections: light editorial screens for "boundaries" and "self-check". */
main > section.criteria-section {
  min-height: auto;
  padding-top: clamp(96px, 8.5vw, 138px);
  padding-bottom: clamp(86px, 8vw, 124px);
  background:
    radial-gradient(ellipse at 16% 28%, rgba(255, 250, 240, 0.88), transparent 34%),
    radial-gradient(ellipse at 86% 78%, rgba(216, 195, 155, 0.2), transparent 38%),
    linear-gradient(180deg, #f2eee6 0%, #eee7dc 100%);
  color: var(--ink);
}

main > section.criteria-section + section.criteria-section {
  padding-top: clamp(86px, 8vw, 122px);
}

main > section.criteria-section > .criteria-heading {
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: 0 auto clamp(48px, 5.2vw, 78px);
  display: block;
}

main > section.criteria-section > .criteria-heading > div {
  width: min(100%, 880px);
}

main > section.criteria-section > .criteria-heading h2 {
  max-width: 940px;
  margin-top: clamp(14px, 1.6vw, 22px);
  color: var(--ink);
  font-size: clamp(48px, 5.7vw, 92px);
  line-height: 1.03;
}

main > section.criteria-section > .criteria-heading > p {
  width: min(100%, 720px);
  max-width: 720px;
  margin: clamp(20px, 2vw, 28px) 0 0;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(17px, 1.28vw, 21px);
  font-weight: 650;
  line-height: 1.55;
}

main > section.criteria-section .section-kicker {
  color: rgba(137, 83, 47, 0.9);
  letter-spacing: 0.18em;
}

.criteria-grid {
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px);
}

.criteria-card {
  min-height: clamp(290px, 25vw, 360px);
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.52)),
    rgba(255, 250, 240, 0.5);
  box-shadow:
    0 26px 76px rgba(21, 17, 13, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.criteria-card-negative {
  background:
    linear-gradient(180deg, rgba(226, 216, 199, 0.9), rgba(222, 211, 193, 0.76)),
    rgba(216, 195, 155, 0.3);
}

.criteria-card h3 {
  margin: 0 0 clamp(18px, 2vw, 26px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(24px, 1.8vw, 31px);
  font-weight: 860;
  line-height: 1.12;
}

.criteria-list {
  display: grid;
  gap: clamp(12px, 1.25vw, 17px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.criteria-list li {
  position: relative;
  min-height: 26px;
  padding-left: 38px;
  color: rgba(21, 17, 13, 0.68);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 690;
  line-height: 1.45;
}

.criteria-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.82), transparent 58%),
    rgba(216, 195, 155, 0.34);
  color: rgba(23, 49, 42, 0.9);
  font-size: 14px;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(21, 17, 13, 0.06),
    0 3px 10px rgba(21, 17, 13, 0.06);
}

.criteria-list-muted li::before {
  content: "–";
  color: rgba(88, 67, 47, 0.82);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.48), transparent 58%),
    rgba(202, 182, 150, 0.36);
}

.criteria-note {
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: clamp(28px, 3vw, 42px) auto 0;
  color: rgba(21, 17, 13, 0.66);
  font-size: clamp(15px, 1.04vw, 18px);
  font-weight: 680;
  line-height: 1.5;
}

main > section.criteria-section .document-strip {
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: clamp(34px, 3.4vw, 48px) auto 0;
}

@media (max-width: 900px) {
  main > section.criteria-section {
    padding-top: clamp(74px, 16vw, 96px);
    padding-bottom: clamp(70px, 15vw, 92px);
  }

  main > section.criteria-section > .criteria-heading {
    margin-bottom: clamp(30px, 8vw, 44px);
  }

  main > section.criteria-section > .criteria-heading h2 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .criteria-card {
    min-height: 0;
    padding: clamp(24px, 7vw, 34px);
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  main > section.criteria-section > .criteria-heading h2 {
    font-size: clamp(38px, 13vw, 52px);
  }

  main > section.criteria-section > .criteria-heading > p {
    font-size: 16px;
  }

  .criteria-list li {
    padding-left: 34px;
    font-size: 15px;
  }

  .criteria-list li::before {
    width: 22px;
    height: 22px;
  }
}

/* Last-mile map fix: keep zone 2 opening upward, but lower its marker into the map. */
.renovation-map.territory-map .zone-vip {
  top: max(21.5%, 166px) !important;
}

.renovation-map.territory-map .zone-vip .map-tooltip {
  top: auto !important;
  bottom: calc(var(--map-label-height) / 2 + 18px) !important;
  left: 0 !important;
  right: auto !important;
  width: min(236px, calc(100vw - 56px)) !important;
  min-height: 194px !important;
  height: 194px !important;
  transform: translate(-42%, 14px) scale(0.985) !important;
  transform-origin: 50% 100% !important;
}

.renovation-map.territory-map .zone-vip:hover .map-tooltip,
.renovation-map.territory-map .zone-vip:focus .map-tooltip,
.renovation-map.territory-map .zone-vip:focus-visible .map-tooltip {
  transform: translate(-42%, 0) scale(1) !important;
}

@media (max-width: 620px) {
  .renovation-map.territory-map .zone-vip {
    top: max(29%, 122px) !important;
  }

  .renovation-map.territory-map .zone-vip .map-tooltip {
    top: auto !important;
    bottom: calc(var(--map-label-height) / 2 + 14px) !important;
    width: min(176px, calc(100vw - 44px)) !important;
    min-height: 142px !important;
    height: 142px !important;
    transform: translate(-38%, 12px) scale(0.985) !important;
  }

  .renovation-map.territory-map .zone-vip:hover .map-tooltip,
  .renovation-map.territory-map .zone-vip:focus .map-tooltip,
  .renovation-map.territory-map .zone-vip:focus-visible .map-tooltip {
    transform: translate(-38%, 0) scale(1) !important;
  }
}

/* Unified section heading system: one rhythm for titles, labels and right-side copy. */
:root {
  --site-section-heading-max: var(--premium-section-max, 1680px);
  --site-section-title-size: 76px;
  --site-section-title-line: 1;
  --site-section-title-max: 1040px;
  --site-section-copy-size: 18px;
  --site-section-copy-width: 540px;
  --site-section-heading-gap: clamp(36px, 4vw, 64px);
  --site-section-column-gap: clamp(56px, 7vw, 132px);
  --site-section-kicker-gap: 18px;
}

main > section:not(.hero-section) > .section-heading,
main > section#lots > .lots-intro,
main > section#location .altai-photo-copy.section-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, var(--site-section-copy-width));
  column-gap: var(--site-section-column-gap);
  row-gap: 0;
  align-items: end;
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
  min-height: 0;
  margin-inline: auto;
  margin-bottom: var(--site-section-heading-gap);
  text-align: left;
}

main > section:not(.hero-section) > .section-heading > div,
main > section#lots > .lots-intro > .section-kicker,
main > section#lots > .lots-intro > h2,
main > section#location .altai-photo-copy.section-header-grid > .section-kicker,
main > section#location .altai-photo-copy.section-header-grid > h2 {
  grid-column: 1;
  min-width: 0;
  width: min(100%, var(--site-section-title-max));
  max-width: var(--site-section-title-max);
}

main > section#lots > .lots-intro > .section-kicker,
main > section#location .altai-photo-copy.section-header-grid > .section-kicker {
  grid-row: 1;
}

main > section#lots > .lots-intro > h2,
main > section#location .altai-photo-copy.section-header-grid > h2 {
  grid-row: 2;
}

main > section:not(.hero-section) > .section-heading > p,
main > section#lots > .lots-intro > p:last-child,
main > section#location .altai-photo-copy.section-header-grid > .location-copy-stack {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: stretch;
  width: 100%;
  max-width: var(--site-section-copy-width);
  margin: 0;
  padding: 0;
  text-align: left;
}

.section-kicker,
main > section.criteria-section .section-kicker,
main > section#lots > .lots-intro .section-kicker,
main > section#location .altai-photo-copy.section-header-grid .section-kicker {
  margin: 0 0 var(--site-section-kicker-gap);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

main > section:not(.hero-section) > .section-heading h2,
main > section#lots > .lots-intro h2,
main > section#location .altai-photo-copy.section-header-grid h2,
.platform-copy-panel h2,
.final-cta-copy h2 {
  width: min(100%, var(--site-section-title-max));
  max-width: var(--site-section-title-max);
  margin: 0;
  font-family: var(--display);
  font-size: var(--site-section-title-size);
  font-weight: 600;
  line-height: var(--site-section-title-line);
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

main > section.criteria-section > .criteria-heading h2,
#before-after .section-heading.section-header-grid h2,
.map-section .section-heading.section-header-grid h2,
.faq-section .section-heading.section-header-grid h2,
.altai-views-page .altai-photo-copy.section-header-grid h2 {
  font-size: var(--site-section-title-size);
  line-height: var(--site-section-title-line);
  letter-spacing: 0;
}

main > section:not(.hero-section) > .section-heading > p,
.section-description,
main > section#lots > .lots-intro > p:last-child,
main > section#location .altai-photo-copy.section-header-grid .section-description,
.platform-lead,
.final-cta-copy p:not(.section-kicker) {
  font-family: var(--sans);
  font-size: var(--site-section-copy-size);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0;
  text-align: left;
  text-wrap: pretty;
}

main > section#location .altai-photo-copy.section-header-grid .location-copy-stack {
  display: grid;
  gap: 18px;
}

main > section#location .altai-photo-copy.section-header-grid .location-copy-stack .section-description,
.final-cta-copy p:not(.section-kicker),
.platform-lead {
  width: min(100%, var(--site-section-copy-width));
  max-width: var(--site-section-copy-width);
  margin: 0;
}

main > section.criteria-section > .criteria-heading,
main > section.criteria-section .criteria-grid,
main > section.criteria-section .criteria-note,
main > section.criteria-section .document-strip {
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
}

.transparency-section .platform-experience,
.final-cta-layout {
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
}

@media (max-width: 1180px) {
  :root {
    --site-section-title-size: 62px;
    --site-section-title-max: 820px;
    --site-section-copy-size: 17px;
    --site-section-copy-width: 500px;
    --site-section-column-gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --site-section-title-size: 50px;
    --site-section-title-max: 720px;
    --site-section-copy-size: 16px;
    --site-section-heading-gap: 32px;
  }

  main > section:not(.hero-section) > .section-heading,
  main > section#lots > .lots-intro,
  main > section#location .altai-photo-copy.section-header-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
    align-items: start;
  }

  main > section:not(.hero-section) > .section-heading > p,
  main > section#lots > .lots-intro > p:last-child,
  main > section#location .altai-photo-copy.section-header-grid > .location-copy-stack {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    max-width: 38rem;
  }

  main > section#lots > .lots-intro > h2,
  main > section#location .altai-photo-copy.section-header-grid > h2 {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --site-section-title-size: 38px;
    --site-section-copy-size: 16px;
    --site-section-heading-gap: 28px;
    --site-section-kicker-gap: 12px;
  }

  main > section:not(.hero-section) > .section-heading,
  main > section#lots > .lots-intro,
  main > section#location .altai-photo-copy.section-header-grid {
    width: 100%;
    margin-bottom: var(--site-section-heading-gap);
  }
}

/* First screen refresh: full-photo editorial hero inspired by the supplied reference. */
.hero-section.altai-landing-hero,
.motion-gsap .hero-section.altai-landing-hero {
  min-height: 100svh;
  display: grid;
  align-items: start;
}

.altai-landing-hero .hero-photo {
  object-position: 50% 69%;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transform: scale(1.012);
}

.altai-landing-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.78) 0%, rgba(3, 7, 8, 0.42) 39%, rgba(3, 7, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 5, 5, 0.55) 0%, rgba(3, 5, 5, 0.08) 34%, rgba(3, 5, 5, 0.7) 100%),
    radial-gradient(ellipse at 32% 47%, rgba(255, 250, 240, 0.12), transparent 36%);
}

.altai-landing-hero .hero-content {
  width: min(1280px, calc(100% - clamp(40px, 11.5vw, 208px)));
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  column-gap: clamp(46px, 7vw, 112px);
  row-gap: clamp(20px, 3vh, 32px);
  margin-inline: clamp(22px, 5.6vw, 104px) auto;
  padding-top: clamp(96px, 11vh, 124px);
  padding-bottom: clamp(176px, 21vh, 240px);
}

.altai-landing-hero h1 {
  grid-column: 1 / -1;
  max-width: 1080px;
  font-size: clamp(54px, 5.85vw, 104px);
  line-height: 0.94;
  text-wrap: balance;
}

.altai-landing-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.altai-landing-hero h1 > span > span {
  display: inline;
  white-space: normal;
}

.altai-landing-hero h1 > span > span + span::before {
  content: " ";
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  grid-column: 1;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 240, 0.91);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800;
  line-height: 1.44;
}

.altai-landing-hero .hero-actions {
  display: none;
}

.altai-landing-hero .hero-availability {
  grid-column: 2;
  align-self: end;
  justify-self: end;
  flex-direction: column;
  align-items: stretch;
  min-width: min(100%, 260px);
  max-width: 290px;
  margin: 0 0 4px;
  gap: 8px;
}

.altai-landing-hero .hero-availability span {
  min-height: 35px;
  justify-content: center;
  padding: 9px 14px;
  border-color: rgba(255, 250, 240, 0.28);
  background: rgba(255, 250, 240, 0.15);
  color: rgba(255, 250, 240, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.16);
  font-size: 11px;
}

.altai-landing-hero .hero-bottom {
  left: clamp(22px, 5.6vw, 104px);
  right: clamp(22px, 5.6vw, 104px);
  bottom: clamp(52px, 6.6vh, 76px);
  grid-template-columns: minmax(320px, 680px) minmax(520px, 660px);
  gap: clamp(28px, 5vw, 78px);
}

.altai-landing-hero .hero-note {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 750;
  line-height: 1.45;
}

.altai-landing-hero .hero-facts {
  max-width: 620px;
  justify-self: end;
}

.altai-landing-hero .hero-facts div {
  padding-inline: clamp(18px, 2vw, 30px);
}

.altai-landing-hero .hero-facts strong {
  color: #fff;
  font-size: clamp(23px, 1.9vw, 30px);
  font-weight: 950;
  line-height: 1;
}

.altai-landing-hero .hero-facts span {
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .altai-landing-hero h1 {
    font-size: clamp(52px, 6.8vw, 82px);
  }
}

@media (max-width: 980px) {
  .altai-landing-hero .hero-content {
    width: min(760px, calc(100% - 40px));
    display: block;
    margin-inline: 20px;
    padding-top: 88px;
    padding-bottom: 136px;
  }

  .altai-landing-hero h1 {
    font-size: clamp(48px, 9vw, 72px);
  }

  .altai-landing-hero h1 > span {
    white-space: normal;
  }

  .altai-landing-hero .hero-bottom {
    display: block;
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .altai-landing-hero .hero-note {
    max-width: 560px;
  }

  .altai-landing-hero .hero-availability {
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 620px) {
  .altai-landing-hero .hero-photo {
    object-position: 58% 70%;
    filter: saturate(0.94) contrast(1.08) brightness(0.7);
  }

  .altai-landing-hero .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 7, 8, 0.82) 0%, rgba(3, 7, 8, 0.48) 56%, rgba(3, 7, 8, 0.28) 100%),
      linear-gradient(180deg, rgba(3, 5, 5, 0.68) 0%, rgba(3, 5, 5, 0.2) 38%, rgba(3, 5, 5, 0.76) 100%);
  }

  .altai-landing-hero .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: clamp(94px, 13vh, 108px);
    padding-bottom: 28px;
  }

  .altai-landing-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 0.95;
    text-wrap: auto;
  }

  .altai-landing-hero h1 > span {
    display: block;
    white-space: normal;
  }

  .altai-landing-hero h1 > span > span {
    display: block;
  }

  .altai-landing-hero h1 > span > span + span::before {
    content: none;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    max-width: 32rem;
    margin-top: 16px;
    font-size: 13.4px;
    line-height: 1.34;
  }

  .altai-landing-hero .hero-availability {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
  }

  .altai-landing-hero .hero-availability span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 9.5px;
  }

  .altai-landing-hero .hero-bottom {
    display: none;
  }
}

@media (max-width: 620px) and (max-height: 780px) {
  .altai-landing-hero .hero-kicker {
    margin-bottom: 14px;
    font-size: 11.5px;
  }

  .altai-landing-hero h1 {
    font-size: 38px;
    line-height: 0.94;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.28;
  }

  .altai-landing-hero .hero-actions {
    margin-top: 16px;
  }

  .altai-landing-hero .hero-actions .button {
    min-height: 52px;
  }

  .altai-landing-hero .hero-availability {
    margin-top: 10px;
    gap: 6px;
  }

  .altai-landing-hero .hero-availability span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 10.2px;
  }
}

/* Final lock: before/after must stay as three static split cards. */
main > section#before-after {
  padding-top: clamp(64px, 5.4vw, 96px);
  padding-bottom: clamp(76px, 6.4vw, 112px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.025), rgba(255, 250, 240, 0) 34%),
    #17120e;
}

main > section#before-after .before-after-context,
main > section#before-after .comparison-grid {
  width: min(100%, 1540px);
  max-width: 1540px;
}

main > section#before-after .before-after-context {
  margin: 0 auto clamp(18px, 1.8vw, 26px);
}

main > section#before-after .before-after-context > p {
  width: min(100%, 620px) !important;
  max-width: min(100%, 620px) !important;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 650;
  line-height: 1.52;
}

main > section#before-after .comparison-toolbar,
main > section#before-after .comparison-copy,
main > section#before-after .early-grid {
  display: none;
}

main > section#before-after .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 22px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  min-width: 0;
  display: block;
  flex: initial;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section#before-after .comparison-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: clamp(330px, 27vw, 470px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 250, 240, 0.05);
  isolation: isolate;
}

main > section#before-after .comparison-title {
  top: clamp(12px, 1vw, 16px);
  left: clamp(12px, 1vw, 16px);
  min-height: 29px;
  display: inline-flex !important;
  max-width: min(260px, calc(100% - 24px));
  padding: 7px 11px;
  background: rgba(21, 17, 13, 0.44);
  font-size: 10.5px;
  font-weight: 850;
}

main > section#before-after .compare-layer {
  align-content: end;
  padding: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-layer::before {
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
  transform: scale(1.001);
}

main > section#before-after .compare-layer span {
  position: absolute;
  bottom: clamp(12px, 1vw, 16px);
  min-height: 27px;
  padding: 7px 10px;
  font-size: 10px;
}

main > section#before-after .compare-before span {
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-after span {
  right: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-layer span {
  display: none !important;
}

main > section#before-after .comparison-frame::before,
main > section#before-after .comparison-frame::after {
  position: absolute;
  z-index: 5;
  bottom: clamp(12px, 1vw, 16px);
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 17, 13, 0.46);
  color: rgba(255, 250, 240, 0.9);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

main > section#before-after .comparison-frame::before {
  content: "До";
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .comparison-frame::after {
  content: "После";
  inset: auto clamp(12px, 1vw, 16px) clamp(12px, 1vw, 16px) auto;
  width: auto;
  height: auto;
  box-shadow: none;
}

main > section#before-after .split-line {
  z-index: 4;
  width: 1px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 0 0 1px rgba(21, 17, 13, 0.18), 0 0 28px rgba(0, 0, 0, 0.32);
}

main > section#before-after .split-line::after {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 250, 240, 0.78);
  background:
    linear-gradient(90deg, transparent 9px, rgba(255, 250, 240, 0.95) 9px 10px, transparent 10px 15px, rgba(255, 250, 240, 0.95) 15px 16px, transparent 16px),
    rgba(21, 17, 13, 0.54);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

main > section#before-after .comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

main > section#before-after .compare-layer.compare-cafe.compare-before::before,
main > section#before-after .compare-layer.compare-cafe.compare-after::before {
  background-size: cover;
  background-position: 57% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-before::before {
  background-size: cover;
  background-position: 52% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-after::before {
  background-size: cover;
  background-position: 51% 52%;
}

main > section#before-after .compare-layer.compare-building.compare-before::before {
  background-size: cover;
  background-position: 44% 50%;
}

main > section#before-after .compare-layer.compare-building.compare-after::before {
  background-size: cover;
  background-position: 47% 50%;
}

@media (max-width: 1120px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(280px, 28vw, 360px);
  }
}

@media (max-width: 820px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    gap: 14px;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 16 / 10;
    min-height: clamp(300px, 61vw, 440px);
  }
}

@media (max-width: 560px) {
  main > section#before-after {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 4 / 3;
    min-height: 286px;
  }
}

main > section#before-after .compare-layer span {
  position: absolute;
  bottom: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-before span {
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-after span {
  right: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-layer span {
  position: absolute;
  bottom: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-before span {
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-after span {
  right: clamp(12px, 1vw, 16px);
}

/* Final before/after composition: static old-style cards with polished split controls. */
main > section#before-after {
  padding-top: clamp(64px, 5.4vw, 96px);
  padding-bottom: clamp(76px, 6.4vw, 112px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.025), rgba(255, 250, 240, 0) 34%),
    #17120e;
}

main > section#before-after .before-after-context {
  width: min(100%, 1540px);
  max-width: 1540px;
  margin: 0 auto clamp(18px, 1.8vw, 26px);
}

main > section#before-after .before-after-context > p {
  width: min(100%, 620px) !important;
  max-width: min(100%, 620px) !important;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 650;
  line-height: 1.52;
}

main > section#before-after .comparison-toolbar,
main > section#before-after .comparison-copy,
main > section#before-after .early-grid {
  display: none;
}

main > section#before-after .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1540px);
  max-width: 1540px;
  gap: clamp(14px, 1.3vw, 22px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  min-width: 0;
  display: block;
  flex: initial;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section#before-after .comparison-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: clamp(330px, 27vw, 470px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 250, 240, 0.05);
  isolation: isolate;
}

main > section#before-after .comparison-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

main > section#before-after .comparison-title {
  position: absolute;
  top: clamp(12px, 1vw, 16px);
  left: clamp(12px, 1vw, 16px);
  z-index: 5;
  min-height: 29px;
  display: inline-flex !important;
  align-items: center;
  max-width: min(260px, calc(100% - 24px));
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(21, 17, 13, 0.44);
  color: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

main > section#before-after .compare-layer {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(12px, 1vw, 16px);
  color: #fff;
}

main > section#before-after .compare-layer::before {
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
  transform: scale(1.001);
  transform-origin: center;
}

main > section#before-after .compare-layer::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.24), transparent 34%, rgba(21, 17, 13, 0.46)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.16), transparent 42%, rgba(21, 17, 13, 0.2));
}

main > section#before-after .compare-layer span {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 17, 13, 0.46);
  color: rgba(255, 250, 240, 0.9);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(12px);
}

main > section#before-after .compare-before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

main > section#before-after .compare-after {
  clip-path: inset(0 0 0 var(--split));
}

main > section#before-after .compare-before span {
  justify-self: start;
}

main > section#before-after .compare-after span {
  justify-self: end;
}

main > section#before-after .split-line {
  z-index: 4;
  width: 1px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 0 0 1px rgba(21, 17, 13, 0.18), 0 0 28px rgba(0, 0, 0, 0.32);
}

main > section#before-after .split-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 240, 0.78);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 9px, rgba(255, 250, 240, 0.95) 9px 10px, transparent 10px 15px, rgba(255, 250, 240, 0.95) 15px 16px, transparent 16px),
    rgba(21, 17, 13, 0.54);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

main > section#before-after .comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

main > section#before-after .comparison-card:focus-within .split-line::after {
  outline: 2px solid rgba(255, 250, 240, 0.84);
  outline-offset: 3px;
}

main > section#before-after .compare-layer.compare-cafe.compare-before::before,
main > section#before-after .compare-layer.compare-cafe.compare-after::before {
  background-size: cover;
  background-position: 57% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-before::before {
  background-size: cover;
  background-position: 52% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-after::before {
  background-size: cover;
  background-position: 51% 52%;
}

main > section#before-after .compare-layer.compare-building.compare-before::before {
  background-size: cover;
  background-position: 44% 50%;
}

main > section#before-after .compare-layer.compare-building.compare-after::before {
  background-size: cover;
  background-position: 47% 50%;
}

@media (min-width: 1500px) {
  main > section#before-after .comparison-frame {
    min-height: clamp(390px, 25vw, 500px);
  }
}

@media (max-width: 1120px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(280px, 28vw, 360px);
  }

  main > section#before-after .comparison-title {
    max-width: calc(100% - 24px);
  }
}

@media (max-width: 820px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    gap: 14px;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 16 / 10;
    min-height: clamp(300px, 61vw, 440px);
  }
}

@media (max-width: 560px) {
  main > section#before-after {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  main > section#before-after .before-after-context {
    margin-bottom: 16px;
  }

  main > section#before-after .before-after-context > p {
    font-size: 14px;
    line-height: 1.48;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 4 / 3;
    min-height: 286px;
  }

  main > section#before-after .comparison-title {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 10px;
  }

  main > section#before-after .compare-layer span {
    min-height: 25px;
    padding: 6px 9px;
    font-size: 9.5px;
  }
}

.dock-cta {
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 260ms ease, transform 420ms var(--ease-out-expo);
}

.dock-shell {
  min-height: 50px;
  gap: 5px;
  padding: 5px;
}

.dock-main {
  min-width: 142px;
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
}

.dock-logo {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
}

.dock-logo img {
  width: 28px;
  height: 28px;
}

body:not(.dock-on-light-surface) .dock-shell {
  background:
    radial-gradient(circle at var(--dock-light-x, 50%) var(--dock-light-y, 50%), rgba(255, 250, 240, 0.36), transparent 55%),
    rgba(255, 250, 240, 0.22);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

body:not(.dock-on-light-surface) .dock-main,
body:not(.dock-on-light-surface) .dock-logo {
  background: linear-gradient(180deg, #fffdf8 0%, #f1e3c9 100%);
  color: var(--button-ink);
}

body.dock-on-light-surface .dock-shell {
  background:
    radial-gradient(circle at var(--dock-light-x, 50%) var(--dock-light-y, 50%), rgba(255, 250, 240, 0.32), transparent 55%),
    rgba(21, 17, 13, 0.18);
  box-shadow:
    0 22px 64px rgba(21, 17, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

body.dock-on-light-surface .dock-main,
body.dock-on-light-surface .dock-logo {
  background: linear-gradient(180deg, #241b13 0%, #0f0b08 100%);
  color: var(--white);
}

/* Section heading cascade lock: keep right copy aligned to the visible title line. */
main > section:not(.hero-section) > .section-heading > div {
  grid-row: 1;
}

main > section:not(.hero-section) > .section-heading > p {
  grid-row: 1;
}

main > section#lots > .lots-intro > p:last-child,
main > section#location .altai-photo-copy.section-header-grid > .location-copy-stack {
  grid-row: 2;
}

@media (max-width: 900px) {
  main > section:not(.hero-section) > .section-heading > p,
  main > section#lots > .lots-intro > p:last-child,
  main > section#location .altai-photo-copy.section-header-grid > .location-copy-stack {
    grid-row: auto;
  }
}

/* Specificity lock for real page sections with older ID-based overrides. */
main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading,
main > section.map-section > .section-heading,
main > section#lots > .lots-intro,
main > section#location > .altai-photo-copy.section-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, var(--site-section-copy-width));
  column-gap: var(--site-section-column-gap);
  row-gap: 0;
  align-items: end;
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
  min-height: 0;
  margin-inline: auto;
  margin-bottom: var(--site-section-heading-gap);
  text-align: left;
}

main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading h2,
main > section.map-section > .section-heading h2,
main > section#lots > .lots-intro h2,
main > section#location > .altai-photo-copy.section-header-grid h2,
main > section#transparency .platform-copy-panel h2,
main > section.final-cta-section .final-cta-copy h2 {
  width: min(100%, var(--site-section-title-max));
  max-width: var(--site-section-title-max);
  margin: 0;
  font-family: var(--display);
  font-size: var(--site-section-title-size);
  font-weight: 600;
  line-height: var(--site-section-title-line);
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) .section-kicker,
main > section.map-section .section-kicker,
main > section#lots > .lots-intro .section-kicker,
main > section#location > .altai-photo-copy.section-header-grid .section-kicker,
main > section#transparency .section-kicker,
main > section.final-cta-section .section-kicker {
  margin: 0 0 var(--site-section-kicker-gap);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading > p,
main > section.map-section > .section-heading > p,
main > section#lots > .lots-intro > p:last-child,
main > section#location > .altai-photo-copy.section-header-grid .section-description,
main > section#transparency .platform-lead,
main > section.final-cta-section .final-cta-copy p:not(.section-kicker) {
  width: min(100%, var(--site-section-copy-width));
  max-width: var(--site-section-copy-width);
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: var(--site-section-copy-size);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0;
  text-align: left;
  text-wrap: pretty;
}

main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading > div {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading > p,
main > section.map-section > .section-heading > p {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: stretch;
}

main > section#lots > .lots-intro > p:last-child,
main > section#location > .altai-photo-copy.section-header-grid > .location-copy-stack {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: stretch;
}

@media (max-width: 900px) {
  main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading,
  main > section.map-section > .section-heading,
  main > section#lots > .lots-intro,
  main > section#location > .altai-photo-copy.section-header-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: 0 auto;
    align-items: start;
  }

  main > section:is(#participation, #essence, #boundaries, #life-scenarios, #current, #future, #before-after, #team, #trust, #faq) > .section-heading > p,
  main > section.map-section > .section-heading > p,
main > section#lots > .lots-intro > p:last-child,
main > section#location > .altai-photo-copy.section-header-grid > .location-copy-stack {
  grid-column: 1;
  grid-row: auto;
  align-self: start;
  max-width: 38rem;
  }
}

/* Renovation section cleanup: larger image windows, no bottom text plaques. */
main > section#future.future-section {
  padding-top: clamp(72px, 6.4vw, 112px);
  padding-bottom: clamp(70px, 7vw, 118px);
  overflow: hidden;
}

main > section#future > .section-heading {
  margin-bottom: clamp(18px, 2vw, 30px);
}

main > section#future .future-toolbar,
main > section#future .future-layout,
main > section#before-after .comparison-grid,
main > section#before-after .early-grid {
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
  margin-inline: auto;
}

main > section#future .future-toolbar {
  justify-content: flex-end;
  margin-top: 0;
  margin-bottom: clamp(14px, 1.4vw, 20px);
}

main > section#future .future-layout {
  gap: clamp(16px, 1.8vw, 26px);
  padding-bottom: 10px;
  scroll-padding-inline: clamp(18px, 3vw, 42px);
}

main > section#future .future-gallery .feature-render,
main > section#future .future-gallery .feature-render:nth-child(even) {
  flex: 0 0 min(80vw, 1040px);
  min-height: clamp(620px, 72svh, 840px);
  align-content: start;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
}

main > section#future .future-gallery .future-arrival-evening {
  flex-basis: min(86vw, 1160px);
}

main > section#future .future-gallery .future-terrace-house,
main > section#future .future-gallery .future-courtyard-lane,
main > section#future .future-gallery .future-room-gallery,
main > section#future .future-gallery .future-bedroom-soft,
main > section#future .future-gallery .future-suite-lounge,
main > section#future .future-gallery .future-suite-bathroom {
  flex-basis: min(64vw, 820px);
}

main > section#future .future-gallery .future-banya {
  flex-basis: min(78vw, 1040px);
}

main > section#future .future-gallery .feature-render > div {
  display: none;
}

main > section#future .future-gallery .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.08), rgba(21, 17, 13, 0.02) 42%, rgba(21, 17, 13, 0.18)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.28), rgba(21, 17, 13, 0.03) 56%);
  opacity: 0.62;
}

main > section#future .future-gallery .visual-label {
  top: clamp(16px, 1.4vw, 22px);
  left: clamp(16px, 1.4vw, 22px);
  min-height: 34px;
  border-color: rgba(255, 250, 240, 0.26);
  padding: 8px 13px;
  background: rgba(21, 17, 13, 0.36);
  color: rgba(255, 250, 240, 0.94);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

main > section#before-after {
  padding-top: clamp(76px, 7vw, 120px);
}

main > section#before-after .section-heading {
  margin-bottom: clamp(28px, 3vw, 46px);
}

main > section#before-after .comparison-grid {
  gap: clamp(16px, 1.8vw, 28px);
}

main > section#before-after .comparison-card {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.045);
}

main > section#before-after .comparison-frame {
  aspect-ratio: 4 / 3;
  min-height: clamp(320px, 28vw, 480px);
}

main > section#before-after .compare-layer {
  padding: 16px;
}

main > section#before-after .compare-layer span {
  display: none;
}

main > section#before-after .comparison-copy {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.035);
}

main > section#before-after .comparison-copy h3 {
  font-size: 20px;
  font-weight: 800;
}

main > section#before-after .comparison-copy label {
  gap: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 700;
}

main > section#before-after .early-grid {
  margin-top: clamp(18px, 2vw, 30px);
  gap: clamp(12px, 1.4vw, 20px);
}

main > section#before-after .early-grid article {
  min-height: 150px;
}

@media (max-width: 980px) {
  main > section#future .future-gallery .feature-render,
  main > section#future .future-gallery .feature-render:nth-child(even),
  main > section#future .future-gallery .future-arrival-evening,
  main > section#future .future-gallery .future-terrace-house,
  main > section#future .future-gallery .future-courtyard-lane,
  main > section#future .future-gallery .future-room-gallery,
  main > section#future .future-gallery .future-bedroom-soft,
  main > section#future .future-gallery .future-suite-lounge,
  main > section#future .future-gallery .future-suite-bathroom,
  main > section#future .future-gallery .future-banya {
    flex-basis: min(88vw, 760px);
    min-height: clamp(540px, 74svh, 720px);
  }

  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(300px, 58vw, 520px);
  }
}

@media (max-width: 620px) {
  main > section#future.future-section {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  main > section#future .future-layout {
    gap: 14px;
  }

  main > section#future .future-gallery .feature-render,
  main > section#future .future-gallery .feature-render:nth-child(even),
  main > section#future .future-gallery .future-arrival-evening,
  main > section#future .future-gallery .future-terrace-house,
  main > section#future .future-gallery .future-courtyard-lane,
  main > section#future .future-gallery .future-room-gallery,
  main > section#future .future-gallery .future-bedroom-soft,
  main > section#future .future-gallery .future-suite-lounge,
  main > section#future .future-gallery .future-suite-bathroom,
  main > section#future .future-gallery .future-banya {
    flex-basis: calc(100vw - 36px);
    min-height: 500px;
  }

  main > section#before-after .comparison-frame {
    min-height: 280px;
  }
}

/* Current object and before/after cleanup: same clean window system as renovation. */
main > section#current {
  padding-top: clamp(70px, 6.2vw, 108px);
  padding-bottom: clamp(74px, 7vw, 116px);
}

main > section#current > .section-heading {
  margin-bottom: clamp(18px, 2vw, 30px);
}

main > section#current .current-toolbar,
main > section#current .current-gallery {
  width: min(100%, var(--site-section-heading-max));
  max-width: var(--site-section-heading-max);
  margin-inline: auto;
}

main > section#current .current-toolbar {
  justify-content: flex-end;
  margin-top: 0;
  margin-bottom: clamp(14px, 1.4vw, 20px);
}

main > section#current .current-gallery {
  gap: clamp(16px, 1.8vw, 26px);
  padding-bottom: 10px;
  scroll-padding-inline: clamp(18px, 3vw, 42px);
}

main > section#current .current-gallery .feature-render,
main > section#current .current-gallery .feature-render:nth-child(even) {
  flex: 0 0 min(76vw, 980px);
  min-height: clamp(600px, 70svh, 820px);
  align-content: start;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
}

main > section#current .current-gallery .current-territory-view,
main > section#current .current-gallery .current-parking-cafe {
  flex-basis: min(84vw, 1120px);
}

main > section#current .current-gallery .current-courtyard {
  flex-basis: min(80vw, 1040px);
}

main > section#current .current-gallery .current-open-yard,
main > section#current .current-gallery .current-communications {
  flex-basis: min(66vw, 860px);
}

main > section#current .current-gallery .current-room-wide-view,
main > section#current .current-gallery .current-room-window-view {
  flex-basis: min(62vw, 820px);
}

main > section#current .current-gallery .feature-render > div {
  display: none;
}

main > section#current .current-gallery .visual-slot::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.06), rgba(21, 17, 13, 0.02) 44%, rgba(21, 17, 13, 0.2)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.24), rgba(21, 17, 13, 0.02) 58%);
  opacity: 0.58;
}

main > section#current .current-gallery .visual-label {
  top: clamp(16px, 1.4vw, 22px);
  left: clamp(16px, 1.4vw, 22px);
  min-height: 34px;
  border-color: rgba(255, 250, 240, 0.26);
  padding: 8px 13px;
  background: rgba(21, 17, 13, 0.36);
  color: rgba(255, 250, 240, 0.94);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

main > section#before-after .comparison-card {
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

main > section#before-after .comparison-card:hover {
  box-shadow: none;
}

main > section#before-after .comparison-frame {
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

main > section#before-after .comparison-title {
  position: absolute;
  top: clamp(14px, 1.2vw, 18px);
  left: clamp(14px, 1.2vw, 18px);
  z-index: 4;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(21, 17, 13, 0.38);
  color: rgba(255, 250, 240, 0.94);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(14px);
}

main > section#before-after .comparison-copy {
  display: block;
  padding: 0 2px;
  background: transparent;
  color: rgba(255, 250, 240, 0.64);
}

main > section#before-after .comparison-copy label {
  display: grid;
  gap: 7px;
}

main > section#before-after .comparison-copy input[type="range"] {
  display: block;
}

/* Before / after: image-only screens, no heading copy or lower plaques. */
main > section#before-after {
  padding-top: clamp(66px, 6vw, 104px);
  padding-bottom: clamp(74px, 7vw, 118px);
}

main > section#before-after .comparison-grid {
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 24px);
  margin: 0 auto;
}

main > section#before-after .comparison-card {
  gap: 0;
}

main > section#before-after .comparison-frame {
  aspect-ratio: 4 / 3;
  min-height: clamp(330px, 27vw, 500px);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28);
}

main > section#before-after .compare-layer {
  align-content: start;
  padding: clamp(16px, 1.4vw, 22px);
}

main > section#before-after .compare-layer::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.34), transparent 30%, rgba(21, 17, 13, 0.2)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.18), transparent 42%, rgba(21, 17, 13, 0.14));
}

main > section#before-after .compare-layer span {
  display: inline-flex;
  width: auto;
  max-width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--copper);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

main > section#before-after .compare-before span {
  justify-self: start;
}

main > section#before-after .compare-after span {
  justify-self: end;
}

main > section#before-after .split-line {
  width: 1px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 0 0 1px rgba(21, 17, 13, 0.08);
}

main > section#before-after .comparison-copy,
main > section#before-after .early-grid,
main > section#before-after .comparison-title {
  display: none;
}

@media (max-width: 980px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(320px, 58vw, 520px);
  }
}

@media (max-width: 620px) {
  main > section#before-after {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  main > section#before-after .comparison-grid {
    gap: 14px;
  }

  main > section#before-after .comparison-frame {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  main > section#current .current-gallery .feature-render,
  main > section#current .current-gallery .feature-render:nth-child(even),
  main > section#current .current-gallery .current-territory-view,
  main > section#current .current-gallery .current-courtyard,
  main > section#current .current-gallery .current-open-yard,
  main > section#current .current-gallery .current-parking-cafe,
  main > section#current .current-gallery .current-communications,
  main > section#current .current-gallery .current-room-wide-view,
  main > section#current .current-gallery .current-room-window-view {
    flex-basis: min(88vw, 760px);
    min-height: clamp(520px, 72svh, 700px);
  }
}

@media (max-width: 620px) {
  main > section#current {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  main > section#current .current-gallery {
    gap: 14px;
  }

  main > section#current .current-gallery .feature-render,
  main > section#current .current-gallery .feature-render:nth-child(even),
  main > section#current .current-gallery .current-territory-view,
  main > section#current .current-gallery .current-courtyard,
  main > section#current .current-gallery .current-open-yard,
  main > section#current .current-gallery .current-parking-cafe,
  main > section#current .current-gallery .current-communications,
  main > section#current .current-gallery .current-room-wide-view,
  main > section#current .current-gallery .current-room-window-view {
    flex-basis: calc(100vw - 36px);
    min-height: 480px;
  }
}

.altai-landing-hero .hero-actions {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.altai-landing-hero .hero-actions .button {
  min-height: 46px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(150px, 0.7fr) minmax(170px, 0.8fr) minmax(220px, 1fr);
  align-items: start;
  gap: 26px;
}

.footer-brand,
.footer-contact,
.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 118px;
  height: auto;
}

.site-footer .footer-brand p,
.site-footer .footer-contact p,
.site-footer .footer-legal {
  max-width: none;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.5);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .altai-landing-hero .hero-actions {
    align-items: stretch;
  }

  .altai-landing-hero .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-legal {
    grid-column: auto;
  }
}

main > section#current > .section-heading.compact-copy-heading,
main > section.map-section > .section-heading.compact-copy-heading,
main > section#future > .section-heading.compact-copy-heading {
  grid-template-columns: minmax(0, clamp(320px, 38vw, 640px)) 1fr;
  align-items: start;
}

main > section#current > .section-heading.compact-copy-heading > div,
main > section.map-section > .section-heading.compact-copy-heading > div,
main > section#future > .section-heading.compact-copy-heading > div {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

main > section#current > .section-heading.compact-copy-heading > p,
main > section.map-section > .section-heading.compact-copy-heading > p,
main > section#future > .section-heading.compact-copy-heading > p {
  grid-column: 1 !important;
  grid-row: 1;
  justify-self: start;
  max-width: min(640px, 100%) !important;
  margin: 0;
  color: rgba(28, 24, 20, 0.72);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}

main > section#current > .section-heading.compact-copy-heading > p,
main > section#future > .section-heading.compact-copy-heading > p {
  color: rgba(255, 250, 240, 0.72);
}

@media (max-width: 760px) {
  main > section#current > .section-heading.compact-copy-heading,
  main > section.map-section > .section-heading.compact-copy-heading,
  main > section#future > .section-heading.compact-copy-heading {
    grid-template-columns: 1fr;
  }
}

main > section:not(.hero-section) > .section-heading.compact-copy-heading,
main > section#location > .altai-photo-copy.compact-copy-heading,
main > section#lots > .lots-intro.compact-copy-heading {
  grid-template-columns: minmax(0, clamp(320px, 38vw, 640px)) 1fr !important;
  align-items: start !important;
}

main > section:not(.hero-section) > .section-heading.compact-copy-heading > div,
main > section#location > .altai-photo-copy.compact-copy-heading > .section-kicker,
main > section#location > .altai-photo-copy.compact-copy-heading > h2,
main > section#lots > .lots-intro.compact-copy-heading > .section-kicker,
main > section#lots > .lots-intro.compact-copy-heading > h2,
main > section#transparency .platform-copy-panel.compact-copy-heading > .section-kicker,
main > section#transparency .platform-copy-panel.compact-copy-heading > h2,
main > section.final-cta-section .final-cta-copy.compact-copy-heading > .section-kicker,
main > section.final-cta-section .final-cta-copy.compact-copy-heading > h2 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

main > section:not(.hero-section) > .section-heading.compact-copy-heading > p,
main > section#location > .altai-photo-copy.compact-copy-heading > .location-copy-stack,
main > section#lots > .lots-intro.compact-copy-heading > p,
main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead,
main > section.final-cta-section .final-cta-copy.compact-copy-heading > p:not(.section-kicker) {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: start !important;
  width: min(100%, 640px) !important;
  max-width: min(100%, 640px) !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 250, 240, 0.72);
  font-family: var(--sans);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: 0;
  text-align: left;
  text-wrap: pretty;
}

main > section#boundaries > .section-heading.compact-copy-heading > p,
main > section#location > .altai-photo-copy.compact-copy-heading .section-description,
main > section.map-section > .section-heading.compact-copy-heading > p,
main > section#lots > .lots-intro.compact-copy-heading > p,
main > section#team > .section-heading.compact-copy-heading > p,
main > section#trust > .section-heading.compact-copy-heading > p {
  color: rgba(28, 24, 20, 0.72);
}

main > section#location > .altai-photo-copy.compact-copy-heading > .location-copy-stack {
  display: grid;
  gap: 18px;
}

main > section#location > .altai-photo-copy.compact-copy-heading .section-description,
main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead,
main > section.final-cta-section .final-cta-copy.compact-copy-heading > p:not(.section-kicker) {
  width: 100% !important;
  max-width: 640px !important;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.56;
}

main > section#transparency .platform-copy-panel.compact-copy-heading,
main > section.final-cta-section .final-cta-copy.compact-copy-heading {
  align-content: start;
}

main > section#transparency.transparency-section {
  padding-block: clamp(42px, 4.2vw, 70px);
  padding-inline: clamp(26px, 4.2vw, 72px) clamp(22px, 3vw, 54px);
}

main > section#transparency .platform-experience {
  grid-template-columns: minmax(480px, 0.9fr) minmax(600px, 1.1fr);
  gap: clamp(24px, 2.2vw, 36px);
  align-items: start;
}

main > section#transparency .platform-copy-panel.compact-copy-heading {
  align-self: stretch;
  align-content: stretch;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  padding-top: 0;
  transform: translateY(clamp(-10px, -0.7vw, -6px));
}

main > section#transparency .platform-mockup-stage {
  justify-self: start;
  align-self: start;
  width: min(108%, 940px);
  margin-top: 0;
}

main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead {
  max-width: 590px !important;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.48;
}

main > section#transparency .platform-feature-grid {
  align-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(10px, 0.75vw, 13px);
  min-height: 0;
  margin-top: clamp(14px, 1.1vw, 18px);
}

main > section#transparency .platform-feature-grid article {
  min-height: 0;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: clamp(9px, 0.72vw, 12px);
  align-items: center;
  padding: clamp(11px, 0.82vw, 14px);
}

main > section#transparency .platform-feature-icon {
  width: 27px;
  height: 27px;
  align-self: center;
  justify-self: center;
  margin-top: 0;
}

main > section#transparency .platform-feature-grid article > div {
  align-self: center;
  min-width: 0;
}

main > section#transparency .platform-feature-grid strong {
  font-size: clamp(17.5px, 1.06vw, 21px);
  line-height: 1.08;
}

main > section#transparency .platform-feature-grid p {
  margin-top: 6px;
  font-size: clamp(11.8px, 0.68vw, 12.8px);
  line-height: 1.26;
}

@media (min-width: 1181px) and (max-width: 1280px) {
  main > section#transparency .platform-experience {
    grid-template-columns: minmax(480px, 0.9fr) minmax(600px, 1.1fr);
    gap: clamp(24px, 2.1vw, 32px);
  }
}

@media (max-width: 1180px) {
  main > section#transparency .platform-experience {
    grid-template-columns: 1fr;
  }

  main > section#transparency .platform-copy-panel.compact-copy-heading {
    width: 100%;
    align-self: auto;
    align-content: start;
    grid-template-rows: none;
    transform: none;
  }

  main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead {
    max-width: 680px !important;
  }

  main > section#transparency .platform-mockup-stage {
    width: min(100%, 860px);
    margin-top: clamp(28px, 5vw, 48px);
  }

  main > section#transparency .platform-feature-grid {
    grid-template-rows: none;
    height: auto;
  }
}

@media (max-width: 680px) {
  main > section#transparency .platform-feature-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  main > section#transparency .platform-feature-grid article {
    min-height: 0;
  }
}

main > section.final-cta-section .final-cta-copy.compact-copy-heading .button {
  margin-top: 24px;
}

@media (max-width: 760px) {
  main > section:not(.hero-section) > .section-heading.compact-copy-heading,
  main > section#location > .altai-photo-copy.compact-copy-heading,
  main > section#lots > .lots-intro.compact-copy-heading {
    grid-template-columns: 1fr !important;
  }
}

/* Before/after carousel polish. */
main > section#before-after .comparison-toolbar {
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  justify-content: flex-end;
  margin: 0 auto clamp(14px, 1.4vw, 20px);
}

main > section#before-after .comparison-grid {
  display: flex;
  grid-template-columns: none;
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  gap: clamp(16px, 1.8vw, 26px);
  margin: 0 auto;
  padding: 0 0 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: clamp(18px, 3vw, 42px);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 250, 240, 0.34) transparent;
}

main > section#before-after .comparison-grid.is-gallery-scrolling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card {
  flex: 0 0 min(78vw, 1040px);
  min-width: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

main > section#before-after .comparison-card:nth-child(1) {
  flex-basis: min(82vw, 1120px);
}

main > section#before-after .comparison-card:nth-child(2) {
  flex-basis: min(76vw, 1000px);
}

main > section#before-after .comparison-frame {
  aspect-ratio: 16 / 10;
  min-height: clamp(560px, 68svh, 780px);
}

main > section#before-after .comparison-title {
  position: absolute;
  top: clamp(14px, 1.2vw, 20px);
  left: clamp(14px, 1.2vw, 20px);
  z-index: 5;
  min-height: 30px;
  display: inline-flex !important;
  align-items: center;
  max-width: min(280px, calc(100% - 28px));
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(21, 17, 13, 0.42);
  color: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

main > section#before-after .compare-layer {
  align-content: end;
  padding: clamp(14px, 1.25vw, 20px);
}

main > section#before-after .compare-layer::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.24), transparent 34%, rgba(21, 17, 13, 0.42)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.18), transparent 42%, rgba(21, 17, 13, 0.2));
}

main > section#before-after .compare-layer span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 17, 13, 0.44);
  color: rgba(255, 250, 240, 0.9);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(12px);
}

main > section#before-after .compare-before span {
  justify-self: start;
}

main > section#before-after .compare-after span {
  justify-self: end;
}

@media (max-width: 980px) {
  main > section#before-after .comparison-grid {
    width: min(100%, 780px);
  }

  main > section#before-after .comparison-card,
  main > section#before-after .comparison-card:nth-child(1),
  main > section#before-after .comparison-card:nth-child(2) {
    flex-basis: min(88vw, 760px);
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(460px, 70svh, 650px);
  }
}

@media (max-width: 620px) {
  main > section#before-after .comparison-toolbar {
    margin-bottom: 12px;
  }

  main > section#before-after .gallery-control {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  main > section#before-after .comparison-grid {
    width: 100%;
    gap: 14px;
    padding-bottom: 8px;
  }

  main > section#before-after .comparison-card,
  main > section#before-after .comparison-card:nth-child(1),
  main > section#before-after .comparison-card:nth-child(2) {
    flex-basis: calc(100vw - 36px);
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 4 / 5;
    min-height: clamp(340px, 62svh, 480px);
  }

  main > section#before-after .comparison-title {
    min-height: 28px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    font-size: 10.5px;
  }
}

/* Before/after static cards with draggable split line. */
main > section#before-after {
  padding-top: clamp(66px, 6vw, 104px);
  padding-bottom: clamp(74px, 7vw, 118px);
}

main > section#before-after .before-after-context {
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  margin: 0 auto clamp(18px, 2vw, 28px);
}

main > section#before-after .before-after-context > p {
  width: min(100%, 560px) !important;
  max-width: min(100%, 560px) !important;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.5;
}

main > section#before-after .comparison-toolbar {
  display: none;
}

main > section#before-after .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  gap: clamp(14px, 1.35vw, 24px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  flex: initial;
  min-width: 0;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section#before-after .comparison-frame {
  aspect-ratio: 4 / 3;
  min-height: clamp(330px, 27vw, 500px);
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28);
}

main > section#before-after .comparison-title {
  position: absolute;
  top: clamp(14px, 1.2vw, 18px);
  left: clamp(14px, 1.2vw, 18px);
  z-index: 5;
  min-height: 30px;
  display: inline-flex !important;
  align-items: center;
  max-width: min(260px, calc(100% - 28px));
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(21, 17, 13, 0.42);
  color: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

main > section#before-after .compare-layer {
  align-content: end;
  padding: clamp(14px, 1.25vw, 20px);
}

main > section#before-after .compare-layer::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.28), transparent 32%, rgba(21, 17, 13, 0.46)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.18), transparent 42%, rgba(21, 17, 13, 0.2));
}

main > section#before-after .compare-layer span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 17, 13, 0.44);
  color: rgba(255, 250, 240, 0.9);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(12px);
}

main > section#before-after .compare-before span {
  justify-self: start;
}

main > section#before-after .compare-after span {
  justify-self: end;
}

main > section#before-after .split-line {
  z-index: 4;
  width: 1px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 0 0 1px rgba(21, 17, 13, 0.12), 0 0 28px rgba(0, 0, 0, 0.28);
}

main > section#before-after .split-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 240, 0.74);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 9px, rgba(255, 250, 240, 0.92) 9px 10px, transparent 10px 15px, rgba(255, 250, 240, 0.92) 15px 16px, transparent 16px),
    rgba(21, 17, 13, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

main > section#before-after .comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

main > section#before-after .comparison-card:focus-within .split-line::after {
  outline: 2px solid rgba(255, 250, 240, 0.84);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(320px, 58vw, 520px);
  }
}

@media (max-width: 620px) {
  main > section#before-after {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  main > section#before-after .before-after-context {
    margin-bottom: 16px;
  }

  main > section#before-after .comparison-grid {
    gap: 14px;
  }

  main > section#before-after .comparison-frame {
    min-height: 280px;
  }
}

/* First screen: minimal closed-project hero. */
.hero-section.altai-landing-hero,
.motion-gsap .hero-section.altai-landing-hero {
  --hero-x: clamp(22px, 6.2vw, 104px);
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.altai-landing-hero .hero-photo {
  object-position: 50% 70%;
  filter: saturate(1.04) contrast(1.04) brightness(0.9);
  transform: scale(1.01);
}

.altai-landing-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.7) 0%, rgba(7, 10, 10, 0.34) 42%, rgba(7, 10, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.05) 36%, rgba(0, 0, 0, 0.5) 100%);
}

.altai-landing-hero .hero-content {
  width: min(980px, calc(100% - clamp(44px, 11vw, 190px)));
  display: block;
  margin-inline: var(--hero-x);
  padding-top: clamp(58px, 7.4vh, 92px);
  padding-bottom: 0;
  color: #fff;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
  transform: translateY(clamp(-86px, -6.8vh, -44px));
}

.altai-landing-hero .hero-kicker {
  margin-bottom: 14px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.altai-landing-hero h1 {
  grid-column: auto;
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 5.45vw, 94px);
  line-height: 0.98;
  text-wrap: auto;
}

.altai-landing-hero .hero-content > p:not(.hero-kicker) {
  grid-column: auto;
  max-width: 680px;
  margin: clamp(16px, 1.8vw, 22px) 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 600;
  line-height: 1.42;
}

.altai-landing-hero .hero-bottom {
  left: var(--hero-x);
  right: var(--hero-x);
  bottom: clamp(94px, 10vh, 118px);
  grid-template-columns: minmax(320px, 620px);
  justify-content: start;
  align-items: end;
  gap: 0;
  opacity: 1;
}

.altai-landing-hero .hero-note {
  max-width: 620px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 250, 240, 0.42);
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 700;
  line-height: 1.5;
}

.altai-landing-hero .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(82px, 1fr));
  justify-self: end;
  width: 100%;
  max-width: min(520px, 100%);
  gap: 0;
}

.altai-landing-hero .hero-facts div {
  min-width: 0;
  padding: 0 clamp(12px, 1.35vw, 20px);
  border-left-color: rgba(255, 250, 240, 0.26);
  text-align: left;
}

.altai-landing-hero .hero-facts strong {
  color: #fff;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 950;
  line-height: 1;
}

.altai-landing-hero .hero-facts span {
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
}

@media (max-width: 980px) {
  .altai-landing-hero .hero-content {
    width: min(760px, calc(100% - 40px));
    margin-inline: 20px;
    padding-top: 76px;
    padding-bottom: 42px;
    transform: translateY(-24px);
  }

  .altai-landing-hero h1 {
    font-size: clamp(52px, 8.8vw, 80px);
    line-height: 0.98;
  }

  .altai-landing-hero .hero-bottom {
    display: none;
  }

  .altai-landing-hero .hero-facts {
    display: none;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  .altai-landing-hero .hero-content {
    padding-top: 56px;
    transform: translateY(-68px);
  }

  .altai-landing-hero h1 {
    font-size: clamp(52px, 5vw, 80px);
    line-height: 0.98;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    max-width: 660px;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.36;
  }

  .altai-landing-hero .hero-bottom {
    bottom: 94px;
  }
}

@media (max-height: 680px) and (min-width: 981px) {
  .altai-landing-hero .hero-bottom {
    display: none;
  }
}

@media (max-width: 620px) {
  .altai-landing-hero .hero-photo {
    object-position: 58% 70%;
    filter: saturate(0.94) contrast(1.08) brightness(0.7);
  }

  .altai-landing-hero .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 7, 8, 0.82) 0%, rgba(3, 7, 8, 0.48) 56%, rgba(3, 7, 8, 0.28) 100%),
      linear-gradient(180deg, rgba(3, 5, 5, 0.68) 0%, rgba(3, 5, 5, 0.2) 38%, rgba(3, 5, 5, 0.76) 100%);
  }

  .altai-landing-hero .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: clamp(58px, 7vh, 68px);
    padding-bottom: 32px;
    transform: translateY(-18px);
  }

  .altai-landing-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 9.8vw, 48px);
    line-height: 1;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    max-width: 100%;
    margin-top: 15px;
    font-size: 16.5px;
    line-height: 1.38;
  }

  .altai-landing-hero .hero-bottom {
    display: none;
  }
}

@media (max-width: 620px) and (max-height: 780px) {
  .altai-landing-hero .hero-kicker {
    margin-bottom: 14px;
    font-size: 11.5px;
  }

  .altai-landing-hero h1 {
    font-size: 36px;
    line-height: 1;
  }

  .altai-landing-hero .hero-content > p:not(.hero-kicker) {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.3;
  }

}

/* Final lock v2: before/after stays as static split cards. */
main > section#before-after {
  padding-top: clamp(64px, 5.4vw, 96px);
  padding-bottom: clamp(76px, 6.4vw, 112px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.025), rgba(255, 250, 240, 0) 34%),
    #17120e;
}

main > section#before-after .before-after-context,
main > section#before-after .comparison-grid {
  width: min(100%, 1540px);
  max-width: 1540px;
}

main > section#before-after .before-after-context {
  margin: 0 auto clamp(18px, 1.8vw, 26px);
}

main > section#before-after .before-after-context > p {
  width: min(100%, 620px) !important;
  max-width: min(100%, 620px) !important;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 650;
  line-height: 1.52;
}

main > section#before-after .comparison-toolbar,
main > section#before-after .comparison-copy,
main > section#before-after .early-grid {
  display: none;
}

main > section#before-after .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 22px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  min-width: 0;
  display: block;
  flex: initial;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section#before-after .comparison-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: clamp(330px, 27vw, 470px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 250, 240, 0.05);
  isolation: isolate;
}

main > section#before-after .comparison-title {
  top: clamp(12px, 1vw, 16px);
  left: clamp(12px, 1vw, 16px);
  min-height: 29px;
  display: inline-flex !important;
  max-width: min(260px, calc(100% - 24px));
  padding: 7px 11px;
  background: rgba(21, 17, 13, 0.44);
  font-size: 10.5px;
  font-weight: 850;
}

main > section#before-after .compare-layer {
  align-content: end;
  padding: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-layer::before {
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
  transform: scale(1.001);
}

main > section#before-after .compare-layer span {
  min-height: 27px;
  padding: 7px 10px;
  font-size: 10px;
}

main > section#before-after .split-line {
  z-index: 4;
  width: 1px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 0 0 1px rgba(21, 17, 13, 0.18), 0 0 28px rgba(0, 0, 0, 0.32);
}

main > section#before-after .split-line::after {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 250, 240, 0.78);
  background:
    linear-gradient(90deg, transparent 9px, rgba(255, 250, 240, 0.95) 9px 10px, transparent 10px 15px, rgba(255, 250, 240, 0.95) 15px 16px, transparent 16px),
    rgba(21, 17, 13, 0.54);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

main > section#before-after .comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

main > section#before-after .compare-layer.compare-cafe.compare-before::before,
main > section#before-after .compare-layer.compare-cafe.compare-after::before {
  background-size: cover;
  background-position: 57% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-before::before {
  background-size: cover;
  background-position: 52% 50%;
}

main > section#before-after .compare-layer.compare-territory.compare-after::before {
  background-size: cover;
  background-position: 51% 52%;
}

main > section#before-after .compare-layer.compare-building.compare-before::before {
  background-size: cover;
  background-position: 44% 50%;
}

main > section#before-after .compare-layer.compare-building.compare-after::before {
  background-size: cover;
  background-position: 47% 50%;
}

@media (max-width: 1120px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  main > section#before-after .comparison-frame {
    min-height: clamp(280px, 28vw, 360px);
  }
}

@media (max-width: 820px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    gap: 14px;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 16 / 10;
    min-height: clamp(300px, 61vw, 440px);
  }
}

@media (max-width: 560px) {
  main > section#before-after {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  main > section#before-after .comparison-frame {
    aspect-ratio: 4 / 3;
    min-height: 286px;
  }
}

main > section#before-after .compare-layer span {
  position: absolute;
  bottom: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-before span {
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .compare-after span {
  right: clamp(12px, 1vw, 16px);
}
main > section#before-after .compare-layer span {
  display: none !important;
}

main > section#before-after .comparison-frame::before,
main > section#before-after .comparison-frame::after {
  position: absolute;
  z-index: 5;
  bottom: clamp(12px, 1vw, 16px);
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 17, 13, 0.46);
  color: rgba(255, 250, 240, 0.9);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

main > section#before-after .comparison-frame::before {
  content: "До";
  left: clamp(12px, 1vw, 16px);
}

main > section#before-after .comparison-frame::after {
  content: "После";
  inset: auto clamp(12px, 1vw, 16px) clamp(12px, 1vw, 16px) auto;
  width: auto;
  height: auto;
  box-shadow: none;
}

main > section#before-after .compare-layer span,
main > section#before-after .comparison-frame::before,
main > section#before-after .comparison-frame::after {
  display: none !important;
}

/* Final lock v3: full-ratio images and bottom controls. */
main > section#before-after .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
  align-items: start;
}

main > section#before-after .comparison-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

main > section#before-after .comparison-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  border-radius: 8px;
}

main > section#before-after .compare-layer {
  padding: 0;
}

main > section#before-after .compare-layer::before {
  background-size: 100% 100% !important;
  background-position: 50% 50% !important;
  filter: saturate(1.03) contrast(1.01) brightness(0.98);
  transform: none;
}

main > section#before-after .comparison-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

main > section#before-after .comparison-range {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  opacity: 1;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  accent-color: #d7b076;
}

main > section#before-after .comparison-range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.28);
}

main > section#before-after .comparison-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -8px;
  border: 1px solid rgba(255, 250, 240, 0.78);
  border-radius: 50%;
  background: #17120e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  appearance: none;
}

main > section#before-after .comparison-range::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.28);
}

main > section#before-after .comparison-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 250, 240, 0.78);
  border-radius: 50%;
  background: #17120e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

main > section#before-after .split-line::after {
  width: 28px;
  height: 28px;
}

@media (max-width: 820px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }
}

@media (max-width: 560px) {
  main > section#before-after .comparison-frame {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

/* Final lock v4: May-style orange bottom slider and smoother full-image reveal. */
main > section#before-after {
  padding-top: clamp(72px, 6.4vw, 112px);
  padding-bottom: clamp(82px, 7vw, 124px);
}

main > section#before-after .before-after-context,
main > section#before-after .comparison-grid {
  width: min(100%, 1540px);
  margin-inline: auto;
}

main > section#before-after .before-after-context {
  margin-bottom: clamp(24px, 2.4vw, 42px);
}

main > section#before-after .before-after-context > p {
  max-width: 560px;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
}

main > section#before-after .comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.65vw, 28px);
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
  overflow: visible;
  border-radius: 10px;
}

main > section#before-after .comparison-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 10px;
  background: #16110d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

main > section#before-after .comparison-frame::before,
main > section#before-after .comparison-frame::after,
main > section#before-after .compare-layer span {
  display: none !important;
}

main > section#before-after .comparison-title {
  left: clamp(12px, 1vw, 16px);
  top: clamp(12px, 1vw, 16px);
  z-index: 8;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(18, 14, 10, 0.62);
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

main > section#before-after .compare-layer {
  padding: 0;
}

main > section#before-after .compare-layer::before {
  background-size: 100% 100% !important;
  background-position: 50% 50% !important;
  filter: saturate(1.04) contrast(1.02) brightness(0.99);
  transform: none !important;
}

main > section#before-after .compare-before,
main > section#before-after .compare-after {
  transition: clip-path 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

main > section#before-after .split-line {
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0));
  box-shadow: 0 0 0 1px rgba(218, 151, 75, 0.25), 0 0 26px rgba(218, 151, 75, 0.34);
  transition: left 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

main > section#before-after .split-line::after {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 250, 240, 0.86);
  background: linear-gradient(135deg, #d99543, #e9bd74);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(217, 149, 67, 0.18);
}

main > section#before-after .comparison-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 0 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

main > section#before-after .comparison-control span {
  white-space: nowrap;
}

main > section#before-after .comparison-range {
  position: relative;
  inset: auto;
  z-index: 2;
  display: block;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  appearance: none;
  -webkit-appearance: none;
  cursor: ew-resize;
  accent-color: #dc9a4d;
}

main > section#before-after .comparison-range::-webkit-slider-runnable-track {
  height: 5px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #d88f3d 0%,
    #e6b66d var(--split),
    rgba(255, 250, 240, 0.22) var(--split),
    rgba(255, 250, 240, 0.22) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.26);
}

main > section#before-after .comparison-range::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -9px;
  border: 2px solid rgba(255, 250, 240, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, #d98f3b, #e7b66d);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32), 0 0 0 5px rgba(217, 149, 67, 0.16);
  appearance: none;
  -webkit-appearance: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

main > section#before-after .comparison-range:hover::-webkit-slider-thumb,
main > section#before-after .comparison-range:focus-visible::-webkit-slider-thumb {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(217, 149, 67, 0.2);
}

main > section#before-after .comparison-range::-moz-range-track {
  height: 5px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #d88f3d 0%,
    #e6b66d var(--split),
    rgba(255, 250, 240, 0.22) var(--split),
    rgba(255, 250, 240, 0.22) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.26);
}

main > section#before-after .comparison-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 250, 240, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, #d98f3b, #e7b66d);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32), 0 0 0 5px rgba(217, 149, 67, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

main > section#before-after .comparison-range:hover::-moz-range-thumb,
main > section#before-after .comparison-range:focus-visible::-moz-range-thumb {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(217, 149, 67, 0.2);
}

main > section#before-after .comparison-range:focus-visible {
  outline: 2px solid rgba(231, 182, 109, 0.56);
  outline-offset: 4px;
  border-radius: 999px;
}

@media (max-width: 1180px) {
  main > section#before-after .comparison-grid {
    gap: 14px;
  }

  main > section#before-after .comparison-title {
    padding-inline: 9px;
  }
}

@media (max-width: 860px) {
  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  main > section#before-after {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  main > section#before-after .before-after-context {
    margin-bottom: 20px;
  }

  main > section#before-after .comparison-card,
  main > section#before-after .comparison-card:nth-child(1),
  main > section#before-after .comparison-card:nth-child(2) {
    gap: 10px;
  }

  main > section#before-after .comparison-control {
    gap: 9px;
    font-size: 9px;
  }
}

/* Before/after static row: text, three image plates and three sliders on one screen. */
main > section#before-after {
  padding: 82px clamp(18px, 4vw, 72px) 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(255, 250, 240, 0) 34%),
    #17120e;
}

main > section#before-after .before-after-context,
main > section#before-after .comparison-grid {
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  margin-inline: auto;
}

main > section#before-after .before-after-context {
  display: block !important;
  margin-bottom: clamp(20px, 2.2vw, 34px);
}

main > section#before-after .before-after-context > div {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

main > section#before-after .before-after-context .section-kicker {
  margin: 0 0 10px;
  color: var(--copper);
}

main > section#before-after .before-after-context h2 {
  width: min(100%, 640px) !important;
  max-width: min(100%, 640px) !important;
  font-size: clamp(34px, 3.2vw, 54px) !important;
  line-height: 0.98 !important;
}

main > section#before-after .before-after-context > p {
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: start !important;
  width: min(100%, 680px) !important;
  max-width: min(100%, 680px) !important;
  color: rgba(255, 250, 240, 0.76);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.54;
}

main > section#before-after .comparison-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.4vw, 24px);
  padding: 0;
  overflow-x: visible;
  overflow-y: visible;
  scroll-snap-type: none;
}

main > section#before-after .comparison-card,
main > section#before-after .comparison-card:nth-child(1),
main > section#before-after .comparison-card:nth-child(2) {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section#before-after .comparison-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
  height: auto;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #15110d;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 250, 240, 0.06);
}

main > section#before-after .comparison-title {
  top: 12px;
  left: 12px;
  min-height: 24px;
  max-width: calc(100% - 24px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 4px;
  padding: 5px 8px;
  background: rgba(21, 17, 13, 0.28);
  color: rgba(255, 250, 240, 0.78);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  box-shadow: none;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

main > section#before-after .compare-layer {
  padding: 0;
  --compare-image-scale: 1;
  --compare-image-x: 0%;
  --compare-image-y: 0%;
}

main > section#before-after .compare-layer::before {
  background-size: cover !important;
  filter: saturate(1.05) contrast(1) brightness(1.08);
  transform: translate(var(--compare-image-x), var(--compare-image-y)) scale(var(--compare-image-scale)) !important;
  transform-origin: center center;
}

main > section#before-after .compare-layer::after {
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.08), rgba(21, 17, 13, 0.01) 46%, rgba(21, 17, 13, 0.2)),
    linear-gradient(90deg, rgba(21, 17, 13, 0.08), transparent 46%, rgba(21, 17, 13, 0.08));
}

main > section#before-after .compare-layer.compare-cafe.compare-before::before,
main > section#before-after .compare-layer.compare-cafe.compare-after::before {
  background-position: 50% 50% !important;
}

main > section#before-after .compare-layer.compare-cafe.compare-before {
  --compare-image-scale: 1.16;
  --compare-image-x: -3.1%;
  --compare-image-y: 1.1%;
}

main > section#before-after .compare-layer.compare-cafe.compare-after {
  --compare-image-scale: 1.015;
  --compare-image-x: 0%;
  --compare-image-y: 0.2%;
}

main > section#before-after .compare-layer.compare-territory.compare-before::before {
  background-position: 50% 50% !important;
}

main > section#before-after .compare-layer.compare-territory.compare-after::before {
  background-position: 50% 50% !important;
}

main > section#before-after .compare-layer.compare-territory.compare-before {
  --compare-image-scale: 1.025;
  --compare-image-x: 0%;
  --compare-image-y: 0.3%;
}

main > section#before-after .compare-layer.compare-territory.compare-after {
  --compare-image-scale: 1.06;
  --compare-image-x: -1.1%;
  --compare-image-y: 0.9%;
}

main > section#before-after .compare-layer.compare-building.compare-before::before {
  background-position: 50% 50% !important;
}

main > section#before-after .compare-layer.compare-building.compare-after::before {
  background-position: 50% 50% !important;
}

main > section#before-after .compare-layer.compare-building.compare-before {
  --compare-image-scale: 1.025;
  --compare-image-x: 0.4%;
  --compare-image-y: 0.1%;
}

main > section#before-after .compare-layer.compare-building.compare-after {
  --compare-image-scale: 1.025;
  --compare-image-x: -0.2%;
  --compare-image-y: 0.1%;
}

main > section#before-after .comparison-frame::before,
main > section#before-after .comparison-frame::after,
main > section#before-after .compare-layer span {
  display: none !important;
}

main > section#before-after .split-line {
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0));
  box-shadow: 0 0 22px rgba(216, 195, 155, 0.26);
  transition: left 240ms var(--ease-soft);
}

main > section#before-after .split-line::after {
  content: none !important;
  display: none !important;
}

main > section#before-after .comparison-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

main > section#before-after .comparison-range {
  position: relative;
  inset: auto;
  z-index: 2;
  display: block;
  width: 100%;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  appearance: none;
  -webkit-appearance: none;
  cursor: ew-resize;
  accent-color: var(--sand);
}

main > section#before-after .comparison-range::-webkit-slider-runnable-track {
  height: 4px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(216, 195, 155, 0.86) 0%, rgba(216, 195, 155, 0.86) var(--split), rgba(255, 250, 240, 0.22) var(--split), rgba(255, 250, 240, 0.22) 100%);
  box-shadow: none;
}

main > section#before-after .comparison-range::-webkit-slider-thumb {
  width: 28px;
  height: 18px;
  margin-top: -7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

main > section#before-after .comparison-range::-moz-range-track {
  height: 4px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(216, 195, 155, 0.86) 0%, rgba(216, 195, 155, 0.86) var(--split), rgba(255, 250, 240, 0.22) var(--split), rgba(255, 250, 240, 0.22) 100%);
  box-shadow: none;
}

main > section#before-after .comparison-range::-moz-range-thumb {
  width: 28px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main > section#before-after .comparison-range:focus-visible {
  outline: 1px solid rgba(216, 195, 155, 0.58);
  outline-offset: 5px;
  border-radius: 0;
}

@media (max-width: 980px) {
  main > section#before-after {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  main > section#before-after .comparison-grid {
    grid-template-columns: 1fr !important;
    width: min(100%, 680px);
  }
}

@media (max-width: 620px) {
  main > section#before-after {
    padding: 64px 18px 78px;
  }

  main > section#before-after .before-after-context {
    margin-bottom: 18px;
  }

  main > section#before-after .before-after-context > p {
    justify-self: start !important;
  }

  main > section#before-after .before-after-context h2 {
    font-size: 32px !important;
  }

  main > section#before-after .before-after-context > p {
    font-size: 16px;
    line-height: 1.5;
  }

  main > section#before-after .comparison-grid {
    gap: 14px;
  }

  main > section#before-after .comparison-title {
    top: 10px;
    left: 10px;
    min-height: 22px;
    max-width: calc(100% - 20px);
    padding: 5px 7px;
    font-size: 10px;
  }

  main > section#before-after .comparison-control {
    gap: 9px;
    font-size: 9px;
  }
}

/* Location route final pass: compact text rail, four desktop cards, map-only modal. */
main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading {
  display: grid;
  grid-template-columns: 1fr !important;
  align-items: start !important;
  column-gap: clamp(28px, 5vw, 96px);
  width: min(100%, var(--site-section-heading-max, 1680px));
  max-width: var(--site-section-heading-max, 1680px);
  margin-inline: auto;
  margin-bottom: clamp(26px, 3vw, 44px);
}

main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(max-content, 1fr);
  align-items: start;
  column-gap: clamp(28px, 5vw, 96px);
  row-gap: 16px;
}

main > section#location .location-copy-stack .section-description {
  grid-column: 1;
  width: min(100%, 690px) !important;
  max-width: 690px !important;
  color: rgba(21, 17, 13, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.52;
}

main > section#location .location-map-button {
  grid-column: 2;
  justify-self: end;
  align-self: start;
  width: fit-content;
  min-height: 42px;
  min-width: 0;
  border-color: rgba(21, 17, 13, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(232, 218, 193, 0.88));
  color: var(--ink);
  box-shadow:
    0 14px 36px rgba(21, 17, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 360ms var(--ease-out-expo),
    border-color 240ms ease,
    background 280ms ease,
    box-shadow 360ms ease,
    color 200ms ease;
  will-change: transform;
}

main > section#location .location-map-button:hover,
main > section#location .location-map-button:focus-visible {
  border-color: rgba(21, 17, 13, 0.28);
  background:
    linear-gradient(180deg, #fffaf0, #ead9b7);
  color: var(--ink);
  box-shadow:
    0 18px 46px rgba(21, 17, 13, 0.16),
    0 0 0 3px rgba(185, 120, 74, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translate3d(0, -2px, 0) scale(1.012);
}

main > section#location .location-map-button:active {
  box-shadow:
    0 10px 24px rgba(21, 17, 13, 0.12),
    inset 0 2px 5px rgba(21, 17, 13, 0.08);
  transform: translate3d(0, 0, 0) scale(0.982);
}

main > section#location .location-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 18px);
  margin-bottom: 0;
}

main > section#location .location-points article {
  min-height: 0;
  padding: clamp(16px, 1.35vw, 22px);
  border-color: rgba(21, 17, 13, 0.11);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 48px rgba(21, 17, 13, 0.075);
}

main > section#location .location-points span {
  margin-bottom: 13px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

main > section#location .location-points strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
}

main > section#location .location-points p {
  margin-top: 10px;
  color: rgba(21, 17, 13, 0.66);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.42;
}

.location-map-viewer {
  overflow: hidden;
  padding: clamp(22px, 4vw, 48px);
  transition:
    opacity 780ms ease,
    visibility 0s linear 780ms;
}

html:has(body.location-map-open) {
  overflow: hidden !important;
}

body.location-map-open {
  overflow-x: hidden !important;
  overflow-y: clip !important;
}

body.location-map-open main,
body.location-map-open .site-header,
body.location-map-open .site-footer {
  opacity: 0.38;
  filter: blur(1.4px) saturate(0.72) contrast(0.88) brightness(0.92);
  transform: scale(0.992);
  transform-origin: center top;
  transition:
    opacity 940ms ease,
    filter 1080ms var(--ease-out-expo),
    transform 1080ms var(--ease-out-expo);
}

body.location-map-open .location-map-viewer {
  transition-delay: 0s;
}

.location-map-backdrop {
  background: transparent;
  backdrop-filter: none;
}

.location-map-panel {
  width: min(1540px, 100%);
  aspect-ratio: 1672 / 941;
  height: auto;
  max-height: calc(100svh - clamp(44px, 8vw, 96px));
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 44px, 0) scale(0.965);
  transition:
    transform 1120ms var(--ease-out-expo),
    opacity 820ms ease,
    filter 1120ms var(--ease-out-expo);
  will-change: transform, opacity, filter;
}

body.location-map-open .location-map-panel {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.location-map-panel-head {
  position: absolute;
  top: clamp(12px, 1.4vw, 22px);
  right: clamp(12px, 1.4vw, 22px);
  z-index: 3;
  display: block;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.location-map-panel-head > div {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.location-map-close {
  pointer-events: auto;
  border-color: rgba(21, 17, 13, 0.14);
  background: rgba(255, 250, 240, 0.9);
  box-shadow:
    0 16px 42px rgba(21, 17, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 320ms var(--ease-out-expo),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 320ms ease;
  will-change: transform;
}

.location-map-close:hover,
.location-map-close:focus-visible {
  border-color: rgba(185, 120, 74, 0.36);
  background: rgb(255, 250, 240);
  transform: translate3d(0, -1px, 0) scale(1.035);
}

.location-map-close:active {
  box-shadow:
    0 8px 24px rgba(21, 17, 13, 0.14),
    inset 0 2px 5px rgba(21, 17, 13, 0.1);
  transform: translate3d(0, 0, 0) scale(0.94);
}

.location-map-scroll {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  isolation: isolate;
}

.location-map-scroll::after {
  content: none;
}

.location-map-scroll img {
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
  filter: sepia(0.48) saturate(0.5) contrast(0.8) brightness(1.18);
}

@media (max-width: 1100px) {
  main > section#location .location-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading {
    grid-template-columns: 1fr !important;
    width: 100%;
    margin-bottom: 24px;
  }

  main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
    grid-template-columns: 1fr;
  }

  main > section#location .location-copy-stack .section-description {
    font-size: 16px;
    line-height: 1.5;
  }

  main > section#location .location-map-button {
    grid-column: 1;
    justify-self: start;
  }

  .location-map-scroll {
    padding: 0;
  }
}

@media (max-width: 640px) {
  main > section#location .location-points {
    grid-template-columns: 1fr;
  }

  main > section#location .location-points article {
    padding: 16px;
  }

  main > section#location .location-points p {
    font-size: 13.5px;
  }
}

/* Final map cards pass: compact copy, unified markers and readable tooltips. */
.renovation-map.territory-map {
  --map-label-height: 44px;
  --map-number-size: 22px;
  --map-tooltip-width: 232px;
  --map-tooltip-pad: 14px;
  overflow: visible;
}

.renovation-map.territory-map .map-zone-label {
  min-width: 0 !important;
  max-width: 164px;
  min-height: var(--map-label-height);
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(123, 81, 47, 0.18);
  border-radius: 999px;
  background: rgb(255, 250, 240);
  color: rgba(28, 22, 16, 0.9);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  filter: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none;
}

.renovation-map.territory-map .map-zone::after,
.renovation-map.territory-map .map-zone-label::before,
.renovation-map.territory-map .map-zone-label::after {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
  filter: none !important;
  background: none !important;
}

.zone-rooms .map-zone-label,
.zone-vip .map-zone-label,
.zone-suites .map-zone-label,
.zone-parking .map-zone-label,
.zone-cafe .map-zone-label,
.zone-banya .map-zone-label,
.zone-territory .map-zone-label {
  min-width: 0 !important;
}

.renovation-map.territory-map .zone-rooms {
  top: 23.05% !important;
}

.renovation-map.territory-map .zone-rooms .map-zone-label { min-width: 154px !important; }
.renovation-map.territory-map .zone-vip .map-zone-label { min-width: 142px !important; }
.renovation-map.territory-map .zone-suites .map-zone-label { min-width: 154px !important; }
.renovation-map.territory-map .zone-parking .map-zone-label { min-width: 112px !important; }
.renovation-map.territory-map .zone-cafe .map-zone-label { min-width: 100px !important; }
.renovation-map.territory-map .zone-banya .map-zone-label { min-width: 166px !important; }
.renovation-map.territory-map .zone-territory .map-zone-label { min-width: 128px !important; }

.renovation-map.territory-map .map-zone-label > span {
  width: var(--map-number-size);
  height: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  border: 1px solid rgba(123, 81, 47, 0.2);
  background: rgba(226, 201, 158, 0.72);
  color: #68462c;
  font-size: 10.5px;
  font-weight: 820;
  box-shadow: none !important;
  filter: none !important;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label,
.renovation-map.territory-map .map-zone:focus .map-zone-label,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label {
  border-color: rgba(123, 81, 47, 0.28);
  background: rgb(255, 250, 240);
  color: var(--ink);
  box-shadow: none;
}

.renovation-map.territory-map .zone-vip {
  top: 24% !important;
  --map-tooltip-width: 232px;
  --tooltip-x: -50%;
  --tooltip-y-closed: 14px;
  --tooltip-y-open: 0;
}

.renovation-map.territory-map .zone-vip .map-tooltip {
  top: auto !important;
  bottom: calc(var(--map-label-height) / 2 + 18px) !important;
  left: 0 !important;
  right: auto !important;
  width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
  height: auto !important;
  min-height: 0 !important;
  transform-origin: 50% 100% !important;
  transform: translate(var(--tooltip-x), var(--tooltip-y-closed)) scale(0.985) !important;
}

.renovation-map.territory-map .zone-vip:hover .map-tooltip,
.renovation-map.territory-map .zone-vip:focus .map-tooltip,
.renovation-map.territory-map .zone-vip:focus-visible .map-tooltip {
  transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1) !important;
}

.renovation-map.territory-map .map-tooltip {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text"
    "list list";
  align-items: start;
  column-gap: 10px;
  row-gap: 4px;
  width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  top: auto !important;
  bottom: calc(var(--map-label-height) / 2 + 18px) !important;
  left: 0 !important;
  right: auto !important;
  padding: var(--map-tooltip-pad) !important;
  border: 1px solid rgba(123, 81, 47, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(246, 235, 218, 0.96));
  color: var(--ink);
  box-shadow:
    0 24px 62px rgba(21, 17, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transform-origin: 50% 100% !important;
  will-change: opacity, transform;
  transition:
    opacity 460ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 460ms !important;
  transform: translate(var(--tooltip-x, -50%), var(--tooltip-y-closed, 14px)) scale(0.985) !important;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip {
  transition:
    opacity 460ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 0ms !important;
  transform: translate(var(--tooltip-x, -50%), var(--tooltip-y-open, 0)) scale(1) !important;
}

.renovation-map.territory-map .map-tooltip::before,
.renovation-map.territory-map .map-tooltip::after {
  content: none !important;
}

.map-tooltip-icon {
  grid-area: icon;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 81, 47, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.82);
  color: #8c5a38;
}

.map-tooltip-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-tooltip-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.renovation-map.territory-map .map-tooltip strong {
  grid-area: title;
  margin: 1px 0 0;
  color: rgba(28, 22, 16, 0.94);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.14;
  letter-spacing: 0;
}

.renovation-map.territory-map .map-tooltip small {
  grid-area: text;
  display: block;
  color: rgba(28, 22, 16, 0.68);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
}

.renovation-map.territory-map .map-tooltip-list {
  grid-area: list;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(123, 81, 47, 0.12);
}

.renovation-map.territory-map .map-tooltip-list span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(28, 22, 16, 0.64);
  font-size: 10.5px;
  font-weight: 640;
  line-height: 1.1;
  white-space: normal;
}

.renovation-map.territory-map .map-tooltip-list span::before {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  background: #9a6240;
  opacity: 0.72;
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-height: 32px;
    --map-number-size: 18px;
    --map-tooltip-width: 188px;
    --map-tooltip-pad: 10px;
  }

  .renovation-map.territory-map .map-zone-label {
    max-width: 118px;
    gap: 5px;
    padding: 4px 8px 4px 4px;
    font-size: 8.8px;
  }

  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label {
    min-width: 118px !important;
  }

  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    min-width: 96px !important;
  }

  .renovation-map.territory-map .zone-vip {
    top: 24% !important;
    --map-tooltip-width: 188px;
    --tooltip-x: -50%;
    --tooltip-y-closed: 14px;
    --tooltip-y-open: 0;
  }

  .renovation-map.territory-map .zone-vip .map-tooltip {
    top: auto !important;
    bottom: calc(var(--map-label-height) / 2 + 14px) !important;
    width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
    height: auto !important;
    min-height: 0 !important;
    transform-origin: 50% 100% !important;
    transform: translate(var(--tooltip-x), var(--tooltip-y-closed)) scale(0.985) !important;
  }

  .renovation-map.territory-map .zone-vip:hover .map-tooltip,
  .renovation-map.territory-map .zone-vip:focus .map-tooltip,
  .renovation-map.territory-map .zone-vip:focus-visible .map-tooltip {
    transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1) !important;
  }

  .renovation-map.territory-map .zone-cafe {
    --tooltip-x: -94%;
  }

  .renovation-map.territory-map .zone-banya {
    --tooltip-x: -108%;
  }

  .renovation-map.territory-map .zone-cafe .map-tooltip {
    transform: translate(-94%, var(--tooltip-y-closed, 14px)) scale(0.985) !important;
  }

  .renovation-map.territory-map .zone-cafe:hover .map-tooltip,
  .renovation-map.territory-map .zone-cafe:focus .map-tooltip,
  .renovation-map.territory-map .zone-cafe:focus-visible .map-tooltip {
    transform: translate(-94%, var(--tooltip-y-open, 0)) scale(1) !important;
  }

  .renovation-map.territory-map .zone-banya .map-tooltip {
    transform: translate(-108%, var(--tooltip-y-closed, 14px)) scale(0.985) !important;
  }

  .renovation-map.territory-map .zone-banya:hover .map-tooltip,
  .renovation-map.territory-map .zone-banya:focus .map-tooltip,
  .renovation-map.territory-map .zone-banya:focus-visible .map-tooltip {
    transform: translate(-108%, var(--tooltip-y-open, 0)) scale(1) !important;
  }

  .renovation-map.territory-map .map-zone-label > span {
    font-size: 9.5px;
  }

  .renovation-map.territory-map .map-tooltip {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 3px;
    border-radius: 7px;
  }

  .map-tooltip-icon {
    width: 26px;
    height: 26px;
  }

  .map-tooltip-icon svg {
    width: 14px;
    height: 14px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 12px;
    line-height: 1.12;
  }

  .renovation-map.territory-map .map-tooltip small {
    font-size: 10.2px;
    line-height: 1.28;
  }

  .renovation-map.territory-map .map-tooltip-list {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 4px;
    padding-top: 6px;
  }

  .renovation-map.territory-map .map-tooltip-list span {
    padding: 0;
    background: transparent;
    font-size: 9.5px;
  }
}

/* Location motion polish: smoother map button and softer route map reveal. */
main > section#location .location-map-button {
  transition:
    transform 620ms cubic-bezier(0.2, 0.9, 0.22, 1),
    border-color 420ms ease,
    background 520ms ease,
    box-shadow 640ms cubic-bezier(0.2, 0.9, 0.22, 1),
    color 320ms ease;
}

main > section#location .location-map-button::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.38), transparent 58%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.2), rgba(185, 120, 74, 0.1));
  transform: translate3d(0, 78%, 0) scale(0.98);
  transition:
    opacity 520ms ease,
    transform 820ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

main > section#location .location-map-button:hover,
main > section#location .location-map-button:focus-visible {
  box-shadow:
    0 20px 54px rgba(21, 17, 13, 0.14),
    0 0 0 3px rgba(185, 120, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translate3d(0, -1px, 0) scale(1.006);
}

main > section#location .location-map-button:hover::before,
main > section#location .location-map-button:focus-visible::before {
  transform: translate3d(0, 0, 0) scale(1);
}

main > section#location .location-map-button:active {
  transform: translate3d(0, 0, 0) scale(0.992);
  transition-duration: 180ms, 220ms, 220ms, 220ms, 180ms;
}

.location-map-viewer {
  background: rgba(15, 11, 8, 0);
  transition:
    opacity 920ms ease,
    background 1040ms ease,
    visibility 0s linear 920ms;
}

body.location-map-open .location-map-viewer {
  background: rgba(15, 11, 8, 0.08);
}

.location-map-backdrop {
  opacity: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 240, 0.16), transparent 34%),
    rgba(15, 11, 8, 0.16);
  backdrop-filter: blur(0px);
  transition:
    opacity 980ms ease,
    backdrop-filter 1180ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

body.location-map-open .location-map-backdrop {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.location-map-panel {
  opacity: 0;
  filter: blur(11px) saturate(0.94) brightness(1.04);
  transform: translate3d(0, 34px, 0) scale(0.982);
  transition:
    transform 1280ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 920ms ease,
    filter 1240ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.location-map-open .location-map-panel {
  filter: blur(0) saturate(1) brightness(1);
  transition-delay: 70ms;
}

.location-map-close {
  transition:
    transform 520ms cubic-bezier(0.2, 0.9, 0.22, 1),
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 520ms ease;
}

.location-map-close:hover,
.location-map-close:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.02);
}

.location-map-close:active {
  transform: translate3d(0, 0, 0) scale(0.97);
}

/* Location map anti-sharpness pass: avoid blur snap on the large route image. */
.location-map-panel {
  filter: none;
  contain: paint;
  backface-visibility: hidden;
  transform-origin: center 52%;
  transform: translate3d(0, 24px, 0) scale(0.988);
  transition:
    transform 1500ms cubic-bezier(0.18, 1, 0.22, 1),
    opacity 1120ms ease;
  will-change: transform, opacity;
}

.location-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 250, 240, 0.18), transparent 58%),
    rgba(255, 250, 240, 0.28);
  opacity: 1;
  pointer-events: none;
  transition: opacity 1180ms ease 160ms;
}

body.location-map-open .location-map-panel {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

body.location-map-open .location-map-panel::before {
  opacity: 0;
}

.location-map-scroll img {
  opacity: 0.82;
  transform: translate3d(0, 12px, 0) scale(1.006);
  transform-origin: center;
  backface-visibility: hidden;
  image-rendering: auto;
  transition:
    opacity 1180ms ease 120ms,
    transform 1500ms cubic-bezier(0.18, 1, 0.22, 1) 80ms;
  will-change: transform, opacity;
}

body.location-map-open .location-map-scroll img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.location-map-backdrop {
  transition:
    opacity 1120ms ease,
    backdrop-filter 1360ms cubic-bezier(0.18, 1, 0.22, 1);
}

body.location-map-open .location-map-backdrop {
  backdrop-filter: blur(7px);
}

/* Location map color pass: warmer site tone with clearer route lines. */
.location-map-scroll {
  background:
    linear-gradient(180deg, #f3ead8 0%, #ead9bd 100%);
}

.location-map-scroll img {
  filter: sepia(0.2) saturate(0.96) contrast(1.32) brightness(0.99);
  mix-blend-mode: multiply;
}

body.location-map-open .location-map-scroll img {
  opacity: 1 !important;
  filter: sepia(0.2) saturate(0.96) contrast(1.32) brightness(0.99);
}

/* Territory map final alignment: equal badges, roof placement, structured cards. */
.renovation-map.territory-map {
  --map-label-width: 132px;
  --map-label-height: 38px;
  --map-number-size: 22px;
  --map-tooltip-width: 248px;
  --map-tooltip-height: 204px;
  --map-tooltip-pad: 14px;
}

.renovation-map.territory-map .map-zone-label,
.renovation-map.territory-map .zone-rooms .map-zone-label,
.renovation-map.territory-map .zone-vip .map-zone-label,
.renovation-map.territory-map .zone-suites .map-zone-label,
.renovation-map.territory-map .zone-parking .map-zone-label,
.renovation-map.territory-map .zone-cafe .map-zone-label,
.renovation-map.territory-map .zone-banya .map-zone-label,
.renovation-map.territory-map .zone-territory .map-zone-label {
  width: var(--map-label-width) !important;
  min-width: var(--map-label-width) !important;
  max-width: var(--map-label-width) !important;
  height: var(--map-label-height) !important;
  min-height: var(--map-label-height) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 10px !important;
  border-radius: 999px;
  text-align: center;
  line-height: 1;
}

.renovation-map.territory-map .map-zone-label > .map-zone-number {
  width: var(--map-number-size);
  height: var(--map-number-size);
  min-width: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(123, 81, 47, 0.2);
  border-radius: 50%;
  background: rgba(226, 201, 158, 0.78);
  color: #68462c;
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1;
}

.renovation-map.territory-map .map-zone-label > .map-zone-name {
  width: auto;
  height: auto;
  min-width: 0;
  flex: 0 1 auto;
  display: block;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none !important;
  filter: none !important;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label > .map-zone-name,
.renovation-map.territory-map .map-zone:focus .map-zone-label > .map-zone-name,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label > .map-zone-name {
  width: auto;
  height: auto;
  min-width: 0;
  flex: 0 1 auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none !important;
  filter: none !important;
}

.renovation-map.territory-map .zone-rooms {
  left: 26.6% !important;
  top: 22.65% !important;
}

.renovation-map.territory-map .zone-vip {
  left: 58.6% !important;
  top: 20.6% !important;
  --map-tooltip-width: 248px;
  --map-tooltip-height: 204px;
}

.renovation-map.territory-map .zone-vip .map-tooltip {
  width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
  height: var(--map-tooltip-height) !important;
  min-height: var(--map-tooltip-height) !important;
}

.renovation-map.territory-map .map-tooltip {
  width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
  height: var(--map-tooltip-height) !important;
  min-height: var(--map-tooltip-height) !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title"
    "icon text"
    "list list";
  align-items: start;
  column-gap: 12px;
  row-gap: 7px;
  padding: var(--map-tooltip-pad) !important;
}

.renovation-map.territory-map .map-tooltip-icon {
  width: 38px;
  height: 38px;
  align-self: start;
  display: grid;
  place-items: center;
}

.renovation-map.territory-map .map-tooltip-icon svg {
  width: 18px;
  height: 18px;
}

.renovation-map.territory-map .map-tooltip strong {
  align-self: end;
  margin: 1px 0 0;
  font-size: 14px;
  line-height: 1.16;
}

.renovation-map.territory-map .map-tooltip small {
  align-self: start;
  min-height: 48px;
  font-size: 12px;
  line-height: 1.36;
}

.renovation-map.territory-map .map-tooltip-list {
  align-self: end;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 0;
  padding-top: 9px;
}

.renovation-map.territory-map .map-tooltip-list span {
  min-height: 13px;
  align-items: center;
  font-size: 10.5px;
  line-height: 1.12;
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-width: 108px;
    --map-label-height: 32px;
    --map-number-size: 18px;
    --map-tooltip-width: 196px;
    --map-tooltip-height: 178px;
    --map-tooltip-pad: 10px;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-name {
    font-size: 8.8px;
  }

  .renovation-map.territory-map .zone-vip {
    top: 21% !important;
  }

  .renovation-map.territory-map .map-tooltip {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 4px;
  }

  .renovation-map.territory-map .map-tooltip-icon {
    width: 28px;
    height: 28px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 12px;
  }

  .renovation-map.territory-map .map-tooltip small {
    min-height: 40px;
    font-size: 10px;
  }
}

/* Territory map collision fix: move busy badges off artwork and restore VIP roof detail. */
.renovation-map.territory-map .zone-rooms {
  left: 23.9% !important;
  top: 18.9% !important;
}

.renovation-map.territory-map .zone-suites {
  left: 48.6% !important;
  top: 31.6% !important;
}

.renovation-map.territory-map .zone-banya {
  left: 86.2% !important;
  top: 17.4% !important;
}

.renovation-map.territory-map > .map-building-vip {
  display: block !important;
  z-index: 8;
  left: 52.2%;
  top: 18.8%;
  width: 12.8%;
  height: 12.4%;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 250, 240, 0.22) 49% 51%, transparent 52%),
    linear-gradient(135deg, rgba(20, 63, 54, 0.94) 0%, rgba(36, 82, 68, 0.96) 48%, rgba(15, 43, 38, 0.96) 100%);
  box-shadow:
    0 13px 26px rgba(21, 17, 13, 0.22),
    inset 0 1px 0 rgba(255, 250, 240, 0.18);
  opacity: 0.96;
  transform: rotate(10deg);
  pointer-events: none;
}

.renovation-map.territory-map > .map-building-vip::before {
  content: "";
  position: absolute;
  left: -6%;
  right: 6%;
  top: -22%;
  height: 28%;
  border-radius: 5px 5px 2px 2px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(40, 83, 70, 0.98), rgba(17, 48, 42, 0.98));
  box-shadow:
    0 5px 10px rgba(21, 17, 13, 0.14),
    inset 0 1px 0 rgba(255, 250, 240, 0.18);
  transform: skewX(-20deg);
  transform-origin: bottom left;
}

.renovation-map.territory-map > .map-building-vip::after {
  height: 12px;
  background: rgba(75, 50, 34, 0.26);
}

@media (max-width: 620px) {
  .renovation-map.territory-map .zone-rooms {
    left: 22.8% !important;
    top: 19.4% !important;
  }

  .renovation-map.territory-map .zone-suites {
    left: 47.8% !important;
    top: 32.6% !important;
  }

  .renovation-map.territory-map .zone-banya {
    left: 86.8% !important;
    top: 20.4% !important;
  }
}

/* Location business-route pass: compact animated CTA, clearer map tone, smoother modal return. */
main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
  grid-template-columns: minmax(0, 700px) minmax(240px, 330px) !important;
  align-items: start;
}

main > section#location .location-copy-stack .section-description {
  max-width: 700px !important;
}

main > section#location .location-route-cta {
  position: relative;
  grid-column: 2;
  justify-self: end;
  width: min(100%, 316px);
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(21, 17, 13, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(230, 217, 193, 0.78)),
    rgba(255, 250, 240, 0.82);
  color: var(--ink);
  box-shadow:
    0 20px 54px rgba(21, 17, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  animation: locationRouteDrift 7.6s var(--ease-soft) infinite;
  isolation: isolate;
}

main > section#location .location-route-cta::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 1px solid rgba(185, 120, 74, 0.13);
  border-radius: 7px;
  opacity: 0.74;
  pointer-events: none;
}

main > section#location .location-route-cta::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  top: 50%;
  z-index: -1;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(99, 141, 156, 0.5), rgba(185, 120, 74, 0.42), transparent);
  transform: translateY(-50%);
  opacity: 0.56;
}

main > section#location .location-route-cta-kicker {
  color: rgba(28, 22, 16, 0.64);
  font-size: 10px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

main > section#location .location-route-cta small {
  color: rgba(28, 22, 16, 0.58);
  font-size: 11px;
  font-weight: 660;
  line-height: 1.28;
}

main > section#location .location-route-cta .location-map-button {
  position: relative;
  grid-column: auto !important;
  justify-self: start !important;
  min-height: 36px;
  padding: 8px 13px 8px 10px;
  gap: 8px;
  overflow: hidden;
  border-color: rgba(21, 17, 13, 0.2);
  background:
    linear-gradient(180deg, #fffaf0, #ead8b8);
  color: rgba(28, 22, 16, 0.95);
  box-shadow:
    0 12px 28px rgba(21, 17, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

main > section#location .location-route-cta .location-map-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.62), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(185, 120, 74, 0.08));
  opacity: 0.68;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

main > section#location .location-route-cta .location-map-button::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -72%;
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  transform: translate3d(-20%, 0, 0) rotate(12deg);
  animation: locationRouteShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

main > section#location .location-route-cta .location-map-button > span {
  position: relative;
  z-index: 1;
}

main > section#location .location-map-button-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  border: 1px solid rgba(99, 141, 156, 0.42);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: inset 0 0 0 3px rgba(99, 141, 156, 0.08);
}

main > section#location .location-map-button-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8c5a38;
  box-shadow:
    0 0 0 4px rgba(185, 120, 74, 0.11),
    7px -4px 0 -2px rgba(99, 141, 156, 0.9);
  animation: locationRoutePulse 2.8s ease-in-out infinite;
}

main > section#location .location-route-cta:hover .location-map-button,
main > section#location .location-route-cta:focus-within .location-map-button {
  border-color: rgba(99, 141, 156, 0.42);
  background:
    linear-gradient(180deg, #fffdf7, #f0ddb8);
  box-shadow:
    0 18px 42px rgba(21, 17, 13, 0.17),
    0 0 0 3px rgba(99, 141, 156, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

main > section#location .location-points article:nth-child(4) {
  border-color: rgba(99, 141, 156, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(226, 237, 234, 0.72));
}

body main,
body .site-header,
body .site-footer {
  transition:
    opacity 860ms ease,
    filter 980ms var(--ease-out-expo),
    transform 980ms var(--ease-out-expo);
}

.location-map-viewer {
  background: rgba(14, 10, 7, 0);
  transition:
    opacity 980ms ease,
    background 1180ms ease,
    visibility 0s linear 980ms;
}

body.location-map-open .location-map-viewer {
  background: rgba(14, 10, 7, 0.1);
}

.location-map-backdrop {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 240, 0.18), transparent 38%),
    rgba(14, 10, 7, 0.24);
  transition:
    opacity 1040ms ease,
    backdrop-filter 1280ms var(--ease-out-expo);
}

body.location-map-open .location-map-backdrop {
  backdrop-filter: blur(8px);
}

.location-map-panel {
  width: min(1540px, calc(100vw - clamp(44px, 8vw, 96px)), 154vh) !important;
  border-radius: clamp(8px, 1.2vw, 16px);
  background: #efe3d0;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 250, 240, 0.28);
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.986);
  transition:
    transform 1320ms var(--ease-out-expo),
    opacity 940ms ease;
  will-change: transform, opacity;
}

body.location-map-open .location-map-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.location-map-panel::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 240, 0.16), transparent 58%),
    rgba(255, 250, 240, 0.16);
  transition: opacity 1250ms ease 140ms;
}

.location-map-scroll {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f1e6d5 0%, #eadbc4 100%);
}

.location-map-scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(88, 61, 38, 0.1),
    inset 0 -34px 70px rgba(70, 48, 30, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%, rgba(80, 55, 34, 0.05));
  pointer-events: none;
}

.location-map-scroll img,
body.location-map-open .location-map-scroll img {
  opacity: 1 !important;
  filter: saturate(1.1) contrast(1.18) brightness(1.035) sepia(0.035) !important;
  mix-blend-mode: normal !important;
}

@keyframes locationRouteDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  45% {
    transform: translate3d(0, -5px, 0);
  }

  70% {
    transform: translate3d(3px, -2px, 0);
  }
}

@keyframes locationRouteShine {
  0%,
  46% {
    transform: translate3d(-20%, 0, 0) rotate(12deg);
    opacity: 0;
  }

  56% {
    opacity: 0.76;
  }

  72%,
  100% {
    transform: translate3d(360%, 0, 0) rotate(12deg);
    opacity: 0;
  }
}

@keyframes locationRoutePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.72);
    opacity: 0.72;
  }
}

@media (max-width: 760px) {
  main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
    grid-template-columns: 1fr !important;
  }

  main > section#location .location-route-cta {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 330px);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section#location .location-route-cta,
  main > section#location .location-route-cta .location-map-button::after,
  main > section#location .location-map-button-icon::before {
    animation: none !important;
  }

  .location-map-viewer,
  .location-map-backdrop,
  .location-map-panel,
  .location-map-panel::before,
  .location-map-scroll img {
    transition-duration: 1ms !important;
  }
}

/* Territory map repair: clean baked labels, roof-aligned badges and compact popovers. */
.renovation-map.territory-map {
  --map-label-height: 34px;
  --map-label-width: auto;
  --map-number-size: 22px;
  --map-tooltip-width: 226px;
  --map-tooltip-pad: 12px;
  --map-tooltip-height: auto;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 240, 0.05), rgba(21, 17, 13, 0.08)),
    url("assets/territory-map-aerial-clean-ui.png") !important;
  background-size: cover !important;
  background-position: center !important;
}

.renovation-map.territory-map > .map-building-vip,
.renovation-map.territory-map > .map-building-vip::before,
.renovation-map.territory-map > .map-building-vip::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

.renovation-map.territory-map .map-zone {
  width: max-content;
  min-width: max-content;
  height: var(--map-label-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transform: translate(-50%, -50%);
  --tooltip-x: -50%;
  --tooltip-y-closed: -10px;
  --tooltip-y-open: 0;
}

.renovation-map.territory-map .zone-rooms {
  left: 32.8% !important;
  top: 31.6% !important;
}

.renovation-map.territory-map .zone-vip {
  left: 58.6% !important;
  top: 21.5% !important;
}

.renovation-map.territory-map .zone-suites {
  left: 61.2% !important;
  top: 39.6% !important;
}

.renovation-map.territory-map .zone-banya {
  left: 82.6% !important;
  right: auto !important;
  top: 30.8% !important;
}

.renovation-map.territory-map .map-zone-label,
.renovation-map.territory-map .zone-rooms .map-zone-label,
.renovation-map.territory-map .zone-vip .map-zone-label,
.renovation-map.territory-map .zone-suites .map-zone-label,
.renovation-map.territory-map .zone-parking .map-zone-label,
.renovation-map.territory-map .zone-cafe .map-zone-label,
.renovation-map.territory-map .zone-banya .map-zone-label,
.renovation-map.territory-map .zone-territory .map-zone-label {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: var(--map-label-height) !important;
  min-height: var(--map-label-height) !important;
  position: relative !important;
  inset: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 5px 12px 5px 6px !important;
  border: 1px solid rgba(88, 61, 38, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.94);
  color: rgba(31, 24, 17, 0.9);
  box-shadow:
    0 13px 30px rgba(21, 17, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  transform: none !important;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 320ms var(--ease-soft),
    transform 320ms var(--ease-soft);
}

.renovation-map.territory-map .map-zone-label > .map-zone-number {
  width: var(--map-number-size);
  height: var(--map-number-size);
  min-width: var(--map-number-size);
  flex: 0 0 var(--map-number-size);
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(137, 83, 47, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.92), transparent 58%),
    linear-gradient(180deg, rgba(216, 195, 155, 0.82), rgba(185, 120, 74, 0.24));
  color: #6b4a2e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 1px 4px rgba(21, 17, 13, 0.08);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 860;
  line-height: 1;
}

.renovation-map.territory-map .map-zone-label > .map-zone-name {
  width: auto;
  min-width: 0;
  display: block;
  color: inherit;
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1;
}

.renovation-map.territory-map .map-zone:hover,
.renovation-map.territory-map .map-zone:focus,
.renovation-map.territory-map .map-zone:focus-visible,
.renovation-map.territory-map .map-zone.is-map-zone-open {
  z-index: 60;
  outline: none;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label,
.renovation-map.territory-map .map-zone:focus .map-zone-label,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label,
.renovation-map.territory-map .map-zone.is-map-zone-open .map-zone-label {
  border-color: rgba(88, 61, 38, 0.34);
  background: rgba(255, 250, 240, 0.99);
  color: var(--ink);
  box-shadow:
    0 16px 38px rgba(21, 17, 13, 0.24),
    0 0 0 3px rgba(255, 250, 240, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: scale(1.025) !important;
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-zone-label {
  border-color: rgba(88, 61, 38, 0.2);
  background: rgba(255, 250, 240, 0.94);
  color: rgba(31, 24, 17, 0.9);
  transform: none !important;
}

.renovation-map.territory-map .map-tooltip,
.renovation-map.territory-map .zone-vip .map-tooltip {
  top: auto !important;
  right: auto !important;
  bottom: calc(100% + 10px) !important;
  left: 50% !important;
  width: min(var(--map-tooltip-width), calc(100vw - 44px)) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "text text"
    "list list";
  align-items: center;
  column-gap: 10px;
  row-gap: 8px;
  padding: var(--map-tooltip-pad) !important;
  border: 1px solid rgba(88, 61, 38, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 230, 211, 0.97));
  color: var(--ink);
  box-shadow:
    0 22px 56px rgba(21, 17, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--tooltip-x), var(--tooltip-y-closed)) scale(0.985) !important;
  transform-origin: 50% 100% !important;
  transition:
    opacity 300ms ease,
    transform 420ms var(--ease-soft),
    visibility 0ms linear 300ms !important;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip,
.renovation-map.territory-map .map-zone.is-map-zone-open .map-tooltip,
.renovation-map.territory-map .zone-vip:hover .map-tooltip,
.renovation-map.territory-map .zone-vip:focus .map-tooltip,
.renovation-map.territory-map .zone-vip:focus-visible .map-tooltip,
.renovation-map.territory-map .zone-vip.is-map-zone-open .map-tooltip {
  opacity: 1;
  transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1) !important;
  transition:
    opacity 300ms ease,
    transform 420ms var(--ease-soft),
    visibility 0ms linear 0ms !important;
}

.renovation-map.territory-map .map-zone:focus:not(:focus-visible):not(:hover) .map-tooltip {
  opacity: 1;
  filter: none;
  transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1) !important;
}

.renovation-map.territory-map .map-tooltip-icon {
  grid-area: icon;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(137, 83, 47, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.82);
  color: #8c5a38;
}

.renovation-map.territory-map .map-tooltip-icon svg {
  width: 15px;
  height: 15px;
}

.renovation-map.territory-map .map-tooltip strong {
  grid-area: title;
  margin: 0;
  color: rgba(28, 22, 16, 0.95);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.16;
  letter-spacing: 0;
}

.renovation-map.territory-map .map-tooltip small {
  grid-area: text;
  min-height: 0 !important;
  color: rgba(28, 22, 16, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.34;
}

.renovation-map.territory-map .map-tooltip-list {
  grid-area: list;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(137, 83, 47, 0.12);
}

.renovation-map.territory-map .map-tooltip-list span {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  color: rgba(28, 22, 16, 0.64);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.renovation-map.territory-map .map-tooltip-list span::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: #9a6240;
  opacity: 0.72;
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-height: 29px;
    --map-number-size: 18px;
    --map-tooltip-width: 188px;
    --map-tooltip-pad: 10px;
  }

  .renovation-map.territory-map .zone-rooms {
    left: 32.4% !important;
    top: 32% !important;
  }

  .renovation-map.territory-map .zone-vip {
    top: 22.4% !important;
  }

  .renovation-map.territory-map .zone-suites {
    left: 60.6% !important;
    top: 40.2% !important;
  }

  .renovation-map.territory-map .zone-banya {
    left: 83% !important;
    top: 31.8% !important;
  }

  .renovation-map.territory-map .map-zone-label,
  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    gap: 5px;
    padding: 4px 8px 4px 5px !important;
    font-size: 8.6px;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-name {
    font-size: 8.6px;
  }

  .renovation-map.territory-map .map-tooltip {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 6px;
  }

  .renovation-map.territory-map .map-tooltip-icon {
    width: 26px;
    height: 26px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 11.4px;
  }

  .renovation-map.territory-map .map-tooltip small {
    font-size: 9.7px;
  }

  .renovation-map.territory-map .map-tooltip-list span {
    padding: 3px 5px;
    font-size: 8.5px;
  }
}

/* Territory map artifact reset: keep the original render and recolor the baked flag positions. */
.renovation-map.territory-map {
  --map-label-height: 36px;
  --map-number-size: 22px;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(21, 17, 13, 0.055)),
    url("assets/territory-map-aerial.png") !important;
  background-size: cover !important;
  background-position: center !important;
}

.renovation-map.territory-map .zone-rooms {
  left: 26.86% !important;
  top: 23.3% !important;
}

.renovation-map.territory-map .zone-vip {
  left: 58.6% !important;
  top: 14.32% !important;
  --tooltip-y-closed: 10px;
}

.renovation-map.territory-map .zone-suites {
  left: 52.8% !important;
  top: 35.54% !important;
}

.renovation-map.territory-map .zone-parking {
  left: 39.47% !important;
  top: 51.8% !important;
}

.renovation-map.territory-map .zone-cafe {
  left: 76.93% !important;
  right: auto !important;
  top: 73.53% !important;
  bottom: auto !important;
}

.renovation-map.territory-map .zone-banya {
  left: 83.81% !important;
  right: auto !important;
  top: 21.04% !important;
  --tooltip-y-closed: 10px;
}

.renovation-map.territory-map .zone-territory {
  left: 70.68% !important;
  top: 47.42% !important;
}

.renovation-map.territory-map .map-zone-label,
.renovation-map.territory-map .zone-rooms .map-zone-label,
.renovation-map.territory-map .zone-vip .map-zone-label,
.renovation-map.territory-map .zone-suites .map-zone-label,
.renovation-map.territory-map .zone-parking .map-zone-label,
.renovation-map.territory-map .zone-cafe .map-zone-label,
.renovation-map.territory-map .zone-banya .map-zone-label,
.renovation-map.territory-map .zone-territory .map-zone-label {
  box-sizing: border-box;
  width: var(--map-badge-width, 112px) !important;
  min-width: var(--map-badge-width, 112px) !important;
  height: var(--map-label-height) !important;
  min-height: var(--map-label-height) !important;
  display: inline-grid !important;
  grid-template-columns: var(--map-number-size) minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  column-gap: 7px;
  padding: 6px 13px 6px 6px !important;
  border: 1px solid rgba(113, 75, 45, 0.24);
  background: #fff7e8;
  color: rgba(33, 25, 17, 0.92);
  box-shadow:
    0 0 0 4px #fff7e8,
    0 10px 24px rgba(21, 17, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    border-color 820ms var(--ease-soft),
    background 820ms var(--ease-soft),
    box-shadow 940ms var(--ease-soft),
    color 820ms var(--ease-soft) !important;
}

.renovation-map.territory-map .zone-rooms { --map-badge-width: clamp(108px, 8.4vw, 158px); }
.renovation-map.territory-map .zone-vip { --map-badge-width: clamp(106px, 8.4vw, 156px); }
.renovation-map.territory-map .zone-suites { --map-badge-width: clamp(110px, 8.6vw, 158px); }
.renovation-map.territory-map .zone-parking { --map-badge-width: clamp(104px, 7.4vw, 136px); }
.renovation-map.territory-map .zone-cafe { --map-badge-width: clamp(78px, 6.2vw, 104px); }
.renovation-map.territory-map .zone-banya { --map-badge-width: clamp(122px, 9.1vw, 170px); }
.renovation-map.territory-map .zone-territory { --map-badge-width: clamp(96px, 7.4vw, 134px); }

.renovation-map.territory-map .map-zone-label > .map-zone-number {
  grid-column: 1;
  justify-self: center;
  align-self: center;
  transform: none !important;
  transition:
    background 820ms var(--ease-soft),
    color 820ms var(--ease-soft),
    box-shadow 940ms var(--ease-soft) !important;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(180deg, rgba(221, 199, 161, 0.96), rgba(181, 116, 73, 0.34));
  color: #604126;
}

.renovation-map.territory-map .map-zone-label > .map-zone-name {
  grid-column: 2;
  justify-self: stretch;
  align-self: center;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  transform: none !important;
  transition: color 820ms var(--ease-soft) !important;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label,
.renovation-map.territory-map .map-zone:focus .map-zone-label,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label,
.renovation-map.territory-map .map-zone.is-map-zone-open .map-zone-label {
  background: #fffaf1;
  box-shadow:
    0 0 0 4px #fffaf1,
    0 15px 34px rgba(21, 17, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: none !important;
}

.renovation-map.territory-map .map-zone:hover .map-zone-label > *,
.renovation-map.territory-map .map-zone:focus .map-zone-label > *,
.renovation-map.territory-map .map-zone:focus-visible .map-zone-label > *,
.renovation-map.territory-map .map-zone.is-map-zone-open .map-zone-label > * {
  transform: none !important;
}

.renovation-map.territory-map .zone-vip .map-tooltip {
  top: calc(100% + 10px) !important;
  bottom: auto !important;
  transform-origin: 50% 0 !important;
}

.renovation-map.territory-map .zone-banya .map-tooltip {
  top: calc(100% + 10px) !important;
  bottom: auto !important;
  transform-origin: 50% 0 !important;
}

.renovation-map.territory-map .map-tooltip,
.renovation-map.territory-map .zone-vip .map-tooltip {
  --map-tooltip-width: 246px;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text"
    "list list";
  align-items: start;
  column-gap: 10px;
  row-gap: 6px;
  padding: 14px !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity 760ms ease,
    transform 980ms var(--ease-soft),
    visibility 0ms linear 760ms !important;
}

.renovation-map.territory-map .map-zone:hover .map-tooltip,
.renovation-map.territory-map .map-zone:focus .map-tooltip,
.renovation-map.territory-map .map-zone:focus-visible .map-tooltip,
.renovation-map.territory-map .map-zone.is-map-zone-open .map-tooltip,
.renovation-map.territory-map .zone-vip:hover .map-tooltip,
.renovation-map.territory-map .zone-vip:focus .map-tooltip,
.renovation-map.territory-map .zone-vip:focus-visible .map-tooltip,
.renovation-map.territory-map .zone-vip.is-map-zone-open .map-tooltip {
  transition:
    opacity 760ms ease,
    transform 980ms var(--ease-soft),
    visibility 0ms linear 0ms !important;
}

.renovation-map.territory-map .map-tooltip-icon {
  align-self: start;
  width: 34px;
  height: 34px;
}

.renovation-map.territory-map .map-tooltip-icon svg {
  width: 16px;
  height: 16px;
}

.renovation-map.territory-map .map-tooltip strong,
.renovation-map.territory-map .map-tooltip small {
  text-align: left;
}

.renovation-map.territory-map .map-tooltip strong {
  align-self: end;
  padding-top: 1px;
  font-size: 13.2px;
  line-height: 1.12;
}

.renovation-map.territory-map .map-tooltip small {
  align-self: start;
  max-width: 100%;
  font-size: 10.8px;
  line-height: 1.32;
}

.renovation-map.territory-map .map-tooltip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding-top: 10px;
}

.renovation-map.territory-map .map-tooltip-list span {
  justify-content: center;
  min-width: 0;
  padding: 5px 7px;
  text-align: center;
}

.renovation-map.territory-map .map-tooltip-list span:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 620px) {
  .renovation-map.territory-map {
    --map-label-height: 30px;
    --map-number-size: 18px;
  }

  .renovation-map.territory-map .map-zone-label,
  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    column-gap: 5px;
    padding: 5px 9px 5px 5px !important;
    box-shadow:
      0 0 0 3px #fff7e8,
      0 8px 18px rgba(21, 17, 13, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .renovation-map.territory-map .map-tooltip,
  .renovation-map.territory-map .zone-vip .map-tooltip {
    --map-tooltip-width: 206px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 8px;
    padding: 11px !important;
  }

  .renovation-map.territory-map .map-tooltip-icon {
    width: 30px;
    height: 30px;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 11.8px;
  }

  .renovation-map.territory-map .map-tooltip small {
    font-size: 9.8px;
  }

  .renovation-map.territory-map .map-tooltip-list {
    gap: 5px;
  }

  .renovation-map.territory-map .map-tooltip-list span {
    padding: 4px 5px;
  }
}

/* Location CTA placement pass: route action belongs to the lower route card. */
main > section#location .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
  grid-template-columns: minmax(0, 760px) !important;
}

main > section#location .location-copy-stack .section-description {
  max-width: 760px !important;
}

main > section#location .location-points article {
  display: flex;
  flex-direction: column;
}

main > section#location .location-points .location-point-route {
  border-color: rgba(99, 141, 156, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(230, 239, 236, 0.74));
}

main > section#location .location-points .location-point-route .location-route-cta {
  grid-column: auto;
  justify-self: stretch;
  width: 100%;
  margin-top: auto;
  padding: 12px;
  gap: 8px;
  border-color: rgba(21, 17, 13, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(232, 221, 202, 0.84));
  box-shadow:
    0 12px 30px rgba(21, 17, 13, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  animation: none;
}

main > section#location .location-points .location-point-route .location-route-cta::before {
  inset: 7px;
  opacity: 0.54;
}

main > section#location .location-points .location-point-route .location-route-cta::after {
  left: 14px;
  right: 14px;
  opacity: 0.42;
}

main > section#location .location-points .location-point-route .location-route-cta-kicker {
  font-size: 9.5px;
}

main > section#location .location-points .location-point-route .location-route-cta small {
  font-size: 10.5px;
}

main > section#location .location-points .location-point-route .location-map-button {
  width: 100%;
  min-height: 40px;
  justify-content: center;
  padding: 9px 12px;
  border-color: rgba(99, 141, 156, 0.28);
  background:
    linear-gradient(180deg, #fffdf7, #ead8b8);
  transform: translate3d(0, 0, 0);
  transition:
    transform 520ms cubic-bezier(0.2, 0.9, 0.22, 1),
    border-color 360ms ease,
    background 420ms ease,
    box-shadow 520ms ease;
}

main > section#location .location-points .location-point-route .location-route-cta:hover .location-map-button,
main > section#location .location-points .location-point-route .location-route-cta:focus-within .location-map-button {
  border-color: rgba(99, 141, 156, 0.5);
  box-shadow:
    0 16px 36px rgba(21, 17, 13, 0.14),
    0 0 0 3px rgba(99, 141, 156, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translate3d(0, -1px, 0);
}

@media (max-width: 760px) {
  main > section#location .location-points .location-point-route .location-route-cta {
    width: 100%;
  }
}

/* Location mini map action: fifth compact card, no tall CTA. */
@media (min-width: 1101px) {
  main > section#location .location-points {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
  }
}

main > section#location .location-points article {
  align-self: start;
}

main > section#location .location-points .location-point-route {
  border-color: rgba(21, 17, 13, 0.11);
  background: rgba(255, 250, 240, 0.72);
}

main > section#location .location-point-map-action {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(14px, 1.1vw, 18px);
  border-color: rgba(99, 141, 156, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(230, 238, 236, 0.76));
}

main > section#location .location-point-map-action > span {
  margin-bottom: 0;
}

main > section#location .location-map-mini-button {
  width: fit-content;
  height: 28px !important;
  min-width: 0;
  min-height: 28px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 10px 5px 7px;
  border: 1px solid rgba(21, 17, 13, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: rgba(28, 22, 16, 0.9);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    0 8px 20px rgba(21, 17, 13, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 260ms var(--ease-soft),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 260ms ease;
}

main > section#location .location-map-mini-button .location-map-button-icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}

main > section#location .location-map-mini-button .location-map-button-icon::before {
  width: 5px;
  height: 5px;
  animation: none;
  box-shadow:
    0 0 0 3px rgba(185, 120, 74, 0.1),
    6px -3px 0 -2px rgba(99, 141, 156, 0.9);
}

main > section#location .location-map-mini-button:hover,
main > section#location .location-map-mini-button:focus-visible {
  border-color: rgba(99, 141, 156, 0.42);
  background: #fffaf0;
  outline: none;
  box-shadow:
    0 11px 24px rgba(21, 17, 13, 0.12),
    0 0 0 3px rgba(99, 141, 156, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

main > section#location .location-map-mini-button:active {
  box-shadow:
    0 6px 14px rgba(21, 17, 13, 0.1),
    inset 0 1px 3px rgba(21, 17, 13, 0.08);
  transform: translateY(0);
}

/* Location final card pass: last two plaques match the beige set. */
main > section#location .location-points {
  align-items: stretch;
}

main > section#location .location-points article,
main > section#location .location-points .location-point-route,
main > section#location .location-points article:nth-child(4),
main > section#location .location-point-map-action {
  align-self: stretch;
  border-color: rgba(21, 17, 13, 0.11);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 48px rgba(21, 17, 13, 0.075);
}

main > section#location .location-point-map-action {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 1.35vw, 22px);
}

main > section#location .location-map-card-button {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(21, 17, 13, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 247, 229, 0.96) 0%, rgba(225, 188, 132, 0.9) 54%, rgba(188, 132, 82, 0.9) 100%);
  color: rgba(28, 22, 16, 0.96);
  font-size: clamp(15px, 0.94vw, 16px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -18px 36px rgba(101, 66, 38, 0.08),
    0 14px 30px rgba(101, 66, 38, 0.13);
  text-shadow: 0 1px 0 rgba(255, 250, 240, 0.42);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 320ms var(--ease-out-expo),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 320ms ease,
    color 180ms ease;
  will-change: transform;
}

main > section#location .location-map-card-button::before,
main > section#location .location-map-card-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

main > section#location .location-map-card-button::before {
  inset: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 250, 240, 0.84), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(99, 141, 156, 0.1));
  opacity: 0.74;
}

main > section#location .location-map-card-button::after {
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  opacity: 0;
  transform: translate3d(-30%, 0, 0) rotate(13deg);
  animation: locationMapCardShine 4.6s ease-in-out infinite;
}

main > section#location .location-map-card-button:hover,
main > section#location .location-map-card-button:focus-visible {
  border-color: rgba(99, 141, 156, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98) 0%, rgba(235, 198, 138, 0.96) 52%, rgba(198, 139, 84, 0.94) 100%);
  color: rgba(21, 17, 13, 0.98);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -20px 38px rgba(101, 66, 38, 0.08),
    0 18px 38px rgba(101, 66, 38, 0.18),
    0 0 0 3px rgba(99, 141, 156, 0.1);
  transform: translate3d(0, -2px, 0) scale(1.01);
}

main > section#location .location-map-card-button:hover::after,
main > section#location .location-map-card-button:focus-visible::after {
  animation-duration: 3s;
}

main > section#location .location-map-card-button:active {
  box-shadow:
    inset 0 2px 8px rgba(101, 66, 38, 0.12),
    0 9px 22px rgba(101, 66, 38, 0.14);
  transform: translate3d(0, 0, 0) scale(0.988);
}

@keyframes locationMapCardShine {
  0%,
  42% {
    opacity: 0;
    transform: translate3d(-30%, 0, 0) rotate(13deg);
  }

  54% {
    opacity: 0.7;
  }

  72%,
  100% {
    opacity: 0;
    transform: translate3d(380%, 0, 0) rotate(13deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section#location .location-map-card-button,
  main > section#location .location-map-card-button::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

/* Final spacing system: align section rhythm from location/current through FAQ. */
:root {
  --final-section-x: clamp(24px, 5.6vw, 96px);
  --final-section-y: clamp(82px, 7vw, 122px);
  --final-section-y-compact: clamp(72px, 6.2vw, 108px);
  --final-heading-gap: clamp(34px, 3.4vw, 58px);
  --final-content-gap: clamp(28px, 3vw, 52px);
  --final-card-gap: clamp(16px, 1.45vw, 26px);
  --final-wide-max: 1680px;
  --final-content-max: 1540px;
}

main > section:is(#location, #current, .map-section, #future, #before-after, #lots, #transparency, #trust, #faq) {
  padding-inline: var(--final-section-x) !important;
}

main > section:is(#current, .map-section, #future, #before-after, #lots, #trust, #faq) {
  padding-block: var(--final-section-y) !important;
}

main > section#location.altai-views-page {
  --location-block-gap: var(--final-content-gap);
  --location-gallery-gap: var(--final-card-gap);
  padding-top: var(--final-section-y) !important;
  padding-bottom: var(--final-section-y) !important;
}

main > section#transparency.transparency-section {
  margin-top: -1px;
  padding-block: var(--final-section-y-compact) var(--final-section-y) !important;
  padding-inline: var(--final-section-x) !important;
}

main > section:is(#location, #current, .map-section, #future, #before-after, #lots, #transparency, #trust, #faq)
  > :is(.section-heading, .altai-photo-copy, .lots-intro, .before-after-context),
main > section:is(#location, #current, .map-section, #future, #before-after, #lots, #trust, #faq)
  > :is(.location-points, .altai-photo-grid, .current-toolbar, .current-gallery, .renovation-map, .future-toolbar, .future-layout, .comparison-grid, .lots-principles, .lots-stack, .private-scenario, .lots-note, .criteria-grid, .faq-list),
main > section#transparency .platform-experience {
  width: min(100%, var(--final-wide-max)) !important;
  max-width: var(--final-wide-max) !important;
  margin-inline: auto !important;
}

main > section:is(#current, .map-section, #future) > .section-heading.compact-copy-heading,
main > section#location > .altai-photo-copy.compact-copy-heading,
main > section#lots > .lots-intro.compact-copy-heading,
main > section#before-after > .before-after-context,
main > section#trust > .criteria-heading,
main > section#faq > .section-heading.compact-copy-heading {
  margin-bottom: var(--final-heading-gap) !important;
}

main > section#location .location-points {
  gap: var(--final-card-gap) !important;
  margin-bottom: var(--final-content-gap) !important;
}

main > section#location .altai-photo-grid {
  gap: var(--final-card-gap) !important;
  margin-top: 0 !important;
}

main > section#current .current-toolbar,
main > section#future .future-toolbar {
  margin-bottom: clamp(18px, 1.8vw, 30px) !important;
}

main > section#current .current-gallery,
main > section#future .future-layout {
  gap: var(--final-card-gap) !important;
  padding-bottom: clamp(10px, 1.1vw, 18px) !important;
}

main > section.map-section .renovation-map.territory-map {
  margin-top: 0 !important;
}

main > section#before-after .before-after-context {
  margin-bottom: clamp(36px, 3.8vw, 64px) !important;
}

main > section#before-after .comparison-grid {
  gap: var(--final-card-gap) !important;
}

main > section#before-after .comparison-card {
  gap: clamp(14px, 1.25vw, 22px) !important;
}

main > section#before-after .comparison-control {
  padding-inline: 2px !important;
}

main > section#lots .lots-principles {
  margin-bottom: var(--final-content-gap) !important;
}

main > section#lots .lots-stack {
  gap: clamp(18px, 1.6vw, 28px) !important;
}

main > section#lots .lot-format {
  gap: clamp(22px, 3vw, 48px) !important;
  padding: clamp(24px, 2.8vw, 42px) !important;
}

main > section#lots .private-scenario {
  margin-top: clamp(18px, 1.8vw, 30px) !important;
}

main > section#lots .lots-note {
  margin-top: clamp(24px, 2.4vw, 40px) !important;
}

main > section#transparency .platform-experience {
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr) !important;
  gap: clamp(34px, 4vw, 74px) !important;
  align-items: start !important;
}

main > section#transparency .platform-copy-panel.compact-copy-heading {
  transform: none !important;
}

main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead {
  max-width: 620px !important;
}

main > section#transparency .platform-feature-grid {
  gap: clamp(12px, 1vw, 18px) !important;
  margin-top: clamp(22px, 2vw, 36px) !important;
}

main > section#transparency .platform-feature-grid article {
  padding: clamp(14px, 1.1vw, 20px) !important;
}

main > section#transparency .platform-mockup-stage {
  justify-self: end !important;
  width: min(100%, 900px) !important;
  margin-top: 0 !important;
}

main > section#trust.criteria-section {
  min-height: auto !important;
}

main > section#trust .criteria-grid {
  gap: var(--final-card-gap) !important;
}

main > section#trust .criteria-card {
  min-height: clamp(290px, 25vw, 360px) !important;
  padding: clamp(30px, 3vw, 46px) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.52)),
    rgba(255, 250, 240, 0.5) !important;
}

main > section#trust .criteria-card-negative {
  background:
    linear-gradient(180deg, rgba(226, 216, 199, 0.9), rgba(222, 211, 193, 0.76)),
    rgba(216, 195, 155, 0.3) !important;
}

@media (max-width: 1180px) {
  main > section#transparency .platform-experience {
    grid-template-columns: 1fr !important;
    gap: var(--final-content-gap) !important;
  }

  main > section#transparency .platform-mockup-stage {
    justify-self: center !important;
    width: min(100%, 860px) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  :root {
    --final-section-x: clamp(18px, 5vw, 32px);
    --final-section-y: clamp(66px, 12vw, 92px);
    --final-section-y-compact: clamp(62px, 11vw, 86px);
    --final-heading-gap: clamp(26px, 6vw, 42px);
    --final-content-gap: clamp(22px, 5vw, 36px);
  }

  main > section#location .location-points {
    margin-bottom: var(--final-content-gap) !important;
  }

  main > section#before-after .before-after-context {
    margin-bottom: var(--final-content-gap) !important;
  }
}

@media (max-width: 620px) {
  :root {
    --final-section-x: 18px;
    --final-section-y: clamp(58px, 13vw, 76px);
    --final-section-y-compact: clamp(56px, 12vw, 72px);
    --final-heading-gap: 24px;
    --final-content-gap: 20px;
    --final-card-gap: 14px;
  }

  main > section#location.altai-views-page,
  main > section#current,
  main > section.map-section,
  main > section#future,
  main > section#before-after,
  main > section#lots,
  main > section#transparency.transparency-section,
  main > section#trust,
  main > section#faq {
    padding-inline: var(--final-section-x) !important;
  }

  main > section#lots .lot-format {
    padding: 18px !important;
  }

  main > section#trust .criteria-card {
    min-height: 0 !important;
    padding: clamp(24px, 7vw, 34px) !important;
    border-radius: 20px !important;
  }
}

/* Standards spacing lock: tighter 8px-grid rhythm across every content section. */
:root {
  --std-page-x: clamp(18px, 2.65vw, 56px);
  --std-section-y: clamp(56px, 5.2vw, 88px);
  --std-section-y-dense: clamp(48px, 4.6vw, 76px);
  --std-container-max: 1760px;
  --std-heading-gap: clamp(24px, 2.25vw, 40px);
  --std-heading-gap-tight: clamp(18px, 1.55vw, 28px);
  --std-block-gap: clamp(24px, 2vw, 32px);
  --std-card-gap: clamp(16px, 1.35vw, 24px);
  --std-inner-pad: clamp(16px, 1.45vw, 24px);
}

main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  #future,
  #before-after,
  #lots,
  #transparency,
  #trust,
  #faq,
  .map-section
) {
  padding: var(--std-section-y) var(--std-page-x) !important;
}

main > section:is(#current, #future, #before-after, #transparency) {
  padding-block: var(--std-section-y-dense) var(--std-section-y) !important;
}

main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  #future,
  #before-after,
  #lots,
  #transparency,
  #trust,
  #faq,
  .map-section
) > * {
  width: min(100%, var(--std-container-max)) !important;
  max-width: var(--std-container-max) !important;
  margin-inline: auto !important;
}

main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  #future,
  #before-after,
  #lots,
  #trust,
  #faq,
  .map-section
) > :is(.section-heading, .altai-photo-copy, .lots-intro, .before-after-context, .criteria-heading) {
  margin-bottom: var(--std-heading-gap) !important;
}

main > section:is(#current, #future, #before-after, .map-section) > :is(.section-heading, .before-after-context) {
  margin-bottom: var(--std-heading-gap-tight) !important;
}

main > section:not(.hero-section) > .section-heading.compact-copy-heading > p,
main > section#location > .altai-photo-copy.compact-copy-heading .section-description,
main > section#lots > .lots-intro.compact-copy-heading > p,
main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead {
  max-width: 600px !important;
  font-size: clamp(15px, 0.96vw, 17px) !important;
  line-height: 1.5 !important;
}

main > section#location.altai-views-page {
  --location-block-gap: var(--std-block-gap);
  --location-gallery-gap: var(--std-card-gap);
  background: linear-gradient(180deg, var(--paper) 0%, #eee3d2 78%, #15110d 100%);
}

main > section#location .location-points {
  gap: var(--std-card-gap) !important;
  margin-bottom: var(--std-block-gap) !important;
}

main > section#location .altai-photo-grid {
  gap: var(--std-card-gap) !important;
  margin-top: 0 !important;
}

main > section#location .location-points article,
main > section#location .location-point-map-action,
main > section#location .altai-photo-frame {
  border-radius: 8px !important;
}

main > section#current > .section-heading.compact-copy-heading,
main > section#future > .section-heading.compact-copy-heading,
main > section.map-section > .section-heading.compact-copy-heading {
  margin-bottom: var(--std-heading-gap-tight) !important;
}

main > section#current .current-toolbar,
main > section#future .future-toolbar {
  margin-top: 0 !important;
  margin-bottom: clamp(12px, 1vw, 16px) !important;
}

main > section#current .current-gallery,
main > section#future .future-layout {
  gap: var(--std-card-gap) !important;
  padding-bottom: clamp(8px, 0.9vw, 12px) !important;
}

main > section#current .current-gallery .feature-render,
main > section#current .current-gallery .feature-render:nth-child(even),
main > section#future .future-gallery .feature-render,
main > section#future .future-gallery .feature-render:nth-child(even) {
  border-radius: 8px !important;
}

main > section.map-section .renovation-map.territory-map {
  margin-top: 0 !important;
  border-radius: 8px !important;
}

main > section#before-after .before-after-context {
  margin-bottom: var(--std-block-gap) !important;
}

main > section#before-after .comparison-grid {
  gap: var(--std-card-gap) !important;
}

main > section#before-after .comparison-card {
  gap: clamp(10px, 1vw, 16px) !important;
}

main > section#before-after .comparison-frame {
  border-radius: 8px !important;
}

main > section#before-after .comparison-control {
  min-height: 28px !important;
  padding: 0 !important;
}

main > section#lots .lots-intro {
  margin-bottom: var(--std-heading-gap) !important;
}

main > section#lots .lots-principles {
  gap: 0 !important;
  margin-bottom: var(--std-block-gap) !important;
}

main > section#lots .lots-stack {
  gap: var(--std-card-gap) !important;
}

main > section#lots .lot-format {
  gap: var(--std-block-gap) !important;
  padding: var(--std-inner-pad) !important;
}

main > section#lots .private-scenario {
  margin-top: var(--std-card-gap) !important;
}

main > section#lots .lots-note {
  margin-top: var(--std-block-gap) !important;
}

main > section#transparency.transparency-section {
  margin-top: -1px;
  padding-block: var(--std-section-y-dense) var(--std-section-y) !important;
  padding-inline: var(--std-page-x) !important;
}

main > section#transparency .platform-experience {
  width: min(100%, var(--std-container-max)) !important;
  max-width: var(--std-container-max) !important;
  grid-template-columns: minmax(400px, 0.92fr) minmax(500px, 1.08fr) !important;
  gap: clamp(32px, 3vw, 56px) !important;
  align-items: start !important;
}

main > section#transparency .platform-copy-panel.compact-copy-heading {
  transform: none !important;
  padding-top: 0 !important;
}

main > section#transparency .platform-copy-panel.compact-copy-heading > .platform-lead {
  max-width: 600px !important;
}

main > section#transparency .platform-feature-grid {
  gap: var(--std-card-gap) !important;
  margin-top: var(--std-block-gap) !important;
}

main > section#transparency .platform-feature-grid article {
  min-height: 0 !important;
  padding: var(--std-inner-pad) !important;
  border-radius: 8px !important;
}

main > section#transparency .platform-mockup-stage {
  justify-self: end !important;
  width: min(100%, 840px) !important;
  margin-top: clamp(60px, 5.3vw, 88px) !important;
}

main > section#trust.criteria-section {
  min-height: auto !important;
}

main > section#trust > .criteria-heading {
  margin-bottom: var(--std-heading-gap) !important;
}

main > section#trust .criteria-grid {
  gap: var(--std-card-gap) !important;
}

main > section#trust .criteria-card {
  min-height: clamp(290px, 25vw, 360px) !important;
  padding: clamp(30px, 3vw, 46px) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.52)),
    rgba(255, 250, 240, 0.5) !important;
}

main > section#trust .criteria-card-negative {
  background:
    linear-gradient(180deg, rgba(226, 216, 199, 0.9), rgba(222, 211, 193, 0.76)),
    rgba(216, 195, 155, 0.3) !important;
}

main > section#faq > .section-heading {
  margin-bottom: var(--std-heading-gap) !important;
}

main > section#faq .faq-list {
  gap: clamp(10px, 0.85vw, 16px) !important;
}

@media (max-width: 1180px) {
  main > section#transparency .platform-experience {
    grid-template-columns: 1fr !important;
    gap: var(--std-block-gap) !important;
  }

  main > section#transparency .platform-mockup-stage {
    justify-self: center !important;
    width: min(100%, 820px) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  :root {
    --std-page-x: clamp(18px, 4.8vw, 32px);
    --std-section-y: clamp(48px, 10vw, 72px);
    --std-section-y-dense: clamp(44px, 9vw, 64px);
    --std-heading-gap: clamp(20px, 5vw, 32px);
    --std-heading-gap-tight: clamp(18px, 4vw, 24px);
    --std-block-gap: clamp(20px, 4.5vw, 28px);
    --std-card-gap: clamp(14px, 3.4vw, 20px);
  }

  main > section#location .location-points {
    margin-bottom: var(--std-block-gap) !important;
  }
}

@media (max-width: 620px) {
  :root {
    --std-page-x: 18px;
    --std-section-y: 56px;
    --std-section-y-dense: 48px;
    --std-heading-gap: 22px;
    --std-heading-gap-tight: 18px;
    --std-block-gap: 20px;
    --std-card-gap: 14px;
    --std-inner-pad: 16px;
  }

  main > section:is(
    #participation,
    #essence,
    #boundaries,
    #life-scenarios,
    #location,
    #current,
    #future,
    #before-after,
    #lots,
    #transparency,
    #trust,
    #faq,
    .map-section
  ) {
    padding: var(--std-section-y) var(--std-page-x) !important;
  }

  main > section:is(#current, #future, #before-after, #transparency) {
    padding-block: var(--std-section-y-dense) var(--std-section-y) !important;
  }

  main > section#lots .lot-format {
    padding: var(--std-inner-pad) !important;
  }

  main > section#trust .criteria-card {
    min-height: 0 !important;
    padding: clamp(24px, 7vw, 34px) !important;
    border-radius: 20px !important;
  }
}

/* Specificity lock for older section overrides. */
main > section#location.altai-views-page,
main > section#lots.lots-section-redesign,
main > section#trust.criteria-section,
main > section#faq.faq-section {
  padding: var(--std-section-y) var(--std-page-x) !important;
}

main > section#future.future-section,
main > section#transparency.transparency-section {
  padding: var(--std-section-y-dense) var(--std-page-x) var(--std-section-y) !important;
}

main > section.content-section.map-section {
  padding: var(--std-section-y) var(--std-page-x) !important;
}

@media (max-width: 620px) {
  main > section#location.altai-views-page,
  main > section#lots.lots-section-redesign,
  main > section#trust.criteria-section,
  main > section#faq.faq-section,
  main > section.content-section.map-section {
    padding: var(--std-section-y) var(--std-page-x) !important;
  }

  main > section#future.future-section,
  main > section#transparency.transparency-section {
    padding: var(--std-section-y-dense) var(--std-page-x) var(--std-section-y) !important;
  }
}

/* Renovation/map vertical tune: remove the last uneven top and bottom pockets. */
main > section.content-section.map-section {
  padding-top: clamp(42px, 3.9vw, 64px) !important;
  padding-bottom: var(--std-section-y-dense) !important;
}

main > section.content-section.map-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(12px, 1vw, 18px) !important;
}

main > section.content-section.map-section .renovation-map.territory-map {
  margin-top: 0 !important;
}

main > section#future.future-section {
  padding-top: var(--std-section-y-dense) !important;
  padding-bottom: clamp(36px, 3.2vw, 56px) !important;
}

main > section#future.future-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(16px, 1.4vw, 24px) !important;
}

main > section#future .future-toolbar {
  margin-bottom: clamp(10px, 0.9vw, 14px) !important;
}

main > section#future .future-layout {
  padding-bottom: 0 !important;
}

main > section#before-after {
  padding-top: clamp(46px, 4.2vw, 68px) !important;
  padding-bottom: clamp(52px, 4.8vw, 76px) !important;
}

main > section#before-after .before-after-context {
  margin-bottom: clamp(20px, 1.8vw, 28px) !important;
}

main > section#before-after .comparison-card {
  gap: clamp(10px, 0.9vw, 14px) !important;
}

@media (max-width: 620px) {
  main > section.content-section.map-section {
    padding-top: 44px !important;
    padding-bottom: 48px !important;
  }

  main > section.content-section.map-section > .section-heading.compact-copy-heading {
    margin-bottom: 14px !important;
  }

  main > section#future.future-section {
    padding-top: 48px !important;
    padding-bottom: 42px !important;
  }

  main > section#before-after {
    padding-top: 44px !important;
    padding-bottom: 52px !important;
  }

  main > section#before-after .before-after-context {
    margin-bottom: 18px !important;
  }
}

/* Hard rhythm correction: force the late sections to follow the first-block spacing. */
body main > section.content-section.map-section {
  padding-top: clamp(28px, 2.6vw, 44px) !important;
  padding-bottom: clamp(44px, 4vw, 64px) !important;
}

body main > section.content-section.map-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(8px, 0.7vw, 12px) !important;
}

body main > section.content-section.map-section > .section-heading.compact-copy-heading > p {
  max-width: 560px !important;
  line-height: 1.46 !important;
}

body main > section.content-section.map-section > .renovation-map.territory-map {
  height: auto !important;
  margin-top: 0 !important;
  min-height: clamp(420px, 38vw, 620px) !important;
}

body main > section#future.future-section {
  padding-top: clamp(40px, 3.6vw, 60px) !important;
  padding-bottom: clamp(20px, 1.8vw, 32px) !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(10px, 0.9vw, 16px) !important;
}

body main > section#future.future-section .future-toolbar {
  margin-bottom: 8px !important;
}

body main > section#future.future-section .future-layout.future-gallery {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body main > section#before-after.content-section {
  padding-top: clamp(40px, 3.5vw, 58px) !important;
  padding-bottom: clamp(42px, 3.8vw, 64px) !important;
}

body main > section#before-after.content-section > .before-after-context {
  margin-bottom: clamp(22px, 1.8vw, 30px) !important;
}

body main > section#before-after.content-section .comparison-grid {
  gap: clamp(12px, 1.1vw, 18px) !important;
}

@media (max-width: 620px) {
  body main > section.content-section.map-section {
    padding-top: 32px !important;
    padding-bottom: 46px !important;
  }

  body main > section.content-section.map-section > .section-heading.compact-copy-heading {
    margin-bottom: 10px !important;
  }

  body main > section.content-section.map-section > .renovation-map.territory-map {
    min-height: 410px !important;
  }

  body main > section#future.future-section {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
  }

  body main > section#before-after.content-section {
    padding-top: 42px !important;
    padding-bottom: 48px !important;
  }

  body main > section#before-after.content-section > .before-after-context {
    margin-bottom: 22px !important;
  }
}

/* Header centering tune: balance copy between section top and the next visual block. */
body main > section.content-section.map-section {
  padding-top: clamp(22px, 2vw, 30px) !important;
}

body main > section.content-section.map-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(22px, 2vw, 30px) !important;
}

body main > section#future.future-section {
  padding-top: clamp(54px, 4.5vw, 72px) !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading {
  margin-bottom: clamp(12px, 1vw, 16px) !important;
}

body main > section#future.future-section .future-toolbar {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

body main > section#before-after.content-section {
  padding-top: clamp(28px, 2.4vw, 38px) !important;
}

body main > section#before-after.content-section > .before-after-context {
  margin-bottom: clamp(28px, 2.4vw, 38px) !important;
}

@media (max-width: 620px) {
  body main > section.content-section.map-section {
    padding-top: 24px !important;
  }

  body main > section.content-section.map-section > .section-heading.compact-copy-heading {
    margin-bottom: 24px !important;
  }

  body main > section#future.future-section {
    padding-top: 52px !important;
  }

  body main > section#future.future-section > .section-heading.compact-copy-heading {
    margin-bottom: 12px !important;
  }

  body main > section#future.future-section .future-toolbar {
    margin-bottom: 10px !important;
  }

  body main > section#before-after.content-section {
    padding-top: 30px !important;
  }

  body main > section#before-after.content-section > .before-after-context {
    margin-bottom: 30px !important;
  }
}

/* Renovation and before/after rhythm: restore section-scale breathing room. */
body main > section#future.future-section {
  padding-bottom: clamp(56px, 5vw, 78px) !important;
}

body main > section#future.future-section .future-layout.future-gallery {
  padding-bottom: clamp(10px, 1vw, 16px) !important;
}

body main > section#before-after.content-section {
  padding-top: clamp(56px, 5vw, 78px) !important;
  padding-bottom: clamp(56px, 5vw, 78px) !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.055), rgba(255, 250, 240, 0.014) 42%, rgba(255, 250, 240, 0) 100%),
    #17120e !important;
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.08) !important;
}

body main > section#before-after.content-section > .before-after-context {
  margin-bottom: clamp(30px, 2.8vw, 44px) !important;
}

@media (max-width: 620px) {
  body main > section#future.future-section {
    padding-bottom: 56px !important;
  }

  body main > section#future.future-section .future-layout.future-gallery {
    padding-bottom: 10px !important;
  }

  body main > section#before-after.content-section {
    padding-top: 54px !important;
    padding-bottom: 56px !important;
  }

  body main > section#before-after.content-section > .before-after-context {
    margin-bottom: 30px !important;
  }
}

/* Transparency balance: keep the platform block centered with calmer side edges. */
body main > section#transparency.transparency-section {
  padding-inline: clamp(68px, 5.8vw, 92px) !important;
}

body main > section#transparency .platform-experience {
  grid-template-columns: minmax(400px, 0.94fr) minmax(500px, 1.06fr) !important;
  gap: clamp(20px, 2.1vw, 34px) !important;
}

body main > section#transparency .platform-copy-panel.compact-copy-heading {
  margin-left: clamp(10px, 0.95vw, 14px) !important;
}

@media (max-width: 1180px) {
  body main > section#transparency.transparency-section {
    padding-inline: var(--std-page-x) !important;
  }

  body main > section#transparency .platform-copy-panel.compact-copy-heading {
    margin-left: 0 !important;
  }

body main > section#transparency .platform-experience {
  grid-template-columns: 1fr !important;
  gap: var(--std-block-gap) !important;
  }
}

/* Location route cleanup: text and map now share the top line, without the lower plaques. */
body main > section#location.altai-views-page {
  --location-top-gap: clamp(48px, 5vw, 68px);
}

body main > section#location > .altai-photo-copy.section-header-grid.compact-copy-heading {
  width: min(100%, var(--final-wide-max, 1680px)) !important;
  max-width: var(--final-wide-max, 1680px) !important;
  margin-bottom: var(--location-top-gap) !important;
}

body main > section#location > .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 760px) minmax(220px, 360px) !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: clamp(18px, 2.4vw, 38px) !important;
}

body main > section#location .location-copy-stack .section-description {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 760px !important;
  color: rgba(28, 24, 20, 0.74) !important;
}

body main > section#location .location-map-hero-button {
  grid-column: 2 !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  min-height: clamp(138px, 10vw, 178px) !important;
  height: 100% !important;
}

body main > section#location .altai-photo-grid {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  body main > section#location > .altai-photo-copy.section-header-grid.compact-copy-heading > .location-copy-stack {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  body main > section#location .location-copy-stack .section-description,
  body main > section#location .location-map-hero-button {
    grid-column: 1 !important;
  }

  body main > section#location .location-map-hero-button {
    width: min(100%, 360px) !important;
    min-height: 82px !important;
  }
}

/* Format section finish: keep the individual option unmistakably black and the legal note compact. */
body main > section#lots .private-scenario .lot-format-private {
  border-style: solid !important;
  border-color: rgba(255, 250, 240, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.065), transparent 48%),
    linear-gradient(180deg, #050403 0%, #15110d 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 34px 92px rgba(21, 17, 13, 0.28) !important;
}

body main > section#lots .lot-format-private .lot-name {
  color: rgba(255, 250, 240, 0.86) !important;
}

body main > section#lots .lot-format-private .lot-format-main > strong,
body main > section#lots .lot-format-private .lot-metrics strong,
body main > section#lots .lot-format-private .lot-breakdown dd {
  color: var(--white) !important;
}

body main > section#lots .lot-format-private .lot-format-main > strong {
  font-size: clamp(38px, 3vw, 46px) !important;
  line-height: 0.96 !important;
}

body main > section#lots .lot-format-private .lot-metrics strong {
  font-size: clamp(20px, 1.55vw, 28px) !important;
  line-height: 1.04 !important;
}

body main > section#lots .lot-format-private .lot-format-main p {
  color: rgba(255, 250, 240, 0.72) !important;
}

body main > section#lots .lot-format-private .lot-metrics span,
body main > section#lots .lot-format-private .lot-breakdown dt {
  color: rgba(255, 250, 240, 0.56) !important;
}

body main > section#lots .lot-format-private .lot-metrics div {
  border-color: rgba(255, 250, 240, 0.14) !important;
  background: rgba(255, 250, 240, 0.06) !important;
}

body main > section#lots .lot-format-private .lot-breakdown div {
  border-bottom-color: rgba(255, 250, 240, 0.15) !important;
}

body main > section#lots .lots-note {
  --format-note-indent: clamp(48px, 5.1vw, 66px);
  width: min(820px, calc(100% - var(--format-note-indent))) !important;
  max-width: 820px !important;
  margin-top: clamp(34px, 3vw, 52px) !important;
  margin-left: var(--format-note-indent) !important;
  margin-right: auto !important;
  color: rgba(21, 17, 13, 0.5) !important;
  font-size: clamp(12px, 0.74vw, 13px) !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
}

body main > section#lots > .lots-intro.compact-copy-heading > p {
  margin-left: 0 !important;
}

@media (max-width: 760px) {
  body main > section#lots .lots-note {
    --format-note-indent: 0px;
  }
}

/* Application CTA polish: slightly larger dock button and a centered, even request panel. */
.dock-shell {
  min-height: 54px;
  gap: 6px;
  padding: 6px;
}

.dock-main {
  min-width: 154px;
  min-height: 42px;
  padding-inline: 21px;
  font-size: 13.5px;
}

.dock-logo {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
  min-height: 42px;
}

.dock-logo img {
  width: 29px;
  height: 29px;
}

.application-drawer {
  --drawer-pad: clamp(26px, 2.8vw, 36px);
  --drawer-field-gap: 12px;
  top: 50%;
  bottom: auto;
  width: min(900px, calc(100vw - 72px));
  max-height: calc(100svh - 72px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: var(--drawer-pad);
  transform: translate3d(-50%, calc(-50% + 46px), 0) scale(0.97);
}

body.application-open .application-drawer {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.drawer-close {
  top: 14px;
  right: 14px;
  left: auto;
  width: 38px;
  height: 38px;
  transform: none;
}

body.application-open .application-drawer > .drawer-close,
body.application-open .application-drawer > .drawer-close:hover,
body.application-open .application-drawer > .drawer-close:focus-visible {
  transform: none;
}

.application-drawer h2,
.drawer-copy,
.application-drawer .form-status {
  text-align: center;
}

.application-drawer h2 {
  margin: 0 auto;
  padding-inline: 44px;
}

.drawer-copy {
  margin: 12px auto calc(var(--drawer-field-gap) * 2);
}

.drawer-form {
  gap: var(--drawer-field-gap);
  text-align: left;
}

.drawer-form > label,
.lot-choice legend {
  gap: 6px;
  text-align: left;
}

.lot-choice {
  margin-top: 0;
}

.lot-choice legend {
  margin-bottom: 8px;
}

.drawer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 2px;
  line-height: 1.1;
}

.drawer-check {
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 3px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.drawer-check:hover,
.drawer-check:active,
.drawer-check:focus-within {
  background: transparent;
  box-shadow: none;
}

.drawer-check input {
  margin: 0;
}

.drawer-check span {
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .application-drawer {
    --drawer-pad: 20px;
    --drawer-field-gap: 10px;
    top: 50%;
    bottom: auto;
    width: min(560px, calc(100vw - 32px));
    max-height: calc(100svh - 32px);
    padding: var(--drawer-pad);
    transform: translate3d(-50%, calc(-50% + 34px), 0) scale(0.985);
  }

  body.application-open .application-drawer {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .drawer-close {
    top: 12px;
    right: 12px;
  }

  .application-drawer h2 {
    padding-inline: 42px;
  }
}

@media (max-width: 560px) {
  .application-drawer {
    --drawer-pad: 16px;
    --drawer-field-gap: 9px;
    width: min(420px, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
    padding: var(--drawer-pad);
  }

  .dock-shell {
    min-height: 52px;
  }

  .dock-main {
    min-width: 150px;
    min-height: 40px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .dock-logo {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

@media (max-width: 620px) {
  body main > section#lots .lots-note {
    --format-note-indent: 0px;
  }

  body main > section#lots > .lots-intro.compact-copy-heading > p {
    margin-left: 0 !important;
  }
}

/* Compact final footer after FAQ. */
main > section#faq.faq-section {
  padding-bottom: clamp(32px, 4.5vw, 56px) !important;
}

.site-footer {
  display: grid !important;
  grid-template-columns: minmax(0, 520px) minmax(280px, 640px) !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px clamp(22px, 4vw, 56px);
  padding:
    clamp(18px, 2.7vw, 30px)
    max(var(--std-page-x, clamp(18px, 2.65vw, 56px)), calc((100% - var(--final-wide-max, 1680px)) / 2))
    calc(clamp(18px, 2.7vw, 30px) + env(safe-area-inset-bottom));
}

.footer-brand {
  display: flex !important;
  align-items: center;
  justify-self: start;
  gap: clamp(12px, 1.5vw, 18px);
  min-width: 0;
}

.footer-logo {
  width: clamp(86px, 7.2vw, 112px);
  height: auto;
  flex: 0 0 auto;
}

.site-footer .footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.45;
}

.footer-legal {
  grid-column: auto !important;
  justify-self: end;
  max-width: 640px !important;
  margin: 0;
  padding-top: 0 !important;
  border-top: 0 !important;
  color: rgba(255, 250, 240, 0.48);
  font-size: clamp(11px, 0.68vw, 12px);
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 860px) {
  .site-footer {
    grid-template-columns: 1fr !important;
    align-items: start;
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  main > section#faq.faq-section {
    padding-bottom: 32px !important;
  }

  .site-footer {
    gap: 10px;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  }

  .footer-brand {
    align-items: flex-start;
  }
}

/* First screen: align hero copy with the content grid used by the next sections. */
body main > section.hero-section.altai-landing-hero {
  --hero-x: max(
    var(--unified-page-x, clamp(20px, 3.2vw, 56px)),
    calc((100% - var(--unified-container-max, 1760px)) / 2)
  );
}

/* Comment alignment: lift the selected intro copy closer to the top divider. */
body main > section.content-section.map-section:not(#before-after) {
  padding-top: clamp(48px, 4vw, 60px) !important;
}

body main > section.content-section.map-section:not(#before-after) > .section-heading.compact-copy-heading > p {
  transform: none !important;
}

body main > section#current.content-section > .section-heading.compact-copy-heading > p {
  transform: translateY(clamp(6px, 0.55vw, 10px)) !important;
}

body main > section#life-scenarios.content-section > .section-heading.compact-copy-heading > p {
  transform: translateY(clamp(-18px, -2.3vw, -14px)) !important;
}

body main > section#before-after.content-section {
  padding-top: clamp(48px, 4.1vw, 62px) !important;
}

body main > section#before-after.content-section > .before-after-context > p {
  transform: translateY(clamp(-20px, -1.1vw, -14px)) !important;
}

@media (max-width: 620px) {
  body main > section.content-section.map-section:not(#before-after) {
    padding-top: 44px !important;
  }

  body main > section.content-section.map-section:not(#before-after) > .section-heading.compact-copy-heading > p {
    transform: none !important;
  }

  body main > section#current.content-section > .section-heading.compact-copy-heading > p {
    transform: translateY(6px) !important;
  }

  body main > section#life-scenarios.content-section > .section-heading.compact-copy-heading > p {
    transform: translateY(-12px) !important;
  }

  body main > section#before-after.content-section {
    padding-top: 48px !important;
  }

body main > section#before-after.content-section > .before-after-context > p {
    transform: translateY(-14px) !important;
  }
}

/* Unified rhythm pass: keep section edges, copy, cards, and media on one spacing system. */
:root {
  --unified-page-x: clamp(20px, 3.2vw, 56px);
  --unified-section-y: clamp(64px, 5.2vw, 88px);
  --unified-heading-gap: clamp(28px, 2.4vw, 40px);
  --unified-card-gap: clamp(16px, 1.35vw, 24px);
  --unified-inner-pad: clamp(20px, 1.8vw, 30px);
  --unified-container-max: 1760px;
}

body main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  .map-section,
  #future,
  #before-after,
  #lots,
  #transparency,
  #trust,
  #faq
) {
  min-height: auto !important;
  padding: var(--unified-section-y) var(--unified-page-x) !important;
}

body main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  .map-section,
  #future,
  #before-after,
  #lots,
  #transparency,
  #trust,
  #faq
) > * {
  width: min(100%, var(--unified-container-max)) !important;
  max-width: var(--unified-container-max) !important;
  margin-inline: auto !important;
}

body main > section:is(
  #participation,
  #essence,
  #boundaries,
  #life-scenarios,
  #location,
  #current,
  .map-section,
  #future,
  #before-after,
  #lots,
  #trust,
  #faq
) > :is(.section-heading, .altai-photo-copy, .lots-intro, .before-after-context, .criteria-heading) {
  margin-bottom: var(--unified-heading-gap) !important;
}

body main > section:is(#current, #life-scenarios, #before-after)
  > .section-heading.compact-copy-heading > p,
body main > section#before-after.content-section > .before-after-context > p,
body main > section.content-section.map-section > .section-heading.compact-copy-heading > p {
  transform: none !important;
}

body main > section#essence .early-grid {
  margin-bottom: 0 !important;
}

body main > section#participation .concept-grid,
body main > section#essence .early-grid,
body main > section#boundaries .criteria-grid,
body main > section#life-scenarios .experience-grid,
body main > section#location .altai-photo-grid,
body main > section#current .current-gallery,
body main > section.content-section.map-section .renovation-map.territory-map,
body main > section#future .future-layout,
body main > section#before-after .comparison-grid,
body main > section#lots .lots-stack,
body main > section#trust .criteria-grid,
body main > section#faq .faq-list {
  margin-top: 0 !important;
}

body main > section#participation .concept-grid,
body main > section#essence .early-grid,
body main > section#boundaries .criteria-grid,
body main > section#life-scenarios .experience-grid,
body main > section#location .altai-photo-grid,
body main > section#current .current-gallery,
body main > section#future .future-layout,
body main > section#before-after .comparison-grid,
body main > section#lots .lots-stack,
body main > section#trust .criteria-grid,
body main > section#faq .faq-list {
  gap: var(--unified-card-gap) !important;
}

body main > section#participation .concept-route {
  margin-top: var(--unified-heading-gap) !important;
}

body main > section#current .current-toolbar,
body main > section#future .future-toolbar {
  margin-top: 0 !important;
  margin-bottom: calc(var(--unified-card-gap) * 0.75) !important;
}

body main > section#location.altai-views-page {
  --location-top-gap: var(--unified-heading-gap);
}

body main > section#location > .altai-photo-copy.section-header-grid.compact-copy-heading {
  margin-bottom: var(--unified-heading-gap) !important;
}

body main > section#location .altai-photo-frame,
body main > section#current .feature-render,
body main > section#future .feature-render,
body main > section#before-after .comparison-frame,
body main > section.content-section.map-section .renovation-map.territory-map {
  border-radius: 8px !important;
}

body main > section#current .current-gallery,
body main > section#future .future-layout {
  padding-bottom: 0 !important;
}

body main > section#transparency.transparency-section {
  padding: var(--unified-section-y) var(--unified-page-x) !important;
}

body main > section#transparency .platform-experience {
  width: min(100%, var(--unified-container-max)) !important;
  max-width: var(--unified-container-max) !important;
  grid-template-columns: minmax(400px, 0.94fr) minmax(500px, 1.06fr) !important;
  gap: clamp(28px, 2.8vw, 48px) !important;
  align-items: center !important;
}

body main > section#transparency .platform-copy-panel.compact-copy-heading {
  margin-left: 0 !important;
  padding-top: 0 !important;
}

body main > section#transparency .platform-feature-grid {
  gap: var(--unified-card-gap) !important;
  margin-top: var(--unified-heading-gap) !important;
}

body main > section#transparency .platform-feature-grid article,
body main > section#lots .lot-format {
  padding: var(--unified-inner-pad) !important;
}

body main > section#transparency .platform-mockup-stage {
  justify-self: center !important;
  align-self: center !important;
  margin-top: 0 !important;
}

body main > section#faq.faq-section {
  padding-top: var(--unified-section-y) !important;
  padding-bottom: var(--unified-section-y) !important;
}

body main > section.content-section.map-section,
body main > section.content-section.map-section:not(#before-after),
body main > section#future.future-section,
body main > section#before-after.content-section {
  padding-top: var(--unified-section-y) !important;
  padding-bottom: var(--unified-section-y) !important;
}

body main > section.content-section.map-section > .section-heading.compact-copy-heading,
body main > section.content-section.map-section:not(#before-after) > .section-heading.compact-copy-heading,
body main > section#future.future-section > .section-heading.compact-copy-heading,
body main > section#before-after.content-section > .before-after-context {
  margin-bottom: var(--unified-heading-gap) !important;
}

@media (max-width: 1180px) {
  body main > section#transparency .platform-experience {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: var(--unified-heading-gap) !important;
  }
}

@media (max-width: 620px) {
  :root {
    --unified-page-x: 18px;
    --unified-section-y: 56px;
    --unified-heading-gap: 24px;
    --unified-card-gap: 14px;
    --unified-inner-pad: 16px;
  }

  body main > section#trust .criteria-card {
    min-height: 0 !important;
    padding: clamp(24px, 7vw, 34px) !important;
    border-radius: 20px !important;
  }

  body main > section.content-section.map-section,
  body main > section.content-section.map-section:not(#before-after),
  body main > section#future.future-section,
  body main > section#before-after.content-section {
    padding-top: var(--unified-section-y) !important;
    padding-bottom: var(--unified-section-y) !important;
  }
}

/* Renovation and before/after fine tune: lighter top, centered side copy, cleaner slider labels. */
body main > section#future.future-section {
  padding-top: clamp(48px, 4.2vw, 64px) !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading {
  align-items: center !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading > p {
  align-self: center !important;
}

body main > section#before-after .comparison-control span {
  display: inline-flex;
  align-items: center;
  transform: translateY(-2px);
}

@media (min-width: 901px) {
  body main > section#future.future-section > .section-heading.compact-copy-heading > p {
    transform: translateY(-8px) !important;
  }

  body main > section#before-after.content-section > .before-after-context > p {
    transform: translateY(-8px) !important;
  }
}

@media (max-width: 620px) {
  body main > section#future.future-section {
    padding-top: 48px !important;
  }

  body main > section#future.future-section > .section-heading.compact-copy-heading > p {
    transform: none !important;
  }

  body main > section#before-after .comparison-control span {
    transform: translateY(-1px);
  }
}

/* Transparency restore: keep this section on its original spacing and left-copy placement. */
body main > section#transparency.transparency-section {
  padding-block: var(--std-section-y-dense) var(--std-section-y) !important;
  padding-inline: clamp(68px, 5.8vw, 92px) !important;
}

body main > section#transparency .platform-experience {
  width: min(100%, var(--std-container-max)) !important;
  max-width: var(--std-container-max) !important;
  grid-template-columns: minmax(400px, 0.94fr) minmax(500px, 1.06fr) !important;
  gap: clamp(20px, 2.1vw, 34px) !important;
  align-items: start !important;
}

body main > section#transparency .platform-copy-panel.compact-copy-heading {
  margin-left: clamp(10px, 0.95vw, 14px) !important;
  padding-top: 0 !important;
}

body main > section#transparency .platform-feature-grid {
  gap: var(--std-card-gap) !important;
  margin-top: var(--std-block-gap) !important;
}

body main > section#transparency .platform-feature-grid article {
  padding: var(--std-inner-pad) !important;
}

body main > section#transparency .platform-mockup-stage {
  justify-self: end !important;
  align-self: start !important;
  width: min(100%, 840px) !important;
  margin-top: clamp(60px, 5.3vw, 88px) !important;
}

@media (max-width: 1180px) {
  body main > section#transparency.transparency-section {
    padding-block: var(--std-section-y-dense) var(--std-section-y) !important;
    padding-inline: var(--std-page-x) !important;
  }

  body main > section#transparency .platform-experience {
    grid-template-columns: 1fr !important;
    gap: var(--std-block-gap) !important;
  }

  body main > section#transparency .platform-copy-panel.compact-copy-heading {
    margin-left: 0 !important;
  }

  body main > section#transparency .platform-mockup-stage {
    justify-self: center !important;
    width: min(100%, 820px) !important;
    margin-top: 0 !important;
  }
}

/* Renovation/before-after final tune: tighter black intro band and centered line text. */
body main > section#future.future-section {
  padding-top: clamp(38px, 3.4vw, 52px) !important;
  background:
    linear-gradient(180deg, #15110d 0%, #15110d 62%, #17120e 100%) !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading {
  align-items: center !important;
  margin-bottom: clamp(8px, 0.8vw, 12px) !important;
}

body main > section#future.future-section > .section-heading.compact-copy-heading > p {
  align-self: center !important;
  transform: none !important;
}

body main > section#future.future-section .future-toolbar {
  margin-top: 0 !important;
  margin-bottom: clamp(5px, 0.5vw, 8px) !important;
  min-height: 54px !important;
  height: 54px !important;
}

body main > section#future.future-section .future-toolbar .gallery-control {
  width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  font-size: 34px !important;
}

body main > section#future.future-section .future-layout.future-gallery {
  padding-bottom: 0 !important;
}

body main > section#before-after.content-section > .before-after-context {
  align-items: center !important;
  margin-bottom: clamp(22px, 1.8vw, 30px) !important;
}

body main > section#before-after.content-section > .before-after-context > p {
  align-self: center !important;
  transform: translateY(-22px) !important;
}

body main > section#before-after .comparison-control {
  align-items: center !important;
}

body main > section#before-after .comparison-control span {
  align-self: center !important;
  line-height: 1 !important;
  transform: translateY(-4px) !important;
}

@media (max-width: 620px) {
  body main > section#future.future-section {
    padding-top: 42px !important;
  }

  body main > section#future.future-section > .section-heading.compact-copy-heading {
    margin-bottom: 18px !important;
  }

  body main > section#future.future-section > .section-heading.compact-copy-heading > p,
  body main > section#before-after.content-section > .before-after-context > p {
    transform: none !important;
  }

  body main > section#future.future-section .future-toolbar {
    min-height: 54px !important;
    height: 54px !important;
    margin-bottom: 8px !important;
  }

  body main > section#future.future-section .future-toolbar .gallery-control {
    width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    font-size: 34px !important;
  }

  body main > section#before-after .comparison-control span {
    transform: translateY(-2px) !important;
  }
}

/* Compact territory map controls for tablet and phone layouts only. */
@media (max-width: 1024px) {
  body main > section.content-section.map-section .renovation-map.territory-map {
    --map-label-height: 30px;
    --map-number-size: 17px;
    min-height: clamp(360px, 58vw, 520px) !important;
  }

  .renovation-map.territory-map .map-zone::before {
    content: "";
    position: absolute;
    inset: -10px -8px;
    z-index: 0;
  }

  .renovation-map.territory-map .zone-rooms { --map-badge-width: 104px; }
  .renovation-map.territory-map .zone-vip { --map-badge-width: 98px; }
  .renovation-map.territory-map .zone-suites { --map-badge-width: 100px; }
  .renovation-map.territory-map .zone-parking { --map-badge-width: 94px; }
  .renovation-map.territory-map .zone-cafe { --map-badge-width: 72px; }
  .renovation-map.territory-map .zone-banya { --map-badge-width: 106px; }
  .renovation-map.territory-map .zone-territory { --map-badge-width: 86px; }

  .renovation-map.territory-map .map-zone-label,
  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    width: var(--map-badge-width) !important;
    min-width: var(--map-badge-width) !important;
    height: var(--map-label-height) !important;
    min-height: var(--map-label-height) !important;
    column-gap: 5px !important;
    padding: 5px 8px 5px 5px !important;
    font-size: 9px !important;
    box-shadow:
      0 0 0 2px #fff7e8,
      0 8px 18px rgba(21, 17, 13, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-number {
    width: var(--map-number-size) !important;
    height: var(--map-number-size) !important;
    min-width: var(--map-number-size) !important;
    flex-basis: var(--map-number-size) !important;
    font-size: 8.4px !important;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-name {
    font-size: 8.6px !important;
  }

  .renovation-map.territory-map .map-zone:hover .map-zone-label,
  .renovation-map.territory-map .map-zone:focus .map-zone-label,
  .renovation-map.territory-map .map-zone:focus-visible .map-zone-label,
  .renovation-map.territory-map .map-zone.is-map-zone-open .map-zone-label {
    box-shadow:
      0 0 0 2px #fffaf1,
      0 10px 22px rgba(21, 17, 13, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .renovation-map.territory-map .map-tooltip,
  .renovation-map.territory-map .zone-vip .map-tooltip {
    --map-tooltip-width: clamp(180px, 28vw, 220px);
    width: min(var(--map-tooltip-width), calc(100vw - 32px)) !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    column-gap: 8px !important;
    row-gap: 5px !important;
    padding: 11px !important;
    box-shadow:
      0 14px 34px rgba(21, 17, 13, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  }

  .renovation-map.territory-map .map-tooltip-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .renovation-map.territory-map .map-tooltip-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 11.8px !important;
    line-height: 1.12 !important;
  }

  .renovation-map.territory-map .map-tooltip small {
    font-size: 9.6px !important;
    line-height: 1.28 !important;
  }

  .renovation-map.territory-map .map-tooltip-list {
    gap: 4px !important;
    padding-top: 7px !important;
  }

  .renovation-map.territory-map .map-tooltip-list span {
    padding: 3px 5px !important;
    font-size: 8px !important;
  }
}

@media (max-width: 1024px) and (hover: none), (max-width: 1024px) and (pointer: coarse) {
  .renovation-map.territory-map .map-zone:not(.is-map-zone-open):hover .map-tooltip,
  .renovation-map.territory-map .map-zone:not(.is-map-zone-open):focus .map-tooltip,
  .renovation-map.territory-map .map-zone:not(.is-map-zone-open):focus-visible .map-tooltip {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(var(--tooltip-x), var(--tooltip-y-closed)) scale(0.97) !important;
    transition:
      opacity 220ms ease,
      transform 260ms var(--ease-soft),
      visibility 0ms linear 220ms !important;
  }

  .renovation-map.territory-map .map-zone.is-map-zone-open .map-tooltip {
    opacity: 1 !important;
    transform: translate(var(--tooltip-x), var(--tooltip-y-open)) scale(1) !important;
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease-soft),
      visibility 0ms linear 0ms !important;
  }
}

@media (max-width: 620px) {
  body main > section.content-section.map-section .renovation-map.territory-map {
    --map-label-height: 24px;
    --map-number-size: 14px;
    min-height: clamp(300px, 86vw, 370px) !important;
  }

  .renovation-map.territory-map .zone-rooms { --map-badge-width: 82px; }
  .renovation-map.territory-map .zone-vip { --map-badge-width: 78px; }
  .renovation-map.territory-map .zone-suites { --map-badge-width: 76px; }
  .renovation-map.territory-map .zone-parking { --map-badge-width: 78px; }
  .renovation-map.territory-map .zone-cafe { --map-badge-width: 58px; }
  .renovation-map.territory-map .zone-banya { --map-badge-width: 78px; }
  .renovation-map.territory-map .zone-territory { --map-badge-width: 66px; }

  .renovation-map.territory-map .zone-banya,
  .renovation-map.territory-map .zone-cafe {
    --tooltip-x: -76%;
  }

  .renovation-map.territory-map .zone-rooms {
    --tooltip-x: -24%;
  }

  .renovation-map.territory-map .map-zone-label,
  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    column-gap: 4px !important;
    padding: 3px 6px 3px 4px !important;
    font-size: 7.8px !important;
    box-shadow:
      0 0 0 1.5px #fff7e8,
      0 6px 14px rgba(21, 17, 13, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-number {
    font-size: 7px !important;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-name {
    font-size: 7.4px !important;
  }

  .renovation-map.territory-map .map-zone:hover .map-zone-label,
  .renovation-map.territory-map .map-zone:focus .map-zone-label,
  .renovation-map.territory-map .map-zone:focus-visible .map-zone-label,
  .renovation-map.territory-map .map-zone.is-map-zone-open .map-zone-label {
    box-shadow:
      0 0 0 1.5px #fffaf1,
      0 8px 18px rgba(21, 17, 13, 0.19),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .renovation-map.territory-map .map-tooltip,
  .renovation-map.territory-map .zone-vip .map-tooltip {
    --map-tooltip-width: 168px;
    width: min(var(--map-tooltip-width), calc(100vw - 28px)) !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    column-gap: 7px !important;
    row-gap: 4px !important;
    padding: 8px !important;
    border-radius: 7px !important;
  }

  .renovation-map.territory-map .map-tooltip-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .renovation-map.territory-map .map-tooltip-icon svg {
    width: 11px !important;
    height: 11px !important;
  }

  .renovation-map.territory-map .map-tooltip strong {
    font-size: 10.2px !important;
  }

  .renovation-map.territory-map .map-tooltip small {
    font-size: 8.4px !important;
    line-height: 1.24 !important;
  }

  .renovation-map.territory-map .map-tooltip-list {
    display: none !important;
  }
}

@media (max-width: 420px) {
  body main > section.content-section.map-section .renovation-map.territory-map {
    --map-label-height: 22px;
    --map-number-size: 13px;
    min-height: clamp(286px, 84vw, 330px) !important;
  }

  .renovation-map.territory-map .zone-rooms { --map-badge-width: 76px; }
  .renovation-map.territory-map .zone-vip { --map-badge-width: 72px; }
  .renovation-map.territory-map .zone-suites { --map-badge-width: 70px; }
  .renovation-map.territory-map .zone-parking { --map-badge-width: 72px; }
  .renovation-map.territory-map .zone-cafe { --map-badge-width: 54px; }
  .renovation-map.territory-map .zone-banya { --map-badge-width: 72px; }
  .renovation-map.territory-map .zone-territory { --map-badge-width: 62px; }

  .renovation-map.territory-map .map-zone-label,
  .renovation-map.territory-map .zone-rooms .map-zone-label,
  .renovation-map.territory-map .zone-vip .map-zone-label,
  .renovation-map.territory-map .zone-suites .map-zone-label,
  .renovation-map.territory-map .zone-parking .map-zone-label,
  .renovation-map.territory-map .zone-cafe .map-zone-label,
  .renovation-map.territory-map .zone-banya .map-zone-label,
  .renovation-map.territory-map .zone-territory .map-zone-label {
    padding: 3px 5px 3px 4px !important;
  }

  .renovation-map.territory-map .map-zone-label > .map-zone-name {
    font-size: 7px !important;
  }

  .renovation-map.territory-map .map-tooltip,
  .renovation-map.territory-map .zone-vip .map-tooltip {
    --map-tooltip-width: 154px;
    padding: 7px !important;
  }
}

/* Current-state alignment: reduce the dark lead-in and center copy above the gallery. */
body main > section#location.altai-views-page {
  padding-bottom: clamp(44px, 4vw, 52px) !important;
}

body main > section#current.content-section {
  padding-top: 52px !important;
}

body main > section#current.content-section > .section-heading.compact-copy-heading > p {
  transform: translateY(18px) !important;
}

/* Mobile deployment pass: protect the narrowest Android/iPhone widths without changing desktop. */
@media (max-width: 620px) {
  main > section#lots .lot-format,
  main > section#lots .lot-format > *,
  main > section#lots .lot-format-main,
  main > section#lots .lot-metrics,
  main > section#lots .lot-breakdown {
    min-width: 0 !important;
  }

  body main > section#lots .lot-format-private .lot-format-main > strong {
    font-size: clamp(27px, 8.4vw, 34px) !important;
    line-height: 1.04 !important;
    overflow-wrap: anywhere;
  }

  .drawer-close {
    width: 44px !important;
    height: 44px !important;
  }

  .drawer-form > label > input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
  .drawer-form select,
  .drawer-form textarea {
    min-height: 44px !important;
  }

  .drawer-form .lot-choice-grid > label {
    min-height: 44px !important;
  }

  .drawer-submit {
    min-height: 54px !important;
    white-space: normal;
    text-align: center;
  }

  .brand-logo,
  .drawer-check {
    min-height: 44px !important;
  }
}

@media (max-width: 380px) {
  body main > section#lots .lot-format-private .lot-format-main > strong {
    font-size: clamp(25px, 8.2vw, 30px) !important;
  }

  .drawer-submit {
    font-size: 12.5px !important;
    line-height: 1.2 !important;
    padding-inline: 12px !important;
  }
}

@media (max-width: 1040px) {
  .brand-logo,
  .nav-links a,
  .drawer-close,
  .drawer-check {
    min-height: 44px !important;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
  }

  .drawer-close {
    width: 44px !important;
    height: 44px !important;
  }

  .drawer-form > label > input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
  .drawer-form select,
  .drawer-form textarea {
    min-height: 44px !important;
  }
}

/* Formats clarity guard: direct anchor jumps must never leave this section blurred. */
main > section#lots[data-reveal],
main > section#lots[data-reveal]:not(.is-visible),
main > section#lots[data-reveal].is-visible {
  filter: none !important;
}

/* Mobile performance pass: keep touch devices crisp and responsive. */
@media (max-width: 1024px), (pointer: coarse) {
  html.mobile-performance [data-reveal],
  html.mobile-performance [data-reveal]:not(.is-visible),
  html.mobile-performance [data-reveal].is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  html.mobile-performance [data-reveal] .section-kicker,
  html.mobile-performance [data-reveal] h2,
  html.mobile-performance [data-reveal] .section-heading > p,
  html.mobile-performance [data-reveal] .intro-copy,
  html.mobile-performance [data-reveal] .visual-slot,
  html.mobile-performance [data-reveal] .comparison-card,
  html.mobile-performance [data-reveal] .timeline-list li,
  html.mobile-performance [data-reveal] .lot-card,
  html.mobile-performance [data-reveal] .lot-format,
  html.mobile-performance [data-reveal] .scenario-choice,
  html.mobile-performance [data-reveal] .scenario-result,
  html.mobile-performance [data-reveal] .scenario-card,
  html.mobile-performance [data-reveal] .scenario-visual,
  html.mobile-performance [data-reveal] .scenario-format-panel,
  html.mobile-performance [data-reveal] .scenario-questions,
  html.mobile-performance [data-reveal] .trust-card,
  html.mobile-performance [data-reveal] .faq-item,
  html.mobile-performance [data-reveal] .fund-row,
  html.mobile-performance [data-reveal] .transparency-points article,
  html.mobile-performance [data-reveal] .platform-feature-grid article,
  html.mobile-performance [data-reveal] .platform-mockup-stage {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  html.mobile-performance #lots,
  html.mobile-performance #lots * {
    filter: none !important;
  }

  html.mobile-performance .dock-shell,
  html.mobile-performance .menu-drawer,
  html.mobile-performance .application-drawer,
  html.mobile-performance .lot-format,
  html.mobile-performance .visual-slot {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto !important;
  }

  html.mobile-performance main > section:not(.hero-section) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

/* Mobile polish: remove the tall empty route text and make the request panel cheaper to open. */
@media (max-width: 900px) {
  body main > section#participation .concept-route p {
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }
}

@media (max-width: 620px) {
  body main > section#participation .concept-route {
    gap: 8px !important;
    margin-top: 22px !important;
  }

  body main > section#participation .concept-route span {
    min-height: 34px !important;
    padding: 8px 13px !important;
  }

  body main > section#participation .concept-route p {
    font-size: 13.5px !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 760px), (pointer: coarse) {
  html.mobile-performance main > section:not(.hero-section) {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
  }

  html.mobile-performance body.application-open main,
  html.mobile-performance body.application-open .site-header,
  html.mobile-performance body.application-open .site-footer {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  html.mobile-performance main,
  html.mobile-performance .site-header,
  html.mobile-performance .site-footer {
    transition: none !important;
  }

  html.mobile-performance .drawer-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
      opacity 150ms ease,
      background 150ms ease !important;
  }

  html.mobile-performance body.application-open .drawer-backdrop {
    background: rgba(0, 0, 0, 0.36) !important;
  }

  html.mobile-performance .application-drawer {
    filter: none !important;
    transform: translate3d(-50%, calc(-50% + 18px), 0) scale(0.995) !important;
    transition:
      opacity 160ms ease,
      transform 180ms ease-out !important;
  }

  html.mobile-performance body.application-open .application-drawer {
    transform: translate3d(-50%, -50%, 0) scale(1) !important;
  }

  html.mobile-performance .application-drawer > *,
  html.mobile-performance .drawer-form label,
  html.mobile-performance .drawer-check,
  html.mobile-performance .drawer-submit {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
