/**
 * Excalibur Header – isolated styles, loaded last.
 * Top info bar + compact main nav.
 */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body.exc-clone #header.exc-header {
  background: #fff !important;
  box-shadow: none !important;
}

body.exc-clone #header.exc-header .header-bg-container {
  display: none !important;
}

body.exc-clone #header.exc-header .header-wrapper,
body.exc-clone #header.exc-header .header-main,
body.exc-clone #header.exc-header .header-main.exc-header-main {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.exc-clone #header.exc-header .header-bg-color {
  display: none !important;
}

/* ── Top info bar ── */
body.exc-clone .exc-topbar {
  position: relative;
  z-index: 3;
  background: #3e444a;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

body.exc-clone .exc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  height: 34px;
  margin: 0 auto;
  padding: 0 24px;
}

body.exc-clone .exc-topbar__left,
body.exc-clone .exc-topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.exc-clone .exc-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

body.exc-clone .exc-topbar__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.9;
}

body.exc-clone .exc-topbar__item:hover {
  color: var(--exc-accent-light, #ffd054);
}

/* ── Main nav row ── */
body.exc-clone .exc-header-main {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.exc-clone .exc-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

body.exc-clone .exc-logo {
  flex-shrink: 0;
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", sans-serif !important;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  color: var(--exc-accent, #f0b429) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  display: inline-block;
  transform: scaleX(1.04);
  transform-origin: left center;
  -webkit-font-smoothing: antialiased;
}

body.exc-clone .exc-logo:hover {
  color: var(--exc-accent-dark, #d4920a) !important;
}

body.exc-clone .exc-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
}

body.exc-clone .exc-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.exc-clone .exc-header-nav > li {
  margin: 0;
  padding: 0;
}

body.exc-clone .exc-header-nav > li > a.nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 8px 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  background: transparent !important;
  opacity: 1 !important;
  white-space: nowrap;
  transition: color 0.2s;
}

body.exc-clone .exc-header-nav > li > a.nav-top-link:hover,
body.exc-clone .exc-header-nav > li.active > a.nav-top-link {
  color: var(--exc-accent-dark, #d4920a) !important;
}

body.exc-clone .exc-header-nav > li.active > a.nav-top-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--exc-accent, #f0b429);
  border-radius: 1px;
}

body.exc-clone .exc-nav-chevron {
  width: 9px;
  height: 9px;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

body.exc-clone #header.exc-header,
body.exc-clone .exc-header-main,
body.exc-clone .exc-header-bar,
body.exc-clone .exc-header-nav-wrap {
  overflow: visible !important;
}

body.exc-clone .exc-header-nav > li.exc-nav-has-dropdown {
  position: relative;
}

body.exc-clone .exc-nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

body.exc-clone .exc-header-nav > li.exc-nav-has-dropdown:hover > .exc-nav-dropdown,
body.exc-clone .exc-header-nav > li.exc-nav-has-dropdown:focus-within > .exc-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.exc-clone .exc-header-nav > li.exc-nav-has-dropdown:hover > a .exc-nav-chevron,
body.exc-clone .exc-header-nav > li.exc-nav-has-dropdown:focus-within > a .exc-nav-chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

body.exc-clone .exc-nav-dropdown li {
  margin: 0;
  padding: 0;
}

body.exc-clone .exc-nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

body.exc-clone .exc-nav-dropdown a:hover,
body.exc-clone .exc-nav-dropdown a:focus-visible {
  background: rgba(240, 180, 41, 0.14);
  color: var(--exc-accent-dark, #d4920a) !important;
  outline: none;
}

body.exc-clone .exc-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

body.exc-clone .exc-header-actions .exc-btn--primary {
  padding: 9px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  border-radius: 999px !important;
  background: var(--exc-accent, #f0b429) !important;
  color: #0a0a0a !important;
  border: none !important;
  transform: none !important;
}

body.exc-clone .exc-header-actions .exc-btn--primary:hover {
  background: var(--exc-accent-dark, #d4920a) !important;
  transform: none !important;
}

body.exc-clone .exc-lang-btn,
body.exc-clone .exc-header-actions .danbes-lang-current {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #1a1a1a !important;
}

body.exc-clone .exc-header-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
}

/* Desktop / mobile visibility */
body.exc-clone .exc-desktop-only {
  display: block;
}

body.exc-clone .exc-header-right.exc-desktop-only {
  display: flex;
}

body.exc-clone .exc-mobile-only {
  display: none;
}

@media (max-width: 849px) {
  body.exc-clone .exc-desktop-only {
    display: none !important;
  }

  body.exc-clone .exc-mobile-only {
    display: inline-flex !important;
  }

  body.exc-clone .exc-header-bar {
    height: 56px;
    padding: 0 16px;
  }
}

body.exc-clone #header.exc-header.danbes-header-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* ── Footer: charcoal bg + light text ── */
body.exc-clone #section_3201501114,
body.exc-clone .exc-footer {
  background: var(--exc-footer-bg) !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

body.exc-clone .exc-footer__logo {
  color: var(--exc-accent) !important;
}

body.exc-clone .exc-footer__cta-copy h2 {
  color: #fff !important;
}

body.exc-clone .exc-footer__cta-copy p,
body.exc-clone .exc-footer__blurb,
body.exc-clone .exc-footer__contact-item dd,
body.exc-clone .exc-footer__contact-item dd a,
body.exc-clone .exc-footer__links a {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.exc-clone .exc-footer__links a:hover,
body.exc-clone .exc-footer__contact a:hover {
  color: var(--exc-accent) !important;
}

body.exc-clone .exc-footer__col h6 {
  color: rgba(255, 255, 255, 0.45) !important;
}

body.exc-clone .exc-footer__bottom,
body.exc-clone .exc-footer__bottom p,
body.exc-clone .exc-footer__note {
  color: rgba(255, 255, 255, 0.45) !important;
}

body.exc-clone #section_3201501114 .exc-footer__col,
body.exc-clone #section_3201501114 .exc-footer__link-group,
body.exc-clone #section_3201501114 .exc-footer__links,
body.exc-clone #section_3201501114 .exc-footer__links li,
body.exc-clone #section_3201501114 .exc-footer__links a,
body.exc-clone #section_3201501114 .exc-footer__contact-item dt,
body.exc-clone #section_3201501114 .exc-footer__contact-item dd {
  text-align: left !important;
}

body.exc-clone #section_3201501114 ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

body.exc-clone .danbes-scroll-progress {
  display: none !important;
}

body.exc-clone .exc-hero__headline,
body.exc-clone .exc-hero__headline span:not(.exc-accent) {
  color: #fff !important;
}

body.exc-clone #hero-headline-1 {
  color: #fff !important;
}

body.exc-clone #top-link.back-to-top,
body.exc-clone #top-link.exc-back-to-top {
  background: #0a0a0a !important;
  border: 2px solid var(--exc-accent, #f0b429) !important;
  color: var(--exc-accent, #f0b429) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28) !important;
}

body.exc-clone #top-link.back-to-top:hover,
body.exc-clone #top-link.exc-back-to-top:hover {
  background: var(--exc-accent, #f0b429) !important;
  color: #0a0a0a !important;
  opacity: 1 !important;
}
