/*
Theme Name: Checkpoint Arbeits- und Verkehrsmedizin
Theme URI: https://praxis-mostakiem.de/
Author: Codex
Description: Premium editorial WordPress theme for Checkpoint Arbeits- und Verkehrsmedizin GmbH.
Version: 0.7.7
Requires at least: 6.0
Tested up to: 7.0
Text Domain: mostakiem-gmbh
*/

:root {
  --mk-green: #0a2d6d;
  --mk-green-dark: #061b42;
  --mk-mint: #b9d7f1;
  --mk-mint-soft: #e8f2fa;
  --mk-paper: #f3f6f9;
  --mk-white: #ffffff;
  --mk-ink: #111411;
  --mk-muted: #616762;
  --mk-line: rgba(17, 20, 17, 0.16);
  --mk-max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

p {
  margin: 0 0 1em;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 100;
  width: min(1200px, calc(100% - 80px));
  transform: translateX(-50%);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 10px 14px 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 48px rgba(14, 28, 21, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
  backdrop-filter: blur(24px) saturate(175%);
}

.brand {
  display: block;
  width: 225px;
  height: 48px;
  overflow: hidden;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 225px;
  height: 48px;
  overflow: hidden;
}

.brand__logo img {
  width: 225px;
  max-width: none;
  height: auto;
  transform: translateY(-33px);
}

.site-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .menu a {
  display: inline-block;
  padding: 8px 0;
  color: var(--mk-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav .menu a::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 3px;
  background: var(--mk-green);
  content: "";
  transition: width 180ms ease;
}

.site-nav .menu a:hover::after,
.site-nav .current-menu-item a::after {
  width: 100%;
}

.header-cta,
.mk-button,
.mk-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-cta {
  position: relative;
  min-width: 180px;
  overflow: hidden;
  border-color: var(--mk-green);
  background-image: linear-gradient(var(--mk-green), var(--mk-green));
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  color: var(--mk-green);
  transition: color 220ms ease, background-size 320ms ease;
}

.header-cta::after,
.mk-button::after,
.mk-text-link::after {
  margin-left: 12px;
  content: "↗";
}

.mk-button:hover,
.mk-text-link:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  background-size: 100% 100%;
  color: var(--mk-white);
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--mk-ink);
  color: var(--mk-white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span {
  opacity: 0;
}

.site-header.is-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  overflow: clip;
}

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

.mk-section {
  padding: 120px 0;
}

.mk-section--compact {
  padding: 76px 0;
}

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

.mk-section--mint {
  background: var(--mk-mint);
}

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

.mk-eyebrow {
  margin: 0 0 24px;
  color: var(--mk-green-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mk-section--dark .mk-eyebrow,
.mk-hero .mk-eyebrow {
  color: var(--mk-mint);
}

.mk-hero .mk-eyebrow {
  margin-bottom: 10px;
  font-size: 18px;
}

.mk-h1,
.mk-h2,
.mk-h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.mk-h1 {
  max-width: 1020px;
  font-size: 92px;
}

.mk-h2 {
  max-width: 980px;
  font-size: 68px;
}

.mk-h3 {
  font-size: 38px;
  line-height: 1.04;
}

.mk-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}

.mk-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--mk-muted);
  font-size: 24px;
  line-height: 1.4;
}

.mk-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: 160px 0 120px;
  background-image: linear-gradient(90deg, rgba(6, 17, 38, 0.88) 0%, rgba(6, 17, 38, 0.54) 48%, rgba(6, 17, 38, 0.08) 100%), url("assets/hero-meeting-room.webp");
  background-position: center;
  background-size: cover;
  color: var(--mk-white);
}

.mk-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(7, 15, 12, 0.54), transparent);
  content: "";
}

.mk-hero__content {
  position: relative;
  z-index: 1;
}

.mk-hero__headline {
  max-width: 1100px;
  margin: 0;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.95;
}

.mk-hero__headline span {
  display: block;
}

.mk-hero__headline > br {
  display: none;
}

.mk-hero__headline .mk-outline {
  margin-top: 0;
  color: transparent;
  -webkit-text-stroke-color: var(--mk-white);
}

.mk-hero__lead {
  max-width: 660px;
  margin: 80px 0 0;
  font-size: 22px;
  line-height: 1.42;
}

.mk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.mk-button--light {
  border-color: var(--mk-white);
  color: var(--mk-white);
}

.mk-button--light:hover {
  background: var(--mk-white);
  color: var(--mk-ink);
}

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

.mk-button--green {
  border-color: var(--mk-green);
  background: var(--mk-green);
  color: var(--mk-white);
}

.mk-scroll-note {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.mk-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 720px;
  background: linear-gradient(145deg, var(--mk-mint-soft), var(--mk-green));
}

.mk-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 44px;
}

