/* From Spring Farms — Design Tokens & Base */
:root {
  /* Primary */
  --forest: #2d4a3e;
  --forest-dark: #1e3329;
  --sage: #8a9a7b;
  --sage-light: #b8c4a8;
  --cream: #f7f3e9;
  --warm-white: #fdfbf7;
  --off-white: #f5f1e8;

  /* Accent */
  --sunflower: #e8b84a;
  --sunflower-dark: #c99a2e;
  --earth: #6b5344;
  --earth-light: #8b7355;
  --sky: #7ba3b8;
  --autumn: #c47a3a;

  /* Neutrals */
  --text: #2c2a26;
  --text-muted: #5c584f;
  --border: #e0d9cc;
  --overlay: rgba(30, 51, 41, 0.55);

  /* Typography */
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Lato", system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --container: min(1120px, 92vw);
  --header-h: 4.25rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(45, 74, 62, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 74, 62, 0.12);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--sage);
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.section--cream {
  background: var(--cream);
}

.section--forest {
  background: var(--forest);
  color: var(--warm-white);
}

.section--forest h2,
.section--forest h3 {
  color: var(--warm-white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  margin-top: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background: var(--forest);
  color: var(--warm-white);
  border-color: var(--forest);
}

.btn--primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.btn--secondary:hover {
  background: var(--warm-white);
  color: var(--forest-dark);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--warm-white);
}

.btn--sunflower {
  background: var(--sunflower);
  color: var(--forest-dark);
  border-color: var(--sunflower);
}

.btn--sunflower:hover {
  background: var(--sunflower-dark);
  border-color: var(--sunflower-dark);
  color: var(--warm-white);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--forest);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--sunflower);
  outline-offset: 3px;
}

/* Utility */
.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;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }
