.elementor-227103 .elementor-element.elementor-element-fce76e3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:9999;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-fce76e3 *//**
 * ETHOS INK STICKY HEADER (v4)
 * Paste into: Elementor Container Widget → Advanced → Custom CSS
 *
 * Includes:
 * - Sticky header styling + brand gradient border
 * - Desktop nav + CTA styling
 * - Mobile menu overlay + pill links
 * - Skip link + focus-visible states
 * - Reduced-motion support (prefers-reduced-motion)
 */

/* Brand tokens */
:root {
  --ethos-black: #000000;
  --ethos-beige: #F5F1E8;
  --ethos-orange: #FF9601;
  --ethos-red: #E63946;
  --ethos-purple: #7209B7;
  --ethos-dark-blue: #264653;
  --ethos-green: #06FFA5;

  --font-mono: 'roboto-mono', 'Roboto Mono', monospace;
  --font-body: 'inter-tight', 'Inter Tight', sans-serif;
  --font-heading: 'pressio', 'Pressio', sans-serif;
}

/* Header core */
.ethos-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  height: 76px;
  background-color: var(--ethos-black);
  z-index: 9999 !important;
  transition: all 0.3s ease;

  /* Brand gradient border */
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
    90deg,
    var(--ethos-orange) 0%,
    var(--ethos-red) 25%,
    var(--ethos-purple) 50%,
    var(--ethos-dark-blue) 75%,
    var(--ethos-green) 100%
  ) 1;
}

.ethos-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Accessibility: Skip link */
.ethos-skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  z-index: 10001;
}

.ethos-skip-link:focus,
.ethos-skip-link:focus-visible {
  left: 16px;
  outline: 3px solid var(--ethos-orange);
  outline-offset: 3px;
}

/* Logo */
.ethos-logo-wrapper {
  flex-shrink: 0;
}

.ethos-logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ethos-logo-link:hover {
  transform: scale(1.05) rotate(-2deg);
}

.ethos-logo-img {
  height: 20px !important;
  width: auto !important;
  max-height: 20px !important;
  max-width: 100% !important; /* safer than max-width:none */
  filter: brightness(0) invert(1);
  display: block;
}

/* Desktop navigation */
.ethos-nav-desktop {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .ethos-nav-desktop {
    display: flex !important;
  }

  .ethos-mobile-toggle {
    display: none !important;
  }

  .ethos-logo-img {
    height: 20px !important;
  }
}

.ethos-nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff !important;
  text-decoration: none !important;
  position: relative;
  padding: 8px 24px;
  transition: all 0.2s ease;
  cursor: pointer;

  /* Stagger animation (JS adds .stagger-animate) */
  opacity: 0;
  transform: translateY(-10px);
}

.ethos-nav-link:link,
.ethos-nav-link:visited,
.ethos-nav-link:hover,
.ethos-nav-link:active,
.ethos-nav-link:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.ethos-nav-link:focus-visible {
  outline: 3px solid var(--ethos-orange);
  outline-offset: 4px;
  border-radius: 10px;
}

.ethos-nav-link.stagger-animate {
  animation: slideIn 0.6s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ethos-nav-link:hover {
  transform: translateY(-1px);
}

/* Underlines */
.ethos-nav-underline {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ethos-nav-link:hover .ethos-nav-underline {
  transform: scaleX(1);
}

.ethos-nav-link.active .ethos-nav-underline {
  transform: scaleX(1);
}

.ethos-underline-orange {
  background: linear-gradient(90deg, var(--ethos-orange) 0%, var(--ethos-red) 100%);
}

.ethos-underline-red {
  background: linear-gradient(90deg, var(--ethos-red) 0%, var(--ethos-purple) 100%);
}

/* Desktop CTA (semantic link styled as button) */
.ethos-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  margin-left: 32px;
  background: #fff;
  color: #000;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;

  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;

  /* Stagger animation (JS adds .stagger-animate) */
  opacity: 0;
  transform: translateY(-10px);
}

.ethos-cta-btn.stagger-animate {
  animation: slideIn 0.6s ease-out forwards;
}

.ethos-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 150, 1, 0.3), 0 0 0 3px rgba(255, 150, 1, 0.1);
}

