:root{
  --color-primary:#0A0A0A;
  --color-secondary:#1A1A1A;
  --color-accent:#D4AF37;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Urbanist',system-ui,sans-serif}

/* Button fixes */
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%}

/* Focus visibility */
:where(a,button,input,select,textarea):focus-visible{
  outline:2px solid color-mix(in oklab, var(--color-accent) 45%, white);
  outline-offset:2px;
}

/* Animations */
[data-animate]{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease-out,transform .6s ease-out;
}
[data-animate].is-visible{opacity:1;transform:translateY(0)}
.rotate-180{transform:rotate(180deg)}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(212,175,55,.22) 1px, transparent 0);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(212,175,55,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212,175,55,.12) 1px, transparent 1px);
  background-size:44px 44px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.12) 8px, transparent 8px, transparent 18px);
}
.decor-mesh{
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(212,175,55,.20), transparent 60%),
    radial-gradient(760px 460px at 85% 30%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(620px 420px at 55% 95%, rgba(212,175,55,.14), transparent 60%);
}

.decor-gradient-blur{
  filter:blur(30px);
  background:radial-gradient(circle at 30% 30%, rgba(212,175,55,.55), transparent 60%),
             radial-gradient(circle at 70% 70%, rgba(212,175,55,.25), transparent 55%);
  opacity:.6;
  border-radius:9999px;
}
.decor-glow-element{
  box-shadow:0 0 60px rgba(212,175,55,.22), 0 0 120px rgba(212,175,55,.12);
}

.decor-corner-tr::before,
.decor-corner-bl::before{
  content:"";
  position:absolute;
  width:140px;height:140px;
  background:linear-gradient(135deg, rgba(212,175,55,.25), rgba(212,175,55,0));
  pointer-events:none;
}
.decor-corner-tr::before{top:-1px;right:-1px;border-top-right-radius:24px}
.decor-corner-bl::before{bottom:-1px;left:-1px;border-bottom-left-radius:24px;transform:rotate(180deg)}

/* Intensity modifiers */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

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

/* Subtle selection for dark areas */
::selection{background:rgba(212,175,55,.25);color:#0A0A0A}

/* Mobile menu improve tap */
#mobile-menu a{ -webkit-tap-highlight-color: transparent; }

/* Cookie banner shadow tune */
#cookie-consent .shadow-2xl{
  box-shadow:
    0 24px 70px rgba(0,0,0,.20),
    0 10px 30px rgba(0,0,0,.12);
}