/* ── Reset & Variables ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand green + black */
  --green: #4DC338;
  --green-dark: #3a9e2a;
  --green-light: #e8f7e5;
  --black: #1a1a1a;

  /* Logo bunting colours */
  --flag-blue: #1E90FF;
  --flag-coral: #FF6B6B;
  --flag-green: #2ECC40;
  --flag-yellow: #FFE014;
  --flag-pink: #FF2FCC;
  --flag-red: #EE2020;

  --cream: #FFF9F0;
  --warm-white: #FFFDF8;
  --text: #2d2d2d;
  --text-light: #666;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
