/* ============================================================
   Brew Pumps USA — Industrial B2B Stylesheet
   Navy #0B1F3A | Gold #C8972B | System fonts
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #162d52;
  --navy-light: #1e3a6a;
  --gold:       #C8972B;
  --gold-light: #e0aa3a;
  --gold-pale:  #fdf3e0;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-400:   #ced4da;
  --gray-600:   #6c757d;
  --gray-800:   #343a40;
  --text:       #1a1a2e;
  --green:      #2d7a4f;
  --green-bg:   #e8f5ee;
  --font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius:     6px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
  --shadow:     0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 28px rgba(0,0,0,.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-top: 8px;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.75);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-item { display: flex; align-items: center; gap: 5px; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img {
  height: 52px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text .brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text .brand-name span { color: var(--gold); }
.logo-text .brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}

nav.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
nav.site-nav a:hover,
nav.site-nav a.active {
  background: var(--navy);
  color: var(--white);
}
nav.site-nav .btn-quote {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-left: 6px;
}
nav.site-nav .btn-quote:hover {
  background: var(--gold-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Guarantee Bar ── */
.guarantee-bar {
  background: var(--green-bg);
  border-bottom: 2px solid var(--green);
  padding: 9px 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.guarantee-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.guarantee-bar .g-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,151,43,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,58,106,.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,43,.15);
  border: 1px solid rgba(200,151,43,.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  max-width: 760px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Delivery snapshot inside hero */
.delivery-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
}
.ds-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
}
.ds-card .ds-time {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}
.ds-card .ds-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,.62);
  font-weight: 500;
  line-height: 1.3;
}
.ds-card.ds-highlight {
  border-color: rgba(200,151,43,.4);
  background: rgba(200,151,43,.08);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item .ti-icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .ti-icon svg { width: 14px; height: 14px; fill: var(--gold); }

/* ── Section Generic ── */
section { padding: 72px 0; }
section.alt-bg { background: var(--off-white); }
.section-head { margin-bottom: 40px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 8px auto 0; }

/* ── Pump Cards ── */
.pump-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pump-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pump-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pump-card-header {
  background: var(--navy);
  padding: 22px 22px 16px;
  position: relative;
}
.pump-card-header .pc-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.pump-card-header h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
}
.pump-card-header .pc-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  opacity: .18;
}
.pump-card-body { padding: 22px; flex: 1; }
.pump-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.pump-spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.85rem;
}
.pump-spec-row .psr-k {
  font-weight: 600;
  color: var(--gray-800);
  min-width: 90px;
  flex-shrink: 0;
}
.pump-spec-row .psr-v { color: var(--gray-600); }
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,151,43,.3);
  color: #7a5a10;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.pump-card-footer {
  padding: 0 22px 22px;
}
.pump-card-footer .btn { width: 100%; }

