@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto+Condensed:wght@400;700&family=Barlow:wght@400;500;600;700&display=swap');

/*
 * "Service Tag" — industrial equipment-label aesthetic.
 *
 * Oswald condensed caps for headlines (stencil/placard feel), Barlow for body,
 * Roboto Condensed for numerals and data. Zero border-radius anywhere. Heavy
 * rules, hard edges, dense grid. Navy + brass palette retained unchanged.
 *
 * Mobile-first: 20px base for a 55+ audience, 60px tap targets, min-width
 * breakpoints only. All body sizes come from the --fs-* scale in :root.
 */

:root {
  --navy: #0f2a44;
  --navy-deep: #091c2f;
  --navy-mid: #1c405f;
  --navy-line: rgba(15, 42, 68, 0.16);
  --brass: #b8892b;
  --brass-light: #d4af37;
  --brass-dark: #8f6a1f;
  --bone: #f7f4ee;
  --bone-warm: #ebe6dc;
  --paper: #fdfcfa;
  --ink: #131c25;
  --ink-soft: #41505f;
  --muted: #6d7b88;
  --sea: #1f6f6b;
  --wrap: 1200px;
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --text: 'Barlow', -apple-system, 'Segoe UI', sans-serif;
  --data: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  /* Type scale — tuned for a 55+ audience. Adjust here, not per component. */
  --fs-xs: 13px;
  --fs-sm: 15px;
  --fs-base: 17px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 21px;
  --fs-2xl: 22px;
  --tap: 60px;
}

*, *::before, *::after { box-sizing: border-box; }

/* Nothing on this page is rounded. */
* { border-radius: 0 !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--text);
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px;
}

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

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h1 { font-size: 44px; }
h2 { font-size: 35px; }
h3 { font-size: var(--fs-2xl); font-weight: 600; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.wrap-narrow { max-width: 820px; }

/* Stencil label — hard block, not a soft pill. */
.plate {
  display: inline-block;
  font-family: var(--data);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--brass-light);
  padding: 5px 11px;
  margin: 0 0 18px;
}
.plate--light { background: var(--brass); color: #fff; }

.lede { font-size: var(--fs-xl); line-height: 1.52; color: var(--ink-soft); }
.lede--light { color: rgba(247, 244, 238, 0.82); }

/* ---------- Buttons: hard-edged stamps ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  width: 100%; min-height: var(--tap); padding: 17px 26px;
  font-family: var(--display); font-size: var(--fs-2xl); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 0; cursor: pointer; text-align: center;
  transition: background 0.12s linear, color 0.12s linear, box-shadow 0.12s linear, transform 0.08s linear;
}
.btn svg { width: 22px; height: 22px; flex: none; stroke-width: 2.4; }

/* Brass stamp with a hard offset shadow — presses in on click. */
.btn--primary {
  background: var(--brass); color: #fff;
  box-shadow: 5px 5px 0 var(--navy-deep);
}
.btn--primary:hover { background: var(--brass-dark); }
.btn--primary:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--navy-deep); }

.btn--navy {
  background: var(--navy); color: var(--bone);
  box-shadow: 5px 5px 0 var(--brass);
}
.btn--navy:hover { background: var(--navy-deep); }
.btn--navy:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--brass); }

.btn--outline { background: transparent; box-shadow: inset 0 0 0 2px var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--bone); }

.btn--outline-light { background: transparent; box-shadow: inset 0 0 0 2px rgba(247,244,238,0.42); color: var(--bone); }
.btn--outline-light:hover { box-shadow: inset 0 0 0 2px var(--brass-light); color: var(--brass-light); }

/* ---------- Marquee: hard urgency strip ---------- */
.marquee {
  background: var(--brass); color: var(--navy-deep);
  border-bottom: 3px solid var(--navy-deep);
  overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; gap: 0;
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 0;
  animation: slide 34s linear infinite;
}
.marquee__track span { padding: 0 26px; position: relative; }
.marquee__track span::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 3px; background: var(--navy-deep);
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 3px solid var(--navy);
}
.header__inner { display: flex; align-items: center; gap: 14px; min-height: 66px; }

