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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

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

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

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Custom Properties */
:root {
  --gold: #C5A054;
  --gold-light: #D4B978;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --charcoal: #2D2D2D;
  --white-cream: #FAFAF7;
  --white: #FFFFFF;
  --gray: #9A9A9A;
  --gray-light: #E5E5E5;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.8s ease-out;
  
  --spacing-section-desktop: 120px;
  --spacing-section-mobile: 60px;
}

/* Base Styles */
body {
  background-color: var(--white-cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
h3 { font-size: clamp(2rem, 3vw, 3rem); }
h4 { font-size: clamp(1.5rem, 2vw, 2rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* Selection */
::selection {
  background-color: var(--gold);
  color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--spacing-section-desktop) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-section-mobile) 0;
  }
}

.gold-line {
  height: 1px;
  background-color: var(--gold);
  width: 100%;
  border: none;
}

/* Text reveal ready states */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
}
