:root {
  --main: #ec430f;
  --main-dark: #c9360b;
  --orange: #ff8126;
  --ink: #171818;
  --black-2: #666666;
  --black-3: #222222;
  --muted: #999999;
  --white: #fff;
  --white-2: #f1f1f1;
  --white-6: #f9f9f9;
  --line: #efefef;
  --footer: #171717;
  --radius: 5px;
  --shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  --max: 1200px;
  --font: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black-3);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--main); text-decoration: none; transition: color 0.2s, background 0.2s; }
a:hover { color: var(--ink); }
p { margin: 0 0 1rem; color: var(--black-2); }
h1, h2, h3, h4 { margin: 0 0 0.75rem; color: var(--ink); line-height: 1.25; font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: #f7f7f7;
  color: var(--black-2);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black-2);
}
.topbar a:hover { color: var(--main); }

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.site-header.is-sticky { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  min-width: 0;
}
.logo:hover { color: var(--ink); }
.logo__mark {
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--main);
  border-left: 4px solid var(--main);
  flex: 0 0 auto;
  margin-top: -6px;
}
.logo__text strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 1.1;
  font-weight: 700;
}
.logo__text small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black-2);
  font-weight: 500;
}
.logo--footer { color: #fff; }
.logo--footer:hover { color: #fff; }
.logo--footer small { color: #a2a2a2; }
.logo__image {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: transparent;
}
.header__inner > .nav,
.header__inner > .menu-toggle { margin-left: auto; }
.nav ul { display: flex; gap: 8px; }
.nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.nav a:hover,
.nav a.is-active { color: var(--main); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 8px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 80;
}
.mobile-menu__panel {
  background: #fff;
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 32px 28px;
  position: relative;
}
.mobile-menu__close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 36px;
  color: var(--main);
  cursor: pointer;
  line-height: 1;
}
.mobile-menu ul { margin: 32px 0; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--main); }
.mobile-menu__contact { color: var(--black-2); font-size: 15px; }
.mobile-menu__contact a { font-size: 15px; font-weight: 500; padding: 2px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 0;
  font: 600 16px/1 var(--font);
  cursor: pointer;
  text-decoration: none;
}
.btn--primary { background: var(--main); color: #fff; }
.btn--primary:hover { background: var(--ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--main); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background: #222 center/cover no-repeat;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
  max-width: 720px;
}
.hero h1,
.hero .hero-heading {
  color: var(--main);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero h1 span,
.hero .hero-heading span { color: var(--main); }
.hero p,
.hero .hero__text { color: #fff; font-weight: 600; }
.hero__nav {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}
.hero__nav button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}
.hero__nav button:hover { background: var(--main); border-color: var(--main); }

/* Sections */
.section { padding: 80px 0; }
.section--gray { background: var(--white-6); }
.section--quality {
  background: #1a1a1a url("../img/brand/about-bg.png") right bottom / 55% no-repeat;
  color: #fff;
  padding: 90px 0;
}
.section--quality h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); max-width: 16ch; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__visual {
  min-height: 420px;
  background: #fff center/contain no-repeat;
}
.about h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.stat__num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat__num span { color: var(--main); font-size: 0.55em; margin-left: 4px; }
.stat__label { color: var(--black-2); margin-top: 6px; font-size: 14px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel { position: relative; overflow: hidden; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 3);
  gap: 30px;
}
[hidden] { display: none !important; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
}
.service-slider {
  position: relative;
  margin: 28px 0 8px;
  width: 100%;
  max-width: 100%;
}
.service-slider .section-head h2,
.service-slider__heading {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.service-slider .section-head { margin-bottom: 16px; }
.service-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  touch-action: pan-x;
  padding: 6px 2px 14px;
}
.service-slider__track {
  display: flex;
  gap: 16px;
  width: max-content;
  max-width: none;
}
.service-slider .service-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  outline: 3px solid transparent;
  outline-offset: 3px;
}
.service-slider .service-card.is-active {
  outline-color: var(--main);
}
.service-slider .service-card:focus-visible {
  outline-color: var(--ink);
}
.service-panels {
  margin-top: 36px;
  scroll-margin-top: 96px;
}
.service-panel { min-width: 0; }
.service-card {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
  min-width: 0;
  min-height: 280px;
  background: #222;
}
.service-card img {
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover img { transform: scale(1.05); }
.service-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 18px;
  margin: 0;
  overflow-wrap: anywhere;
}
.carousel__arrows { display: flex; gap: 8px; }
.carousel__arrows button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}
.carousel__arrows button:hover { background: var(--main); color: #fff; border-color: var(--main); }

.prose h3 { margin-top: 1.6rem; }
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.service-areas span {
  background: var(--white-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--black-3);
}

.ask-more {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 40px;
}
.ask-more a { color: var(--main); }

/* Page hero */
.page-hero {
  background: var(--main);
  color: #fff;
  padding: 56px 0;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  margin: 0;
  overflow-wrap: anywhere;
}

address { font-style: normal; }

.breadcrumbs {
  font-size: 13px;
  margin: 0 0 1.5rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
}
.breadcrumbs li { color: var(--black-2); }
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--black-2); }
.breadcrumbs a:hover { color: var(--main); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Service layout */
.service-layout__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.service-side h2 { font-size: 22px; }
.service-side a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black-3);
  font-weight: 500;
}
.service-side a.is-active,
.service-side a:hover { color: var(--main); }
.side-cta {
  margin-top: 28px;
  background: var(--white-6);
  padding: 20px;
}
.service-main__image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  margin-bottom: 24px;
}
.check-list { margin: 0 0 1.25rem; }
.check-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--black-2);
}
.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: 700;
}
.price-list { margin: 0 0 1.25rem; }
.price-list li {
  padding: 4px 0;
  color: var(--ink);
  font-weight: 600;
}

