:root{
  --color-primary:#3D4A3D;
  --color-secondary:#566556;
  --color-accent:#8FBC8F;
  --bg-light:#F5FAF5;
  --bg-alt:#E8F5E8;
}

html{scroll-behavior:smooth;scroll-padding-top:6.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%
}

/* Inputs */
.input{
  width:100%;
  border-radius:1.5rem;
  border:1px solid rgb(229 231 235);
  background:#fff;
  padding:.85rem 1rem;
  color:rgb(17 24 39);
  outline:none
}
.input:focus{
  border-color:color-mix(in srgb, var(--color-accent) 55%, #ffffff 45%);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--color-accent) 20%, transparent 80%)
}
.input::placeholder{color:rgb(156 163 175)}

/* Premium cards */
.card{
  border-radius:1.5rem;
  background:#fff;
  border:1px solid rgb(243 244 246);
  box-shadow:0 10px 30px rgba(17,24,39,.06)
}
.card:hover{box-shadow:0 14px 40px rgba(17,24,39,.08)}

/* Subtle emphasis */
.text-balance{ text-wrap:balance; }
.hyphens-auto{ hyphens:auto; }

/* 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 elements (premium, subtle) */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.25) 1px, transparent 0);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size:26px 26px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(143,188,143,.12) 0, rgba(143,188,143,.12) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background-image:
    radial-gradient(600px circle at 20% 20%, rgba(143,188,143,.22), transparent 55%),
    radial-gradient(520px circle at 80% 10%, rgba(61,74,61,.16), transparent 55%),
    radial-gradient(520px circle at 70% 80%, rgba(143,188,143,.18), transparent 55%);
}
.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:-20%;
  filter:blur(40px);
  pointer-events:none;
  z-index:0
}
.decor-gradient-blur::before{
  background:radial-gradient(closest-side, rgba(143,188,143,.25), transparent 70%);
  transform:translate(10%, -6%)
}
.decor-gradient-blur::after{
  background:radial-gradient(closest-side, rgba(61,74,61,.18), transparent 70%);
  transform:translate(-12%, 12%)
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:120px; height:120px;
  background:radial-gradient(closest-side, rgba(143,188,143,.22), transparent 70%);
  pointer-events:none
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:140px; height:140px;
  background:radial-gradient(closest-side, rgba(143,188,143,.18), transparent 70%);
  pointer-events:none
}
.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width:360px;
  height:360px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(143,188,143,.22), transparent 65%);
  filter:blur(12px);
  pointer-events:none;
  z-index:-1
}

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

/* Small utilities */
.no-tap-highlight{-webkit-tap-highlight-color:transparent}
.safe-bottom{padding-bottom:env(safe-area-inset-bottom)}