html { scroll-behavior: smooth; }
body { background: #F8F6F2; color: #262626; }

.navbar a { color: #6B6560; position: relative; padding-bottom: 4px; transition: color .2s; }
.navbar a:hover { color: #B89B68; }
.navbar a.active { color: #B89B68; font-weight: 600; }
.navbar a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #B89B68;
}

.btn-primary {
  background: #262626; color: #FFFFFF; height: 56px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s;
}
.btn-primary:hover { background: #B5A89A; }

.btn-outline {
  border: 1.5px solid #262626; color: #262626; height: 56px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-outline:hover { background: #262626; border-color: #262626; color: #FFFFFF; }

.ba-slider { position: relative; overflow: hidden; user-select: none; touch-action: none; }
.ba-slider img { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; }
.ba-after-wrap img { width: var(--ba-full-width); max-width: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: #F8F6F2;
  left: 50%; transform: translateX(-50%); cursor: ew-resize; z-index: 10;
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 999px; background: #F8F6F2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.2); color: #B89B68;
}
.ba-label {
  position: absolute; top: 12px; z-index: 5; font-size: .75rem; letter-spacing: .05em;
  background: rgba(38,38,38,.65); color: #F8F6F2; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}

.font-serif { font-variant-numeric: lining-nums; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
