/* ── MW Hero ──────────────────────────────────────── */
.mw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--mw-cream);
  position: relative;
  overflow: hidden;
}
.mw-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--mw-cream-deep);
  z-index: 0;
}
.mw-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--mw-max-w);
  margin: 0 auto;
  padding: 80px 40px;
}
.mw-hero-content { max-width: 540px; }
.mw-hero-content .mw-label { margin-bottom: 28px; display: block; }
.mw-hero-content h1,
.mw-hero-content h2,
.mw-hero-content h3 {
  font-family: var(--mw-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--mw-ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.mw-hero-content em { font-style: italic; color: var(--mw-gold); }
.mw-hero-content > p {
  font-family: var(--mw-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 44px;
  color: var(--mw-ink-soft);
  max-width: 480px;
}
.mw-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mw-hero-image-wrap { position: relative; }
.mw-hero-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 30px 60px -20px rgba(28,28,25,0.25);
}
.mw-hero-image-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--mw-ink);
  color: var(--mw-cream);
  padding: 22px 28px;
  border-radius: 2px;
  max-width: 240px;
}
.mw-hero-badge-num {
  font-family: var(--mw-serif);
  font-size: 2rem;
  color: var(--mw-gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.mw-hero-badge-lbl {
  font-family: var(--mw-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.65);
}

@media (max-width: 900px) {
  .mw-hero::before { display: none; }
  .mw-hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 60px 24px; }
  .mw-hero-image-badge { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mw-hero-image { box-shadow: none; }
}
