/* Amigas Green Tech — client palette: olive green + beige */
:root {
  --color-primary: #6b8e23;        /* olive drab */
  --color-primary-dark: #556b2f;   /* dark olive green */
  --color-primary-light: #8dae3f;  /* lighter olive */
  --color-accent: #b8860b;         /* warm beige/tan accent (dark goldenrod) */
  /* Top bar — deep olive, distinct from primary */
  --color-topbar: #3d4818;
  --color-text: #2a2f18;           /* very dark olive */
  --color-text-muted: #5c5f4a;
  --color-bg: #f5eedc;             /* beige page background */
  --color-bg-card: #fffdf6;        /* warm off-white card */
  --color-border: #e0d8c0;         /* soft beige border */
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(107, 142, 35, 0.08);
  --shadow-md: 0 4px 12px rgba(107, 142, 35, 0.12);
  --shadow-lg: 0 12px 32px rgba(107, 142, 35, 0.14);
  --radius: 8px;
  --radius-lg: 12px;
  /* Tighter than full HD width (~75% scale feel on large screens) */
  --max-width: 960px;
  --page-gutter: clamp(1rem, 3.5vw, 2.25rem);
}

@media (min-width: 1280px) {
  :root {
    /* Extra side inset on very wide monitors */
    --page-gutter: clamp(1.25rem, 4vw, 3rem);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}
