/* ============================================================
   Polyfit Theme — main stylesheet
   Implements the section-by-section spec from the design handoff.
   Design width: 1280px. Fluid down to ~360px.
   ============================================================ */

:root {
	--color-brand-orange:      #e86625;
	--color-brand-orange-dark: #c45418;
	--color-ink:               #3e424d;
	--color-ink-2:             #6a6e78;
	--color-ink-soft:          #a8abb3;
	--color-paper:             #f6f4ef;
	--color-paper-2:           #eceae3;
	--color-white:             #ffffff;
	--color-rule:              rgba(62, 66, 77, 0.14);
	--color-rule-strong:       rgba(62, 66, 77, 0.28);

	--font-display: "Archivo", "Inter", system-ui, -apple-system, sans-serif;
	--font-body:    "Inter", "Manrope", system-ui, -apple-system, sans-serif;
	--font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

	--section-x: clamp(20px, 4vw, 56px);
	--section-y: clamp(56px, 8vw, 96px);

	--container-max: 1280px;
}

/* ---------- reset-ish baseline ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Defensive: kill any gap WP's flow layout might add between top-level sections */
main.wp-block-group > *,
.wp-site-blocks > * { margin-top: 0; margin-bottom: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-brand-orange); }

:focus-visible {
	outline: 2px solid var(--color-brand-orange);
	outline-offset: 2px;
}

.pf-display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; }
.pf-eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.pf-orange { color: var(--color-brand-orange); }
.pf-ink-2  { color: var(--color-ink-2); }

/* Universal CTA buttons */
.pf-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 16px 28px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 15px;
	font-family: var(--font-body);
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.pf-btn--primary {
	background: var(--color-brand-orange);
	color: var(--color-white);
	box-shadow: 0 1px 0 var(--color-brand-orange-dark);
}
.pf-btn--primary:hover { background: var(--color-brand-orange-dark); color: var(--color-white); }
.pf-btn--secondary {
	background: transparent;
	color: var(--color-ink);
	border: 1.5px solid var(--color-ink);
}
.pf-btn--secondary:hover { background: var(--color-ink); color: var(--color-paper); }
.pf-btn--dark {
	background: var(--color-ink);
	color: var(--color-white);
}
.pf-btn--dark:hover { background: #2a2d35; color: var(--color-white); }
.pf-btn--sm { padding: 12px 22px; font-size: 14px; }

/* Image placeholders — shown until real media is uploaded */
.pf-placeholder {
	background: var(--color-paper-2);
	background-image:
		linear-gradient(135deg, rgba(62,66,77,0.04) 25%, transparent 25%, transparent 50%, rgba(62,66,77,0.04) 50%, rgba(62,66,77,0.04) 75%, transparent 75%);
	background-size: 24px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	padding: 12px;
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.pf-topbar {
	background: var(--color-paper-2);
	border-bottom: 1px solid var(--color-rule);
	font-size: 12px;
	color: var(--color-ink-2);
	padding-left: var(--section-x);
	padding-right: var(--section-x);
}
.pf-topbar__inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	max-width: var(--container-max);
	margin: 0 auto;
}
.pf-topbar__group { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.pf-topbar__sep   { color: var(--color-rule-strong); }
.pf-topbar a { color: var(--color-ink); }

/* ============================================================
   MAIN NAV
   ============================================================ */
.pf-nav-wrap {
	border-bottom: 1px solid var(--color-rule);
	background: var(--color-paper);
	position: relative;
	z-index: 2;
	padding-left: var(--section-x);
	padding-right: var(--section-x);
}
.pf-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	max-width: var(--container-max);
	margin: 0 auto;
}
.pf-nav__logo img { height: 48px; width: auto; display: block; }
.pf-nav__links {
	display: flex;
	gap: 30px;
	align-items: center;
}
.pf-nav__links a {
	font-size: 14px;
	color: var(--color-ink);
	font-weight: 500;
}
.pf-nav__cta {
	padding: 12px 22px;
	background: var(--color-brand-orange);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	border-radius: 2px;
	box-shadow: 0 1px 0 var(--color-brand-orange-dark);
}
.pf-nav__cta:hover { background: var(--color-brand-orange-dark); color: var(--color-white); }

/* ============================================================
   HERO — default
   ============================================================ */
.pf-hero {
	position: relative;
	border-bottom: 1px solid var(--color-rule);
	overflow: hidden;
	padding-left: var(--section-x);
	padding-right: var(--section-x);
}
.pf-hero__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 40px;
	gap: 16px;
	flex-wrap: wrap;
}
.pf-hero__top { padding: 64px 0 56px; }
.pf-hero__h1 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(44px, 9vw, 124px);
	line-height: 0.92;
	margin: 0;
	color: var(--color-ink);
	max-width: 1180px;
}
.pf-hero__h1 .pf-orange { color: var(--color-brand-orange); }
.pf-hero__body {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 64px;
	margin-top: 56px;
	align-items: end;
}
.pf-hero__lede {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--color-ink-2);
	line-height: 1.5;
	margin: 0;
	max-width: 700px;
}
.pf-hero__ctas {
	display: flex;
	gap: 14px;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.pf-hero__photos {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	border-top: 1px solid var(--color-rule);
}
.pf-hero__photos > .pf-placeholder { border-right: 1px solid var(--color-rule); }
.pf-hero__photos > .pf-placeholder:last-child { border-right: none; }
.pf-hero__photos > :nth-child(1) { aspect-ratio: 16 / 9; }
.pf-hero__photos > :nth-child(2),
.pf-hero__photos > :nth-child(3) { aspect-ratio: 4 / 3; }
.pf-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--color-rule);
}
.pf-hero__stat {
	padding: 28px 32px;
	border-right: 1px solid var(--color-rule);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
}
.pf-hero__stat:last-child { border-right: none; }
.pf-hero__stat-v {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: 38px;
	line-height: 1;
	color: var(--color-ink);
}
.pf-hero__stat-l {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-ink-2);
	margin-top: 8px;
}
.pf-hero__stat-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-brand-orange);
	flex-shrink: 0;
}

