:root{
  --color-primary:#1F2937;
  --color-secondary:#374151;
  --color-accent:#64748B;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Work 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 styles */
:where(a,button,input,select,textarea):focus-visible{
  outline:2px solid rgba(100,116,139,.55);
  outline-offset:2px;
  border-radius:9999px
}

/* Premium subtle selection */
::selection{background:rgba(100,116,139,.25)}

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

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(31,41,55,.18) 1px, transparent 1px);
  background-size:16px 16px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(31,41,55,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,41,55,.10) 1px, transparent 1px);
  background-size:42px 42px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(100,116,139,.14) 0, rgba(100,116,139,.14) 1px, transparent 1px, transparent 10px);
}
.decor-mesh{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(100,116,139,.25), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(31,41,55,.25), transparent 55%),
    radial-gradient(900px 500px at 50% 100%, rgba(55,65,81,.20), transparent 55%);
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

/* Accent elements */
.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  filter:blur(60px);
  opacity:.26;
  z-index:0;
  pointer-events:none;
  border-radius:9999px;
}
.decor-gradient-blur::before{
  top:-180px;
  left:-200px;
  background:radial-gradient(circle at 30% 30%, rgba(100,116,139,.95), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-220px;
  right:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(31,41,55,.95), transparent 60%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:160px; height:160px;
  background:radial-gradient(circle at 80% 20%, rgba(100,116,139,.35), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.decor-corner-bl{position:relative}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:180px; height:180px;
  background:radial-gradient(circle at 20% 80%, rgba(31,41,55,.25), transparent 60%);
  pointer-events:none;
  z-index:0;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;height:420px;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle at 50% 50%, rgba(100,116,139,.35), transparent 60%);
  filter:blur(45px);
  z-index:0;
  pointer-events:none;
}

/* Rings SVG helper */
.decor-rings-svg{position:relative}
.decor-rings-svg::before{
  content:"";
  position:absolute;
  inset:0;
  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='%2364748B' 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;
  pointer-events:none;
  opacity:.35;
  z-index:0;
}

/* Utilities */
.text-balance{text-wrap:balance}
.hyphens-auto{hyphens:auto}
.no-tap-highlight{-webkit-tap-highlight-color:transparent}

/* Form polish */
input[type="text"], input[type="tel"], input[type="email"], textarea, select{
  -webkit-appearance:none;
  appearance:none;
}

/* Sticky header anchor offset on iOS */
@supports (-webkit-touch-callout: none){
  html{scroll-padding-top:6rem}
}