Enterprise Design System
Comprehensive style guide showcasing our $100K+ quality standards, pixel-perfect components, and enterprise-grade attention to detail.
Design Principles
Trust & Reliability
Every element builds confidence through professional design and clear communication.
Performance First
Optimized for instant loading with sub-second interactions and smooth animations.
Pixel Perfect
Meticulous attention to spacing, alignment, and visual hierarchy in every component.
Always Available
24/7 emergency service reflected in accessible, responsive design patterns.
Color Palette
Primary Colors
Blue 50
#eff6ff
Blue 100
#dbeafe
Blue 200
#bfdbfe
Blue 300
#93c5fd
Blue 400
#60a5fa
Blue 500
#3b82f6
Blue 600
#2563eb
Blue 700
#1d4ed8
Blue 800
#1e40af
Blue 900
#1e3a8a
Semantic Colors
Success
#10b981
Warning
#f59e0b
Error
#ef4444
Info
#3b82f6
Neutral Colors
Gray 50
#f9fafb
Gray 100
#f3f4f6
Gray 200
#e5e7eb
Gray 300
#d1d5db
Gray 400
#9ca3af
Gray 500
#6b7280
Gray 600
#4b5563
Gray 700
#374151
Gray 800
#1f2937
Gray 900
#111827
Typography
Enterprise Excellence
Display XL
text-6xl font-bold
Professional HVAC Services
Display
text-5xl font-bold
Trusted by North Texas
Heading 1
text-4xl font-bold
Industry Leading Quality
Heading 2
text-3xl font-semibold
Expert Technicians
Heading 3
text-2xl font-semibold
Service Excellence
Heading 4
text-xl font-semibold
We provide comprehensive HVAC solutions
Body Large
text-lg
Professional service you can trust
Body
text-base
Licensed and insured technicians
Body Small
text-sm
Available 24/7 for emergencies
Caption
text-xs
Spacing System
xs
0.25rem
sm
0.5rem
md
1rem
lg
1.5rem
xl
2rem
2xl
3rem
3xl
4rem
Buttons
Variants
Sizes
States
Cards
Default Card
Standard card with subtle shadow and border. Perfect for content sections.
Glass Card
Glassmorphism effect with backdrop blur for modern, premium feel.
Gradient Card
Eye-catching gradient background for important CTAs and features.
Badges
Form Elements
Shadow System
sm
default
md
lg
xl
2xl
inner
Animations
Fade In
Slide Up
Scale In
Float
Pulse
Spin
Icon System
phone
location
clock
shield
star
tool
thermometer
snowflake
fire
warning
check
Responsive Grid System
Code Standards
Component Structure
---
// Astro Component Template
import BaseLayout from '../layouts/BaseLayout.astro';
import PremiumButton from '../components/ui/PremiumButton.astro';
export interface Props {
variant?: 'default' | 'premium';
title: string;
}
const { variant = 'default', title } = Astro.props;
---
<section class="enterprise-section">
<h2>{title}</h2>
<slot />
</section>
<style>
.enterprise-section {
@apply px-4 py-16 bg-gradient-to-br from-gray-50 to-white;
}
</style>
CSS Architecture
- Use Tailwind utilities first
- Component-specific styles in style tags
- CSS custom properties for dynamic values
- BEM naming for custom classes
Performance Guidelines
- Lazy load images below the fold
- Use responsive images with srcset
- Implement critical CSS inlining
- Minimize JavaScript bundle size
- Use Astro's static site generation
Accessibility Checklist
- WCAG 2.1 AA compliance minimum
- Semantic HTML structure
- Proper ARIA labels and roles
- Keyboard navigation support
- Focus indicators visible
- Color contrast ratios met
This style guide represents our commitment to enterprise-grade quality and attention to detail.
Version 1.0.0 | Last Updated: 8/22/2025