/* ============ TOKENS ============ */
:root {
  --bg: #0E0F10;
  --bg-2: #15171A;
  --bg-3: #1C1F23;
  --line: #2A2E33;
  --line-2: #3A3F46;
  --ink: #F4F2EE;
  --ink-2: #C7C4BD;
  --ink-3: #8A8780;
  --accent: #0D7C66;
  --accent-2: #14A085;
  --accent-soft: #0D7C6622;
  --warn: #F2C200;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --container: 1240px;
  --pad-x: clamp(16px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Unbounded', 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.05; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(14,15,16,0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Unbounded'; font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-family: 'Unbounded'; font-weight: 800; font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 6px 14px -6px var(--accent);
}
.logo-mark::after {
  content: ""; position: absolute;
}
.nav-links {
  display: none; gap: 28px; margin-left: 12px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-spacer { flex: 1; }
.nav-phone {
  display: none; font-weight: 600; font-size: 14px; color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff; font-weight: 600; font-size: 14px;
  border-radius: 999px;
  transition: background .2s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent-2); }
.nav-cta:active { transform: translateY(1px); }

@media (min-width: 760px) { .nav-phone { display: inline-flex; } }
@media (min-width: 960px) { .nav-links { display: inline-flex; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: background .2s ease, transform .15s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 32px -16px var(--accent), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-3); background: var(--bg-3); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(56px, 8vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 600px;
  background: radial-gradient(ellipse at 30% 20%, rgba(13,124,102,0.18), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* Декоративная палитра RAL — абсолютно позиционирована справа */
.hero-ral-bg {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: clamp(340px, 52%, 720px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;   /* чёрный фон → прозрачный, цвета остаются */
  opacity: 0.72;
  filter: saturate(1.1);
  /* маска: левый край плавно растворяется, не мешая тексту */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 22%, black 55%);
  mask-image:         linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 22%, black 55%);
}
.hero-ral-bg img {
  width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero-ral-bg {
    right: -12%;
    width: clamp(260px, 70%, 500px);
    opacity: 0.45;
    top: auto;
    bottom: -8%;
    transform: rotate(-12deg);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 30%, black 65%);
    mask-image:         linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 30%, black 65%);
  }
}
@media (max-width: 480px) {
  .hero-ral-bg { opacity: 0.3; width: 80%; right: -18%; }
}

.hero-grid {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

/* ── Hero image — полная ширина под текстом ── */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #0E0F10;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
}
@media (max-width: 720px) {
  .hero-art { aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .hero-art { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.04) saturate(1.08);
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,16,0.0) 40%, rgba(14,15,16,0.5) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(13,124,102,0.15), transparent 55%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 6px 12px; border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(36px, 6.5vw, 76px);
  margin-top: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .alu {
  font-family: 'Bebas Neue', 'Unbounded', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero-lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.hero-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 540px;
}
.hero-meta .num {
  font-family: 'Unbounded'; font-size: clamp(24px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-meta .label {
  font-size: 12px; color: var(--ink-3); margin-top: 2px;
  line-height: 1.3;
}

/* RAL chip */
.ral-chip {
  position: absolute; left: 20px; bottom: 20px;
  z-index: 2;
  padding: 12px 16px;
  background: rgba(14,15,16,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
}
.ral-chip .swatch {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.ral-chip .ral-meta { line-height: 1.2; }
.ral-chip .ral-code { font-family: 'Unbounded'; font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.ral-chip .ral-name { font-size: 11px; color: var(--ink-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.1em; }

.placeholder-tag {
  position: absolute; right: 16px; top: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--ink-3); text-transform: uppercase;
  padding: 6px 10px; background: rgba(14,15,16,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px;
}

/* ============ SECTION HEADER ============ */
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 760px;
}
.section-head .eyebrow { align-self: flex-start; }
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.04;
}
.section-head p {
  color: var(--ink-2); font-size: clamp(15px, 1.4vw, 17px);
  margin: 0; max-width: 620px;
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px);
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.about-text p {
  color: var(--ink-2); font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65; max-width: 520px;
}
.about-text p + p { margin-top: 14px; }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
.feature {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature:hover { border-color: var(--line-2); transform: translateY(-2px); }
.feature .ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature h4 {
  font-family: 'Manrope'; font-size: 15px; font-weight: 700;
  margin-bottom: 6px; letter-spacing: -0.005em;
}
.feature p { font-size: 13px; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.service:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--accent); opacity: 0; filter: blur(40px);
  transition: opacity .3s ease;
}
.service:hover::after { opacity: 0.18; }

.service-num {
  font-family: 'Unbounded'; font-weight: 600; font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.1em;
}
.service h3 {
  font-family: 'Unbounded'; font-size: 20px; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.01em;
}
.service p {
  color: var(--ink-2); font-size: 14px; line-height: 1.55;
  margin: 0; flex: 1;
}
.service-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.service-meta .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.service:hover .arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Wide highlight card */
.service-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0E1614 0%, #0a3d33 100%);
  border-color: rgba(13,124,102,0.5);
}
.service-wide h3 { font-size: 24px; max-width: 480px; }
.service-wide p { color: var(--ink-2); max-width: 540px; }
@media (min-width: 720px) {
  .service-wide { grid-column: span 2; }
}
@media (min-width: 1080px) {
  .service-wide { grid-column: span 3; }
  .service-wide-inner {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  }
}
.furn-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(13,124,102,0.35) 0%, transparent 55%),
    linear-gradient(135deg, #0E1614 0%, #0a3d33 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.furn-visual svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.furn-visual .grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
          mask: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  opacity: 0.6;
  pointer-events: none;
}

/* ============ GALLERY ============ */
.gallery { background: var(--bg); }

.tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.tab {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-size: 13px; font-weight: 600;
  transition: all .2s ease;
  white-space: nowrap;
}
.tab .count { white-space: nowrap; display: inline; }
.tab:hover { color: var(--ink); border-color: var(--line-2); }
.tab.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.tab .count { opacity: 0.7; margin-left: 6px; font-weight: 500; }

.slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
}
.slider-track {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.slider-track.dragging { cursor: grabbing; }

/* ── Flex-track: двигается один контейнер, слайды не имеют transform ── */
.slider-inner {
  display: flex;
  height: 100%;
  will-change: transform;
  /* transition управляется inline через JS */
}
.slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
  display: grid;
  place-items: center;
}
.slide img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: 32px 32px;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
}

.slide-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--bg-3);
}
.slide-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,16,0) 40%, rgba(14,15,16,0.65) 100%),
              linear-gradient(180deg, rgba(14,15,16,0.25) 0%, rgba(14,15,16,0) 25%);
  pointer-events: none;
}

