/*
Theme Name: Pressure Specialties
Theme URI: https://pressurespecialties.com
Author: Pressure Specialties
Description: Heavy vessel and component manufacturing theme. Dark, technical, spec-driven. Built for Oil & Gas, Chemical and Petrochemical audiences.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pressure-specialties
*/

/* ---------------------------------------------------------------
   1. Tokens
--------------------------------------------------------------- */
:root {
  --ps-black: #0A0C0E;
  --ps-panel: #14181C;
  --ps-light: #F4F5F6;
  --ps-white: #ffffff;
  --ps-red: #C8102E;
  --ps-red-bright: #E11B36;
  --ps-red-hot: #FF3B52;

  --ps-display: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  --ps-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --ps-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --ps-max: 1320px;
  --ps-gutter: clamp(20px, 4vw, 40px);
  --ps-section-y: 110px;
}

/* ---------------------------------------------------------------
   2. Base
--------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ps-black);
  color: var(--ps-light);
  font-family: var(--ps-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ps-red-bright); text-decoration: none; }
a:hover { color: var(--ps-red-hot); }
p { margin: 0; text-wrap: pretty; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ps-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.005em;
}
input, textarea, select, button { font-family: inherit; }

.ps-wrap { max-width: var(--ps-max); margin: 0 auto; padding: 0 var(--ps-gutter); }
.ps-screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.ps-skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  background: var(--ps-red); color: #fff; padding: 12px 18px;
}

/* Shared type helpers */
.ps-eyebrow {
  font-family: var(--ps-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ps-red);
}
.ps-eyebrow--light { color: var(--ps-red-bright); }
.ps-lede { font-size: 17px; line-height: 1.7; color: rgba(244,245,246,0.78); }
.ps-lede--dark { color: rgba(20,24,28,0.75); }

.ps-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ps-red); color: #fff;
  padding: 17px 30px;
  font-family: var(--ps-display); font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 0; cursor: pointer;
}
.ps-btn:hover { background: var(--ps-red-bright); color: #fff; }
.ps-btn--ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.32); color: var(--ps-light);
}
.ps-btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--ps-light); color: #fff; }

/* ---------------------------------------------------------------
   3. Alert strip
--------------------------------------------------------------- */
.ps-strip {
  background: var(--ps-red); color: #fff;
  display: flex; justify-content: center; align-items: center;
  gap: 28px; padding: 9px 24px; flex-wrap: wrap;
  font-family: var(--ps-mono); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.ps-strip a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); }
