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

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

:root {
  /* Color palette -- Price Rite Plumbing (navy + cobalt blue, matching logo) */
  --bg: #FFFFFF;
  --bg-alt: #F2F5F9;
  --dark: #0A1628;
  --dark-deeper: #060E1A;
  --white: #FFFFFF;
  --text: #0A1628;
  --text-muted: #47576D;
  --text-faint: #8492A6;
  --accent: #1E56A0;
  --accent-hover: #174684;
  --accent-light: rgba(30, 86, 160, 0.08);
  --border: #D9E0EA;
  --border-light: #EAF0F6;

  /* Secondary accent for trust badges */
  --trust-green: #059669;
  --trust-green-light: rgba(5, 150, 105, 0.1);

  /* Dark section text */
  --dark-text: #E2EAF2;
  --dark-text-muted: rgba(226, 234, 242, 0.65);
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Saira', system-ui, -apple-system, sans-serif;
  --font-body: 'Figtree', 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.65;
  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; }
