/* Keep header logo tidy */
.md-header__button.md-logo img {
  height: 28px;     /* tweak to taste */
  width: auto;
}

/* Optional: nicer hero spacing on the homepage */
.hero {
  margin: 2rem 0 1rem;
}
.hero .hero-lead {
  font-size: 1.15rem;
  opacity: .85;
}
/* Hero layout */
.hero {
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 0 3.5rem; }
}

.hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero__copy h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  line-height: 1.05;
}

.hero__tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, .5vw + 1rem, 1.25rem);
  opacity: .9;
}

.hero__cta .md-button {
  margin-right: .5rem;
  margin-bottom: .5rem;
}

.hero__bullets {
  margin: 1rem 0 0;
  padding-left: 1.125rem;
}

.hero__art {
  display: grid;
  place-items: center;
}

.hero__art img {
  max-width: min(520px, 100%);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,.08);
}

/* Optional: tighten page container on very wide screens */
.md-grid {
  max-width: 1100px;
}
