/* СмартСтрой */

:root {
  --bg:        #0a0d0c;
  --bg-2:      #0f1614;
  --bg-3:      #142220;
  --bg-4:      #1a2c27;
  --paper:     #0d1311;
  --ink:       #e8ebe7;
  --ink-2:     #c5cbc7;
  --ink-3:     #8a948f;
  --mute:      #6b7672;
  --line:      rgba(232,235,231,.08);
  --line-2:    rgba(232,235,231,.14);
  --gold:      #b8a06a;
  --gold-h:    #d4ba84;
  --green:     #5d8b7a;
  --green-h:   #7aa893;
  --success:   #4a9678;
  --danger:    #c85a5a;

  --grad-deep: linear-gradient(180deg, #0a0d0c 0%, #0f1614 60%, #142220 100%);
  --grad-radial: radial-gradient(circle at 30% 20%, rgba(93,139,122,.08), transparent 60%);
  --grad-gold: linear-gradient(135deg, #b8a06a 0%, #d4ba84 100%);
  --grad-card: linear-gradient(145deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);

  --f-sans: 'Manrope', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1320px;
  --gutter: 32px;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --ease: cubic-bezier(.2,.6,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t: .5s var(--ease);
  --t-fast: .25s var(--ease);
  --t-slow: .9s var(--ease-out);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'ss01','cv01','cv11';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }

/* Скроллбар */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-4); }

/* Контейнер */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
@media (max-width: 768px) { :root { --gutter: 20px; } }

/* Типографика */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .8;
}

h1, h2, h3, h4 {
  font-family: var(--f-sans);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
}

.h-display {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
.h-1 { font-size: clamp(36px, 4.8vw, 68px); font-weight: 400; letter-spacing: -.03em; }
.h-2 { font-size: clamp(28px, 3.4vw, 46px); font-weight: 500; letter-spacing: -.025em; }
.h-3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; }
.h-4 { font-size: 18px; font-weight: 600; }

.italic { font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}

/* Кнопки */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  transition: transform var(--t-slow), opacity var(--t);
}
.btn--primary {
  background: var(--gold);
  color: #0a0d0c;
  box-shadow: 0 1px 0 0 rgba(212,186,132,.4) inset, 0 0 0 1px rgba(212,186,132,.6);
}
.btn--primary::before {
  background: linear-gradient(135deg, var(--gold-h) 0%, var(--gold) 100%);
  transform: translateY(101%);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 0 rgba(255,220,160,.6) inset, 0 0 0 1px var(--gold-h), 0 12px 32px -8px rgba(184,160,106,.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,160,106,.05);
}

