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

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

/* Subtle premium focus ring */
:where(a,button,input,textarea,select):focus-visible{
  outline:2px solid rgba(212,184,150,.6);
  outline-offset:2px;
  border-radius:14px;
}

/* Scroll animations (context: slide_right) */
[data-animate]{
  opacity:0;
  transform:translateX(-2rem);
  transition:opacity .6s ease-out,transform .6s ease-out;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0);
}

/* Utility */
.rotate-180{transform:rotate(180deg)}
.no-scroll{overflow:hidden}

/* Decorative backgrounds (premium, subtle) */
.decor-grid-dots{
  background-image:radial-gradient(rgba(28,25,23,.12) 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:44px 44px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(212,184,150,.18), rgba(212,184,150,.18) 8px, transparent 8px, transparent 16px);
}
.decor-mesh{
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(212,184,150,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(212,184,150,.10), transparent 60%),
    radial-gradient(900px 500px at 30% 95%, rgba(255,255,255,.10), transparent 60%);
}

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

/* Accent elements */
.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:420px;height:420px;
  filter:blur(60px);
  opacity:.22;
  z-index:0;
  pointer-events:none;
  border-radius:9999px;
}
.decor-gradient-blur::before{
  left:-140px; top:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(212,184,150,.9), transparent 60%);
}
.decor-gradient-blur::after{
  right:-160px; bottom:-180px;
  background:radial-gradient(circle at 70% 70%, rgba(212,184,150,.65), transparent 60%);
}
.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:130px; height:130px;
  background:radial-gradient(circle at top right, rgba(212,184,150,.55), transparent 62%);
  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(circle at bottom left, rgba(212,184,150,.45), transparent 62%);
  pointer-events:none;
}
.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(circle at 50% 45%, rgba(212,184,150,.35), transparent 55%);
  filter:blur(20px);
  z-index:0;
  pointer-events:none;
}

.decor-rings-svg{
  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='%23D4B896' stroke-opacity='.22'%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;
}

/* Slider helper (if used) */
.slider-track{
  display:flex;
  gap:1rem;
  transition:transform .5s ease;
  will-change:transform;
}
.slider-dot{
  width:8px;height:8px;border-radius:9999px;
  background:rgba(255,255,255,.35);
}
.slider-dot.is-active{background:rgba(212,184,150,1)}

/* Make tel/mail links not wrap awkwardly in small containers */
a[href^="tel:"],a[href^="mailto:"]{word-break:break-word}