/* Terraffin Group — custom refinements on top of Tailwind */

.hero-clip {
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 1023px) {
  .hero-clip {
    clip-path: none;
  }
}

.section-eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: #C7963A;
  margin: 10px auto 0;
}

.card-icon-ring {
  box-shadow: 0 0 0 6px #F5F2EA;
}

.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

html { scroll-behavior: smooth; }
