/* =========================================================
   SolarFireSuppression.com
   site.css
   Educational wildfire water-readiness concept site
   ========================================================= */

:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;

  --paper: #fff8ec;
  --paper-2: #fffdf7;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-dark: rgba(10, 18, 32, 0.88);

  --fire: #b91c1c;
  --fire-dark: #7f1d1d;
  --ember: #f97316;
  --gold: #f5b942;
  --water: #0ea5e9;
  --water-dark: #0369a1;
  --forest: #2f5d3a;

  --line: rgba(17, 24, 39, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.12);

  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;

  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 32rem),
    linear-gradient(180deg, #fff7e8 0%, #fffdf7 44%, #f4efe6 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p a,
li a {
  color: var(--water-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

strong {
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 24, 39, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #101827;
  background:
    radial-gradient(circle at 35% 35%, #fff, transparent 28%),
    linear-gradient(135deg, var(--gold), var(--ember) 55%, var(--fire));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  flex: 0 0 auto;
}

.logo small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -4px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.primary-nav .nav-cta {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  box-shadow: 0 12px 26px rgba(185, 28, 28, 0.3);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #111827;
}

.hero.hero-short {
  min-height: 460px;
}

.hero img,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg {
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 24, 0.86) 0%, rgba(7, 13, 24, 0.62) 42%, rgba(7, 13, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 13, 24, 0.84) 0%, transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0 76px;
  color: #fff;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(245, 185, 66, 0.16);
  border: 1px solid rgba(245, 185, 66, 0.46);
  color: #ffe2a5;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
}

.kicker::before {
  content: "●";
  color: var(--ember);
}

.hero h1 {
  max-width: 850px;
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.hero .lead {
  max-width: 760px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 950;
  letter-spacing: -0.01em;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button.fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
}

.button.water {
  background: linear-gradient(135deg, var(--water-dark), var(--water));
}

.button.light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero-note {
  margin-top: 22px;
  max-width: 820px;
  padding: 15px 18px;
  border-left: 5px solid var(--gold);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  border-radius: 0 16px 16px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

/* =========================================================
   Layout
   ========================================================= */

main {
  overflow: hidden;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section.tight {
  padding: clamp(34px, 5vw, 60px) 0;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--fire);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  text-wrap: balance;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.section-head p,
.big-copy {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  font-weight: 600;
}

.copy {
  color: var(--ink-soft);
}

.copy p:first-child {
  margin-top: 0;
}

.copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Cards / Grids
   ========================================================= */

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card.pad {
  padding: clamp(20px, 3vw, 30px);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 a {
  text-decoration: none;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.card.warning {
  border-color: rgba(185, 28, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.9));
}

.card.water {
  border-color: rgba(14, 165, 233, 0.24);
  background:
    linear-gradient(180deg, rgba(240, 249, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.card.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(69, 10, 10, 0.94));
  border-color: rgba(255, 255, 255, 0.12);
}

.card.dark p,
.card.dark .copy,
.card.dark li {
  color: rgba(255, 255, 255, 0.82);
}

.card.dark .eyebrow {
  color: var(--gold);
}

/* =========================================================
   Feature Blocks
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.feature-image {
  border-radius: clamp(22px, 4vw, 36px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111827;
  position: relative;
}

.feature-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.callout {
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.callout.fire {
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.96), rgba(185, 28, 28, 0.9));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.callout.fire p,
.callout.fire li {
  color: rgba(255, 255, 255, 0.86);
}

.callout.water {
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.96), rgba(14, 165, 233, 0.86));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.callout.water p,
.callout.water li {
  color: rgba(255, 255, 255, 0.88);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.stat b {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 750;
  font-size: 0.92rem;
}

/* =========================================================
   Safety / Disclaimer Styling
   ========================================================= */

.safety-banner {
  background:
    linear-gradient(135deg, #111827 0%, #2b1111 55%, #7f1d1d 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.safety-banner::before {
  content: "!";
  position: absolute;
  right: -18px;
  top: -50px;
  font-size: 15rem;
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.safety-banner h2,
.safety-banner h3 {
  color: #fff;
}

.safety-banner p,
.safety-banner li {
  color: rgba(255, 255, 255, 0.86);
}

.safety-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-list li::before {
  content: "⚠";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  font-weight: 1000;
}

.disclaimer-box {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.32);
  color: #431407;
  font-weight: 700;
}

.disclaimer-box strong {
  color: var(--fire-dark);
}

/* =========================================================
   Page-Specific Helpers
   ========================================================= */

.drums-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.drums-list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 12px;
}

.drums-list li {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-weight: 750;
}

.drums-list li::before {
  content: "✓";
  color: var(--water-dark);
  font-weight: 1000;
  margin-right: 8px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-item::before {
  content: counter(step);
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  font-weight: 1000;
  font-size: 1.55rem;
  box-shadow: 0 14px 26px rgba(185, 28, 28, 0.24);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.24);
  color: var(--water-dark);
  font-weight: 850;
  font-size: 0.82rem;
}

.tag.fire {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
  color: var(--fire-dark);
}

.manga-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 4px solid #111827;
  transform: rotate(-0.4deg);
}

.manga-panel:nth-child(even) {
  transform: rotate(0.4deg);
}

.manga-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.manga-caption {
  padding: 18px 20px;
  border-top: 4px solid #111827;
  background:
    radial-gradient(circle at top right, rgba(245, 185, 66, 0.18), transparent 16rem),
    #fff;
}

.manga-caption h3 {
  font-size: 1.35rem;
}

/* =========================================================
   Forms
   ========================================================= */

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(14, 165, 233, 0.22);
  border-color: var(--water);
}

/* =========================================================
   Tables / Sitemap
   ========================================================= */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 680px;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: #111827;
  color: #fff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.sitemap-list {
  columns: 2;
  column-gap: 38px;
  padding-left: 0;
  list-style: none;
}

.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.sitemap-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-weight: 850;
}

.sitemap-list a:hover {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.18), transparent 28rem),
    linear-gradient(135deg, #0b1220, #111827 48%, #2b1111);
  color: #fff;
  padding: 56px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 28px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-top: 0;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.site-footer li {
  margin: 0 0 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* =========================================================
   Utility Classes
   ========================================================= */

.bg-paper {
  background: var(--paper);
}

.bg-white {
  background: rgba(255, 255, 255, 0.66);
}

.bg-dark {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 28rem),
    linear-gradient(135deg, #111827, #172033);
  color: #fff;
}

.bg-dark p,
.bg-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.bg-dark h2,
.bg-dark h3 {
  color: #fff;
}

.text-center {
  text-align: center;
}

.max-narrow {
  max-width: 820px;
}

.max-wide {
  max-width: 1360px;
}

.no-top {
  padding-top: 0;
}

.no-bottom {
  padding-bottom: 0;
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: var(--shadow);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .drums-layout {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 68px;
    width: min(100% - 22px, var(--max));
  }

  .nav-toggle-label {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    left: 11px;
    right: 11px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .primary-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle:checked ~ .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero.hero-short {
    min-height: 390px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(7, 13, 24, 0.94) 0%, rgba(7, 13, 24, 0.64) 54%, rgba(7, 13, 24, 0.2) 100%);
  }

  .hero-content {
    padding: 76px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .hero .lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-list {
    columns: 1;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-content {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 48px 0;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .card-body,
  .card.pad,
  .callout,
  .safety-banner {
    padding: 20px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 260px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom > * + * {
    margin-top: 10px;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  .site-header,
  .hero-actions,
  .site-footer,
  .button {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: #fff;
    color: #000;
  }

  .hero img,
  .hero .hero-bg,
  .hero::before {
    display: none;
  }

  .hero-content {
    color: #000;
    padding: 24px 0;
  }

  .card,
  .callout,
  .safety-banner {
    box-shadow: none;
    break-inside: avoid;
  }
}
.grid.five-step {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .grid.five-step {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .grid.five-step {
    grid-template-columns: 1fr;
  }
}
