/* ─────────────────────────────────────────────────────────
   BASE — reset, root variables, typography, shared layout
   ───────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f3f3f0;
  color: #141416;
}

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

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

:root {
  --orange: #EA6525;
  --orange-dark: #c4501a;
  --orange-light: #f58140;
  --black: #000000;
  --near-black: #141416;
  --dark: #2b2b2b;
  --white: #ffffff;
  --bg: #f3f3f0;
  --bg-2: #ecece8;
  --surface: #ffffff;
  --line: #ddddda;
  --line-soft: #e7e7e3;
  --text: #141416;
  --muted: #66666d;
  --soft: #4d4d53;
  --radius: 28px;
  --radius-sm: 14px;
  --shadow: 0 10px 28px rgba(0,0,0,0.06);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.10);
  --pad: clamp(20px, 2vw, 32px);
  --max: 1900px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
