﻿:root {
  --green: #5ebc67;
  --green-dark: #23823b;
  --green-deep: #0f5f2b;
  --green-soft: #e6f3e5;
  --green-soft-2: #f3f8f1;
  --black: #101510;
  --ink: #1a2118;
  --muted: #5f6d5b;
  --line: #dbe8d8;
  --bg: #f7faf5;
  --card: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(28, 40, 28, .08);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(94,188,103,.10), transparent 28%), linear-gradient(180deg, #f9fbf7, var(--bg));
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { background: #eef4eb; padding: 2px 6px; border-radius: 7px; font-size: .95em; }
pre { margin: 0; white-space: pre-wrap; font-family: Consolas, Monaco, monospace; font-size: 14px; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(247, 250, 245, .93); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(94,188,103,.18); }
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo-link { display: inline-flex; align-items: center; }
.logo-frame { width: 232px; height: 46px; display: flex; align-items: center; }
.logo-frame img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 15px; padding: 9px 12px; border-radius: 999px; transition: .18s ease; font-weight: 600; }
.nav-links a:hover { color: var(--green-dark); background: #fff; }
.nav-links a.btn { color: #fff !important; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 19px; border-radius: 999px; border: 1px solid var(--green-dark); background: var(--green-dark); color: #fff !important; font-weight: 800; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; cursor: pointer; box-shadow: 0 10px 25px rgba(47, 143, 69, .20); }
.btn:hover { transform: translateY(-1px); background: var(--green); border-color: var(--green); }
.btn.secondary { background: #fff; color: var(--green-dark) !important; border-color: rgba(94,188,103,.35); box-shadow: none; }
.btn.secondary:hover { background: var(--green-soft); border-color: var(--green); }
.btn.full { width: 100%; }
.text-link { color: var(--green-dark); font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.eyebrow { color: var(--green-dark); text-transform: uppercase; letter-spacing: .13em; font-weight: 900; font-size: 12px; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(38px, 6vw, 70px); letter-spacing: -.055em; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.04em; }
h3 { font-size: 24px; letter-spacing: -.03em; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(17px, 2.1vw, 21px); max-width: 760px; margin: 20px 0 0; }
.muted { color: var(--muted); }
.page-title { padding: 54px 0 24px; }
.page-title-centered { text-align: center; }
.page-title-centered .lead { margin-left: auto; margin-right: auto; }
.page-title-card, .offer-title-card { background: linear-gradient(145deg, #ffffff, #eff8ee); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); box-shadow: var(--shadow); padding: clamp(30px, 5vw, 58px); }
.compact-title { padding-top: 34px; padding-bottom: 34px; }
.first-section { padding-top: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.section { padding: 52px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 24px; }
.section-head.compact { margin-bottom: 18px; }
.section-head p { color: var(--muted); margin: 10px 0 0; max-width: 680px; }
.investment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.investment-card { overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(20, 26, 20, .05); }
.card-image { position: relative; display: block; height: 310px; background: #dce8da; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card-image:hover img { transform: scale(1.03); }
.card-image span, .status-pill { display: inline-flex; background: var(--green); color: #fff; border-radius: 999px; padding: 8px 12px; font-weight: 900; font-size: 13px; }
.card-image span { position: absolute; left: 14px; top: 14px; }
.card-content { padding: 24px; }
.card-content h3 a:hover { color: var(--green-dark); }
.card-content p:not(.eyebrow):not(.muted) { color: var(--muted); margin-top: 14px; }
.card-status-line { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: 18px; padding: 12px 14px; border-radius: 16px; background: var(--green-soft-2); border: 1px solid rgba(94,188,103,.18); }
.card-status-line span { color: var(--muted); font-size: 14px; }
.card-status-line strong { color: var(--green-dark); font-size: 15px; }
.card-facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.card-facts strong, .card-facts span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; background: #fff; font-size: 14px; }
.card-facts strong { border-color: rgba(94,188,103,.32); color: var(--green-dark); }
.offer-hero-flat { padding: 54px 0 24px; }
.breadcrumb { display: inline-flex; margin-bottom: 26px; color: var(--muted); font-weight: 800; }
.breadcrumb:hover { color: var(--green-dark); }
.location-line { color: var(--muted); font-size: 17px; margin-top: 16px; }
.offer-title-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 30px; align-items: end; }
.hero-status-box { background: #fff; border: 1px solid rgba(94,188,103,.25); border-radius: 22px; padding: 22px; display: grid; gap: 7px; box-shadow: 0 12px 30px rgba(28,40,28,.05); }
.hero-status-box span { color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-status-box strong { color: var(--green-dark); font-size: 26px; line-height: 1.1; }
.hero-status-box strong + span { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.offer-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.offer-main { min-width: 0; }
.offer-block { margin-bottom: 28px; }
.facts-panel { position: sticky; top: 106px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 10px 30px rgba(20, 26, 20, .06); }
.panel-price { padding: 18px 0; border-bottom: 1px solid var(--line); }
.panel-price span, .panel-work span { display: block; color: var(--muted); font-size: 13px; }
.panel-price strong { display: block; font-size: 34px; line-height: 1.05; letter-spacing: -.04em; margin-top: 5px; color: var(--green-dark); }
.panel-work { margin: 16px 0 2px; padding: 14px; border-radius: 16px; background: var(--green-soft-2); border: 1px solid rgba(94,188,103,.25); }
.panel-work strong { display: block; color: var(--green-dark); margin-top: 4px; }
.panel-facts { display: grid; gap: 0; margin: 6px 0 20px; }
.panel-fact { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.panel-fact span { color: var(--muted); font-size: 14px; }
.panel-fact strong { text-align: right; font-size: 15px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery button { appearance: none; border: 0; padding: 0; background: #dbe7d9; border-radius: 18px; overflow: hidden; cursor: pointer; min-height: 220px; height: 220px; position: relative; }
.gallery button:first-child { grid-row: auto; min-height: 220px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery button:hover img { transform: scale(1.03); }
.gallery .more { position: absolute; right: 12px; bottom: 12px; background: rgba(47,143,69,.92); color: #fff; border-radius: 999px; padding: 8px 11px; font-weight: 900; font-size: 13px; }
.text-card, .empty-state, .code-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: 0 10px 30px rgba(20, 26, 20, .05); }
.markdown h1, .markdown h2, .markdown h3 { margin: 0 0 16px; }
.markdown h1:not(:first-child), .markdown h2:not(:first-child), .markdown h3:not(:first-child) { margin-top: 32px; }
.markdown p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.markdown a, .map-link { color: var(--green-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.markdown ul, .feature-list { margin: 14px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.markdown li, .feature-list li { position: relative; padding-left: 28px; color: var(--muted); }
.markdown li::before, .feature-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 9px; height: 9px; border-radius: 99px; background: var(--green); }
.map-link { display: inline-flex; margin-top: 12px; padding: 11px 14px; border-radius: 999px; border: 1px solid rgba(94,188,103,.32); text-decoration: none; background: var(--green-soft-2); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: start; }
.contact-stack { display: grid; gap: 22px; }
.contact-card h2, .contact-form-card h2 { margin-bottom: 18px; }
.contact-methods { display: grid; gap: 12px; }
.contact-methods a { display: flex; justify-content: space-between; gap: 18px; padding: 15px; border: 1px solid rgba(94,188,103,.22); border-radius: 16px; background: var(--green-soft-2); }
.contact-methods span { color: var(--muted); }
.contact-methods strong { color: var(--green-dark); font-size: 18px; }
.company-data { display: grid; grid-template-columns: 150px 1fr; gap: 10px 18px; margin: 0; }
.company-data dt { color: var(--muted); font-weight: 700; }
.company-data dd { margin: 0; font-weight: 700; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(94,188,103,.32); border-color: var(--green); }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: 14px; }
.form-message { padding: 13px 14px; border-radius: 14px; margin-bottom: 18px; font-weight: 800; }
.form-message.success { background: var(--green-soft); color: var(--green-dark); border: 1px solid rgba(94,188,103,.30); }
.form-message.error { background: #fff3f0; color: #a33422; border: 1px solid #f0c2b8; }
.site-footer { background: linear-gradient(180deg, #e6f3e5, #dff0dd); color: var(--ink); padding: 44px 0; margin-top: 52px; border-top: 1px solid rgba(94,188,103,.20); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-logo { width: 238px; height: 50px; }
.footer-company { color: var(--muted); margin-top: 14px; }
.footer-links { color: var(--muted); text-align: right; line-height: 1.8; }
.footer-links a { color: var(--green-dark); font-weight: 800; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 22px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1120px, 100%); max-height: 82vh; border-radius: 16px; box-shadow: 0 20px 80px rgba(0,0,0,.45); }
.lightbox button { position: absolute; border: 0; background: rgba(255,255,255,.92); color: #000; border-radius: 999px; min-width: 44px; height: 44px; font-weight: 900; cursor: pointer; }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 920px) {
  .offer-title-grid, .offer-layout, .contact-grid { grid-template-columns: 1fr; }
  .facts-panel { position: static; }
  .investment-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; }
  .footer-links { text-align: left; }
}
@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .logo-frame { width: 210px; }
  .nav-links { width: 100%; }
  .nav-links a { padding: 8px 10px; }
  .page-title, .offer-hero-flat { padding-top: 28px; }
  .page-title-card, .offer-title-card { padding: 24px; }
  .gallery { grid-template-columns: 1fr; }
  .panel-fact { display: block; }
  .panel-fact strong { display: block; text-align: left; margin-top: 3px; }
  .form-row { grid-template-columns: 1fr; }
  .company-data { grid-template-columns: 1fr; }
  .company-data dt { margin-top: 8px; }
  .card-status-line { display: block; }
  .card-status-line strong { display: block; margin-top: 4px; }
}
