:root {
  color-scheme: light;
  --ink: #111418;
  --ink-2: #22272d;
  --paper: #f5f5f1;
  --paper-2: #e7e8e3;
  --line: #c8cbc7;
  --red: #d93628;
  --red-dark: #9e241c;
  --blue: #123d5c;
  --steel: #58636d;
  --yellow: #e3bd3c;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 22px 60px rgba(14, 16, 19, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  background: rgba(245, 245, 241, 0.93);
  border-bottom: 1px solid rgba(17, 20, 24, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 14px;
  color: var(--ink-2);
  font-weight: 700;
  border: 1px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.88), rgba(17, 20, 24, 0.24) 44%, rgba(17, 20, 24, 0.9)),
    linear-gradient(180deg, rgba(17, 20, 24, 0.62), rgba(17, 20, 24, 0.08) 52%, rgba(17, 20, 24, 0.72)),
    url("assets/hero-construction.png") center / cover no-repeat;
  background-image:
    linear-gradient(90deg, rgba(17, 20, 24, 0.88), rgba(17, 20, 24, 0.24) 44%, rgba(17, 20, 24, 0.9)),
    linear-gradient(180deg, rgba(17, 20, 24, 0.62), rgba(17, 20, 24, 0.08) 52%, rgba(17, 20, 24, 0.72)),
    image-set(
      url("assets/hero-construction.webp") type("image/webp"),
      url("assets/hero-construction.png") type("image/png")
    );
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px),
    linear-gradient(115deg, transparent 0 59%, rgba(217, 54, 40, 0.88) 59% 62%, transparent 62%),
    linear-gradient(153deg, transparent 0 75%, rgba(227, 189, 60, 0.76) 75% 76%, transparent 76%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: var(--red);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 42px;
  width: min(var(--max), calc(100% - 64px));
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  padding: 56px 0 58px;
}

.hero-title {
  align-self: start;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--white);
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 4.2rem;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero-title-left {
  padding-top: 6px;
}

.hero-title-right {
  justify-self: end;
  align-items: flex-end;
  color: var(--paper);
}

.hero-title-right span:first-child {
  color: var(--red);
}

.hero-copy {
  grid-column: 1 / span 2;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  align-items: end;
  gap: 28px;
  color: var(--white);
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-side {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.hero-contact {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: rgba(17, 20, 24, 0.76);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.hero-contact a:hover,
.hero-contact a:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 64px));
  margin: -38px auto 0;
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 108px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.signal-strip span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 8px;
  background: var(--red);
}

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

h2 {
  margin-bottom: 0;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 3.1rem;
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.intro-layout,
.section-head,
.safety-layout,
.brief-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  gap: 46px;
  align-items: start;
}

.hero-grid > *,
.hero-copy > *,
.intro-layout > *,
.section-head > *,
.safety-layout > *,
.brief-panel > *,
.terms-layout > *,
.calc-board > * {
  min-width: 0;
}

.intro p,
.section-head p,
.safety p,
.brief-panel p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 7px solid var(--red);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--red-dark);
  outline: none;
}

.contact-link span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 1.35rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.services {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, var(--ink) 0 18px, transparent 18px),
    var(--paper-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.service-card {
  min-height: 238px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 8px solid var(--blue);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 22px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--steel);
  font-weight: 700;
}

.service-card .legal-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.35;
}

.service-card-accent {
  background: var(--ink);
  border-color: var(--ink);
  border-top-color: var(--red);
  color: var(--white);
}

.service-card-accent span {
  background: var(--red);
}

.service-card-accent p {
  color: var(--paper-2);
}

.process {
  padding-top: 0;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}

