/*
  Solana del Valle — Landing Page Styles
  SDV-4: Devin implements full styles here.

  Brand palette (from config.json):
  --olive:      #424835
  --gold:       #C7A162
  --cream:      #F5F0E8
  --cream-alt:  #FCF5EA
  --beige:      #ECE4D9
  --beige-warm: #EBE2CD
  --sage:       #A8B5A2
  --gold-muted: #B1A379

  Typography:
  --font-display: 'Playfair Display', Georgia, serif
  --font-body:    'Lato', 'Inter', system-ui, sans-serif

  Palette whitelist enforced in CI (SDV-5, AC-C05).
  DO NOT introduce hex values outside the brand palette without updating
  the whitelist grep in .github/workflows/ci.yml.
*/

:root {
  --olive:      #424835;
  --gold:       #C7A162;
  --cream:      #F5F0E8;
  --cream-alt:  #FCF5EA;
  --beige:      #ECE4D9;
  --beige-warm: #EBE2CD;
  --sage:       #A8B5A2;
  --gold-muted: #B1A379;
  --text-dark:  #1A1A1A;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* SDV-4: Devin adds full layout and section styles below */
