/* ==========================================================================
   Luzhniki Collection — дизайн-система
   Тёмный графит + тёплый травертин, акцент — приглушённая медь (не золото).
   ========================================================================== */

:root{
  --ink:        #211E1A;
  --ink-soft:   #2C2822;
  --ink-line:   rgba(242,236,226,0.14);

  --cream:      #F3EDE2;
  --cream-soft: #EAE1D0;
  --cream-line: rgba(33,30,26,0.12);

  --copper:      #8A6342;
  --copper-dark: #6E4F32;
  --copper-light:#C79E76;

  --text-on-dark:        #F3EDE2;
  --text-on-dark-soft:   rgba(243,237,226,0.78);
  --text-on-light:       #26221D;
  --text-on-light-soft:  rgba(38,34,29,0.72);

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --section-pad-y: clamp(90px,13vh,150px);
  --strip-pad: clamp(60px,8vh,100px);
  --gap-grid: 52px;

  --radius: 2px;
}

@media (max-width: 820px){
  :root{
    --section-pad-y: clamp(48px,7vh,72px);
    --strip-pad: clamp(28px,4vh,44px);
    --gap-grid: 26px;
  }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--text-on-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
/* фон под ленивую картинку до декодирования — иначе на медленной сети
   секция на долю секунды показывает белую UA-заглушку поверх тёмного/кремового фона */
.section--dark img{ background: var(--ink-soft); }
.section--cream img{ background: var(--cream-soft); }
.hero-media img{ background: var(--ink); }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{
  font-family: var(--font-serif);
  font-weight: 480;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: inherit;
}
p{ margin: 0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor: pointer; }

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
}

/* ---------- Typography helpers ---------- */
.eyebrow{
  display:block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.eyebrow--light{ color: var(--copper-light); }

h2{ font-size: clamp(28px, 3.6vw, 44px); }
h3{ font-size: clamp(20px, 2.2vw, 26px); }

.lede, .section__lede{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-on-light-soft);
  max-width: 62ch;
}
.section__lede--light{ color: var(--text-on-dark-soft); }
/* .lede живёт и в тёмных секциях (Garden/Mountain Line) — там нужен светлый цвет */
.section--dark .lede{ color: var(--text-on-dark-soft); }

/* ---------- Sections ---------- */
.section{
  padding: var(--section-pad-y) 0;
  position: relative;
}
.section--dark{
  background: var(--ink);
  color: var(--text-on-dark);
}
.section--cream{
  background: var(--cream);
  color: var(--text-on-light);
}
.section--dark h2, .section--dark h3, .section--dark h4{ color: var(--text-on-dark); }

/* anchor offset under fixed nav */
section[id]{ scroll-margin-top: 76px; }

/* ---------- Reveal-on-scroll (simple, no scroll-fx) ---------- */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: none; }
@media (max-width: 820px){
  .reveal{ transition-duration: 0.45s; }
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 40;
  background: rgba(33,30,26,0.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(243,237,226,0.08);
}
@media (pointer: coarse){
  .nav{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(21,19,16,0.97);
  }
}
.nav__inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px clamp(20px,5vw,64px);
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.nav__logo{
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--cream);
  display:flex;
  flex-direction: column;
  line-height: 1.3;
}
.nav__logo span{
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--copper-light);
}
/* чуть плотнее фон и заметная нижняя линия после начала скролла */
.nav.is-scrolled{
  background: rgba(33,30,26,0.88);
  border-bottom-color: rgba(243,237,226,0.16);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: var(--copper);
  color: #FBF7EF;
}
.btn--primary:hover{ background: var(--copper-dark); }
.btn--ghost-light{
  background: transparent;
  border-color: rgba(243,237,226,0.55);
  color: var(--text-on-dark);
}
.btn--ghost-light:hover{ border-color: var(--cream); background: rgba(243,237,226,0.08); }
.btn--ghost-dark{
  background: transparent;
  border-color: rgba(38,34,29,0.4);
  color: var(--text-on-light);
}
.btn--ghost-dark:hover{ border-color: var(--ink); background: rgba(38,34,29,0.05); }
.btn--small{ padding: 10px 20px; font-size: 12px; }
.btn--large{ padding: 18px 36px; font-size: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display:flex;
  align-items:flex-end;
  overflow: hidden;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media picture, .hero-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-media__scrim{
  position:absolute; inset:0;
  /* сплошное затемнение под весь текстовый блок (не только нижнюю кромку) —
     иначе eyebrow/заголовок теряют контраст на светлых участках аэрофото */
  background:
    linear-gradient(0deg, rgba(16,14,12,0.92) 0%, rgba(16,14,12,0.66) 50%, rgba(16,14,12,0.38) 72%, rgba(16,14,12,0.44) 100%);
}
.hero__content{
  position:relative;
  z-index:1;
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px) clamp(56px,9vh,110px);
  color: var(--cream);
}
.hero__content h1{
  font-size: clamp(32px, 5.4vw, 68px);
  font-weight: 460;
  line-height: 1.08;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero__lede{
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}
.hero__cta{ display:flex; gap:16px; flex-wrap: wrap; }

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location__intro{
  max-width: 70ch;
  margin-bottom: 44px;
}
.location__intro p{ color: var(--text-on-light-soft); font-size: 16.5px; }

.location__gallery{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-grid);
  margin-bottom: var(--strip-pad);
  align-items: stretch;
}
.location__map img{
  width:100%;
  height:auto;
  aspect-ratio: 2265 / 2339;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-soft);
}
.location__photo{ position:relative; }
.location__photo img{
  width:100%;
  height:auto;
  aspect-ratio: 1900 / 1476;
  object-fit: cover;
  border-radius: var(--radius);
}
.location__photo-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(20,18,15,0.82), transparent);
  color: #fff;
  font-size: 13.5px;
}
@media (max-width: 820px){
  .location__gallery{ grid-template-columns: 1fr; }
  .location__map img, .location__photo img{ max-height: 62vh; }
}

