/* ============================================================
   MONUMENT — Forside (monument-home.css)
   ============================================================ */

/* ── Fælles hjælpe-klasser ──────────────────────────────────── */
.mm-eyebrow {
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mm-rust);
  margin: 0 0 16px;
}

.mm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid transparent;
  min-height: 48px;
  cursor: pointer;
  transition: background-color var(--mm-t-fast), color var(--mm-t-fast), border-color var(--mm-t-fast);
}
.mm-btn--lg { padding: 16px 28px; font-size: 12px; }
.mm-btn--primary  { background: var(--mm-rust); color: var(--mm-cream); }
.mm-btn--primary:hover { background: var(--mm-rust-hover); color: var(--mm-cream); }
.mm-btn--ghost    { background: transparent; color: var(--mm-ink); border-color: var(--mm-ink); }
.mm-btn--ghost:hover  { background: var(--mm-ink); color: var(--mm-cream); }
.mm-btn--ghost-dark   { background: transparent; color: var(--mm-cream); border-color: var(--mm-muted-dark); }
.mm-btn--ghost-dark:hover { background: var(--mm-cream); color: var(--mm-ink); }

.mm-stars { display: flex; gap: 3px; }
.mm-stars svg { fill: var(--mm-rust); display: block; }

/* ══════════════════════════════════════════════════════════════
   HERO A — full-bleed, mørk, stor serif
   ══════════════════════════════════════════════════════════════ */
.mm-hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: var(--mm-navy);
}

/* Baggrundsbillede (sættes via Shopify theme editor) */
.mm-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Gradient-overlay: mørk venstre → transparent højre */
.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(27,40,56,0.82) 0%,
    rgba(27,40,56,0.38) 58%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Indholdskolonne */
.mm-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px var(--mm-gutter);
  color: var(--mm-cream);
  max-width: 780px;
}

/* Eyebrow: rust linje + tekst */
.mm-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mm-rust);
  margin-bottom: 28px;
}
.mm-hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--mm-rust);
  flex-shrink: 0;
}

/* Stor Fraunces headline */
.mm-hero__heading {
  font-family: var(--mm-serif);
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--mm-cream);
  margin: 0 0 28px;
}
.mm-hero__heading em { font-style: italic; color: var(--mm-rust); }

/* Brødtekst */
.mm-hero__body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(239, 234, 225, 0.85);
  max-width: 540px;
  margin: 0 0 40px;
}

/* CTA-knapper */
.mm-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust strip */
.mm-hero__trust {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 234, 225, 0.6);
}

