/* ============================================================
   Dr. Majtényi — components
   header / drawer / hero / pillars / service grid / dark band /
   bio timeline / steps / faq / contact / footer
   ============================================================ */

/* ---------- header ---------- */

.o-mj .site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mj-line);
}
.o-mj .site-header::after {
  /* the old site's brick-red rule under the header */
  content: "";
  display: block;
  height: 2px;
  background: var(--mj-red);
}
.o-mj .site-header.is-scrolled {
  box-shadow: var(--mj-shadow);
}

.o-mj .site-header__bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: var(--mj-header-h);
  max-width: none;
  padding-inline: clamp(20px, 3vw, 44px);
}

.o-mj .brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--mj-ink);
}
.o-mj .brand:hover { color: var(--mj-ink); }
.o-mj .brand__name {
  font-family: var(--mj-font-display);
  font-weight: 600;
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.15;
  white-space: nowrap;
}
.o-mj .brand__name-thin { font-weight: 420; }
.o-mj .brand__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mj-red);
  white-space: nowrap;
}

.o-mj .site-nav { margin-inline: auto; }
.o-mj .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.o-mj .nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--mj-ink);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
}
.o-mj .nav-menu a:hover { color: var(--mj-red); }
.o-mj .nav-menu .current-menu-item a {
  color: var(--mj-red);
  border-bottom-color: var(--mj-amber);
}

.o-mj .site-nav__head, .o-mj .site-nav__extra, .o-mj .nav-backdrop { display: none; }

.o-mj .site-header__cta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.o-mj .header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  color: var(--mj-ink);
  white-space: nowrap;
}
.o-mj .header-phone:hover { color: var(--mj-red); }
.o-mj .header-phone__icon { color: var(--mj-red); display: inline-flex; }
.o-mj .site-header__termin { white-space: nowrap; }

.o-mj .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--mj-ink);
  border-radius: var(--mj-radius-sm);
  cursor: pointer;
}
.o-mj .nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mj-ink);
  border-radius: 2px;
}

/* Header space stages: the full bar (wordmark + nav + phone + CTA) needs
   ~1660px — below that drop the CTA button, below 1400px the phone label
   (icon stays), before the drawer takes over at 1160px. */
@media (max-width: 1660px) {
  .o-mj .site-header__termin { display: none; }
}
@media (max-width: 1400px) {
  .o-mj .header-phone__label { display: none; }
  .o-mj .nav-menu { gap: 1.2rem; }
}

/* ---------- mobile drawer (oxblood) ---------- */

@media (max-width: 1160px) {
  .o-mj .site-header__bar { gap: 0.9rem; }
  .o-mj .header-phone__label, .o-mj .site-header__termin { display: none; }
  .o-mj .nav-toggle { display: flex; }

  .o-mj .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(46, 22, 19, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 998;
  }
  body.nav-open .o-mj .nav-backdrop { opacity: 1; pointer-events: auto; }

  .o-mj .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--mj-dark);
    color: var(--mj-cream);
    padding: 1.2rem 1.6rem 2rem;
    transform: translateX(102%);
    transition: transform 0.28s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  body.nav-open .o-mj .site-nav { transform: none; }

  .o-mj .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
  }
  .o-mj .site-nav__label {
    font-family: var(--mj-font-display);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--mj-cream-dim);
    margin: 0;
  }
  .o-mj .site-nav__close {
    background: var(--mj-dark-2);
    color: var(--mj-cream);
    border: 0;
    width: 38px; height: 38px;
    border-radius: var(--mj-radius-sm);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .o-mj .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .o-mj .nav-menu a {
    display: block;
    color: var(--mj-cream);
    font-size: 1.02rem;
    padding: 0.85em 0.2em;
    border-bottom: 1px solid var(--mj-dark-3);
  }
  .o-mj .nav-menu .current-menu-item a { color: var(--mj-amber-ondark); border-bottom-color: var(--mj-dark-3); }

  .o-mj .site-nav__extra {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.6rem;
  }
  .o-mj .site-nav__extra .btn--ghost {
    border-color: var(--mj-cream);
    color: var(--mj-cream);
  }
}

/* Phone stage: the two-line wordmark + burger must fit 360px — drop the
   header phone icon (the drawer repeats the phone CTA) and tighten. */
