/* =================================================================
   Покриви VasBuild - Основен стил
   Цветова система спрямо логото: жълто #F5B82E + тъмен slate #2B2F3A
   Светъл сайт с бяло/светлосиво като основа.
   ================================================================= */

/* ---------- Дизайн токени ---------- */
:root {
  --gold: #F5B82E;
  --gold-600: #E6A413;
  --gold-700: #C8890A;
  --gold-100: #FEF6E0;
  --gold-50: #FFFBF0;

  --ink: #2B2F3A;
  --ink-800: #353A47;
  --ink-700: #424857;
  --ink-500: #646B7C;
  --ink-400: #8A90A0;

  --line: #E7E9EE;
  --line-2: #EFF1F5;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-soft-2: #F2F4F7;
  --white: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(43,47,58,.06), 0 1px 3px rgba(43,47,58,.05);
  --shadow: 0 6px 18px rgba(43,47,58,.08);
  --shadow-lg: 0 18px 40px rgba(43,47,58,.12);
  --shadow-gold: 0 10px 24px rgba(245,184,46,.30);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: 22px;

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --t: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (не hidden) - hidden прави body scroll-контейнер и чупи position:sticky на хедъра */
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Размер по подразбиране за всички икони (специфичните правила по-долу го надписват) */
.ic { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: -0.16em; flex-shrink: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 880px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-ink { background: var(--ink); color: #C9CEDA; }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.grid { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-700); background: var(--gold-100);
  padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.section-head { max-width: 760px; margin-bottom: 50px; }
.section-head.center { margin-inline: auto; }
.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-title .hl { color: var(--gold-600); }
.section-intro { margin-top: 16px; color: var(--ink-500); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: var(--radius-pill);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-600); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #1f222b; box-shadow: var(--shadow-lg); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.25); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #C9CEDA; font-size: 14.5px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 18px; }
.topbar a { color: #C9CEDA; display: inline-flex; align-items: center; gap: 8px; }
.topbar a, .tb-item { white-space: nowrap; }
.tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 16px; height: 16px; color: var(--gold); }
.topbar-left { display: flex; gap: 22px; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a:hover { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow var(--t); }
.header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 15px; font-weight: 700; font-size: 15.5px; color: var(--ink-700);
  border-radius: var(--radius-sm); transition: color var(--t), background var(--t);
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--ink); background: var(--bg-soft); }
.nav-menu > li.active > a { color: var(--gold-700); }
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink); }
.nav-phone .ico { width: 42px; height: 42px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700); border-radius: 50%; flex-shrink: 0; }
.nav-phone .ico svg { width: 19px; height: 19px; }
.nav-phone small { display: block; font-size: 12px; font-weight: 700; color: var(--ink-400); letter-spacing: .04em; text-transform: uppercase; }
.nav-phone .num { font-size: 17px; letter-spacing: .01em; }

/* Dropdown */
.has-drop { position: relative; }
.drop-caret { width: 14px; height: 14px; transition: transform var(--t); }
.has-drop:hover .drop-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 320px; opacity: 0; visibility: hidden; transition: var(--t); z-index: 50;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; color: var(--ink-700); }
.dropdown a:hover { background: var(--gold-50); color: var(--ink); }
.dropdown a .di { width: 36px; height: 36px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700); border-radius: 9px; flex-shrink: 0; }
.dropdown a .di svg { width: 19px; height: 19px; }

/* Hamburger */
.burger { display: none; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--ink); color: #fff; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 22px; height: 2.4px; background: #fff; border-radius: 2px; margin-inline: auto; transition: var(--t); position: relative; }
.burger span::before { position: absolute; top: -7px; }
.burger span::after { position: absolute; top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 84px; background:
  radial-gradient(1100px 460px at 88% -8%, var(--gold-100), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.06; }
.hero h1 .hl { color: var(--gold-600); }
.hero-lead { margin-top: 22px; font-size: 19px; color: var(--ink-500); max-width: 560px; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--ink); font-size: 15px; }
.hero-trust .t svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-card { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; align-items: center; gap: 13px; }
.hero-card .hc-ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--gold); color: var(--ink); flex-shrink: 0; }
.hero-card .hc-ico svg { width: 24px; height: 24px; }
.hero-card b { display: block; font-size: 22px; color: var(--ink); line-height: 1; }
.hero-card span { font-size: 13.5px; color: var(--ink-500); }
.hero-card.c1 { top: 22px; left: -14px; }
.hero-card.c2 { bottom: 26px; right: -10px; }

