/* ════════════════════════════════════════════════════════════
   STM Handyman — Landing-only sections
   Loaded ONLY on service/city landings (e.g. painting-newton-ma).
   Reuses the home design system (tokens, fonts, accent) and adds
   layout families the home page does not use, so a landing reads
   distinct from the home without forking the brand.
   ════════════════════════════════════════════════════════════ */

/* ───── Process — numbered steps (not present on home) ───── */
.process {
  padding: 96px var(--pad-x);
  border-top: 1px solid var(--line);
}
.process__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}
.process__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.process__lead {
  max-width: 38ch;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.6;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 28px;
}
.process__step {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.process__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.process__step-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .process { padding: 64px var(--pad-x); }
  .process__title { font-size: 40px; }
  .process__grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ───── Hero — full-bleed photo (landing variant of home's split hero) ───── */
.hero-bleed {
  position: relative;
  display: flex;          /* overrides home .hero grid */
  height: auto;           /* overrides home .hero fixed height */
  align-items: flex-end;
  min-height: clamp(560px, 86vh, 820px);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}
.hero-bleed__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bleed__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(10, 10, 10, 0.62) 42%,
    rgba(10, 10, 10, 0.12) 100%
  );
}
.hero-bleed__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 56px;
  color: #fff;
}
.hero-bleed__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}
.hero-bleed__eyebrow .hero__dot { width: 8px; height: 8px; background: var(--accent); border-radius: 4px; }
.hero-bleed__h1 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.hero-bleed__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero-bleed__title .accent { color: var(--accent); }
.hero-bleed__title .italic { font-style: italic; }
.hero-bleed__sub {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 500;
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-bleed__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn--light { background: #fff; color: var(--ink); }
.hero-bleed .link-underline { color: #fff; }
.hero-bleed__meta {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-bleed__meta-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-bleed__meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 960px) {
  .hero-bleed { min-height: clamp(480px, 78vh, 640px); }
  .hero-bleed__inner { padding-bottom: 40px; }
}
@media (max-width: 560px) {
  .hero-bleed__meta { gap: 22px; flex-wrap: wrap; }
}
