:root{
  --color-primary:#0A0A0A;
  --color-secondary:#1A1A1A;
  --color-accent:#D4AF37;
  --bg-light:#FFFDF5;
  --bg-alt:#FEF9E7;
}

html{scroll-behavior:smooth;scroll-padding-top:7.5rem}
body{font-family:'Source Sans 3',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%}

/* Premium focus ring */
:where(a,button,input,textarea,select):focus-visible{
  outline:2px solid color-mix(in srgb, var(--color-accent) 85%, #fff);
  outline-offset:2px;
  border-radius:12px;
}

/* Scroll animations (context: slide_left) */
[data-animate]{
  opacity:0;
  transform:translateX(32px);
  transition:opacity .6s ease-out, transform .6s ease-out;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0);
}
.rotate-180{transform:rotate(180deg)}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(212,175,55,.35) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:28px 28px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(212,175,55,.18) 0, rgba(212,175,55,.18) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(800px 300px at 18% 20%, rgba(212,175,55,.22), transparent 60%),
    radial-gradient(700px 260px at 75% 30%, rgba(212,175,55,.16), transparent 58%),
    radial-gradient(650px 260px at 55% 75%, rgba(255,255,255,.08), transparent 58%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  filter:blur(64px);
  opacity:.55;
  pointer-events:none;
  border-radius:9999px;
}
.decor-gradient-blur::before{
  top:-240px;
  left:-200px;
  background:radial-gradient(circle at 30% 30%, rgba(212,175,55,.55), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-260px;
  right:-220px;
  background:radial-gradient(circle at 40% 40%, rgba(212,175,55,.35), transparent 60%);
}
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:160px;
  height:160px;
  background:linear-gradient(135deg, rgba(212,175,55,.28), transparent 60%);
  clip-path:polygon(0 0, 100% 0, 100% 100%);
  pointer-events:none;
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:180px;
  height:180px;
  background:linear-gradient(315deg, rgba(212,175,55,.22), transparent 62%);
  clip-path:polygon(0 0, 0 100%, 100% 100%);
  pointer-events:none;
}
.decor-glow-element{
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  border-radius:9999px;
  background:radial-gradient(circle, rgba(212,175,55,.35), transparent 65%);
  filter:blur(24px);
  opacity:.8;
}
.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-opacity='.20'%3E%3Ccircle cx='260' cy='260' r='70'/%3E%3Ccircle cx='260' cy='260' r='120'/%3E%3Ccircle cx='260' cy='260' r='170'/%3E%3Ccircle cx='260' cy='260' r='220'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:520px 520px;
}

/* Intensity modifiers */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

/* Subtle selection */
::selection{
  background:rgba(212,175,55,.25);
}

/* Improve tap targets */
a,button{touch-action:manipulation}