/* Page-local additions for the v8 Fire Pump + Ladder Testing page (DRAFT, keep out of live
   nav until Abbie confirms post-certification -- see the HTML file's build comment).
   Everything else (header, buttons, torn edge, hours, footer) is inherited unchanged from
   /v8/styles.css. .carry/.carry-grid/.carry-card and .plan/.plan-heading/.plan-cta are
   remixed from the welding page-local pattern library. */
.fire-hero {
  background-image:
    linear-gradient(90deg, rgba(9,10,12,0.9) 0%, rgba(16,19,21,0.9) 60%, rgba(9,10,12,0.55) 100%),
    url("assets/hero.png");
  background-position: center 50%;
  background-size: cover;
  background-color: var(--color-instrument-black);
}

.carry {
  padding: 80px var(--gutter) 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: #ffffff;
}

.carry-grid {
  display: grid;
  grid-template-columns: repeat(3, 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: 26px;
  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;
}

.plan {
  padding: 100px var(--gutter) 96px;
  background: var(--color-ice-blue);
}

.plan-heading {
  max-width: 640px;
  margin: 0 auto 48px;
  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;
}

.story-copy {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
}

.story-copy p {
  flex: 1;
  color: #33454e;
  font-size: 17px;
  line-height: 1.6;
}

.plan-cta {
  text-align: center;
  margin-top: 56px;
}

.plan-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3782ad 0%, #245a80 100%);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .carry-grid { grid-template-columns: repeat(2, 1fr); }
  .story-copy { flex-direction: column; gap: 24px; }
}

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