@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #12161a;
  --ink-2: #1d242a;
  --steel: #4b5862;
  --muted: #68737b;
  --line: #d8dde0;
  --paper: #f4f6f5;
  --white: #ffffff;
  --safety: #f2c300;
  --safety-dark: #d7aa00;
  --red: #b93b2b;
  --green: #146b5e;
  --focus: #1677ff;
  --max: 1200px;
  --radius: 6px;
  --shadow: 0 18px 45px rgba(8, 13, 17, 0.13);
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 780;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 760;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--safety);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 4px;
  background: var(--safety);
  content: "";
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section-head--light p,
.section-head--light .eyebrow {
  color: #c8d0d4;
}

.section-head--light h2 {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 19px;
  background: var(--safety);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #ffd21b;
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: #2b343b;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--block {
  width: 100%;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.icon-link:hover svg {
  transform: translateX(3px);
}

.topbar {
  background: #090c0f;
  color: #c9d0d4;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: var(--white);
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--safety);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--ink);
  color: var(--white);
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--safety);
  color: var(--ink);
  font-size: 23px;
  font-weight: 850;
  transform: skewX(-8deg);
}

.brand__mark span {
  transform: skewX(8deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-size: 21px;
  font-weight: 850;
}

.brand__sub {
  margin-top: 5px;
  color: #aab4ba;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-self: stretch;
}

.main-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.main-nav a,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #dbe1e4;
  font-size: 14px;
  font-weight: 720;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-button:hover {
  color: var(--white);
}

.main-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--safety);
  content: "";
}

.nav-button svg {
  width: 15px;
  height: 15px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  display: grid;
  width: 290px;
  border-top: 3px solid var(--safety);
  padding: 9px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  position: relative;
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover {
  background: var(--paper);
  color: var(--ink);
}

.header-call {
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3b444b;
  border-radius: 4px;
  background: transparent;
  color: var(--white);
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #1a2025;
  color: var(--white);
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media::after {
  z-index: 1;
  background: rgba(5, 10, 13, 0.63);
  content: "";
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center 48%;
}

.hero-home__inner {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 440px);
  gap: 64px;
  align-items: center;
  padding-block: 56px;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy .eyebrow {
  color: #edf1f2;
}

.hero-copy h1 {
  max-width: 650px;
  text-wrap: balance;
}

.hero-copy__lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: #e1e6e8;
  font-size: 19px;
  line-height: 1.65;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f1f4f5;
  font-size: 14px;
  font-weight: 700;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--safety);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.lead-form {
  border-top: 5px solid var(--safety);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.lead-form__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.lead-form__head h2,
.lead-form__head h3 {
  margin-bottom: 5px;
  font-size: 23px;
}

.lead-form__head p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lead-form__badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.lead-form__badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18a17c;
  box-shadow: 0 0 0 4px rgba(24, 161, 124, 0.14);
  content: "";
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #374149;
  font-size: 12px;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c8cfd3;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: 0;
  transition: border-color 130ms ease, box-shadow 130ms ease;
}

.field input,
.field select {
  height: 44px;
  padding: 8px 11px;
}

.field textarea {
  min-height: 70px;
  resize: vertical;
  padding: 9px 11px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.form-consent {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 12px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.form-consent a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  display: none;
  margin: 10px 0 0;
  border-left: 3px solid var(--green);
  padding: 8px 10px;
  background: #ebf7f3;
  color: #0b5a4d;
  font-size: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: var(--red);
  background: #fff0ee;
  color: #8e2a1e;
}

.signal-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-item {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  padding: 17px 25px;
}

.signal-item:first-child {
  border-left: 1px solid var(--line);
}

.signal-item__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: #fff7ce;
  color: #6f5800;
}

.signal-item__icon svg {
  width: 21px;
  height: 21px;
}

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  font-size: 15px;
  line-height: 1.25;
}

.signal-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding-block: 92px;
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--compact {
  padding-block: 64px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  background: var(--white);
}