/* ============================================================
   HERO — split
   ============================================================ */
.pf-hero--split { min-height: 680px; }
.pf-hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 680px;
}
.pf-hero-split__content {
	padding: 88px 48px 88px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.pf-hero-split__swoosh {
	position: absolute;
	top: 48px;
	right: 24px;
	width: 280px;
	height: 140px;
	opacity: 0.4;
	pointer-events: none;
	color: var(--color-brand-orange);
}
.pf-hero-split__swoosh svg { width: 100%; height: 100%; overflow: visible; stroke-width: 3; }
.pf-hero-split__eyebrow { margin-bottom: 24px; }
.pf-hero-split__h1 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(40px, 6.5vw, 82px);
	line-height: 0.96;
	margin: 0;
	color: var(--color-ink);
}
.pf-hero-split__lede {
	font-size: 17px;
	color: var(--color-ink-2);
	max-width: 480px;
	margin-top: 28px;
	line-height: 1.55;
}
.pf-hero-split__ctas {
	display: flex;
	gap: 14px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.pf-hero-split__photo { min-height: 100%; }

/* ============================================================
   SECTION HEAD (numeral with swoosh + eyebrow + h2)
   ============================================================ */
.pf-sechead {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 32px;
	margin-bottom: 80px;
	align-items: start;
}
.pf-sechead__numwrap {
	position: relative;
	height: 100px;
}
.pf-sechead__swoosh {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	pointer-events: none;
}
.pf-sechead__swoosh svg { width: 100%; height: 100%; overflow: visible; }
.pf-sechead__num {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(56px, 7vw, 88px);
	line-height: 1;
	color: var(--color-brand-orange);
	position: relative;
}
.pf-sechead__eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-orange);
	margin-bottom: 12px;
}
.pf-sechead__h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(36px, 4.5vw, 68px);
	line-height: 1.0;
	margin: 0;
	color: var(--color-ink);
}
.pf-sechead--dark .pf-sechead__h2 { color: var(--color-paper); }

/* ============================================================
   SECTION wrapper — full-bleed bg, gutter as outer padding,
   inner content capped at container-max with NO inner padding
   so visible borders, text, and grids all share the same left edge.
   ============================================================ */