.ps-strip a:hover { color: #fff; }

/* ---------------------------------------------------------------
   4. Header / nav
--------------------------------------------------------------- */
.ps-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,14,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.ps-header__inner {
  max-width: var(--ps-max); margin: 0 auto;
  padding: 16px var(--ps-gutter); min-height: 82px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.ps-brand { display: flex; flex-direction: column; flex-shrink: 0; color: var(--ps-light); line-height: 1; }
.ps-brand:hover { color: var(--ps-light); }
.ps-brand__mark {
  font-family: var(--ps-display); font-size: 30px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.ps-brand__mark em { font-style: normal; color: var(--ps-red-bright); }
.ps-brand__sub {
  font-family: var(--ps-mono); font-size: 9px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(244,245,246,0.5); margin-top: 5px;
}
.ps-brand__logo { max-height: 54px; width: auto; }

.ps-nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid rgba(255,255,255,0.28);
  color: var(--ps-light); padding: 11px 16px; cursor: pointer;
  font-family: var(--ps-display); font-size: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.ps-nav { margin-left: auto; }
.ps-nav ul { list-style: none; margin: 0; padding: 0; }
.ps-nav > ul {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  font-family: var(--ps-display); font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ps-nav a { color: var(--ps-light); }
.ps-nav a:hover { color: var(--ps-red-bright); }
.ps-nav li { position: relative; }
.ps-nav .menu-item-has-children > a::after {
  content: '\25BC'; font-size: 9px; opacity: 0.55; margin-left: 7px; vertical-align: middle;
}
.ps-nav .sub-menu {
  position: absolute; top: 100%; left: -20px; min-width: 260px;
  background: var(--ps-panel);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--ps-red);
  padding: 8px 0; box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  display: none; z-index: 60;
}
.ps-nav li:hover > .sub-menu,
.ps-nav li:focus-within > .sub-menu { display: block; }
.ps-nav .sub-menu a {
  display: block; padding: 13px 22px; color: rgba(244,245,246,0.85);
}
.ps-nav .sub-menu a:hover { color: #fff; background: rgba(200,16,46,0.16); }
/* CTA: add the class ps-cta to a menu item in Appearance > Menus (CSS Classes) */
.ps-nav .ps-cta > a {
  background: var(--ps-red); color: #fff; padding: 13px 22px; letter-spacing: 0.08em;
}
.ps-nav .ps-cta > a:hover { background: var(--ps-red-bright); color: #fff; }

/* ---------------------------------------------------------------
   5. Hero
--------------------------------------------------------------- */
.ps-hero {
  position: relative; min-height: 660px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.ps-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(0.35) contrast(1.05) brightness(0.72);
}
.ps-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(10,12,14,0.94) 0%, rgba(10,12,14,0.78) 42%, rgba(10,12,14,0.18) 100%);
}
.ps-hero__inner {
  position: relative; max-width: var(--ps-max); width: 100%; margin: 0 auto;
  padding: clamp(90px, 14vw, 150px) var(--ps-gutter) 90px;
}
.ps-hero__col { max-width: 760px; display: flex; flex-direction: column; gap: 26px; }
.ps-hero__kicker { display: flex; align-items: center; gap: 14px; }
.ps-hero__rule { width: 34px; height: 2px; background: var(--ps-red); display: block; }
.ps-hero h1 { font-size: clamp(52px, 6.6vw, 96px); }
.ps-hero__tagline {
  font-family: var(--ps-display); font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600; font-style: italic; color: var(--ps-red-bright);
  text-transform: none; line-height: 1.05;
}
.ps-hero__intro { font-size: 18px; line-height: 1.6; color: rgba(244,245,246,0.78); max-width: 620px; }
.ps-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

/* ---------------------------------------------------------------
   6. Metric bar
--------------------------------------------------------------- */
.ps-metrics { background: var(--ps-panel); border-top: 3px solid var(--ps-red); }
.ps-metrics__grid {
  max-width: var(--ps-max); margin: 0 auto; padding: 0 var(--ps-gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.ps-metric { padding: 44px 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.ps-metric:first-child { padding-left: 0; }
.ps-metric__value {
  font-family: var(--ps-display); font-size: 68px; font-weight: 700;
  line-height: 0.9; white-space: nowrap;
}
.ps-metric__value small { font-size: 38px; }
.ps-metric__label {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,245,246,0.6);
  margin-top: 10px; white-space: nowrap;
}
.ps-metric--cta {
  border-right: 0; padding: 44px 0 44px 40px;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
}
.ps-metric--cta h3 { font-size: 28px; }
.ps-metric--cta p {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ps-red-bright);
}
.ps-metric--cta a {
  font-family: var(--ps-display); font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ps-light); margin-top: 4px;
}
.ps-metric--cta a:hover { color: var(--ps-red-bright); }

/* ---------------------------------------------------------------
   7. Section shells
--------------------------------------------------------------- */
.ps-section { padding: var(--ps-section-y) 0; }
.ps-section--light { background: var(--ps-light); color: var(--ps-panel); }
.ps-section--white { background: #fff; color: var(--ps-panel); border-top: 1px solid rgba(20,24,28,0.1); }
.ps-section--black { background: var(--ps-black); }
.ps-section--panel { background: var(--ps-panel); }
.ps-section--rule { border-top: 3px solid var(--ps-red); }
.ps-section h2 { color: inherit; }
.ps-section--light h2, .ps-section--white h2 { color: var(--ps-black); }

.ps-stack { display: flex; flex-direction: column; gap: 48px; }
.ps-split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px; align-items: start;
}
.ps-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ps-head-row__title { display: flex; flex-direction: column; gap: 14px; }
.ps-head-row__note { max-width: 380px; font-size: 16px; line-height: 1.65; color: rgba(20,24,28,0.7); }
.ps-head-row__note--light { color: rgba(244,245,246,0.6); font-size: 15px; max-width: 360px; }
.ps-h2-xl { font-size: clamp(40px, 4.4vw, 62px); }
.ps-h2-lg { font-size: clamp(36px, 3.8vw, 54px); }

/* ---------------------------------------------------------------
   8. Product cards
--------------------------------------------------------------- */
.ps-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px; }
.ps-card { position: relative; display: block; background: var(--ps-panel); overflow: hidden; color: #fff; }
.ps-card:hover { color: #fff; }
.ps-card__media { height: 340px; overflow: hidden; }
.ps-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) brightness(0.82);
  transition: transform 400ms ease, filter 400ms ease;
}
.ps-card:hover .ps-card__media img { transform: scale(1.035); filter: grayscale(0.1) brightness(0.9); }
.ps-card__body { padding: 30px 30px 34px; display: flex; flex-direction: column; gap: 12px; }
.ps-card__body h3 { font-size: 30px; color: #fff; }
.ps-card__body p { font-size: 15px; line-height: 1.6; color: rgba(244,245,246,0.68); }
.ps-card__more {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ps-red-bright); margin-top: 6px;
}

/* ---------------------------------------------------------------
   9. Partner grid
--------------------------------------------------------------- */
.ps-partner__claim {
  font-family: var(--ps-display); font-size: 26px; font-weight: 700;
  text-transform: uppercase; color: var(--ps-red); letter-spacing: 0.01em;
}
.ps-quad {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: rgba(20,24,28,0.12);
}
.ps-quad > div { background: #fff; padding: 30px; display: flex; flex-direction: column; gap: 10px; }
.ps-quad h4 { font-size: 22px; color: var(--ps-black); }
.ps-quad p { font-size: 15px; line-height: 1.6; color: rgba(20,24,28,0.68); }

/* ---------------------------------------------------------------
   10. Emergency band
--------------------------------------------------------------- */
.ps-emergency { position: relative; overflow: hidden; }
.ps-emergency__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(0.6) brightness(0.4);
}
.ps-emergency__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,12,14,0.95) 0%, rgba(10,12,14,0.72) 60%, rgba(200,16,46,0.28) 100%);
}
.ps-emergency__inner {
  position: relative; max-width: var(--ps-max); margin: 0 auto;
  padding: 100px var(--ps-gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px; align-items: start;
}
.ps-emergency h2 { font-size: clamp(40px, 4.6vw, 66px); }
.ps-emergency__col { display: flex; flex-direction: column; gap: 20px; }
.ps-emergency__col p { max-width: 600px; }
.ps-emergency .ps-btn { align-self: flex-start; margin-top: 10px; padding: 18px 32px; font-size: 19px; }
.ps-checklist { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.16); }
.ps-checklist__label {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,245,246,0.55); padding: 18px 0 8px;
}
.ps-checklist li {
  display: flex; align-items: center; gap: 14px; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 16px; list-style: none;
}
.ps-checklist ul { margin: 0; padding: 0; }
.ps-checklist li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ps-checklist li::before { content: '\2713'; color: var(--ps-red-bright); }

