:root{
  --color-primary:#1A1A2E;
  --color-secondary:#2D2D44;
  --color-accent:#FF6B35;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'DM Sans', system-ui, sans-serif; text-rendering: optimizeLegibility; }

img { max-width: 100%; height: auto; }
*:focus-visible { outline: 3px solid color-mix(in srgb, var(--color-accent) 55%, white 45%); outline-offset: 3px; }

.btn-cta, button, .btn, [class*="btn-"], a[href="#order_form"]{
  white-space: nowrap;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

form button[type="submit"] { white-space: normal; width: 100%; }

[data-animate]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease-out, transform .7s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible{
  opacity: 1;
  transform: translateY(0);
}

.rotate-180 { transform: rotate(180deg); }

.glow-accent{
  box-shadow: 0 0 0 1px rgba(255,107,53,.25), 0 10px 30px rgba(255,107,53,.18);
}

.text-balance { text-wrap: balance; }

.tap-highlight-none{
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  [data-animate]{ opacity: 1; transform: none; transition: none; }
}