.mk-intro__copy .mk-h2 {
  font-size: 56px;
  text-wrap: balance;
}

.mk-intro__copy p:not(.mk-eyebrow) {
  max-width: 640px;
  color: #243a5e;
  font-size: 20px;
}

.mk-intro__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.mk-intro__media img {
  height: 100%;
  object-fit: cover;
}

.mk-split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.mk-split-feature__copy {
  max-width: 650px;
}

.mk-split-feature__copy .mk-h2 {
  margin-bottom: 32px;
}

.mk-split-feature__copy .mk-h2:has(+ .mk-service-subtitle) {
  margin-bottom: 10px;
}

.mk-service-subtitle {
  margin: 0 0 30px;
  color: var(--mk-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.mk-split-feature__copy .mk-lead {
  margin: 0 0 24px;
  font-size: 21px;
}

.mk-split-feature__copy .mk-button {
  margin-top: 28px;
}

.mk-split-feature__media {
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
}

.mk-split-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.mk-split-feature--company .mk-split-feature__media img {
  object-position: right center;
}

.mk-split-feature--taxi {
  margin-bottom: 0;
}

.mk-split-feature--taxi .mk-split-feature__media img {
  object-position: 45% center;
}

.mk-service-feature--separated {
  margin-top: 88px;
  border-top: 1px solid var(--mk-line);
  padding-top: 88px;
}

.mk-split-feature--rail .mk-split-feature__media img {
  object-position: 60% center;
}

.mk-split-feature--shipping .mk-split-feature__media img {
  object-position: 58% center;
}

.mk-split-feature > p:empty,
.mk-split-feature > br,
.mk-split-feature__copy > br,
.mk-compact-service-grid > br,
.mk-compact-service > br,
.mk-compact-service__meta > br,
.mk-cta-band__actions > br {
  display: none;
}

.mk-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.mk-tag {
  display: inline-flex;
  border: 1px solid rgba(10, 45, 109, 0.45);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--mk-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mk-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.mk-heading-row .mk-lead {
  margin: 0;
}

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

.mk-image-grid > br {
  display: none;
}

.mk-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mk-ink);
  color: var(--mk-white);
  text-decoration: none;
}

.mk-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.mk-image-card > br,
.mk-image-card__content > br {
  display: none;
}

.mk-image-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to top, rgba(7, 15, 12, 0.84), transparent);
  content: "";
}

.mk-image-card:hover img {
  transform: scale(1.035);
}

.mk-image-card__content {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 1;
}

.mk-image-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mk-image-card__title {
  display: block;
  max-width: 620px;
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
}

.mk-image-card__copy {
  display: block;
  max-width: 560px;
  margin: 18px 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mk-image-card:hover .mk-image-card__copy {
  opacity: 1;
  transform: none;
}

.mk-image-card--wide {
  grid-column: 1 / -1;
  min-height: 600px;
}

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

.mk-location-grid.mk-location-grid--single,
.mk-card-grid.mk-card-grid--single,
.mk-map-grid.mk-map-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.mk-location {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: 42px;
  background: var(--mk-mint);
}

.mk-location--image {
  position: relative;
  overflow: hidden;
  background: var(--mk-ink);
  color: var(--mk-white);
}

.mk-location--image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mk-location--image:hover img {
  transform: scale(1.055);
}

.mk-location--moers img {
  object-position: left center;
}

.mk-location--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 15, 12, 0.84), rgba(7, 15, 12, 0.08));
  content: "";
}

.mk-location__top,
.mk-location__bottom {
  position: relative;
  z-index: 1;
}

.mk-location__number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.mk-location__title {
  margin: 0 0 16px;
  font-size: 58px;
  font-weight: 800;
  line-height: 0.96;
}

.mk-location__bottom p {
  max-width: 520px;
}

.mk-process {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mk-process__item {
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mk-process__item > br,
.mk-process__item > p:empty {
  display: none;
}

.mk-process__number {
  color: var(--mk-mint);
  font-size: 42px;
  font-weight: 800;
}

.mk-process__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.mk-process__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.mk-feature {
  min-height: 310px;
  padding: 36px;
  background: var(--mk-white);
}

.mk-feature__number {
  display: block;
  margin-bottom: 68px;
  color: var(--mk-green);
  font-size: 13px;
  font-weight: 800;
}

.mk-feature h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.08;
}

.mk-page-hero {
  padding: 210px 0 120px;
  background: var(--mk-mint);
}

.mk-page-hero--dark {
  background: var(--mk-green-dark);
  color: var(--mk-white);
}

.mk-page-hero--dark .mk-eyebrow,
.mk-page-hero--dark .mk-lead {
  color: var(--mk-mint);
}

.mk-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: start;
}

.mk-copy-grid__body {
  max-width: 650px;
  font-size: 20px;
}

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

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

.mk-card {
  min-height: 280px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  padding: 34px;
  background: var(--mk-white);
}