/* ---------------------------------------------------------------
   11. Capabilities
--------------------------------------------------------------- */
.ps-caps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: rgba(20,24,28,0.14);
}
.ps-cap {
  background: #fff; padding: 34px 26px;
  display: flex; flex-direction: column; gap: 12px; min-height: 190px;
}
.ps-cap__num { font-family: var(--ps-mono); font-size: 11px; color: var(--ps-red); letter-spacing: 0.16em; }
.ps-cap h4 { font-size: 24px; color: var(--ps-black); }
.ps-cap p { font-size: 14.5px; line-height: 1.6; color: rgba(20,24,28,0.66); }

/* ---------------------------------------------------------------
   12. Materials table
--------------------------------------------------------------- */
.ps-materials { display: flex; flex-direction: column; }
.ps-material {
  display: grid; grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 24px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14); align-items: baseline;
}
.ps-material:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.ps-material__key {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(244,245,246,0.5);
}
.ps-material__val {
  font-family: var(--ps-display); font-size: 27px; font-weight: 600; text-transform: uppercase;
}

/* ---------------------------------------------------------------
   13. Featured work
--------------------------------------------------------------- */
.ps-work { background: var(--ps-black); }
.ps-work__media { aspect-ratio: 4 / 5; overflow: hidden; }
.ps-work__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) brightness(0.95);
}
.ps-work__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 18px; }
.ps-work__body h3 { font-size: 26px; }
.ps-specs { display: flex; flex-direction: column; font-family: var(--ps-mono); font-size: 12px; color: rgba(244,245,246,0.62); }
.ps-specs div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.ps-specs span:last-child { color: var(--ps-light); text-align: right; }

