/* =========================================================
  Service VZUTTЯ — styles.css
  Фірмовий стиль: кремовий фон + золото + чорний
  Іконки: вішак / взуття / шкіра / чистка (hang-tag style)
========================================================= */

/* -------------------------
  0) Tokens
-------------------------- */
:root{
  --ink: #1A1714;
  --ink-soft: rgba(26,23,20,.66);
  --ink-faint: rgba(26,23,20,.46);

  --gold: #B8923D;
  --gold-light: #D9BA7B;
  --gold-pale: #EFDFB8;
  --gold-deep: #8C6B2A;
  --gold-soft: rgba(184,146,61,.12);

  --black: #171310;
  --black-soft: #2A2420;

  --cream: #FBF5EC;
  --cream2: #F6EEE0;
  --paper: #FFFFFF;
  --paper-tint: #FFFDF9;

  --stroke: rgba(26,23,20,.10);
  --stroke-gold: rgba(184,146,61,.45);
  --stroke-gold-soft: rgba(184,146,61,.28);

  --shadow: 0 20px 46px rgba(60,45,15,.12);
  --shadow2: 0 8px 20px rgba(60,45,15,.08);

  --radius: 18px;
  --radius2: 22px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1180px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* -------------------------
  1) Base
-------------------------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 560px at 90% -8%, rgba(184,146,61,.05) 0%, rgba(184,146,61,0) 50%),
    radial-gradient(700px 480px at -6% 30%, rgba(184,146,61,.04) 0%, rgba(184,146,61,0) 50%),
    var(--cream);
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
html, body{ overflow-x: hidden; }

::selection{ background: var(--gold); color: var(--black); }

:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 6px;
}

.container{
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.icon{ width: 1em; height: 1em; display:inline-block; vertical-align: -0.14em; stroke: currentColor; fill: none; }
svg.icon *{ vector-effect: non-scaling-stroke; }

/* -------------------------
  2) Typography
-------------------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.eyebrow::before{ content:"✦"; font-size: 11px; color: var(--gold); }

.h1{
  font-family: var(--display);
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.12;
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 58px);
  color: var(--ink);
}
.h1 em{ font-style: italic; color: var(--gold-deep); }
.h2{
  font-family: var(--display);
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.18;
  margin: 0 0 6px;
  font-size: clamp(26px, 3vw, 40px);
}
.lead{
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 52ch;
}
.sub{ margin: 0; color: var(--ink-soft); line-height: 1.65; max-width: 60ch; }

.stitch{
  border: none;
  height: 1px;
  margin: 0;
  background-image: repeating-linear-gradient(90deg, var(--stroke-gold-soft) 0 8px, transparent 8px 16px);
}

/* -------------------------
  3) Buttons
-------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius: 12px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
  white-space:nowrap;
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--xl{ padding: 15px 22px; border-radius: 14px; font-size: 16px; }

.btn--gold{
  background: var(--black);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(23,19,16,.22);
}
.btn--gold:hover{ background: var(--black-soft); box-shadow: 0 14px 28px rgba(23,19,16,.28); }

.btn--ghost{
  background: rgba(255,255,255,.6);
  border: 1px solid var(--stroke-gold-soft);
  color: var(--ink);
}
.btn--ghost:hover{ background: var(--paper); border-color: var(--stroke-gold); }

.btn--line{
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
}
.btn--line:hover{ background: var(--gold-soft); }

/* -------------------------
  4) Topbar
-------------------------- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,245,236,.97);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid var(--stroke-gold);
}
.topbar__in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
  min-width: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
  max-width: 300px;
  flex: 1 1 auto;
}
.brand__logo{
  width: auto;
  height: 46px;
  object-fit: contain;
  flex:0 0 auto;
}

.nav{ display:flex; align-items:center; gap: 4px; flex: 0 0 auto; }
.nav__link{
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover{ background: var(--gold-soft); color: var(--gold-deep); }
.nav__link.is-active{ background: var(--black); color: var(--gold-light); }

.topbar__cta{ display:flex; align-items:center; gap: 10px; flex: 0 0 auto; }

.socialRow{ display:flex; align-items:center; gap: 6px; }
.socialBtn{
  width: 36px; height: 36px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid var(--stroke-gold-soft);
  background: rgba(255,255,255,.5);
  color: var(--gold-deep);
  font-size: 16px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease;
  flex: 0 0 auto;
}
.socialBtn:hover{ background: var(--black); color: var(--gold-light); border-color: var(--black); transform: translateY(-1px); }
.socialRow--footer{ gap: 8px; }
.socialRow--footer .socialBtn{ width: 40px; height: 40px; }

.burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke-gold-soft);
  background: rgba(255,255,255,.55);
  flex: 0 0 auto;
}
.burger span{ display:block; width: 18px; height: 2px; background: var(--ink-soft); margin: 4px auto; border-radius: 2px; }

.mobileNav{
  display:none;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--stroke-gold-soft);
  background: rgba(251,245,236,.97);
}
.mobileNav a{ display:block; padding: 10px 6px; font-weight: 700; color: var(--ink-soft); }
.mobileNav .btn{ width: 100%; margin-top: 10px; }
.mobileNav .socialRow{ margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--stroke); }
.mobileNav.is-open{ display:block; }

/* -------------------------
  4.1) Атмосферні ілюстрації (фон)
-------------------------- */
.bgArt{
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--ink);
  opacity: .05;
}
.bgArt svg{ width: 100%; height: 100%; display:block; }

