
/* H & R Electric - Brand Wireframe Styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #2D2926;
  --color-primary-light: #4A4543;
  --color-brand-tan: #C4A265;
  --color-brand-tan-light: #D4BA85;
  --color-brand-tan-dark: #A8883F;
  --color-neutral-900: #1A1816;
  --color-neutral-800: #2D2926;
  --color-neutral-100: #F5F3F0;
  --color-neutral-50: #FAF9F7;
  --color-white: #FFFFFF;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: #374151;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: #C4A265;
  color: #2D2926;
}
