@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Roboto+Condensed:wght@600;700;800;900&display=swap");

:root {
  --rk-ink: #111419;
  --rk-muted: #5d6675;
  --rk-line: #dfe3ea;
  --rk-paper: #f3ecdd;
  --rk-paper-light: #fbf7ef;
  --rk-surface: #ffffff;
  --rk-yellow: #ffd21f;
  --rk-red: #e90612;
  --rk-dark: #171b20;
  --rk-radius: 10px;
  --rk-shadow: 0 22px 60px rgba(17, 20, 25, 0.12);
  --rk-display: "Roboto Condensed", sans-serif;
  --rk-body: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--rk-ink);
  background:
    radial-gradient(circle at 13% 8%, rgba(255, 210, 31, 0.08), transparent 24%),
    repeating-linear-gradient(0deg, rgba(55, 43, 24, 0.016) 0 1px, transparent 1px 5px),
    var(--rk-paper-light);
  font-family: var(--rk-body);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand-text strong,
.header-phone strong,
.red-button,
.outline-button,
.primary-action {
  font-family: var(--rk-display);
}

h1,
h2,
.section-head h2 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

a,
button,
summary,
[role="button"] {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 210, 31, 0.72);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.site-header {
  background: rgba(251, 247, 239, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 20, 25, 0.08);
}

.brand-bolt,
.logo-mark {
  color: var(--rk-ink);
  background: var(--rk-yellow);
}

.hero,
.utility-hero,
.specialist-hero,
.category-hero {
  background-color: rgba(251, 247, 239, 0.92);
  border-color: rgba(17, 20, 25, 0.14);
}

.hero::before,
.utility-hero::before,
.specialist-hero::before,
.category-hero::before {
  opacity: 0.34;
}

.brand img,
.rk-footer__logo img {
  display: block;
}

.hero,
.quick-section,
.prices-section,
.works-section,
.districts-section,
.faq-section,
.reviews-section,
.advantages-section,
.calc-section,
.related-services-section,
.section {
  scroll-margin-top: 110px;
}

.hero-media img,
.service-card img,
.work-card img,
.scenario-work-card img,
.category-work-card img,
.service-gallery img,
.reviews-grid img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f3f4f6;
}

.hero-media img {
  min-height: 360px;
}

.problem-card,
.service-card,
.work-card,
.category-work-card,
.scenario-work-card,
.review-card,
.advantage-card {
  border-radius: var(--rk-radius);
  background-color: rgba(255, 253, 248, 0.96);
  border-color: rgba(17, 20, 25, 0.14);
}

.service-card,
.work-card,
.category-work-card,
.scenario-work-card {
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover,
.category-work-card:hover,
.scenario-work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: var(--rk-shadow);
}

.section-head > span,
.eyebrow,
.section-kicker {
  color: var(--rk-ink);
  background: var(--rk-yellow);
  border-radius: 2px;
}

.red-button,
.primary-action,
.hero-form button,
.final-cta .red-button {
  min-height: 48px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(233, 6, 18, 0.18);
}

.hero-form,
.request-card,
.calc-card {
  background: rgba(255, 253, 248, 0.98);
  border-color: rgba(17, 20, 25, 0.14);
  box-shadow: var(--rk-shadow);
}

.hero-form input,
.hero-form select,
.hero-form textarea,
.request-card input,
.request-card select,
.request-card textarea {
  min-height: 48px;
  font-size: 16px;
}

.reviews-grid .rk-review-avatar {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 3px solid var(--rk-yellow);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 20, 25, 0.12);
}

.reviews-grid .rk-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-services-section {
  padding: clamp(34px, 5vw, 72px) clamp(16px, 4vw, 60px);
  background: var(--rk-paper);
  border-top: 1px solid rgba(17, 20, 25, 0.08);
}

.related-services-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1.3fr;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #920006;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-services-inner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.related-link {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--rk-ink);
  text-decoration: none;
  background: var(--rk-surface);
  border: 1px solid var(--rk-line);
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-link:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 6, 18, 0.34);
  box-shadow: 0 16px 32px rgba(17, 20, 25, 0.08);
}

.related-link i {
  color: var(--rk-red);
}

.rk-footer {
  color: #f5f7fb;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.12), transparent 38%),
    #15191f;
  padding: clamp(36px, 5vw, 68px) clamp(16px, 4vw, 60px) 24px;
}

.rk-footer__logo img {
  padding: 6px;
  background: var(--rk-yellow);
  border-radius: 8px;
}

.rk-footer a {
  color: inherit;
  text-decoration: none;
}

.rk-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(160px, 0.75fr)) minmax(220px, 0.95fr);
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.rk-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rk-footer__logo strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.rk-footer__logo small {
  display: block;
  margin-top: 3px;
  color: #c8d0dc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rk-footer__brand p,
.rk-footer__contacts small,
.rk-footer__bottom {
  color: #c8d0dc;
  line-height: 1.55;
}

.rk-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.rk-footer__badges span {
  display: inline-flex;
  padding: 8px 10px;
  color: #111419;
  background: var(--rk-yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rk-footer__col,
.rk-footer__contacts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.rk-footer h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.rk-footer__col a,
.rk-footer__contacts a,
.rk-footer__contacts span {
  color: #dbe2ec;
  font-weight: 700;
}

.rk-footer__phone {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: 950 !important;
}

.rk-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 900px) {
  .related-services-inner,
  .rk-footer__top {
    grid-template-columns: 1fr;
  }

  .related-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rk-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .related-links {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 240px;
  }

  .rk-footer {
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.94;
  }

  .hero,
  .utility-hero,
  .specialist-hero,
  .category-hero {
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #f6c400;
  outline-offset: 3px;
}
