:root {
  --accent: #d9822b;
  --accent-dark: #b5681c;
  --ink-900: #1b1e21;
  --ink-800: #23272b;
}

body {
  background-color: #f4f4f5;
  color: #212529;
  font-family: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.site-header {
  background-color: #fff;
}
.site-header__top {
  position: relative;
  padding: 1rem 0;
  min-height: 64px;
}
.site-header__utility {
  position: absolute;
  top: 1rem;
  right: 0;
}
.site-phone {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
}
.site-utility-links a {
  color: #6c757d;
}
.site-utility-links a:hover {
  color: var(--accent-dark);
}

.hero-banner-wrap {
  padding-bottom: 1.5rem;
}

.hero-banner {
  position: relative;
  background-color: #2b2b2b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  aspect-ratio: 2.78 / 1;
  min-height: 360px;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 70%, rgba(0, 0, 0, .8) 100%);
}
.hero-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem 1.5rem;
}
.hero-banner__bottom {
  margin-top: auto;
  position: relative;
  top: -20%;
  left: 20%;
}
.hero-banner__tagline {
  position: relative;
  top: 105px;
}
.hero-banner__brand {
  font-size: 1.68rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}
.hero-banner__subbrand {
  font-size: 1.14rem;
  color: #e9ecef;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}
.hero-banner__title {
  color: #fff;
  font-weight: 300;
  letter-spacing: .08em;
  text-align: left;
  margin: 1rem 0;
}
.hero-nav {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-nav a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
  font-size: .95rem;
}
.hero-nav a:hover {
  color: var(--accent);
}
.catalog-download-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  background-color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.catalog-download-btn:hover {
  background-color: var(--accent-dark);
  color: #000;
}

.hero-nav--staff {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  right: 0;
  justify-content: center !important;
}

.brand-lockup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
}
.brand-lockup img {
  filter: drop-shadow(3px 5px 6px rgba(0, 0, 0, .55));
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--ink-900);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.card-header.bg-steel {
  background-color: var(--ink-900);
  color: #fff;
}

.table-steel thead {
  background-color: var(--ink-900);
  color: #fff;
}

a {
  color: var(--accent-dark);
}
a:hover {
  color: var(--ink-900);
}

.dashboard-stat {
  border-left: 4px solid var(--accent);
}

.status-badge {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .04em;
}

footer.app-footer {
  color: #6c757d;
  font-size: .85rem;
}

/* Below this width the logo (native 465x155, rendered at height 192 ->
   ~576px wide) and the absolutely-positioned phone/utility links start
   overlapping and overflowing - switch both to normal stacked flow and
   shrink the logo instead of relying on absolute positioning tuned only
   for desktop widths. */
@media (max-width: 768px) {
  .site-header__top {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
  }
  .brand-lockup {
    position: static;
  }
  .brand-lockup img {
    height: 56px;
  }
  .site-header__utility {
    position: static;
    text-align: center;
  }

  .hero-banner {
    aspect-ratio: auto;
    min-height: 220px;
  }
  .hero-banner__tagline {
    top: 0;
  }
  .hero-banner__bottom {
    top: 0;
    left: 0;
  }
}