.service-card__media {
  height: 174px;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__body {
  padding: 23px 24px 25px;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.service-card__icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: var(--safety);
  color: var(--ink);
}

.service-card__icon svg {
  width: 21px;
  height: 21px;
}

.service-card__index {
  color: #929ba0;
  font-size: 12px;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #3b444a;
  border-bottom: 1px solid #3b444a;
}

.process-step {
  position: relative;
  min-height: 250px;
  border-right: 1px solid #3b444a;
  padding: 30px 27px;
}

.process-step:first-child {
  border-left: 1px solid #3b444a;
}

.process-step__no {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  background: var(--safety);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.process-step h3 {
  color: var(--white);
  font-size: 19px;
}

.process-step p {
  color: #aeb8bd;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  padding: 0;
  background: #cbd1d4;
  color: var(--white);
  text-align: left;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  content: "";
  transition: background-color 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.16);
}

.gallery-item__label {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.gallery-item__label span {
  font-size: 13px;
  font-weight: 780;
}

.gallery-item__label svg {
  width: 22px;
  height: 22px;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 7, 9, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  max-width: min(1080px, calc(100vw - 120px));
  margin: 0;
}

.lightbox__figure img {
  max-height: calc(100vh - 110px);
  margin-inline: auto;
  object-fit: contain;
}

.lightbox__figure figcaption {
  margin-top: 9px;
  color: #d6dde0;
  font-size: 13px;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #616b70;
  border-radius: 4px;
  background: #151b20;
  color: var(--white);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--safety);
  color: var(--safety);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.regions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.regions-visual {
  position: sticky;
  top: 120px;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.regions-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.48;
}

.regions-visual__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}

.regions-visual__content strong {
  max-width: 390px;
  margin-bottom: 8px;
  font-size: 31px;
  line-height: 1.2;
}

.regions-visual__content span {
  color: #d6dddf;
}

.region-group + .region-group {
  margin-top: 38px;
}

.region-group h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  font-size: 17px;
}

.region-group h3 svg {
  width: 19px;
  height: 19px;
  color: var(--red);
}

.region-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.region-links a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e0e4e6;
  padding: 7px 2px;
  color: #3e4a52;
  font-size: 13px;
  font-weight: 700;
}

.region-links a:hover {
  border-bottom-color: var(--safety-dark);
  color: var(--ink);
}

.region-links svg {
  width: 15px;
  height: 15px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.content-photo {
  position: relative;
}

.content-photo img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.content-photo__note {
  position: absolute;
  right: -24px;
  bottom: 25px;
  max-width: 240px;
  border-left: 5px solid var(--safety);
  padding: 18px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 720;
}

.prose p {
  color: #4d5960;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  font-weight: 680;
}

.check-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--green);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #aeb7bc;
  border-radius: 3px;
  content: "+";
  font-size: 20px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  border-color: var(--safety-dark);
  background: var(--safety);
  content: "−";
}

.faq-item__answer {
  max-width: 920px;
  padding: 0 54px 23px 0;
  color: var(--muted);
}

.cta-band {
  background: var(--safety);
  color: var(--ink);
}

.cta-band__inner {
  display: grid;
  min-height: 260px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding-block: 38px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: 39px;
}

.cta-band p {
  max-width: 700px;
  color: #493d0e;
}

.cta-band__actions {
  display: flex;
  gap: 10px;
}

.cta-band .button--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.cta-band .button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  min-height: 500px;
}

.page-hero__inner {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 65px;
  align-items: end;
  padding-block: 70px 64px;
}

.page-hero__inner--single {
  grid-template-columns: minmax(0, 780px);
}

.page-hero h1 {
  font-size: 56px;
}

.page-hero p {
  max-width: 700px;
  color: #dce2e4;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 25px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #d5dcdf;
  font-size: 12px;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  color: var(--safety);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-hero__aside {
  border-left: 4px solid var(--safety);
  padding: 24px;
  background: rgba(12, 17, 21, 0.82);
}

.page-hero__aside strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.page-hero__aside p {
  font-size: 14px;
}

.page-hero__aside .button {
  width: 100%;
  margin-top: 13px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 75px;
  align-items: start;
}

.detail-content h2:not(:first-child) {
  margin-top: 52px;
}

.detail-content p,
.detail-content li {
  color: #4c575e;
  font-size: 17px;
}

.detail-content__lead {
  color: var(--ink) !important;
  font-size: 21px !important;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-list__item {
  display: grid;
  min-height: 105px;
  grid-template-columns: 33px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 700;
}

.feature-list__item svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--green);
}

