/* ================= HERO ================= */
.hero {
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  letter-spacing: -0.01em;
}

.hero__lede {
  max-width: 46ch;
  font-size: 1.08rem;
  color: var(--cocoa-600);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin: 0;
}
.hero__stats dt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-700);
}
.hero__stats dd {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cocoa-600);
}

/* --- signature element: pinned business card --- */
.hero__card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.business-card {
  position: relative;
  width: 280px;
  padding: 32px 26px 28px;
  background: linear-gradient(165deg, var(--cream-0), var(--peach-100));
  border-radius: 6px;
  box-shadow: 0 24px 60px -20px rgba(74, 52, 43, 0.35);
  transform: rotate(-4deg);
  transition: transform .35s ease;
}
.business-card:hover { transform: rotate(-1deg) translateY(-4px); }

.business-card--ghost {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: rotate(5deg) translate(14px, 18px);
  background: var(--peach-200);
  opacity: 0.6;
}

.business-card__pin {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.business-card__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-400), var(--peach-500));
  color: var(--cream-0);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.business-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 2px;
}

.business-card__role {
  color: var(--cocoa-600);
  font-size: 0.85rem;
  margin: 0;
}

.business-card__divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0 14px;
}

.business-card__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--sage-700);
  margin: 0;
}

/* ================= SECTIONS ================= */
.section { padding: 64px 0; }
.section--muted { background: var(--peach-100); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pillars {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 14px;
}
.pillar { padding: 22px 24px; }
.pillar__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--peach-100);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.pillar h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pillar p { color: var(--cocoa-600); font-size: 0.92rem; margin: 0; }

.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.nav-card {
  padding: 26px 24px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -16px rgba(74,52,43,.35); }
.nav-card h3 { margin-bottom: 8px; }
.nav-card p { color: var(--cocoa-600); font-size: 0.92rem; }
.nav-card__go {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--sage-700);
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contacts__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero__grid, .about__grid { grid-template-columns: 1fr; }
  .hero__card-wrap { margin-top: 20px; }
  .nav-cards { grid-template-columns: 1fr; }
  .contacts { flex-direction: column; align-items: flex-start; }
}

/* ================= Фото в визитной карточке ================= */
.business-card__photo--img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(74, 52, 43, 0.2);
}

/* ================= Длинные текстовые секции (без колонок) ================= */
.section .container > h2 { max-width: 46ch; }
.section-lede {
  max-width: 60ch;
  color: var(--cocoa-600);
  font-size: 1.02rem;
}
.section-note {
  color: var(--sage-700);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 18px;
}
.results__intro {
  margin: 28px 0 10px;
  font-weight: 700;
  color: var(--cocoa-900);
}
.results__intro:first-of-type { margin-top: 20px; }

.long-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 72ch;
}
.long-list li {
  position: relative;
  padding-left: 26px;
  color: var(--cocoa-900);
  line-height: 1.6;
}
.long-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--peach-400);
}

/* ================= Видео (16:9, современная развёртка) ================= */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding-top: 46.1%; /* ~16:9 в пределах max-width */
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ================= Карусель (отзывы / документы) ================= */
.carousel { position: relative; margin-top: 24px; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}
.carousel-slide img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-soft);
}
.documents-carousel .carousel-slide img {
  object-fit: contain;
  background: var(--cream-0);
  padding: 8px;
  aspect-ratio: 3 / 4;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-0);
  color: var(--cocoa-900);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.carousel-arrow:hover { background: var(--peach-100); }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }

@media (max-width: 640px) {
  .carousel-slide { width: 160px; }
  .carousel-arrow { width: 34px; height: 34px; }
}

/* ================= Лайтбокс ================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 42, 46, .85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 999;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* ================= Цены ================= */
.price-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
  max-width: 72ch;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream-0);
  flex-wrap: wrap;
}
.price-list__value {
  font-weight: 700;
  color: var(--sage-700);
  white-space: nowrap;
}

/* ================= Блок контактов + подарок ================= */
.contact-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-block h2 { max-width: 30ch; }
.contacts__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.gift-card { padding: 28px; text-align: left; }
.gift-card h3 { margin-bottom: 8px; }
.gift-card p { color: var(--cocoa-600); font-size: 0.92rem; }
.gift-card .btn { margin-top: 12px; }
.gift-card__result {
  min-height: 1.4em;
  font-weight: 700;
  color: var(--sage-700);
  margin-top: 14px;
}
.gift-card__hint { font-size: 0.82rem; margin-top: 10px; }

.site-footer__inner p { margin-bottom: 10px; line-height: 1.7; }
.site-footer__inner a { color: var(--sage-700); text-decoration: underline; }

/* ================= CTA "к материалам" ================= */
.materials-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--peach-100);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.materials-cta h2 { margin-bottom: 6px; }
.materials-cta .section-lede { margin: 0; max-width: 48ch; }

@media (max-width: 780px) {
  .contact-block { grid-template-columns: 1fr; }
  .materials-cta { flex-direction: column; align-items: flex-start; }
}