@media (max-width: 560px) {
  .o-mj .site-header__bar { padding-inline: 16px; gap: 0.6rem; }
  .o-mj .header-phone { display: none; }
  .o-mj .brand__name { font-size: 0.98rem; }
  .o-mj .brand__sub { font-size: 0.6rem; letter-spacing: 0.14em; }
}

/* ---------- hero (home) ---------- */

.o-mj .hero {
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(218, 143, 69, 0.16), transparent 68%),
    var(--mj-sand);
  border-bottom: 1px solid var(--mj-line);
  padding: clamp(2.8rem, 6vw, 5.4rem) 0;
  overflow: hidden;
}
.o-mj .hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3.6rem);
  align-items: center;
}
.o-mj .hero__title {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  letter-spacing: 0.005em;
  max-width: 13em;
}
.o-mj .hero__title em {
  font-style: italic;
  font-weight: 480;
  color: var(--mj-red);
}
.o-mj .hero__lead {
  max-width: 54ch;
  color: var(--mj-muted);
  font-size: 1.12rem;
  margin: 1.2rem 0 0;
}
.o-mj .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.o-mj .hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.9rem;
  padding: 0;
}
.o-mj .hero__chips li {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mj-red-deep);
  background: var(--mj-card);
  border: 1px solid rgba(157, 43, 36, 0.25);
  border-radius: 999px;
  padding: 0.32em 0.95em;
}

.o-mj .hero__portrait {
  position: relative;
  justify-self: center;
  width: min(420px, 100%);
}
.o-mj .portrait-card {
  position: relative;
  background: var(--mj-card);
  border-radius: var(--mj-radius);
  box-shadow: var(--mj-shadow-lg);
  padding: 1.1rem 1.1rem 0;
  overflow: hidden;
}
.o-mj .portrait-card::before {
  /* amber halo behind the cut-out — lifts the white-on-white photo */
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(218, 143, 69, 0.28), transparent);
}
.o-mj .portrait-card img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.o-mj .portrait-card__bar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--mj-dark);
  color: var(--mj-cream);
  margin: 0 -1.1rem;
  padding: 0.85rem 1.4rem 0.95rem;
  text-align: center;
}
.o-mj .portrait-card__bar strong {
  font-family: var(--mj-font-display);
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}
.o-mj .portrait-card__bar span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mj-amber-ondark);
}
.o-mj .hero .motto { margin-top: 1.6rem; }

/* ---------- pillars ---------- */

.o-mj .pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.o-mj .pillar {
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-top: 3px solid var(--mj-red);
  border-radius: var(--mj-radius);
  padding: 1.7rem 1.5rem 1.5rem;
}
.o-mj .pillar__title {
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.o-mj .pillar__text { color: var(--mj-muted); font-size: 0.98rem; margin: 0; }

/* ---------- service grid ---------- */

.o-mj .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.o-mj .service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-radius: var(--mj-radius);
  padding: 1.25rem 1.3rem;
  color: var(--mj-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.o-mj .service-card:hover {
  color: var(--mj-ink);
  transform: translateY(-3px);
  border-color: rgba(157, 43, 36, 0.35);
  box-shadow: var(--mj-shadow-lg);
}
.o-mj .service-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--mj-red-wash);
  border-radius: var(--mj-radius-sm);
}
.o-mj .service-card__icon .ico { width: 32px; height: 32px; }
.o-mj .service-card__title {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}
.o-mj .service-card__text { color: var(--mj-muted); font-size: 0.92rem; margin: 0; }

/* ---------- service detail cards (/leistungen) ---------- */

.o-mj .leistung {
  scroll-margin-top: calc(var(--mj-header-h) + 24px);
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-radius: var(--mj-radius);
  box-shadow: var(--mj-shadow);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.4rem;
  align-items: start;
}
.o-mj .leistung + .leistung { margin-top: 1.4rem; }
.o-mj .leistung__icon {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  background: var(--mj-red-wash);
  border-radius: var(--mj-radius-sm);
}
.o-mj .leistung__title { font-size: 1.4rem; margin-bottom: 0.2rem; }
.o-mj .leistung__alias {
  color: var(--mj-amber-deep);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.o-mj .leistung__body { color: var(--mj-muted); }
.o-mj .leistung__body p:last-child { margin-bottom: 0; }
.o-mj .leistung__body ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.6rem 0 0.9rem;
}
.o-mj .leistung__body li {
  position: relative;
  padding-left: 1.5rem;
}
.o-mj .leistung__body li::before {
  /* tiny pulse tick as bullet */
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.9rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mj-red) 60%, var(--mj-amber) 60%);
}