.btn .arrow {
  width: 14px; height: 10px;
  transition: transform var(--t);
}
.btn:hover .arrow { transform: translateX(6px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 6px;
  transition: all var(--t);
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform var(--t);
}
.link-arrow:hover { color: var(--gold); gap: 18px; }
.link-arrow:hover::after { background: var(--gold); transform: scaleX(0); transform-origin: left; }
.link-arrow svg { width: 14px; height: 9px; transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--t);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,12,.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled::before { opacity: 1; border-bottom-color: var(--line); }
.site-header.is-scrolled { padding: 14px 0; }

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  height: 32px;
}
.logo img, .logo svg {
  height: 28px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0;
}
.main-nav > a, .main-nav > span > a {
  position: relative;
  display: inline-block;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.main-nav > a::before, .main-nav > span > a::before {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.main-nav > a:hover, .main-nav > span > a:hover,
.main-nav > a.is-active, .main-nav > span > a.is-active { color: var(--gold); }
.main-nav > a:hover::before, .main-nav > span > a:hover::before,
.main-nav > a.is-active::before, .main-nav > span > a.is-active::before { transform: scaleX(1); }

.has-submenu { position: relative; }
.has-submenu > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
  transition: transform var(--t);
  opacity: .6;
}
.has-submenu:hover > a::after { transform: rotate(225deg) translateY(2px); opacity: 1; }

.submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px -24px rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: all var(--t-fast);
}
.submenu a::before { display: none; }
.submenu a:hover { background: var(--bg-3); color: var(--gold); }
.submenu strong { display: block; font-weight: 600; margin-bottom: 4px; }
.submenu small { display: block; font-size: 12px; color: var(--ink-3); font-weight: 400; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.005em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.header-phone:hover { color: var(--gold); }

.burger {
  display: none;
  width: 44px; height: 44px;
  padding: 14px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  transition: all var(--t);
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 16px; }
  .burger { display: block; }
  .header-phone { font-size: 14px; }
}
@media (max-width: 580px) { .header-phone { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .55s var(--ease-out);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: all var(--t);
}
.mobile-drawer nav a:hover { color: var(--gold); padding-left: 12px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(93,139,122,.12), transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, rgba(184,160,106,.08), transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  min-height: 60vh;
}
.hero-content { padding-bottom: 40px; }
.hero h1 { margin: 28px 0 36px; }
.hero h1 .accent {
  display: inline-block;
  position: relative;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--gold);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead { margin-bottom: 48px; max-width: 50ch; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.6);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(10,13,12,.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero-image:hover img { transform: scale(1.05); }
.hero-image-meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 3;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.hero-image-meta strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.hero-image-meta span {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-image-meta::after {
  content: '';
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 10' fill='none' stroke='white' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 H14 M10 1 L14 5 L10 9'/%3E%3C/svg%3E") center/16px no-repeat;
  flex: none;
  transition: all var(--t);
}
.hero-image:hover .hero-image-meta::after { background-color: var(--gold); border-color: var(--gold); transform: rotate(-12deg); }

.hero-stats {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-stat .num {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat .num small { font-size: .55em; color: var(--ink-3); font-weight: 400; }
.hero-stat .lbl { font-size: 13px; color: var(--ink-3); line-height: 1.5; max-width: 200px; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { padding-bottom: 0; }
  .hero-image { aspect-ratio: 16/10; max-height: 460px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .hero { padding-top: 130px; min-height: auto; }
  .hero-stats { gap: 24px; }
}

/* Sections */
.section { padding: 140px 0; position: relative; }
.section--tight { padding: 100px 0; }
.section--soft {
  background: var(--bg-2);
}
.section--graph {
  background: var(--grad-deep);
}
.section--gradient {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  margin: 0 auto 80px;
  max-width: 720px;
}
.section-head--center .lead { margin: 24px auto 0; }
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
}

/* Услуги */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: all var(--t);
  isolation: isolate;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-card);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover {
  border-color: var(--line-2);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.5);
}
.service-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.service-card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,13,12,.6));
  pointer-events: none;
  z-index: 1;
}
.service-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body {
  padding: 32px;
  position: relative;
  z-index: 2;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -.015em;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 28px;
  line-height: 1.55;
}
.service-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-card .meta-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}
.service-card .meta-price small {
  display: block;
  color: var(--ink-3);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 2px;
}

/* Проекты — карточки */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all var(--t);
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,160,106,.4);
  box-shadow: 0 32px 64px -24px rgba(0,0,0,.6);
}

.project-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.project-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.project-card:hover .img img { transform: scale(1.08); }
.project-card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,13,12,.4));
  pointer-events: none;
}

.project-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(10,13,12,.7);
  backdrop-filter: blur(12px);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  z-index: 2;
}
.project-tag--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.project-body {
  padding: 28px;
}
.project-body h3 {
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -.015em;
  color: var(--ink);
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 18px;
}
.project-meta span strong { color: var(--ink); font-weight: 600; }

