/* ─── Hero Section ──────────────────────────────────────────────── */
.mk-hero {
  position: relative;
  min-block-size: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--green-900);
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ─── Desktop: hero + header together fill exactly one screen ─────── */
@media (min-width: 769px) {
  .mk-hero {
    min-block-size: calc(100vh - var(--header-height));
  }
}

.mk-hero__video {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  z-index: 0;
}

.mk-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgb(0 0 0 / 0.45);
}

.mk-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  padding-block: var(--space-16);
}

.mk-hero__title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  color: var(--paper-warm);
  line-height: 1.15;
  max-inline-size: 20ch;
}

.mk-hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: var(--fw-regular);
  color: rgb(253 246 234 / 0.85);
  line-height: 1.7;
  max-inline-size: 54ch;
}

.mk-hero__cta {
  margin-block-start: var(--space-2);
}

/* ─── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mk-hero {
    background-attachment: scroll;
  }

  .mk-hero__video {
    display: none;
  }
}