.mk-card--mint {
  background: var(--mk-mint);
}

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

.mk-card__number {
  display: block;
  margin-bottom: 56px;
  color: var(--mk-green);
  font-size: 13px;
  font-weight: 800;
}

.mk-card__company-name {
  max-width: 520px;
  margin-bottom: 42px;
  font-size: 25px;
  line-height: 1.15;
}

.mk-card h2,
.mk-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.06;
}

.mk-service-note {
  max-width: 820px;
  margin: 0 0 38px;
}

.mk-service-card {
  min-height: 360px;
}

.mk-service-card > p:empty {
  display: none;
}

.mk-service-card .mk-card__number {
  margin-bottom: 16px;
}

.mk-service-core-grid {
  margin-top: 72px;
}

.mk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.mk-card__tags span {
  display: inline-flex;
  border: 1px solid rgba(10, 45, 109, 0.4);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--mk-green-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mk-card--dark .mk-card__tags span {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--mk-white);
}

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

.mk-map {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-white);
}

.mk-map__canvas {
  display: block;
  width: 100%;
  height: 420px;
  z-index: 0;
  background: var(--mk-mint-soft);
}

.mk-map__canvas .leaflet-popup-content-wrapper,
.mk-map__canvas .leaflet-popup-tip {
  color: var(--mk-ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.mk-map__canvas .leaflet-popup-content {
  margin: 14px 18px;
  line-height: 1.45;
}

.mk-map__body {
  padding: 28px;
}

.mk-map__body .mk-eyebrow {
  margin-bottom: 12px;
}

.mk-map__body h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.1;
}

.mk-principles .mk-card__number {
  margin-bottom: 44px;
  font-size: 46px;
  line-height: 1;
}

.mk-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.mk-story > p:empty,
.mk-story > br {
  display: none;
}

.mk-story__media {
  height: 620px;
  overflow: hidden;
  border-radius: 8px;
}

.mk-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.mk-story__copy {
  max-width: 680px;
  font-size: 20px;
}

.mk-story__copy .mk-h2 {
  margin-bottom: 34px;
}

.mk-story--reverse .mk-story__media {
  order: 2;
}

.mk-story--reverse .mk-story__copy {
  order: 1;
}

.mk-story--team .mk-story__media img {
  object-position: center;
}

.mk-story__copy .mk-button {
  margin-top: 18px;
}

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

.mk-compact-service {
  min-height: 245px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--mk-line);
}

.mk-compact-service__meta {
  display: flex;
  min-height: 27px;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.mk-compact-service__meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 45, 109, 0.32);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--mk-green-dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mk-compact-service__meta .mk-service-code {
  border-color: transparent;
  background: var(--mk-mint-soft);
}

.mk-compact-service h3 {
  margin: 0 0 14px;
  color: var(--mk-ink);
  font-size: 24px;
  line-height: 1.12;
}

.mk-compact-service p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 16px;
  line-height: 1.5;
}

.mk-details {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--mk-line);
}

.mk-details__item {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--mk-line);
}

.mk-details__item strong {
  color: var(--mk-green-dark);
}

.mk-details--legal .mk-details__item {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 48px;
}

.mk-details--legal .mk-details__item > br {
  display: none;
}

.mk-technical-credit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 64px;
  align-items: center;
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--mk-line);
}

.mk-technical-credit__copy {
  max-width: 760px;
}

.mk-technical-credit__copy h2 {
  margin: 0 0 18px;
  color: var(--mk-ink);
  font-size: 32px;
  line-height: 1.15;
}

.mk-technical-credit__copy p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--mk-muted);
  font-size: 17px;
  line-height: 1.6;
}

.mk-technical-credit__logo {
  display: block;
  padding: 22px 26px;
  border: 1px solid var(--mk-line);
  background: var(--mk-white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.mk-technical-credit__logo:hover,
.mk-technical-credit__logo:focus-visible {
  border-color: rgba(10, 45, 109, 0.5);
  box-shadow: 0 14px 34px rgba(6, 27, 66, 0.09);
}

.mk-technical-credit__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mk-note {
  border-left: 4px solid var(--mk-green);
  padding: 4px 0 4px 22px;
  color: var(--mk-muted);
}

.mk-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  border-radius: 8px;
  padding: 64px;
  background: var(--mk-green);
  color: var(--mk-white);
}

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

.mk-cta-band__copy {
  max-width: 860px;
}

.mk-cta-band__copy > p:last-child {
  max-width: 720px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.mk-cta-band__actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  background: var(--mk-ink);
  color: var(--mk-white);
}

.site-footer__top,
.site-footer__bottom {
  width: min(var(--mk-max), calc(100% - 64px));
  margin-inline: auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.4fr));
  gap: 60px;
  padding: 90px 0 70px;
}

