/* ================ GLOBAL RESET & VARIABLES ================ */
:root {
  /* Colors */
  --gold: #D4AF37;
  --gold-light: #fde047;
  --gold-dark: #a37c00;
  --black-deep: #0a0a0a;
  --black-charcoal: #1a1a1a;
  --gray-darker: #262626;
  --gray-dark: #404040;
  --gray-mid: #666666;
  --gray-light: #e0e0e0;
  --white: #ffffff;
  --section-bg: #fafafa;
  --card-bg: #ffffff;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Spacing (Tailwind-inspired) */
  --space-2xs: 0.25rem;   /* 4px */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);

  /* Transition */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.4s;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-deep);
  margin: 0;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ================ BACKGROUND PATTERN ================ */
.pattern-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #e5e7eb 2px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 1;
}

/* ================ UTILITIES ================ */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.text-black-deep { color: var(--black-deep); }
.text-gray-mid { color: var(--gray-mid); }
.section-padding { padding: var(--space-2xl) 0; }
.section-padding-md { padding: var(--space-xl) 0; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.no-underline { text-decoration: none; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}