/* Page-local additions for the v8.1 Services hub page.
   Everything else (header, buttons, torn edge, hours, footer) is inherited unchanged from
   /v8.1/styles.css to stay consistent with the rest of the site.

   v8.1: same fix as About -- plain dark hero read as a missing image, not intentional dark
   design (AC + Rob, site-wide vision-pass follow-up). Mazdock's truck + crane servicing a
   quarry crusher, Fraser Valley backdrop -- reads as "every reason your fleet goes down,"
   matching this page's headline. */
.svc-hub-hero {
  background-image:
    linear-gradient(90deg, rgba(9,10,12,0.9) 0%, rgba(9,10,12,0.74) 32%, rgba(9,10,12,0.32) 62%, rgba(9,10,12,0.12) 100%),
    url("assets/hero.jpg");
  background-position: center 55%;
  background-size: cover;
}

/* H1-pretitle SEO pattern (same as /v8/about/): the real <h1> is small and keyword-bearing,
   the big visual headline is an <h2> right under it. */
.pretitle {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc3e8;
  margin: 0 0 14px;
}

.svc-hub-headline {
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

.svc-hub-hero .hero-content p {
  width: min(100%, 640px);
  margin-top: 26px;
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}

/* Full 9-card services grid, remixed from the same page-local .carry pattern library
   used site-wide (see welding/styles.css for the base values). */
.carry {
  padding: 80px var(--gutter) 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: #ffffff;
}

.plan-heading {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.plan-heading h2 {
  font-family: var(--font-display);
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 16px;
}

.plan-heading p {
  color: #33454e;
  font-size: 18px;
  line-height: 1.6;
}

.carry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.carry-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #d8e1e6;
  border-radius: 4px;
}

.carry-card img { margin-bottom: 20px; }

.carry-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 10px;
}

.carry-card p {
  color: #3d5059;
  font-size: 16px;
  line-height: 1.6;
}

.carry-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-diesel-blue);
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .carry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .carry { padding-block: 72px; }
  .carry-grid { grid-template-columns: 1fr; }
}
