/* ════════════════════════════════════════════════════════════════
   FONTS
   ════════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Cy Grotesk Grand";
  src: url("./fonts/cy-grotesk-grand-5.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cy Grotesk Grand";
  src: url("./fonts/cy-grotesk-grand-6.ttf") format("truetype");
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "TildaSans";
  src: url("/assets/vendor/static.tildacdn.com/fonts/tildasans/TildaSans-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "TildaSans";
  src: url("/assets/vendor/static.tildacdn.com/fonts/tildasans/TildaSans-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "TildaSans";
  src: url("/assets/vendor/static.tildacdn.com/fonts/tildasans/TildaSans-Semibold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "TildaSans";
  src: url("/assets/vendor/static.tildacdn.com/fonts/tildasans/TildaSans-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ════════════════════════════════════════════════════════════════
   TOKENS
   ════════════════════════════════════════════════════════════════ */
:root {
  --bg:           #FFFFFF;
  --bg-gray:      #F2F2F2;
  --bg-card:      #FFFFFF;
  --dark:         #0F0F14;
  --dark-2:       #1A1A20;
  --dark-3:       #23232B;

  --text:         #1A1A1A;
  --text-2:       #4F525B;
  --muted:        #8A8E97;
  --muted-light:  #B5B8C0;
  --line:         #E5E5E5;
  --line-2:       #EFEFEF;
  --line-dark:    rgba(255,255,255,.08);

  --green:        #25BD43;
  --green-dark:   #1AA336;
  --green-soft:   #E1F4E5;
  --green-soft-2: #D1ECD7;
  --peach:        #F5DBC8;
  --peach-2:      #F0CFB6;
  --orange:       #FF6B35;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-card: 0 2px 24px rgba(15, 15, 20, .04);
  --shadow-hover: 0 18px 50px rgba(15, 15, 20, .12);

  --font-display: "Cy Grotesk Grand", "TildaSans", Georgia, serif;
  --font-body:    "TildaSans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* ════════════════════════════════════════════════════════════════
   RESET
   ════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400; font-size: 16px; line-height: 1.5;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
input, select { font: inherit; color: inherit; }
address { font-style: normal; }

/* ════════════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════════════ */
.container,
.hdr-container,
.hero-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
}
.hero-container { max-width: 1320px; }

.section { padding: 100px 0; }
.section--tight { padding: 80px 0; }
.section--last { padding-bottom: 0; }
.bg-gray { background: var(--bg-gray); }