.ethos-cta-btn:focus {
  outline: none;
}

.ethos-cta-btn:focus-visible {
  outline: 3px solid var(--ethos-orange);
  outline-offset: 4px;
}

.ethos-cta-text {
  position: relative;
  z-index: 10;
}

.ethos-cta-icon {
  position: relative;
  z-index: 10;
  width: 14px;
  height: 14px;
  stroke: currentColor !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ethos-cta-btn:hover .ethos-cta-icon {
  transform: translate(2px, -2px);
}

/* CTA link state colors (prevents theme default blue link hover) */
.ethos-nav-desktop .ethos-cta-btn,
.ethos-nav-desktop .ethos-cta-btn:link,
.ethos-nav-desktop .ethos-cta-btn:visited {
  color: #000 !important;
}

/* Hover/active: white text + white arrow for contrast over gradient overlay */
.ethos-nav-desktop .ethos-cta-btn:hover,
.ethos-nav-desktop .ethos-cta-btn:active {
  color: #fff !important;
}

/* Safety: ensure inner text inherits (some themes target spans) */
.ethos-nav-desktop .ethos-cta-btn:hover .ethos-cta-text,
.ethos-nav-desktop .ethos-cta-btn:active .ethos-cta-text {
  color: #fff !important;
}

/* CTA overlay wipe */
.ethos-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ethos-orange) 0%, var(--ethos-red) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.ethos-cta-btn:hover .ethos-cta-overlay {
  transform: translateX(0);
}

/* Mobile toggle (hidden on desktop via media query) */
.ethos-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.ethos-mobile-toggle:active {
  transform: scale(0.95);
}

.ethos-mobile-toggle:focus-visible {
  outline: 3px solid var(--ethos-orange);
  outline-offset: 4px;
}

.ethos-hamburger-icon {
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 2.5;
}

/* Mobile menu overlay */
.ethos-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ethos-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.ethos-mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 120px 2rem 2rem;
  position: relative;
}

.ethos-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--ethos-orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.ethos-mobile-close:active {
  transform: scale(0.95);
}

.ethos-mobile-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.ethos-mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 2.5;
}

.ethos-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.ethos-mobile-link {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.ethos-mobile-link:link,
.ethos-mobile-link:visited,
.ethos-mobile-link:hover,
.ethos-mobile-link:active,
.ethos-mobile-link:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.ethos-mobile-link:hover,
.ethos-mobile-link:active {
  border-color: var(--ethos-orange);
  background: rgba(255, 150, 1, 0.1);
}

.ethos-mobile-cta {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000 !important;
  background: var(--ethos-orange);
  text-decoration: none !important;
  padding: 18px 40px;
  border-radius: 9999px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.ethos-mobile-cta:link,
.ethos-mobile-cta:visited {
  color: #000 !important;
  text-decoration: none !important;
}

.ethos-mobile-cta:hover,
.ethos-mobile-cta:active {
  background: var(--ethos-red);
  transform: scale(1.02);
  color: #000 !important;
}

/* Mobile sizing */
@media (max-width: 767px) {
  .ethos-header {
    height: 70px;
    position: fixed !important;
  }

  .ethos-header-container {
    padding: 0 4%;
  }

  .ethos-logo-img {
    height: 18px !important;
  }

  .ethos-mobile-toggle {
    display: flex !important;
  }

  .ethos-nav-desktop {
    display: none !important;
  }
}

/* Body offset for fixed header */
body {
  padding-top: 76px !important;
}

@media (max-width: 767px) {
  body {
    padding-top: 70px !important;
  }
}

/* Lock scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ethos-nav-link,
  .ethos-cta-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ethos-nav-link,
  .ethos-cta-btn,
  .ethos-cta-icon,
  .ethos-cta-overlay,
  .ethos-logo-link,
  .ethos-mobile-menu,
  .ethos-mobile-link,
  .ethos-mobile-cta,
  .ethos-mobile-toggle,
  .ethos-mobile-close {
    transition: none !important;
  }
}/* End custom CSS */