/* Tejas F Khatri & Co. — public site styles */
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.font-display { font-family: 'Fraunces', serif; letter-spacing: -0.02em; }
.deep-green { background: #0b3d2e; color: #f3f0e7; }
.card-lift { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.card-lift:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(11,61,46,.25); }
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06; pointer-events: none; mix-blend-mode: multiply;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; pointer-events: none; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) both; }
@media print {
  .no-print { display: none !important; }
  body { background: white; }
}