.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.section-head__nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   TYPE
   ════════════════════════════════════════════════════════════════ */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 32px;
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 0.18em;
}
.h2--md { font-size: clamp(28px, 3.5vw, 40px); }
.h2--light { color: #fff; }
.h2 .ital {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}
.h2__chev {
  width: 36px; height: 36px;
  margin-left: 8px; color: var(--text);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   PILLS / BUTTONS
   ════════════════════════════════════════════════════════════════ */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 38px; padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.pill svg { width: 14px; height: 14px; }
.pill--ghost {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.pill--ghost.is-current { background: rgba(255,255,255,.95); color: var(--text); border-color: transparent; }
.pill--ghost strong { font-weight: 700; }

.pill--toggle { background: transparent; color: var(--text); border-color: var(--line); }
.pill--toggle:hover { border-color: var(--text); }
.pill--toggle.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }

.pill-group { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.pill-group--tabs { gap: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 56px; padding: 0 32px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  line-height: 1; white-space: nowrap; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { height: 62px; padding: 0 38px; font-size: 16px; }
.btn--sm { height: 44px; padding: 0 22px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,189,67,.32); }
.btn--outline-dark { background: transparent; color: var(--text); border-color: var(--line); }
.btn--outline-dark:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* Badges (used in project cards) */
.badge {
  display: inline-flex; align-items: center;
  height: 30px; padding: 0 14px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.badge--green { background: var(--green); color: #fff; }
.badge--orange { background: var(--orange); color: #fff; }

/* ════════════════════════════════════════════════════════════════
   REVEAL
   ════════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════
   HEADER (colored logo, no invert)
   ════════════════════════════════════════════════════════════════ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; color: #fff;
  transition: background .3s, color .3s, box-shadow .3s;
}
.hdr.is-scrolled {
  background: rgba(255,255,255,.97);
  color: var(--text);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(20px);
}
.hdr.is-scrolled .hdr__brand-link { color: var(--text); }
.hdr.is-scrolled .hdr__menu a { color: var(--text); }
.hdr.is-scrolled .hdr__top { border-color: var(--line); }
.hdr.is-scrolled .hdr__nav { border-color: var(--line); display: block; }

.hdr__top { border-bottom: 1px solid rgba(255,255,255,.12); }
.hdr__nav  { border-bottom: 1px solid rgba(255,255,255,.12); }

.hdr__top .hdr-container {
  height: 64px;
  display: flex; align-items: center; gap: 28px;
}

/* Logo — colored, with white pill background over hero photo */
.hdr__logo {
  display: inline-flex; align-items: center;
  height: 44px;
  padding: 4px 12px;
  background: rgba(255,255,255,.95);
  border-radius: var(--r-pill);
  transition: background .3s, padding .3s;
}
.hdr__logo img {
  height: 32px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
}
.hdr.is-scrolled .hdr__logo {
  background: transparent;
  padding: 0;
}

.hdr__brands { display: flex; gap: 24px; align-items: center; }
.hdr__brand-link {
  font-size: 13px; font-weight: 500;
  color: #fff;
  opacity: .7;
  transition: opacity .2s, color .3s;
  white-space: nowrap;
}
.hdr__brand-link.is-active { opacity: 1; font-weight: 600; }
.hdr__brand-link:hover { opacity: 1; }

.hdr__actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.hdr__phone { font-size: 14px; font-weight: 600; padding: 0 12px; white-space: nowrap; }
.hdr__icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.hdr__icon-btn:hover { background: rgba(255,255,255,.15); }
.hdr.is-scrolled .hdr__icon-btn:hover { background: var(--line-2); }
.hdr__icon-btn svg { width: 20px; height: 20px; }

.hdr__burger { display: none; flex-direction: column; gap: 4px; }
.hdr__burger span {
  display: block; width: 20px; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hdr__burger.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.hdr__burger.is-open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

.hdr__nav .hdr-container {
  height: 48px;
  display: flex; align-items: center;
}
.hdr__menu {
  display: flex; align-items: center;
  gap: 28px;
  font-size: 14px; font-weight: 500;
}
.hdr__menu a { color: #fff; opacity: .9; transition: opacity .2s, color .3s; }
.hdr__menu a:hover { opacity: 1; }

/* mobile drawer */
.mob-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--dark);
  color: #fff;
  padding: 120px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-nav.is-open { transform: translateX(0); }
.mob-nav nav { display: flex; flex-direction: column; gap: 12px; }
.mob-nav nav a {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mob-nav nav a.btn {
  font-family: var(--font-body); font-size: 16px;
  margin-top: 20px; border: none;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  max-height: 920px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero__bg, .hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__img { opacity: 0; transition: opacity 1.2s ease; }
.hero__img.is-active { opacity: 1; }
.hero__shade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(15,15,20,.55) 0%, rgba(15,15,20,0) 30%, rgba(15,15,20,0) 60%, rgba(15,15,20,.65) 100%),
    linear-gradient(to right, rgba(15,15,20,.35) 0%, rgba(15,15,20,0) 70%);
}
.hero__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto auto;
  gap: 24px 24px;
  padding-top: 170px;
  padding-bottom: 80px;
}
.hero__main {
  grid-column: 1; grid-row: 1;
  align-self: end;
  position: relative;
  min-height: 240px;
  width: 100%;
}
.hero__slide {
  position: absolute; left: 0; right: 0; top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 1000px;
}
.hero__title .ital {
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  letter-spacing: -0.01em;
}
.hero__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.hero__offer {
  grid-column: 2; grid-row: 1;
  align-self: start;
  background: rgba(20, 20, 28, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 22px 26px;
  width: 260px;
  color: #fff;
}
.hero__offer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.hero__offer-top strong {
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  font-size: 22px;
}
.hero__offer-top a {
  font-size: 12px; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.hero__offer-top a:hover { color: #fff; }
.hero__offer-divider { height: 1px; background: rgba(255,255,255,.08); }
.hero__offer-label {
  margin-top: 14px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 6px;
  position: relative;
}
.hero__countdown > div { text-align: center; position: relative; }
.hero__countdown > div:not(:last-child)::after {
  content: ":";
  position: absolute; right: -3px; top: 4px;
  color: rgba(255,255,255,.3);
  font-size: 20px;
}
.hero__countdown strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: #fff;
}
.hero__countdown span {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero__slider {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  display: flex; gap: 12px; align-items: center;
  margin-top: 24px;
}
.hero__slider button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.hero__slider button:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }
.hero__slider svg { width: 20px; height: 20px; }
.hero__slider-counter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,.8);
}
.hero__slider-counter b { color: #fff; font-weight: 500; }

.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--dark);
  height: 44px;
  overflow: hidden;
  display: flex; align-items: center;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.08em;
  animation: marquee 45s linear infinite;
  padding-left: 28px;
}
.marquee__track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   BREADCRUMBS
   ════════════════════════════════════════════════════════════════ */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  padding: 24px 0 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--text); }
.crumbs span { color: var(--muted-light); }

/* ════════════════════════════════════════════════════════════════
   CIRCLE BUTTONS
   ════════════════════════════════════════════════════════════════ */
.circle-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.circle-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }
.circle-btn svg { width: 18px; height: 18px; }
.circle-nav { display: inline-flex; gap: 6px; }

/* outline pill (used for 3D-tour-style) */
.pill--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.pill--outline:hover { border-color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   APARTMENT CARDS
   ════════════════════════════════════════════════════════════════ */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.apt {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.apt:hover { border-color: transparent; box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.apt__head { display: flex; align-items: center; justify-content: space-between; }
.apt__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.apt__head-right { display: flex; align-items: center; gap: 8px; }
.apt__badge {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 12px;
  background: var(--dark); color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
}
.apt__heart {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color .2s;
}
.apt__heart:hover { color: var(--green); }
.apt__heart.is-active { color: var(--green); }
.apt__heart.is-active svg { fill: var(--green); }
.apt__heart svg { width: 18px; height: 18px; }

.apt__plan {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-gray);
  border-radius: var(--r-md);
  overflow: hidden;
}
.apt__plan img { max-height: 100%; width: auto; mix-blend-mode: multiply; }
.apt__finish {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  height: 30px; padding: 0 14px;
  background: var(--bg-gray);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  color: var(--text-2);
}
.apt__meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.apt__meta > div:first-child strong {
  display: block; font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 4px;
}
.apt__meta > div:first-child span { font-size: 12px; color: var(--muted); }
.apt__price { text-align: right; }
.apt__price strong { font-size: 17px; font-weight: 700; display: block; }
.apt__price-old {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.apt__address {
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--text-2);
}

/* ════════════════════════════════════════════════════════════════
   PROJECT ABOUT + HIGHLIGHTS
   ════════════════════════════════════════════════════════════════ */
.project-about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.project-about .h2 { grid-column: 1; }
.project-about__text {
  grid-column: 2;
  display: flex; flex-direction: column; gap: 20px;
  font-size: 15px; line-height: 1.7; color: var(--text-2);
}
.project-about__nav {
  display: inline-flex; gap: 6px;
  margin-top: 12px;
}
.project-about__nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.project-about__nav button:hover { background: var(--text); color: #fff; border-color: var(--text); }
.project-about__nav svg { width: 16px; height: 16px; }

.highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.highlight {
  display: block;
  aspect-ratio: 1.3 / 1;
  border-radius: var(--r-md);
  background: var(--bg-gray);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.highlight:hover { transform: translateY(-3px); }
.highlight::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(15,15,20,.7) 100%);
}
.highlight span {
  position: absolute; left: 16px; bottom: 14px;
  z-index: 2;
  color: #fff; font-size: 14px; font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════════ */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
}
.gallery-stage {
  position: relative;
  aspect-ratio: 16/8;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
}
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; }
.gallery-play {
  position: absolute; left: 50%; top: 50%;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--dark);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.gallery-play:hover { transform: translate(-50%,-50%) scale(1.08); }
.gallery-play svg { width: 26px; height: 26px; margin-left: 4px; }

/* ════════════════════════════════════════════════════════════════
   FINISH (Отделка)
   ════════════════════════════════════════════════════════════════ */
.finish-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px 60px;
  align-items: start;
}
.finish-grid__head {
  grid-column: 1; grid-row: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.finish-grid__head .h2 { margin: 0; }
.finish-grid__text {
  grid-column: 1; grid-row: 2;
  font-size: 14px; line-height: 1.7;
}
.finish__lead {
  font-size: 17px; font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}
.finish-grid__text h4 {
  font-size: 15px; font-weight: 700;
  margin-top: 22px; margin-bottom: 10px;
  color: var(--text);
}
.finish-grid__text h4:first-of-type { margin-top: 0; }
.finish-grid__text ol {
  padding-left: 20px;
  counter-reset: item;
  list-style: decimal;
  color: var(--text-2);
}
.finish-grid__text li { padding: 3px 0; }
.finish-grid__img {
  grid-column: 2; grid-row: 1 / span 2;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--bg-gray);
}
.finish-grid__img img { width: 100%; height: 100%; object-fit: cover; }
.finish__expand {
  position: absolute; right: 16px; top: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
}
.finish__expand svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════════════
   CONSTRUCTION PROGRESS
   ════════════════════════════════════════════════════════════════ */
.progress-shot {
  aspect-ratio: 16/8;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-gray);
  margin-bottom: 24px;
}
.progress-shot img { width: 100%; height: 100%; object-fit: cover; }
.progress-timeline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 16px 0;
}
.progress-years { display: flex; gap: 14px; }
.progress-years button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--muted);
}
.progress-years button.is-active { color: var(--text); }
.progress-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
}
.progress-months span { text-align: center; position: relative; }
.progress-months span.is-active { color: var(--green); font-weight: 700; }
.progress-months span.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0;
  bottom: -13px; height: 2px;
  background: var(--green);
}