/* ---------------------------------------------------------------
   14. Quality
--------------------------------------------------------------- */
.ps-callout {
  margin-top: 8px;
  border: 1px solid rgba(200,16,46,0.35); border-left: 4px solid var(--ps-red);
  padding: 22px 24px; background: rgba(200,16,46,0.04);
  display: flex; flex-direction: column; gap: 8px;
}
.ps-callout__label {
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ps-red);
}
.ps-callout p { font-size: 16px; line-height: 1.6; color: var(--ps-panel); }
.ps-rows { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.ps-rows li {
  padding: 17px 0; border-top: 1px solid rgba(20,24,28,0.14);
  font-size: 16.5px; color: rgba(20,24,28,0.85);
}
.ps-rows li:last-child { border-bottom: 1px solid rgba(20,24,28,0.14); }

/* ---------------------------------------------------------------
   15. About
--------------------------------------------------------------- */
.ps-about__stack { display: flex; flex-direction: column; gap: 70px; }
.ps-about__body { display: flex; flex-direction: column; gap: 20px; padding-top: 46px; }
.ps-about h2 { font-size: clamp(38px, 4vw, 58px); }
.ps-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px; }
.ps-value { background: var(--ps-panel); padding: 42px 34px; display: flex; flex-direction: column; gap: 14px; }
.ps-value h3 { font-size: 34px; color: var(--ps-red-bright); }
.ps-value p { font-size: 15.5px; line-height: 1.65; color: rgba(244,245,246,0.72); }

/* ---------------------------------------------------------------
   16. Quote form
--------------------------------------------------------------- */
.ps-quote__tagline {
  font-family: var(--ps-display); font-size: 30px; font-weight: 600;
  font-style: italic; text-transform: none; color: var(--ps-red); line-height: 1.05;
}
.ps-contact-block {
  margin-top: 14px; display: flex; flex-direction: column; gap: 2px;
  font-family: var(--ps-mono); font-size: 13px; color: rgba(20,24,28,0.8); line-height: 1.9;
}
.ps-contact-block__label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(20,24,28,0.5); margin-bottom: 8px;
}
.ps-contact-block a { color: rgba(20,24,28,0.8); }
.ps-contact-block a:hover { color: var(--ps-red); }

.ps-form {
  background: #fff; border: 1px solid rgba(20,24,28,0.14); padding: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px;
}
.ps-field {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--ps-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(20,24,28,0.6);
}
.ps-field--wide { grid-column: 1 / -1; }
.ps-form input[type=text],
.ps-form input[type=email],
.ps-form input[type=tel],
.ps-form select,
.ps-form textarea {
  border: 0; border-bottom: 1px solid rgba(20,24,28,0.28);
  padding: 10px 0; font-size: 15px; color: var(--ps-panel);
  background: transparent; outline: none; border-radius: 0;
}
.ps-form textarea { resize: vertical; }
.ps-form input:focus, .ps-form select:focus, .ps-form textarea:focus { border-bottom-color: var(--ps-red); }
.ps-file {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 12px;
  border: 1px dashed rgba(20,24,28,0.28); padding: 20px;
  font-family: var(--ps-mono); font-size: 12px; color: rgba(20,24,28,0.7);
  cursor: pointer; text-transform: none; letter-spacing: 0;
}
.ps-file:hover { border-color: var(--ps-red); }
.ps-file span { color: var(--ps-red); font-size: 16px; }
.ps-file input { display: none; }
.ps-file__name { color: var(--ps-panel); }
.ps-check {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 12px;
  background: rgba(200,16,46,0.06); border-left: 4px solid var(--ps-red);
  padding: 16px 18px; font-size: 15px; color: var(--ps-panel); cursor: pointer;
}
.ps-check input { width: 17px; height: 17px; accent-color: var(--ps-red); }
.ps-form__submit {
  grid-column: 1 / -1; width: 100%; justify-content: center;
  padding: 19px; font-size: 20px; letter-spacing: 0.09em;
}
.ps-form__notice {
  grid-column: 1 / -1; font-family: var(--ps-mono); font-size: 12px;
  color: var(--ps-red); letter-spacing: 0.1em; text-transform: uppercase;
}
.ps-hp { position: absolute; left: -9999px; }