.pf-section {
	padding-top: var(--section-y);
	padding-bottom: var(--section-y);
	padding-left: var(--section-x);
	padding-right: var(--section-x);
	border-bottom: 1px solid var(--color-rule);
}
.pf-section--paper-2 { background: var(--color-paper-2); }
.pf-section--ink {
	background: var(--color-ink);
	color: var(--color-paper);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-section > *,
.pf-hero-split,
.pf-hero__top,
.pf-hero__photos,
.pf-hero__stats,
.pf-cta__inner {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* ============================================================
   SERVICES (§01)
   ============================================================ */
.pf-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--color-rule);
	border: 1px solid var(--color-rule);
}
.pf-service-card {
	padding: 40px 36px 36px;
	background: var(--color-paper);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 300px;
}
.pf-service-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}
.pf-service-card__spec { color: var(--color-ink-2); font-size: 10px; }
.pf-service-card__spacer { flex: 1; }
.pf-service-card__name {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 22px;
	margin: 0;
	color: var(--color-ink);
}
.pf-service-card__desc {
	font-size: 14px;
	color: var(--color-ink-2);
	margin: 0;
	line-height: 1.55;
}
.pf-service-card__cta {
	margin-top: 8px;
	color: var(--color-brand-orange);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.pf-quickstart {
	padding: 40px 36px 36px;
	background: var(--color-ink);
	color: var(--color-paper);
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
	min-height: 300px;
}
.pf-quickstart__h {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 26px;
	margin: 0;
	line-height: 1.1;
	color: var(--color-paper);
}
.pf-quickstart__cta {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-ink);
	background: var(--color-brand-orange);
	padding: 10px 14px;
	align-self: flex-start;
}

/* ============================================================
   PRODUCTS (§02)
   ============================================================ */
.pf-products-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.pf-product-card {
	display: flex;
	flex-direction: column;
	background: var(--color-paper);
	border: 1px solid var(--color-rule);
	color: inherit;
}
.pf-product-card .pf-placeholder { aspect-ratio: 4 / 3; }
.pf-product-card__body {
	padding: 20px 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.pf-product-card__name {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 18px;
	margin: 0;
	color: var(--color-ink);
	line-height: 1.2;
}
.pf-product-card__desc {
	font-size: 13px;
	color: var(--color-ink-2);
	margin: 0;
	line-height: 1.5;
}
.pf-product-card__cta {
	margin-top: auto;
	padding-top: 12px;
	color: var(--color-brand-orange);
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.pf-plastics {
	margin-top: 40px;
	padding: 24px 28px;
	background: var(--color-paper);
	border: 1px solid var(--color-rule);
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.pf-plastics__label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-ink);
}
.pf-plastics__rule { flex: 1; height: 1px; background: var(--color-rule); }
.pf-plastics__item { font-size: 13px; color: var(--color-ink); font-weight: 500; }

/* ============================================================
   INDUSTRIES (§03)
   ============================================================ */
.pf-industries {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color-rule);
	background: var(--color-paper);
}
.pf-industry-row {
	display: grid;
	grid-template-columns: 120px 1fr 1.5fr 280px 80px;
	gap: 32px;
	padding: 28px 32px;
	border-bottom: 1px solid var(--color-rule);
	align-items: center;
	color: inherit;
}
.pf-industry-row:last-child { border-bottom: none; }
.pf-industry-row__tag {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--color-brand-orange);
	padding: 6px 10px;
	justify-self: start;
}
.pf-industry-row__name {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 28px;
	margin: 0;
	color: var(--color-ink);
}
.pf-industry-row__desc { font-size: 14px; color: var(--color-ink-2); margin: 0; line-height: 1.55; }
.pf-industry-row__photo { height: 80px; }
.pf-industry-row__arrow { text-align: right; color: var(--color-brand-orange); font-size: 22px; }

/* ============================================================
   PLANT & MACHINERY (§04) — dark
   ============================================================ */
.pf-plant-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-brand-card {
	padding: 28px;
	background: var(--color-ink);
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 180px;
}
.pf-brand-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}
.pf-brand-card__name {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 24px;
	margin: 0;
	color: var(--color-paper);
}
.pf-brand-card__range {
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-orange);
}
.pf-brand-card__spacer { flex: 1; }
.pf-brand-card__models { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
.pf-brand-card__cta {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-orange);
}
.pf-plant-footer {
	margin-top: 32px;
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.pf-plant-footer__note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	flex: 1;
	min-width: 280px;
}