/* Responsive overrides for new sections */
@media (max-width: 1100px) {
  .apt-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .project-about { grid-template-columns: 1fr; gap: 20px; }
  .project-about .h2, .project-about__text { grid-column: 1; }
  .finish-grid { grid-template-columns: 1fr; }
  .finish-grid__head, .finish-grid__text, .finish-grid__img { grid-column: 1; grid-row: auto; }
  .progress-timeline { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .apt-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FILTER
   ════════════════════════════════════════════════════════════════ */
.filter {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr auto;
  gap: 28px;
  align-items: end;
  padding: 20px 0 32px;
  border-bottom: 1px solid var(--line);
}
.filter__col { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.filter__label { font-size: 12px; color: var(--muted); }
.filter__range { display: flex; gap: 12px; }
.filter__range-input {
  flex: 1;
  display: flex; align-items: center; gap: 4px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
}
.filter__range-input span { color: var(--muted); }
.filter__range-input input { width: 100%; border: none; outline: none; background: transparent; font-weight: 600; }
.filter__slider {
  position: relative;
  height: 24px;
  margin: 2px 8px;
  --lo: 0%;
  --hi: 0%;
}
.filter__slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0; outline: none;
}
.filter__slider input[type="range"]::-webkit-slider-runnable-track { background: transparent; height: 24px; }
.filter__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  pointer-events: auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  margin-top: 0;
  position: relative; z-index: 3;
}
.filter__slider input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.filter__slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.filter__track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: var(--line);
  border-radius: 99px;
  pointer-events: none;
  z-index: 1;
}
.filter__track::before {
  content: "";
  position: absolute;
  left: var(--lo, 0%);
  right: var(--hi, 0%);
  top: 0; bottom: 0;
  background: var(--green);
  border-radius: 99px;
}
.filter__handles { display: none; }
.filter__range-input input[readonly] { cursor: default; pointer-events: none; }

.apt-empty {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  padding: 60px 32px;
  background: var(--bg-gray);
  border-radius: var(--r-lg);
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
}
.apt-empty svg { width: 48px; height: 48px; color: var(--muted-light); }
.apt-empty p { font-size: 15px; line-height: 1.5; max-width: 420px; }

/* ════════════════════════════════════════════════════════════════
   PROGRESS (Ход строительства) — JSON-driven
   ════════════════════════════════════════════════════════════════ */
.progress-feed { width: 100%; }
.progress-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.progress-tabs .pill {
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
}
.progress-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-gray);
}
.progress-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .5s;
}
.progress-stage img.is-active { opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   FINISH SLIDER (вложен в finish-switcher__media)
   ════════════════════════════════════════════════════════════════ */
.finish-switcher__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-gray);
  width: 100%;
}
.finish-slider {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .35s;
}
.finish-slider.is-active { opacity: 1; visibility: visible; }
.finish-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .5s;
}
.finish-slider img.is-active { opacity: 1; }
.finish-slider__nav {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 5;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95);
  padding: 6px 14px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.finish-slider__btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-gray);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.finish-slider__btn:hover { background: var(--green); color: #fff; }
.finish-slider__btn svg { width: 16px; height: 16px; }
.finish-slider__counter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  min-width: 36px; text-align: center;
}
.finish-slider__counter b { color: var(--text); font-weight: 500; }
.filter__submit { white-space: nowrap; }