.bgArt--hero{ width: 380px; height: 320px; right: -60px; bottom: -30px; color: var(--gold-deep); opacity: .08; }
.bgArt--services{ width: 320px; height: 240px; left: -50px; top: 40px; opacity: .05; }
.bgArt--contacts{ width: 300px; height: 320px; right: -40px; top: 10px; color: var(--gold-deep); opacity: .06; }

@media (max-width: 980px){
  .bgArt--hero{ width: 260px; height: 220px; right: -50px; bottom: -10px; }
  .bgArt--services{ display: none; }
  .bgArt--contacts{ display: none; }
}

/* -------------------------
  5) Hero
-------------------------- */
.hero{ position: relative; overflow: hidden; padding: 40px 0 32px; }
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(760px 480px at 88% -10%, rgba(184,146,61,.09) 0%, rgba(184,146,61,0) 55%),
    radial-gradient(600px 420px at 8% 110%, rgba(184,146,61,.06) 0%, rgba(184,146,61,0) 55%);
}
.hero__in{
  position: relative; z-index: 1;
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap: 30px; align-items:start;
}

.chip{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--stroke-gold);
  background: var(--paper);
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--ink-soft);
}
.chip::before{ content:"✦"; color: var(--gold); }

.heroList{ display:flex; gap: 18px; margin: 12px 0 20px; color: var(--ink); font-weight: 700; font-size: 15px; }
.heroList li{ position: relative; padding-left: 16px; }
.heroList li::before{ content:"—"; position:absolute; left:0; color: var(--gold); }

.hero__btns{ display:flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 6px; }

.anchors{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.anchors a{
  padding: 9px 13px; border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.5);
  font-weight: 600; font-size: 13px; color: var(--ink-soft);
  transition: background .15s ease, border-color .15s ease;
}
.anchors a:hover{ background: var(--paper); border-color: var(--stroke-gold-soft); }

/* -------------------------
  6) Right column cards
-------------------------- */
.hero__right{ display:flex; flex-direction:column; gap: 16px; }

