/* =========================================================
FIRE HYDRANT PAGE
Page-scoped design
Existing site colors and typography retained
========================================================= */

.fire-hydrant-page {
--fh-teal: #2f2f38;
--fh-yellow: #e10000;
--fh-heading: #1a1b1e;
--fh-text: #555555;
--fh-text-light: #606060;
--fh-dark: #2f2f38;
--fh-dark-alt: #4b4952;
--fh-light-blue: rgb(242, 246, 254);
--fh-light: #f8f8f8;
--fh-soft: #f5f5f5;
--fh-border: #dedfe3;
--fh-white: #ffffff;


font-family: "Open Sans", sans-serif;
color: var(--fh-text);
background: #fff;
overflow: hidden;


}

.fire-hydrant-page *,
.fire-hydrant-page *::before,
.fire-hydrant-page *::after {
box-sizing: border-box;
}

.fire-hydrant-page .fh-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: 20px;
padding-right: 20px;
}

.fire-hydrant-page p {
margin: 0 0 20px;
font-size: 17px;
line-height: 1.8;
color: var(--fh-text);
}

.fire-hydrant-page h1,
.fire-hydrant-page h2,
.fire-hydrant-page h3 {
color: var(--fh-heading);
text-transform: uppercase;
font-weight: 700;
margin: 0;
line-height: 1.2;
}

.fire-hydrant-page h1 {
font-size: clamp(26px, 5vw, 32px);
}

.fire-hydrant-page h2 {
font-size: clamp(22px, 4vw, 30px);
}

.fire-hydrant-page h3 {
font-size: 21px;
}

.fire-hydrant-page ul {
margin: 0;
padding: 0;
list-style: none;
}

/* =========================================================
SHARED
========================================================= */

.fire-hydrant-page .fh-section {
padding: 95px 0;
}

.fire-hydrant-page .fh-kicker {
display: inline-block;
margin-bottom: 14px;
color: var(--fh-teal);
font-size: 14px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.fire-hydrant-page .fh-section-heading {
display: grid;
grid-template-columns: 72px 1fr;
gap: 25px;
align-items: start;
margin-bottom: 55px;
}

.fire-hydrant-page .fh-section-heading h2 {
max-width: 960px;
}

.fire-hydrant-page .fh-section-number {
position: relative;
color: var(--fh-yellow);
font-size: 58px;
line-height: 1;
font-weight: 700;
letter-spacing: -2px;
}

.fire-hydrant-page .fh-section-number::after {
content: "";
display: block;
width: 35px;
height: 4px;
margin-top: 15px;
background: var(--fh-teal);
}

.fire-hydrant-page .fh-heading-light h2 {
color: #fff;
}

.fire-hydrant-page .fh-heading-light .fh-kicker {
color: var(--fh-yellow);
}

.fire-hydrant-page .fh-heading-light .fh-section-number {
color: var(--fh-yellow);
}

/* =========================================================
HERO
========================================================= */

.fire-hydrant-page .fh-hero {
position: relative;
padding: 100px 0;
background: var(--fh-light-blue);
}

.fire-hydrant-page .fh-hero::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 34%;
height: 100%;
background: var(--fh-teal);
}

.fire-hydrant-page .fh-hero-grid {
position: relative;
display: grid;
grid-template-columns: minmax(0, 1fr) 300px;
gap: 70px;
align-items: center;
}

.fire-hydrant-page .fh-hero-content {
position: relative;
z-index: 2;
}

.fire-hydrant-page .fh-hero-content h1 {
max-width: 850px;
margin-bottom: 30px;
}

.fire-hydrant-page .fh-hero-content > p {
max-width: 900px;
}