/* ---------- dark band (person teaser / facts) ---------- */

.o-mj .dark-band {
  background:
    radial-gradient(900px 420px at 12% 115%, rgba(218, 143, 69, 0.14), transparent 65%),
    var(--mj-dark);
  color: var(--mj-cream);
  padding: 4.8rem 0;
}
.o-mj .dark-band__grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}
.o-mj .dark-band__text { color: var(--mj-cream-dim); max-width: 58ch; }

.o-mj .bio-frame {
  position: relative;
  justify-self: center;
  width: min(280px, 90%);
  background: var(--mj-card);
  border-radius: var(--mj-radius);
  padding: 10px;
  box-shadow: var(--mj-shadow-lg);
}
.o-mj .bio-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(218, 143, 69, 0.55);
  border-radius: calc(var(--mj-radius) - 6px);
  pointer-events: none;
}
.o-mj .bio-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--mj-radius) - 6px);
}

.o-mj .fact-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.o-mj .fact-list li {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--mj-amber);
  padding-left: 0.9rem;
}
.o-mj .fact-list strong {
  font-family: var(--mj-font-display);
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--mj-cream);
}
.o-mj .fact-list span { color: var(--mj-cream-dim); font-size: 0.95rem; }
.o-mj .fact-list--grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 1.8rem;
}

/* ---------- bio timeline (/zur-person) ---------- */

.o-mj .timeline {
  position: relative;
  display: grid;
  gap: 1.3rem;
  padding-left: 1.6rem;
}
.o-mj .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--mj-red), var(--mj-amber));
  border-radius: 2px;
}
.o-mj .timeline li { position: relative; }
.o-mj .timeline li::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.5em;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mj-paper);
  border: 2.5px solid var(--mj-red);
}
.o-mj .timeline strong {
  font-family: var(--mj-font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.o-mj .timeline span { display: block; color: var(--mj-muted); font-size: 0.97rem; }

/* ---------- steps (Wahlarzt refund) ---------- */

.o-mj .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.o-mj .step {
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-radius: var(--mj-radius);
  padding: 1.9rem 1.5rem 1.6rem;
}
.o-mj .step__num {
  display: inline-grid;
  place-items: center;
  width: 2.3rem; height: 2.3rem;
  border-radius: 50%;
  border: 1.5px solid var(--mj-red);
  color: var(--mj-red);
  font-family: var(--mj-font-display);
  font-weight: 650;
  margin-bottom: 0.8rem;
}
.o-mj .step h3 { font-size: 1.1rem; letter-spacing: 0.01em; }
.o-mj .step p { color: var(--mj-muted); font-size: 0.96rem; margin: 0.4rem 0 0; }

/* ---------- faq / gut zu wissen ---------- */

.o-mj .faq { display: grid; gap: 1.2rem; margin: 0; }
.o-mj .faq__item {
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-left: 3px solid var(--mj-amber);
  border-radius: var(--mj-radius-sm);
  padding: 1.1rem 1.3rem;
}
.o-mj .faq dt {
  font-family: var(--mj-font-display);
  font-weight: 620;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.o-mj .faq dd { margin: 0; color: var(--mj-muted); }

/* ---------- split (generic 2-col) ---------- */

.o-mj .split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* ---------- contact ---------- */

.o-mj .contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.o-mj .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-radius: var(--mj-radius);
  padding: 2.1rem 1.4rem 1.8rem;
  color: var(--mj-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.o-mj .contact-card:hover {
  color: var(--mj-ink);
  transform: translateY(-4px);
  border-color: rgba(157, 43, 36, 0.35);
  box-shadow: var(--mj-shadow-lg);
}
.o-mj .contact-card__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--mj-red-wash);
  color: var(--mj-red);
  margin-bottom: 0.5rem;
}
.o-mj .contact-card__title { font-size: 1.08rem; letter-spacing: 0.02em; }
.o-mj .contact-card__value { font-size: 1.04rem; font-weight: 600; margin: 0; overflow-wrap: anywhere; }
.o-mj .contact-card__hint { color: var(--mj-muted); font-size: 0.9rem; margin: 0.3rem 0 0; }
.o-mj .kontakt-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.2rem 0 0.8rem; }

.o-mj .split--map { align-items: start; }
.o-mj .split--map .kicker { margin-top: 2rem; }
.o-mj .kontakt-map {
  position: sticky;
  top: calc(var(--mj-header-h) + 20px);
  background: var(--mj-card);
  border: 1px solid var(--mj-line);
  border-radius: var(--mj-radius);
  overflow: hidden;
  box-shadow: var(--mj-shadow);
}
.o-mj .kontakt-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.o-mj .kontakt-map__link {
  display: block;
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--mj-line);
}
@media (max-width: 720px) {
  .o-mj .kontakt-map { position: static; }
  .o-mj .kontakt-map iframe { height: 300px; }
}