.infoCard{
  position: relative;
  border-radius: var(--radius2);
  background: linear-gradient(165deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--cream);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.infoCard__title{ font-family: var(--display); font-weight: 600; font-size: 24px; }
.infoCard__desc{ font-size: 14px; opacity: .82; margin-top: 2px; color: var(--gold-light); }
.infoCard__meta{ font-family: var(--mono); font-size: 12.5px; opacity: .68; margin-top: 10px; }
.infoCard__line{
  height: 1px; margin: 16px 0 14px;
  background-image: repeating-linear-gradient(90deg, rgba(217,186,123,.35) 0 8px, transparent 8px 16px);
}
.kv{ display:grid; grid-template-columns: 92px 1fr; row-gap: 10px; column-gap: 10px; font-size: 14.5px; }
.kv__k{ opacity: .58; }
.kv__v{ font-weight: 700; font-family: var(--mono); font-size: 13.5px; }

.whoCard{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 22px;
}
.whoCard__title{ font-family: var(--display); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.whoCard__text{ color: var(--ink-soft); line-height: 1.6; font-size: 14.5px; }
.whoCard__bullets{ margin-top: 12px; display:grid; gap: 6px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.whoCard__btns{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* -------------------------
  7) Sections common
-------------------------- */
.section{ padding: 62px 0; position: relative; overflow: hidden; }
.section + .section{ border-top: 1px solid var(--stroke); }
.section > .container{ position: relative; z-index: 1; }
.sectionHead{ margin-bottom: 30px; max-width: 640px; }
.sectionHead .h2{ margin-top: 8px; }

.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* -------------------------
  8) Hang-tag icon (сигнатурний елемент)
-------------------------- */
.hangIcon{
  position: relative;
  width: 56px; height: 56px;
  margin-bottom: 6px;
}
.hangIcon__hook{
  position:absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 14px;
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.hangIcon__box{
  width: 100%; height: 100%;
  border-radius: 14px;
  border: 1.6px solid var(--gold);
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  color: var(--ink);
  font-size: 24px;
  box-shadow: var(--shadow2);
}
.hangIcon__box .icon{ width: 26px; height: 26px; stroke: var(--ink); }
.hangIcon--sm{ width: 44px; height: 44px; }
.hangIcon--sm .hangIcon__hook{ top: -11px; width: 13px; height: 11px; }
.hangIcon--sm .hangIcon__box .icon{ width: 20px; height: 20px; }

/* -------------------------
  9) Locations — ремонтні бирки
-------------------------- */
.locations{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.ticket{
  position: relative;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--stroke-gold-soft);
  box-shadow: var(--shadow2);
  padding: 26px 24px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ticket:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--stroke-gold); }
.ticket__top{ display:flex; align-items:center; gap: 14px; margin-bottom: 14px; }
.ticket__label{
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 700;
}
.ticket__name{ font-family: var(--display); font-weight: 600; font-size: 24px; margin-top: 2px; }
.ticket__rows{ display:grid; gap: 8px; margin-bottom: 16px; }
.ticket__row{ display:flex; align-items:baseline; gap: 10px; font-size: 14px; }
.ticket__row .k{ color: var(--ink-faint); min-width: 68px; }
.ticket__row .v{ font-weight: 700; font-family: var(--mono); font-size: 13.5px; }
.ticket__btns{ display:flex; gap: 8px; flex-wrap: wrap; }
.ticket__btns .btn{ padding: 11px 14px; font-size: 13.5px; }
.ticket__btns .icon{ width: 15px; height: 15px; }

/* -------------------------
  10) Services
-------------------------- */
.serviceCards{ display:grid; gap: 16px; }
.serviceCards--four{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sCard{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 24px 22px 22px;
  display:flex; flex-direction:column; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sCard:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--stroke-gold); }
.sCard__title{ font-family: var(--display); font-weight: 600; font-size: 21px; }
.sCard__list{ margin: 0; padding-left: 18px; color: var(--ink-soft); line-height: 1.65; font-size: 14px; }
.sCard__list li{ list-style: disc; }
.sCard__btn{ margin-top: auto; width: fit-content; }

/* -------------------------
  11) Popular
-------------------------- */
.popularGrid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pCard{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 20px;
}
.pCard__title{ font-family: var(--display); font-weight: 600; font-size: 26px; margin-bottom: 10px; }
.pCard__rows{ display:grid; gap: 8px; }
.pRow{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--cream);
}
.pRow__name{ font-weight: 600; color: var(--ink-soft); font-size: 14.5px; }
.pRow__price{ font-weight: 700; white-space:nowrap; font-family: var(--mono); font-size: 14px; color: var(--gold-deep); }
.centerCta{ margin-top: 22px; display:flex; justify-content:center; }

/* -------------------------
  12) Gallery — Before/After
-------------------------- */
.gallery{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.baCard{
  border-radius: var(--radius2); overflow:hidden;
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
}
.baCard__imgs{ display:grid; grid-template-columns: 1fr 1fr; position: relative; }
.baCard__imgs::after{
  content:""; position:absolute; inset:0 auto 0 50%; width: 1px;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,.6) 0 6px, transparent 6px 12px);
}
.baCard__imgs img{ width:100%; height: 220px; object-fit: cover; object-position: center; }
.baCard__tag{
  position:absolute; top: 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
  background: rgba(23,19,16,.68); color: var(--cream);
}
.baCard__tag--before{ left: 10px; }
.baCard__tag--after{ right: 10px; background: var(--gold-deep); }
.baCard__cap{ padding: 12px 14px; font-weight: 700; font-size: 14px; color: var(--ink-soft); }

