/* Keep the hero text and photo independently contained at every width. */
.hero {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
}
.hero-copy, .hero-visual { min-width: 0; }
.hero h1 { overflow-wrap: normal; }
.hero-description { font-size: 1rem; }

/* Short, centered copy inside the photograph, clear of the heading. */
.hero-badge {
  top: 1.25rem;
  right: 1.25rem;
  left: auto;
  width: 7.5rem;
  height: 7.5rem;
  padding: 1rem;
  gap: .3rem;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--paper);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .035em;
  text-align: center;
}
.hero-badge span { display: block; max-width: 100%; }

/* A plain services note, without an ambiguous decorative icon. */
.hero-footnote {
  display: block;
  margin-top: 2rem;
  padding: .15rem 0 .15rem 1rem;
  border-left: 2px solid var(--wine);
  font-size: .875rem;
  line-height: 1.65;
}
.hero-footnote p { margin: 0; }
.hero-services { color: var(--ink); font-weight: 500; }
.hero-support { color: var(--muted); }
.hero-footnote .hero-support { margin-top: .3rem; }
.contact-copy .contact-services { margin-top: 1.25rem; color: #e6c8d0; }

@media (max-width: 900px) {
  .hero-badge { width: 7rem; height: 7rem; padding: .75rem; right: 1rem; top: 1rem; }
}
@media (max-width: 700px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-description { max-width: 100%; }
  .hero-footnote { margin-top: 1.75rem; }
}
