/* Compact hero — Hero Propagation module. Used on Service, Location, About and Contact
   pages. Reuses --qh-* tokens and .qh-btn/.qh-eyebrow/.qh-chips components from hero.css
   (loaded first on every page that includes this file). No new tokens introduced. */

.qh-hero--compact {
  background: var(--qh-primary);
  color: var(--qh-text-on-dark);
  padding: var(--qh-space-5) 0;
}

.qh-hero--compact .qh-hero__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: var(--qh-space-2);
}

/* Variant: form/iframe beside the H1 (two-column at tablet+, matching the homepage hero) */
.qh-hero--compact.qh-hero--with-form .qh-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--qh-space-4);
}
.qh-hero--compact .qh-hero__content { display: flex; flex-direction: column; gap: var(--qh-space-2); }
.qh-hero--compact .qh-hero__form { scroll-margin-top: var(--qh-space-3); }

@media (min-width: 768px) {
  .qh-hero--compact.qh-hero--with-form .qh-hero__container {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
}

.qh-hero--compact .qh-hero__h1 { font-size: 1.75rem; }

@media (min-width: 640px) {
  .qh-hero--compact .qh-hero__h1 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .qh-hero--compact .qh-hero__h1 { font-size: 2.5rem; }
}

.qh-hero--compact .qh-hero__lede {
  margin: 0;
  color: var(--qh-text-on-dark-muted);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 68ch;
}

.qh-hero--compact .qh-hero__actions,
.qh-hero--compact .qh-chips { margin-top: var(--qh-space-1); }
