/* ============================================
   ROYAL AYERS MOBILE CIGAR LOUNGE
   Design System — Luxury Brand Foundation
   ============================================ */

:root {
  /* === COLOR PALETTE === */
  --color-black: #050505;
  --color-black-soft: #0A0A0A;
  --color-charcoal: #121212;
  --color-charcoal-light: #1A1A1A;
  
  --color-red-deep: #7A0F12;
  --color-red-primary: #8B1116;
  --color-red-muted: #5C0A0D;
  
  --color-gold: #D4AF37;
  --color-gold-light: #E6C768;
  --color-gold-muted: #B8962E;
  
  --color-text-primary: #F5F1E8;
  --color-text-muted: #B8B0A3;
  --color-text-subtle: #8A8378;
  
  /* === TYPOGRAPHY === */
  --font-heading: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
  --text-7xl: 5rem;
  --text-8xl: 6rem;
  
  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;
  
  /* === SPACING === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* === LAYOUT === */
  --container-max: 1280px;
  --container-narrow: 720px;
  --nav-height: 80px;
  
  /* === EFFECTS === */
  --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-glow-red: 0 0 30px rgba(139, 17, 22, 0.2);
  --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === BASE RESET & TYPOGRAPHY === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === TYPOGRAPHY UTILITIES === */
.font-heading {
  font-family: var(--font-heading);
}

.text-gold {
  color: var(--color-gold);
}

.text-gold-light {
  color: var(--color-gold-light);
}

.text-red {
  color: var(--color-red-primary);
}

.text-muted {
  color: var(--color-text-muted);
}

/* === SECTION PATTERNS === */
.section {
  padding: var(--space-20) var(--space-6);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) var(--space-8);
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-32) var(--space-12);
  }
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: var(--text-6xl);
  }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}