/* ════════════════════════════════════════════════════════════════
   PROJECTS (4 big cards)
   ════════════════════════════════════════════════════════════════ */
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.project:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.project__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-gray);
}
.project__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.project:hover .project__media img { transform: scale(1.06); }
.project__top {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
  z-index: 2;
}
.project__body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.project__row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px;
}
.project__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.project__name .ital { font-style: italic; font-weight: 600; }
.project__price {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 4px;
}
.project__addr {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
}
.project__addr svg { width: 14px; height: 14px; flex-shrink: 0; }
.project__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
}
.project__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.project__tags span {
  padding: 5px 12px;
  background: var(--bg-gray);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT + STATS
   ════════════════════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about .h2 { grid-column: 1; margin-bottom: 0; }
.about__text {
  grid-column: 2;
  display: flex; flex-direction: column; gap: 16px;
  font-size: 15px; line-height: 1.7; color: var(--text-2);
}
.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
}
.stat strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat strong sup {
  font-size: 0.45em;
  color: var(--green);
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════
   MAP
   ════════════════════════════════════════════════════════════════ */
.map-stack { position: relative; }
.map-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px;
}
.map-view {
  aspect-ratio: 16/8;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════════
   MORTGAGE (DARK)
   ════════════════════════════════════════════════════════════════ */
.mortgage {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 80px 0 80px;
  overflow: hidden;
}
.mortgage__corner {
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green) 0%, transparent 65%);
  opacity: 0.18;
  filter: blur(40px);
}
.mortgage__head { position: relative; z-index: 2; }
.mortgage__head .h2 { margin-bottom: 12px; }
.mortgage__sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}
.mortgage__cards {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.m-card {
  background: var(--dark-2);
  border-radius: var(--r-md);
  padding: 28px 24px;
  min-height: 140px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 18px;
}
.m-card__ico { width: 24px; height: 24px; color: rgba(255,255,255,.55); }
.m-card p { font-size: 17px; font-weight: 500; color: #fff; line-height: 1.35; }

/* ════════════════════════════════════════════════════════════════
   LEAD FORM + STEPS
   ════════════════════════════════════════════════════════════════ */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lead-form .h2 { margin-bottom: 12px; }
.lead-form__sub { color: var(--text-2); margin-bottom: 28px; font-size: 14px; line-height: 1.6; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field { display: block; margin-bottom: 12px; position: relative; }
.field > span {
  position: absolute; left: 18px; top: 10px;
  font-size: 11px; color: var(--muted);
  pointer-events: none;
}
.field input,
.field select {
  width: 100%; height: 64px;
  padding: 24px 18px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px; font-weight: 500;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field select:focus { border-color: var(--green); }
.field-select { position: relative; }
.field-select select { appearance: none; padding-right: 44px; }
.field-select svg {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text);
  pointer-events: none;
}

.chk {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 8px 0;
  font-size: 13px; color: var(--text-2);
  line-height: 1.4;
  cursor: pointer;
}
.chk input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green); }
.chk a { color: var(--green); }
.chk a:hover { color: var(--green-dark); }

.lead-form button[type="submit"] { margin-top: 14px; }
.lead-form__status {
  display: block;
  min-height: 0;
  text-align: center;
  margin-top: 12px;
  color: var(--green);
  font-size: 14px;
}
.lead-form__legal {
  display: block; text-align: center;
  font-size: 13px; color: var(--green);
  margin-top: 14px;
}
.lead-form__legal:hover { color: var(--green-dark); }

.steps {
  background: var(--bg-gray);
  border-radius: var(--r-lg);
  padding: 36px;
}
.steps h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 22px;
}
.steps ol { display: flex; flex-direction: column; gap: 0; }
.steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 12px 0;
  align-items: center;
}
.steps li span {
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.steps li p { font-size: 14px; font-weight: 500; }
.steps__note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   PROGRAMS
   ════════════════════════════════════════════════════════════════ */
.prog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prog {
  display: grid;
  grid-template-columns: 1fr auto 18px;
  align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 20px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.prog:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.prog strong { font-size: 16px; font-weight: 600; }
.prog > span { color: var(--green); font-weight: 700; font-size: 15px; }
.prog svg { width: 18px; height: 18px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   PURCHASES
   ════════════════════════════════════════════════════════════════ */
.purchases { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.purch {
  position: relative;
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.purch:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.purch h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 10px;
}
.purch p { font-size: 14px; line-height: 1.5; max-width: 280px; }
.purch--soft  { background: var(--green-soft); }
.purch--soft p { color: var(--text-2); }
.purch--white { background: #fff; border: 1px solid var(--line); }
.purch--white p { color: var(--text-2); max-width: 60%; }
.purch--dark  { background: var(--dark); color: #fff; }
.purch--dark p { color: rgba(255,255,255,.65); }
.purch__big {
  position: absolute; right: 32px; bottom: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   BUY ONLINE
   ════════════════════════════════════════════════════════════════ */
.online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 60px;
  min-height: 320px;
}
.online-grid__copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.online-grid__copy .h2 { margin: 0; }
.online-grid__copy p { color: var(--text-2); font-size: 14px; max-width: 420px; }
.online-grid__img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5/4;
  height: 100%;
}
.online-grid__img img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════════════════════════════
   NEWS
   ════════════════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.news {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.news:hover { border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.news__img { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-gray); }
.news__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news:hover .news__img img { transform: scale(1.06); }
.news h3 { padding: 14px 16px 6px; font-size: 14px; font-weight: 600; line-height: 1.35; flex: 1; }
.news time { padding: 0 16px 14px; font-size: 12px; color: var(--muted); }

.news--more {
  background: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  position: relative;
}
.news--more h3 { padding: 0; font-size: 16px; }
.news__cross { position: relative; flex: 1; margin: 16px 0; }
.news__cross::before, .news__cross::after {
  content: "";
  position: absolute;
  background: var(--line);
  width: 100%; height: 1px;
  top: 50%;
}
.news__cross::after  { transform: rotate(36deg); }
.news__cross::before { transform: rotate(-36deg); }
.news--more .btn { align-self: flex-start; }

/* ════════════════════════════════════════════════════════════════
   FOOTER — proper logo sizing, no invert
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 48px;
  padding: 60px 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer__logo-link { display: inline-block; }
.footer__logo {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.footer__brand-btns {
  display: flex; flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
.footer__brand-btns .btn { justify-content: flex-start; width: 100%; }

.footer__projects h4,
.footer__contact h4 {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer__h4-2 { margin-top: 32px !important; }
.footer__proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}
.footer__proj-grid a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.footer__proj-grid a:hover { color: var(--green); }
.footer__proj-img {
  width: 32px; height: 32px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.footer__links {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  font-size: 14px;
}
.footer__links a { color: var(--text-2); transition: color .2s; }
.footer__links a:hover { color: var(--text); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}
.footer__phone:hover { color: var(--green); }
.footer__contact address { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.footer__social { display: flex; gap: 8px; margin-top: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s, color .2s, border-color .2s;
}
.footer__social a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom { border-top: 1px solid var(--line); padding: 18px 0; }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__bottom-inner p { font-size: 12px; color: var(--muted); }
.footer__disclaimer { max-width: 580px; }

/* ════════════════════════════════════════════════════════════════
   SEE ALSO — 3-column projects grid (used on inner pages)
   ════════════════════════════════════════════════════════════════ */
.see-also {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.seealso {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.seealso:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.seealso img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.seealso:hover img { transform: scale(1.04); }
.seealso > div {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.seealso h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text);
}
.seealso p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 960px) {
  .see-also { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ════════════════════════════════════════════════════════════════
   MAP LEGEND (Yandex Map external chips, top of map)
   ════════════════════════════════════════════════════════════════ */
.map-view { position: relative; }
.map-legend {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  z-index: 10;
  display: flex; gap: 6px; flex-wrap: wrap;
  pointer-events: none;
}
.map-legend__item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 6px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15,15,20,.08);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.map-legend__pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(0,0,0,.18);
}
.map-legend__pin--dark { background: var(--dark); }
@media (max-width: 640px) {
  .map-legend { position: static; padding: 12px 0 0 0; }
}

/* ════════════════════════════════════════════════════════════════
   LEAFLET MAP — (removed — using Yandex iframe instead)
   ════════════════════════════════════════════════════════════════ */
.lmap {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-gray);
  position: relative;
}
.lmap-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.7);
  font-size: 14px; color: var(--text-2);
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.lmap-loading.is-shown { opacity: 1; }
.lmap-loading::before {
  content: "";
  width: 18px; height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Custom pin styles */
.lmap-pin {
  background: transparent !important;
  border: none !important;
}
.lmap-pin__inner {
  width: 38px; height: 50px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(37,189,67,.42), 0 2px 4px rgba(0,0,0,.18);
  border: 3px solid #fff;
}
.lmap-pin__inner svg {
  transform: rotate(45deg);
  width: 16px; height: 16px;
  color: #fff;
}
.lmap-pin--office .lmap-pin__inner {
  background: var(--dark);
  box-shadow: 0 6px 14px rgba(15,15,20,.42), 0 2px 4px rgba(0,0,0,.18);
}
.lmap-pin--small .lmap-pin__inner {
  width: 28px; height: 36px;
}
.lmap-pin--small .lmap-pin__inner svg { width: 12px; height: 12px; }

/* POI pin (для остановок, школ, магазинов) */
.lmap-poi {
  background: transparent !important;
  border: none !important;
}
.lmap-poi__inner {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  border: 2px solid var(--green);
}
.lmap-poi__inner svg {
  width: 14px; height: 14px;
  color: var(--green);
}
.lmap-poi--transport .lmap-poi__inner { border-color: #2D7BF6; }
.lmap-poi--transport .lmap-poi__inner svg { color: #2D7BF6; }
.lmap-poi--education .lmap-poi__inner { border-color: #E89E0A; }
.lmap-poi--education .lmap-poi__inner svg { color: #E89E0A; }
.lmap-poi--shop .lmap-poi__inner { border-color: #E54B7A; }
.lmap-poi--shop .lmap-poi__inner svg { color: #E54B7A; }

/* Tooltip / popup */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  font-family: var(--font-body);
  box-shadow: 0 8px 28px rgba(15,15,20,.12) !important;
}
.leaflet-popup-content {
  margin: 14px 16px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: var(--text);
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}
.leaflet-popup-tip { background: #fff !important; }
.leaflet-container a.leaflet-popup-close-button {
  color: var(--muted) !important;
  font-size: 18px !important;
  padding: 4px 6px 0 0 !important;
}
.leaflet-container { font-family: var(--font-body); }

/* Hide default attribution but keep it accessible */
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255,255,255,.7) !important;
}

/* Zoom controls — restyle */
.leaflet-bar a {
  background: #fff !important;
  border: none !important;
  border-bottom: 1px solid var(--line-2) !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 18px !important;
}
.leaflet-bar a:last-child { border-bottom: none !important; }
.leaflet-bar { box-shadow: 0 4px 14px rgba(0,0,0,.12) !important; border-radius: var(--r-sm) !important; overflow: hidden; }

/* Map title chip (over the map) */
.lmap-chip {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 500;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  display: flex; align-items: center; gap: 8px;
}
.lmap-chip svg { width: 14px; height: 14px; color: var(--green); }

/* ════════════════════════════════════════════════════════════════
   PAGE INTRO (compact hero with breadcrumbs over white)
   ════════════════════════════════════════════════════════════════ */
.page-intro {
  padding: 140px 0 40px;
}
.page-intro__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 12px;
}
.page-intro__head h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}
.page-intro__head h1 .ital { font-style: italic; font-weight: 600; }
.page-intro__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   IPOTEKA HERO — large dark block (replaces standard hero)
   ════════════════════════════════════════════════════════════════ */
.ipo-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 180px 0 100px;
  overflow: hidden;
}
.ipo-hero__corner {
  position: absolute;
  right: -200px; top: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--green) 0%, transparent 65%);
  opacity: 0.22;
  filter: blur(40px);
  pointer-events: none;
}
.ipo-hero__corner-2 {
  position: absolute;
  left: -150px; bottom: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green) 0%, transparent 65%);
  opacity: 0.10;
  filter: blur(40px);
  pointer-events: none;
}
.ipo-hero__inner { position: relative; z-index: 2; }
.ipo-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 900px;
}
.ipo-hero h1 .ital { font-style: italic; font-weight: 600; }
.ipo-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.ipo-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 60px;
}
@media (max-width: 960px) {
  .ipo-hero__cards { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   MORTGAGE CALCULATOR
   ════════════════════════════════════════════════════════════════ */
.calc {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  background: var(--bg-gray);
  border-radius: var(--r-lg);
  padding: 48px;
  margin-top: 32px;
}
.calc__sliders { display: flex; flex-direction: column; gap: 28px; }
.calc__row { display: flex; flex-direction: column; gap: 12px; }
.calc__label-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.calc__label-row strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px; color: var(--text);
}
.calc__range {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  border-radius: 99px;
  background: var(--line);
  outline: none; cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37,189,67,.18);
  cursor: pointer;
  transition: box-shadow .2s;
}
.calc__range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 8px rgba(37,189,67,.18); }
.calc__range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%; border: none;
  background: var(--green);
  cursor: pointer;
}
.calc__minmax {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}
.calc__result {
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  align-self: start;
}
.calc__result-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.05em; }
.calc__result-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
}
.calc__divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }
.calc__row-out {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.calc__row-out strong { color: #fff; font-weight: 600; }
.calc__note {
  font-size: 11px; color: rgba(255,255,255,.4);
  line-height: 1.5;
  margin-top: 8px;
}
.calc__cta { margin-top: 8px; }

@media (max-width: 960px) {
  .calc { grid-template-columns: 1fr; padding: 28px; }
}

/* ════════════════════════════════════════════════════════════════
   PROGRAMS BIG GRID (Ипотечные программы — большая сетка)
   ════════════════════════════════════════════════════════════════ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.prog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.prog-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.prog-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.prog-card__rate {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
}
.prog-card__rate-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.prog-card__ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.prog-card__ico svg { width: 18px; height: 18px; }
.prog-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--text);
}
.prog-card h3 .ital { font-style: italic; font-weight: 600; }
.prog-card p { font-size: 13px; line-height: 1.5; color: var(--text-2); flex: 1; }
.prog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  margin-top: 4px;
  transition: gap .2s, color .2s;
}
.prog-card__link:hover { color: var(--green); gap: 10px; }
.prog-card__link svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .prog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   NEWS LIST (страница новостей)
   ════════════════════════════════════════════════════════════════ */
.news-filter {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin: 24px 0 40px;
}
.news-filter .field {
  margin-bottom: 0;
}
.news-filter__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-item {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.news-item__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-gray);
}
.news-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-item:hover .news-item__img img { transform: scale(1.06); }
.news-item__body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.news-item__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-item h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  flex: 1;
}
.news-item time {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.news-load-more {
  display: flex; justify-content: center;
  margin: 48px 0;
}

@media (max-width: 1100px) {
  .news-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .news-filter { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-list { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   AKCII GRID (страница акций)
   ════════════════════════════════════════════════════════════════ */
.akcii-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.akcii-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-gray);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.akcii-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.akcii-card__img {
  position: absolute; inset: 0;
  z-index: 0;
}
.akcii-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.akcii-card:hover .akcii-card__img img { transform: scale(1.06); }
.akcii-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,20,.85) 0%, rgba(15,15,20,.3) 45%, transparent 75%);
}
.akcii-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px;
  color: #fff;
}
.akcii-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.akcii-card__title .ital { font-style: italic; font-weight: 600; }
.akcii-card__location {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}
.akcii-card__badge {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 12px;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
}

