.mkl-home {
  --home-navy: var(--mkl-color-primary);
  --home-muted: #64748b;
  --home-light: #f8f9fa;
  --home-radius: 4px;
  --home-section-y: 96px;
  --home-card-border: rgba(15, 39, 66, 0.08);
  --home-media-shadow: 0 24px 55px rgba(15, 39, 66, 0.18);
  color: var(--home-navy);
  background: #fff;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
  background: var(--mkl-color-surface-muted);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.home-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0.72) 52%, rgba(255, 255, 255, 0) 100%);
}

.home-hero__inner,
.home-values__inner,
.home-about__inner,
.home-services__inner {
  width: 100%;
  max-width: var(--mkl-container);
  margin: 0 auto;
  padding-right: var(--mkl-gutter);
  padding-left: var(--mkl-gutter);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 152px;
  padding-bottom: 76px;
}

.home-hero__content {
  max-width: 650px;
}

.home-eyebrow {
  margin: 0 0 16px;
  color: var(--home-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--home-navy);
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.home-hero__intro {
  max-width: 540px;
  margin: 0 0 38px;
  color: rgba(15, 39, 66, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: var(--home-radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-button:focus-visible,
.home-service-card a:focus-visible {
  outline: 3px solid var(--mkl-color-secondary);
  outline-offset: 3px;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button--primary {
  color: #fff;
  background: var(--home-navy);
}

.home-button--primary:hover {
  background: #1e3a5f;
}

.home-button--secondary {
  color: var(--home-navy);
  border-color: rgba(15, 39, 66, 0.2);
  background: #fff;
}

.home-button--secondary:hover,
.home-button--outline:hover {
  color: #fff;
  border-color: var(--home-navy);
  background: var(--home-navy);
}

.home-button--outline {
  color: var(--home-navy);
  border-color: var(--home-navy);
  background: transparent;
}

.home-hero__partner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.home-tuev-placeholder {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(15, 39, 66, 0.32);
  border-radius: 2px;
  background: #fff;
  color: rgba(15, 39, 66, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(15, 39, 66, 0.06);
}

.home-hero__partner p {
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 800;
}

.home-hero__partner span {
  color: var(--home-muted);
  font-size: 12px;
}

.home-values {
  background: var(--home-navy);
  color: #fff;
}

.home-values__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.home-value {
  display: flex;
  min-width: 0;
  gap: 16px;
}

.home-value__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.home-value svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.home-value h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-value p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.home-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
  padding-top: var(--home-section-y);
  padding-bottom: calc(var(--home-section-y) + 8px);
}

.home-about__content h2,
.home-services h2 {
  margin: 0;
  color: var(--home-navy);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.home-about__content h2 {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(38px, 4vw, 54px);
}

.home-about__copy {
  max-width: 570px;
  margin-bottom: 44px;
  color: var(--home-muted);
}

.home-about__copy p {
  margin: 0;
  line-height: 1.78;
}

.home-about__copy p + p {
  margin-top: 20px;
}

.home-about__figure {
  position: relative;
  margin: 0;
  padding-bottom: 42px;
}

.home-about__image-wrap {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--home-media-shadow);
}

.home-about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-quote {
  position: absolute;
  right: 46px;
  bottom: 0;
  left: -34px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px;
  border-left: 4px solid var(--home-navy);
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 39, 66, 0.14);
}

.home-quote__mark {
  color: #e5e7eb;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
}

.home-quote p {
  margin: 0;
  color: var(--home-navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.38;
}

.home-services {
  background: var(--home-light);
}

.home-services__inner {
  padding-top: var(--home-section-y);
  padding-bottom: calc(var(--home-section-y) + 8px);
}

.home-services h2 {
  margin-bottom: 58px;
  font-size: clamp(34px, 3vw, 44px);
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.home-service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  border: 1px solid var(--home-card-border);
  border-radius: 2px;
  background: #fff;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.home-service-card:hover {
  border-color: rgba(15, 39, 66, 0.14);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.home-service-card__icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--home-navy);
}

.home-service-card__icon::before,
.home-service-card__icon::after {
  position: absolute;
  content: "";
}

.home-service-card__icon--vehicle::before { inset: 17px 4px 16px; border: 1.5px solid currentColor; }
.home-service-card__icon--vehicle::after { right: 8px; bottom: 9px; left: 8px; height: 8px; border-right: 1.5px solid currentColor; border-left: 1.5px solid currentColor; box-shadow: 16px 0 0 -6px currentColor, -16px 0 0 -6px currentColor; }
.home-service-card__icon--value::before { inset: 7px; border: 1.5px solid currentColor; border-radius: 50%; }
.home-service-card__icon--value::after { top: 13px; left: 24px; width: 1.5px; height: 26px; background: currentColor; box-shadow: -6px 6px 0 -1px currentColor, 6px 18px 0 -1px currentColor; }
.home-service-card__icon--check::before { inset: 8px; border: 1.5px solid currentColor; border-radius: 50%; }
.home-service-card__icon--check::after { top: 24px; left: 17px; width: 17px; height: 9px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; transform: rotate(-45deg); }
.home-service-card__icon--search::before { top: 9px; left: 8px; width: 25px; height: 25px; border: 1.5px solid currentColor; border-radius: 50%; }
.home-service-card__icon--search::after { right: 9px; bottom: 10px; width: 16px; height: 1.5px; background: currentColor; transform: rotate(45deg); }
.home-service-card__icon--message::before { inset: 10px 6px 13px; border: 1.5px solid currentColor; }
.home-service-card__icon--message::after { right: 15px; bottom: 8px; width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }

.home-service-card h3 {
  margin: 0 0 16px;
  color: var(--home-navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-service-card p {
  margin: 0 0 28px;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.7;
}

.home-service-card a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 50%;
  color: var(--home-navy);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.home-service-card a:hover {
  background: var(--mkl-color-surface-muted);
}

@media (prefers-reduced-motion: reduce) {
  .home-button,
  .home-service-card {
    transition: none;
  }

  .home-button:hover,
  .home-service-card:hover {
    transform: none;
  }
}

@media (max-width: 1279px) {
  .home-hero { min-height: 620px; }
  .home-values__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-about__inner { gap: 52px; }
  .home-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .home-hero { min-height: 580px; }
  .home-hero__inner { padding-top: 138px; padding-bottom: 68px; }
  .home-hero__wash { background: rgba(255, 255, 255, 0.76); }
  .home-hero__image { object-position: 68% center; }
  .home-about__inner { grid-template-columns: 1fr; padding-top: 84px; padding-bottom: 92px; }
  .home-about__figure { order: -1; }
  .home-quote { right: 28px; left: 28px; }
}

@media (max-width: 767px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    background: #fff;
  }

  .home-hero__media {
    position: relative;
    order: 2;
    height: 360px;
  }

  .home-hero__image { object-position: center; }
  .home-hero__wash { background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.12) 55%); }
  .home-hero__inner { padding-top: 126px; padding-bottom: 40px; }
  .home-hero h1 { font-size: 42px; }
  .home-hero__intro { font-size: 16px; }
  .home-actions { flex-direction: column; margin-bottom: 36px; }
  .home-button { width: 100%; }
  .home-values__inner { grid-template-columns: 1fr; gap: 26px; padding-top: 40px; padding-bottom: 40px; }
  .home-about__inner,
  .home-services__inner { padding-top: 64px; padding-bottom: 68px; }
  .home-about__figure { padding-bottom: 0; }
  .home-about__image-wrap { box-shadow: 0 16px 34px rgba(15, 39, 66, 0.14); }
  .home-quote { position: static; margin-top: 18px; padding: 24px; }
  .home-services__grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: auto; }
}

@media (max-width: 479px) {
  .home-hero__inner { padding-top: 112px; }
  .home-hero h1 { font-size: 34px; }
  .home-hero__media { height: 300px; }
  .home-hero__partner { align-items: flex-start; }
  .home-about__content h2 { font-size: 32px; }
  .home-quote { gap: 12px; }
  .home-quote__mark { font-size: 48px; }
  .home-quote p { font-size: 17px; }
}