/* ---------------------------------------------------------------
   17. Footer
--------------------------------------------------------------- */
.ps-footer {
  background: var(--ps-black); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 62px 0 34px;
}
.ps-footer__inner { display: flex; flex-direction: column; gap: 44px; }
.ps-footer__top {
  display: flex; justify-content: space-between; gap: 60px;
  flex-wrap: wrap; align-items: flex-start;
}
.ps-footer__brand { display: flex; flex-direction: column; gap: 20px; max-width: 320px; }
.ps-footer__brand .ps-brand__mark { font-size: 32px; line-height: 1; }
.ps-footer__brand p { font-size: 14.5px; line-height: 1.65; color: rgba(244,245,246,0.6); }
.ps-footer__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ps-footer__nav .sub-menu { display: none; }
.ps-footer__nav a {
  font-family: var(--ps-display); font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: rgba(244,245,246,0.75);
}
.ps-footer__nav a:hover { color: var(--ps-red-bright); }
.ps-footer__contact {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--ps-mono); font-size: 13px;
  color: rgba(244,245,246,0.65); line-height: 1.8;
}
.ps-footer__contact a { color: rgba(244,245,246,0.65); }
.ps-footer__contact a:hover { color: var(--ps-red-bright); }
.ps-footer__contact-label {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,245,246,0.4); margin-bottom: 8px;
}
.ps-footer__bottom {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(244,245,246,0.42);
}
.ps-footer__bottom a { color: rgba(244,245,246,0.42); }
.ps-footer__bottom a:hover { color: var(--ps-red-bright); }