/* "text-only" акция — без фото, зелёный фон, в стиле MR Group лилового блока */
.akcii-card--text {
  background: var(--green-soft);
  aspect-ratio: 3/4;
}
.akcii-card--text .akcii-card__body {
  color: var(--text);
  padding: 22px;
  margin-top: 0;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.akcii-card--text .akcii-card__title { color: var(--text); }
.akcii-card--text .akcii-card__location { color: var(--text-2); }
.akcii-card--text .akcii-card__badge { background: var(--green); color: #fff; }

.akcii-card--dark {
  background: var(--dark);
  aspect-ratio: 3/4;
}
.akcii-card--dark .akcii-card__body {
  color: #fff;
  padding: 22px;
  margin-top: 0;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.akcii-card--dark .akcii-card__title { color: #fff; }
.akcii-card--dark .akcii-card__location { color: rgba(255,255,255,.65); }

@media (max-width: 1100px) {
  .akcii-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .akcii-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .akcii-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FINISH SWITCHER — beautiful tabbed finish viewer
   ════════════════════════════════════════════════════════════════ */
.finish-switcher {
  margin-top: 32px;
}
.finish-switcher__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.finish-switcher__tab {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.finish-switcher__tab:hover { border-color: var(--text); }
.finish-switcher__tab.is-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.finish-switcher__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.finish-switcher__panel {
  display: none;
  flex-direction: column;
  padding: 40px;
  min-height: 100%;
}
.finish-switcher__panel.is-active { display: flex; }
.finish-switcher__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.finish-switcher__title .ital { font-style: italic; font-weight: 600; }
.finish-switcher__subtitle {
  font-size: 14px; color: var(--muted);
  margin-bottom: 24px;
}
.finish-switcher__panel ul {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.finish-switcher__panel ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5;
  color: var(--text-2);
}
.finish-switcher__panel ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  flex-shrink: 0;
}
.finish-switcher__price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.finish-switcher__price-label {
  font-size: 13px; color: var(--muted);
}
.finish-switcher__price-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px; color: var(--text);
}
.finish-switcher__media {
  position: relative;
  min-height: 380px;
  background: var(--bg-gray);
}
.finish-switcher__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.finish-switcher__media img.is-active { opacity: 1; }

@media (max-width: 960px) {
  .finish-switcher__body { grid-template-columns: 1fr; }
  .finish-switcher__media { min-height: 280px; order: -1; }
  .finish-switcher__panel { padding: 28px; }
}

/* ════════════════════════════════════════════════════════════════
   ARTICLE (страница новости)
   ════════════════════════════════════════════════════════════════ */
.article-hero {
  padding: 140px 0 40px;
}
.article-hero__meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.article-hero__meta .badge--green {
  background: var(--green);
  color: #fff;
}
.article-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 920px;
}
.article-hero__title .ital { font-style: italic; font-weight: 600; }
.article-hero__date {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 32px 0 48px;
  background: var(--bg-gray);
}
.article-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.article-body p {
  margin-bottom: 22px;
  color: var(--text-2);
}
.article-body p strong { color: var(--text); }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  color: var(--text);
}
.article-body h2 .ital { font-style: italic; font-weight: 600; }
.article-body ul {
  margin-bottom: 22px;
  padding-left: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.article-body ul li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-2);
}
.article-body ul li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
  flex-shrink: 0;
}
.article-body blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--green-soft);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
}
.article-cta {
  max-width: 760px;
  margin: 48px auto;
  padding: 32px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}
