@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --color-olive-deep: #2A362B; /* Deep Olive Green */
  --color-sand-warm: #E6DFD4; /* Warm Sand */
  --color-charcoal: #1C1C1C; /* Charcoal Black */
  --color-clay: #B09B8B; /* Raw Clay */
  --color-terracotta: #A45C40; /* Warm Terracotta */
  --color-white: #FFFFFF; /* Pure White */
  --color-overlay: rgba(28, 28, 28, 0.4);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-sand-warm);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-olive-deep);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  color: #4A4A4A; /* Slightly lighter for body text */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Utilities */
.text-center { text-align: center; }
.text-olive { color: var(--color-olive-deep); }
.text-terracotta { color: var(--color-terracotta); }
.bg-olive { background-color: var(--color-olive-deep); color: var(--color-sand-warm); }
.bg-sand { background-color: var(--color-sand-warm); }
.bg-white { background-color: var(--color-white); }
.bg-clay { background-color: var(--color-clay); }
.bg-charcoal { background-color: var(--color-charcoal); color: var(--color-white); }

.section-padding {
  padding: var(--space-xl) 0;
}

/* Background video placeholder helper */
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-olive-deep) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 24 24" fill="none" stroke="%23B09B8B" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line></svg>') center center/100px no-repeat;
  opacity: 0.5;
  z-index: 0;
}
