:root {
  /* Atmosphere & Palette - Quiet Luxury */
  --c-forest-green: #2a3a29;
  --c-forest-deep: #1b261b;
  --c-oatmeal: #f4f1ea;
  --c-moss: #5c6a51;
  --c-moss-light: #8a9681;
  --c-charcoal: #2b2b2b;
  --c-gold-muted: #b89b5a;
  --c-gold-light: #e6c587;
  --c-misty-blue: #9caab2;
  --c-canvas-white: #fdfdfc;
  
  --c-bg: var(--c-oatmeal);
  --c-text-main: var(--c-charcoal);
  --c-text-muted: var(--c-moss);

  /* Awwwards Aesthetics: Glassmorphism & Depth */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(24px);
  --shadow-glow: 0 0 40px rgba(184, 155, 90, 0.15); /* Muted gold glow */
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --shadow-bento: 0 20px 40px rgba(43, 43, 43, 0.08);

  /* Typography */
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Instrument Sans', sans-serif;

  /* Fluid Typography */
  --step--1: clamp(0.8333rem, 0.7932rem + 0.2006vw, 0.9444rem);
  --step-0: clamp(1rem, 0.9097rem + 0.4514vw, 1.25rem);
  --step-1: clamp(1.2rem, 1.0424rem + 0.7881vw, 1.638rem);
  --step-2: clamp(1.44rem, 1.1917rem + 1.2415vw, 2.1287rem);
  --step-3: clamp(1.728rem, 1.358rem + 1.85vw, 2.7533rem);
  --step-4: clamp(2.0736rem, 1.5414rem + 2.661vw, 3.5502rem);
  --step-5: clamp(2.4883rem, 1.7417rem + 3.733vw, 4.5615rem);

  /* Motion & Micro-interactions */
  /* Organic, tactile cubic-bezier curves */
  --ease-organic: cubic-bezier(0.25, 1, 0.35, 1);
  --ease-snappy: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-lux: cubic-bezier(0.4, 0, 0.2, 1);
  
  --transition-fast: 0.25s var(--ease-organic);
  --transition-med: 0.5s var(--ease-lux);
  --transition-slow: 0.85s var(--ease-organic);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Typography & Optical Sizing */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-forest-deep);
  font-variation-settings: 'opsz' 72, 'wght' 300;
}

h1 {
  font-size: var(--step-5);
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'wght' 300;
}

h2 {
  font-size: var(--step-4);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 72, 'wght' 300;
}

h3 {
  font-size: var(--step-3);
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 36, 'wght' 400;
}

h4 {
  font-size: var(--step-2);
  font-variation-settings: 'opsz' 24, 'wght' 400;
}

h5 {
  font-size: var(--step-1);
  font-variation-settings: 'opsz' 18, 'wght' 500;
}

p {
  font-size: var(--step-0);
  font-variation-settings: 'opsz' 14, 'wght' 400;
}

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

a:hover {
  color: var(--c-gold-muted);
}

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

/* Layout Utilities */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 max(2rem, 5vw);
}

.grid {
  display: grid;
  gap: max(2rem, 3vw);
}

.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.section-padding {
  padding: max(6rem, 10vh) 0;
}

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

/* SR-Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }
