/* ============================================
   PROPERTY ER SOLUTIONS — Design Tokens
   Concept: the site reads like an ER intake board / vitals monitor.
   ============================================ */

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

:root {
  --ink: #0B1220;
  --ink-soft: #1A2436;
  --er-red: #E4232B;
  --er-red-dim: #B01820;
  --paper: #F3F5F7;
  --paper-dim: #E7EBEF;
  --teal: #0FB3A6;
  --teal-dim: #0C8F85;
  --steel: #5B6B7C;
  --steel-light: #8A97A6;
  --white: #FFFFFF;

  --display: 'Oswald', sans-serif;
  --body: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility: eyebrow / chart-tab labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--er-red);
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 4px;
  flex-shrink: 0;
  background: var(--er-red);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.chart-tab {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 6px 14px;
  border-radius: 2px 2px 0 0;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-weight: 600;
}

h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }

p { color: var(--steel); }

/* ---------- Pulse-line signature motif ---------- */
.pulse-divider {
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: var(--ink);
}
.pulse-divider svg { width: 100%; height: 100%; display: block; }
.pulse-line-path {
  fill: none;
  stroke: var(--er-red);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-pulse 3.5s linear infinite;
}
@keyframes draw-pulse {
  0% { stroke-dashoffset: 1400; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1400; }
}

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo-lockup { display: flex; align-items: center; gap: 10px; }
.logo-lockup img { height: 78px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--er-red);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.stat-btn {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: var(--er-red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(228,35,43,0.5);
  animation: pulse-glow 2.2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(228,35,43,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(228,35,43,0); }
}
.stat-btn:hover { background: var(--er-red-dim); }

.mobile-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 40px;
}
.hero-brand { display: flex; align-items: center; margin-bottom: 24px; background: var(--white); padding: 14px 22px; border-radius: 8px; width: fit-content; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.hero-brand img { height: 120px; width: auto; display: block; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: var(--white);
  margin: 14px 0 18px;
}
.hero h1 span { color: var(--teal); }
.hero p.lead {
  color: var(--steel-light);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }

.btn-primary {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--er-red);
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--er-red-dim); }

.btn-secondary {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover { border-color: var(--white); }

.hero-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  aspect-ratio: 4/5;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--ink);
  position: absolute; top: 0; left: 0;
}
.mute-toggle {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(11,18,32,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--white);
  font-size: 16px;
}
.hero-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--er-red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 5;
}

/* ---------- Vitals strip ---------- */
.vitals {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.vitals-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.vitals-row span { display: flex; align-items: center; gap: 8px; }
.vitals-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ---------- Sections generic ---------- */
section { padding: 72px 0; }
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head p { margin-top: 12px; font-size: 16px; }

/* ---------- Triage / How it works ---------- */
.triage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.triage-card {
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  border-top: 4px solid var(--teal);
}
.triage-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--teal-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.triage-card h3 { margin-bottom: 10px; }
.triage-card p { font-size: 14.5px; }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.service-card.alt { background: var(--white); color: var(--ink); border: 1px solid var(--paper-dim); }
.service-card.alt p { color: var(--steel); }
.service-card .chart-tab { margin-bottom: 18px; }
.service-card h3 { color: inherit; font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--steel-light); margin-bottom: 20px; }
.service-card.alt p.desc { color: var(--steel); }
.service-card ul { margin-bottom: 24px; }
.service-card li {
  font-size: 14.5px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: inherit;
}
.service-card li::before {
  content: "+";
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-card a.link-arrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
}

/* ---------- Case files / reviews ---------- */
.casefiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius);
  padding: 26px;
}
.case-card .stars { color: var(--er-red); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.case-card p.quote { color: var(--ink); font-size: 15px; margin-bottom: 16px; font-style: italic; }
.case-card .meta { font-family: var(--mono); font-size: 12px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.04em; }
.case-card.placeholder {
  border: 1px dashed var(--steel-light);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.case-card.placeholder p { color: var(--steel); font-size: 14px; margin: 0; }

/* ---------- Service area ---------- */
.area-block {
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: 6px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 16px; }
.area-list li {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.area-list li::before {
  content: "•";
  color: var(--er-red);
  position: absolute; left: 0;
}
.area-map-visual {
  background: var(--paper);
  border: 1px solid var(--paper-dim);
  border-radius: 6px;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  color: var(--steel);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--paper-dim);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.faq-q .icon { color: var(--er-red); font-family: var(--mono); font-size: 18px; transition: transform 0.2s ease; }
.faq-item.open .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 14.5px;
  color: var(--steel);
}
.faq-item.open .faq-a { max-height: 240px; margin-top: 12px; }

/* ---------- Discharge / final CTA ---------- */
.discharge {
  background: var(--er-red);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.discharge h2 { color: var(--white); margin-bottom: 14px; }
.discharge p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto 30px; }
.discharge .btn-primary { background: var(--ink); }
.discharge .btn-primary:hover { background: var(--ink-soft); }
.discharge-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.discharge .btn-secondary { border-color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--steel-light);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-logo { height: 60px; margin-bottom: 14px; background: var(--white); padding: 10px 16px; border-radius: 4px; display: inline-block; }
.footer-logo img { height: 42px; }
.footer-desc { font-size: 14px; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (services/contact interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 48px;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 48px); margin-top: 12px; }
.page-hero p { color: var(--steel-light); max-width: 60ch; margin-top: 14px; font-size: 16px; }

/* ---------- Services page detail blocks ---------- */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--paper-dim);
}
.detail-block:last-of-type { border-bottom: none; }
.detail-block img { border-radius: 6px; border: 1px solid var(--paper-dim); }
.detail-block .chart-tab { margin-bottom: 16px; }
.detail-block h2 { margin-bottom: 16px; }
.detail-block p.desc { font-size: 16px; margin-bottom: 20px; }
.pricing-note {
  background: var(--paper);
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
  margin-top: 20px;
  border-radius: 0 4px 4px 0;
}
.pricing-note strong { color: var(--teal-dim); }
.checklist { margin-top: 20px; }
.checklist li {
  font-size: 14.5px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 18px; font-size: 18px; }