.process-line article {
  min-height: 250px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-line article:last-child {
  border-right: 0;
  background: var(--red);
  color: var(--white);
}

.process-line strong {
  display: block;
  color: var(--red);
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.process-line article:last-child strong {
  color: var(--yellow);
}

.process-line h3 {
  margin-top: 30px;
}

.process-line p {
  margin: 0;
  color: var(--steel);
  font-weight: 700;
}

.process-line article:last-child p {
  color: var(--white);
}

.safety {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.safety p {
  color: var(--paper-2);
}

.checks {
  display: grid;
  gap: 12px;
}

.checks div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--yellow);
  font-weight: 800;
}

.checks span {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: rotate(45deg);
}

.trust {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.trust-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 8px solid var(--blue);
}

.trust-grid span {
  display: block;
  min-height: 48px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid p {
  margin: 18px 0 0;
  color: var(--steel);
  font-weight: 700;
}

.trust-note {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  border-top-color: var(--red) !important;
}

.trust-note span,
.trust-note p {
  color: var(--white);
}

.security-partner {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, var(--red) 0 18px, transparent 18px),
    var(--ink);
  color: var(--white);
}

.security-partner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.58fr);
  gap: 32px;
  align-items: stretch;
}

.security-partner-layout > *,
.security-control-grid > * {
  min-width: 0;
}

.security-partner-main p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--paper-2);
  font-size: 1.08rem;
  font-weight: 800;
}

.security-partner-panel {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border-top: 8px solid var(--yellow);
}

.security-partner-panel > span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.security-partner-panel h3 {
  margin-top: 32px;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.security-partner-panel p {
  margin: 0;
  color: var(--steel);
  font-weight: 700;
}

.security-partner-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  margin-top: auto;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.security-partner-panel a:hover,
.security-partner-panel a:focus-visible {
  background: var(--red);
  outline: none;
}

.security-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.security-control-grid article {
  min-height: 230px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 7px solid var(--red);
}

.security-control-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 22px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.security-control-grid p {
  margin: 0;
  color: var(--paper-2);
  font-weight: 700;
}

.site-photos {
  background: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.photo-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.photo-item-wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 574px;
}

.photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.photo-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: rgba(20, 23, 25, 0.84);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}