/* ============================================================
   PROCESS (§05)
   ============================================================ */
.pf-process {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.pf-process__line {
	position: absolute;
	top: 28px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: var(--color-rule);
	z-index: 0;
}
.pf-process__step {
	position: relative;
	padding: 0 24px 0 0;
	z-index: 1;
}
.pf-process__circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-brand-orange);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: 20px;
	position: relative;
	margin-bottom: 24px;
	box-shadow: 0 0 0 8px var(--color-paper-2);
}
.pf-process__title {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 24px;
	margin: 0;
	color: var(--color-ink);
}
.pf-process__desc {
	font-size: 14px;
	color: var(--color-ink-2);
	margin-top: 12px;
	line-height: 1.55;
}

/* ============================================================
   WHY POLYFIT (§06)
   ============================================================ */
.pf-values {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
}
.pf-values__intro h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.0;
	margin: 0;
	color: var(--color-ink);
}
.pf-values__intro p {
	font-size: 15px;
	color: var(--color-ink-2);
	margin-top: 24px;
	line-height: 1.65;
	max-width: 380px;
}
.pf-values__table {
	display: grid;
	grid-template-columns: 1fr;
	border: 1px solid var(--color-rule);
}
.pf-value-row {
	display: grid;
	grid-template-columns: 52px 200px 1fr;
	padding: 22px 24px;
	gap: 24px;
	border-bottom: 1px solid var(--color-rule);
	align-items: center;
}
.pf-value-row:last-child { border-bottom: none; }
.pf-value-row__idx {
	width: 36px;
	height: 36px;
	background: var(--color-brand-orange);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: 14px;
}
.pf-value-row__name {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 22px;
	color: var(--color-ink);
}
.pf-value-row__desc { font-size: 14px; color: var(--color-ink-2); line-height: 1.55; }

/* ============================================================
   CTA — orange section
   ============================================================ */
.pf-cta {
	background: var(--color-brand-orange);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
	padding-left: var(--section-x);
	padding-right: var(--section-x);
}
.pf-cta__swoosh {
	position: absolute;
	top: -80px;
	right: -120px;
	width: 700px;
	height: 400px;
	opacity: 0.18;
	pointer-events: none;
}
.pf-cta__swoosh svg { width: 100%; height: 100%; overflow: visible; }
.pf-cta__inner { padding: var(--section-y) 0; position: relative; }
.pf-cta__eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.7;
	margin-bottom: 32px;
}
.pf-cta__h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: clamp(36px, 7vw, 96px);
	line-height: 0.96;
	margin: 0;
	color: var(--color-white);
	max-width: 1100px;
}
.pf-cta__body {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 80px;
	align-items: end;
	margin-top: 64px;
}
.pf-cta__lede {
	font-size: 18px;
	opacity: 0.9;
	line-height: 1.5;
	margin: 0;
	max-width: 540px;
}
.pf-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}
.pf-cta__call { font-size: 14px; color: var(--color-white); opacity: 0.85; }

/* ============================================================
   FOOTER
   ============================================================ */
.pf-footer {
	background: var(--color-ink);
	color: var(--color-paper);
	padding-left: var(--section-x);
	padding-right: var(--section-x);
}
.pf-footer__cols {
	padding: 64px 0 40px;
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 48px;
	max-width: var(--container-max);
	margin: 0 auto;
}
.pf-footer__brand-pill {
	display: inline-block;
	background: var(--color-white);
	padding: 14px 18px;
	margin-bottom: 24px;
}
.pf-footer__brand-pill img { height: 44px; width: auto; display: block; }
.pf-footer__brand-p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin: 0;
	max-width: 320px;
}
.pf-footer__col-head {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-orange);
	margin-bottom: 16px;
}
.pf-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pf-footer__list li, .pf-footer__list a { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.pf-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	gap: 16px;
	flex-wrap: wrap;
	max-width: var(--container-max);
	margin: 0 auto;
}
.pf-footer__bottom a { color: inherit; }
.pf-footer__legal { display: flex; gap: 24px; }

/* ============================================================
   RESPONSIVE — collapse grids at tablet and mobile
   ============================================================ */
