:root {
  /* Brand Colors - Main */
  --ivory: #f7e9d1;
  --cream: #f8e5c1;
  --brown: #ab6429;
  
  /* Brand Colors - Accents */
  --gold: #e6b447;
  
  /* Derived Colors */
  --background: var(--ivory);
  --panel-bg: var(--cream);
  --primary-text: var(--brown);
  --secondary-text: #8b6b4a;
  --accent: var(--gold);
  --border-color: rgba(171, 100, 41, 0.2);
  --disabled-text: #a68b6b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--primary-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Rounded corners utility */
.rounded {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 16px;
}

.rounded-xl {
  border-radius: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

