:root {
  --bg: #f4f1e8;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: #183126;
  --muted: #5b6f63;
  --line: rgba(24, 49, 38, 0.14);
  --green: #2f6f44;
  --green-strong: #1f5a35;
  --green-soft: #dceadf;
  --shadow: 0 24px 60px rgba(24, 49, 38, 0.12);
  --radius: 24px;
  --page-gutter: clamp(18px, 3vw, 42px);
  --block-gap: clamp(20px, 2.4vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(108, 156, 104, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(44, 104, 70, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
  font-family: "Manrope", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(251, 248, 241, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.header-quicklinks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--green-strong);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(197, 215, 200, 0.88);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(24, 49, 38, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.header-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 170, 0.94);
  box-shadow: 0 18px 34px rgba(24, 49, 38, 0.12);
}

.header-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--green-strong);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(197, 215, 200, 0.88);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(24, 49, 38, 0.08);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 170, 0.94);
  box-shadow: 0 18px 34px rgba(24, 49, 38, 0.12);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.brandmark img {
  width: 210px;
}

.site-nav {
  display: flex;
  gap: 18px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--green-strong);
  background: rgba(47, 111, 68, 0.1);
}

.hero,
.page-hero {
  padding: 72px 0 32px;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: 28px;
}

.hero-copy {
  max-width: 840px;
}

.hero-copy h1,
.page-hero h1,
.article-shell h1 {
  margin: 0;
  font-family: "Literata", serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 3.8vw, 4.15rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead,
.section-copy,
.article-lead,
.hero-note,
.news-card p,
.news-list-card p,
.info-card p,
.check-list p,
.quote-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 14px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--green-strong), var(--green));
  box-shadow: var(--shadow);
}

.button-soft {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button-link,
.text-link {
  padding: 0;
  color: var(--green-strong);
}

.hero-panel,
.quote-card,
.info-card,
.metric-card,
.news-card,
.news-list-card,
.empty-card,
.article-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 210px;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(226, 238, 228, 0.72));
}

.metric-card p,
.news-date,
.article-meta,
.news-list-meta {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.metric-card strong {
  display: block;
  margin-bottom: 14px;
  line-height: 0.95;
}

.metric-card p {
  margin: 0;
  max-width: 18ch;
  font-size: 1.08rem;
  line-height: 1.35;
}

.metric-accent {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(31, 90, 53, 0.68);
}

.section {
  padding: 32px 0 36px;
}

.section > .container + .container {
  margin-top: var(--block-gap);
}

.band {
  padding: 56px 0;
}

.card-grid,
.news-grid,
.scenario-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.scenario-card,
.pitch-card,
.news-card,
.news-list-card,
.empty-card,
.quote-card {
  padding: 24px;
}

.news-card {
  display: block;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.news-card-link {
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(24, 49, 38, 0.13);
  border-color: rgba(188, 209, 191, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 244, 0.92));
}

.scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plot-specs-section {
  padding-top: 54px;
}

.plot-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plot-spec-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(197, 215, 200, 0.82);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

.plot-spec-head {
  margin-bottom: 18px;
}

.plot-spec-head p,
.plot-spec-summary span,
.article-plot-cta-label,
.related-article-card p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.plot-spec-head h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.14;
}

.plot-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.plot-spec-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197, 215, 200, 0.7);
}

.plot-spec-list dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.plot-spec-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.plot-spec-features {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plot-spec-features li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.plot-spec-features li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--green-strong);
  border-radius: 50%;
  content: "";
}

.plot-spec-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.plot-spec-summary div {
  padding: 16px;
  background: rgba(37, 93, 61, 0.08);
  border: 1px solid rgba(37, 93, 61, 0.14);
  border-radius: 18px;
}

.plot-spec-summary strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.32;
}

.video-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

.video-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 100%;
  padding-bottom: 6px;
}

.video-spotlight-copy strong,
.amenity-card strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.22;
}

.video-spotlight-copy p,
.amenity-card p,
.owner-contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.video-spotlight-copy a,
.plot-photo-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.video-spotlight-embed {
  overflow: hidden;
  border-radius: 22px;
  background: #d9e4dc;
  aspect-ratio: 16 / 9;
}