@media (max-width: 1023px) {
	.pf-hero--split { min-height: 0; }
	.pf-hero-split { grid-template-columns: 1fr; min-height: 0; }
	.pf-hero-split__content { padding: 64px var(--section-x); }
	.pf-hero-split__photo { aspect-ratio: 16 / 9; min-height: 0; }
	.pf-hero-split__swoosh { width: 200px; height: 100px; right: 16px; top: 24px; }

	.pf-hero__body { grid-template-columns: 1fr; gap: 32px; }
	.pf-hero__ctas { justify-content: flex-start; }
	.pf-hero__photos { grid-template-columns: 1fr 1fr; }
	.pf-hero__photos > :nth-child(3) { display: none; }
	.pf-hero__stats { grid-template-columns: repeat(2, 1fr); }
	.pf-hero__stat:nth-child(2) { border-right: none; }
	.pf-hero__stat:nth-child(1),
	.pf-hero__stat:nth-child(2) { border-bottom: 1px solid var(--color-rule); }

	.pf-services-grid,
	.pf-plant-grid { grid-template-columns: repeat(2, 1fr); }
	.pf-products-grid { grid-template-columns: repeat(2, 1fr); }
	.pf-products-grid > .pf-product-card:nth-child(5) { grid-column: span 2; }

	.pf-industry-row {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"tag name"
			"desc desc"
			"photo arrow";
		gap: 16px;
	}
	.pf-industry-row__tag { grid-area: tag; }
	.pf-industry-row__name { grid-area: name; }
	.pf-industry-row__desc { grid-area: desc; }
	.pf-industry-row__photo { grid-area: photo; height: 100px; }
	.pf-industry-row__arrow { grid-area: arrow; }

	.pf-process { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
	.pf-process__line { display: none; }

	.pf-values { grid-template-columns: 1fr; gap: 48px; }
	.pf-value-row { grid-template-columns: 36px 1fr; grid-template-areas: "idx name" "idx desc"; row-gap: 8px; }
	.pf-value-row__idx { grid-area: idx; }
	.pf-value-row__name { grid-area: name; }
	.pf-value-row__desc { grid-area: desc; }

	.pf-cta__body { grid-template-columns: 1fr; gap: 32px; }
	.pf-cta__actions { align-items: flex-start; }

	.pf-footer__cols { grid-template-columns: 1fr 1fr; }

	.pf-sechead { grid-template-columns: 100px 1fr; gap: 16px; margin-bottom: 40px; }
}

@media (max-width: 639px) {
	.pf-topbar__group { gap: 8px; font-size: 11px; }
	.pf-topbar__inner { flex-direction: column; gap: 4px; }
	.pf-topbar__group:nth-child(1) > :nth-child(3) { display: none; } /* hide hours on mobile */

	.pf-nav__links { display: none; } /* TODO: hamburger */
	.pf-nav__cta { padding: 10px 14px; font-size: 13px; }

	.pf-hero__top { padding: 40px var(--section-x) 32px; }
	.pf-hero__head { gap: 8px; }
	.pf-hero__head > :nth-child(2) { display: none; }
	.pf-hero__photos { grid-template-columns: 1fr; }
	.pf-hero__photos > .pf-placeholder { border-right: none; border-bottom: 1px solid var(--color-rule); }
	.pf-hero__photos > :nth-child(2) { display: none; }
	.pf-hero__stats { grid-template-columns: 1fr; }
	.pf-hero__stat { border-right: none; border-bottom: 1px solid var(--color-rule); }
	.pf-hero__stat:last-child { border-bottom: none; }
	.pf-hero__stat-v { font-size: 30px; }

	.pf-services-grid,
	.pf-plant-grid,
	.pf-products-grid { grid-template-columns: 1fr; }
	.pf-products-grid > .pf-product-card:nth-child(5) { grid-column: auto; }

	.pf-process { grid-template-columns: 1fr; row-gap: 32px; }

	.pf-footer__cols { grid-template-columns: 1fr; padding: 48px var(--section-x) 24px; gap: 32px; }
	.pf-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Hide WP admin bar offset for our fixed-padding designs
   ============================================================ */
.admin-bar .pf-topbar { /* WP admin bar adds top padding; OK to leave default. */ }