.slide-empty {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--ink-3); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--bg-2);
}

.slide-content {
  position: relative; z-index: 1;
  text-align: center;
  color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.slide-content .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-3); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2);
}
.slide-content .label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.slide-content .sublabel {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-3);
}

.slide-tag {
  position: absolute; left: 20px; top: 20px; z-index: 2;
  padding: 8px 14px; background: rgba(14,15,16,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.slide-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.slide-caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.slide-caption .title {
  font-family: 'Unbounded'; font-weight: 600; font-size: 15px;
  color: var(--ink); letter-spacing: -0.005em;
}
.slide-caption .meta {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); margin-top: 4px;
}
.slide-ral {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: rgba(14,15,16,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.slide-ral .sw { width: 14px; height: 14px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15); }

.slider-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  gap: 12px;
}
.slider-dots {
  display: flex; gap: 8px; align-items: center;
}
.dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2);
  transition: all .25s ease;
}
.dot-btn.active { background: var(--accent); width: 24px; border-radius: 999px; }

.slider-arrows {
  display: flex; gap: 8px;
}
.arrow-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--ink); display: grid; place-items: center;
  transition: all .2s ease;
}
.arrow-btn:hover { background: var(--accent); border-color: var(--accent); }
.arrow-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.arrow-btn:disabled:hover { background: var(--bg-3); border-color: var(--line); }

.slide-counter {
  font-family: 'Unbounded'; font-weight: 600; font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.slide-counter .total { color: var(--ink-3); }

/* ============ PROCESS ============ */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s ease;
}
.step:hover { border-color: var(--accent); }
.step-num {
  font-family: 'Unbounded'; font-weight: 800;
  font-size: 56px; color: var(--accent);
  line-height: 1; letter-spacing: -0.04em;
  -webkit-text-stroke: 0;
}
.step h3 {
  font-family: 'Unbounded'; font-size: 18px; font-weight: 600;
  margin-top: 18px; letter-spacing: -0.005em;
}
.step p {
  margin-top: 8px;
  color: var(--ink-2); font-size: 14px; line-height: 1.55;
}
.step-meta {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); font-weight: 600;
}

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: stretch;
}
@media (min-width: 980px) {
  .contact-wrap { grid-template-columns: 1.4fr 1fr; }
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column;
}
.contact-card.primary {
  background:
    radial-gradient(ellipse at top right, rgba(13,124,102,0.18), transparent 60%),
    var(--bg-2);
}
.contact-card h3 {
  font-family: 'Unbounded'; font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.1; letter-spacing: -0.01em;
}
.contact-card .lead {
  color: var(--ink-2); margin-top: 16px; font-size: 15px;
  max-width: 480px; line-height: 1.6;
}

.call-block {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.call-btn {
  display: flex; align-items: center; gap: 18px;
  background: var(--accent); color: #fff;
  padding: 22px 28px;
  border-radius: var(--r-lg);
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 24px 50px -24px var(--accent);
}
.call-btn:hover { background: var(--accent-2); }
.call-btn:active { transform: translateY(1px); }
.call-btn .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.14);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.call-btn .label {
  font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}
.call-btn .num {
  font-family: 'Unbounded'; font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px); margin-top: 2px;
  letter-spacing: 0.005em;
}