.video-spotlight-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.amenity-group-head h3 {
  margin: 0 0 14px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.amenity-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.amenity-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  min-height: 186px;
  padding: 20px 20px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(24, 49, 38, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(24, 49, 38, 0.12);
  border-color: rgba(194, 212, 198, 0.92);
}

.amenity-label {
  margin: 0 0 12px;
  color: rgba(31, 90, 53, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-section-head {
  margin-top: clamp(28px, 4vw, 52px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: grid;
  min-height: 236px;
  padding: 24px;
  align-content: start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

a.price-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

a.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 194, 170, 0.94);
  box-shadow: 0 24px 48px rgba(24, 49, 38, 0.12);
}

.price-card-label {
  margin: 0;
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 2.08rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-card p:not(.price-card-label) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-card-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--green-strong), var(--green));
  border-color: rgba(255, 255, 255, 0.28);
}

.price-card-accent .price-card-label,
.price-card-accent p:not(.price-card-label) {
  color: rgba(255, 255, 255, 0.82);
}

.price-card-accent h3 {
  font-size: 3.4rem;
}

.price-card-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.price-card-cta::after {
  content: "↗";
  margin-left: 8px;
}

.scenario-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(24, 49, 38, 0.12);
  border-color: rgba(194, 212, 198, 0.92);
}

.scenario-cover {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  aspect-ratio: 16 / 11;
  background: #d9e4dc;
}

.scenario-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 29, 24, 0.05), rgba(16, 29, 24, 0.02) 38%, rgba(16, 29, 24, 0.28));
  pointer-events: none;
}

.scenario-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 360ms ease;
}

.scenario-cover picture,
.plot-photo-cover picture,
.contact-card-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scenario-card:hover .scenario-cover img {
  transform: scale(1.08) translateY(-4px);
}

.scenario-body {
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #ffffff);
}

.scenario-body h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.06;
}

.scenario-body p {
  margin: 0;
  color: rgba(35, 62, 48, 0.72);
  font-size: 1rem;
  line-height: 1.54;
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pitch-card {
  min-height: 188px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(24, 49, 38, 0.08);
}

.pitch-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.pitch-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.location-links,
.plot-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-links,
.map-shell,
.plot-photo-grid {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.location-links {
  margin-bottom: 0;
}

.location-link,
.plot-photo-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.location-link:hover,
.plot-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(24, 49, 38, 0.12);
  border-color: rgba(194, 212, 198, 0.92);
}

.location-link {
  display: block;
  padding: 22px 24px;
}

.location-link strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.18;
}

.location-link p,
.plot-photo-body p,
.map-fallback p {
  margin: 0;
  color: rgba(35, 62, 48, 0.72);
  font-size: 0.98rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.location-link span,
.plot-photo-body span {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-shell {
  overflow: hidden;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  box-shadow: 0 22px 48px rgba(24, 49, 38, 0.1);
}

.map-shell-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: start;
}

.map-sidecards {
  display: grid;
  gap: 14px;
}

.map-shell-main {
  min-width: 0;
}

.map-shell-inner {
  padding: 18px;
  background: linear-gradient(180deg, rgba(246, 250, 246, 0.96), rgba(234, 243, 236, 0.92));
  border: 1px solid rgba(197, 215, 200, 0.82);
  border-radius: 28px;
}

.yandex-map {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(219, 233, 225, 0.9), rgba(242, 245, 241, 0.94));
}

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  padding: 24px;
  text-align: center;
}

.map-shell-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 12px 18px;
  color: var(--green-strong);
  background: linear-gradient(180deg, rgba(239, 246, 240, 0.96), rgba(229, 240, 231, 0.9));
  border: 1px solid rgba(197, 215, 200, 0.84);
  border-radius: 18px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.map-shell-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(24, 49, 38, 0.1);
  border-color: rgba(164, 194, 170, 0.94);
}

.map-shell-link span {
  font-size: 0.96rem;
  font-weight: 800;
}

.owner-note-card {
  margin-bottom: 0;
}

.owner-note-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: 1.06rem;
  line-height: 1.3;
}

.owner-note-card p {
  margin: 0;
}

.owner-note-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-shell-link strong {
  font-size: 1.02rem;
  line-height: 1;
}

.telegram-promo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 150px;
  padding: 22px 18px;
  color: var(--green-strong);
  background: linear-gradient(180deg, rgba(241, 247, 242, 0.96), rgba(230, 240, 232, 0.92));
  border: 1px solid rgba(197, 215, 200, 0.84);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.telegram-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(24, 49, 38, 0.12);
  border-color: rgba(164, 194, 170, 0.94);
}

.pulse-card {
  animation: pulse-card 2.8s ease-in-out infinite;
}

.telegram-promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, #3aa36a, #267f4f);
  box-shadow: 0 16px 28px rgba(38, 127, 79, 0.22);
}

.telegram-promo-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.telegram-promo-copy strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.telegram-promo-copy {
  max-width: 160px;
}

.amenity-owner-card {
  min-height: 186px;
}

.amenity-owner-copy {
  max-width: none;
}

.plot-photo-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

.plot-photo-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d9e4dc;
  display: block;
}

.plot-photo-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 24, 0.04), rgba(16, 29, 24, 0.24));
  pointer-events: none;
}