/* ---------- Cards / services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.svc-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--gold-100); color: var(--gold-700); margin-bottom: 22px; transition: var(--t); }
.svc-ico svg { width: 32px; height: 32px; }
.svc-card:hover .svc-ico { background: var(--gold); color: var(--ink); }
.svc-card h3 { font-size: 21px; margin-bottom: 12px; }
.svc-card p { color: var(--ink-500); font-size: 15.5px; margin-bottom: 20px; }
.svc-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); font-size: 15px; }
.svc-link svg { width: 17px; height: 17px; transition: transform var(--t); }
.svc-card:hover .svc-link { color: var(--gold-700); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Feature list (check) ---------- */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list li .ck { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; margin-top: 2px; }
.check-list li .ck svg { width: 15px; height: 15px; }
.check-list li b { display: block; color: var(--ink); }
.check-list.on-ink li .ck { background: rgba(245,184,46,.16); color: var(--gold); }
.check-list.on-ink li, .check-list.on-ink li b { color: #C9CEDA; }
.check-list.on-ink li b { color: #fff; }

/* ---------- Split feature block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; background: var(--bg-soft); aspect-ratio: 4 / 3; }
.media-frame svg, .media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat b { display: block; font-size: clamp(34px, 5vw, 50px); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.03em; }
.stat span { display: block; margin-top: 10px; font-weight: 600; font-size: 15px; color: #B7BECC; }
.section-ink .stat span { color: #B7BECC; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step-num { width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 18px; position: relative; z-index: 2; transition: var(--t); }
.step:hover .step-num { background: var(--gold); border-color: var(--gold); }
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-500); }
.steps .step:not(:last-child)::before { content: ""; position: absolute; top: 40px; left: 58px; right: -22px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: 1; }

/* ---------- Why / reasons ---------- */
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: var(--t); height: 100%; }
.reason:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.reason .r-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--gold); display: grid; place-items: center; margin-bottom: 18px; }
.reason .r-ico svg { width: 27px; height: 27px; }
.reason h3 { font-size: 19px; margin-bottom: 10px; }
.reason p { font-size: 15px; color: var(--ink-500); }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; height: 100%; display: flex; flex-direction: column; }
.quote .stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 16px; }
.quote .stars svg { width: 19px; height: 19px; }
.quote p { color: var(--ink-700); font-size: 16px; margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.quote .who b { display: block; color: var(--ink); }
.quote .who span { font-size: 14px; color: var(--ink-400); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--gold); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; padding: 22px 24px; font-weight: 700; font-size: 17.5px; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; transition: var(--t); }
.faq-q .pm svg { width: 17px; height: 17px; transition: transform var(--t); }
.faq-item.open .pm { background: var(--gold); color: var(--ink); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-500); }