.site-footer__headline {
  margin: 0 0 26px;
  font-size: 58px;
  font-weight: 800;
  line-height: 0.98;
}

.site-footer__heading {
  margin: 0 0 18px;
  color: var(--mk-mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 9px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .site-header__inner {
    grid-template-columns: 200px 1fr auto;
  }

  .brand,
  .brand__logo {
    width: 190px;
    height: 40px;
  }

  .brand__logo img {
    width: 190px;
    transform: translateY(-28px);
  }

  .site-nav .menu {
    gap: 16px;
  }

  .header-cta {
    min-width: auto;
  }

  .mk-h1,
  .mk-hero__headline {
    font-size: 72px;
  }

  .mk-h2 {
    font-size: 54px;
  }

  .mk-intro__copy .mk-h2 {
    font-size: 54px;
  }

  .mk-heading-row,
  .mk-intro,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .mk-intro__copy {
    padding: 100px 40px;
  }

  .mk-intro__media {
    min-height: 560px;
  }

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

  .mk-copy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mk-story {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mk-story__media {
    height: 560px;
  }

  .mk-split-feature {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mk-split-feature__copy {
    max-width: 760px;
  }

  .mk-split-feature__media,
  .mk-split-feature__media img {
    min-height: 500px;
  }

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

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 7px 8px 7px 18px;
  }

  .brand {
    width: 170px;
    height: 36px;
  }

  .brand__logo {
    width: 170px;
    height: 36px;
  }

  .brand__logo img {
    width: 170px;
    transform: translateY(-25px);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(14, 28, 21, 0.18);
  }

  .site-header.is-open .site-nav {
    display: block;
  }

  .site-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav .menu a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--mk-line);
    font-size: 18px;
  }

  .mk-wrap,
  .site-footer__top,
  .site-footer__bottom {
    width: calc(100% - 28px);
  }

  .mk-section {
    padding: 76px 0;
  }

  .mk-page-hero {
    padding: 140px 0 76px;
  }

  .mk-h1,
  .mk-hero__headline {
    font-size: 48px;
    line-height: 0.98;
  }

  .mk-page-hero .mk-h1 {
    font-size: 42px;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .mk-hero .mk-eyebrow {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .mk-h2 {
    font-size: 40px;
  }

  .mk-intro__copy .mk-h2 {
    font-size: 40px;
  }

  .mk-h3 {
    font-size: 30px;
  }

  .mk-lead,
  .mk-hero__lead {
    font-size: 19px;
  }

  .mk-hero {
    min-height: 800px;
    padding: 115px 0 36px;
    background-position: 57% center;
  }

  .mk-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .mk-scroll-note {
    display: none;
  }

  .mk-intro__copy {
    padding: 76px 20px;
  }

  .mk-intro__media {
    min-height: 360px;
  }

  .mk-heading-row {
    gap: 26px;
    margin-bottom: 34px;
  }

  .mk-image-grid,
  .mk-location-grid,
  .mk-map-grid,
  .mk-feature-grid,
  .mk-card-grid,
  .mk-card-grid--2 {
    grid-template-columns: 1fr;
  }

  .mk-image-card,
  .mk-image-card--wide,
  .mk-location {
    min-height: 440px;
  }

  .mk-image-card--wide {
    grid-column: auto;
  }

  .mk-image-card__content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .mk-image-card__title {
    font-size: 29px;
  }

  .mk-image-card__copy {
    display: none;
  }

  .mk-location {
    padding: 28px;
  }

  .mk-location__title {
    font-size: 44px;
  }

  .mk-map__canvas {
    height: 320px;
  }

  .mk-story__media {
    height: 420px;
  }

  .mk-story__copy {
    font-size: 18px;
  }

  .mk-split-feature {
    gap: 32px;
  }

  .mk-split-feature__media,
  .mk-split-feature__media img {
    min-height: 360px;
  }

  .mk-split-feature__copy .mk-lead {
    font-size: 19px;
  }

  .mk-service-feature--separated {
    margin-top: 56px;
    padding-top: 56px;
  }

  .mk-service-core-grid {
    margin-top: 48px;
  }

  .mk-compact-service-grid {
    grid-template-columns: 1fr;
  }

  .mk-compact-service {
    min-height: auto;
  }

  .mk-details__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mk-details--legal .mk-details__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mk-technical-credit {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
    padding-top: 40px;
  }

  .mk-technical-credit__logo {
    max-width: 340px;
  }

  .mk-process__item {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .mk-process__copy {
    grid-column: 2;
  }

  .mk-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 24px;
  }

  .mk-cta-band__actions {
    width: 100%;
    align-items: flex-start;
  }

  .mk-cta-band .mk-h2,
  .site-footer__headline {
    font-size: 40px;
  }

  .site-footer__top {
    gap: 36px;
    padding: 70px 0 50px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