.fire-hydrant-page .fh-eyebrow {
display: inline-block;
margin-bottom: 18px;
padding-left: 15px;
border-left: 4px solid var(--fh-yellow);
color: var(--fh-teal);
font-size: 14px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.fire-hydrant-page .fh-service-line {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 35px;
}

.fire-hydrant-page .fh-service-line span {
padding: 9px 15px;
background: #fff;
border: 1px solid rgba(0, 96, 128, .14);
border-radius: 4px;
color: var(--fh-teal);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}

.fire-hydrant-page .fh-hero-side {
position: relative;
z-index: 2;
min-height: 370px;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: flex-end;
border: 1px solid rgba(255,255,255,.25);
background: var(--fh-dark);
box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.fire-hydrant-page .fh-hero-number {
position: absolute;
top: 30px;
right: 30px;
color: var(--fh-yellow);
font-size: 76px;
line-height: 1;
font-weight: 700;
}

.fire-hydrant-page .fh-hero-side-title {
color: #fff;
font-size: 24px;
line-height: 1.15;
font-weight: 700;
text-transform: uppercase;
}

.fire-hydrant-page .fh-hero-side-subtitle {
margin-top: 10px;
color: var(--fh-yellow);
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
}

/* =========================================================
INSPECTION
========================================================= */

.fire-hydrant-page .fh-inspection {
background: #fff;
}

.fire-hydrant-page .fh-inspection-grid {
display: grid;
grid-template-columns: .78fr 1.22fr;
gap: 30px;
align-items: stretch;
}

.fire-hydrant-page .fh-feature-panel {
position: relative;
padding: 45px;
background: var(--fh-teal);
border-radius: 10px;
overflow: hidden;
}

.fire-hydrant-page .fh-feature-panel::after {
content: "";
position: absolute;
right: -55px;
bottom: -55px;
width: 170px;
height: 170px;
border: 25px solid rgba(235,205,30,.14);
border-radius: 50%;
}

.fire-hydrant-page .fh-feature-panel p {
position: relative;
z-index: 1;
color: #fff;
}

.fire-hydrant-page .fh-feature-panel-top {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 55px;
}

.fire-hydrant-page .fh-feature-panel-top span {
color: var(--fh-yellow);
font-size: 13px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
}

.fire-hydrant-page .fh-feature-panel-top strong {
color: rgba(255,255,255,.16);
font-size: 70px;
line-height: .7;
}

.fire-hydrant-page .fh-list-panel {
padding: 40px;
background: var(--fh-soft);
border-radius: 10px;
}

.fire-hydrant-page .fh-list-heading {
margin-bottom: 25px;
color: var(--fh-heading);
font-size: 19px;
font-weight: 700;
text-transform: uppercase;
}

.fire-hydrant-page .fh-check-list li {
position: relative;
padding: 0 0 13px 28px;
margin-bottom: 13px;
border-bottom: 1px solid rgba(0,0,0,.07);
font-size: 16px;
line-height: 1.6;
color: var(--fh-text);
}

.fire-hydrant-page .fh-check-list li:last-child {
margin-bottom: 0;
border-bottom: 0;
}

.fire-hydrant-page .fh-check-list li::before {
content: "";
position: absolute;
top: 9px;
left: 0;
width: 9px;
height: 9px;
background: var(--fh-yellow);
}

.fire-hydrant-page .fh-objective {
display: flex;
align-items: center;
gap: 20px;
margin-top: 35px;
padding: 25px 30px;
background: var(--fh-light-blue);
border-left: 4px solid var(--fh-teal);
}

.fire-hydrant-page .fh-objective span {
width: 10px;
height: 10px;
flex: 0 0 10px;
background: var(--fh-yellow);
}

.fire-hydrant-page .fh-objective p {
margin: 0;
font-weight: 600;
}

/* =========================================================
MAINTENANCE
========================================================= */

.fire-hydrant-page .fh-maintenance {
background: var(--fh-dark);
}

.fire-hydrant-page .fh-intro-light {
max-width: 850px;
margin: -20px 0 55px 97px;
}

.fire-hydrant-page .fh-intro-light p {
color: #dedede;
}

.fire-hydrant-page .fh-service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.fire-hydrant-page .fh-service-card {
position: relative;
padding: 38px 32px;
background: #fff;
border-radius: 10px;
border-top: 5px solid var(--fh-teal);
}

.fire-hydrant-page .fh-service-card-featured {
transform: translateY(-20px);
border-top-color: var(--fh-yellow);
box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

.fire-hydrant-page .fh-card-number {
margin-bottom: 25px;
color: var(--fh-yellow);
font-size: 45px;
line-height: 1;
font-weight: 700;
}

.fire-hydrant-page .fh-service-card h3 {
margin-bottom: 20px;
}

.fire-hydrant-page .fh-service-card p {
font-size: 16px;
line-height: 1.7;
}

.fire-hydrant-page .fh-mini-heading {
margin: 25px 0 18px;
color: var(--fh-heading);
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
}

.fire-hydrant-page .fh-card-note {
padding-top: 20px;
border-top: 1px solid #e5e5e5;
font-size: 14px !important;
}

/* =========================================================
REPORTING
========================================================= */

.fire-hydrant-page .fh-reporting {
background: var(--fh-light-blue);
}

.fire-hydrant-page .fh-reporting-grid {
display: grid;
grid-template-columns: .8fr 1.2fr;
gap: 70px;
align-items: start;
}

.fire-hydrant-page .fh-reporting-intro h2 {
margin-bottom: 30px;
}

.fire-hydrant-page .fh-reporting-intro p:last-child {
margin-bottom: 0;
}

.fire-hydrant-page .fh-report-list {
padding: 40px;
background: #fff;
border-radius: 10px;
box-shadow: 0 15px 40px rgba(30,40,50,.07);
}

.fire-hydrant-page .fh-two-column-list {
columns: 2;
column-gap: 35px;
}

.fire-hydrant-page .fh-two-column-list li {
break-inside: avoid;
font-size: 15px;
}

.fire-hydrant-page .fh-reporting-footer {
max-width: 850px;
margin: 40px 0 0 auto;
padding: 28px 35px;
background: var(--fh-dark);
border-left: 5px solid var(--fh-yellow);
}

.fire-hydrant-page .fh-reporting-footer p {
margin: 0;
color: #fff;
}

/* =========================================================
CONDITION
========================================================= */

.fire-hydrant-page .fh-condition {
background: #fff;
}

.fire-hydrant-page .fh-condition-intro {
max-width: 850px;
margin: -20px 0 45px 97px;
}

.fire-hydrant-page .fh-condition-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.fire-hydrant-page .fh-condition-card {
position: relative;
min-height: 280px;
padding: 38px;
background: var(--fh-soft);
border-radius: 10px;
border-left: 5px solid var(--fh-teal);
}

.fire-hydrant-page .fh-condition-card:nth-child(2) {
border-left-color: var(--fh-yellow);
}

.fire-hydrant-page .fh-condition-card:nth-child(3) {
border-left-color: var(--fh-dark);
}

.fire-hydrant-page .fh-condition-critical {
background: var(--fh-dark);
border-left-color: var(--fh-yellow);
}

.fire-hydrant-page .fh-condition-index {
display: block;
margin-bottom: 22px;
color: var(--fh-teal);
font-size: 14px;
font-weight: 700;
}

.fire-hydrant-page .fh-condition-card h3 {
margin-bottom: 20px;
}

.fire-hydrant-page .fh-condition-critical h3,
.fire-hydrant-page .fh-condition-critical p,
.fire-hydrant-page .fh-condition-critical strong {
color: #fff;
}

.fire-hydrant-page .fh-condition-card strong {
display: block;
margin-top: 20px;
color: var(--fh-heading);
font-size: 15px;
line-height: 1.6;
}

/* =========================================================
WHO WE SERVE
========================================================= */

.fire-hydrant-page .fh-who {
background: var(--fh-light);
}

.fire-hydrant-page .fh-who-grid {
display: grid;
grid-template-columns: .72fr 1.28fr;
gap: 70px;
}

.fire-hydrant-page .fh-who-heading h2 {
max-width: 500px;
}

.fire-hydrant-page .fh-audience-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-top: 30px;
}

.fire-hydrant-page .fh-audience-grid div {
position: relative;
padding: 17px 18px 17px 38px;
background: #fff;
border: 1px solid #e4e4e4;
border-radius: 5px;
color: var(--fh-heading);
font-size: 15px;
line-height: 1.4;
}

.fire-hydrant-page .fh-audience-grid div::before {
content: "";
position: absolute;
top: 22px;
left: 17px;
width: 8px;
height: 8px;
background: var(--fh-yellow);
}

/* =========================================================
PREVENTIVE PROGRAM
========================================================= */

.fire-hydrant-page .fh-preventive {
background: var(--fh-teal);
}

.fire-hydrant-page .fh-program-content {
max-width: 850px;
margin-left: 97px;
}

.fire-hydrant-page .fh-program-content p {
color: #fff;
}

.fire-hydrant-page .fh-process {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
margin: 50px 0;
padding: 30px 20px;
background: rgba(0,0,0,.16);
}

.fire-hydrant-page .fh-process div {
padding: 12px 15px;
background: #fff;
color: var(--fh-heading);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}

.fire-hydrant-page .fh-process span {
color: var(--fh-yellow);
font-size: 22px;
font-weight: 700;
}

.fire-hydrant-page .fh-program-bottom {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.fire-hydrant-page .fh-program-bottom p {
color: #fff;
}

/* =========================================================
WHY
========================================================= */

.fire-hydrant-page .fh-why {
background: #fff;
}

.fire-hydrant-page .fh-why-grid {
display: grid;
grid-template-columns: .7fr 1.3fr;
gap: 70px;
}

.fire-hydrant-page .fh-problem-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin: 30px 0;
}

.fire-hydrant-page .fh-problem-grid div {
padding: 17px 20px;
background: var(--fh-soft);
border-left: 3px solid var(--fh-teal);
color: var(--fh-heading);
font-size: 15px;
line-height: 1.5;
}

.fire-hydrant-page .fh-problem-grid div:nth-child(3n) {
border-left-color: var(--fh-yellow);
}

.fire-hydrant-page .fh-why-final {
padding: 25px 30px;
margin-top: 35px;
background: var(--fh-light-blue);
border-left: 5px solid var(--fh-yellow);
font-weight: 600;
}

/* =========================================================
ASSET MANAGEMENT
========================================================= */

.fire-hydrant-page .fh-asset {
padding: 100px 0;
background: var(--fh-dark);
}

.fire-hydrant-page .fh-asset-inner {
display: grid;
grid-template-columns: 130px 1fr;
gap: 55px;
align-items: start;
}

.fire-hydrant-page .fh-asset-number {
color: var(--fh-yellow);
font-size: 85px;
line-height: .9;
font-weight: 700;
}

.fire-hydrant-page .fh-asset-content {
max-width: 900px;
}

.fire-hydrant-page .fh-asset-content .fh-kicker {
color: var(--fh-yellow);
}

.fire-hydrant-page .fh-asset-content h2 {
margin-bottom: 30px;
color: #fff;
}

.fire-hydrant-page .fh-asset-content p {
color: #dedede;
}

.fire-hydrant-page .fh-asset-statement {
display: inline-block;
margin-top: 20px;
padding: 20px 25px;
border: 1px solid rgba(235,205,30,.45);
color: var(--fh-yellow);
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .5px;
}

/* =========================================================
FINAL
========================================================= */

.fire-hydrant-page .fh-final {
padding: 80px 0;
background: var(--fh-light-blue);
}

.fire-hydrant-page .fh-final-inner {
position: relative;
padding: 55px 60px;
background: #fff;
border-radius: 10px;
border-top: 6px solid var(--fh-teal);
box-shadow: 0 20px 50px rgba(30,40,50,.08);
text-align: center;
}

.fire-hydrant-page .fh-final h2 {
margin-bottom: 30px;
}

.fire-hydrant-page .fh-final .fh-kicker {
color: var(--fh-teal);
}

.fire-hydrant-page .fh-final-services {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
}

.fire-hydrant-page .fh-final-services span {
padding: 10px 16px;
background: var(--fh-dark);
color: #fff;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1100px) {


.fire-hydrant-page .fh-hero-grid {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 40px;
}

.fire-hydrant-page .fh-service-grid {
    grid-template-columns: 1fr;
}

.fire-hydrant-page .fh-service-card-featured {
    transform: none;
}

.fire-hydrant-page .fh-reporting-grid,
.fire-hydrant-page .fh-who-grid,
.fire-hydrant-page .fh-why-grid {
    grid-template-columns: 1fr;
    gap: 45px;
}


}

@media (max-width: 767px) {


.fire-hydrant-page .fh-container {
    padding-left: 18px;
    padding-right: 18px;
}

.fire-hydrant-page .fh-section {
    padding: 65px 0;
}

.fire-hydrant-page .fh-hero {
    padding: 65px 0;
}

.fire-hydrant-page .fh-hero::before {
    display: none;
}

.fire-hydrant-page .fh-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
}

.fire-hydrant-page .fh-hero-content h1 {
    font-size: 24px;
}

.fire-hydrant-page .fh-hero-side {
    min-height: 220px;
}

.fire-hydrant-page .fh-section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.fire-hydrant-page .fh-section-number {
    font-size: 45px;
}

.fire-hydrant-page .fh-inspection-grid,
.fire-hydrant-page .fh-condition-grid {
    grid-template-columns: 1fr;
}

.fire-hydrant-page .fh-feature-panel,
.fire-hydrant-page .fh-list-panel {
    padding: 30px 25px;
}

.fire-hydrant-page .fh-intro-light,
.fire-hydrant-page .fh-condition-intro,
.fire-hydrant-page .fh-program-content {
    margin-left: 0;
}

.fire-hydrant-page .fh-two-column-list,
.fire-hydrant-page .fh-audience-grid,
.fire-hydrant-page .fh-problem-grid,
.fire-hydrant-page .fh-program-bottom {
    grid-template-columns: 1fr;
    columns: 1;
}

.fire-hydrant-page .fh-reporting-grid {
    gap: 30px;
}

.fire-hydrant-page .fh-report-list {
    padding: 25px 20px;
}

.fire-hydrant-page .fh-condition-card {
    min-height: auto;
    padding: 30px 25px;
}

.fire-hydrant-page .fh-process {
    justify-content: flex-start;
    gap: 5px;
    padding: 20px 15px;
}

.fire-hydrant-page .fh-process span {
    display: none;
}

.fire-hydrant-page .fh-process div {
    flex: 1 1 calc(50% - 5px);
    text-align: center;
}

.fire-hydrant-page .fh-asset-inner {
    grid-template-columns: 1fr;
    gap: 25px;
}

.fire-hydrant-page .fh-asset-number {
    font-size: 60px;
}

.fire-hydrant-page .fh-final-inner {
    padding: 40px 22px;
}

.fire-hydrant-page .fh-final h2 {
    font-size: 22px;
}


}

@media (max-width: 480px) {

.fire-hydrant-page p {
    font-size: 16px;
}

.fire-hydrant-page .fh-hero-content h1 {
    font-size: 22px;
}

.fire-hydrant-page .fh-service-line span {
    width: 100%;
}

.fire-hydrant-page .fh-hero-side {
    min-height: 95px;
    padding: 15px;
}

.fire-hydrant-page .fh-hero-number {
top: 14px;
right: 3px;
    font-size: 60px;
}

.fire-hydrant-page .fh-two-column-list {
    columns: 1;
}

.fire-hydrant-page .fh-process div {
    flex-basis: 100%;
}

.fire-hydrant-page .fh-final-services span {
    width: 100%;
}


}
