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

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

:root {
  /* Color palette -- Beckner HVAC (red/orange + charcoal) */
  --bg: #FFFFFF;
  --bg-alt: #F5F5F0;
  --dark: #1A1A2E;
  --dark-deeper: #12121F;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B6B7B;
  --text-faint: #9B9BAB;
  --accent: #C84B31;
  --accent-hover: #B33F28;
  --border: #E5E5E0;
  --border-light: #EDEDEA;

  /* Dark section text */
  --dark-text: #F0F0F5;
  --dark-text-muted: rgba(240, 240, 245, 0.6);
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Red Hat Display', system-ui, -apple-system, sans-serif;
  --font-body: 'Albert Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1160px;
  --content-w: 720px;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-btn: 6px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