.plot-photo-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.plot-photo-card:hover .plot-photo-cover img {
  transform: scale(1.05);
}

.plot-photo-body {
  padding: 22px 24px 24px;
}

.plot-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 28, 23, 0.7);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 5vh auto 0;
  padding: 18px;
  background: rgba(248, 250, 247, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(14, 26, 20, 0.28);
}

.video-modal-title {
  margin: 0 40px 14px 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.video-modal-frame {
  overflow: hidden;
  border-radius: 20px;
  background: #d9e4dc;
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: var(--green-strong);
  background: rgba(232, 241, 234, 0.96);
  box-shadow: 0 10px 24px rgba(24, 49, 38, 0.12);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.viewing-form-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

.viewing-form-copy strong {
  display: block;
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.viewing-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.viewing-form input {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(247, 249, 245, 0.96);
  border: 1px solid rgba(197, 215, 200, 0.92);
  border-radius: 16px;
  outline: none;
  font: inherit;
}

.viewing-form input:focus {
  border-color: rgba(47, 111, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 111, 68, 0.12);
}

.viewing-form button {
  height: 48px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-strong), var(--green));
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.viewing-form-message {
  margin: 12px 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.viewing-form-message.success {
  color: var(--green-strong);
}

.viewing-form-message.error {
  color: #9a4a39;
}

.contact-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(24, 49, 38, 0.08);
}

.contact-card-photo {
  width: 138px;
  height: 138px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(222, 235, 225, 0.95);
  box-shadow: 0 18px 34px rgba(24, 49, 38, 0.14);
}

.contact-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card-label {
  margin: 0 0 8px;
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.06;
}

.contact-card-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-card-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(244, 248, 243, 0.96);
  border: 1px solid rgba(197, 215, 200, 0.88);
  border-radius: 18px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-card-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 170, 0.94);
  box-shadow: 0 14px 28px rgba(24, 49, 38, 0.1);
}

.contact-card-links span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-card-links strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.contact-card-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.plot-photo-body h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list article {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 68, 0.2), transparent 70%);
}

@keyframes pulse-card {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 0 0 0 rgba(58, 163, 106, 0);
  }

  50% {
    transform: translateY(-2px) scale(1.012);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 0 0 10px rgba(58, 163, 106, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-card {
    animation: none;
  }
}

.news-card h3,
.news-list-card h2,
.info-card h3,
.article-section h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.news-card h3 {
  margin: 0;
}

.news-card h3 {
  display: inline-block;
  transition: transform 220ms ease, color 220ms ease;
  transform-origin: left center;
}

.news-card:hover h3 {
  transform: translateX(4px);
}

.news-list {
  display: grid;
  gap: 22px;
}

.news-page-head {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.news-page-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.news-list-portal {
  gap: 18px;
}

.news-list-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 245, 241, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.78);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.news-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(24, 49, 38, 0.13);
  border-color: rgba(188, 209, 191, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 244, 0.92));
}

.news-list-meta-portal {
  align-items: center;
  margin: 0;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--green-strong);
  background: rgba(228, 239, 230, 0.92);
  border: 1px solid rgba(197, 215, 200, 0.82);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
}

.news-source {
  color: var(--muted);
  font-size: 0.9rem;
}

.news-list-content {
  display: grid;
  gap: 0;
}

.news-list-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4px;
}

.news-list-link {
  font-size: 0.96rem;
  font-weight: 800;
}

.news-list-card h2 a {
  transition: transform 220ms ease, color 220ms ease;
  transform-origin: left center;
}

.news-list-card:hover h2 a {
  transform: translateX(4px);
}

.news-list-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 220ms ease;
}

.news-list-card:hover .news-list-link::after {
  transform: translateX(3px);
}

.news-list-meta,
.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.article-meta-bottom {
  margin: 32px 0 10px;
}