/* Forms */
.form-wrap { max-width: 860px; }
.form-card {
  background: var(--white-6);
  padding: 32px;
  border-radius: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.req { color: var(--main); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea,
select {
  width: 100%;
  border: 1px solid #e7e7e7;
  background: #fff;
  padding: 12px 14px;
  font: 400 16px/1.4 var(--font);
  border-radius: 4px;
}
textarea { min-height: 140px; resize: vertical; }
.code-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  min-height: 120px;
  line-height: 1.45;
}
.checks { display: grid; gap: 8px; }
.checks label,
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.alert {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.alert--error { background: #fde8e4; color: #8a1f0a; }
.alert--ok { background: #e8f6e8; color: #145214; }
.text-group {
  border: 1px solid #ececec;
  border-radius: 6px;
  margin: 0 0 12px;
  background: #fafafa;
}
.text-group > summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 16px;
}
.text-group__body { padding: 0 16px 16px; }
.text-edit { margin-bottom: 16px; }
.text-edit textarea { min-height: 110px; }
.text-edit--list { min-height: 150px; }
.site-notice {
  background: #e8f6e8;
  color: #145214;
  border-bottom: 3px solid #2d8a2d;
  padding: 18px 0;
}
.site-notice p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.hint { font-size: 14px; color: var(--black-2); margin-bottom: 20px; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.file-fields { display: grid; gap: 10px; margin-bottom: 12px; }
.file-fields__row {
  display: grid;
  gap: 6px;
  align-items: center;
}
.file-fields__names {
  font-size: 13px;
  color: var(--black-2);
}
.file-fields__line {
  display: flex;
  gap: 8px;
  align-items: center;
}
.file-fields__line input[type="file"] { flex: 1; }
.file-fields__remove {
  width: 36px;
  height: 36px;
  border: 1px solid #e7e7e7;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.file-download-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.file-download-list .btn { display: inline-block; }

.calc-surface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.calc-rate__value {
  margin: 4px 0 0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
}
.calc-rate__unit {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-2);
}
@media (max-width: 992px) {
  .calc-surface { grid-template-columns: 1fr; }
}
.calc-teaser {
  background: #fff4f0;
  border-left: 4px solid var(--main);
  padding: 14px 16px;
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.calc__result {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.calc__label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-2);
}
.calc__price {
  margin: 4px 0 6px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
}
.calc__vat {
  margin: 0 0 14px;
  color: var(--black-2);
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #a2a2a2;
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__tagline { color: #a2a2a2; max-width: 36ch; }
.footer__cta { color: #fff; font-weight: 600; }
.footer__cta:hover { color: var(--main); }
.footer__heading {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer__links a,
.footer__contact a { color: #a2a2a2; }
.footer__links a:hover,
.footer__contact a:hover { color: #fff; }
.footer__links li,
.footer__contact li { padding: 6px 0; }
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: 16px 0;
  font-size: 13px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 40;
}
.scroll-top.is-visible { display: block; }

.admin-strip {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.admin-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  padding: 8px 0;
}
.admin-strip a { color: #fff; font-weight: 600; }
.admin-strip a:hover { color: var(--orange); }

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.admin-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 600;
  background: #fff;
}
.admin-nav a:hover,
.admin-nav a.is-active {
  background: var(--main);
  border-color: var(--main);
  color: #fff;
}

.maint-admin-note {
  background: #fff4e5;
  color: #8a4b00;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #f0d4a8;
}
.maint-admin-note a { color: #8a4b00; text-decoration: underline; }
.maint-admin-note a:hover { color: var(--ink); }

.status-choices {
  display: grid;
  gap: 12px;
}
.status-choice {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: #fff;
}
.status-choice strong { color: var(--ink); font-size: 18px; }
.status-choice span { color: var(--black-2); font-size: 14px; font-weight: 400; }
.status-choice.is-on {
  border-color: var(--main);
  box-shadow: inset 0 0 0 1px var(--main);
}
.status-choice input { margin: 0 8px 0 0; }

.maint {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--white-6);
  padding: 32px 16px;
}
.maint__box {
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.maint__logo {
  max-height: 72px;
  width: auto;
  margin: 0 auto 20px;
}
.maint__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--ink);
}
.maint__box h1 { font-size: 28px; }
.maint__box .btn { display: inline-block; }
.maint__phone { margin-top: 16px; }

.logo-preview {
  padding: 20px;
  background: #fff;
  border: 1px dashed var(--line);
  display: inline-flex;
  align-items: center;
  min-height: 72px;
}
.logo-preview img {
  max-height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.logo-preview__fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-group-title {
  margin: 32px 0 14px;
  font-size: 22px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}
.media-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.media-card form { margin-top: 12px; }
.media-card .btn { margin-top: 10px; }
.media-card__preview {
  min-height: 140px;
  background: #ececec;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.media-card__preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.media-card__preview--contain img {
  object-fit: contain;
  background: #fff;
  height: 120px;
}
.media-card__empty {
  margin: 0;
  padding: 24px;
  color: var(--black-2);
  font-size: 14px;
  text-align: center;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}
.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer__text-btn {
  background: none;
  border: 0;
  padding: 0;
  color: #a2a2a2;
  font: inherit;
  cursor: pointer;
}
.footer__text-btn:hover { color: #fff; }

.consent {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.consent[hidden] { display: none !important; }
.consent__panel {
  pointer-events: auto;
  width: min(720px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  padding: 22px 24px;
}
.consent__panel h2 { font-size: 22px; margin-bottom: 8px; }
.consent__panel p { color: var(--black-2); }
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.consent__reject {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 16px 24px;
  border-radius: var(--radius);
  font: 600 16px/1 var(--font);
  cursor: pointer;
}
.consent__reject:hover { border-color: var(--ink); }

@media (max-width: 992px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .about,
  .service-layout__grid,
  .footer__grid,
  .form-grid { grid-template-columns: 1fr; }
  .carousel__track { grid-auto-columns: calc((100% - 30px) / 2); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 64vh; }
}

@media (max-width: 640px) {
  .carousel__track { grid-auto-columns: 100%; }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .service-card { min-height: 200px; }
  .service-card img { height: 200px; }
  .topbar__inner { justify-content: center; }
  .stats { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .hero__content { padding: 72px 0 80px; }
}
