/* css/variables.css */
/* Design tokens and CSS variables */

:root {
  /* Color Palette */
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EDD6;
  
  --navy: #1C2B4A;
  --navy-deep: #111B30;
  
  --sand: #FAF6EE;
  --sand-mid: #F0E8D8;
  
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  
  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-header: 200;
  --z-modal: 1000;
  --z-toast: 10000;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--sand);
  color: var(--text);
  touch-action: pan-y;
  line-height: 1.6;
}

button,
a,
input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.3;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.text-center {
  text-align: center;
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Responsive utilities */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
}
