/* PPC landing-page overrides — layered on top of the shared DM lp.css.
   Keeps the DM typography/palette identical; only adjusts for PPC realities.
   Geo-stuffed headlines (city + service + tagline) run longer than the DM
   set, so the hero H1 is dialed down a notch to stay balanced. */
.ppc .hero h1 { font-size: clamp(38px, 5.2vw, 64px); line-height: 1.0; }
/* Desktop (>980px two-column layout): the drainage headline segment
   "drainage & french drains," overflows the ~670px headline column at 64px and
   strands "drains," on its own line. Trim the hero a touch so the intended
   3-line headline holds across the desktop range. Matches the social hero fix.
   The <=640px rule below (34px) is untouched. */
@media (min-width: 981px) {
  .ppc .hero h1 { font-size: clamp(38px, 4.3vw, 56px); text-wrap: balance; }
}
@media (max-width: 640px) {
  .ppc .hero h1 { font-size: 34px; line-height: 1.02; max-width: calc(100vw - 32px); }
}

/* Nav phone as a clickable button (PPC): outline pill that fills on hover.
   Overrides the DM text-link treatment; number lives in [data-glh-phone] so
   DNI swaps it without flattening the button. */
.ppc .nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 2px solid var(--glh-blue); color: var(--glh-blue);
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  padding: 9px 16px; border-radius: 10px; text-decoration: none;
  transition: background .15s, color .15s;
}
.ppc .nav-phone:hover { background: var(--glh-blue); color: #fff; }
.ppc .nav-phone-ico { font-size: 15px; line-height: 1; }