.number-list {
  display: grid;
  gap: 1px;
  margin: 24px 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 680;
}

.number-list span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  background: var(--safety);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.detail-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.sidebar-box + .sidebar-box {
  margin-top: 16px;
}

.sidebar-box--dark {
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.sidebar-box h3 {
  font-size: 20px;
}

.sidebar-box p {
  color: var(--muted);
  font-size: 14px;
}

.sidebar-box--dark p {
  color: #bdc5c9;
}

.sidebar-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-links li + li {
  border-top: 1px solid var(--line);
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 720;
}

.sidebar-links a:hover {
  color: var(--green);
}

.sidebar-links svg {
  width: 16px;
  height: 16px;
}

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

.directory-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px;
  background: var(--white);
  transition: border-color 160ms ease, transform 160ms ease;
}

.directory-card:hover {
  border-color: var(--safety-dark);
  transform: translateY(-2px);
}

.directory-card__meta {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.directory-card h2,
.directory-card h3 {
  margin: 9px 0 6px;
  font-size: 22px;
}

.directory-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.directory-card .icon-link {
  margin-top: 15px;
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 18px;
  background: var(--white);
}

.contact-row__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #fff4bd;
  color: #665000;
}

.contact-row__icon svg {
  width: 21px;
  height: 21px;
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-row strong {
  margin-top: 3px;
  font-size: 14px;
}

.legal-prose {
  max-width: 850px;
}

.legal-prose h2 {
  margin-top: 42px;
  font-size: 26px;
}

.legal-prose h3 {
  margin-top: 28px;
  font-size: 19px;
}

.legal-prose p,
.legal-prose li {
  color: #4f5a61;
}

.site-footer {
  background: #090c0f;
  color: #bec7cb;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 55px;
  padding-block: 70px 55px;
}

.footer-about p {
  max-width: 320px;
  margin-top: 20px;
  color: #9da8ad;
  font-size: 14px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--safety);
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 13px;
}

.footer-contact > a,
.footer-contact > span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.footer-contact > a > span,
.footer-contact > span > span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact > a[href^="tel:"] > span {
  white-space: nowrap;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--safety);
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #252b30;
  color: #879298;
  font-size: 12px;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 110;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr 1.3fr;
  gap: 7px;
  border-top: 1px solid #283138;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: var(--ink);
}

.mobile-contact-bar .button {
  min-height: 44px;
  padding: 8px 10px;
  font-size: 13px;
}

