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

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'DM Sans',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,textarea,select):focus-visible{
  outline:2px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
  outline-offset:2px
}

/* Premium decorations */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.22) 1px, transparent 0);
  background-size:18px 18px
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:44px 44px
}
.decor-diagonal{
  background-image:linear-gradient(135deg, rgba(212,175,55,.14) 0, rgba(212,175,55,.14) 12%, transparent 12%, transparent 50%, rgba(212,175,55,.14) 50%, rgba(212,175,55,.14) 62%, transparent 62%, transparent 100%);
  background-size:22px 22px
}
.decor-mesh{
  background:
    radial-gradient(1200px 520px at 15% 5%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(900px 440px at 85% 20%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 540px at 40% 120%, rgba(212,175,55,.10), transparent 60%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  border-radius:9999px;
  filter:blur(42px);
  opacity:.25;
  pointer-events:none;
  z-index:0
}
.decor-gradient-blur::before{
  top:-120px;left:-120px;
  background:radial-gradient(circle at 30% 30%, rgba(212,175,55,.9), transparent 60%)
}
.decor-gradient-blur::after{
  bottom:-160px;right:-140px;
  background:radial-gradient(circle at 40% 40%, rgba(255,255,255,.45), transparent 60%)
}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;right:0;
  width:140px;height:140px;
  background:linear-gradient(135deg, rgba(212,175,55,.35), transparent 70%);
  border-bottom-left-radius:32px;
  pointer-events:none
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;left:0;
  width:160px;height:160px;
  background:linear-gradient(315deg, rgba(212,175,55,.28), transparent 70%);
  border-top-right-radius:32px;
  pointer-events:none
}

.decor-glow-element{
  position:absolute;
  width:360px;height:360px;
  border-radius:9999px;
  background:radial-gradient(circle at 35% 35%, rgba(212,175,55,.35), transparent 62%);
  filter:blur(20px);
  opacity:.7;
  pointer-events:none
}

.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='rgba(212,175,55,0.18)' stroke-width='2'%3E%3Ccircle cx='210' cy='210' r='56'/%3E%3Ccircle cx='210' cy='210' r='96'/%3E%3Ccircle cx='210' cy='210' r='140'/%3E%3Ccircle cx='210' cy='210' r='188'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:420px 420px
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

/* Animations: context (slide_left) */
[data-animate]{
  opacity:0;
  transform:translateX(2rem);
  transition:opacity .6s ease-out, transform .6s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0)
}

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

/* Small UI helpers */
.surface-glass{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(0,0,0,.06)
}
.text-balance{ text-wrap:balance }
.no-tap-highlight{-webkit-tap-highlight-color:transparent}

/* Mobile menu animation */
#mobile-menu{
  transform-origin:top;
}
#mobile-menu.is-open{
  display:block
}

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