/* Hero Section — site nav + home hero */
:root {
  --hero-charcoal: #1C1B1A;
  --hero-charcoal-soft: #2A2826;
  --hero-fire: #FE4A1F; /* was #D62E1F */
  --hero-ember: #F26B1D;
  --hero-amber: #FFB020;
  --hero-cream: #FFF8F0;
  --hero-steel: #1B4B66;
  --hero-steel-light: #3F7C9E;
}

/* Site header nav (all pages) */
.site-header {
  background: var(--hero-charcoal);
  position: relative;
  z-index: 1030;
}

.site-header .hero-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.site-header + .hero-section {
  margin-top: -1px;
}

.site-header + .hero-section .hero-body {
  padding-top: 0;
}

.site-header .hero-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header .hero-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-header .hero-top-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(255, 248, 240, 0.7);
}

.site-header .hero-top-links a {
  color: inherit;
  text-decoration: none;
}

.site-header .hero-top-links a:hover {
  color: var(--hero-amber);
}

.site-header .hero-top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header .hero-icon-btn {
  background: none;
  border: none;
  color: rgba(255, 248, 240, 0.7);
  font-size: 16px;
  padding: 4px;
  cursor: pointer;
  position: relative;
  line-height: 1;
}

.site-header .hero-icon-btn:hover {
  color: var(--hero-amber);
}

.site-header .hero-icon-btn .badge {
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
}

.site-header .hero-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 248, 240, 0.25);
  border-radius: 6px;
  color: var(--hero-cream);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 18px;
}

.hero-section {
  position: relative;
  background: var(--hero-charcoal);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

.hero-section .hazard-strip {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--hero-amber),
    var(--hero-amber) 22px,
    var(--hero-charcoal) 22px,
    var(--hero-charcoal) 44px
  );
  flex-shrink: 0;
}

.hero-section .hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 0 48px;
  gap: 32px;
  position: relative;
}

.hero-section .hero-body::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--hero-fire) 0%, rgba(214, 46, 31, 0) 70%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-section .hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.hero-section .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 176, 32, 0.12);
  border: 1px solid rgba(255, 176, 32, 0.4);
  color: var(--hero-amber);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-section .hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.98;
  color: var(--hero-cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.hero-section .hero-headline em {
  font-style: normal;
  color: var(--hero-cream);
}

.hero-section .hero-headline-fire {
  color: var(--hero-fire);
}

/* Hero rotating text animation */
.hero-rotating-text {
  display: inline-block;
  position: relative;
  font-style: normal;
  color: var(--hero-cream);
  overflow: hidden;
  vertical-align: bottom;
  height: 1.05em;
}

.hero-rotate-word {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-rotate-word.active {
  position: relative;
  transform: translateY(0);
}

.hero-section .hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 248, 240, 0.75);
  max-width: 44ch;
  margin-bottom: 32px;
}

.hero-section .hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-section .hero-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-section .hero-btn-primary {
  background: var(--hero-fire);
  color: var(--hero-cream);
}

.hero-section .hero-btn-primary:hover {
  background: #B8261A;
  color: var(--hero-cream);
}

.hero-section .hero-btn-secondary {
  background: transparent;
  color: var(--hero-cream);
  border: 1px solid rgba(255, 248, 240, 0.35);
}

.hero-section .hero-btn-secondary:hover {
  border-color: var(--hero-amber);
  color: var(--hero-amber);
}

.hero-section .hero-trust-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 240, 0.12);
  flex-wrap: wrap;
}

.hero-section .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 240, 0.65);
  font-size: 13px;
}

.hero-section .hero-trust-item svg {
  flex-shrink: 0;
  color: var(--hero-steel-light);
}

.hero-section .hero-product-panel {
  position: relative;
  z-index: 2;
  background: var(--hero-cream);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-section .hero-product-panel.image-panel {
  padding: 0;
  overflow: visible;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-section .hero-product-svg,
.hero-section .hero-product-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.hero-section .hero-category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--hero-steel);
}

.hero-section .hero-category-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  color: rgba(255, 248, 240, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-right: 1px solid rgba(255, 248, 240, 0.12);
  transition: background 0.15s ease;
  text-align: center;
}

.hero-section .hero-category-strip a:last-child {
  border-right: none;
}

.hero-section .hero-category-strip a:hover {
  background: var(--hero-steel-light);
  color: var(--hero-cream);
}

@media (max-width: 991.98px) {
  .site-header .hero-nav-toggle {
    display: block;
  }

  .site-header .hero-top-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--hero-charcoal-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
  }

  .site-header .hero-top-links.is-open {
    display: flex;
  }

  .site-header .hero-top-links a,
  .site-header .hero-top-links .hero-icon-btn {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header .hero-top-bar {
    flex-wrap: wrap;
    padding: 16px 24px;
  }
}

@media (max-width: 860px) {
  .hero-section .hero-body {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .hero-section .hero-headline {
    font-size: 44px;
  }

  .hero-section .hero-product-panel.image-panel {
    height: auto;
  }

  .hero-section .hero-product-image {
    max-height: 360px;
  }

  .hero-section .hero-category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-section .hero-category-strip a {
    border-bottom: 1px solid rgba(255, 248, 240, 0.12);
  }
}
