/* === CSS Variables === */
:root {
  --cream-50: #FAF6F0;
  --cream-100: #F5E6C8;
  --cream-200: #E8D5B0;
  --dark-900: #1A1A1A;
  --dark-800: #2D2D2D;
  --dark-700: #3D3D3D;
  --gold-500: #D4A84B;
  --gold-400: #E5BC6A;
  --gold-600: #B8923D;
  --ghost-400: #7EC8C8;
  --ghost-500: #5FB3B3;
  --ghost-600: #4A9E9E;
  --amber-400: #E8A952;
  --amber-500: #D4923A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --container-max: 1200px;
  --container-padding: 1rem;
}

@media (min-width: 768px) {
  :root { --container-padding: 2rem; }
}
@media (min-width: 1024px) {
  :root { --container-padding: 4rem; }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark-900);
  color: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === Scroll Reveal Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === Section Utilities === */
section {
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  opacity: 0.75;
  margin-bottom: 3rem;
}