.article-page {
  padding: 48px 0 64px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  justify-content: center;
  gap: 32px;
  width: auto;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-main {
  min-width: 0;
  padding: 34px 36px 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-main h1 {
  max-width: none;
  font-size: clamp(1.95rem, 2.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.article-header {
  margin-bottom: 24px;
}

.article-aside {
  position: sticky;
  top: 108px;
  align-self: start;
}

.article-side-stack {
  display: grid;
  gap: 16px;
}

.article-side-card {
  min-height: 0;
}

.article-side-copy {
  max-width: none;
}

.article-section + .article-section {
  margin-top: 28px;
}

.article-section p,
.article-lead,
.source-note {
  max-width: 68ch;
}

.source-note {
  margin-top: 28px;
  color: var(--muted);
}

.article-plot-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  background: rgba(37, 93, 61, 0.08);
  border: 1px solid rgba(37, 93, 61, 0.16);
  border-radius: 22px;
}

.article-plot-cta h2 {
  margin: 0 0 8px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.article-plot-cta p:not(.article-plot-cta-label) {
  margin: 0;
  color: var(--muted);
}

.article-plot-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.related-articles {
  margin-top: 36px;
}

.related-articles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.related-articles-head h2 {
  margin: 0;
  font-size: 1.42rem;
}

.related-articles-head a {
  color: var(--green-strong);
  font-weight: 800;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.related-article-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(197, 215, 200, 0.76);
  border-radius: 18px;
}

.related-article-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

.native-article-row {
  margin-top: 12px;
}

.native-article-spot {
  display: flex;
  width: min(100%, 560px);
  background: linear-gradient(180deg, rgba(241, 247, 242, 0.98), rgba(231, 241, 233, 0.96));
  border: 1px solid rgba(173, 202, 179, 0.98);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 24px rgba(24, 49, 38, 0.08);
}

.native-article-spot-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 16px 20px 17px;
  color: inherit;
}

.native-article-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--green-strong);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.78;
}

.native-article-spot-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.native-article-spot-copy strong {
  color: var(--green-strong);
  font-size: 1.02rem;
  line-height: 1.2;
}

.native-article-spot-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  max-width: 42ch;
}

.native-article-spot:hover {
  transform: translateY(-1px);
  border-color: rgba(114, 170, 127, 0.98);
  box-shadow: 0 16px 32px rgba(24, 49, 38, 0.11);
}

.native-article-spot:hover .native-article-spot-copy strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.native-article-spot-inline {
  width: 100%;
  max-width: 420px;
  margin-top: auto;
  margin-bottom: 6px;
}

.amenity-article-spot {
  width: 100%;
  max-width: none;
  min-height: 186px;
}

.amenity-article-spot .native-article-spot-link {
  min-height: 186px;
  justify-content: center;
}

.amenity-article-spot-link {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  min-height: 186px;
  padding: 18px;
  text-align: center;
}

.amenity-article-spot .native-article-spot-copy {
  justify-items: center;
  gap: 0;
}

.amenity-article-spot .native-article-spot-copy strong {
  max-width: 12ch;
  font-size: 1.08rem;
  line-height: 1.24;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(197, 215, 200, 0.82);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(24, 49, 38, 0.07);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.28;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(37, 93, 61, 0.28);
  border-radius: 50%;
  color: var(--green-strong);
  content: "+";
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 78ch;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.site-footer {
  padding: 40px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card h3 {
    font-size: 2.42rem;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .card-grid,
  .scenario-grid,
  .plot-specs-grid,
  .plot-spec-summary,
  .price-grid,
  .amenity-grid-compact,
  .amenity-grid-full,
  .location-links,
  .plot-photo-grid,
  .pitch-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .video-spotlight-card,
  .map-shell-layout,
  .map-sidecards,
  .article-plot-cta,
  .related-articles-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .yandex-map,
  .map-fallback {
    height: 200px;
  }

  .location-links,
  .map-shell,
  .plot-photo-grid {
    margin-left: 0;
  }

  .map-shell {
    padding: 14px;
  }

  .map-shell-inner {
    padding: 14px;
  }

  .telegram-promo-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
  }

  .owner-contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
  }

  .viewing-form {
    grid-template-columns: 1fr;
  }

  .viewing-form button,
  .viewing-form input {
    width: 100%;
  }

  .contact-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-card-photo {
    width: 116px;
    height: 116px;
  }

  .video-modal-dialog {
    width: min(100% - 20px, 960px);
    margin-top: 9vh;
    padding: 14px;
  }

  .telegram-promo-copy {
    max-width: none;
  }

  .owner-contact-copy {
    max-width: none;
  }

  .article-aside {
    position: static;
    top: auto;
  }

  .article-plot-cta-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(640px, 1.16fr);
  }

  .scenario-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-actions,
  .section-head,
  .news-list-meta,
  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .header-quicklinks {
    flex: 1;
  }

  .has-js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
  }

  .has-js .site-nav {
    display: none;
  }

  .has-js .site-nav.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(197, 215, 200, 0.72);
    border-radius: 14px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .brandmark img {
    width: 176px;
  }

  .article-shell {
    padding: 0;
  }

  .article-main {
    padding: 20px;
  }

  .scenario-body {
    padding: 20px 20px 22px;
  }

  .scenario-body h3 {
    font-size: 1.22rem;
  }

  .scenario-body p {
    font-size: 0.94rem;
  }

  .price-card h3 {
    font-size: 2.28rem;
  }

  .price-card-accent h3 {
    font-size: 3.1rem;
  }

  .price-card {
    min-height: 0;
  }

  .plot-spec-card {
    padding: 20px;
  }

  .plot-spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article-plot-cta {
    padding: 18px;
  }
}