/* Produktbillede (højre side, lodret centreret) */
.mm-hero__poster {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

/* ── Hero right-side image ──────────────────────────────────── */
.mm-hero__poster-img {
  display: block;
  width: 380px;
  max-width: 38vw;
  height: auto;
  box-shadow: 0 48px 96px rgba(0,0,0,0.5), 0 16px 40px rgba(0,0,0,0.22);
}

/* ── Poster card ────────────────────────────────────────────── */
.mm-poster-card {
  background: var(--mm-paper);
  width: 252px;        /* design: scale 1.2 × 210px */
  padding: 26px 19px;
  border: 11px solid #A88050;
  box-shadow: 0 28px 56px rgba(0,0,0,0.35), 0 10px 20px rgba(0,0,0,0.14);
  color: var(--mm-ink);
}
.mm-poster-card__country {
  font-family: var(--mm-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--mm-rust);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
.mm-poster-card__title {
  font-family: var(--mm-serif);
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 10px;
}
.mm-poster-card__route { display: block; width: 100%; margin: 6px 0; }
.mm-poster-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  font-family: var(--mm-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-muted);
  margin-bottom: 8px;
}
.mm-poster-card__stat-val {
  display: block;
  font-family: var(--mm-serif);
  font-size: 13px;
  color: var(--mm-ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.mm-poster-card__name {
  text-align: center;
  font-family: var(--mm-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid var(--mm-line);
  padding-top: 8px;
  margin-top: 2px;
}
.mm-poster-card__date {
  text-align: center;
  font-family: var(--mm-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--mm-muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════════
   SUCH IT WORKS
   ══════════════════════════════════════════════════════════════ */
.mm-how {
  background: var(--mm-cream);
  padding: var(--mm-section-pad) var(--mm-gutter);
  border-top: 1px solid var(--mm-line);
}
.mm-how__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.mm-how__headline {
  font-family: var(--mm-serif);
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--mm-ink);
  margin: 16px 0 0;
}
.mm-how__headline em { font-style: italic; color: var(--mm-rust); }
.mm-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mm-how__step { border-top: 1px solid var(--mm-rust); padding-top: 20px; }
.mm-how__step-num {
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mm-rust);
  margin-bottom: 14px;
}
.mm-how__step-title {
  font-family: var(--mm-serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--mm-ink);
  margin-bottom: 10px;
}
.mm-how__step-body { font-size: 14px; line-height: 1.6; color: var(--mm-muted); }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.mm-stats {
  background: var(--mm-cream-2);
  padding: 44px var(--mm-gutter);
  border-top: 1px solid var(--mm-line);
  border-bottom: 1px solid var(--mm-line);
}
.mm-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mm-stats__item { display: flex; flex-direction: column; gap: 6px; padding: 0 32px; }
.mm-stats__item:first-child { padding-left: 0; }
.mm-stats__item + .mm-stats__item { border-left: 1px solid var(--mm-line); }
.mm-stats__number {
  font-family: var(--mm-serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--mm-ink);
}
.mm-stats__label { font-size: 12px; color: var(--mm-muted); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   IN-USE GALLERY
   ══════════════════════════════════════════════════════════════ */
.mm-gallery {
  padding: var(--mm-section-pad) var(--mm-gutter);
  background: var(--mm-cream);
}
.mm-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.mm-gallery__heading {
  font-family: var(--mm-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--mm-ink);
  margin: 14px 0 0;
}
.mm-gallery__link {
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-rust);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-bottom: 4px;
}
.mm-gallery__link:hover { color: var(--mm-rust-hover); }
.mm-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  gap: 14px;
  height: 520px;
}
.mm-gallery__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

/* placeholder blocks */
.mm-ph { position: relative; overflow: hidden; }
.mm-ph--a { background: linear-gradient(145deg, #8B7055 0%, #5C4030 100%); }
.mm-ph--b { background: linear-gradient(145deg, #B8A888 0%, #8B7860 100%); }
.mm-ph--c { background: linear-gradient(145deg, #3E5A46 0%, #1B2838 100%); }
.mm-ph__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: var(--mm-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,234,225,0.75);
}

/* ══════════════════════════════════════════════════════════════
   PULL QUOTE
   ══════════════════════════════════════════════════════════════ */
.mm-quote {
  background: var(--mm-navy);
  color: var(--mm-cream);
  padding: 130px var(--mm-gutter);
  position: relative;
  overflow: hidden;
}
.mm-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(251,82,0,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.mm-quote__source {
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mm-rust);
  margin-bottom: 32px;
  position: relative;
}
.mm-quote__text {
  font-family: var(--mm-serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-style: normal;
  max-width: 900px;
  margin: 0;
  color: var(--mm-cream);
  position: relative;
}
.mm-quote__text { quotes: none; }
.mm-quote__text::before, .mm-quote__text::after { content: none; }
.mm-quote__text em { font-style: italic; color: var(--mm-rust); }
.mm-quote__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  font-family: var(--mm-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-muted-dark);
  text-decoration: none;
  position: relative;
  transition: color var(--mm-t-fast);
}
.mm-quote__link::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--mm-rust);
  flex-shrink: 0;
}
.mm-quote__link:hover { color: var(--mm-cream); }

/* ══════════════════════════════════════════════════════════════
   OFFICIAL ROUTES TEASER
   ══════════════════════════════════════════════════════════════ */
.mm-routes {
  padding: var(--mm-section-pad) var(--mm-gutter);
  background: var(--mm-cream-2);
}
.mm-routes__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.mm-routes__headline { flex: 1; max-width: 620px; }
.mm-routes__heading {
  font-family: var(--mm-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--mm-ink);
  margin: 14px 0 0;
}
.mm-routes__subtext {
  font-size: 15px;
  color: var(--mm-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 520px;
}
.mm-routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mm-route-card {
  background: var(--mm-cream);
  padding: 18px;
  text-decoration: none;
  display: block;
  transition: transform var(--mm-t-fast);
}
.mm-route-card:hover { transform: translateY(-4px); }

.mm-route-card__poster {
  background: linear-gradient(160deg, #C4B89C 0%, #A8987C 100%);
  height: 260px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-route-card__poster-inner {
  background: var(--mm-paper);
  width: 130px;
  padding: 14px 11px;
  border: 7px solid #A88050;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  transform: rotate(-2deg);
}
.mm-route-card__poster-country {
  font-family: var(--mm-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: var(--mm-rust);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mm-route-card__poster-title {
  font-family: var(--mm-serif);
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  color: var(--mm-ink);
  margin-bottom: 5px;
}
.mm-route-card__poster-svg { display: block; width: 100%; margin: 5px 0; }
.mm-route-card__poster-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: var(--mm-mono);
  font-size: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-muted);
  text-align: center;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--mm-line);
}
.mm-route-card__poster-stat-val {
  display: block;
  font-family: var(--mm-serif);
  font-size: 10px;
  color: var(--mm-ink);
  margin-top: 1px;
}

.mm-route-card__meta { padding-top: 14px; border-top: 1px solid var(--mm-line); }
.mm-route-card__tag {
  font-family: var(--mm-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mm-rust);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mm-route-card__name {
  font-family: var(--mm-serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--mm-ink);
  margin-bottom: 4px;
}
.mm-route-card__desc { font-size: 12px; color: var(--mm-muted); margin-bottom: 12px; }
.mm-route-card__footer { display: flex; justify-content: space-between; align-items: center; }
.mm-route-card__price { font-size: 14px; color: var(--mm-ink); font-weight: 500; }
.mm-route-card__cta {
  font-family: var(--mm-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mm-rust);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.mm-testimonials {
  background: var(--mm-cream);
  padding: var(--mm-section-pad) var(--mm-gutter);
}
.mm-testimonials__header { text-align: center; margin-bottom: 56px; }
.mm-testimonials__heading {
  font-family: var(--mm-serif);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--mm-ink);
  margin: 14px 0 0;
}
.mm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mm-testimonial {
  background: var(--mm-cream-2);
  padding: 32px;
  border: 1px solid var(--mm-line);
}
.mm-testimonial__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.mm-testimonial__stars svg { fill: var(--mm-rust); display: block; }
.mm-testimonial__quote {
  font-family: var(--mm-serif);
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--mm-ink);
  margin: 0 0 22px;
}
.mm-testimonial__author { font-size: 13px; color: var(--mm-ink); font-weight: 500; }
.mm-testimonial__route {
  font-family: var(--mm-mono);
  font-size: 10px;
  color: var(--mm-rust);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ TEASER
   ══════════════════════════════════════════════════════════════ */
.mm-faq {
  padding: var(--mm-section-pad) var(--mm-gutter);
  background: var(--mm-cream-2);
}
.mm-faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.mm-faq__heading {
  font-family: var(--mm-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--mm-ink);
  margin: 14px 0 28px;
}
.mm-faq__items { border-bottom: 1px solid var(--mm-line); }
.mm-faq__item { border-top: 1px solid var(--mm-line); }
.mm-faq__item summary {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.mm-faq__item summary::-webkit-details-marker { display: none; }
.mm-faq__num {
  font-family: var(--mm-mono);
  font-size: 10px;
  color: var(--mm-rust);
  letter-spacing: 0.14em;
  padding-top: 3px;
}
.mm-faq__question {
  font-family: var(--mm-serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--mm-ink);
}
.mm-faq__icon {
  padding-top: 3px;
  color: var(--mm-ink);
  flex-shrink: 0;
  transition: transform var(--mm-t-fast);
}
.mm-faq__item[open] .mm-faq__icon { transform: rotate(45deg); }
.mm-faq__answer {
  padding: 0 0 24px 56px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mm-muted);
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.mm-cta {
  padding: 120px var(--mm-gutter);
  background: var(--mm-navy);
  color: var(--mm-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mm-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(251,82,0,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.mm-cta__inner { position: relative; z-index: 1; }
.mm-cta__heading {
  font-family: var(--mm-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--mm-cream);
  margin: 22px 0;
}
.mm-cta__heading em { font-style: italic; color: var(--mm-rust); }
.mm-cta__body {
  font-size: 17px;
  color: var(--mm-muted-dark);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.mm-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 989px) {
  .mm-hero { height: auto; min-height: 600px; }
  .mm-hero__poster { right: 32px; }
  .mm-hero__poster-img { width: 260px; max-width: 36vw; }
  .mm-how__grid { grid-template-columns: 1fr; gap: 40px; }
  .mm-how__steps { grid-template-columns: 1fr; }
  .mm-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-stats__item:nth-child(2n+1) { border-left: none; padding-left: 0; }
  .mm-stats__item:nth-child(2) { border-left: 1px solid var(--mm-line); }
  .mm-stats__item:nth-child(3) { border-left: none; padding-left: 0; border-top: 1px solid var(--mm-line); padding-top: 24px; margin-top: 8px; }
  .mm-stats__item:nth-child(4) { border-top: 1px solid var(--mm-line); padding-top: 24px; margin-top: 8px; }
  .mm-gallery__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mm-gallery__grid { grid-template-columns: 1fr; height: auto; }
  .mm-gallery__grid > .mm-ph { height: 340px; }
  .mm-gallery__col { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .mm-gallery__col .mm-ph { height: 200px; }
  .mm-quote__text { font-size: 36px; }
  .mm-routes__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .mm-routes__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-testimonials__grid { grid-template-columns: 1fr; }
  .mm-faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media screen and (max-width: 749px) {
  /* ── Hero: cream2 baggrund, ink tekst, poster nedenunder ── */
  .mm-hero {
    height: auto;
    background: var(--mm-cream-2);
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .mm-hero__img,
  .mm-hero__overlay { display: none; }
  .mm-hero__content {
    position: relative;
    padding: 48px var(--mm-gutter-mobile) 32px;
    color: var(--mm-ink);
    max-width: 100%;
  }
  .mm-hero__eyebrow { color: var(--mm-rust); }
  .mm-hero__heading {
    font-size: clamp(44px, 13vw, 56px);
    color: var(--mm-ink);
  }
  .mm-hero__body {
    font-size: 16px;
    color: var(--mm-ink-soft);
  }
  .mm-hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  .mm-hero__actions .mm-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  /* Vis ghost-knappen på mobil, men tilpas til lys baggrund */
  .mm-hero__actions .mm-btn--ghost-dark {
    display: inline-flex;
    color: var(--mm-ink);
    border-color: var(--mm-ink);
  }
  .mm-hero__actions .mm-btn--ghost-dark:hover {
    background: var(--mm-ink);
    color: var(--mm-cream);
  }
  .mm-hero__trust {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
    color: var(--mm-muted);
  }
  /* Poster: floats fra absolut til flow nedenunder, centreret */
  .mm-hero__poster {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 32px var(--mm-gutter-mobile) 48px;
    background: var(--mm-cream-2);
  }

  .mm-hero__poster-img {
    width: 78vw;
    max-width: 320px;
  }

  /* ── Sektion-gutters ─────────────────────────────────────── */
  .mm-how,
  .mm-stats,
  .mm-gallery,
  .mm-quote,
  .mm-routes,
  .mm-testimonials,
  .mm-faq,
  .mm-cta {
    padding-left: var(--mm-gutter-mobile);
    padding-right: var(--mm-gutter-mobile);
  }

  /* ── How it works: vertikal border-top liste ─────────────── */
  .mm-how__grid { grid-template-columns: 1fr; gap: 32px; }
  .mm-how__steps { grid-template-columns: 1fr; gap: 0; }
  .mm-how__step {
    border-top: 1px solid var(--mm-line);
    border-right: none;
    padding: 24px 0;
  }

  /* ── Stats: 2-kol ────────────────────────────────────────── */
  .mm-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-stats__item:nth-child(2n+1) { border-left: none; padding-left: 0; }
  .mm-stats__item:nth-child(2) { border-left: 1px solid var(--mm-line); }
  .mm-stats__item:nth-child(3),
  .mm-stats__item:nth-child(4) {
    border-top: 1px solid var(--mm-line);
    padding-top: 24px;
    margin-top: 8px;
  }
  .mm-stats__item:nth-child(3) { border-left: none; padding-left: 0; }

  /* ── Gallery: vertikal stak ──────────────────────────────── */
  .mm-gallery__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mm-gallery__grid { grid-template-columns: 1fr; height: auto; gap: 10px; }
  .mm-gallery__grid > .mm-ph { height: 300px; }
  .mm-gallery__col { grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
  .mm-gallery__col .mm-ph { height: 220px; }

  /* ── Routes teaser: 1-kol ────────────────────────────────── */
  .mm-routes__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mm-routes__grid { grid-template-columns: 1fr; }

  /* ── Testimonials: 1-kol ─────────────────────────────────── */
  .mm-testimonials__grid { grid-template-columns: 1fr; }

  /* ── FAQ: stacked ────────────────────────────────────────── */
  .mm-faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .mm-faq__answer { padding-left: 0; }

  /* ── Final CTA ───────────────────────────────────────────── */
  .mm-cta { padding-top: 72px; padding-bottom: 72px; }
  .mm-cta__actions { flex-direction: column; gap: 10px; }
  .mm-cta__actions .mm-btn { width: 100%; justify-content: center; }
}
