:root {
  --hp-bg: #f4f7fc;
  --hp-text: #0f172a;
  --hp-muted: #334155;
  --hp-primary: #173b73;
  --hp-border: rgba(23, 59, 115, 0.18);
}

body {
  background: var(--hp-bg);
  color: var(--hp-text);
}

.houston-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 52px) clamp(20px, 5vw, 64px) 84px;
}

.hp-hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(23, 59, 115, 0.72)),
    #0f172a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8fafc;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(226, 232, 240, 0.24);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.28);
  margin-bottom: 26px;
}

.houston-page-armed .hp-hero {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(23, 59, 115, 0.72)),
    url("../assets/images/hero-armed-security-1920x420.webp");
}

.houston-page-hospital .hp-hero {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(23, 59, 115, 0.72)),
    url("../assets/images/hero-security-assessment-1920x420.webp");
}

.houston-page-construction .hp-hero {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(23, 59, 115, 0.72)),
    url("../assets/images/process_step_03_staffing_plan_1200x650.png");
}

.hp-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.86);
}

.hp-hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.14;
  margin: 0 0 12px;
}

.hp-hero p {
  max-width: 920px;
  line-height: 1.65;
  margin: 0;
  color: rgba(241, 245, 249, 0.95);
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.hp-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hp-section h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #123565;
}

.hp-section p {
  margin: 0;
  color: var(--hp-muted);
  line-height: 1.65;
}

.hp-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--hp-muted);
}

.hp-list li + li {
  margin-top: 8px;
}

.hp-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #e7effb;
  color: var(--hp-primary);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(23, 59, 115, 0.35);
}

.hp-cta:hover,
.hp-cta:focus-visible {
  background: #d9e7fb;
  border-color: rgba(23, 59, 115, 0.6);
}

.hp-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hp-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #123565;
  text-decoration: none;
}

.hp-link:hover,
.hp-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hp-grid {
    grid-template-columns: 1fr;
  }
}