.landmarks{ margin-bottom: var(--strip-pad); }
.landmarks__title{
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-on-light-soft);
  margin-bottom: 20px;
}
.landmarks__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.landmark-card{
  background: var(--cream);
  padding: 24px 22px;
  font-size: 14.5px;
  color: var(--text-on-light-soft);
  line-height: 1.5;
}
.landmark-card__label{
  display:block;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--copper);
  margin-bottom: 8px;
}
@media (max-width: 820px){
  .landmarks__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .landmarks__grid{ grid-template-columns: 1fr; }
}

.infra-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-grid);
}
.infra-card img{
  width:100%; height:auto; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.infra-card p{ font-size: 14.5px; color: var(--text-on-light-soft); }
@media (max-width: 700px){
  .infra-cards{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   COLLECTIONS OVERVIEW
   ========================================================================== */
#collections{ position: relative; overflow: hidden; }
.collections__media{
  position:absolute; inset:0;
  z-index:0;
}
.collections__media img{
  width:100%; height:100%; object-fit: cover;
  opacity: 0.22;
}
#collections::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(33,30,26,0.55) 0%, var(--ink) 78%);
  z-index:0;
}
#collections .container{ position:relative; z-index:1; }

.collection-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243,237,226,0.14);
  border: 1px solid rgba(243,237,226,0.14);
  margin-top: 44px;
}
.collection-card{
  background: rgba(28,25,21,0.72);
  padding: 32px 26px;
  transition: background-color .25s ease;
}
.collection-card:hover{ background: rgba(28,25,21,0.95); }
.collection-card__index{
  display:block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--copper-light);
  margin-bottom: 14px;
}
.collection-card h3{ color: #fff; margin-bottom: 10px; font-size: 22px; }
.collection-card p{ color: var(--text-on-dark-soft); font-size: 14px; margin:0; }
@media (max-width: 900px){
  .collection-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .collection-cards{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   COLLECTION DETAIL (Waterfront / Garden / Highline / Mountain Line)
   ========================================================================== */
.collection-detail__grid{
  display:grid;
  grid-template-columns: minmax(280px,38%) 1fr;
  gap: clamp(32px,5vw,80px);
  align-items: center;
}
.collection-detail--reverse .collection-detail__grid{
  grid-template-columns: 1fr minmax(280px,38%);
}
.collection-detail--reverse .collection-detail__media{ order: 2; }
.collection-detail__media img{
  width:100%;
  height:auto;
  aspect-ratio: 3/4.3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 860px){
  .collection-detail__grid{ grid-template-columns: 1fr; }
  .collection-detail--reverse .collection-detail__media{ order: 0; }
  .collection-detail__media img{ max-height: 62vh; height:auto; aspect-ratio: auto; width:100%; }
}

.metrics-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 24px;
  margin: 30px 0 26px;
  padding-top: 26px;
  border-top: 1px solid var(--cream-line);
}
.metrics-grid--light{ border-top-color: var(--ink-line); }
.metric{ display:flex; flex-direction: column; gap: 6px; }
.metric__value{
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text-on-light);
  font-weight: 500;
}
.metrics-grid--light .metric__value{ color: var(--text-on-dark); }
.metric__label{
  font-size: 13px;
  color: var(--text-on-light-soft);
  line-height: 1.4;
}
.metrics-grid--light .metric__label{ color: var(--text-on-dark-soft); }

.fact-list{ margin-bottom: 30px; }
.fact-list li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-on-light-soft);
}
.fact-list--light li{ color: var(--text-on-dark-soft); }
.fact-list li::before{
  content:"";
  position:absolute; left:0; top:9px;
  width:8px; height:1px;
  background: var(--copper);
}
.fact-list--light li::before{ background: var(--copper-light); }

