/* ==================================================
   STORM MODE GLOBAL
================================================== */

body.storm-mode {
  background: #020814;
  color: #ffffff;
}


/* ==================================================
   STORM ALERT BAR
================================================== */

.storm-alert-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  background:
    linear-gradient(90deg, #8f0f0f, #d71919, #8f0f0f);

  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.storm-alert-bar__inner {
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.storm-alert-bar__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.storm-alert-bar__icon {
  font-size: 1.2rem;
}

.storm-alert-bar__event {
  font-size: .9rem;
}

.storm-alert-bar__phone {
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  font-size: .82rem;
}


/* ==================================================
   STORM MODE HEADER OFFSET
================================================== */

body.storm-mode .site-header {
  top: 48px;
  background: rgba(2,8,20,.92);
}


/* ==================================================
   STORM HERO
================================================== */

body.storm-mode .home-hero {
  background:
    linear-gradient(
      to right,
      rgba(2,8,20,.96) 12%,
      rgba(2,8,20,.78) 42%,
      rgba(2,8,20,.35) 75%,
      rgba(2,8,20,.12) 100%
    ),
    url('/assets/img/hero/storm/storm-hero.jpg')
    center center / cover no-repeat;
}

body.storm-mode .home-hero .eyebrow {
  color: var(--red-bright);
}

body.storm-mode .hero-status {
  background: rgba(215,25,25,.18);
  border-color: rgba(215,25,25,.4);
}

body.storm-mode .hero-status__dot {
  background: var(--red-bright);
  box-shadow: 0 0 14px rgba(215,25,25,.9);
}


/* ==================================================
   STORM RESPONSE BAR
================================================== */

body.storm-mode .response-bar__grid {
  background: rgba(5,12,24,.92);
  border: 1px solid rgba(255,255,255,.12);
  color: #ffffff;
}

body.storm-mode .response-bar span {
  color: rgba(255,255,255,.6);
}

body.storm-mode .response-bar__grid > div {
  border-right-color: rgba(255,255,255,.12);
}


/* ==================================================
   STORM CONTENT SECTIONS
================================================== */

body.storm-mode .what-we-do {
  background:
    radial-gradient(circle at top right, rgba(215,25,25,.12), transparent 34%),
    linear-gradient(180deg, #020814, #071426);
}

body.storm-mode .section-heading h2,
body.storm-mode .section-heading p {
  color: #ffffff;
}

body.storm-mode .feature-card {
  background:
    linear-gradient(180deg, rgba(10,22,39,.96), rgba(3,10,20,.96));

  border-color: rgba(255,255,255,.1);
  color: #ffffff;
}

body.storm-mode .feature-card h3 {
  color: #ffffff;
}

body.storm-mode .feature-card p {
  color: rgba(255,255,255,.72);
}