:root{
  --color-primary:#3D2914;
  --color-secondary:#5C4020;
  --color-accent:#FF8C00;
}

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

/* Accessible focus */
:where(a,button,input,select,textarea):focus-visible{
  outline:3px solid color-mix(in srgb, var(--color-accent) 55%, white);
  outline-offset:2px;
  border-radius:.75rem
}

/* Animation system */
[data-animate]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease-out, transform .6s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0)
}

/* Helpers */
.rotate-180{transform:rotate(180deg)}
.safe-bottom{padding-bottom:env(safe-area-inset-bottom)}
.shadow-soft{box-shadow:0 18px 60px rgba(0,0,0,.12)}

/* Decorative patterns */
.decor-grid-dots{
  background-image:radial-gradient(rgba(61,41,20,.22) 1px, transparent 1px);
  background-size:16px 16px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(61,41,20,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(61,41,20,.10) 1px, transparent 1px);
  background-size:32px 32px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(
    45deg,
    rgba(255,140,0,.18),
    rgba(255,140,0,.18) 1px,
    transparent 1px,
    transparent 12px
  );
}
.decor-mesh{
  background:
    radial-gradient(700px 380px at 15% 10%, rgba(255,140,0,.22), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(92,64,32,.24), transparent 60%),
    radial-gradient(650px 420px at 40% 85%, rgba(61,41,20,.22), transparent 60%);
}

/* Decorative intensity */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

/* Accent elements */
.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  z-index:-1;
  filter:blur(42px);
  opacity:.55;
  border-radius:9999px;
  transform:translateZ(0);
  pointer-events:none;
}
.decor-gradient-blur::before{
  width:420px;height:420px;
  left:-120px;top:-120px;
  background:radial-gradient(circle at 30% 30%, rgba(255,140,0,.6), transparent 60%);
}
.decor-gradient-blur::after{
  width:520px;height:520px;
  right:-160px;bottom:-160px;
  background:radial-gradient(circle at 60% 40%, rgba(92,64,32,.55), transparent 62%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px;right:-1px;
  width:90px;height:90px;
  background:radial-gradient(circle at top right, rgba(255,140,0,.28), transparent 65%);
  pointer-events:none
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px;left:-1px;
  width:110px;height:110px;
  background:radial-gradient(circle at bottom left, rgba(61,41,20,.20), transparent 65%);
  pointer-events:none
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-18%;
  background:radial-gradient(circle at 50% 40%, rgba(255,140,0,.28), transparent 62%);
  filter:blur(24px);
  z-index:-1;
  pointer-events:none
}

.decor-rings-svg{
  background-image:
    radial-gradient(circle at center, transparent 56%, rgba(255,140,0,.18) 57%, transparent 58%),
    radial-gradient(circle at center, transparent 68%, rgba(255,140,0,.14) 69%, transparent 70%),
    radial-gradient(circle at center, transparent 80%, rgba(255,140,0,.10) 81%, transparent 82%);
}

/* Form polish */
input[type="text"], input[type="tel"], input[type="email"], textarea, select{
  -webkit-appearance:none;
  appearance:none
}
input::placeholder, textarea::placeholder{color:rgba(107,114,128,.9)}

/* Cookie banner entrance */
#cookie-consent{
  animation:cookieIn .35s ease-out both;
}
@keyframes cookieIn{
  from{transform:translateY(10px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-animate]{transition:none;transform:none}
  #cookie-consent{animation:none}
}