.note-box{
  border-left: 2px solid var(--copper-light);
  padding: 4px 0 4px 18px;
  font-size: 14.5px;
  color: var(--text-on-dark-soft);
  margin-bottom: 28px;
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities__gallery{
  display:grid;
  grid-template-columns: 1fr 0.5fr;
  gap: var(--gap-grid);
  margin: 40px 0 var(--strip-pad);
}
.amenities__photo img{
  width:100%; height:auto; object-fit: cover;
  border-radius: var(--radius);
}
.amenities__photo--wide img{ aspect-ratio: 16/10; }
.amenities__photo--tall img{ aspect-ratio: 3/4.6; }
@media (max-width: 820px){
  .amenities__gallery{ grid-template-columns: 1fr; }
  .amenities__photo img{ max-height: 62vh; aspect-ratio: auto !important; }
}

.amenities__grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(243,237,226,0.12);
  border: 1px solid rgba(243,237,226,0.12);
}
.amenity{
  background: var(--ink);
  padding: 26px 20px;
}
.amenity h4{
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper-light);
  margin-bottom: 8px;
}
.amenity p{ font-size: 13.5px; color: var(--text-on-dark-soft); margin:0; }
@media (max-width: 900px){
  .amenities__grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   SPLIT PHOTO (Park / Parking)
   ========================================================================== */
.split-photo{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
}
.split-photo--reverse{ grid-template-columns: 0.95fr 1.05fr; }
.split-photo--reverse .split-photo__media{ order: 2; }
.split-photo--reverse .split-photo__content{ order: 1; }
.split-photo__media img{ width:100%; height:100%; object-fit: cover; min-height: 420px; }
.split-photo__content{
  padding: var(--section-pad-y) clamp(28px,5vw,72px);
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.split-photo__content p{ font-size: 16px; }
.split-photo__second{ grid-column: 1 / -1; order: 3; }
.split-photo__second img{ width:100%; max-height: 70vh; object-fit: cover; }
@media (max-width: 900px){
  .split-photo{ grid-template-columns: 1fr; }
  .split-photo--reverse .split-photo__media{ order: 0; }
  .split-photo--reverse .split-photo__content{ order: 1; }
  .split-photo__media img{ min-height: 0; max-height: 62vh; }
  .split-photo__content{ padding: var(--strip-pad) clamp(20px,5vw,40px); }
}

/* ==========================================================================
   CITY INFRASTRUCTURE
   ========================================================================== */
.infra-lead{ max-width: 68ch; margin-bottom: var(--strip-pad); }
.infra-lead p{ font-size: 16.5px; color: var(--text-on-light-soft); }
.infra-showcase{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-grid);
}
.infra-showcase__item img{
  width:100%; height:auto; aspect-ratio: 16/11; object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.infra-showcase__item p{ color: var(--text-on-light-soft); font-size: 15px; }
@media (max-width: 820px){
  .infra-showcase{ grid-template-columns: 1fr; }
  .infra-showcase__item img{ max-height: 56vh; }
}

/* ==========================================================================
   TECH SPECS
   ========================================================================== */
.specs-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
  margin-top: 40px;
}
.specs-col{ border-top: 1px solid var(--ink-line); padding-top: 22px; }
.specs-col h3{ font-size: 19px; margin-bottom: 12px; }
.specs-col p{ font-size: 14px; color: var(--text-on-dark-soft); margin:0; }
@media (max-width: 900px){
  .specs-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .specs-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-line);
  border: 1px solid var(--cream-line);
  margin-top: 40px;
}
.team-card{ background: var(--cream); padding: 26px 22px; }
.team-card__role{
  display:block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.team-card h4{ font-size: 18px; margin-bottom: 8px; }
.team-card p{ font-size: 13.5px; color: var(--text-on-light-soft); margin:0; }
@media (max-width: 900px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .team-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA / ЗАЯВКА
   ========================================================================== */
.cta-section{ text-align: center; }
.cta-section__inner{
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2{ margin-bottom: 18px; }
.cta-section .section__lede{ margin: 0 auto 36px; }
.cta-section__buttons{
  display:flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{
  background: var(--ink);
  color: var(--text-on-dark-soft);
  padding: 48px 0 96px;
}
.footer__inner{ text-align: center; }
.footer__brand{
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer__brand span{
  display:block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--copper-light);
  margin-top: 4px;
}
.footer__note{
  max-width: 58ch;
  margin: 0 auto 14px;
  font-size: 13px;
  line-height: 1.6;
}
.footer__copy{ font-size: 12px; opacity: 0.6; margin:0; }

/* ==========================================================================
   LEAD MODAL — заявка (звонок / подборка)
   ========================================================================== */
.lead-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal.open{ display:flex; }
.lead-overlay{
  position:absolute; inset:0;
  background: rgba(16,14,12,0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (pointer: coarse){
  .lead-overlay{ -webkit-backdrop-filter:none; backdrop-filter:none; background: rgba(16,14,12,0.94); }
}
.lead-dialog{
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  padding: clamp(28px,5vw,48px);
  color: var(--text-on-dark);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}
.lead-modal.open .lead-dialog{ transform:none; opacity:1; }

.lead-close{
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: 0;
  color: var(--text-on-dark-soft);
  font-size: 28px;
  line-height: 1;
  padding: 6px 10px;
  transition: color .2s ease;
}
.lead-close:hover{ color: var(--cream); }

.lead-form-wrap h3{
  font-size: clamp(22px,3vw,28px);
  padding-right: 28px;
  margin-bottom: 12px;
  color: var(--cream);
}
.lead-sub{
  color: var(--text-on-dark-soft);
  font-size: 15px;
  margin-bottom: 28px;
}
.lead-hp{ position:absolute; left:-9999px; opacity:0; height:0; width:0; }

.lead-field{ display:block; margin-bottom: 16px; }
.lead-field span{
  display:block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 8px;
}
.lead-field input{
  width: 100%;
  background: rgba(243,237,226,0.06);
  border: 1px solid rgba(243,237,226,0.18);
  border-radius: 4px;
  padding: 15px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, background-color .2s ease;
}
.lead-field input::placeholder{ color: rgba(243,237,226,0.32); }
.lead-field input:focus{ border-color: var(--copper-light); background: rgba(243,237,226,0.1); }
.lead-field input.invalid{ border-color: #B5544A; }

.lead-submit{ width: 100%; margin-top: 6px; }
.lead-submit:disabled{ opacity:.6; cursor:wait; transform:none; }

.lead-error{ display:none; color:#D98A80; font-size:13.5px; margin-top:14px; }
.lead-error.show{ display:block; }

.lead-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin: 16px 0 0;
  cursor:pointer;
}
.lead-consent input[type="checkbox"]{
  flex:0 0 auto;
  width:16px; height:16px;
  margin-top:3px;
  accent-color: var(--copper-light);
  cursor:pointer;
}
.lead-consent span{
  color: rgba(243,237,226,0.62);
  font-size:12px;
  line-height:1.55;
}

.lead-success{ display:none; text-align:center; padding: 12px 0; }
.lead-modal.success .lead-form-wrap{ display:none; }
.lead-modal.success .lead-success{ display:block; }
.lead-check{ width:64px; height:64px; margin:0 auto 22px; }
.lead-check circle, .lead-check path{ stroke: var(--copper-light); }
.lead-success h3{ color: var(--cream); margin-bottom: 10px; }
.lead-success p{ color: var(--text-on-dark-soft); margin:0; }

@media (max-width: 480px){
  .lead-dialog{ border-radius: 4px; padding: 26px 20px 30px; }
}

/* ==========================================================================
   MOBILE LEAD BAR
   ========================================================================== */
.lead-bar{
  display:none;
}
@media (max-width: 820px){
  .lead-bar{
    display:flex;
    position: fixed;
    left:0; right:0; bottom:0;
    z-index: 50;
    height: 56px;
    background: var(--ink);
    border-top: 1px solid rgba(243,237,226,0.14);
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  /* видима только после того, как герой (со своими кнопками) ушёл со экрана —
     см. js/main.js onScroll */
  .lead-bar.is-visible{ transform: none; }
  .lead-bar__btn{
    flex:1;
    border:none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .lead-bar__btn--ghost{
    background: transparent;
    color: var(--cream);
    border-right: 1px solid rgba(243,237,226,0.14);
  }
  .lead-bar__btn--primary{
    background: var(--copper);
    color: #FBF7EF;
  }
  /* содержимое страницы не должно прятаться под баром */
  .footer{ padding-bottom: calc(56px + env(safe-area-inset-bottom) + 32px); }
}