.contact-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-line .label { font-family: var(--mono); font-size: 11px; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.contact-line .value { font-size: 15px; color: var(--white); }
.contact-line .value a { color: var(--white); }
.contact-line .value a:hover { color: var(--teal); }

form.quote-form { background: var(--white); border: 1px solid var(--paper-dim); border-radius: 6px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--paper-dim);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 14.5px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--steel); margin-top: 14px; }
.urgent-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(228,35,43,0.06);
  border: 1px solid rgba(228,35,43,0.25);
  padding: 14px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--ink);
}
.urgent-flag strong { color: var(--er-red); }

/* ---------- EKG ambient background (embedded in dark sections) ---------- */
.ekg-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ekg-backdrop svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.35;
  animation: ekg-scroll 22s linear infinite;
}
.ekg-backdrop .ekg-path {
  fill: none;
  stroke: var(--er-red);
  stroke-width: 3.5;
}
@keyframes ekg-scroll {
  from { transform: translate(0, -50%); }
  to { transform: translate(-50%, -50%); }
}
.hero, .page-hero, footer { position: relative; overflow: hidden; }
.hero > .wrap, .page-hero > .wrap, footer > .wrap { position: relative; z-index: 1; }

/* ---------- Photo strip (3 smaller photos below hero) ---------- */
.photo-strip {
  background: var(--white);
  padding: 0 0 4px;
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.photo-strip-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-item .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,18,32,0.85));
  color: var(--white);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 30px 14px 12px;
}

/* ---------- Gallery grid (more photos further down page) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--paper-dim);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .photo-strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, .faq-q:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-media { aspect-ratio: 4/5; }
  .hero-brand { padding: 10px 16px; }
  .hero-brand img { height: 80px; }
  .triage-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .casefiles-grid { grid-template-columns: 1fr; }
  .area-block { grid-template-columns: 1fr; padding: 28px; }
  .detail-block { grid-template-columns: 1fr; }
  .detail-block img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .mobile-toggle {
    display: block;
    background: none; border: none;
    font-family: var(--mono);
    font-size: 22px;
    cursor: pointer;
    color: var(--ink);
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--ink);
    padding: 20px 24px;
    gap: 18px;
  }
  .form-row { grid-template-columns: 1fr; }
  .vitals-row { gap: 18px; font-size: 11.5px; justify-content: flex-start; overflow-x: auto; }
}

/* ---------- Chevron stripe bar (red/white accent) ---------- */
.chevron-bar {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--er-red),
    var(--er-red) 22px,
    var(--white) 22px,
    var(--white) 44px
  );
}

/* ---------- Big cross emblem (original mark, not Star of Life) ---------- */
.cross-emblem-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
}
.cross-emblem-bg svg { width: 100%; height: 100%; display: block; }
.hero .cross-emblem-bg {
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
}
.discharge .cross-emblem-bg {
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}
.discharge { position: relative; overflow: hidden; }
.discharge > .wrap { position: relative; z-index: 1; }

/* ---------- Small solid cross badge (used inline near text) ---------- */
.cross-badge { display: inline-flex; align-items: center; gap: 8px; }
.cross-badge svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .hero .cross-emblem-bg { width: 280px; height: 280px; top: -30px; right: -30px; }
  .discharge .cross-emblem-bg { width: 420px; height: 420px; }
}

/* ---------- Hero EKG: composed/static version (spike before text, peaks in gap, spike after photo) ---------- */
.ekg-backdrop.ekg-static svg {
  width: 100%;
  animation: none;
}

/* ---------- Social links (footer) ---------- */
.social-row {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--er-red); }