.o-mj .contact-band {
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(218, 143, 69, 0.15), transparent 65%),
    var(--mj-dark);
  color: var(--mj-cream);
  padding: 4rem 0;
}
.o-mj .contact-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}
.o-mj .contact-band__text { color: var(--mj-cream-dim); max-width: 48ch; margin: 0; }
.o-mj .contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------- page hero (subpages) ---------- */

.o-mj .page-hero {
  background:
    radial-gradient(900px 380px at 85% -30%, rgba(218, 143, 69, 0.14), transparent 65%),
    var(--mj-sand);
  border-bottom: 1px solid var(--mj-line);
  padding: 3.6rem 0 2.8rem;
  text-align: center;
}
.o-mj .page-hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mj-red);
  margin-bottom: 0.6rem;
}
.o-mj .page-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  letter-spacing: 0.005em;
}
.o-mj .page-hero__lead {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--mj-muted);
  font-size: 1.06rem;
}
.o-mj .page-hero .rule-duo { margin-top: 1.2rem; }

/* ---------- footer ---------- */

.o-mj .site-footer {
  background: var(--mj-dark);
  color: var(--mj-cream);
  border-top: 3px solid var(--mj-red);
}
.o-mj .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 2.6rem;
  padding-block: 3.6rem 2.8rem;
}
.o-mj .footer-wordmark {
  font-family: var(--mj-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--mj-cream);
  margin-bottom: 0.9rem;
}
.o-mj .footer-tagline { color: var(--mj-cream-dim); max-width: 44ch; }

.o-mj .footer-head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mj-amber-ondark);
  margin-bottom: 1rem;
}
.o-mj .footer-address { color: var(--mj-cream-dim); line-height: 1.8; }
.o-mj .footer-address a { color: var(--mj-cream); }
.o-mj .footer-address a:hover { color: #fff; }
.o-mj .footer-links { display: grid; gap: 0.5rem; }
.o-mj .footer-links a { color: var(--mj-cream); }
.o-mj .footer-links a:hover { color: var(--mj-amber-ondark); }
.o-mj .footer-note { color: var(--mj-cream-dim); font-size: 0.9rem; margin-top: 1.1rem; }

.o-mj .footer-bottom { border-top: 1px solid var(--mj-dark-3); }
.o-mj .footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-block: 1.1rem;
  font-size: 0.88rem;
  color: var(--mj-cream-dim);
}
.o-mj .footer-bottom__row p { margin: 0; }
.o-mj .footer-legal { display: flex; gap: 1.4rem; }
.o-mj .footer-legal a { color: var(--mj-cream); }
.o-mj .footer-legal a:hover { color: var(--mj-amber-ondark); }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .o-mj .pillars { grid-template-columns: repeat(2, 1fr); }
  .o-mj .service-grid { grid-template-columns: repeat(2, 1fr); }
  .o-mj .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .o-mj .dark-band__grid { grid-template-columns: 1fr; }
  .o-mj .fact-list--grid { grid-template-columns: repeat(2, 1fr); }
  .o-mj .hero__grid { grid-template-columns: 1fr; }
  .o-mj .hero__portrait { width: min(360px, 100%); }
}

@media (max-width: 720px) {
  .o-mj .section { padding: 3.2rem 0; }
  .o-mj .pillars, .o-mj .steps { grid-template-columns: 1fr; }
  .o-mj .service-grid { grid-template-columns: 1fr; }
  .o-mj .contact-cards { grid-template-columns: 1fr; }
  .o-mj .fact-list--grid { grid-template-columns: 1fr; }
  .o-mj .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .o-mj .leistung { grid-template-columns: 1fr; }
  .o-mj .leistung__icon { width: 60px; height: 60px; }
  .o-mj .hero__actions .btn { width: 100%; }
  .o-mj .contact-band__actions { width: 100%; }
  .o-mj .contact-band__actions .btn { width: 100%; }
  .o-mj .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
