:root{
  --color-primary:#3D4A3D;
  --color-secondary:#566556;
  --color-accent:#8FBC8F;
}

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

/* Improved focus */
:where(a,button,input,select,textarea):focus-visible{
  outline:2px solid rgba(143,188,143,.9);
  outline-offset:3px;
  border-radius:14px
}

/* Scroll animations (zoom_in) */
[data-animate]{
  opacity:0;
  transform:scale(.95);
  transition:opacity .5s ease-out,transform .5s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:scale(1)
}
.rotate-180{transform:rotate(180deg)}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size:18px 18px;
  background-position:0 0
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size:28px 28px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.14) 1px,
    transparent 1px,
    transparent 10px
  )
}
.decor-mesh{
  background:
    radial-gradient(1200px 700px at 15% 20%, rgba(143,188,143,.25), transparent 55%),
    radial-gradient(900px 600px at 85% 25%, rgba(86,101,86,.22), transparent 55%),
    radial-gradient(1000px 700px at 50% 90%, rgba(61,74,61,.20), transparent 60%)
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.11}
.decor-bold{opacity:.2}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;height:420px;
  filter:blur(42px);
  opacity:.35;
  pointer-events:none;
  border-radius:9999px;
  z-index:0
}
.decor-gradient-blur::before{
  top:-120px;left:-140px;
  background:radial-gradient(circle at 30% 30%, rgba(143,188,143,.9), transparent 60%)
}
.decor-gradient-blur::after{
  bottom:-140px;right:-150px;
  background:radial-gradient(circle at 30% 30%, rgba(86,101,86,.8), transparent 60%)
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-12% -12% auto auto;
  width:520px;height:520px;
  background:radial-gradient(circle at 40% 40%, rgba(143,188,143,.45), transparent 60%);
  filter:blur(36px);
  opacity:.55;
  pointer-events:none;
  z-index:0
}

/* Header scroll state helper */
.header-solid{
  background-color:rgba(255,255,255,.92) !important;
  border-color:rgba(243,244,246,1) !important
}

#mobile-menu a, #mobile-menu button{touch-action:manipulation}

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