* { box-sizing: border-box; }
.hidden { display: none !important; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.p-6 { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.gap-2 { gap: .5rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.w-2 { width: .5rem; }
.h-2 { height: .5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.overflow-auto { overflow: auto; }
.rounded-full { border-radius: 999px; }
.rounded-xl,
.rounded-2xl { border-radius: 8px; }
.border-b { border-bottom: 1px solid #ded8ce; }
.border-b-2 { border-bottom-width: 2px; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-dashed { border-style: dashed; }
.border-transparent { border-color: transparent; }
.border-charcoal { border-color: #1c1c1c; }
.border-muted-beige\/30 { border-color: rgba(214, 207, 199, .3); }
.border-gray-600 { border-color: #4b5563; }
.border-pink-500 { border-color: #ec4899; }
.bg-warm-grey { background: #f5f5f3; }
.bg-white\/5 { background: rgba(255, 255, 255, .05); }
.bg-green-400 { background: #4ade80; }
.bg-gradient-to-r,
.gradient-btn,
.from-pink-500,
.to-purple-600 { background: #f5a900; }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-charcoal { color: #1c1c1c; }
.text-charcoal\/60 { color: rgba(28, 28, 28, .6); }
.text-charcoal\/70 { color: rgba(28, 28, 28, .7); }
.hover\:text-charcoal:hover { color: #1c1c1c; }
.hover\:text-charcoal\/70:hover { color: rgba(28, 28, 28, .7); }
.hover\:bg-white\/10:hover { background: rgba(255, 255, 255, .1); }
.hover\:opacity-90:hover { opacity: .9; }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-sans { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.font-serif { font-family: "Playfair Display", Georgia, serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.transition,
.transition-colors { transition: all .2s ease; }
.backdrop-blur { backdrop-filter: blur(12px); }
.glass-card { background: #fff; border: 1px solid #ded8ce; color: #171717; }
.gradient-text { color: #f5a900; }
.animate-pulse { animation: pulse 1.4s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes pulse { 50% { opacity: .45; } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .lg\:pt-32 { padding-top: 8rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:text-5xl { font-size: 3rem; }
}