.project-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.project-price .from {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.project-price .val {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.01em;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background var(--t);
}
.process-step:hover { background: var(--bg-3); }
.process-step:last-child { border-right: none; }
.process-step .num {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.process-step h4 { font-size: 18px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.process-step .dur {
  margin-top: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step { border-bottom: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .pricing { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--t);
  isolation: isolate;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-card);
  pointer-events: none;
  z-index: -1;
}
.price-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
}
.price-card.is-featured {
  background: linear-gradient(145deg, #1a2c27 0%, #142220 100%);
  border-color: rgba(184,160,106,.3);
  box-shadow: 0 24px 64px -24px rgba(184,160,106,.15);
}
.price-card-badge {
  position: absolute;
  top: -10px; left: 32px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 100px;
}
.price-card .tier {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.price-card .name {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink);
}
.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.price-card .price .from {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-card .price .val {
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -.025em;
}
.price-card ul { flex: 1; }
.price-card ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* Объекты — кейсы */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .cases { grid-template-columns: 1fr; } }
.case {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  background: var(--bg-3);
}
.case img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.case:hover img { transform: scale(1.06); }
.case::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,13,12,.85));
}
.case-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
  color: #fff;
}
.case-info .tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  margin-bottom: 18px;
}
.case-info h3 { color: #fff; font-size: 28px; margin-bottom: 10px; letter-spacing: -.015em; }
.case-info .desc { font-size: 14px; opacity: .82; line-height: 1.55; max-width: 80%; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  font-family: var(--f-sans);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold); }
.faq-q .ic {
  width: 36px; height: 36px;
  flex: none;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: all var(--t);
}
.faq-q .ic::before, .faq-q .ic::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all var(--t);
}
.faq-q .ic::before { width: 12px; height: 1px; }
.faq-q .ic::after  { width: 1px; height: 12px; }
.faq-item.is-open .faq-q .ic { background: var(--gold); border-color: var(--gold); }
.faq-item.is-open .faq-q .ic::before { background: var(--bg); }
.faq-item.is-open .faq-q .ic::after  { transform: rotate(90deg); background: var(--bg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease-out); }
.faq-a-inner {
  padding: 0 0 36px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 720px;
}
.faq-item.is-open .faq-a { max-height: 700px; }

/* CTA-блок */
.cta-band {
  position: relative;
  background: linear-gradient(145deg, #1a2c27 0%, #0f1614 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(184,160,106,.12), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-band > * { position: relative; }
.cta-band-actions { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
@media (max-width: 1024px) { .cta-band { grid-template-columns: 1fr; padding: 56px 40px; } }
@media (max-width: 580px) { .cta-band { padding: 40px 24px; } }

/* Контакты */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-block {
  padding: 40px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .ic {
  width: 36px; height: 36px;
  color: var(--gold);
  flex: none;
}
.contact-row .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.contact-row .val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.contact-row .val a { color: var(--ink); }
.contact-row .val a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 480px;
  background: var(--bg-3);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: invert(.92) hue-rotate(180deg); }

/* Формы */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-field { position: relative; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 24px 20px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  transition: all var(--t-fast);
  font-family: inherit;
}
.form-field textarea { min-height: 120px; resize: vertical; padding-top: 28px; }
.form-field label {
  position: absolute;
  top: 12px; left: 20px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  pointer-events: none;
  font-weight: 600;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
}
.form-tos {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
.form-tos a { color: var(--ink-2); border-bottom: 1px solid var(--line); }
.form-tos a:hover { color: var(--gold); border-color: var(--gold); }

.hero-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hero-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  pointer-events: none;
}
.hero-form > * { position: relative; }
.hero-form h3 { font-size: 24px; margin-bottom: 8px; letter-spacing: -.02em; }
.hero-form .sub { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }

/* Footer */
.site-footer {
  background: var(--bg);
  color: var(--ink-3);
  padding: 100px 0 40px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 580px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--ink-3); }
.footer-col a:hover { color: var(--gold); }
.footer-brand img, .footer-brand .logo {
  margin-bottom: 24px;
}
.footer-brand .logo { height: 32px; }
.footer-brand .logo img { height: 32px; }
.footer-brand p {
  line-height: 1.7;
  max-width: 380px;
  color: var(--ink-3);
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  transition: all var(--t);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--mute);
}
.footer-bottom a:hover { color: var(--gold); }

/* Утилиты */
.text-gold { color: var(--gold); }
.text-mute { color: var(--ink-3); }
.text-center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }

/* Внутр-страницы */
.page-hero {
  padding: 200px 0 100px;
  background: var(--grad-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(184,160,106,.08), transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}
.page-hero > * { position: relative; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 500;
}
.page-hero .breadcrumbs a { color: var(--ink-3); }
.page-hero .breadcrumbs a:hover { color: var(--gold); }
.page-hero .breadcrumbs span { color: var(--mute); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }

/* Project detail */
.project-hero {
  padding: 160px 0 0;
  background: var(--grad-deep);
  position: relative;
  overflow: hidden;
}
.project-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(184,160,106,.1), transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}
.project-hero > * { position: relative; }
.project-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 60px;
}
@media (max-width: 1024px) { .project-hero-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 0; } }

