/* =====================================================================
   Electric Horsepower — Direction A
   Fonts → tokens → base → header → homepage sections → footer → responsive
   ===================================================================== */

@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/centurygothic.ttf') format('truetype');
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/centurygothic-bold.ttf') format('truetype');
	font-weight: 700 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--ehp-blue:        #2f63ab;
	--ehp-blue-deep:   #244e87;
	--ehp-blue-bright: #4a86dd;
	--ehp-gold:        #f6b81d;
	--ehp-gold-2:      #fad961;
	--ehp-amber:       #d6892b;
	--ehp-ink:         #0b0b0d;
	--ehp-ink-2:       #141417;
	--ehp-ink-3:       #1d1d21;
	--ehp-paper:       #f1efea;
	--ehp-white:       #ffffff;
	--ehp-text:        #1a1a1d;
	--ehp-muted:       #6c6c70;
	--ehp-muted-d:     #9a9aa0;
	--ehp-line:        #e2ded5;
	--ehp-line-d:      #2c2c31;

	--ehp-display: 'Century Gothic', 'CenturyGothic', 'Apple Gothic', 'URW Gothic', 'Avant Garde', 'Helvetica Neue', Arial, sans-serif;
	--ehp-body:    'Century Gothic', 'CenturyGothic', 'Apple Gothic', 'URW Gothic', 'Avant Garde', 'Helvetica Neue', Arial, sans-serif;

	--ehp-wrap: 100%;
	--ehp-gutter: clamp(24px, 4vw, 72px);
}

/* ----------------------------- Base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ehp-body);
	color: var(--ehp-text);
	background: var(--ehp-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.ehp-container { width: 100%; max-width: var(--ehp-wrap); margin: 0 auto; padding: 0 var(--ehp-gutter); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.ehp-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--ehp-ink); color: #fff; padding: 10px 16px;
}
.ehp-skip-link:focus { left: 8px; top: 8px; }

.ehp-ico { flex: none; }

/* ----------------------------- Buttons ----------------------------- */
.ehp-btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--ehp-display);
	font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
	font-size: 14px; line-height: 1;
	padding: 14px 26px; border: 1px solid transparent; cursor: pointer; white-space: nowrap;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.ehp-btn:hover { transform: translateY(-1px); }
.ehp-btn--lg { padding: 17px 34px; font-size: 15px; }

.ehp-btn--gold {
	background: linear-gradient(180deg, var(--ehp-gold-2) 0%, var(--ehp-gold) 60%, #e9a912 100%);
	color: #1a1405; border-color: #e7ae18;
	box-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.ehp-btn--gold:hover { box-shadow: 0 6px 18px rgba(246,184,29,.4); }

.ehp-btn--blue {
	background: linear-gradient(180deg, var(--ehp-blue-bright) 0%, var(--ehp-blue) 100%);
	color: #fff;
}
.ehp-btn--blue:hover { box-shadow: 0 6px 18px rgba(47,99,171,.45); }

.ehp-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.ehp-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.ehp-btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.65); }
.ehp-btn--ghost-light:hover { background: rgba(255,255,255,.16); }

/* ----------------------------- Typography helpers ----------------------------- */
.ehp-h1, .ehp-h2 {
	font-family: var(--ehp-display);
	font-weight: 800; text-transform: uppercase;
	line-height: .98; letter-spacing: -0.01em; margin: 0;
	color: var(--ehp-ink);
}
.ehp-h1 { font-size: clamp(34px, 5vw, 58px); }
.ehp-h2 { font-size: clamp(28px, 3.6vw, 44px); }
.ehp-h2--light { color: #fff; }
.ehp-accent-blue { color: var(--ehp-blue); }
.ehp-accent-gold { color: var(--ehp-gold); }

.ehp-eyebrow {
	display: inline-block; font-family: var(--ehp-display);
	font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--ehp-amber); margin-bottom: 14px;
}
.ehp-eyebrow--light { color: var(--ehp-gold); }

.ehp-link {
	font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase;
	letter-spacing: .04em; font-size: 13px; color: var(--ehp-blue); white-space: nowrap;
}
.ehp-link:hover { color: var(--ehp-blue-deep); }

/* ----------------------------- Header ----------------------------- */
.ehp-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 var(--ehp-line); }
.ehp-header__accent { height: 6px; background: linear-gradient(90deg, var(--ehp-blue-deep), var(--ehp-blue-bright)); }
.ehp-header__inner {
	display: flex; align-items: center; gap: 24px;
	min-height: 86px; transition: min-height .2s ease;
}
.ehp-header.is-scrolled .ehp-header__inner { min-height: 68px; }
.ehp-header__brand { flex: none; }
.ehp-logo--header { width: 232px; height: auto; }
.ehp-header.is-scrolled .ehp-logo--header { width: 200px; }
.ehp-logo--icon { display: none; height: 46px; width: auto; }