.error-page {
  display: grid;
  min-height: calc(100vh - 174px);
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.error-page__code {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.error-page h1 {
  font-size: 52px;
}

.error-page p {
  max-width: 590px;
  color: var(--muted);
}

.error-page .hero-actions {
  justify-content: center;
  margin-top: 25px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 54px;
  }

  .main-nav > ul {
    gap: 19px;
  }

  .header-call {
    font-size: 0;
  }

  .header-call svg {
    margin: 0;
  }

  .hero-home__inner {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 38px;
  }

  .signal-item {
    padding-inline: 16px;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-main > div:nth-child(3) {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 105;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 18px 20px 110px;
    background: var(--ink);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > ul {
    display: grid;
    align-items: start;
    gap: 0;
  }

  .main-nav > ul > li,
  .main-nav a,
  .nav-button {
    width: 100%;
  }

  .main-nav > ul > li {
    display: block;
    border-bottom: 1px solid #30383e;
  }

  .main-nav a,
  .nav-button {
    min-height: 51px;
    justify-content: space-between;
    color: var(--white);
  }

  .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    border: 0;
    padding: 0 0 8px 14px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    min-height: 42px;
    color: #c4cdd1;
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--safety);
  }

  .hero-home__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 45px 50px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy__lead {
    font-size: 17px;
  }

  .lead-form {
    max-width: 650px;
  }

  .signal-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .content-split,
  .regions-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 18px;
  }

  .section-head p {
    max-width: 680px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(3) {
    border-left: 1px solid #3b444a;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid #3b444a;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 210px;
  }

  .gallery-item:first-child {
    grid-row: 1;
  }

  .gallery-item:nth-child(4) {
    display: none;
  }

  .regions-visual {
    position: relative;
    top: auto;
    min-height: 380px;
  }

  .regions-visual img {
    height: 380px;
  }

  .content-photo img {
    min-height: 430px;
  }

  .content-photo__note {
    right: 20px;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: end;
  }

  .page-hero__aside {
    max-width: 620px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .sidebar-box + .sidebar-box {
    margin-top: 0;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__sub {
    font-size: 9px;
  }

  .hero-home__inner {
    gap: 24px;
    padding-block: 32px 0;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
  }

  .hero-copy__lead {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-trust {
    display: none;
  }

  .hero-copy .hero-actions {
    display: none;
  }

  .lead-form {
    padding: 17px;
  }

  .lead-form__head {
    margin-bottom: 13px;
  }

  .lead-form__head h2,
  .lead-form__head h3 {
    font-size: 20px;
  }

  .lead-form__head p {
    display: none;
  }

  .form-grid {
    gap: 9px;
  }

  .field label {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .field input,
  .field select {
    height: 42px;
    font-size: 13px;
  }

  .field textarea {
    min-height: 55px;
    font-size: 13px;
  }

  .form-consent {
    margin-block: 9px;
    font-size: 10px;
  }

  .lead-form .button {
    min-height: 46px;
  }

  .signal-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-item {
    min-height: 90px;
    gap: 9px;
    padding: 12px 9px;
  }

  .signal-item__icon {
    width: 34px;
    height: 34px;
  }

  .signal-item__icon svg {
    width: 18px;
    height: 18px;
  }

  .signal-item strong {
    font-size: 13px;
  }

  .signal-item span {
    font-size: 10px;
  }

  .section {
    padding-block: 66px;
  }

  .section--compact {
    padding-block: 50px;
  }

  .section-head {
    margin-bottom: 29px;
  }

  .section-head p {
    font-size: 15px;
  }

  .service-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__media {
    height: 190px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(3) {
    min-height: auto;
    border-right: 1px solid #3b444a;
    border-bottom: 1px solid #3b444a;
    border-left: 1px solid #3b444a;
    padding: 23px;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step__no {
    margin-bottom: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 215px 170px;
    gap: 6px;
  }

  .gallery-item__label {
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .gallery-item__label span {
    display: none;
  }

  .regions-layout {
    gap: 40px;
  }

  .regions-visual,
  .regions-visual img {
    min-height: 320px;
    height: 320px;
  }

  .regions-visual__content {
    padding: 24px;
  }

  .regions-visual__content strong {
    font-size: 25px;
  }

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

  .content-split {
    gap: 38px;
  }

  .content-photo img {
    min-height: 360px;
  }

  .content-photo__note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .prose p,
  .detail-content p,
  .detail-content li {
    font-size: 15px;
  }

  .faq-item summary {
    min-height: 68px;
    font-size: 15px;
  }

  .faq-item__answer {
    padding-right: 0;
  }

  .cta-band__inner {
    min-height: 300px;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .cta-band__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 470px;
  }

  .page-hero__inner {
    padding-block: 47px 45px;
  }

  .page-hero h1 {
    font-size: 41px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .page-hero__aside {
    padding: 18px;
  }

  .detail-layout {
    gap: 45px;
  }

  .detail-content__lead {
    font-size: 18px !important;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list__item {
    min-height: 84px;
  }

  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 55px 42px;
  }

  .footer-main > div:nth-child(3) {
    display: block;
  }

  .footer-bottom {
    min-height: 80px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__figure {
    max-width: calc(100vw - 28px);
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 54px);
  }

  .lightbox__nav--next {
    right: calc(50% - 54px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
