/* Custom Styles directly ported from Tailwind setup */

.gradient-dark {
  background: linear-gradient(135deg, hsl(150 32% 18%) 0%, hsl(0, 0%, 17%) 100%);
}

.gradient-cta {
  background: linear-gradient(135deg, hsl(25 100% 50%) 0%, hsl(15, 100%, 45%) 100%);
}

.hover-lift {
  transition: all 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -12px hsl(150 32% 18% / 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, hsl(150 32% 18%) 0%, hsl(145 63% 49%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-top-call {
  background:
    linear-gradient(135deg, hsl(150 32% 18%) 0%, hsl(145 45% 24%) 100%);
  border-bottom: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: inset 0 -1px 0 hsl(0 0% 100% / 0.04);
}

.mobile-top-call__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: hsl(0 0% 100%);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mobile-top-call__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsl(25 100% 50% / 0.18);
  color: hsl(25 100% 50%);
  box-shadow: 0 10px 24px -16px hsl(25 100% 50% / 0.9);
}

.mobile-top-call__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-top-call__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.72;
  text-transform: uppercase;
}

.mobile-top-call__number {
  font-size: 1rem;
  font-weight: 800;
}

.brand-logo {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .brand-logo {
    height: 3.75rem;
  }
}

.footer-brand-logo {
  height: 3.75rem;
  width: auto;
}

@media (min-width: 768px) {
  .footer-brand-logo {
    height: 4.25rem;
  }
}

.hero-image-enhanced {
  filter: brightness(1.16) contrast(1.04) saturate(1.05);
}

.hero-clarity-layer {
  background:
    linear-gradient(90deg, hsl(150 32% 8% / 0.82) 0%, hsl(150 26% 10% / 0.58) 40%, hsl(150 26% 10% / 0.24) 100%),
    linear-gradient(180deg, hsl(0 0% 100% / 0.08) 0%, hsl(0 0% 100% / 0) 38%, hsl(0 0% 0% / 0.1) 100%);
}

.hero-content-shell {
  position: relative;
}

.hero-content-shell::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem -1.25rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, hsl(150 32% 18% / 0.28), hsl(25 100% 50% / 0.12));
  border: 1px solid hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(3px);
  z-index: -1;
}

@media (max-width: 767px) {
  .hero-content-shell::before {
    inset: -0.75rem -0.5rem -1rem;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