.tg-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--line);
  padding: 16px 22px; border-radius: var(--r-lg);
  transition: border-color .2s ease, background .2s ease;
}
.tg-btn:hover { border-color: #229ED9; background: #229ED91A; }
.tg-btn .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: #229ED9; color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tg-btn .text { display: flex; flex-direction: column; line-height: 1.2; }
.tg-btn .text strong { font-weight: 700; font-size: 14px; }
.tg-btn .text span { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

.contact-side {
  display: flex; flex-direction: column; gap: 14px;
}
.info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-card .ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); font-weight: 600;
}
.info-card .val {
  font-family: 'Unbounded'; font-weight: 600;
  font-size: 15px; margin-top: 4px;
  word-break: break-word;
}
.info-card .sub { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

/* ============ FOOTER ============ */
footer {
  background: #08090A;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.foot-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.foot-brand p {
  color: var(--ink-3); font-size: 14px; line-height: 1.6;
  max-width: 360px; margin: 16px 0 0;
}
.foot-col h5 {
  font-family: 'Manrope'; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--ink-2); transition: color .2s ease; }
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  color: var(--ink-3); font-size: 12px;
}

/* utility */
.nowrap { white-space: nowrap; }

/* ============ ADAPTIVE ≤ 600px ============ */
@media (max-width: 600px) {
  .eyebrow {
    white-space: normal;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .hero h1 { font-size: clamp(24px, 7.5vw, 34px); }
  .hero-lead { font-size: 14px; }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-meta > div:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
  .hero-meta .num { font-size: clamp(20px, 6.5vw, 28px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .slide-caption {
    flex-direction: column; align-items: flex-start;
    gap: 8px; left: 12px; right: 12px; bottom: 12px;
  }
  .slide-tag { left: 12px; top: 12px; }
  .slide-caption .title { font-size: 13px; }
  .slider-dots { display: none; }
  .slider-controls { padding: 12px 14px; justify-content: space-between; }
  .arrow-btn { width: 36px; height: 36px; }
  .furn-visual { display: none; }
  .call-btn { padding: 18px; gap: 14px; }
  .call-btn .ico { width: 44px; height: 44px; border-radius: 10px; }
  .call-btn .num { font-size: clamp(16px, 5vw, 22px); }
  .step { padding: 24px 20px; }
  .step-num { font-size: 42px; }
  /* Footer */
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============ ADAPTIVE ≤ 380px (375 / 320) ============ */
@media (max-width: 380px) {
  :root { --pad-x: 12px; }

  /* NAV */
  .nav-inner { gap: 8px; height: 58px; }
  .logo { font-size: 14px; gap: 7px; }
  .logo-mark { width: 26px; height: 26px; font-size: 12px; border-radius: 6px; }
  .nav-cta { padding: 6px 10px; font-size: 11px; gap: 4px; white-space: nowrap; }

  /* Hero — ключевой фикс: слово «профессиональную» влезает при ≤22px */
  .hero h1 {
    font-size: clamp(19px, 6vw, 22px);
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-lead { font-size: 13px; }

  /* Hero meta: 1 колонка */
  .hero-meta { grid-template-columns: 1fr; max-width: 100%; }
  .hero-meta > div:last-child { grid-column: span 1; }
  .hero-meta .num { font-size: 22px; }
  .hero-meta .label { font-size: 11px; }

  /* Кнопки */
  .btn { font-size: 13px; padding: 12px 18px; }

  /* Section headers */
  .section-head h2 { font-size: clamp(20px, 6.5vw, 26px); }
  .section-head p { font-size: 13px; }

  /* Свойства покрытия */
  .features { grid-template-columns: 1fr; }
  .feature { padding: 16px; }
  .feature h4 { font-size: 14px; }
  .feature p { font-size: 12px; }

  /* Services */
  .service { padding: 18px; min-height: auto; }
  .service h3 { font-size: 15px; line-height: 1.25; }
  .service p { font-size: 13px; }
  .service-num { font-size: 11px; }

  /* Gallery tabs — горизонтальный скролл */
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    justify-content: flex-start;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { padding: 7px 12px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }

  /* Слайдер */
  .slider-counter { font-size: 12px; gap: 6px; }

  /* Process */
  .step { padding: 20px 16px; }
  .step-num { font-size: 36px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 13px; }

  /* Contacts */
  .contact-wrap { gap: 16px; }
  .contact-card { padding: 20px 16px; }
  .contact-card h3 { font-size: 16px; }
  .contact-card .lead { font-size: 13px; }
  .call-btn { padding: 14px; gap: 10px; }
  .call-btn .ico { width: 38px; height: 38px; border-radius: 8px; }
  .call-btn .num { font-size: 15px; }
  .info-card { padding: 16px; gap: 10px; }
  .info-card .val { font-size: 13px; }
  .info-card .sub { font-size: 11px; }

  /* Footer */
  .foot-brand p { font-size: 13px; }
  .foot-col h5 { font-size: 12px; }
  .foot-col li { font-size: 13px; }
  .foot-bottom { font-size: 11px; }
}
