/* ============================================================
   DEMONTAZH+ — Kyiv. Premium light theme: ivory, graphite, amber.
   ============================================================ */

:root {
  --bg: #faf9f6;
  --bg-2: #f3f1ea;
  --card: #ffffff;
  --line: #e8e4da;
  --amber: #f0a90d;
  --amber-hover: #ffbe2e;
  --amber-deep: #b07f00;
  --ink: #191914;
  --text: #26261f;
  --muted: #6d6c63;
  --dim: #a09e93;
  --dark: #141518;
  --dark-2: #1c1e22;
  --dark-line: rgba(255, 255, 255, 0.09);
  --dark-text: #f3f2ee;
  --dark-muted: #a9a89f;
  --success: #1e9e5a;
  --danger: #d64545;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 18px 50px rgba(35, 30, 12, 0.1);
  --shadow-sm: 0 6px 22px rgba(35, 30, 12, 0.07);
  --header-h: 76px;
  --font-head: "Montserrat", "Arial", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(240, 169, 13, 0.3); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.22; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }

.section { padding: 96px 0; }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(27px, 3.4vw, 42px); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-deep);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.section-head .kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ---------- Logo (SVG + text, crisp on any background) ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text em { font-style: normal; color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 17px 32px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: linear-gradient(140deg, #ffc433 0%, var(--amber) 55%, #e09a00 100%);
  color: #1d1706;
  box-shadow: 0 10px 26px rgba(224, 158, 0, 0.35);
}
.btn--primary:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(224, 158, 0, 0.42); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(25, 25, 20, 0.22);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--amber); color: var(--amber-deep); transform: translateY(-2px); }
.hero .btn--ghost, .cta .btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.hero .btn--ghost:hover, .cta .btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--amber); color: var(--amber); }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(35, 30, 12, 0.05);
}
.header__in { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.header__nav { display: flex; gap: 25px; margin-left: auto; }
.header__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.18s ease;
  padding: 6px 0;
}
.header__nav a:hover, .header__nav a.is-active { color: var(--amber-deep); }
.header__contacts { display: flex; align-items: center; gap: 13px; }
.header__phone {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color 0.18s ease;
}
.header__phone:hover { color: var(--amber-deep); }
.header__phone svg { color: var(--amber-deep); }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.icon-btn:hover { color: #1d1706; background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0;
  position: relative;
  z-index: 101;
}
.burger span, .burger::before, .burger::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-open span { opacity: 0; }
.burger.is-open::before { transform: translateY(7px) rotate(45deg); }
.burger.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (photo bg, dark glass overlay — premium contrast) ---------- */
.hero {
  position: relative;
  min-height: min(90vh, 840px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 72px) 0 96px;
  isolation: isolate;
  color: #fff;
}
.hero--inner { min-height: min(70vh, 660px); padding-bottom: 76px; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(16, 15, 11, 0.9) 0%, rgba(16, 15, 11, 0.74) 46%, rgba(16, 15, 11, 0.32) 100%);
}
.hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 54px); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__content { max-width: 710px; }
.hero__sub { color: #dbd9d1; font-size: clamp(16px, 1.6vw, 19px); margin: 24px 0 36px; max-width: 620px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 56px; }
.hero__fact strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
}
.hero__fact span { color: #b9b7ac; font-size: 14px; }
.hero .kicker { color: var(--amber); }

/* hero__facts, використаний на світлих секціях сторінки */
.section .hero__fact strong { color: var(--amber-deep); }
.section .hero__fact span { color: var(--muted); }

/* Split hero (demontazh page) */
.hero--split .hero__bg { display: grid; grid-template-columns: 1fr 1fr; }
.hero--split .hero__bg div { background-size: cover; background-position: center; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 169, 13, 0.5);
  box-shadow: var(--shadow);
}
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 20px; margin-bottom: 10px; }
.service-card__body p { color: var(--muted); font-size: 15px; flex: 1; }
.service-card__link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
}
.service-card__link svg { transition: transform 0.2s ease; }
.service-card:hover .service-card__link svg { transform: translateX(5px); }

/* ---------- Feature list (why us) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(240, 169, 13, 0.5); box-shadow: var(--shadow); }
.feature__icon {
  width: 58px; height: 58px;
  border-radius: 15px;
  background: linear-gradient(140deg, rgba(240, 169, 13, 0.16), rgba(240, 169, 13, 0.08));
  color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step {
  position: relative;
  padding: 32px 28px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(240, 169, 13, 0.75);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Checklist / bullets ---------- */
.check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 15px;
  color: #45443c;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(240, 169, 13, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b07f00' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.check-list strong { color: var(--ink); }

