@import url(https://db.onlinewebfonts.com/c/0100763844a8ce097387d4afc81b1614?family=Intro-Regular);

:root {
  --brand: rgb(86, 52, 85);
  --brand-600: #4e2d4d;
  --bg: #ffffff;
  --ink: #1f1a1f;
  --muted: #66606a;
  --card: #f7f5f8;
  --radius: 16px;
  --ring: 0 0 0 .2rem rgba(86, 52, 85, .25);
  --slider-max-width: 400px;
  --slider-aspect: 9/16;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Intro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
  overflow-x: hidden;
}

/* ===== Контактный блок ===== */
.contact-top {
  background: #fff;
  padding: 18px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  width: 100%;
  overflow-x: hidden;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.phone {
  font-weight: 600;
  color: var(--brand);
  font-size: clamp(14px, 1.8vw, 18px);
  text-decoration: none;
}

.dot {
  opacity: 0.4;
  font-size: 18px;
  line-height: 1;
}

.worktime {
  font-size: clamp(13px, 1.7vw, 16px);
  color: var(--ink);
  white-space: nowrap;
}

.wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(22px, 2.6vw, 28px);
  height: clamp(22px, 2.6vw, 28px);
}

.wa-icon {
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .contact-inner {
    flex-direction: column;
    gap: 6px;
  }
  .dot {
    display: none;
  }
}

/* ===== Герой ===== */
.fullvh {
  min-height: calc(100dvh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

.hero {
  position: relative;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)),
    url("../img/bg-2.jpg") center/cover no-repeat;
  overflow-x: hidden;
}

.hero-centered-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 64px;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.center-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.logo-wrap {
  width: min(980px, 96vw);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  overflow-x: hidden;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.pin-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 8px;
  margin-bottom: -2px;
}

.address.center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--brand);
  opacity: .95;
  text-align: center;
  white-space: nowrap;
}

.subtitle.center.big {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  text-align: center;
}

.hero-actions.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100vw;
  padding: 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: .2s ease;
  font-weight: 600;
  border: 1.5px solid transparent;
  font-size: 21px;
  max-width: 100%;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-600);
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover {
  background: var(--card);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* ===== WHY ===== */
.section-title, .gallery h2, .promo h2, .why h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.why {
  padding: 56px 0;
}

.why h2, .gallery h2, .prices h2, .promo h2, .contacts h2 {
  font-size: 28px;
  margin: 0 0 22px;
}

.why-art {
  display: block;
  margin-inline: auto;
  width: min(980px, 100%);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff, #fbf9fd);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 8px 24px rgba(86, 52, 85, .08);
  width: 100%;
  max-width: var(--slider-max-width);
  margin-inline: auto;
}

.slides {
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  aspect-ratio: var(--slider-aspect);
  background: #ddd;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  color: var(--brand);
  font-size: 21px;
  line-height: 0;
}

.slide-btn.prev {
  left: 8px;
}

.slide-btn.next {
  right: 8px;
}

.dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 8px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9cfe0;
  cursor: pointer;
  padding: 0;
}

.dots button[aria-current="true"] {
  background: var(--brand);
}

/* ===== PROMO ===== */
.promo {
  padding: 56px 0;
  background:
    linear-gradient(#fff, #fff0),
    url("../img/promo-bg.jpg") center/cover no-repeat fixed;
}

.promo-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.promo-card {
  grid-column: span 12;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .85));
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 18px 18px 18px 58px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 28px rgba(86, 52, 85, .10);
}

.promo-pin.spaced {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 30px;
  line-height: 1;
  transform: translateY(2px);
}

.promo-card h3 {
  margin: 0 0 6px;
  color: var(--brand);
}

.promo-card p {
  margin: 0;
}

/* ===== CONTACTS ===== */
.contacts {
  padding: 38px 0 18px 0;
  background: linear-gradient(180deg, #fbf9fd, #fff);
}

.contacts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.ymap {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(86, 52, 85, .08);
  background: #e9e6ee;
}

.cta-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 18px 0 12px 0;
  border-top: 1px solid #eee;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner .muted {
  color: #817a85;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .hero-centered-only {
    padding: 24px 10px 40px;
  }

  .hero-actions.center {
    gap: 14px;
  }

  .btn {
    font-size: 18px;
    padding: 14px 30px;
  }

  .address.center {
    font-size: 16px;
    white-space: normal;
  }

  .subtitle.center.big {
    font-size: 16px;
    padding: 0 8px;
  }
}

