/* CSS Reset & Base Variables */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a1a2e;
  --primary-dark: #0f0f1a;
  --accent: #d4a373;
  --accent-hover: #b8956a;
  --bg-primary: #f5e6d3;
  --bg-secondary: #e8d5c4;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #6b5b4f;
  --text-light: #f5e6d3;
  --border-color: #d4a373;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --shadow-light: 0 2px 10px rgba(26, 26, 46, 0.1);
  --shadow-medium: 0 4px 20px rgba(26, 26, 46, 0.15);
  --shadow-heavy: 0 8px 30px rgba(26, 26, 46, 0.25);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  --gradient-accent: linear-gradient(135deg, #d4a373 0%, #b8956a 100%);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --header-height: 80px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.col-half {
  flex: 0 0 50%;
  padding: 0 15px;
}

.col-third {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.col-quarter {
  flex: 0 0 25%;
  padding: 0 15px;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 40px; padding-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* Responsive utilities */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .col-half,
  .col-third,
  .col-quarter {
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
  
  .row {
    margin: 0 -8px;
  }
  
  .col {
    padding: 0 8px;
  }
}