.mobile-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.mobile-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: var(--surface);
}

.mobile-hero-text h1 {
  font-family: var(--bespoke-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--fashion-white);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.mobile-hero-text p {
  font-family: var(--craft-sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.mobile-hero-img {
  background-image: url("/images/decorative/decor_6.jpg");
  background-size: cover;
  background-position: center;
  min-height: 200px;
  max-width: 100%;
  overflow: hidden;
}

.stat-band {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white-silk);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--bespoke-serif);
  font-size: 2rem;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-family: var(--craft-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 32px 4rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.mobile-main h2 {
  font-family: var(--craft-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.mobile-main h2:first-child {
  margin-top: 0;
}

.mobile-main p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.mobile-main ul {
  color: var(--muted);
  margin: 0 0 1rem 1.25rem;
  font-size: 0.95rem;
}

.mobile-aside {
  align-self: start;
}

.mobile-aside-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.mobile-aside-card h3 {
  font-family: var(--craft-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mobile-aside-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .mobile-hero {
    grid-template-columns: 1fr;
  }

  .mobile-hero-img {
    min-height: 160px;
  }

  .stat-band {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 16px;
  }

  .mobile-split {
    grid-template-columns: 1fr;
    padding: 2rem 16px 3rem;
  }
}