.project-hero h1 { margin-bottom: 24px; }
.project-hero .params {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 60px;
  background: var(--paper);
  overflow: hidden;
}
.project-hero .params > div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.project-hero .params > div:last-child { border-right: none; }
.project-hero .params .lbl {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-hero .params .val {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--gold);
}
@media (max-width: 580px) {
  .project-hero .params { grid-template-columns: 1fr 1fr; }
  .project-hero .params > div:nth-child(2n) { border-right: none; }
  .project-hero .params > div:nth-child(1),
  .project-hero .params > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.project-cover {
  margin-top: 0;
}
.project-cover img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  display: block;
}

.project-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-top: 100px;
}
@media (max-width: 1024px) { .project-content { grid-template-columns: 1fr; } }
.project-content h2 { margin-bottom: 24px; }
.project-content p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; }
.project-content ul { margin: 24px 0; }
.project-content ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
.project-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--gold);
}

.project-spec {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
  align-self: start;
}
.project-spec h3 { margin-bottom: 28px; font-size: 20px; }
.project-spec dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 20px;
  margin-bottom: 32px;
}
.project-spec dt { color: var(--ink-3); font-size: 14px; }
.project-spec dd { color: var(--ink); font-weight: 500; font-size: 14px; text-align: right; }
.project-spec .price-big {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.project-spec .price-big .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); }
.project-spec .price-big .val { font-size: 30px; font-weight: 500; color: var(--gold); letter-spacing: -.02em; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 60px 0;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: var(--bg-3);
  position: relative;
}
.gallery a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery a:hover img { transform: scale(1.08); }
.gallery a.wide { grid-column: span 2; aspect-ratio: 2; }
.gallery a.tall { grid-row: span 2; aspect-ratio: .5; }
@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a.wide, .gallery a.tall { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
}

/* Modal */
.modal {
  position: fixed; inset: 0;
  background: rgba(10,13,12,.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.modal.is-open { display: flex; }
.modal img { max-width: 100%; max-height: 100%; }
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(10,13,12,.6);
}
.modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,13,12,.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.sticky-cta .sc-call {
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.sticky-cta .sc-lead {
  background: var(--gold);
  color: var(--bg);
}
@media (max-width: 768px) { .sticky-cta { display: flex; } body { padding-bottom: 76px; } }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--t);
}
.review:hover {
  border-color: rgba(184,160,106,.2);
  transform: translateY(-2px);
}
.review::before {
  content: '«';
  position: absolute;
  top: 12px; right: 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}
.review-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.review-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review-meta .who { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-meta .where { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* Где строим — карта с пинами */
.geo-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  height: 560px;
}
.geo-map iframe {
  width: 100%; height: 100%; border: none;
  filter: invert(.92) hue-rotate(180deg) saturate(.6);
}
.geo-pins {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,13,12,.85);
  backdrop-filter: blur(16px);
  padding: 24px 28px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  max-width: 320px;
}
.geo-pins h4 { font-size: 14px; margin-bottom: 12px; }
.geo-pins ul li {
  font-size: 13px;
  color: var(--ink-3);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.geo-pins ul li strong { color: var(--ink-2); font-weight: 500; }

/* Cursor follower */
.cursor-follow {
  position: fixed;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease-out), opacity .3s, width .3s, height .3s;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-follow { display: block; } }
.cursor-follow.is-link { width: 56px; height: 56px; background: rgba(184,160,106,.14); }

/* Marquee — бегущая строка */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track > span {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track > span::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Diff block — смартстрой vs другие */
.diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) { .diff { grid-template-columns: 1fr; } }
.diff-col {
  padding: 48px 40px;
}
.diff-col--us {
  background: linear-gradient(145deg, #1a2c27 0%, #142220 100%);
  border-right: 1px solid var(--line);
}
.diff-col--them {
  background: var(--paper);
}
.diff-col h4 {
  font-size: 16px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.diff-col--us h4 { color: var(--gold); }
.diff-col--them h4 { color: var(--ink-3); }
.diff-col h4::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.diff-col ul li {
  padding: 14px 0 14px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.diff-col ul li:first-child { border-top: none; padding-top: 0; }
.diff-col--us ul li { color: var(--ink); }
.diff-col--them ul li { color: var(--ink-3); }
.diff-col--us ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.diff-col--us ul li:first-child::before { top: 8px; }
.diff-col--them ul li::before {
  content: '×';
  position: absolute;
  left: 0; top: 11px;
  font-weight: 400;
  color: var(--mute);
}
.diff-col--them ul li:first-child::before { top: -3px; }