.team-line div {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.team-line div:last-child {
  border-right: 0;
}

.team-line strong {
  display: block;
  color: var(--red);
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.team-line span {
  display: block;
  margin-top: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.terms {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background: var(--paper-2);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(320px, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.price-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 28px;
  background: var(--red);
  color: var(--white);
}

.price-label {
  font-weight: 900;
  text-transform: uppercase;
}

.price-panel strong {
  display: block;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 5rem;
  line-height: 0.92;
}

.price-panel p {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 900;
}

.terms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.terms-list div {
  min-height: 188px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.terms-list strong,
.terms-list span {
  display: block;
}

.terms-list strong {
  margin-bottom: 12px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.terms-list span {
  color: var(--steel);
  font-weight: 700;
}

.terms-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  background: var(--white);
  border-left: 7px solid var(--red);
  color: var(--ink-2);
  font-weight: 800;
}

.rates-board {
  margin-top: 18px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.rates-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.rates-head .price-label {
  color: var(--yellow);
}

.rates-head h3 {
  max-width: 580px;
  margin-bottom: 0;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.rates-head p {
  margin: 0;
  color: var(--paper-2);
  font-weight: 800;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rate-item {
  min-height: 186px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  border-top: 7px solid var(--red);
}

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

.rate-item span {
  min-height: 38px;
  color: var(--steel);
  font-weight: 900;
  text-transform: uppercase;
}

.rate-item strong {
  margin-top: 18px;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.rate-item p {
  margin: 14px 0 0;
  color: var(--steel);
  font-weight: 700;
}

.rate-item-dark {
  background: var(--red);
  color: var(--white);
}

.rate-item-dark span,
.rate-item-dark p {
  color: var(--white);
}

.rates-note {
  margin: 18px 0 0;
  color: var(--paper-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.calculator {
  padding-bottom: 0;
}

.calc-board {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr) minmax(240px, 0.7fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.range-field {
  display: grid;
  gap: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.range-field input {
  accent-color: var(--red);
  width: 100%;
}

.calc-result {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
}

.calc-result span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.calc-result strong {
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.brief {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 18px), var(--red) calc(100% - 18px)),
    var(--paper);
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: 38px;
  margin-bottom: 38px;
}

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

.faq-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 18px;
  background: var(--white);
  border-left: 7px solid var(--red);
  box-shadow: inset 0 0 0 1px var(--line);
}

.faq-list h3,
.faq-list p {
  margin: 0;
}

.faq-list p {
  color: var(--ink-2);
  font-weight: 700;
}

.brief-panel {
  padding: 34px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.brief-form {
  display: grid;
  gap: 14px;
}

.brief-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  resize: vertical;
}

.brief-form .consent-field {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 0 0;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.brief-form .consent-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.brief-form .consent-field a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-color: var(--red);
  outline: none;
}

.brief-form input:user-invalid,
.brief-form textarea:user-invalid {
  border-color: var(--red);
}

.brief-output {
  display: none;
  padding: 14px 16px;
  background: var(--paper-2);
  border-left: 5px solid var(--red);
  color: var(--ink-2);
  font-weight: 800;
  white-space: pre-wrap;
}

.brief-output.is-visible {
  display: block;
}

.brief-output.is-error {
  background: #f7dfdc;
  border-left-color: var(--red-dark);
}

.footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 32px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  color: var(--paper-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-main {
  width: min(100% - 48px, 960px);
  margin: 0 auto;
  padding: 74px 0 86px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding: 44px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--paper-2);
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 26px;
  padding: 42px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.legal-content section {
  display: grid;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 6px;
}

.instruction-page {
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 18px), var(--red) calc(100% - 18px)),
    var(--paper);
}

.instruction-main {
  max-width: 1040px;
}

.instruction-hero {
  position: relative;
  overflow: hidden;
}

.instruction-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 12px;
  background: var(--red);
}

.instruction-meta,
.instruction-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.instruction-meta span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.instruction-jump {
  padding-top: 8px;
}

.instruction-jump a {
  display: inline-flex;
  padding: 9px 11px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.instruction-jump a:hover,
.instruction-jump a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

.instruction-content code {
  padding: 2px 5px;
  color: var(--ink);
  font-family:
    "Courier New",
    monospace;
  font-weight: 900;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.instruction-content strong {
  font-weight: 900;
}

.instruction-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.instruction-steps li::marker {
  font-weight: 900;
  color: var(--red);
}

.instruction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
}

.instruction-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.instruction-list dt {
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.instruction-list dd {
  margin: 0;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

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

.instruction-alert {
  padding: 14px 16px;
  font-weight: 900;
  background: rgba(217, 54, 40, 0.09);
  border-left: 6px solid var(--red);
}

.not-found-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 18px), var(--red) calc(100% - 18px)),
    var(--paper);
}

.not-found-main {
  display: grid;
  gap: 20px;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.not-found-hero {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 480px;
  padding: 48px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.not-found-hero::before {
  content: "404";
  position: absolute;
  right: -18px;
  bottom: -56px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.08);
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: clamp(10rem, 28vw, 24rem);
  line-height: 0.8;
}

.not-found-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.not-found-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--paper-2);
  font-size: 1.14rem;
  font-weight: 800;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: end;
}

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

.not-found-links a {
  display: grid;
  gap: 18px;
  min-height: 156px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
}

.not-found-links a:hover,
.not-found-links a:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.not-found-links span {
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-links strong {
  align-self: end;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.92), rgba(17, 20, 24, 0.5) 58%, rgba(17, 20, 24, 0.94)),
    image-set(
      url("assets/hero-construction.webp") type("image/webp"),
      url("assets/hero-construction.png") type("image/png")
    ) center / cover no-repeat;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 78px),
    linear-gradient(115deg, transparent 0 68%, rgba(217, 54, 40, 0.86) 68% 71%, transparent 71%);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: end;
  width: min(var(--max), calc(100% - 64px));
  min-height: 560px;
  margin: 0 auto;
  padding: 72px 0;
}

.service-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--paper-2);
  font-size: 1.16rem;
  font-weight: 800;
}

.service-hero-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border-top: 9px solid var(--red);
}

.service-hero-panel span {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-hero-panel strong {
  font-size: 1.25rem;
  line-height: 1.14;
  text-transform: uppercase;
}

.service-hero-panel p {
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
}

.service-columns {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.84fr);
  gap: 16px;
  margin-top: 36px;
}

.service-columns article {
  padding: 26px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.service-columns h3 {
  margin-bottom: 20px;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.service-columns ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-columns li {
  position: relative;
  min-height: 44px;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 800;
}

.service-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--red);
  transform: rotate(45deg);
}

.service-columns-dark {
  background: var(--ink) !important;
  color: var(--white);
  border-color: var(--ink) !important;
}

.service-columns-dark li {
  color: var(--paper-2);
}

.service-columns-dark li::before {
  background: var(--yellow);
}

.service-process {
  padding-top: 0;
}

.service-photos {
  padding-top: 0;
}

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

.service-photo-grid .photo-item {
  min-height: 340px;
}

.service-cross {
  width: 100%;
  max-width: none;
  padding: 92px max(32px, calc((100% - var(--max)) / 2));
  background: var(--paper-2);
}

.service-link-grid,
.service-seo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-link-grid a,
.service-seo-links a {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--blue);
}

.service-link-grid a:hover,
.service-link-grid a:focus-visible,
.service-seo-links a:hover,
.service-seo-links a:focus-visible {
  border-top-color: var(--red);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.service-link-grid span,
.service-seo-links span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-link-grid strong,
.service-seo-links strong {
  font-size: 1.05rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.service-seo-links {
  margin-top: 18px;
}

.service-seo-links-wrap {
  margin-top: 18px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.service-seo-links-wrap h3 {
  margin-bottom: 0;
  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.service-seo-links-wrap p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--paper-2);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero-title {
    font-size: 3.45rem;
  }

  .hero-copy,
  .service-hero-inner,
  .intro-layout,
  .section-head,
  .safety-layout,
  .security-partner-layout,
  .brief-panel,
  .faq-block,
  .terms-layout,
  .rates-head,
  .calc-board,
  .service-columns {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-side {
    justify-items: start;
  }

  .hero-contact {
    justify-content: flex-start;
  }

  .service-grid,
  .service-link-grid,
  .service-seo-links,
  .photo-grid,
  .team-line,
  .process-line,
  .trust-grid,
  .security-control-grid,
  .faq-list,
  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-line div:nth-child(2) {
    border-right: 0;
  }

  .photo-item-wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
    min-height: 62px;
    padding: 0 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav {
    gap: 0;
  }

  .nav a {
    padding: 9px 7px;
    font-size: 0.82rem;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 32px, var(--max));
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0 46px;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-title-right {
    justify-self: start;
    align-items: flex-start;
  }

  .hero-copy {
    grid-column: auto;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .button,
  .hero-contact a {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max));
    margin-top: 0;
  }

  .signal-strip div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .services,
  .safety,
  .trust,
  .security-partner,
  .terms,
  .brief,
  .service-cross {
    width: 100%;
    padding: 64px 16px;
  }

  .service-hero-inner {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    padding: 54px 0;
  }

  .service-hero h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .service-grid,
  .service-link-grid,
  .service-seo-links,
  .photo-grid,
  .team-line,
  .process-line,
  .trust-grid,
  .security-control-grid,
  .terms-list,
  .faq-list,
  .rates-grid {
    grid-template-columns: 1fr;
  }

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

  .process-line article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-line h3 {
    margin-top: 18px;
  }

  .trust-grid article {
    min-height: 0;
  }

  .security-partner-panel,
  .security-control-grid article {
    min-height: 0;
  }

  .security-partner-panel a {
    margin-top: 22px;
  }

  .photo-item,
  .photo-item-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .team-line div,
  .team-line div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-panel {
    min-height: 300px;
  }

  .price-panel strong {
    font-size: 4rem;
  }

  .rates-board {
    padding: 18px;
  }

  .rates-head h3 {
    font-size: 1.85rem;
  }

  .rate-item {
    min-height: 0;
  }

  .calc-result strong {
    font-size: 2rem;
  }

  .brief-panel {
    padding: 22px;
  }

  .legal-main {
    width: min(100% - 32px, 960px);
    padding: 36px 0 54px;
  }

  .legal-hero,
  .legal-content {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 2.3rem;
  }

  .instruction-meta,
  .instruction-jump {
    gap: 8px;
  }

  .instruction-meta span,
  .instruction-jump a {
    width: 100%;
  }

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

  .instruction-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .not-found-main {
    width: min(100% - 32px, var(--max));
    padding: 36px 0 54px;
  }

  .not-found-hero {
    min-height: 420px;
    padding: 24px;
  }

  .not-found-actions,
  .not-found-actions .button {
    width: 100%;
  }

  .not-found-links {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

@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;
  }
}