/* ── Lead Time Table ── */
.lt-table-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.lt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.lt-table thead {
  background: var(--navy);
  color: var(--white);
}
.lt-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lt-table tbody tr:nth-child(even) { background: var(--gray-100); }
.lt-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.lt-table td {
  padding: 13px 18px;
  vertical-align: middle;
}
.lt-table .lt-type {
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lt-table .lt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lt-table .lt-time { font-weight: 700; color: var(--navy); }
.lt-table .lt-note { font-size: 0.8rem; color: var(--gray-600); }
.lt-dot-green  { background: #2d7a4f; }
.lt-dot-yellow { background: #c8972b; }
.lt-dot-red    { background: #c0392b; }
.lt-dot-purple { background: #6c3483; }

.guarantee-callout {
  margin-top: 20px;
  background: var(--green-bg);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #1b5e37;
}
.guarantee-callout .gc-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: var(--green);
}
.guarantee-callout strong { font-weight: 700; }

/* ── Markets Grid ── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.market-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200,151,43,.15);
}
.market-card .mc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.market-card .mc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.why-card .wc-num {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── CTA Strip ── */
.cta-strip {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-strip p {
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.cta-strip .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Capabilities Page ── */
.caps-intro {
  background: var(--navy);
  padding: 54px 0 48px;
  text-align: center;
  color: var(--white);
}
.caps-intro h1 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.caps-intro p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }

.pump-section {
  padding: 64px 0;
}
.pump-section.alt-bg { background: var(--off-white); }
.pump-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.psg-left .ps-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.psg-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.psg-left .ps-desc {
  font-size: 0.93rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.65;
}
.ps-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.ps-feature {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.88rem;
}
.ps-feature::before {
  content: '✓';
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.psg-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.spec-card-head {
  background: var(--navy);
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.spec-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 9px;
  gap: 12px;
}
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-row .sk { color: var(--gray-600); font-weight: 500; }
.spec-row .sv { color: var(--navy); font-weight: 600; text-align: right; }

.delivery-panel {
  background: var(--gold-pale);
  border: 1px solid rgba(200,151,43,.4);
  border-radius: 8px;
  padding: 16px;
}
.delivery-panel .dp-head {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7a5a10;
  margin-bottom: 10px;
}
.delivery-panel .dp-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,151,43,.2);
}
.delivery-panel .dp-row:last-child { border-bottom: none; }
.delivery-panel .dp-row .dk { color: #6b4c10; font-weight: 500; }
.delivery-panel .dp-row .dv { color: var(--navy); font-weight: 700; }

/* ── Key Claims Bar ── */
.claims-strip {
  background: var(--navy-mid);
  padding: 28px 0;
}
.claims-strip .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.claim-item .ci-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}
.claim-item .ci-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-top: 2px;
}

/* ── Contact Page ── */
.contact-hero {
  background: var(--navy);
  padding: 52px 0 44px;
  text-align: center;
  color: var(--white);
}
.contact-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-hero p { color: rgba(255,255,255,.68); max-width: 500px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Form */
.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.quote-form-wrap h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.quote-form-wrap .qf-sub {
  font-size: 0.86rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 5px;
}
label.form-label span.req { color: #c0392b; margin-left: 2px; }
input.form-input,
select.form-input,
textarea.form-input {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--gray-400);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input.form-input:focus,
select.form-input:focus,
textarea.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,43,.15);
}
textarea.form-input { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }
.form-msg {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}
.form-msg.success { background: var(--green-bg); color: var(--green); border: 1px solid var(--green); }
.form-msg.error   { background: #fdf0f0; color: #c0392b; border: 1px solid #e74c3c; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ci-label { font-weight: 600; color: var(--gray-800); }
.contact-item .ci-val { color: var(--gray-600); }
.contact-item a { color: var(--navy); font-weight: 600; }
.contact-item a:hover { color: var(--gold); }

.lt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lt-sidebar-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 10px;
}
.lt-sidebar-row:last-child { border-bottom: none; }
.lt-sidebar-row .lsr-k { color: var(--gray-600); }
.lt-sidebar-row .lsr-v { font-weight: 700; color: var(--navy); text-align: right; }

.guarantee-card {
  background: var(--green-bg);
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 20px;
}
.guarantee-card .gc-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.guarantee-card p {
  font-size: 0.86rem;
  color: #1b5e37;
  line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 52px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand .logo-wrap img { height: 44px; margin-bottom: 14px; }
.footer-brand .logo-text .brand-name { color: var(--white); }
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 7px;
  font-size: 0.84rem;
}
.footer-col ul a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.8;
}
.footer-col address a { color: var(--gold); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bar a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bar a:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .delivery-snapshot { grid-template-columns: repeat(2, 1fr); }
  .pump-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pump-section-grid { grid-template-columns: 1fr; gap: 30px; }
  .claims-strip .container { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  nav.site-nav { display: none; }
  nav.site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 16px 24px;
    z-index: 99;
  }
  nav.site-nav.open ul { flex-direction: column; gap: 4px; }
  nav.site-nav.open a { display: block; padding: 10px 14px; }
  nav.site-nav.open .btn-quote { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .top-bar-left { display: none; }
  .delivery-snapshot { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pump-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .claims-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 44px; }
  .delivery-snapshot { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .claims-strip .container { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.65rem; }
  .cta-strip .cta-btns { flex-direction: column; align-items: center; }
  .quote-form-wrap { padding: 20px 16px; }
  .footer-bar { flex-direction: column; text-align: center; }
}