@media (max-width: 400px) {
  html, body {
    overflow-x: hidden;
  }

  .hero-centered-only {
    padding: 20px 8px 30px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .hero-actions.center {
    gap: 10px;
  }
}

/* ===== Desktop hero: поместить описание и кнопки в первый экран ===== */
@media (min-width: 1200px){
  .fullvh{
    min-height: calc(100dvh - 44px);   /* оставляем, но фактически ниже за счёт внутренних отступов */
  }
  .hero-centered-only{
    padding: 20px 0 40px;              /* было 32/64 — делаем компактнее */
  }
  .logo-wrap{
    max-width: 820px;                   /* было шире — логотип компактнее */
    margin: 0 auto 14px;                /* меньше отступ под лого */
  }
  .hero-logo{
    max-width: 88%;                     /* немного ужимаем рисунок */
  }
  .address.center{
    margin-top: 2px;                    /* ближе к лого */
    margin-bottom: 10px;
  }
  .subtitle.center.big{
    margin-top: 6px;
    margin-bottom: 18px;                /* описание ближе к кнопкам */
    font-size: 17px;                    /* чуть компактнее */
  }
  .hero-actions.center{
    gap: 16px;                          /* компактнее межкнопочный интервал */
  }
  .btn{
    padding:16px 32px;                  /* немного ниже и уже */
    font-size: 20px;
  }
}

/* Чуть ниже порог — для обычных ноутбуков 992–1199 px */
@media (min-width: 992px) and (max-width: 1199px){
  .hero-centered-only{ padding: 18px 0 36px }
  .logo-wrap{ max-width: 860px; margin-bottom: 12px }
  .subtitle.center.big{ margin-bottom: 16px }
  .btn{ padding:16px 30px; font-size:19px }
}

/* Мобильный адрес — всегда одна строка */
@media (max-width: 560px){
  .address.center{
    white-space: nowrap;          /* запрет переноса */
    overflow: hidden;             /* на всякий случай, если шрифт нестандартный */
    text-overflow: clip;          /* без троеточия — адрес должен быть целиком */
    font-size: clamp(13px, 3.9vw, 15px);  /* плавное уменьшение под ширину */
    letter-spacing: -0.1px;       /* лёгкая оптическая ужимка */
  }
  .pin-icon{
    flex: 0 0 16px;               /* фиксируем размер, чтобы не прыгала высота */
    margin-right: 6px;
    margin-bottom: 0;
  }
}

/* Совсем узкие 320–340 px — ещё компактнее, без переноса */
@media (max-width: 340px){
  .address.center{
    font-size: 13px;              /* нижний предел для читаемости */
    letter-spacing: -0.15px;
  }
}

/* Контакты: вертикальные кнопки и wa.svg */
.cta-col{
  display:grid;
  gap:10px;
  grid-auto-flow:row;
  margin-top:12px;
}
.wa-16{ width:16px; height:16px; margin-right:8px;}
.wa-btn{ display:inline-flex; align-items:center; justify-content:center }

/* На мобильных карта всегда под кнопками (одна колонка) */
@media (max-width: 560px){
  .contacts-grid{
    grid-template-columns: 1fr;      /* одна колонка */
  }
  .map-wrap{
    grid-row: 2;                      /* карта после блока с кнопками */
  }
  .cta-col .btn{ width:100% }         /* каждая кнопка на всю ширину строки */
}

/* На планшетах тоже ставим карту под кнопками при узкой ширине */
@media (max-width: 980px){
  .contacts-grid{
    grid-template-columns: 1fr; 
  }
  .map-wrap{ grid-row: 2 }
  .cta-col .btn{ width:100% }
}

/* Слайдер: стрелки поверх контента и одинаковые визуально */
.slider{ position: relative; overflow: hidden }

.slide-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  z-index: 2;                 /* важно: поверх изображения */
  font-weight: 700;
  font-size: 18px;
  line-height: 0;
}

.slide-btn.prev{ left: 8px }
.slide-btn.next{ right: 8px }

/* Адрес: базовые границы авто-скейла */
.address.center{
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: clip;
  transition: font-size .12s ease;
}

/* Базовый диапазон на мобилках — даём место JS маневрировать */
@media (max-width: 560px){
  .address.center{ font-size: clamp(12px, 3.6vw, 16px); letter-spacing: -0.1px }
  .pin-icon{ flex: 0 0 16px; margin-right: 6px; margin-bottom: 0 }
}

/* На очень узких — нижний предел, если что JS дожмёт чуть ниже */
@media (max-width: 360px){
  .address.center{ font-size: 12px }
}

/* Адрес — всегда в одну строку, агрессивнее уменьшаем на узких */
.address.center{
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: clip;
}

/* Мобильные до 560px */
@media (max-width: 560px){
  .address.center{
    font-size: clamp(12px, 3.2vw, 15px); /* было 3.9vw — сильнее ужали */
    letter-spacing: -0.12px;
  }
  .pin-icon{ flex:0 0 16px; margin-right:6px; margin-bottom:0 }
}

/* iPhone 14/13 ширина ~390px */
@media (max-width: 400px){
  .address.center{
    font-size: clamp(11.8px, 3.1vw, 14px);
    letter-spacing: -0.14px;
  }
}

/* Очень узкие (360 и ниже) */
@media (max-width: 360px){
  .address.center{
    font-size: 11.6px;          /* нижний предел читаемости без JS */
    letter-spacing: -0.16px;
  }
}