.brand { display: flex; align-items: center; gap: 11px; flex: 1; min-width: 0; padding: 8px 0; }
.brand__mark {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  background: var(--navy); color: var(--brass-light);
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 700; letter-spacing: 0.02em;
}
.brand__name {
  font-family: var(--display); font-size: var(--fs-md); font-weight: 600;
  letter-spacing: 0.01em; line-height: 1.05; color: var(--navy); text-transform: uppercase;
}
.brand__sub {
  display: block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 400;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

.header__call {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex: none;
  min-height: 46px; padding: 0 16px;
  background: var(--brass); color: #fff;
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--navy);
  transition: background 0.12s linear, transform 0.08s linear, box-shadow 0.12s linear;
}
.header__call:hover { background: var(--brass-dark); }
.header__call:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--navy); }
.header__call svg { width: 20px; height: 20px; stroke-width: 2.5; }
.header__call span { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-deep); color: var(--bone); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; filter: grayscale(0.5) contrast(1.15); }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,28,47,0.9) 0%, rgba(9,28,47,0.84) 50%, rgba(9,28,47,0.96) 100%);
}
.hero__inner { position: relative; padding: 28px 0 34px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px;
  padding: 8px 14px; background: var(--sea); color: #fff;
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.hero__badge::before {
  content: ''; width: 8px; height: 8px; background: #fff; flex: none;
  animation: flash 1.4s steps(1) infinite;
}
@keyframes flash { 50% { opacity: 0.25; } }

.hero h1 {
  font-size: 50px; font-weight: 700; color: var(--bone);
  line-height: 0.94; letter-spacing: 0.002em; margin-bottom: 18px;
}
.hero h1 em {
  display: block; font-style: normal; color: var(--navy-deep);
  background: var(--brass-light); padding: 0 8px; margin-top: 4px;
  width: fit-content;
}
.hero__sub { font-size: var(--fs-xl); line-height: 1.45; color: rgba(247,244,238,0.86); margin-bottom: 26px; }

/* Phone slab — the loudest thing on the page. */
.hero__phonebox {
  background: var(--brass-light); color: var(--navy-deep);
  padding: 20px 20px 18px; margin-bottom: 12px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}
.hero__phonelabel {
  display: block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase; color: rgba(9,28,47,0.72);
  margin-bottom: 6px;
}
.hero__phonenum {
  display: block; font-family: var(--display); font-size: 50px; font-weight: 700;
  letter-spacing: -0.005em; color: var(--navy-deep); line-height: 0.95; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.hero__points { list-style: none; padding: 0; margin: 24px 0 0; }
.hero__points li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-top: 1px solid rgba(247,244,238,0.2);
  font-size: var(--fs-lg); font-weight: 500; color: rgba(247,244,238,0.94);
}
.hero__points li:last-child { border-bottom: 1px solid rgba(247,244,238,0.2); }
.hero__points b {
  flex: none; width: 26px; height: 26px; display: grid; place-items: center;
  background: var(--brass); color: #fff;
  font-family: var(--data); font-size: var(--fs-xs); font-weight: 700;
}

/* ---------- Credentials ---------- */
.creds { background: var(--navy); color: var(--bone); border-top: 3px solid var(--brass); }
.creds__grid { display: grid; }
.creds__item { display: flex; gap: 15px; padding: 20px 0; border-top: 1px solid rgba(247,244,238,0.16); }
.creds__item:first-child { border-top: 0; }
.creds__item svg { width: 27px; height: 27px; flex: none; stroke: var(--brass-light); stroke-width: 2; margin-top: 2px; }
.creds__item strong {
  display: block; font-family: var(--display); font-size: var(--fs-xl); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.creds__item span { display: block; font-family: var(--data); font-size: var(--fs-base); color: rgba(247,244,238,0.66); margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 48px 0; }
.section--paper { background: var(--paper); }
.section--warm { background: var(--bone-warm); }
.section--navy { background: var(--navy); color: var(--bone); }
.section--navy h2, .section--navy h3 { color: var(--bone); }
.section--rule { border-top: 3px solid var(--navy); }

.section__head { margin-bottom: 28px; }
.section__head p { margin-bottom: 0; }

/* ---------- Symptom index ---------- */
.symptoms { border-top: 2px solid var(--navy); }
.symptom {
  display: flex; align-items: center; gap: 14px; min-height: var(--tap);
  padding: 16px 12px 16px 0; border-bottom: 1px solid var(--navy-line);
  transition: background 0.12s linear, color 0.12s linear;
}
.symptom:hover { background: var(--navy); }
.symptom:hover .symptom__label { color: var(--bone); }
.symptom:hover svg.symptom__icon { stroke: var(--brass-light); }
.symptom__idx {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--navy); color: var(--brass-light);
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
}
.symptom:hover .symptom__idx { background: var(--brass); color: #fff; }
.symptom svg.symptom__icon { width: 26px; height: 26px; flex: none; stroke: var(--navy-mid); stroke-width: 2; }
.symptom__label {
  flex: 1; font-family: var(--display); font-size: var(--fs-xl); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); line-height: 1.1;
}
.symptom__go {
  flex: none; padding: 6px 12px; background: var(--brass); color: #fff;
  font-family: var(--data); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
}

/* ---------- Rate card ---------- */
.rates { background: var(--paper); border: 3px solid var(--navy); padding: 0; }
.rates__row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--navy-line);
}
.rates__row:nth-child(odd) { background: rgba(15,42,68,0.03); }
.rates__row span {
  flex: 1; font-family: var(--data); font-size: var(--fs-md); font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.rates__row i { display: none; }
.rates__row b {
  flex: none; font-family: var(--display); font-size: 30px; font-weight: 700;
  color: var(--navy); letter-spacing: 0; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.rates__note {
  margin: 0; padding: 18px 22px; background: var(--navy); color: rgba(247,244,238,0.82);
  font-size: var(--fs-md); line-height: 1.5;
}

/* ---------- Service plates ---------- */
.plates { display: grid; gap: 2px; background: var(--navy); border: 3px solid var(--navy); }
.svcplate { background: var(--paper); padding: 22px 20px; transition: background 0.12s linear; }
.svcplate:hover { background: var(--bone-warm); }
.svcplate__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.svcplate__top svg { width: 30px; height: 30px; stroke: var(--navy); stroke-width: 2; }
.svcplate__no {
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.1em;
  background: var(--navy); color: var(--brass-light); padding: 4px 9px;
}
.svcplate h3 { margin-bottom: 8px; font-size: var(--fs-xl); }
.svcplate p { font-size: var(--fs-md); color: var(--ink-soft); line-height: 1.55; }
.svcplate ul { list-style: none; padding: 0; margin: 14px 0 0; }
.svcplate li {
  display: flex; gap: 9px; font-family: var(--data); font-size: var(--fs-base); color: var(--muted);
  padding: 6px 0; border-top: 1px solid var(--navy-line); letter-spacing: 0.03em;
}
.svcplate li::before { content: '▸'; color: var(--brass); flex: none; }

/* ---------- Procedure ---------- */
.proc { display: grid; gap: 2px; background: rgba(247,244,238,0.2); }
.proc__step {
  display: grid; grid-template-columns: 62px 1fr; gap: 18px;
  padding: 22px 18px; background: var(--navy);
}
.proc__num {
  font-family: var(--display); font-size: 42px; font-weight: 700; line-height: 0.8;
  color: var(--navy-deep); background: var(--brass-light);
  display: grid; place-items: center; height: 58px;
}
.proc__step h3 { font-size: var(--fs-2xl); margin-bottom: 6px; }
.proc__step p { font-size: var(--fs-md); color: rgba(247,244,238,0.74); line-height: 1.55; }

/* ---------- Editorial split ---------- */
.split { display: grid; gap: 30px; }
.split__media { position: relative; border: 3px solid var(--navy); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(0.25); }
.split__cap {
  margin: 10px 0 0; font-family: var(--data); font-size: var(--fs-sm);
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
}
.marks { list-style: none; padding: 0; margin: 22px 0 0; }
.marks li {
  display: flex; gap: 13px; padding: 12px 0; border-top: 1px solid var(--navy-line);
  font-size: var(--fs-lg); color: var(--ink-soft);
}
.marks li:last-child { border-bottom: 1px solid var(--navy-line); }
.marks svg { width: 20px; height: 20px; flex: none; stroke: var(--sea); stroke-width: 3; margin-top: 3px; }

/* ---------- Figures ---------- */
.figures { display: grid; gap: 2px; background: var(--navy); border: 3px solid var(--navy); }
.figure { background: var(--paper); padding: 22px 20px; }
.figure__val {
  font-family: var(--display); font-size: 46px; font-weight: 700; line-height: 0.9;
  letter-spacing: 0; color: var(--navy); font-variant-numeric: tabular-nums;
}
.figure__lab {
  font-family: var(--data); font-size: var(--fs-base); color: var(--muted); margin: 9px 0 0;
  line-height: 1.4; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Coverage ---------- */
.coverage { display: grid; gap: 2px; background: rgba(247,244,238,0.2); }
.coverage__item { background: var(--navy); padding: 16px 18px; transition: background 0.12s linear; }
.coverage__item:hover { background: var(--brass); }
.coverage__item strong {
  display: block; font-family: var(--display); font-size: var(--fs-xl); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.coverage__item span {
  display: block; font-family: var(--data); font-size: var(--fs-sm);
  color: rgba(247,244,238,0.66); margin-top: 3px; letter-spacing: 0.03em;
}
.coverage__item:hover span { color: rgba(255,255,255,0.88); }

/* ---------- Testimony ---------- */
.testimony { display: grid; gap: 2px; background: var(--navy); border: 3px solid var(--navy); }
.testify { background: var(--paper); padding: 24px 22px; display: flex; flex-direction: column; }
.testify__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testify__stars svg { width: 17px; height: 17px; fill: var(--brass); }
.testify blockquote {
  margin: 0 0 20px; font-size: var(--fs-lg); font-weight: 500; line-height: 1.48; color: var(--ink);
}
.testify__who { margin-top: auto; font-family: var(--data); font-size: var(--fs-base); color: var(--muted); letter-spacing: 0.04em; }
.testify__who strong {
  display: block; font-family: var(--display); font-size: var(--fs-lg); font-weight: 600;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px;
}
.reviews__cta { margin: 26px 0 0; text-align: center; }

/* ---------- Call band ---------- */
.band {
  background: var(--brass); color: var(--navy-deep); padding: 40px 0;
  border-top: 3px solid var(--navy-deep); border-bottom: 3px solid var(--navy-deep);
}
.band h2 { color: #fff; font-size: 37px; font-weight: 700; margin-bottom: 12px; }
.band p { font-size: var(--fs-lg); font-weight: 500; color: rgba(255,255,255,0.92); margin-bottom: 24px; }
.band__num {
  display: block; font-family: var(--display); font-size: 52px; font-weight: 700;
  color: #fff; letter-spacing: -0.005em; line-height: 0.95; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.band .btn--primary { background: var(--navy-deep); color: #fff; box-shadow: 5px 5px 0 rgba(9,28,47,0.3); }
.band .btn--primary:hover { background: var(--navy); }
.band .btn--outline-light { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.72); color: #fff; }
.band .btn--outline-light:hover { box-shadow: inset 0 0 0 2px #fff; background: rgba(255,255,255,0.14); color: #fff; }

/* ---------- Inline call rule ---------- */
.callrule {
  margin-top: 30px; padding: 20px; background: var(--navy);
  border-left: 8px solid var(--brass);
}
.callrule--light { background: rgba(0,0,0,0.28); border-left-color: var(--brass-light); }
.callrule__txt {
  font-family: var(--display); font-size: var(--fs-2xl); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.015em; color: var(--bone); margin: 0 0 16px; line-height: 1.12;
}

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--navy); }
.faq details { border-bottom: 1px solid var(--navy-line); }
.faq summary {
  display: flex; align-items: center; gap: 16px; padding: 20px 4px;
  min-height: var(--tap); cursor: pointer; list-style: none;
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.012em; color: var(--navy);
  line-height: 1.12; transition: color 0.12s linear;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-dark); }
/* Glyph-independent +/− so the mark is optically centred in both states. */
.faq summary::after {
  content: ''; margin-left: auto; flex: none;
  background: var(--navy); width: 32px; height: 32px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 14px 2px, 2px 14px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: background-color 0.12s linear, background-size 0.12s linear;
}
.faq details[open] summary::after {
  background-color: var(--brass);
  background-size: 14px 2px, 2px 0;
}
.faq details > div { padding: 0 8px 22px 0; font-size: var(--fs-lg); color: var(--ink-soft); }

/* ---------- Form ---------- */
.formcard { background: var(--paper); border: 3px solid var(--navy); padding: 24px 20px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px;
}
.field__opt { letter-spacing: 0.05em; font-weight: 400; color: var(--muted); }
.field input, .field select {
  width: 100%; font-family: var(--text); font-size: var(--fs-xl); padding: 15px 14px;
  min-height: var(--tap); color: var(--ink); background: #fff;
  border: 2px solid var(--navy-line);
  transition: border-color 0.12s linear, box-shadow 0.12s linear;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--brass); box-shadow: inset 0 0 0 1px var(--brass);
}
.field input::placeholder { color: #9aa5b0; }
.field__err {
  display: block; font-family: var(--data); font-size: var(--fs-base); font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; background: #a8341f; padding: 6px 10px; margin-top: 7px;
}

.formnote { font-family: var(--data); font-size: var(--fs-base); color: var(--muted); margin: 20px 0 0; line-height: 1.45; letter-spacing: 0.03em; }
.formok {
  padding: 18px; margin-bottom: 24px; background: var(--sea); color: #fff;
  font-size: var(--fs-lg); font-weight: 500;
}
.formalt {
  display: flex; align-items: center; gap: 14px; margin: 24px 0 16px;
  font-family: var(--data); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy);
}
.formalt::before, .formalt::after { content: ''; flex: 1; height: 2px; background: var(--navy); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep); color: rgba(247,244,238,0.7); padding: 40px 0 26px;
  font-size: var(--fs-md); border-top: 3px solid var(--brass);
}
.footer__grid { display: grid; gap: 28px; }
.footer h4 {
  font-family: var(--display); font-size: var(--fs-base); font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--brass-light); margin: 0 0 14px;
  padding-bottom: 8px; border-bottom: 2px solid rgba(212,175,55,0.35);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; font-family: var(--data); letter-spacing: 0.03em; }
.footer a { color: rgba(247,244,238,0.74); transition: color 0.12s linear; }
.footer a:hover { color: var(--brass-light); }
.footer__brand .brand__name { color: var(--bone); }
.footer__brand .brand__sub { color: rgba(247,244,238,0.52); }
.footer__num {
  display: block; font-family: var(--display); font-size: 38px; font-weight: 700;
  color: var(--brass-light); letter-spacing: -0.005em; margin: 16px 0 6px;
  font-variant-numeric: tabular-nums;
}
.footer__fine {
  margin: 28px 0 0; padding-top: 20px; border-top: 1px solid rgba(247,244,238,0.16);
  font-family: var(--data); font-size: var(--fs-sm); line-height: 1.55; color: rgba(247,244,238,0.44);
  letter-spacing: 0.02em;
}
.footer__copy { margin-top: 16px; font-family: var(--data); font-size: var(--fs-sm); color: rgba(247,244,238,0.4); letter-spacing: 0.04em; }

/* ---------- Fixed mobile call bar ---------- */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: flex; gap: 2px; background: var(--navy-deep);
  border-top: 3px solid var(--brass);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 66px; font-family: var(--display); font-size: var(--fs-xl); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.callbar__call { flex: 1.6; background: var(--brass); color: #fff; }
.callbar__call svg { width: 21px; height: 21px; stroke-width: 2.5; }
.callbar__alt { background: var(--navy); color: var(--bone); }

/* ---------- Tablet ---------- */
@media (min-width: 660px) {
  body { font-size: var(--fs-xl); }
  h1 { font-size: 66px; }
  h2 { font-size: 46px; }
  .hero h1 { font-size: 70px; }
  .hero__inner { padding: 44px 0 52px; }
  .hero__phonenum { font-size: 60px; }
  .section { padding: 66px 0; }
  .btn { width: auto; min-width: 250px; }
  .btn--block { width: 100%; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__actions .btn { min-width: 0; width: 100%; }
  .creds__grid { grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(247,244,238,0.18); }
  .creds__item { border-top: 0; padding: 24px 20px; background: var(--navy); }
  .plates { grid-template-columns: repeat(2, 1fr); }
  .figures { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: repeat(2, 1fr); }
  .testimony { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .header__call { min-height: 50px; padding: 0 22px; }
  .header__call span { display: inline; }
  .brand__name { font-size: var(--fs-2xl); }
  .callrule { display: flex; align-items: center; gap: 24px; }
  .callrule__txt { margin: 0; flex: 1; }
  .callrule .btn { min-width: 270px; }
  .band__num { font-size: 68px; }
  .formcard { padding: 34px 30px; }
  .fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .symptoms { border-top-width: 3px; }
}

/* ---------- Desktop ---------- */
@media (min-width: 1020px) {
  body { padding-bottom: 0; }
  .callbar { display: none; }
  .hero h1 { font-size: 92px; }
  .hero__inner {
    padding: 62px 0 72px;
    display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: start;
  }
  .hero__phonenum { font-size: 54px; }
  .section { padding: 84px 0; }
  .section__head { max-width: 780px; }
  .plates { grid-template-columns: repeat(3, 1fr); }
  .figures { grid-template-columns: repeat(4, 1fr); }
  .coverage { grid-template-columns: repeat(4, 1fr); }
  .testimony { grid-template-columns: repeat(3, 1fr); }
  .proc { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
  .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
  .band__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
  .band p { margin-bottom: 0; }
  .formgrid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Floating call button (desktop only — mobile has the call bar) ---------- */
.fab {
  display: none;
  position: fixed; right: 26px; bottom: 26px; z-index: 75;
  align-items: center; gap: 12px;
  padding: 17px 24px; background: var(--brass); color: #fff;
  font-family: var(--display); font-size: var(--fs-2xl); font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--navy-deep);
  transition: background 0.12s linear, transform 0.08s linear, box-shadow 0.12s linear;
}
.fab:hover { background: var(--brass-dark); }
.fab:active { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--navy-deep); }
.fab svg { width: 23px; height: 23px; stroke-width: 2.5; flex: none; }
.fab__num { font-variant-numeric: tabular-nums; }

@media (min-width: 1020px) {
  .fab { display: inline-flex; }
}

/* ---------- Timed call-back popup ---------- */
.pop {
  position: fixed; inset: 0; z-index: 90;
  display: none; align-items: flex-end; justify-content: center;
  background: rgba(9, 28, 47, 0.72);
}
.pop[data-open="true"] { display: flex; }

.pop__panel {
  position: relative;
  width: 100%; max-width: 470px;
  background: var(--paper);
  border-top: 6px solid var(--brass);
  padding: 26px 22px 24px;
  animation: popin 0.26s cubic-bezier(.2,.8,.3,1);
  max-height: 92vh; overflow-y: auto;
}
@keyframes popin { from { transform: translateY(26px); opacity: 0; } }

.pop__close {
  position: absolute; top: 0; right: 0;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--navy); color: #fff; border: 0; cursor: pointer;
  font-family: var(--display); font-size: 26px; font-weight: 400; line-height: 1;
  transition: background 0.12s linear;
}
.pop__close:hover { background: var(--brass); }

.pop__lab {
  display: inline-block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase;
  background: var(--sea); color: #fff; padding: 5px 11px; margin: 0 0 14px;
}
.pop h3 {
  font-size: 30px; font-weight: 700; color: var(--navy);
  line-height: 0.98; margin: 0 0 10px;
}
.pop__sub { font-size: var(--fs-md); color: var(--ink-soft); margin: 0 0 20px; line-height: 1.45; }

.pop__num {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--navy); color: #fff; padding: 16px 18px;
  font-family: var(--display); font-size: 35px; font-weight: 700;
  letter-spacing: -0.005em; font-variant-numeric: tabular-nums;
  transition: background 0.12s linear;
}
.pop__num:hover { background: var(--brass); }
.pop__num svg { width: 24px; height: 24px; stroke-width: 2.5; flex: none; }

.pop__hours {
  font-family: var(--data); font-size: var(--fs-sm); letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin: 10px 0 0;
}

.pop .formalt { margin: 20px 0 14px; }
.pop .field { margin-bottom: 14px; }
.pop .field input { font-size: var(--fs-lg); padding: 13px; min-height: 54px; }
.pop .btn { min-height: 56px; font-size: var(--fs-xl); }

@media (min-width: 660px) {
  .pop { align-items: center; padding: 24px; }
  .pop__panel { padding: 32px 30px 28px; }
  .pop h3 { font-size: 34px; }
  .pop__num { font-size: 40px; }
}

/* ---------- Call-button pulse ---------- */
/*
 * A hard expanding frame rather than a soft glow — matches the flat, zero-radius
 * language of the rest of the page. Applied to action buttons only, never to
 * plain phone numbers, so the page never reads as flickering.
 */
/*
 * The ring needs a positioned ancestor, but must never override a position an
 * element already sets — .fab is position:fixed and loses its anchoring if this
 * rule wins the cascade.
 */
.pulse:not(.fab) { position: relative; }
.pulse::after {
  content: '';
  position: absolute; inset: 0;
  border: 3px solid var(--brass);
  animation: ring 2.1s cubic-bezier(.22,.7,.3,1) infinite;
  pointer-events: none;
}
@keyframes ring {
  0%   { opacity: 0.9; transform: scale(1); }
  62%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; transform: scale(1.13); }
}

/* On brass grounds the ring must read against brass, so invert it to navy. */
.pulse--navy::after { border-color: var(--navy-deep); }

/* The pressed state slides the button under its shadow; keep the ring with it. */
.btn--primary.pulse:active::after,
.header__call.pulse:active::after,
.fab.pulse:active::after { animation: none; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .pulse::after { animation: none; opacity: 0; }
}