/* -------------------------
  13) Price
-------------------------- */
.priceTopLinks{ display:flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.priceTopLinks a{
  padding: 9px 13px; border-radius: 999px;
  border: 1px solid var(--stroke-gold-soft);
  background: rgba(255,255,255,.5);
  font-weight: 600; font-size: 13px; color: var(--ink-soft);
}

.priceBlocks{ display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1180px){ .priceBlocks{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.priceCard{
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 22px; padding-top: 30px;
}
.priceCard::before{
  content: attr(data-num);
  position: absolute; top: 14px; left: 22px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: .05em;
}
.priceCard--featured{
  transform: translateY(-4px);
  border-color: var(--stroke-gold);
  box-shadow: var(--shadow);
  background: var(--paper-tint);
}
.priceBadge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--black); color: var(--gold-light);
  font-weight: 700; font-size: 12.5px; margin-bottom: 14px;
}
.priceTitle{ font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.priceValue{ font-weight: 700; font-family: var(--mono); font-size: 21px; margin-bottom: 6px; color: var(--gold-deep); letter-spacing: -0.02em; }
.priceMeta{ color: var(--ink-faint); font-weight: 600; margin-bottom: 14px; font-size: 13.5px; }
.priceList{ margin:0; padding-left: 18px; color: var(--ink-soft); line-height: 1.65; font-size: 14px; }
.priceList li{ list-style: disc; margin-bottom: 4px; }
.priceBtn{ margin-top: 16px; width: 100%; }

/* -------------------------
  14) Why
-------------------------- */
.why{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.whyItem{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 20px;
  display:flex; gap: 14px; align-items:flex-start;
}
.whyItem__icon{
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold-soft); color: var(--gold-deep);
  display:flex; align-items:center; justify-content:center;
}
.whyItem__icon .icon{ width: 20px; height: 20px; }
.whyItem__t{ font-weight: 700; margin-bottom: 4px; font-family: var(--display); font-size: 18px; }
.whyItem__d{ color: var(--ink-soft); line-height: 1.6; font-size: 14.5px; }

/* -------------------------
  15) Contacts + Map
-------------------------- */
.contacts{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.contacts__card{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  padding: 20px;
}
.contacts__loc{ padding: 14px 0; }
.contacts__loc + .contacts__loc{ border-top: 1px solid var(--stroke); }
.contacts__loc h3{ font-family: var(--display); font-weight: 600; font-size: 19px; margin: 0 0 8px; }
.row{ display:grid; grid-template-columns: 100px 1fr; gap: 10px; padding: 8px 0; font-size: 14px; }
.row__k{ color: var(--ink-faint); font-weight: 600; }
.row__v{ font-weight: 700; font-family: var(--mono); font-size: 13.5px; }
.contacts__btns{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.contacts__locBtns{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.contacts__locBtns .btn{ padding: 9px 13px; font-size: 13px; }
.contacts__locBtns .icon{ width: 14px; height: 14px; }
.contacts__social{ display:flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--stroke); }

.contacts__map .mapBox{
  border-radius: var(--radius2); overflow: hidden;
  border: 1px solid var(--stroke-gold-soft);
  background: var(--paper);
  box-shadow: var(--shadow2);
  position: relative; min-height: 420px; height: 100%;
}
.mapTabs{ display:flex; gap: 6px; padding: 10px; background: var(--paper); position: relative; z-index: 2; }
.mapTabs button{
  flex: 1; padding: 8px 10px; border-radius: 10px;
  border: 1px solid var(--stroke-gold-soft);
  background: var(--cream);
  font-weight: 700; font-size: 13px; color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.mapTabs button.is-active{ background: var(--black); color: var(--gold-light); border-color: var(--black); }
.mapBox iframe{ width: 100%; height: 100%; min-height: 330px; border: 0; display:block; }
.mapBox .btn{ position:absolute; left: 14px; bottom: 14px; z-index: 2; }

/* -------------------------
  16) Social strip (нова секція)
-------------------------- */
.socialStrip{
  display:flex; align-items:center; justify-content:space-between; gap: 20px; flex-wrap: wrap;
  border-radius: var(--radius2);
  border: 1px solid var(--stroke-gold-soft);
  background: linear-gradient(120deg, var(--paper) 0%, var(--cream2) 100%);
  box-shadow: var(--shadow2);
  padding: 24px 28px;
}
.socialStrip__text{ max-width: 46ch; }
.socialStrip__title{ font-family: var(--display); font-weight: 600; font-size: 22px; margin-bottom: 4px; }
.socialStrip__desc{ color: var(--ink-soft); font-size: 14.5px; }
.socialStrip__links{ display:flex; gap: 10px; flex-wrap: wrap; }
.socialLink{
  display:flex; align-items:center; gap: 9px;
  padding: 11px 16px; border-radius: 12px;
  border: 1px solid var(--stroke-gold);
  background: var(--paper);
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.socialLink:hover{ background: var(--black); color: var(--gold-light); transform: translateY(-2px); }
.socialLink .icon{ width: 18px; height: 18px; color: var(--gold-deep); transition: color .15s ease; }
.socialLink:hover .icon{ color: var(--gold-light); }

/* -------------------------
  17) Footer
-------------------------- */
.footer{ padding: 30px 0 34px; border-top: 1px solid var(--stroke-gold-soft); background: var(--cream2); }
.footer__in{ display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap: wrap; }
.footer__brand{ font-weight: 700; font-family: var(--display); font-size: 17px; }
.footer__tag{ color: var(--ink-faint); font-size: 12px; margin-top: 4px; font-family: var(--mono); }
.footer__right{ color: var(--ink-faint); font-size: 13px; display:flex; align-items:center; gap: 16px; flex-wrap: wrap; }

/* =========================================================
  18) Responsive
========================================================== */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .topbar__cta .socialRow{ display:none; }

  .hero__in{ grid-template-columns: 1fr; }

  .serviceCards--four{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .popularGrid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .locations{ grid-template-columns: 1fr; }

  .priceBlocks{ grid-template-columns: 1fr; }
  .why{ grid-template-columns: 1fr; }
  .contacts{ grid-template-columns: 1fr; }

  .socialStrip{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 24px)); }

  .topbar__in{ padding: 8px 0; gap: 10px; }
  .brand{ max-width: 60%; }
  .brand__logo{ height: 36px; }

  .topbar__cta .btn{ padding: 10px 12px; font-size: 13.5px; border-radius: 10px; }

  .hero{ padding: 24px 0 20px; }
  .heroList{ flex-wrap: wrap; gap: 8px 14px; }

  .serviceCards--four{ grid-template-columns: 1fr; }

  .gallery{ grid-template-columns: 1fr; }
  .baCard__imgs img{ height: 260px; }

  .kv{ grid-template-columns: 96px 1fr; }
  .row{ grid-template-columns: 1fr; }

  .mapBox .btn{ position: static; width: calc(100% - 24px); margin: 12px; }

  .footer__in{ flex-direction: column; align-items: flex-start; }
}