.article-cta strong .ital { font-style: italic; font-weight: 600; }
.article-cta p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.article-share {
  max-width: 760px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.article-share span { font-size: 13px; color: var(--muted); }
.article-share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s, color .2s, border-color .2s;
}
.article-share-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.article-share-btn svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════════════
   KONTAKTY
   ════════════════════════════════════════════════════════════════ */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 16px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 4px;
}
.contact-card__addr {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.contact-card__meta-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.contact-card__meta-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.contact-card__meta-item a { color: var(--text); }
.contact-card__meta-item a:hover { color: var(--green); }
.contact-card__map {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-gray);
}
.contact-departments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.contact-dept {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.contact-dept h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-dept__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.contact-dept a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.contact-dept a:hover { color: var(--green); }

@media (max-width: 960px) {
  .contact-card__meta { grid-template-columns: 1fr; }
  .contact-departments { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   TRADE-IN
   ════════════════════════════════════════════════════════════════ */
.trade-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.trade-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trade-feat__ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.trade-feat__ico svg { width: 22px; height: 22px; }
.trade-feat h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
}
.trade-feat h3 .ital { font-style: italic; font-weight: 600; }
.trade-feat p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

@media (max-width: 960px) {
  .trade-features { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container, .hdr-container, .hero-container { padding-inline: 24px; }
  .filter { grid-template-columns: 1fr 1fr; }
  .filter__submit { grid-column: 1 / -1; }
  .projects { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 24px; }
  .footer__brand-btns { flex-direction: row; width: auto; margin-top: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 20px; }
  .about .h2, .about__text { grid-column: 1; }
}
@media (max-width: 960px) {
  .hdr__brands { display: none; }
  .hdr__menu { display: none; }
  .hdr__phone { display: none; }
  .hdr__burger { display: flex; }
  .hdr__nav { display: none; }
  .hero__body { padding-top: 100px; padding-bottom: 60px; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; gap: 16px; }
  .hero__main { align-self: end; grid-row: 2; }
  .hero__offer { grid-row: 1; width: 100%; max-width: 320px; }
  .hero__slider { grid-row: 3; }
  .lead-grid { grid-template-columns: 1fr; }
  .purchases { grid-template-columns: 1fr; }
  .mortgage__cards { grid-template-columns: 1fr; }
  .prog-list { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: 1fr; padding: 32px; }
  .online-grid__img { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .h2 { font-size: 32px; margin-bottom: 24px; }
  .h2__chev { width: 24px; height: 24px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer__proj-grid { grid-template-columns: 1fr; }
  .footer__brand { flex-direction: column; align-items: flex-start; }
  .footer__brand-btns { flex-direction: column; width: 100%; }
  .filter { grid-template-columns: 1fr; }
  .hero__title { font-size: 44px; }
  .hero__offer { padding: 16px; }
  .hero__countdown strong { font-size: 20px; }
  .purch--white .purch__big { font-size: 48px; }
  .project__row { flex-direction: column; gap: 8px; }
}


/* ════════════════════════════════════════════════════════════════
   PROJECT EXTRA CMS BLOCKS
   ════════════════════════════════════════════════════════════════ */
.section-head--stack { align-items: flex-start; gap: 12px; }
.project-extra__sub { max-width: 720px; color: var(--text-2); font-size: 15px; line-height: 1.55; }
.project-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.project-info-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-info-card { display: flex; flex-direction: column; min-height: 360px; background: #fff; border-radius: var(--r-md); overflow: hidden; color: var(--text); border: 1px solid rgba(0,0,0,.03); transition: transform .25s ease, box-shadow .25s ease; }
.project-info-card:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(20,24,35,.08); }
.project-info-card__img { aspect-ratio: 16 / 10; background: #eef0f4; overflow: hidden; margin: 14px 14px 0; border-radius: 10px; }
.project-info-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-info-card__body { position: relative; flex: 1; padding: 24px 22px 72px; }
.project-info-card__body h3 { font-family: var(--font); font-size: clamp(18px, 1.45vw, 24px); line-height: 1.16; font-weight: 600; letter-spacing: 0; max-width: 92%; }
.project-info-card__body p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.project-info-card__arrow { position: absolute; right: 20px; bottom: 20px; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--green); color: var(--green); display: grid; place-items: center; }
.project-info-card__arrow svg { width: 22px; height: 22px; }
.project-info-card--compact { min-height: 300px; }
.project-info-card--compact .project-info-card__body h3 { font-size: clamp(19px, 1.65vw, 28px); line-height: 1.12; }
.project-info-card--compact .project-info-card__body { padding-bottom: 30px; }
.project-info-card--compact .project-info-card__arrow { display: none; }
.project-concept { background: var(--bg-gray); }
.project-concept .container { max-width: 1280px; }
.project-concept__grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.project-concept__grid .h2 { margin: 0; max-width: 760px; }
.project-concept__text { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; color: var(--text); font-size: 18px; line-height: 1.5; }
.project-concept__btn { justify-self: end; align-self: start; margin-top: 8px; white-space: nowrap; }
.lead-form__offer { margin: 0 0 24px; padding: 16px 18px; border-radius: 16px; background: #f1faf1; border: 1px solid rgba(87,196,81,.22); color: var(--text); }
.lead-form__offer strong { display: block; font-size: 15px; margin-bottom: 5px; }
.lead-form__offer span { display: block; color: var(--text-2); font-size: 13px; line-height: 1.45; }
@media (max-width: 1280px) { .project-concept__grid { gap: 30px; } .project-concept__text { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; font-size: 17px; } }
@media (max-width: 1100px) { .project-info-grid, .project-info-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); } .project-concept__grid { grid-template-columns: 1fr; gap: 24px; } .project-concept__text { grid-template-columns: 1fr 1fr; } .project-concept__btn { grid-column: auto; justify-self: start; margin-top: 0; } }
@media (max-width: 640px) { .project-info-grid, .project-info-grid--four { grid-template-columns: 1fr; } .project-info-card { min-height: 300px; } .project-concept__text { grid-template-columns: 1fr; font-size: 16px; gap: 18px; } }

/* ─── Project concept (text_columns) — multi-column layout: title left, paragraphs right ─── */
.project-concept--multi { background: var(--bg-gray); }
.project-concept--multi .project-concept__grid {
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}
.project-concept--multi .project-concept__grid .h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.project-concept__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.project-concept__col p { margin: 0; }
.project-concept--multi .project-concept__btn {
  grid-column: 2 / 3;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.project-concept__btn-ico { width: 18px; height: 18px; }
@media (max-width: 1100px) {
  .project-concept--multi .project-concept__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 22px;
  }
  .project-concept__cols { grid-template-columns: 1fr 1fr; gap: 32px; font-size: 16px; }
  .project-concept--multi .project-concept__btn { grid-column: auto; justify-self: start; }
}
@media (max-width: 640px) {
  .project-concept__cols { grid-template-columns: 1fr; gap: 18px; font-size: 15px; }
}

/* ─── Entrance media slider (media_slider) ─── */
.entrance-block { background: #fff; }
.entrance-block__grid {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.entrance-block__text { display: flex; flex-direction: column; gap: 22px; }
.entrance-block__text .h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.entrance-block__lead { color: var(--text-2); font-size: 16px; line-height: 1.6; max-width: 460px; margin: 0; }
.entrance-block__text .btn { align-self: flex-start; margin-top: 4px; }

.entrance-slider {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-gray);
  aspect-ratio: 16 / 10;
}
.entrance-slider__stage { position: absolute; inset: 0; }
.entrance-slider__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.entrance-slider__slide.is-active { opacity: 1; pointer-events: auto; }
.entrance-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.entrance-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: background .2s ease, transform .2s ease;
  z-index: 3;
}
.entrance-slider__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.entrance-slider__nav svg { width: 22px; height: 22px; }
.entrance-slider__nav--prev { left: 16px; }
.entrance-slider__nav--next { right: 16px; }
.entrance-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.entrance-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.entrance-slider__dot.is-active { background: #fff; width: 24px; border-radius: 4px; }

@media (max-width: 1100px) {
  .entrance-block__grid { grid-template-columns: 1fr; gap: 32px; }
  .entrance-block__text .h2 { max-width: none; }
  .entrance-block__lead { max-width: none; font-size: 15px; }
}
@media (max-width: 640px) {
  .entrance-slider { aspect-ratio: 4 / 3; border-radius: 18px; }
  .entrance-slider__nav { width: 38px; height: 38px; }
  .entrance-slider__nav--prev { left: 10px; }
  .entrance-slider__nav--next { right: 10px; }
}

/* ─── 4-column feature_cards (Максимум выгоды) ─── */
.project-info-card--compact { min-height: 280px; }
.project-info-card--compact .project-info-card__body { padding: 22px 20px 26px; }
.project-info-card--compact .project-info-card__body h3 {
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.2;
  font-weight: 600;
}
.project-info-card--compact .project-info-card__arrow { display: none; }
.project-info-card--compact .project-info-card__img { aspect-ratio: 4 / 3; margin: 12px 12px 0; }

/* Тонкая правка респонсива именно для блока с 4 карточками */
@media (max-width: 1280px) {
  .project-info-grid--four { gap: 16px; }
  .project-info-card--compact .project-info-card__body h3 { font-size: 15px; }
}
@media (max-width: 980px) {
  .project-info-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .project-info-grid--four { grid-template-columns: 1fr; }
}

/* ─── Location cards (Расположение): титулы заголовочным шрифтом, не жирным ─── */
.project-extra--location .project-info-card__body { padding: 26px 24px 28px; }
.project-extra--location .project-info-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
}
.project-extra--location .project-info-card__body p {
  font-family: var(--font-body);
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 1280px) {
  .project-extra--location .project-info-card__body h3 { font-size: 22px; }
}
@media (max-width: 640px) {
  .project-extra--location .project-info-card__body h3 { font-size: 20px; }
}

/* ─── Apartments block: collapsible header + dynamic grid ─── */
#apartments h2.h2--toggle {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
#apartments h2.h2--toggle .h2__chev {
  width: 38px;
  height: 38px;
  flex: none;
  color: var(--text);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#apartments.is-collapsed h2.h2--toggle .h2__chev { transform: rotate(-90deg); }
#apartments.is-collapsed .filter,
#apartments.is-collapsed .apt-grid,
#apartments.is-collapsed .apt-empty,
#apartments.is-collapsed .apt-more { display: none !important; }

.apt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1100px) { .apt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .apt-grid { grid-template-columns: 1fr; } }

.apt-grid .apt {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.apt-grid a.apt:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(20,24,35,.08); }

.apt-loader {
  grid-column: 1 / -1;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}
.apt-loader__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: aptLoaderPulse 1.2s infinite ease-in-out both;
}
.apt-loader__dot:nth-child(2) { animation-delay: .15s; }
.apt-loader__dot:nth-child(3) { animation-delay: .3s; }
@keyframes aptLoaderPulse {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40% { transform: scale(1); opacity: 1; }
}

.apt-more {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}
.apt-more .btn { min-width: 220px; }

/* ─── Ипотека: алёрт о дедлайне 1 июля ─── */
.ipo-alert {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
  max-width: 760px;
  position: relative;
  overflow: hidden;
}
.ipo-alert::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
}
.ipo-alert__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(87,196,81,0.18);
  color: #57C451;
  display: grid;
  place-items: center;
}
.ipo-alert__icon svg { width: 24px; height: 24px; }
.ipo-alert__body { flex: 1; min-width: 0; }
.ipo-alert__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.18;
  margin-bottom: 8px;
}
.ipo-alert__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
}
.ipo-alert__countdown {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ipo-alert__countdown > div {
  min-width: 56px;
  background: rgba(0,0,0,0.28);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.ipo-alert__countdown strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.ipo-alert__countdown span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .ipo-alert { flex-direction: column; gap: 14px; padding: 18px 20px; }
  .ipo-alert__countdown > div { padding: 6px 10px; min-width: 48px; }
  .ipo-alert__countdown strong { font-size: 18px; }
}

/* ─── Apartment card: mortgage 6% badge overlay on plan ─── */
.apt__plan { position: relative; overflow: hidden; }
.apt__plan-mort {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 35%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.apt__plan-mort::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  margin-right: 8px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27><path d=%27M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z%27/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27><path d=%27M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z%27/></svg>") center/contain no-repeat;
  flex: none;
}
.apt__plan-mort {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.005em;
}