/* ---------------------------------------------------------------
   18. Interior pages / editor content
--------------------------------------------------------------- */
.ps-page-hero {
  background: var(--ps-panel); border-top: 3px solid var(--ps-red);
  padding: 84px 0 68px;
}
.ps-page-hero h1 { font-size: clamp(40px, 5vw, 72px); }
.ps-page-hero .ps-eyebrow { margin-bottom: 14px; display: block; }
.ps-content { padding: 80px 0 100px; }
.ps-prose { max-width: 760px; font-size: 17px; line-height: 1.75; color: rgba(244,245,246,0.82); }
.ps-prose > * + * { margin-top: 24px; }
.ps-prose h2 { font-size: 40px; margin-top: 48px; }
.ps-prose h3 { font-size: 28px; margin-top: 36px; }
.ps-prose ul, .ps-prose ol { padding-left: 20px; }
.ps-prose li + li { margin-top: 10px; }
.ps-prose blockquote {
  margin: 0; padding: 18px 24px; border-left: 4px solid var(--ps-red);
  background: rgba(200,16,46,0.06);
}
.ps-prose img { margin: 8px 0; }
.ps-archive { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 4px; }
.ps-archive__item { background: var(--ps-panel); padding: 34px; display: flex; flex-direction: column; gap: 12px; }
.ps-archive__item h2 { font-size: 26px; }
.ps-archive__item h2 a { color: var(--ps-light); }
.ps-archive__item h2 a:hover { color: var(--ps-red-bright); }
.ps-archive__meta { font-family: var(--ps-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,245,246,0.5); }
.ps-archive__item p { font-size: 15px; line-height: 1.6; color: rgba(244,245,246,0.7); }
.ps-pagination { margin-top: 40px; font-family: var(--ps-mono); font-size: 13px; }
.ps-pagination .page-numbers { padding: 8px 12px; color: rgba(244,245,246,0.7); }
.ps-pagination .current { background: var(--ps-red); color: #fff; }

/* ---------------------------------------------------------------
   19. Responsive
--------------------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --ps-section-y: 88px; }
  .ps-metric:first-child { padding-left: 32px; }
  .ps-metric--cta { padding-left: 32px; }
}

@media (max-width: 900px) {
  .ps-nav-toggle { display: block; }
  .ps-nav {
    display: none; width: 100%; margin-left: 0; order: 3;
    border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0 8px;
  }
  .ps-nav.is-open { display: block; }
  .ps-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .ps-nav > ul > li > a { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ps-nav .sub-menu {
    position: static; display: block; box-shadow: none; border: 0;
    border-left: 2px solid var(--ps-red); min-width: 0; padding: 0 0 0 4px; margin: 0 0 8px 12px;
  }
  .ps-nav .sub-menu a { padding: 12px 14px; }
  .ps-nav .ps-cta > a { display: inline-block; margin-top: 14px; }
  .ps-nav .menu-item-has-children > a::after { float: right; }

  .ps-split, .ps-emergency__inner { grid-template-columns: 1fr; gap: 44px; }
  .ps-about__body { padding-top: 0; }
  .ps-hero { min-height: 560px; }
  .ps-metric, .ps-metric:first-child, .ps-metric--cta {
    padding: 30px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,0.1);
  }
  .ps-metrics__grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0 32px; }
  .ps-metric__value { font-size: 54px; }
}

@media (max-width: 640px) {
  :root { --ps-section-y: 64px; }
  .ps-strip { gap: 10px; font-size: 10.5px; text-align: center; }
  .ps-header__inner { padding-top: 12px; padding-bottom: 12px; min-height: 0; }
  .ps-brand__mark { font-size: 25px; }
  .ps-hero__inner { padding-bottom: 60px; }
  .ps-hero__actions .ps-btn { width: 100%; justify-content: center; }
  .ps-card__media { height: 240px; }
  .ps-form { padding: 26px 20px; grid-template-columns: 1fr; gap: 20px; }
  .ps-material { grid-template-columns: 1fr; gap: 6px; }
  .ps-material__val { font-size: 23px; }
  .ps-quad > div, .ps-value { padding: 26px 22px; }
  .ps-emergency__inner { padding: 64px var(--ps-gutter); }
  .ps-footer__top { gap: 36px; }
  .ps-footer__bottom { flex-direction: column; gap: 10px; }
}

@media print {
  .ps-header, .ps-strip, .ps-nav-toggle { position: static; }
  body { background: #fff; color: #000; }
}

/* ---------------------------------------------------------------
   Contact Form 7 / plugin forms inside .ps-form
--------------------------------------------------------------- */
.ps-form--plugin .wpcf7-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.ps-form--plugin .wpcf7-form > p,
.ps-form--plugin .wpcf7-form label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(15, 20, 25, 0.55);
}
.ps-form--plugin .wpcf7-form .ps-wide,
.ps-form--plugin .wpcf7-form > p:has(textarea),
.ps-form--plugin .wpcf7-form > p:has(.wpcf7-submit),
.ps-form--plugin .wpcf7-form > p:has(input[type="file"]),
.ps-form--plugin .wpcf7-form > p:has(.wpcf7-acceptance) {
	grid-column: 1 / -1;
}
.ps-form--plugin input[type="text"],
.ps-form--plugin input[type="email"],
.ps-form--plugin input[type="tel"],
.ps-form--plugin input[type="url"],
.ps-form--plugin input[type="number"],
.ps-form--plugin input[type="date"],
.ps-form--plugin select,
.ps-form--plugin textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font: inherit;
	font-size: 15px;
	letter-spacing: 0;
	text-transform: none;
	color: #0F1419;
	background: #FFFFFF;
	border: 1px solid rgba(15, 20, 25, 0.18);
	border-radius: 2px;
}
.ps-form--plugin textarea { min-height: 110px; resize: vertical; }
.ps-form--plugin input:focus,
.ps-form--plugin select:focus,
.ps-form--plugin textarea:focus {
	outline: none;
	border-color: #FF3B52;
}
.ps-form--plugin input[type="file"] {
	font-size: 13px;
	letter-spacing: 0;
	text-transform: none;
	padding: 14px;
	border: 1px dashed rgba(15, 20, 25, 0.25);
	border-radius: 2px;
	background: rgba(15, 20, 25, 0.02);
}
.ps-form--plugin .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.ps-form--plugin .wpcf7-list-item-label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; }
.ps-form--plugin .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFFFFF;
	background: #FF3B52;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.18s ease;
}
.ps-form--plugin .wpcf7-submit:hover { background: #E32941; }
.ps-form--plugin .wpcf7-not-valid-tip { font-size: 12px; letter-spacing: 0; text-transform: none; color: #E32941; font-weight: 500; }
.ps-form--plugin .wpcf7-response-output {
	grid-column: 1 / -1;
	margin: 0;
	padding: 14px 16px;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	border-width: 1px;
	border-radius: 2px;
}
.ps-form--plugin .wpcf7-spinner { margin: 0 0 0 10px; }
@media (max-width: 720px) {
	.ps-form--plugin .wpcf7-form { grid-template-columns: 1fr; }
}