/* ---------- Price tables ---------- */
.price-pkg { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t); display: flex; flex-direction: column; }
.price-pkg:hover { box-shadow: var(--shadow-lg); }
.price-pkg.featured { border-color: var(--gold); }
.pp-head { padding: 26px 28px 22px; background: var(--ink); color: #fff; position: relative; }
.price-pkg.featured .pp-head { background: linear-gradient(135deg, var(--ink) 0%, #353d52 100%); }
.pp-badge { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .04em; }
.pp-head h3 { color: #fff; font-size: 21px; margin-bottom: 12px; max-width: 80%; }
.pp-price { display: flex; align-items: baseline; gap: 8px; }
.pp-price .amt { font-size: 34px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.pp-price .per { font-size: 14px; color: #B7BECC; }
.pp-warranty { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: #C9CEDA; background: rgba(255,255,255,.07); padding: 6px 12px; border-radius: var(--radius-pill); }
.pp-warranty svg { width: 16px; height: 16px; color: var(--gold); }
.pp-body { padding: 22px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.pp-rows { display: grid; gap: 0; margin-bottom: 22px; }
.pp-rows .row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.pp-rows .row:last-child { border-bottom: none; }
.pp-rows .row span:first-child { color: var(--ink-700); }
.pp-rows .row span:last-child { font-weight: 800; color: var(--ink); white-space: nowrap; }
.pp-body .btn { margin-top: auto; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.price-table caption { caption-side: top; text-align: left; font-weight: 800; color: var(--ink); font-size: 18px; padding: 6px 4px 16px; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-2); }
.price-table thead th { background: var(--ink); color: #fff; font-size: 14px; letter-spacing: .03em; text-transform: uppercase; }
.price-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.price-table tbody tr:hover { background: var(--gold-50); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 800; color: var(--ink); white-space: nowrap; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
/* Masonry (зидария) - запазва естественото съотношение на снимките */
.gallery-masonry { columns: 3 300px; column-gap: 18px; }
.gallery-masonry .gal { aspect-ratio: auto; width: 100%; margin: 0 0 18px; break-inside: avoid; -webkit-column-break-inside: avoid; }
.gallery-masonry .gal img { height: auto; }
.gal {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: var(--t); display: block;
}
.gal:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gal img, .gal svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal:hover img, .gal:hover svg { transform: scale(1.06); }
.gal-cap { position: absolute; inset: auto 0 0 0; padding: 30px 18px 16px; background: linear-gradient(transparent, rgba(43,47,58,.85)); color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.gal-cap svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band { background:
    radial-gradient(700px 300px at 12% 0%, rgba(245,184,46,.18), transparent 60%),
    var(--ink); border-radius: var(--radius-lg); padding: 56px; position: relative; overflow: hidden; }
.cta-band .container, .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); max-width: 640px; }
.cta-band p { color: #B7BECC; margin-top: 12px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* full-width CTA section variant */
.cta-full { background:
    radial-gradient(800px 360px at 85% 110%, rgba(245,184,46,.16), transparent 60%),
    var(--ink); color: #C9CEDA; }

/* ---------- Page hero / breadcrumb ---------- */
.page-hero { background:
    radial-gradient(900px 380px at 90% -20%, var(--gold-100), transparent 60%),
    var(--bg-soft); padding: 54px 0 60px; border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-400); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-700); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.breadcrumb .cur { color: var(--ink); font-weight: 700; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); max-width: 820px; }
.page-hero .lead { margin-top: 16px; font-size: 18.5px; color: var(--ink-500); max-width: 720px; }

/* ---------- Prose (article content) ---------- */
.prose { font-size: 17px; color: var(--ink-700); }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 46px; }
.prose h3 { font-size: 22px; margin-top: 34px; }
.prose p { color: var(--ink-700); }
.prose ul { display: grid; gap: 12px; margin-top: 16px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 16px; height: 16px; background: var(--gold); border-radius: 5px; box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--gold); }
.prose a:not(.btn) { color: var(--gold-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose .lead-p { font-size: 19px; color: var(--ink-500); }
.callout { background: var(--gold-50); border: 1px solid var(--gold-100); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 22px 24px; }
.callout h3 { margin-top: 0; color: var(--ink); }
.note { display: flex; gap: 11px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; font-size: 15px; color: var(--ink-500); }
.note .ic { color: var(--gold-700); margin-top: 2px; }

/* sticky aside */
.layout-aside { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.aside-card { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.aside-card.ink { background: var(--ink); color: #C9CEDA; }
.aside-card h3 { font-size: 19px; margin-bottom: 8px; }
.aside-card.ink h3 { color: #fff; }
.aside-list { display: grid; gap: 6px; margin: 16px 0; }
.aside-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-radius: var(--radius-sm); background: var(--bg-soft); font-weight: 600; font-size: 15px; color: var(--ink-700); }
.aside-list a:hover, .aside-list a.active { background: var(--gold-100); color: var(--ink); }
.aside-list a svg { width: 16px; height: 16px; opacity: .5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.ci-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: var(--t); }
.ci-card:hover { box-shadow: var(--shadow); }
.ci-card .ci-ico { flex-shrink: 0; width: 52px; height: 52px; border-radius: 13px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; }
.ci-card .ci-ico svg { width: 25px; height: 25px; }
.ci-card h3 { font-size: 17px; margin-bottom: 4px; }
.ci-card a, .ci-card p { color: var(--ink-500); font-size: 15.5px; }
.ci-card a:hover { color: var(--gold-700); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--gold-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); color: var(--ink); transition: var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-100); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13.5px; color: var(--ink-400); margin-top: 14px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Areas / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 18px; font-weight: 600; font-size: 14.5px; color: var(--ink-700); transition: var(--t); }
.chip .ic { color: var(--gold-600); }
.chip:hover { border-color: var(--gold); background: var(--gold-50); color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9AA1B2; padding: 70px 0 0; }
.footer h4 { color: #fff; font-size: 16px; letter-spacing: .02em; margin-bottom: 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.09); }
.f-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.f-brand .f-mark { width: 46px; height: 46px; background: var(--gold); border-radius: 12px; display: grid; place-items: center; color: var(--ink); }
.f-brand .f-mark svg { width: 28px; height: 28px; }
.f-brand .f-name { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.f-brand .f-name span { color: var(--gold); }
.footer p { font-size: 15px; line-height: 1.7; }
.f-links { display: grid; gap: 11px; }
.f-links a { font-size: 15px; color: #9AA1B2; display: inline-flex; align-items: center; gap: 9px; }
.f-links a:hover { color: var(--gold); }
.f-links a svg { width: 14px; height: 14px; opacity: .5; }
.f-contact { display: grid; gap: 15px; }
.f-contact .fc { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; }
.f-contact .fc svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.f-contact .fc a:hover { color: var(--gold); }
.f-contact .fc b { color: #fff; display: block; font-weight: 700; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #C9CEDA; transition: var(--t); }
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; flex-wrap: wrap; font-size: 14px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* floating call button (mobile) */
.fab-call { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: var(--ink); display: none; place-items: center; box-shadow: var(--shadow-gold); animation: pulse 2.2s infinite; }
.fab-call svg { width: 27px; height: 27px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,184,46,.55); } 70% { box-shadow: 0 0 0 16px rgba(245,184,46,0); } 100% { box-shadow: 0 0 0 0 rgba(245,184,46,0); } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,22,28,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox svg { max-width: 92vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 24px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox-close:hover { background: var(--gold); color: var(--ink); }
.lightbox-close svg { width: 24px; height: 24px; }

/* mobile nav backdrop */
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,22,28,.5); opacity: 0; visibility: hidden; transition: var(--t); z-index: 95; }
body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 540px; }
  .svc-grid, .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .layout-aside { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}
@media (max-width: 860px) {
  .nav-menu, .nav-phone .meta, .topbar .hide-sm { display: none; }
  /* без backdrop-filter на мобилно - иначе хедърът става containing block за fixed менюто */
  .header { backdrop-filter: none; background: #fff; }
  .brand img { height: 96px; }
  .burger { display: grid; place-items: center; }
  .nav-actions .btn-text { display: none; }
  body.menu-open { overflow: hidden; }
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 90px 20px 30px; box-shadow: var(--shadow-lg); z-index: 96;
    transform: translateX(100%); transition: transform var(--t); overflow-y: auto; display: flex;
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  .nav-menu > li > a { padding: 14px 16px; font-size: 17px; border-radius: var(--radius-sm); }
  .has-drop .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--gold-100); border-radius: 0; margin: 4px 0 8px 16px;
    padding: 4px 0; min-width: auto; display: none;
  }
  .has-drop.open .dropdown { display: block; }
  .has-drop > a .drop-caret { transition: transform var(--t); }
  .has-drop.open > a .drop-caret { transform: rotate(180deg); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .cta-band { padding: 38px 26px; }
  .fab-call { display: grid; }
  .section { padding: 60px 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .cols-2, .cols-3, .cols-4, .stats, .gallery-grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 14px; }
  .hero-card { display: none; }
  .section { padding: 50px 0; }
  .cta-band { padding: 32px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .gallery-grid, .stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
