/* Self-hosted fonts (no CDN) — latin subset, font-display:swap */
@font-face{font-family:'Racing Sans One';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/racing-sans-one-400.woff2') format('woff2');}
@font-face{font-family:'Roboto';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/roboto-400.woff2') format('woff2');}
@font-face{font-family:'Roboto';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/roboto-500.woff2') format('woff2');}
@font-face{font-family:'Roboto';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/roboto-700.woff2') format('woff2');}
@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/roboto-slab-400.woff2') format('woff2');}
@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/roboto-slab-500.woff2') format('woff2');}
@font-face{font-family:'Roboto Slab';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/roboto-slab-700.woff2') format('woff2');}
/* =========================================================================
   P.A. Inc. — main stylesheet
   Rebuilt to match the prior Elementor design. Mobile-first.
   ========================================================================= */

/* ------------------------------------------------------------------ Tokens */
:root {
	--c-yellow: #FEFF00;   /* primary accent */
	--c-blue:   #0455A6;   /* secondary / links */
	--c-navy:   #1b252f;   /* dark section bg / overlay */
	--c-text:   #000000;
	--c-white:  #ffffff;
	--c-muted:  #444343;
	--c-line:   #e2e5e9;
	--c-phone:  #d40000;   /* header phone (red; darkened from #ff0000 to meet WCAG AA 4.5:1 on white) */

	--font-body:    "Roboto", Arial, Helvetica, sans-serif;
	/* Live site headings are a bold sans-serif (Helvetica/Roboto), NOT a slab serif. */
	--font-head:    "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-display: "Racing Sans One", "Roboto", sans-serif;

	--container: 1140px;
	--gutter: 20px;
	--radius: 8px;        /* UI: cards, buttons, inputs */
	--radius-img: 12px;   /* photos / images */
	--shadow: 0 0 10px 0 rgba(0,0,0,.5);
	--header-h: 90px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: var(--c-text);
	background: var(--c-white);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
/* Round every content/photo image so nothing reads as a hard square. */
.site-main img { border-radius: var(--radius-img); }
.site-branding .custom-logo { border-radius: 8px; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--c-blue); color:#fff; padding:.6em 1em; }

/* --- Accessibility (WCAG / ADA) --- */
/* Reveal screen-reader-only content (e.g. the skip link) on keyboard focus. */
.screen-reader-text:focus {
	position: static !important; width: auto; height: auto; margin: 0;
	clip: auto; clip-path: none; overflow: visible; white-space: normal;
	display: inline-block; padding: .6em 1em; background: var(--c-blue);
	color: #fff; z-index: 100000; border-radius: 2px;
}
.skip-link:focus { position: absolute !important; left: 8px; top: 8px; }

/* Visible keyboard focus for every interactive element. */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, [tabindex]:focus-visible, .btn:focus-visible {
	outline: 3px solid var(--c-yellow); outline-offset: 2px;
}
/* On blue/navy bands (where a yellow ring can wash out) add a white halo. */
.stock a:focus-visible, .features a:focus-visible, .band-dark a:focus-visible,
.loc-stock a:focus-visible, .warehouse a:focus-visible, .btn:focus-visible,
.site-footer a:focus-visible {
	outline-color: #fff; box-shadow: 0 0 0 5px rgba(4,85,166,.95);
}

/* Honor reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important; animation-iteration-count: 1 !important;
		transition-duration: .001ms !important; scroll-behavior: auto !important;
	}
}

/* ------------------------------------------------------------------ Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }

/* Yellow angled band divider — the live site separates its colored bands with a
   rising yellow slash. Applied to the bottom edge of the blue/navy bands. */
.features::after,
.warehouse::after,
.richtext::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30px;
	background: var(--c-yellow);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	z-index: 2;
}

/* Downward triangle divider used atop several sections on the live site */
.has-triangle { position: relative; }
.has-triangle::before {
	content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 60px;
	background: var(--c-white);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 2;
}

/* ------------------------------------------------------------------ Buttons */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 700;
	font-style: italic;
	background: var(--c-yellow);
	color: var(--c-blue);
	padding: 14px 28px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: none;
	cursor: pointer;
	text-transform: none;
	transition: transform .2s ease, background .2s ease;
	line-height: 1;
}
.btn:hover { background: #ffe100; text-decoration: none; transform: translateY(-2px); }
.btn::after { content: " \00BB"; }
.btn--blue { background: var(--c-blue); color: #fff; }
.btn--blue:hover { background: #0367cc; }

/* ================================================================= HEADER */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--c-white);
	box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
/* Keep the sticky header below the WordPress admin bar when logged in. */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }
.site-branding .custom-logo { width: auto; max-height: 70px; }
.custom-logo-link { display: inline-block; }

.main-navigation { display: flex; align-items: center; gap: 22px; }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 22px; }
.nav-menu li { position: relative; }
.nav-menu a {
	font-family: var(--font-body); font-weight: 500; font-size: 15px;
	color: #222; padding: 6px 0; display: inline-block; text-decoration: none;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--c-blue); }

.nav-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: 0;
	background: #fff; min-width: 200px; box-shadow: 0 6px 18px rgba(0,0,0,.15);
	border-top: 3px solid var(--c-blue);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; z-index: 20;
}
.nav-menu .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li { display: block; }
.nav-menu .sub-menu a { display: block; padding: 8px 18px; font-weight: 400; }
.nav-menu .sub-menu a:hover { background: #f4f6f8; }
.menu-item-has-children > a::after { content: " \25BE"; font-size: .8em; }

.header-phone {
	font-family: var(--font-body); font-weight: 700; color: var(--c-phone);
	white-space: nowrap; font-size: 15px;
}
.header-phone:hover { text-decoration: none; color: #d40000; }
.header-phone-icon { margin-right: 4px; }

.menu-toggle { display: none; }

/* ================================================================= HERO */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex; align-items: center; justify-content: center;
	text-align: center;
	background: var(--c-navy) center/cover no-repeat;
	color: #fff;
	padding: 100px 20px;
}
.hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,28,38,.55), rgba(20,28,38,.75));
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
	font-family: var(--font-body); font-style: italic; font-weight: 700;
	color: var(--c-yellow); font-size: 18px; margin-bottom: 10px;
	text-transform: capitalize;
}
.hero-brand {
	font-family: var(--font-head); font-style: italic; font-weight: 700;
	font-size: 34px; color: #fff; margin: 0 0 6px;
}
.hero-title {
	font-family: var(--font-head); font-weight: 700; color: #fff;
	font-size: 40px; line-height: 1.15; margin: 0 0 14px;
}
.hero-sub {
	font-family: var(--font-body); font-style: italic; color: var(--c-yellow);
	font-size: 16px; margin-bottom: 26px; text-transform: capitalize;
}

.hero-phone { display: inline-block; margin: 6px 0 18px; font-size: 22px; color: var(--c-yellow) !important; font-weight: 700; }
.hero-phone:hover { color: #fff !important; }
.hero-cta { margin-top: 4px; }

/* Decorative full-width photo bands (the Elementor "slideshow" strips) */
.photo-band { height: 420px; background: var(--c-navy) center/cover no-repeat; }

/* ================================================================= SECTION HEADS */
.eyebrow {
	font-family: var(--font-body); font-weight: 500; text-transform: uppercase;
	letter-spacing: .06em; color: var(--c-blue); font-size: 15px; margin-bottom: 6px;
}
.section-title { font-size: 34px; color: var(--c-navy); margin: 0 0 .4em; font-style: italic; text-transform: uppercase; letter-spacing: .01em; }
.section-title--center { text-align: center; }
.rule { width: 90px; height: 4px; background: var(--c-yellow); border: 0; margin: 14px 0; }
.rule--center { margin-left: auto; margin-right: auto; }

/* ================================================================= FEATURE CARDS */
/* Live: full-width royal-blue band, plain white icons (no circle/card),
   white italic uppercase titles. Yellow angled divider at the bottom. */
.features { background: var(--c-blue); position: relative; padding-bottom: 78px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card { text-align: center; padding: 10px 22px; background: transparent; border-radius: 0; box-shadow: none; }
.feature-icon {
	width: auto; height: auto; margin: 0 auto 12px; border-radius: 0;
	background: transparent; color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 52px; line-height: 1; transition: transform .25s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.08); }
.feature-card h3 { font-size: 22px; margin-bottom: 6px; font-style: italic; text-transform: uppercase; }
.feature-card h3 a { color: #fff; }
.feature-card h3 a:hover { color: var(--c-yellow); text-decoration: none; }
.feature-card p { margin: 0; color: #eaf1f9; font-style: italic; }

/* ================================================================= PRODUCT GRID */
/* Live: OUR STOCK sits on the dark navy band, yellow italic eyebrow + title,
   dark transparent cards with yellow titles, light body, yellow text link. */
.stock { background: var(--c-navy); }
.stock .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.stock .section-title { color: var(--c-yellow); }
.stock .rule { background: var(--c-yellow); }
.stock-head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 36px; }
.stock-head .section-title { font-size: 40px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
	background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
	padding: 22px 20px; display: flex; flex-direction: column;
}
.product-card h3 { font-size: 18px; color: var(--c-yellow); margin-bottom: 10px; font-style: italic; }
.product-card p { font-size: 14px; color: #d7dde3; line-height: 1.6; flex: 1; }
.product-card .btn {
	align-self: flex-start; margin-top: 14px; font-size: 14px; padding: 0;
	background: transparent; box-shadow: none; color: var(--c-yellow); font-style: italic;
}
.product-card .btn:hover { background: transparent; transform: none; color: #fff; text-decoration: none; }
.stock-subhead { text-align: center; font-size: 24px; color: var(--c-yellow); margin-top: 44px; font-style: italic; }
.product-card--compact { justify-content: space-between; min-height: 120px; }
.product-card--compact h3 { margin-bottom: 16px; }
.product-card--compact .btn { align-self: flex-start; }

/* ================================================================= WAREHOUSE BAND */
/* Live: royal-blue band, images left, white italic heading + white copy,
   yellow eyebrow, yellow "About Us" button. */
.warehouse { background: var(--c-blue); position: relative; padding-bottom: 84px; }
.warehouse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.warehouse-media img { border-radius: var(--radius-img); margin-bottom: 20px; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.warehouse-media img:last-child { margin-bottom: 0; }
.warehouse-copy .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.warehouse-copy .section-title { color: #fff; }
.warehouse-copy .rule { background: var(--c-yellow); }
.warehouse-copy p { color: #eaf1f9; }

/* ================================================================= TITLE BANDS (dark overlay) */
.band-dark {
	position: relative; text-align: center; color: #fff;
	background: var(--c-navy) center/cover no-repeat; padding: 90px 20px;
}
.band-dark::before { content:""; position:absolute; inset:0; background: rgba(15,22,31,.68); }
.band-dark > * { position: relative; z-index: 2; }
.band-dark .brand-sm { font-family: var(--font-head); font-style: italic; font-size: 24px; color: var(--c-yellow); margin-bottom: 8px; }
.band-dark h2 { font-size: 38px; color: #fff; font-style: italic; text-transform: uppercase; }

/* ================================================================= TESTIMONIALS */
/* Live: navy band, yellow italic eyebrow, white italic uppercase title,
   white quote, yellow cite. */
.testimonials { background: var(--c-navy); text-align: center; }
.testimonials .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.testimonials .section-title { color: #fff; }
.quote-icon {
	width: 64px; height: 64px; margin: 0 auto 14px; border-radius: var(--radius);
	background: var(--c-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.testi-track { max-width: 820px; margin: 26px auto 0; }
.testi-slide { display: none; padding: 0 10px; }
.testi-slide.is-active { display: block; }
.testi-quote { font-size: 19px; font-style: italic; color: #eef2f6; line-height: 1.7; }
.testi-cite { display: block; margin-top: 16px; font-weight: 700; color: var(--c-yellow); font-style: normal; }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
/* Visible dot stays 12px; a transparent border expands the tap target to 24px
   (WCAG 2.5.8) without changing the look. */
.testi-dot {
	width: 12px; height: 12px; box-sizing: content-box;
	border: 6px solid transparent; background-clip: padding-box;
	border-radius: 50%; background-color: #c3ccd4; cursor: pointer; padding: 0;
}
.testi-dot.is-active { background-color: var(--c-blue); }

/* ================================================================= RICH TEXT / INVENTORY */
/* Live: royal-blue band, white text, white uppercase headings. */
.richtext { background: var(--c-blue); position: relative; padding-bottom: 84px; }
.richtext h2 { font-size: 28px; color: #fff; margin-top: 1.2em; font-style: italic; text-transform: uppercase; }
.richtext h2:first-child { margin-top: 0; }
.richtext p { color: #eaf1f9; }
.richtext ul { padding-left: 1.3em; }
.richtext ul li { font-weight: 700; margin-bottom: 8px; color: #fff; }

/* ================================================================= TAGLINE BAND */
.tagline-band { background: var(--c-blue); color: #fff; }
.tagline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tagline-band .tagline-slogan { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: 20px; color: var(--c-yellow); margin-bottom: 12px; }
.tagline-band h2 { font-size: 30px; color: #fff; font-style: italic; text-transform: uppercase; }
.tagline-media img { border-radius: var(--radius-img); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* ================================================================= QA DETAIL */
/* Live: dark charcoal band, white body + headings. */
.qa { background: #2b3036; color: #e7ebef; }
.qa-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 20px 0 34px; }
.qa-lists ul { padding-left: 1.2em; }
.qa-lists li { margin-bottom: 8px; }
.qa p { color: #e7ebef; }
.qa ul li { color: #e7ebef; }
.qa h2 { color: #fff; }
.qa .section-title { color: #fff; }
.qa .video-wrap { position: relative; padding-top: 56.25%; margin-top: 24px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.qa .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ================================================================= PAGE / CONTENT */
.page-hero {
	position: relative; text-align: center; color: #fff; padding: 88px 20px 96px;
	background: var(--c-navy) center/cover no-repeat;
	background-image: url('../img/flanges.jpg');
}
.page-hero::before { content:""; position:absolute; inset:0; background: rgba(11,32,58,.78); }
/* Angled bottom edge to match the live Elementor title band */
.page-hero::after {
	content:""; position:absolute; left:0; right:0; bottom:0; height:70px; background:#fff;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	z-index: 3;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: 42px; margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.page-hero .breadcrumbs { color: #e4e9ef; font-size: 14px; margin-top: 12px; }
.page-hero .breadcrumbs a { color: var(--c-yellow); }

/* Post/alloy share bar (matches live share buttons) */
.share-bar { display: flex; gap: 0; max-width: 560px; margin: 0 auto 30px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.share-bar a { flex: 1; text-align: center; padding: 12px; color: #fff; font-weight: 600; font-size: 14px; }
.share-bar a:hover { text-decoration: none; opacity: .92; }
.share-bar .s-fb { background: #3b5998; }
.share-bar .s-tw { background: #1da1f2; }
.share-bar .s-pin { background: #bd081c; }
.entry-thumb { max-width: 840px; margin: 0 auto 26px; }
.entry-thumb img { border-radius: var(--radius-img); box-shadow: 0 6px 22px rgba(0,0,0,.15); width: 100%; }

.content-area { padding: 56px 0; }
.entry-content { max-width: 900px; margin: 0 auto; }
.entry-content h2 { font-size: 28px; color: var(--c-navy); margin-top: 1.4em; }
.entry-content h3 { font-size: 22px; color: var(--c-blue); }
.entry-content img { border-radius: var(--radius-img); margin: 1.2em 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15px; }
.entry-content th, .entry-content td { border: 1px solid var(--c-line); padding: 10px 12px; text-align: left; }
.entry-content th { background: var(--c-blue); color: #fff; font-weight: 600; }
.entry-content tr:nth-child(even) td { background: #f6f8fa; }
.entry-content a { text-decoration: underline; }

/* Alloy quick-facts box */
.alloy-facts { background: #f6f8fa; border-left: 4px solid var(--c-yellow); padding: 18px 22px; border-radius: var(--radius); margin: 0 0 24px; }
.alloy-facts dt { font-weight: 700; color: var(--c-navy); }
.alloy-facts dd { margin: 0 0 10px; }

/* ================================================================= CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.contact-form-heading { font-size: 26px; color: var(--c-navy); margin-bottom: 6px; }
.contact-form-intro { color: var(--c-muted); margin-bottom: 22px; }
.contact-form { display: grid; gap: 16px; background: #fff; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form .field-row { grid-template-columns: 1fr; } }
.contact-info { background: #f6f8fa; border-radius: var(--radius); padding: 8px 24px 20px; }
.contact-form label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 4px; }
.contact-form input, .contact-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid #c9d0d7; border-radius: var(--radius);
	font-family: inherit; font-size: 15px; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--c-blue); border-color: var(--c-blue); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; }
.form-notice { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-weight: 500; }
.form-notice--ok { background: #e5f5e8; color: #1c6b2c; border: 1px solid #b6e0be; }
.form-notice--err { background: #fdecea; color: #8a1c14; border: 1px solid #f3c0bb; }
.contact-info h3 { color: var(--c-navy); }
.contact-info a { font-weight: 600; }

/* --- Contact page (live multi-section layout) --- */
.contact-tiles-band { background: var(--c-navy); padding: 46px 0; }
.contact-tiles { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.c-tile { padding: 30px 18px; text-align: center; color: #fff; }
.c-tile-ico { font-size: 38px; line-height: 1; margin-bottom: 10px; }
.c-tile h2 { color: #fff; font-size: 20px; text-transform: uppercase; margin: 0 0 8px; letter-spacing: .03em; }
.c-tile p { margin: 0; font-size: 14px; }
.c-tile a { color: #fff; }
.c-tile a:hover { color: #fff; }
.c-tile--addr { background: #8e44c7; }
.c-tile--phone { background: #3ea3d6; }
.c-tile--fax { background: #3aa856; }
.c-tile--email { background: #7ec13a; }

.contact-main { background: var(--c-navy); }
.contact-lead { color: #fff; font-style: italic; text-transform: uppercase; font-size: 30px; line-height: 1.15; margin-bottom: 18px; }
.contact-intro p { color: #cfd6dd; }
.contact-facts { list-style: none; padding: 0; margin: 22px 0; }
.contact-facts li { color: #cfd6dd; margin-bottom: 8px; }
.contact-facts a { color: var(--c-yellow); font-weight: 700; }
.contact-facts span { color: var(--c-yellow); margin-right: 8px; }
.contact-247 { color: var(--c-yellow); font-weight: 700; text-transform: uppercase; font-size: 15px; line-height: 1.5; }

.contact-form-wrap { background: #8a9099; padding: 26px 28px 30px; border-radius: var(--radius); }
.contact-form-wrap .contact-form-heading { color: var(--c-yellow); text-align: center; font-size: 24px; margin-bottom: 18px; }
.contact-form-wrap .contact-form { gap: 4px; background: transparent; }
.contact-form-wrap .contact-form label { color: #fff; margin-top: 8px; }
.contact-form-wrap .btn { display: block; width: 100%; margin-top: 14px; text-align: center; }

.contact-quality { background: var(--c-blue); text-align: center; }
.contact-quality .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 18px; }
.contact-quality .section-title { color: #fff; margin-bottom: 34px; }
.contact-quality .feature-card h3 { color: #fff; }

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

/* Contact HQ map */
.contact-map-band { background: #fff; text-align: center; }
.contact-map-eyebrow { color: var(--c-blue); }
.contact-map-title { color: var(--c-navy); margin-bottom: 24px; }
.contact-map { height: 420px; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,.15); z-index: 0; }
.contact-map-addr { margin-top: 16px; color: var(--c-navy); font-weight: 600; }
.contact-map-addr a { color: var(--c-blue); }
@media (max-width: 600px) { .contact-map { height: 320px; } }

/* ================================================================= FOOTER */
.site-footer { position: relative; color: #cfd6dd; padding: 54px 0 0;
	background-color: var(--c-navy);
	background-image: linear-gradient(rgba(20,27,35,.92), rgba(20,27,35,.95)), url(../img/endcaps.jpg);
	background-size: cover; background-position: center; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-heading { color: #fff; font-size: 20px; margin-bottom: 16px; border-bottom: 2px solid var(--c-yellow); padding-bottom: 8px; display: inline-block; }
.footer-menu, .footer-products { list-style: none; margin: 0; padding: 0; }
.footer-menu li, .footer-products li { margin-bottom: 8px; }
.footer-products { columns: 2; }
.site-footer a { color: #cfd6dd; }
.footer-products a { color: var(--c-yellow); font-weight: 600; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-share { list-style: none; display: flex; gap: 12px; padding: 0; margin: 0; }
.share-btn {
	width: 40px; height: 40px; border-radius: 50%; background: var(--c-blue); color: #fff !important;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; text-transform: lowercase;
}
.share-btn:hover { background: var(--c-yellow); color: #000 !important; }
.footer-bar { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }

/* Mobile sticky call bar (hidden on desktop) */
.mobile-call-bar { display: none; }

/* ================================================================= PDF EMBED */
.pdf-embed { margin: 1.6em 0; }
.pdf-embed-object { width: 100%; height: 80vh; min-height: 520px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #f6f8fa; }
.pdf-embed-actions { margin-top: 14px; text-align: center; }
@media (max-width: 767px) { .pdf-embed-object { height: 60vh; min-height: 380px; } }

/* Line Sheet — inline PDF document embed */
.linesheet-hero { padding: 70px 20px 64px; }
.linesheet-embed { padding: 40px 0 60px; }
.pdf-embed-frame { width: 100%; height: 1400px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #f6f8fa; display: block; }
@media (max-width: 767px) { .pdf-embed-frame { height: 90vh; min-height: 520px; } }

/* ================================================================= SITEMAP */
.sitemap-page h2 { color: var(--c-navy); border-bottom: 2px solid var(--c-yellow); padding-bottom: 6px; display: inline-block; margin-top: 1.6em; }
.sitemap-list { list-style: none; padding: 0; columns: 2; column-gap: 40px; }
.sitemap-list li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 767px) { .sitemap-list { columns: 1; } }

/* ================================================================= STORY / ABOUT */
.story-hero {
	position: relative; min-height: 70vh; display: flex; flex-direction: column;
	align-items: center; justify-content: center; text-align: center;
	background: var(--c-navy) center/cover no-repeat; color: #fff; padding: 90px 20px 70px;
}
.story-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(18,26,36,.5), rgba(18,26,36,.72)); }
.story-hero .hero-inner { position: relative; z-index: 2; }
.story-eyebrow { font-family: var(--font-body); font-style: italic; font-weight: 700; color: var(--c-yellow); font-size: 22px; margin-bottom: 6px; }
.story-title { font-family: var(--font-head); font-style: italic; font-weight: 700; color: #fff; font-size: 72px; line-height: 1; margin: 0; letter-spacing: .01em; text-shadow: 0 3px 16px rgba(0,0,0,.45); }
/* Yellow downward chevron between hero and blue band */
.chevron-divider { position: absolute; left: 0; right: 0; bottom: 0; height: 46px; z-index: 3; background: var(--c-yellow); clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%); }

/* Blue solid hero variant (Product Profile, Stainless Steel, Materiales) */
.blue-hero { background: linear-gradient(120deg, #023b78, var(--c-blue) 60%, #0a6fd6); color: #fff; text-align: center; padding: 90px 20px 84px; }
.blue-hero .story-eyebrow { color: var(--c-yellow); }
.blue-hero .blue-hero-title { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 46px; line-height: 1.08; margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.blue-hero .blue-hero-title.yellow { color: var(--c-yellow); }
.blue-hero .blue-hero-sub { color: #eaf1f9; font-weight: 600; font-size: 20px; margin-top: 12px; }
@media (max-width: 767px) { .blue-hero .blue-hero-title { font-size: 32px; } }

.qa-band { background: var(--c-blue); color: #fff; padding: 56px 0 60px; }
.qa-band-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.qa-eyebrow { font-family: var(--font-body); font-style: italic; font-weight: 700; color: var(--c-yellow); font-size: 19px; margin-bottom: 8px; }
.qa-heading { font-family: var(--font-head); font-style: italic; font-weight: 700; color: #fff; font-size: 44px; line-height: 1.05; margin: 0 0 18px; }
.qa-cols { columns: 2; column-gap: 30px; }
.qa-cols p { color: #eaf1f9; }
.qa-band .btn { margin-top: 18px; }
.qa-band-media img { border-radius: var(--radius-img); box-shadow: 0 8px 26px rgba(0,0,0,.3); width: 100%; }

.about-body { max-width: 900px; }
.about-body .cert-wrap { text-align: center; margin: 0 0 30px; }
.about-body .cert-wrap img { display: inline-block; max-width: 460px; width: 100%; box-shadow: 0 6px 22px rgba(0,0,0,.15); }
.about-body h2 { font-family: var(--font-head); color: var(--c-navy); font-size: 26px; margin-top: 1.6em; }

/* Custom Fabrication */
.fab-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin: 6px 0 24px; }
.fab-lists ul { margin: 0; }
.fab-lists li { font-weight: 600; color: var(--c-navy); margin-bottom: 8px; }
.fab-quote { font-family: var(--font-head); font-style: italic; font-size: 26px; color: var(--c-blue); border-left: 4px solid var(--c-yellow); margin: 24px 0; padding: 6px 0 6px 22px; }
.fab-figure { text-align: center; margin: 26px 0; }
.fab-figure img { display: inline-block; max-width: 560px; width: 100%; }
.std-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 22px; }
.std-grid h3 { color: var(--c-yellow); font-size: 20px; margin-bottom: 8px; }
.std-grid p { color: #eaf1f9; font-size: 15px; }
@media (max-width: 900px) { .fab-lists, .std-grid { grid-template-columns: 1fr; } }

.cta-band { padding: 70px 20px; }
.cta-band .brand-sm { font-style: italic; font-family: var(--font-body); font-weight: 700; }
.cta-band h2 { font-size: 40px; margin-bottom: 22px; }
.cta-band .btn { display: inline-block; }

@media (max-width: 900px) {
	.qa-band-grid { grid-template-columns: 1fr; }
	.qa-cols { columns: 1; }
	.story-title { font-size: 52px; }
}

/* ============================================== SPEC / TECHNICAL DATA DOC */
/* Live: dark navy page with a royal-blue content box (white text, blue-headed
   table on white), yellow links, feature trio at the bottom. */
.story-hero .story-sub { font-family: var(--font-body); font-style: italic; color: var(--c-yellow); font-size: 22px; margin-top: 12px; }
.dark-doc { background: var(--c-navy); padding: 46px 0 80px; }
.doc-box { background: var(--c-blue); color: #eaf1f9; max-width: 1000px; margin: 0 auto; padding: 54px 56px 58px; border-radius: 2px; }
.doc-box .entry-content { max-width: none; margin: 0; }
.doc-box p, .doc-box li { color: #eaf1f9; }
.doc-box h1, .doc-box h2, .doc-box h3 { color: #fff; font-style: italic; text-transform: uppercase; }
.doc-box h1 { font-size: 30px; }
.doc-box h2 { font-size: 26px; }
.doc-box a { color: var(--c-yellow); text-decoration: underline; }
.doc-box table { background: #fff; }
.doc-box th { background: #fff; color: var(--c-blue); border-color: #cfd6dd; }
.doc-box td { color: #1b252f; border-color: #cfd6dd; }
.doc-box tr:nth-child(even) td { background: #f6f8fa; }
.doc-feature-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; text-align: center; }
.doc-feature-trio .fi { font-size: 48px; color: #fff; line-height: 1; }
.doc-feature-trio h3 { color: #fff; font-style: italic; text-transform: uppercase; margin: 12px 0 4px; font-size: 20px; }
.doc-feature-trio p { color: #eaf1f9; font-style: italic; margin: 0; }
@media (max-width: 767px) { .doc-box { padding: 34px 22px; } .doc-feature-trio { grid-template-columns: 1fr; } }

/* ============================================== SINGLE ALLOY (PRODUCT) */
/* Live: blue angled hero, framed product image + colored share bar, white body
   with blue headings, tag list, "Share This Product" band, grey related band. */
.container.narrow { max-width: 900px; }

.alloy-hero { position: relative; background: var(--c-blue) center/cover no-repeat;
	padding: 66px 20px 128px; text-align: center;
	clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%); }
.alloy-hero::before { content: ""; position: absolute; inset: 0;
	background: linear-gradient(rgba(4,60,120,.55), rgba(4,60,120,.72)); }
.alloy-hero h1 { position: relative; z-index: 1; color: #fff; font-size: 34px; margin: 0;
	text-shadow: 0 2px 10px rgba(0,0,0,.45); }

.alloy-figure { max-width: 470px; margin: -96px auto 0; position: relative; z-index: 3; }
.alloy-figure img { width: 100%; display: block; border-radius: 0; box-shadow: 0 12px 34px rgba(0,0,0,.22); }
.alloy-share { display: flex; }
.alloy-share a { flex: 1; padding: 12px 0; display: flex; align-items: center; justify-content: center; color: #fff !important; }
.entry-content h2 a, .entry-content h3 a { color: inherit; }
.entry-content h2 a:hover, .entry-content h3 a:hover { color: var(--c-blue); text-decoration: underline; }
.alloy-share .s-fb { background: #3b5998; }
.alloy-share .s-tw { background: #14171a; }   /* X (formerly Twitter) — black */
.alloy-share .s-in { background: #0a66c2; }   /* LinkedIn */
.alloy-share .s-email { background: #5b6b7b; } /* Email — slate */
.alloy-share .s-pin { background: #e60023; }

.alloy-single .content-area { padding: 46px 0 30px; }
.alloy-single .entry-content h2 { color: var(--c-blue); font-style: normal; text-transform: none; }
.alloy-tags { color: var(--c-blue); font-size: 14px; margin-top: 26px; }
.alloy-tags a { color: var(--c-blue); }

.alloy-share-cta { text-align: center; padding: 20px 0 46px; }
.alloy-share-cta h2 { color: #7a7a7a; font-size: 22px; margin-bottom: 18px; }
.alloy-share-icons { justify-content: center; }

.related-band { background: #e9edf1; padding: 90px 0 70px; margin-top: 10px;
	clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%); }
.related-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.related-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 2px; margin-bottom: 12px; }
.related-card h3 { font-size: 17px; color: var(--c-blue); margin-bottom: 8px; }
.related-card p { font-size: 13px; color: #444; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .related-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-cards { grid-template-columns: 1fr; } }

/* ============================================== LOCATION (CITY) PAGES */
/* Live city pages are a dedicated banded layout (navy/blue/charcoal) with the
   city name threaded through every heading — NOT a homepage clone. */

.loc-hero-title { font-style: italic; text-transform: uppercase; color: #fff; }
.hero-phone-btn { margin-top: 20px; font-style: italic; }

/* Yellow slash dividers rising left->right at the foot of a band */
.loc-hero, .has-slash { position: relative; }
.loc-hero::after, .has-slash::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 34px;
	background: var(--c-yellow); clip-path: polygon(0 100%, 100% 0, 100% 100%); z-index: 4;
}

.loc-center-btn { text-align: center; margin-top: 30px; }

/* OUR STOCK (navy) */
.loc-stock { background: var(--c-navy); text-align: center; }
.loc-stock .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.loc-stock .section-title { color: var(--c-yellow); }
.loc-feature-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0 20px; }
.loc-feature-trio .lfi { font-size: 52px; line-height: 1; color: #b9c2cc; }
.loc-feature-trio h3 { color: #fff; font-style: italic; text-transform: uppercase; font-size: 20px; margin: 14px 0 4px; }
.loc-feature-trio p { color: #aeb7c0; font-style: italic; margin: 0; }
.loc-service-line { color: var(--c-yellow); font-weight: 700; font-size: 22px; margin-top: 26px; }

/* QUALITY & BEST PRICES (blue) */
.loc-quality { background: var(--c-blue); color: #eaf1f9; text-align: center; }
.loc-quality .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.loc-quality .section-title { color: #fff; }
.loc-quality-lead { max-width: 760px; margin: 0 auto 10px; color: #eaf1f9; }
.loc-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0 10px; text-align: center; }
.loc-trio .lfi { font-size: 40px; line-height: 1; color: var(--c-yellow); }
.loc-trio h3 { color: var(--c-yellow); font-style: italic; text-transform: uppercase; font-size: 18px; margin: 12px 0 6px; }
.loc-trio p { color: #dfe8f2; font-size: 15px; margin: 0; }

/* BEST SUPPLIER (dark pipe bg) */
.loc-supplier { position: relative; background: var(--c-navy) center/cover no-repeat; padding: 64px 0 70px; }
.loc-supplier::before { content: ""; position: absolute; inset: 0; background: rgba(18,24,31,.82); }
.loc-supplier > .container { position: relative; z-index: 1; text-align: center; }
.loc-supplier-eyebrow { color: var(--c-yellow); font-style: italic; font-size: 18px; margin-bottom: 8px; }
.loc-supplier-title { color: #fff; font-style: italic; text-transform: uppercase; font-size: 34px; margin: 0 0 40px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.loc-supplier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.loc-scard { background: rgba(0,0,0,.42); padding: 0 0 18px; border-radius: 2px; overflow: hidden; }
.loc-scard img { width: 100%; height: 150px; object-fit: cover; border-radius: 0; margin-bottom: 14px; }
.loc-scard h3 { color: #fff; font-size: 17px; padding: 0 18px; margin-bottom: 8px; }
.loc-scard p { color: #cdd5dd; font-size: 14px; padding: 0 18px; margin: 0; }

/* TESTIMONIAL (navy w/ blue box) */
.loc-testi { background: var(--c-navy); }
.loc-testi-box { background: var(--c-blue); max-width: 720px; margin: 0 auto; padding: 46px 40px; text-align: center; border-radius: 2px; }
.loc-testi-box .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.loc-testi-box .section-title { color: #fff; font-size: 28px; }
.loc-testi-quote { color: #eef2f6; font-style: italic; margin: 18px 0 0; }
.loc-testi-cite { display: block; margin-top: 16px; color: var(--c-yellow); font-weight: 700; font-style: normal; }

/* SUPERIOR PIPE (blue) */
.loc-superior { background: var(--c-blue); color: #fff; }
.loc-superior-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.loc-superior .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.loc-superior .section-title { color: #fff; font-size: 26px; }
.loc-superior-media img { width: 100%; border-radius: var(--radius-img); }

/* LONG-FORM INTRO (blue) */
.loc-longform { background: var(--c-blue); color: #eaf1f9; }
.loc-longform h2 { color: var(--c-yellow); font-size: 26px; margin: 0 0 12px; }
.loc-longform h3 { color: var(--c-yellow); font-size: 21px; margin: 1.6em 0 8px; }
.loc-longform p { color: #eaf1f9; margin: 0 0 4px; }

/* SPECIAL ALLOY (charcoal) */
.loc-special { background: #2b3036; }
.loc-special-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 34px; align-items: start; }
.loc-special-media { align-self: center; }
.loc-special-media img { width: 100%; border-radius: var(--radius-img); }
.loc-special-col .lfi { font-size: 40px; color: var(--c-yellow); line-height: 1; margin-bottom: 10px; }
.loc-special-col h3 { color: var(--c-yellow); font-style: italic; font-size: 20px; margin-bottom: 8px; }
.loc-special-col p { color: #d4dae0; font-size: 15px; margin: 0; }

/* ALLOY TRIO (blue) */
.loc-alloy-trio { background: var(--c-blue); color: #fff; text-align: center; }
.loc-alloy-title { color: #eaf1f9; font-size: 18px; letter-spacing: .04em; margin: 0 0 44px; }
.loc-alloy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.loc-alloy-cards img { width: 120px; height: 90px; object-fit: cover; border-radius: 8px; margin: 0 auto 14px; display: block; }
.loc-alloy-cards h3 { color: var(--c-yellow); font-style: italic; text-transform: uppercase; font-size: 19px; margin-bottom: 10px; }
.loc-alloy-cards p { color: #dfe8f2; font-size: 14px; margin: 0; }

/* CALL NOW (charcoal) */
.loc-callnow { background: #2b3036; text-align: center; }
.loc-callnow h2 { color: var(--c-yellow); font-family: var(--font-head); font-weight: 700; font-size: 40px; margin: 0 0 22px; }
.loc-callnow p { color: #d4dae0; max-width: 820px; margin: 0 auto 18px; }
.loc-callnow-kicker { color: var(--c-yellow); font-weight: 700; font-size: 22px; text-transform: uppercase; }

@media (max-width: 900px) {
	.loc-feature-trio, .loc-trio, .loc-supplier-cards, .loc-superior-grid,
	.loc-special-grid, .loc-alloy-cards { grid-template-columns: 1fr; }
	.loc-supplier-title { font-size: 26px; }
	.loc-callnow h2 { font-size: 30px; }
}

/* ============================================== PRODUCTS INDEX PAGE */
.prod-procure { background: var(--c-blue); color: #eaf1f9; }
.prod-procure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.prod-procure .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.prod-procure .section-title { color: #fff; }
.prod-procure p { color: #eaf1f9; }
.prod-procure-media img { width: 100%; }

.prod-listing .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; }
.prod-listing .section-title { color: var(--c-yellow); }
.prod-news-eyebrow { margin-top: 36px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 18px 0 46px; }
.news-card img { width: 100%; height: 150px; object-fit: cover; margin-bottom: 12px; }
.news-card h3 { font-size: 17px; margin-bottom: 8px; }
.news-card h3 a { color: var(--c-yellow); font-style: italic; }
.news-card p { color: #cfd6dd; font-size: 14px; margin-bottom: 8px; }
.news-more { color: var(--c-yellow); font-style: italic; font-size: 14px; }
@media (max-width: 900px) { .prod-procure-grid, .news-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================== GLOBAL POLISH (all pages) */
/* Round every square edge — cards, boxes, framed images, share bars. */
.product-card, .related-card, .news-card img, .related-card img, .loc-scard,
.loc-testi-box, .doc-box, .alloy-figure, .alloy-facts, .contact-form, .contact-info,
.qa-band-media img, .warehouse-media img, .tagline-media img, .loc-superior-media img,
.loc-special-media img, .cert-wrap img, .prod-procure-media img, .video-wrap,
.pdf-embed-object, .pdf-embed-frame { border-radius: var(--radius); }
.alloy-figure { overflow: hidden; }
.loc-scard { border-radius: var(--radius); }

/* Never clip wrapped italic headings/labels; give them breathing room. */
.hero-eyebrow, .hero-sub, .story-sub, .story-eyebrow, .qa-eyebrow, .eyebrow,
.section-title, .loc-supplier-title, .loc-testi-box .section-title, .loc-alloy-title,
.band-dark h2, .tagline-band h2, .cta-band h2, .qa-heading {
	line-height: 1.3; overflow-wrap: break-word; word-break: normal; text-wrap: balance;
}
/* Keep band text above the yellow slash dividers so nothing overlaps it. */
.has-slash > .container { position: relative; z-index: 5; }

/* ============================================== CUSTOM FABRICATION (dark bands) */
.fab-intro { background: var(--c-navy); }
.fab-intro .eyebrow { color: var(--c-yellow); font-style: italic; text-transform: none; letter-spacing: 0; text-align: center; }
.fab-intro .section-title { color: #fff; text-align: center; margin-bottom: 12px; }
.fab-lead { color: #eaf1f9; max-width: 760px; margin: 0 auto 30px; text-align: center; }
.fab-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.fab-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; }
.fab-checklist ul { list-style: none; padding: 0; margin: 0; }
.fab-checklist li, .fab-benefits li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.fab-checklist li { color: #fff; }
.fab-checklist li::before, .fab-benefits li::before, .fab-uses li::before { content: "\2714"; position: absolute; left: 0; color: var(--c-yellow); font-weight: 700; }
.fab-intro .fab-quote { color: #eef2f6; border-left: 4px solid var(--c-yellow); font-style: italic; font-size: 24px; margin: 26px 0; padding: 4px 0 4px 20px; }
.fab-overall { color: var(--c-yellow); font-weight: 600; }
.fab-figure img { width: 100%; border-radius: var(--radius-img); margin-bottom: 18px; }
.fab-benefits { list-style: none; padding: 0; margin: 0; }
.fab-benefits li { color: #eaf1f9; margin-bottom: 14px; }

.fab-uses { background: var(--c-navy); }
.fab-uses .section-title { color: var(--c-yellow); text-align: center; margin-bottom: 26px; }
.fab-uses ul { max-width: 900px; margin: 0 auto; list-style: none; padding: 0; }
.fab-uses li { position: relative; padding-left: 28px; margin-bottom: 14px; color: #eaf1f9; }
.fab-uses li strong { color: #fff; }
@media (max-width: 900px) { .fab-intro-grid { grid-template-columns: 1fr; } }

/* ============================================== LEGAL PAGES (dark, yellow headings — matches live Privacy) */
.legal-dark { background: var(--c-navy); padding: 50px 0 72px; }
.legal-content { padding: 0; }
.legal-content .legal-updated { color: #aeb7c0; font-style: italic; margin-bottom: 1.6em; }
.legal-content h1, .legal-content h2, .legal-content h3, .legal-content h4 { color: var(--c-yellow); }
.legal-content h2 { font-size: 24px; margin-top: 1.8em; }
.legal-content h3 { font-size: 20px; margin-top: 1.4em; }
.legal-content p, .legal-content li { color: #eaf1f9; }
.legal-content a { color: var(--c-yellow); text-decoration: underline; }
.legal-content ul { padding-left: 1.3em; }
.legal-content li { margin-bottom: .5em; }
.legal-content code { background: rgba(255,255,255,.12); color: #fff; padding: 1px 5px; border-radius: 3px; font-size: .92em; }

/* ================================================================= 404 */
.error-404 { text-align: center; padding: 90px 20px; }
.error-404 .code { font-size: 96px; font-weight: 700; color: var(--c-blue); font-family: var(--font-head); line-height: 1; }

/* ================================================================= RESPONSIVE */
@media (max-width: 1024px) {
	:root { --container: 1024px; }
	.products-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-title { font-size: 34px; }
}

@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; }
	.warehouse-grid, .tagline-grid, .qa-lists, .stock-head { grid-template-columns: 1fr; }
	.warehouse-grid { direction: ltr; }
}

@media (max-width: 767px) {
	:root { --container: 100%; }
	/* Mobile nav */
	.menu-toggle {
		display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
		background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
	}
	.menu-toggle-bar { width: 26px; height: 3px; background: var(--c-blue); border-radius: 2px; transition: .2s; }
	.main-navigation {
		position: fixed; top: var(--header-h); right: 0; bottom: 0; width: min(82%, 320px);
		background: #fff; flex-direction: column; align-items: stretch; gap: 0;
		padding: 16px 20px; box-shadow: -4px 0 20px rgba(0,0,0,.2);
		transform: translateX(100%); visibility: hidden;
		transition: transform .25s ease, visibility .25s ease;
	}
	.main-navigation.is-open { transform: translateX(0); visibility: visible; }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.nav-menu li { border-bottom: 1px solid var(--c-line); }
	.nav-menu a { padding: 12px 0; display: block; }
	.nav-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
		border-top: 0; padding: 0 0 8px 16px; min-width: 0;
	}
	.header-phone { padding: 14px 0; }

	.features-grid { grid-template-columns: 1fr; }
	.products-grid { grid-template-columns: 1fr; }
	.footer-cols { grid-template-columns: 1fr; }
	.footer-products { columns: 1; }
	.footer-bar-inner { flex-direction: column; text-align: center; }
	.hero { min-height: 78vh; padding: 80px 18px; }
	.hero-title { font-size: 28px; }
	.section-title, .stock-head .section-title { font-size: 28px; }

	/* Mobile sticky call bar */
	.mobile-call-bar {
		display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
		background: var(--c-yellow); color: #000; text-align: center; font-weight: 700;
		padding: 14px; text-decoration: none; box-shadow: 0 -2px 10px rgba(0,0,0,.2);
	}
	body { padding-bottom: 52px; }
}

/* -------------------------------------------------------------------------
 * Product hub city directory (location-product-hub.php)
 * ---------------------------------------------------------------------- */
.loc-city-directory .loc-city-list {
	list-style: none;
	margin: 26px auto 30px;
	padding: 0;
	max-width: 900px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 26px;
	text-align: left;
}
.loc-city-directory .loc-city-list li {
	border-bottom: 1px solid rgba(255,255,255,.12);
	padding: 8px 4px;
}
.loc-city-directory .loc-city-list a {
	color: var(--c-yellow);
	text-decoration: none;
	font-weight: 600;
	display: block;
}
.loc-city-directory .loc-city-list a:hover { text-decoration: underline; }
@media (max-width: 767px) {
	.loc-city-directory .loc-city-list { grid-template-columns: 1fr 1fr; gap: 6px 16px; }
}
@media (max-width: 480px) {
	.loc-city-directory .loc-city-list { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
 * Alloy page → location hub CTA (de-orphans product hubs)
 * ---------------------------------------------------------------------- */
.alloy-locations-cta {
	background: var(--c-blue);
	color: #fff;
	text-align: center;
	padding: 30px 20px;
}
.alloy-locations-cta .alloy-loc-lead {
	margin: 0 0 16px;
	font-size: 1.05rem;
	font-weight: 600;
}
.alloy-locations-cta .btn { margin: 0 auto; }

/* -------------------------------------------------------------------------
 * Touch-target sizing (WCAG 2.5.8 / Lighthouse) — give tightly-stacked
 * footer text links a larger, comfortably-spaced tap area.
 * ---------------------------------------------------------------------- */
.footer-menu a,
.footer-products a {
	display: inline-block;
	padding: 5px 0;
	line-height: 1.25;
}
.footer-menu li,
.footer-products li { margin-bottom: 2px; }

/* -------------------------------------------------------------------------
 * Tariff table ([display_tariffs] — native replacement for the old plugin)
 * ---------------------------------------------------------------------- */
.tariff-block { margin: 8px 0 10px; }
.tariff-intro { margin-bottom: 20px; }
.tariff-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: 0 1px 6px rgba(0,0,0,.12); }
.tariff-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; font-size: 15px; }
.tariff-table th, .tariff-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.tariff-table thead th { background: var(--c-blue); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: 13px; }
.tariff-table tbody tr:nth-child(even) { background: #f4f7fb; }
.tariff-table .tariff-rate { font-weight: 700; color: var(--c-blue); white-space: nowrap; }
.tariff-meta { margin: 16px 0 6px; }
.tariff-disclaimer { background: #fff8e1; border-left: 4px solid var(--c-yellow); padding: 12px 16px; border-radius: 6px; font-size: 14px; }
.tariff-links { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.tariff-links a { font-weight: 600; }

@media (max-width: 767px) {
	/* Stack the table into labelled rows on small screens. */
	.tariff-table { min-width: 0; }
	.tariff-table thead { position: absolute; left: -9999px; }
	.tariff-table tr { display: block; border-bottom: 3px solid var(--c-line); padding: 6px 0; }
	.tariff-table td { display: flex; justify-content: space-between; gap: 16px; border: none; padding: 7px 12px; }
	.tariff-table td::before { content: attr(data-label); font-weight: 700; color: var(--c-navy); flex: 0 0 42%; }
	.tariff-table .tariff-rate { white-space: normal; }
}
