/* # Reset & Base Styles
/* 
*/

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

/* Root Variables - Premium Brand Palette */
:root {
  /* Neutral Palette */
  --color-black: #0A0A0A;
  --color-dark: #121212;
  --color-medium: #2A2A2A;
  --color-muted: #6B6B6B;
  --color-light: #A3A3A3;
  --color-white: #FAFAFA;
  
  /* Accent Colors - Premium Hospitality Palette */
  --color-primary: #A88F5E;
  --color-primary-light: #BFAA7A;
  --color-primary-dark: #8A7449;
  --color-warm-dark: #1A1712;
  --color-warm-medium: #242019;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #0A0A0A;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-light);
  font-size: 1.0625rem;
  line-height: 1.7;
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.005em;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-light);
}

/* Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 10;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 10;
}

.container-wide {
  max-width: 1440px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}