/* ---------- Two-column media blocks ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(24px, 3vw, 35px); margin-bottom: 22px; }
.split p.lead { color: var(--muted); margin-bottom: 22px; }

/* ---------- Price table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td { text-align: left; padding: 18px 26px; }
.price-table thead th {
  background: linear-gradient(140deg, rgba(240, 169, 13, 0.14), rgba(240, 169, 13, 0.07));
  color: var(--amber-deep);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.price-table tbody tr { border-top: 1px solid var(--line); }
.price-table tbody tr:hover { background: rgba(240, 169, 13, 0.045); }
.price-table td:last-child {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.price-note { color: var(--dim); font-size: 14px; margin-top: 16px; }
.price-note strong { color: var(--muted); }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; }
.tab-btn {
  padding: 13px 27px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.tab-btn:hover { color: var(--ink); border-color: rgba(240, 169, 13, 0.55); }
.tab-btn.is-active {
  background: linear-gradient(140deg, #ffc433, var(--amber));
  border-color: var(--amber);
  color: #1d1706;
  box-shadow: 0 8px 20px rgba(224, 158, 0, 0.3);
}
.tab-pane { display: none; }
.tab-pane.is-active { display: block; animation: fadeUp 0.4s ease; }

/* ---------- Before / After slider ---------- */
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow);
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--amber);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231d1706' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6' transform='translate(-3 0)'/%3E%3Cpolyline points='9 18 15 12 9 6' transform='translate(3 0)'/%3E%3C/svg%3E") center no-repeat;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.ba-slider__tag {
  position: absolute;
  top: 18px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(16, 15, 11, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-slider__tag--before { left: 18px; }
.ba-slider__tag--after { right: 18px; color: var(--amber); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery a {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 15, 11, 0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery a:hover img { transform: scale(1.07); }
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 11, 9, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; animation: fadeIn 0.25s ease; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--amber); color: #1d1706; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- CTA (dark graphite block — conversion accent) ---------- */
.cta {
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(240, 169, 13, 0.2), transparent 60%),
    linear-gradient(160deg, var(--dark-2), var(--dark));
  border-radius: 22px;
  padding: clamp(36px, 5vw, 66px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  color: var(--dark-text);
  box-shadow: var(--shadow);
}
.cta h2 { font-size: clamp(24px, 3vw, 35px); margin-bottom: 14px; color: #fff; }
.cta p { color: var(--dark-muted); }
.cta__note { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: #7b7a70; font-size: 13.5px; }
.cta__note svg { color: var(--amber); flex-shrink: 0; }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; }
.field input, .field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a9a89f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field select option { color: var(--ink); background: #fff; }
.field input::placeholder { color: #83827a; }
.field input:focus, .field select:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(240, 169, 13, 0.2);
}
.field.has-error input { border-color: var(--danger); }
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.5;
}
.form-msg.is-ok { display: block; background: rgba(56, 200, 120, 0.14); color: #55d68d; border: 1px solid rgba(56, 200, 120, 0.32); }
.form-msg.is-err { display: block; background: rgba(255, 105, 105, 0.12); color: #ff8484; border: 1px solid rgba(255, 105, 105, 0.3); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Package highlight (Чиста ділянка) ---------- */
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 169, 13, 0.18);
  color: var(--amber);
  border: 1px solid rgba(240, 169, 13, 0.4);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: rgba(240, 169, 13, 0.55); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 60px 21px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber-deep); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 26px; height: 26px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23b07f00' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center no-repeat;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--amber-deep); }
.faq-item__body { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; }
.faq-item__body a { color: var(--amber-deep); text-decoration: underline; }

/* ---------- Works filter (Наші роботи) ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; }
.gallery a.is-hidden { display: none; }
.work-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: var(--amber-deep);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------- Messenger float ---------- */
.float-contacts {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-contacts a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(35, 30, 12, 0.3);
  transition: transform 0.2s ease;
}
.float-contacts a:hover { transform: translateY(-4px) scale(1.05); }
.float-contacts .fc-tg { background: #2aabee; }
.float-contacts .fc-vb { background: #7360f2; }
.float-contacts .fc-ph { background: linear-gradient(140deg, #ffc433, var(--amber)); color: #1d1706; animation: pulse 2.4s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 169, 13, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(240, 169, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 169, 13, 0); }
}

/* ---------- Footer (dark graphite — premium contrast) ---------- */
.footer { background: var(--dark); color: var(--dark-muted); padding: 68px 0 0; }
.footer .logo-text { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; }
.footer__logo .logo { margin-bottom: 18px; }
.footer p { color: var(--dark-muted); font-size: 14.5px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 20px; }
.footer__col li { margin-bottom: 11px; }
.footer__col a { color: var(--dark-muted); font-size: 14.5px; transition: color 0.18s ease; }
.footer__col a:hover { color: var(--amber); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--dark-muted); font-size: 14.5px; }
.footer__contact svg { color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: var(--dark-text); }
.footer__contact a:hover { color: var(--amber); }
.footer__area {
  border-top: 1px solid var(--dark-line);
  padding: 20px 0;
  font-size: 13.5px;
  color: #85847a;
}
.footer__area strong { color: var(--dark-muted); font-weight: 600; }
.footer__bottom {
  border-top: 1px solid var(--dark-line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #6f6e65;
  font-size: 13.5px;
}

/* ---------- Grid utilities ---------- */
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.cta--strip { grid-template-columns: auto 1fr; gap: 24px; padding: 28px 34px; align-items: center; margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-40 { margin-top: 40px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Breadcrumbs (on dark hero) ---------- */
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13.5px; color: #8f8d82; margin-bottom: 22px; }
.crumbs a { color: #c9c7bc; }
.crumbs a:hover { color: var(--amber); }

/* ---------- Quick-nav pills (page-level anchors) ---------- */
.quick-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps, .grid-3, .steps--5 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .header__nav { display: none; }
  .burger { display: block; }
  .header__contacts { margin-left: auto; }
  .header__nav.is-open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(35, 30, 12, 0.12);
    padding: 18px 5vw 28px;
    gap: 4px;
    z-index: 100;
    animation: fadeUp 0.25s ease;
  }
  .header__nav.is-open a { padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .cta { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid, .steps, .grid-3, .steps--5 { grid-template-columns: 1fr; }
  .cta--strip { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__facts { gap: 24px; }
  .header__phone span { display: none; }
  .header__phone svg { width: 22px; height: 22px; }
  .header__contacts .icon-btn { display: none; }
  .hero__actions .btn { width: 100%; }
  .ba-slider { aspect-ratio: 4 / 3; }
  .float-contacts { right: 14px; bottom: 14px; }
  .float-contacts a { width: 50px; height: 50px; }
  .logo-text { font-size: 17px; }
}
