/* ── Top Bar ───────────────────────────────────────────── */
.hc-topbar {
  background-color: var(--hc-black);
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  border-bottom: 1px solid var(--hc-dark-gray);
}
.hc-topbar .hc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hc-topbar a {
  color: var(--hc-text-muted);
}
.hc-topbar a:hover {
  color: var(--hc-orange);
}
.hc-topbar__phone {
  font-weight: 600;
  color: var(--hc-white);
}

/* ── Main Header ──────────────────────────────────────── */
.hc-header {
  background-color: var(--hc-charcoal);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--hc-orange);
}
.hc-header .hc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hc-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hc-header__logo {
  height: 40px;
  width: auto;
}
.hc-header__title {
  font-family: var(--hc-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hc-white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.hc-header__title span {
  color: var(--hc-orange);
}

/* ── Desktop Nav ──────────────────────────────────────── */
.hc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hc-nav__list {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.hc-nav__list a {
  display: block;
  padding: 8px 16px;
  color: var(--hc-text);
  font-family: var(--hc-font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--hc-radius);
  transition: all 0.2s;
}
.hc-nav__list a:hover,
.hc-nav__list .current-menu-item > a {
  color: var(--hc-orange);
  background-color: rgba(232, 122, 30, 0.1);
}
.hc-nav__cta {
  margin-left: 8px;
}

/* ── Hamburger ────────────────────────────────────────── */
.hc-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hc-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--hc-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hc-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hc-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hc-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Drawer ────────────────────────────────────── */
.hc-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 13, 13, 0.97);
  z-index: 999;
  padding: 80px 20px 20px;
  flex-direction: column;
  align-items: center;
}
.hc-mobile-nav.is-open {
  display: flex;
}
.hc-mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.hc-mobile-nav__list li {
  margin-bottom: 8px;
}
.hc-mobile-nav__list a {
  display: block;
  padding: 14px 20px;
  color: var(--hc-white);
  font-family: var(--hc-font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hc-mobile-nav__list a:hover {
  color: var(--hc-orange);
}
.hc-mobile-nav__cta {
  margin-top: 20px;
}

/* ── Sticky Mobile Call/Text Bar ──────────────────────── */
.hc-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background-color: var(--hc-orange);
}
.hc-mobile-cta-bar__inner {
  display: flex;
}
.hc-mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: var(--hc-white);
  font-family: var(--hc-font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
}
.hc-mobile-cta-bar a + a {
  border-left: 1px solid rgba(255,255,255,0.3);
}
.hc-mobile-cta-bar a:hover {
  background-color: var(--hc-orange-hover);
  color: var(--hc-white);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hc-topbar {
    display: none;
  }
  .hc-nav {
    display: none;
  }
  .hc-hamburger {
    display: flex;
  }
  .hc-mobile-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 56px;
  }
}
