:root{
  --color-primary:#1C1917;
  --color-secondary:#2C2825;
  --color-accent:#D4B896;
}

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

/* Premium focus ring */
:where(a,button,input,textarea,select):focus-visible{
  outline:2px solid color-mix(in srgb, var(--color-accent) 80%, white);
  outline-offset:3px;
}

/* Animations (context: fade_up) */
[data-animate]{
  opacity:0;
  transform:translateY(2rem);
  transition:opacity 700ms ease-out, transform 700ms ease-out;
  will-change:opacity,transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0);
}
.rotate-180{transform:rotate(180deg)}

/* Header scroll states */
.header-scrolled{
  background:rgba(253,252,251,.95);
  color:var(--color-primary);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-scrolled a{color:inherit}
.header-scrolled #mobile-menu-btn{box-shadow:inset 0 0 0 1px rgba(0,0,0,.08)}
.header-home a{color:white}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(28,25,23,.20) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(28,25,23,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28,25,23,.08) 1px, transparent 1px);
  background-size:32px 32px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(212,184,150,.18) 0, rgba(212,184,150,.18) 1px, transparent 1px, transparent 10px);
}
.decor-mesh{
  background:
    radial-gradient(700px circle at 20% 10%, rgba(212,184,150,.18), transparent 55%),
    radial-gradient(650px circle at 80% 30%, rgba(212,184,150,.12), transparent 50%),
    radial-gradient(700px circle at 50% 100%, rgba(255,255,255,.10), transparent 55%);
}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;
  height:420px;
  border-radius:999px;
  filter:blur(42px);
  opacity:.55;
  z-index:0;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-160px;
  left:-180px;
  background:radial-gradient(circle, rgba(212,184,150,.75), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-200px;
  right:-200px;
  background:radial-gradient(circle, rgba(212,184,150,.55), transparent 60%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:120px; height:120px;
  background:radial-gradient(circle at top right, rgba(212,184,150,.28), transparent 70%);
  pointer-events:none;
  z-index:0;
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:140px; height:140px;
  background:radial-gradient(circle at bottom left, rgba(212,184,150,.22), transparent 70%);
  pointer-events:none;
  z-index:0;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:radial-gradient(circle at 50% 50%, rgba(212,184,150,.26), transparent 55%);
  filter:blur(26px);
  z-index:0;
  pointer-events:none;
}

.decor-rings-svg{
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(212,184,150,.22) 28% 29%, transparent 29% 41%, rgba(212,184,150,.14) 41% 42%, transparent 42% 58%, rgba(212,184,150,.10) 58% 59%, transparent 59% 100%);
}

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

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