.ehp-nav { margin-left: auto; }
.ehp-nav__menu { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.ehp-nav__menu a {
	font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase;
	font-size: 15px; letter-spacing: .02em; color: var(--ehp-ink); padding: 6px 0;
	border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.ehp-nav__menu a:hover,
.ehp-nav__menu .current-menu-item > a { color: var(--ehp-blue); border-color: var(--ehp-gold); }

.ehp-header__actions { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.ehp-header__phone {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--ehp-display); font-weight: 600; font-size: 15px; color: var(--ehp-ink);
	white-space: nowrap;
}
.ehp-header__phone .ehp-ico { color: var(--ehp-blue); }
.ehp-header__phone:hover { color: var(--ehp-blue); }

.ehp-nav__toggle {
	display: none; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto;
}
.ehp-nav__bars { display: block; width: 26px; }
.ehp-nav__bars span { display: block; height: 3px; background: var(--ehp-ink); border-radius: 2px; }
.ehp-nav__bars span + span { margin-top: 5px; }

/* ----------------------------- Sections shell ----------------------------- */
.ehp-section { padding: 86px 0; background: var(--ehp-white); }
.ehp-section__head { margin-bottom: 48px; max-width: 1100px; }
.ehp-section__head--row,
.ehp-why__head {
	display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; max-width: none;
}
.ehp-section__head--row { align-items: end; margin-bottom: 48px; }
.ehp-section__head--row > .ehp-btn,
.ehp-section__head--row > .ehp-link { justify-self: end; align-self: end; }
.ehp-section__head--textrow { align-items: start; margin-bottom: 0; }
.ehp-section__head--textrow .ehp-prose p { margin-top: 0; }
.ehp-section__intro { color: var(--ehp-muted); font-size: 16px; margin: 0; }

/* ----------------------------- Hero ----------------------------- */
.ehp-hero {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 140% at 80% 0%, #1a1b21 0%, var(--ehp-ink) 55%);
	color: #fff; padding: 104px 0 96px;
}
/* Faded product photo, ghosted into the right of the hero. */
.ehp-hero::after {
	content: "";
	position: absolute; inset: 0;
	background: url(../img/products/bronco.jpg) no-repeat 96% 52% / clamp(420px, 52%, 760px) auto;
	opacity: .15;
	filter: grayscale(.35) contrast(1.05);
	-webkit-mask-image: radial-gradient(78% 92% at 80% 52%, #000 26%, transparent 70%);
	        mask-image: radial-gradient(78% 92% at 80% 52%, #000 26%, transparent 70%);
	pointer-events: none;
}
.ehp-hero__inner { position: relative; z-index: 1; max-width: 1040px; margin: 0; text-align: left; }
.ehp-hero__title {
	font-family: var(--ehp-display); font-weight: 900; text-transform: uppercase;
	font-size: clamp(44px, 7vw, 92px); line-height: .92; letter-spacing: -0.015em; margin: 0 0 26px;
}
.ehp-hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: #c9c9cf; max-width: 640px; margin: 0 0 36px; }
.ehp-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ----------------------------- Cards grid ----------------------------- */
.ehp-cards { display: grid; gap: 24px; }
.ehp-cards--4 { grid-template-columns: repeat(4, 1fr); }
.ehp-cards--3 { grid-template-columns: repeat(3, 1fr); }

.ehp-card {
	background: var(--ehp-white); border: 1px solid var(--ehp-line);
	border-top: 3px solid var(--ehp-blue);
	padding: 26px 24px 28px; display: flex; flex-direction: column;
}
.ehp-card__num {
	font-family: var(--ehp-display); font-size: 11px; font-weight: 700; letter-spacing: .14em;
	color: var(--ehp-muted-d); margin-bottom: 18px;
}
.ehp-card__icon {
	width: 34px; height: 34px; margin-bottom: 16px; background-color: var(--ehp-blue);
	-webkit-mask: center / contain no-repeat; mask: center / contain no-repeat;
}
.ehp-ico-flame  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2c.5 4-2.5 5.2-2.5 8.2 0 1.7 1.2 2.6 1.2 2.6S11 11 12.4 10c1.4 3 3.6 3.6 3.6 7a4 4 0 0 1-8 .2C8 13 13 11 13 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2c.5 4-2.5 5.2-2.5 8.2 0 1.7 1.2 2.6 1.2 2.6S11 11 12.4 10c1.4 3 3.6 3.6 3.6 7a4 4 0 0 1-8 .2C8 13 13 11 13 2z'/%3E%3C/svg%3E"); }
.ehp-ico-fuel   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c4 5 6 8 6 11a6 6 0 0 1-12 0c0-3 2-6 6-11z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c4 5 6 8 6 11a6 6 0 0 1-12 0c0-3 2-6 6-11z'/%3E%3C/svg%3E"); }
.ehp-ico-wrench { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6a5 5 0 0 1-6.7 4.7L7 18l-2-2 7.3-7.3A5 5 0 0 1 18 2l-2.5 2.5L17 7l2.5 1.5L21 6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6a5 5 0 0 1-6.7 4.7L7 18l-2-2 7.3-7.3A5 5 0 0 1 18 2l-2.5 2.5L17 7l2.5 1.5L21 6z'/%3E%3C/svg%3E"); }
.ehp-ico-leaf   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19c0-9 6-14 15-14 0 9-5 15-14 15-1 0-1 0-1-1zm3-1c5-1 8-4 9-9-5 1-8 4-9 9z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19c0-9 6-14 15-14 0 9-5 15-14 15-1 0-1 0-1-1zm3-1c5-1 8-4 9-9-5 1-8 4-9 9z'/%3E%3C/svg%3E"); }
.ehp-card__title {
	font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase;
	font-size: 17px; letter-spacing: .01em; margin: 0 0 10px; color: var(--ehp-ink);
}
.ehp-card__body { font-size: 14.5px; color: var(--ehp-muted); margin: 0; }

/* ----------------------------- Fleet / products ----------------------------- */
.ehp-product { background: #fff; border: 1px solid var(--ehp-line); display: flex; flex-direction: column; }
.ehp-product__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e9e6df 0%, #d8d4cb 100%);
	position: relative;
}
.ehp-product__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.05));
}
/* Real product photo (shot on white) — contain on a clean white panel. */
.ehp-product__media--photo { background: #fff; border-bottom: 1px solid var(--ehp-line); }
.ehp-product__media--photo::after { display: none; }
.ehp-product__media--photo .ehp-pphoto {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: contain;
	padding: 16px;
}
.ehp-product__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.ehp-product__name {
	font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase;
	font-size: 18px; margin: 0; color: var(--ehp-blue);
}
.ehp-product__sku {
	font-family: var(--ehp-display); font-size: 11px; font-weight: 600; letter-spacing: .12em;
	color: var(--ehp-muted-d); text-transform: uppercase; margin-top: 4px;
}
.ehp-product__spec { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 10px; }
.ehp-product__num { font-family: var(--ehp-display); font-weight: 900; font-size: 44px; line-height: 1; color: var(--ehp-ink); }
.ehp-product__unit { font-family: var(--ehp-display); font-weight: 700; font-size: 15px; color: var(--ehp-muted); }
.ehp-product__desc { font-size: 14px; color: var(--ehp-muted); margin: 0 0 18px; }
.ehp-product__cta {
	margin-top: auto; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase;
	font-size: 13px; letter-spacing: .03em; color: var(--ehp-blue);
}
.ehp-product__cta:hover { color: var(--ehp-blue-deep); }

/* ----------------------------- Industries grid ----------------------------- */
.ehp-industries__grid {
	display: grid; grid-template-columns: repeat(5, 1fr);
	border: 1px solid var(--ehp-line); border-bottom: 0; border-right: 0; background: #fff;
}
.ehp-industries__cell {
	border-right: 1px solid var(--ehp-line); border-bottom: 1px solid var(--ehp-line);
	padding: 30px 24px 34px; min-height: 132px; display: flex; flex-direction: column; justify-content: space-between;
	transition: background .15s;
}
.ehp-industries__cell:hover { background: var(--ehp-paper); }
.ehp-industries__num { font-family: var(--ehp-display); font-size: 12px; font-weight: 700; color: var(--ehp-muted-d); letter-spacing: .1em; }
.ehp-industries__name { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 18px; color: var(--ehp-ink); letter-spacing: .005em; }

/* ----------------------------- The Numbers (dark) ----------------------------- */
.ehp-section.ehp-numbers { background: var(--ehp-ink); }
.ehp-numbers__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ehp-numbers__lead { color: #bdbdc4; font-size: 16px; margin-top: 18px; max-width: 460px; }

.ehp-calc { background: var(--ehp-ink-3); border: 1px solid var(--ehp-line-d); padding: 32px; }
.ehp-calc__title {
	font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
	font-size: 18px; color: #fff; margin: 0 0 24px; padding-bottom: 18px; border-bottom: 1px solid var(--ehp-line-d);
}
.ehp-calc__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.ehp-calc__label { font-size: 13px; color: var(--ehp-muted-d); text-transform: uppercase; letter-spacing: .08em; font-family: var(--ehp-display); font-weight: 600; }
.ehp-calc__val { font-family: var(--ehp-display); font-weight: 800; color: #fff; font-size: 18px; }
.ehp-calc__val em { color: var(--ehp-muted-d); font-style: normal; font-weight: 600; font-size: 13px; }
.ehp-calc__bar { height: 8px; background: #2a2a30; border-radius: 6px; overflow: hidden; margin: 6px 0 22px; }
.ehp-calc__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--ehp-blue), var(--ehp-blue-bright)); }
.ehp-calc__line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid var(--ehp-line-d); }
.ehp-calc__money { font-family: var(--ehp-display); font-weight: 800; color: #fff; font-size: 22px; }
.ehp-calc__save {
	margin-top: 14px; padding: 22px 24px;
	background: linear-gradient(180deg, var(--ehp-gold-2), var(--ehp-gold));
	color: #1a1405; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 16px;
}
.ehp-calc__save .ehp-calc__label { color: #5a4708; }
.ehp-calc__money--big { font-size: 40px; line-height: 1; color: #1a1405; }
.ehp-calc__save small { grid-column: 1 / -1; font-size: 11px; color: #6b550c; }

/* ----------------------------- Mid CTA band ----------------------------- */
.ehp-ctaband { background: var(--ehp-white); padding: 30px 0; border-top: 1px solid var(--ehp-line); border-bottom: 1px solid var(--ehp-line); }
.ehp-ctaband__inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.ehp-ctaband__text { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 17px; color: var(--ehp-ink); margin: 0; letter-spacing: .01em; }

/* ----------------------------- Testimonials ----------------------------- */
.ehp-quote { background: #fff; border: 1px solid var(--ehp-line); padding: 30px 28px; margin: 0; display: flex; flex-direction: column; }
.ehp-quote__mark { font-family: var(--ehp-display); font-weight: 900; font-size: 56px; line-height: .6; color: var(--ehp-blue); height: 30px; }
.ehp-quote__text { font-size: 15.5px; color: var(--ehp-text); margin: 0 0 22px; }
.ehp-quote__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.ehp-quote__cite { font-style: normal; font-family: var(--ehp-display); font-weight: 700; color: var(--ehp-muted); font-size: 13px; }
.ehp-quote__tag { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; color: var(--ehp-blue); }

/* ----------------------------- Final CTA ----------------------------- */
.ehp-finalcta {
	position: relative; overflow: hidden;
	background: linear-gradient(120deg, var(--ehp-blue-deep) 0%, var(--ehp-blue) 55%, var(--ehp-blue-bright) 100%);
	color: #fff; padding: 80px 0;
}
.ehp-finalcta__bolt {
	position: absolute; top: 0; right: -60px; bottom: 0; width: 320px;
	background: linear-gradient(180deg, var(--ehp-gold-2), var(--ehp-gold));
	clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
	opacity: .92;
}
.ehp-finalcta__inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.ehp-finalcta__copy p { color: #e7eefb; font-size: 17px; max-width: 460px; margin: 16px 0 0; }
.ehp-finalcta__accent { color: #dfeaff; }
.ehp-finalcta__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ehp-finalcta__actions .ehp-btn { width: 100%; max-width: 320px; }

/* ----------------------------- Footer ----------------------------- */
.ehp-footer { background: var(--ehp-ink); color: #fff; padding: 72px 0 0; }
.ehp-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
.ehp-logo--footer { width: 232px; margin-bottom: 22px; }
.ehp-footer__tag { color: #c5c5cc; font-size: 15px; max-width: 320px; margin: 0 0 28px; }
.ehp-footer__addr { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 14px; color: #fff; margin: 0; }

.ehp-footer__head { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--ehp-gold); margin: 0 0 20px; }
.ehp-footer__menu { list-style: none; margin: 0; padding: 0; }
.ehp-footer__menu li { position: relative; padding-left: 16px; margin-bottom: 12px; }
.ehp-footer__menu li::before { content: "•"; position: absolute; left: 0; color: #fff; }
.ehp-footer__menu a { color: #d7d7dd; font-size: 15px; }
.ehp-footer__menu a:hover { color: var(--ehp-gold); }

.ehp-footer__contactlist { list-style: none; margin: 0 0 26px; padding: 0; }
.ehp-footer__contactlist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: #d7d7dd; font-size: 14px; }
.ehp-footer__contactlist .ehp-ico { color: var(--ehp-gold); margin-top: 2px; }
.ehp-footer__contactlist a { color: #d7d7dd; }
.ehp-footer__contactlist a:hover { color: var(--ehp-gold); }
.ehp-footer__emails { display: flex; flex-direction: column; gap: 4px; }
.ehp-footer__cta { margin-top: 6px; }

.ehp-footer__bottom {
	margin-top: 56px; padding: 24px 32px; border-top: 1px solid var(--ehp-line-d);
	display: flex; align-items: center; gap: 14px; color: #8c8c93; font-size: 13px;
}
.ehp-footer__sep { color: #44444b; }

/* ----------------------------- Interior pages ----------------------------- */
.ehp-page { padding: 64px 32px 96px; max-width: 840px; }
.ehp-page__header { margin-bottom: 28px; }
.ehp-entry__content { font-size: 17px; }
.ehp-entry__content h2 { font-family: var(--ehp-display); }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
	.ehp-cards--4 { grid-template-columns: repeat(2, 1fr); }
	.ehp-industries__grid { grid-template-columns: repeat(3, 1fr); }
	.ehp-numbers__inner,
	.ehp-finalcta__inner,
	.ehp-section__head--row,
	.ehp-why__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
	.ehp-finalcta__bolt { display: none; }
	.ehp-finalcta__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 860px) {
	.ehp-logo--header { display: none; }
	.ehp-logo--icon { display: block; }
	.ehp-nav__toggle { display: block; }
	.ehp-nav { position: static; margin-left: 0; }
	.ehp-nav__menu {
		display: none; position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; gap: 0; background: #fff; border-top: 1px solid var(--ehp-line);
		box-shadow: 0 12px 24px rgba(0,0,0,.1); padding: 8px 0;
	}
	.ehp-nav.is-open .ehp-nav__menu { display: flex; }
	.ehp-nav__menu li { padding: 0 32px; }
	.ehp-nav__menu a { display: block; padding: 12px 0; border-bottom: 0; }
	.ehp-header__inner { flex-wrap: wrap; position: relative; }
	.ehp-header__actions { margin-left: auto; }
	.ehp-header__phone { display: none; }
	.ehp-cards--3 { grid-template-columns: 1fr; }
	.ehp-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.ehp-container { padding: 0 20px; }
	.ehp-cards--4,
	.ehp-industries__grid { grid-template-columns: 1fr; }
	.ehp-section { padding: 56px 0; }
	.ehp-hero { padding: 72px 0 64px; }
	/* Push the ghosted photo low/behind so it never crowds the headline on phones. */
	.ehp-hero::after { background-position: 50% 118%; background-size: 460px auto; opacity: .1; }
	.ehp-footer__grid { grid-template-columns: 1fr; }
	.ehp-footer__bottom { flex-wrap: wrap; }
	.ehp-logo--header { width: 188px; }
	/* Clean single-row mobile header: icon + hamburger only. */
	.ehp-header__cta { display: none; }
	.ehp-header__inner { flex-wrap: nowrap; }
}

/* =====================================================================
   INTERIOR PAGES — page heroes, photos, rules, product/feature, specs,
   team, contact. (About + Product templates.)
   ===================================================================== */

/* --- Breadcrumbs --- */
.ehp-crumbs { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--ehp-muted-d); margin-bottom: 22px; }
.ehp-crumbs a { color: var(--ehp-amber); }
.ehp-crumbs a:hover { color: var(--ehp-blue); }
.ehp-crumbs__sep { color: var(--ehp-muted-d); }

/* --- Light page hero (About / Products / etc.) --- */
.ehp-pagehero { padding: 48px 0 72px; background: var(--ehp-white); }
.ehp-pagehero__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; margin-top: 18px; }
.ehp-pagehero__aside p { color: var(--ehp-muted); font-size: 16px; margin: 0; }
.ehp-pagehero__actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.ehp-btn--outline { background: transparent; color: var(--ehp-ink); border-color: #cfcabf; }
.ehp-btn--outline:hover { border-color: var(--ehp-ink); }

/* --- Photo placeholders --- */
.ehp-photoband { background: var(--ehp-ink); min-height: 320px; display: flex; align-items: center; justify-content: center; }
.ehp-photoband__label { color: #fff; font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(28px, 4vw, 44px); letter-spacing: .03em; }
.ehp-photo { background: linear-gradient(135deg, #e3dfd6, #d3cfc5); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; min-height: 180px; }
.ehp-photo span { opacity: .92; }
/* Real product photo (shot on white) filling a photo slot. */
.ehp-photo--img { display: block; background: #fff; }
.ehp-photo--img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; display: block; }

/* Product lineup band — white tiles floated on the dark band. */
.ehp-photoband--montage { padding: 28px clamp(24px, 4vw, 72px); gap: 16px; flex-wrap: wrap; }
.ehp-photoband--montage img {
	flex: 1 1 180px; min-width: 0; height: 264px;
	background: #fff; border-radius: 12px; padding: 16px;
	object-fit: contain; }
@media (max-width: 860px) {
	.ehp-photoband--montage img { flex-basis: 40%; height: 200px; }
}
.ehp-photo--sq { aspect-ratio: 1 / 1; min-height: 0; }
.ehp-photo--map { min-height: 260px; margin-top: 20px; }

/* Embedded Google Maps */
.ehp-map { display: block; width: 100%; border: 0; }
.ehp-map--aside { height: 260px; margin-top: 20px; border: 1px solid var(--ehp-line); border-radius: 4px; }
.ehp-photoband--map { display: block; padding: 0; min-height: 0; }
.ehp-map--band { height: 420px; }

/* --- Prose / sub-points / highlights --- */
.ehp-prose p { color: var(--ehp-muted); font-size: 16px; }
.ehp-prose__lead { font-size: 17px; color: var(--ehp-text); }
.ehp-subpoints { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 24px; }
.ehp-subpoint__head { display: block; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--ehp-blue); margin-bottom: 8px; }
.ehp-subpoint p { font-size: 14px; color: var(--ehp-muted); margin: 0; }
.ehp-highlight { font-size: 14.5px; color: var(--ehp-muted); margin: 0 0 14px; }
.ehp-highlight strong { color: var(--ehp-ink); }

/* --- Numbered rule cards (Four rules / reasons / steps) --- */
.ehp-rule { border: 1px solid var(--ehp-line); padding: 26px 24px 30px; background: #fff; display: flex; flex-direction: column; }
.ehp-rule__num { font-family: var(--ehp-display); font-weight: 800; font-size: 52px; line-height: 1; color: #d9d5cc; margin-bottom: 14px; }

/* --- Split media (24,000 sq ft) --- */
.ehp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ehp-split__lead { color: var(--ehp-muted); margin: 18px 0 22px; }
.ehp-photogrid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; min-height: 440px; }
.ehp-photogrid .ehp-photo--tall { grid-row: 1 / span 2; min-height: 100%; }

/* --- Checklists --- */
.ehp-checklist { list-style: none; margin: 0; padding: 0; }
.ehp-checklist li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--ehp-muted); font-size: 14.5px; }
.ehp-checklist li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; background-color: var(--ehp-blue);
	-webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
	mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.ehp-checklist--tight li { font-size: 13.5px; margin-bottom: 9px; }

/* --- Team --- */
.ehp-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ehp-team__card .ehp-photo { aspect-ratio: 4 / 4.4; min-height: 0; margin-bottom: 14px; }
.ehp-team__name { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 15px; margin: 0; }
.ehp-team__title { font-size: 13px; color: var(--ehp-muted); text-transform: uppercase; letter-spacing: .06em; }

/* --- Product hero (dark) --- */
.ehp-phero { background: var(--ehp-ink); color: #fff; padding: 72px 0; }
.ehp-phero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.ehp-phero__name { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: clamp(56px, 9vw, 116px); line-height: .88; letter-spacing: -0.01em; margin: 0; color: #fff; }
.ehp-phero__sku { display: block; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--ehp-muted-d); margin-top: 10px; }
.ehp-phero__intro { color: #c9c9cf; font-size: 16px; max-width: 46ch; margin: 18px 0 28px; }
.ehp-phero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ehp-phero__media { background: linear-gradient(150deg, #e3dfd6, #cdc9bf); border-radius: 18px; min-height: 380px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
/* Real product photo (shot on white) in the dark hero — white panel, contained. */
.ehp-phero__media--photo { background: #fff; padding: 24px; overflow: hidden; }
.ehp-phero__media--photo .ehp-pphoto { width: 100%; height: 100%; max-height: 420px; object-fit: contain; display: block; }

/* Hero gallery — main photo + click-to-swap thumbnail strip. */
.ehp-phero__gallery { display: flex; flex-direction: column; gap: 12px; }
.ehp-phero__gallery .ehp-phero__media { flex: 1 1 auto; }
.ehp-phero__thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.ehp-phero__thumb {
	width: 78px; height: 64px; padding: 6px; flex: 0 0 auto;
	background: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
	cursor: pointer; transition: border-color .15s, transform .1s; }
.ehp-phero__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ehp-phero__thumb:hover { transform: translateY(-2px); }
.ehp-phero__thumb.is-active { border-color: var(--ehp-gold); box-shadow: 0 0 0 1px var(--ehp-gold); }

/* --- Stat rows --- */
.ehp-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 36px; }
.ehp-stat { padding-right: 30px; margin-right: 30px; border-right: 1px solid rgba(255,255,255,.16); }
.ehp-stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.ehp-stat__num { display: block; font-family: var(--ehp-display); font-weight: 800; font-size: 34px; line-height: 1.1; color: #fff; }
.ehp-stat__num em { font-style: normal; font-size: 14px; font-weight: 700; color: var(--ehp-muted-d); margin-left: 3px; }
.ehp-stat__label { font-family: var(--ehp-display); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ehp-muted-d); }
.ehp-stats--light { border-top: 1px solid var(--ehp-line); border-bottom: 1px solid var(--ehp-line); padding: 26px 0; margin: 4px 0 34px; }
.ehp-stats--light .ehp-stat { border-right-color: var(--ehp-line); }
.ehp-stats--light .ehp-stat__num { color: var(--ehp-ink); }
.ehp-stats--light .ehp-stat__num em { color: var(--ehp-muted); }
.ehp-stats--light .ehp-stat__label { color: var(--ehp-muted); }

/* --- L / P / H trio cards --- */
.ehp-lph { border: 1px solid var(--ehp-line); padding: 28px 26px 30px; background: #fff; display: flex; flex-direction: column; }
.ehp-lph__letter { font-family: var(--ehp-display); font-weight: 800; font-size: 60px; line-height: 1; color: var(--ehp-blue); display: block; }
.ehp-lph__label { display: block; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--ehp-muted-d); margin: 8px 0 14px; }
.ehp-lph__title { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 17px; margin: 0 0 18px; color: var(--ehp-ink); }

/* --- Specs table + safety panel --- */
.ehp-specs { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.ehp-spectable { width: 100%; border-collapse: collapse; border-top: 1px solid var(--ehp-line); }
.ehp-spectable th, .ehp-spectable td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--ehp-line); font-size: 14px; vertical-align: top; }
.ehp-spectable th { font-family: var(--ehp-body); font-weight: 500; color: var(--ehp-muted); width: 52%; }
.ehp-spectable td { font-family: var(--ehp-display); font-weight: 700; color: var(--ehp-ink); }
.ehp-safety { background: var(--ehp-ink); color: #fff; padding: 32px; }
.ehp-safety__title { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 23px; line-height: 1.05; margin: 8px 0 22px; color: #fff; }
.ehp-safety__list { list-style: none; margin: 0 0 20px; padding: 0; }
.ehp-safety__list li { position: relative; padding-left: 28px; margin-bottom: 14px; color: #d7d7dd; font-size: 14.5px; }
.ehp-safety__list li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; background-color: var(--ehp-gold);
	-webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
	mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.ehp-safety__note { font-size: 11px; color: var(--ehp-muted-d); text-transform: uppercase; letter-spacing: .07em; border-top: 1px solid var(--ehp-line-d); padding-top: 16px; margin: 0; }

/* --- Product card as link --- */
.ehp-product--link { transition: transform .15s ease, box-shadow .15s ease; }
.ehp-product--link:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }

/* --- Applications grid cells --- */
.ehp-industries__cell--tall { min-height: 200px; }
.ehp-industries__cell--tall .ehp-industries__num { margin-bottom: auto; }
.ehp-industries__desc { font-family: var(--ehp-body); text-transform: none; letter-spacing: 0; font-size: 13.5px; color: var(--ehp-muted); margin: 10px 0 0; }

/* --- Contact --- */
.ehp-contact { display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 48px; align-items: start; }
.ehp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ehp-field { display: block; margin-bottom: 18px; }
.ehp-field > span { display: block; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; color: var(--ehp-ink); margin-bottom: 8px; }
.ehp-field input, .ehp-field textarea { width: 100%; padding: 13px 14px; border: 1px solid #cfcabf; background: #fff; font-family: var(--ehp-body); font-size: 15px; color: var(--ehp-text); }
.ehp-field input:focus, .ehp-field textarea:focus { outline: 2px solid var(--ehp-blue); outline-offset: 0; border-color: var(--ehp-blue); }
.ehp-form__note { font-size: 13px; color: var(--ehp-muted); margin-top: 16px; }
.ehp-contact__aside { border: 1px solid var(--ehp-line); padding: 30px; }
.ehp-contact__head { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 22px; margin: 0 0 20px; }
.ehp-contact__list { list-style: none; margin: 0 0 24px; padding: 0; }
.ehp-contact__list li { display: flex; flex-direction: column; padding: 12px 0; border-top: 1px solid var(--ehp-line); }
.ehp-contact__list li:first-child { border-top: 0; }
.ehp-contact__k { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; color: var(--ehp-muted-d); margin-bottom: 3px; }
.ehp-contact__list a { color: var(--ehp-blue); }
.ehp-contact__list a:hover { color: var(--ehp-blue-deep); }

/* --- Interior responsive --- */
@media (max-width: 980px) {
	.ehp-pagehero__inner,
	.ehp-phero__inner,
	.ehp-split,
	.ehp-specs,
	.ehp-subpoints,
	.ehp-contact { grid-template-columns: 1fr; gap: 32px; }
	.ehp-team { grid-template-columns: repeat(2, 1fr); }
	.ehp-phero__media { min-height: 280px; }
	.ehp-photogrid { min-height: 360px; }
}
@media (max-width: 560px) {
	.ehp-team { grid-template-columns: 1fr; }
	.ehp-form__row { grid-template-columns: 1fr; }
	.ehp-stat { padding-right: 22px; margin-right: 22px; }
	.ehp-stat__num { font-size: 28px; }
}

/* =====================================================================
   LPH SERIES PAGE — chips, 2-up tiles, comparison table, spec grid,
   protection panel, applications.
   ===================================================================== */
.ehp-cards--2 { grid-template-columns: repeat(2, 1fr); }
.ehp-section--tight { padding: 56px 0; }
.ehp-mt { margin-top: 18px; }

/* Hero model chips */
.ehp-phero__chips { display: flex; gap: 8px; margin: 6px 0 18px; flex-wrap: wrap; }
.ehp-chip { font-family: var(--ehp-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.32); padding: 5px 13px; border-radius: 999px; }

/* L/P/H description line */
.ehp-lph__desc { font-size: 14px; color: var(--ehp-muted); margin: 0 0 16px; }

/* Comparison table */
.ehp-compare-wrap { overflow-x: auto; border: 1px solid var(--ehp-line); }
.ehp-compare { width: 100%; border-collapse: collapse; min-width: 720px; }
.ehp-compare th, .ehp-compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--ehp-line); font-size: 14px; }
.ehp-compare thead th { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 17px; color: var(--ehp-ink); background: var(--ehp-paper); border-bottom: 2px solid #d8d4cb; }
.ehp-compare thead th:first-child { background: transparent; }
.ehp-compare tbody th { font-family: var(--ehp-body); font-weight: 600; color: var(--ehp-muted); width: 24%; }
.ehp-compare tbody td { font-family: var(--ehp-display); font-weight: 700; color: var(--ehp-ink); }
.ehp-compare tbody tr:nth-child(even) th, .ehp-compare tbody tr:nth-child(even) td { background: #faf9f6; }
.ehp-compare__note { font-size: 12px; color: var(--ehp-muted-d); margin: 12px 0 0; }
.ehp-compare__cta { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ehp-compare__cta span { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 16px; color: var(--ehp-ink); }

/* Per-model spec blocks */
.ehp-specgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ehp-specblock { border: 1px solid var(--ehp-line); padding: 24px; }
.ehp-specblock__name { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 20px; color: var(--ehp-blue); margin: 0 0 14px; padding-bottom: 14px; border-bottom: 2px solid #e8e4db; }
.ehp-specblock .ehp-spectable { border-top: 0; }
.ehp-specblock .ehp-spectable th, .ehp-specblock .ehp-spectable td { padding: 9px 0; font-size: 13px; }
.ehp-specblock .ehp-spectable th { width: 56%; }
.ehp-specblock__opt-head { display: block; font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--ehp-muted-d); margin: 22px 0 12px; }

/* Built-in protection panel (full width, dark) */
.ehp-protect { background: var(--ehp-ink); color: #fff; padding: 40px; margin-top: 24px; }
.ehp-protect__title { font-family: var(--ehp-display); font-weight: 800; text-transform: uppercase; font-size: 26px; margin: 8px 0 24px; color: #fff; }
.ehp-protect__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.ehp-protect__list li { position: relative; padding-left: 28px; color: #d7d7dd; font-size: 14.5px; }
.ehp-protect__list li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; background-color: var(--ehp-gold);
	-webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
	mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.ehp-protect__note { font-size: 11px; color: var(--ehp-muted-d); text-transform: uppercase; letter-spacing: .07em; border-top: 1px solid var(--ehp-line-d); padding-top: 16px; margin: 0; }

/* Applications tags */
.ehp-apps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.ehp-app { font-family: var(--ehp-display); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; color: var(--ehp-ink); border: 1px solid var(--ehp-line); padding: 10px 16px; }

@media (max-width: 980px) {
	.ehp-cards--2,
	.ehp-specgrid,
	.ehp-protect__list { grid-template-columns: 1fr; }
}
