@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Design tokens */
:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  --bg-warm: #fff8e7;
  --bg-warm-mid: #fdefc0;
  --text-dark: #7a3d00;
  --text-mid: #9a5c00;
  --text-light: #c07000;
  --accent: #e8820c;
  --accent-light: #ffd166;
  --hero-mobile-bg: #7a3d00;
  --footer-bg: #3a2000;
  --email-section-bg: #7a3d00;
  --tap-highlight: #fff3cd;
  --popover-bg: #fffbf0;
  --popover-border: #ffe082;
  --badge-bg: #ffffff;
  --feature-card-bg: #fff8e7;
  --border-warm: #ffe4a0;
}

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

html {
  font-family: var(--font-sans);
  background: var(--bg-warm);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
