/* Clearwater Home Cleaning -- typography system.
   Reused as-is from SOURCES/09_typography_application_lab's Fixture A
   (single humanist sans family, per Source 08's already-reasoned selection --
   see BUILD_BRIEF.md section 7). Font paths point at this build's own
   self-hosted copies under assets/fonts/, not the SOURCES/ tree. */

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/work-sans-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/work-sans-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/work-sans-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/work-sans-700-normal.woff2') format('woff2');
}

:root {
  --font-display: 'Work Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', system-ui, sans-serif;

  --ink: #2b2620;
  --ink-muted: #5c5346;
  --hairline: #e7e0d4;
  --hairline-strong: #b9ad98;
  --nav-bg: #fffdf9;
  --bg: #fffdf9;
  --hero-bg: #f4ede1;
  --form-bg: #f4ede1;
  /* #b5651d (Source 09's original fixture-A accent) measures 4.34:1 against both
     white text and the page's white/cream backgrounds -- just under the 4.5:1 AA
     text threshold, found by BP-WEB-TESTSITE-01's own contrast audit (not caught
     by any prior task, none of which measured contrast numerically). Darkened
     here, in this build only, to clear AA at every place the token is used
     (button fill + accent-colored link text) while staying the same warm/rust hue. */
  --accent: #a35b1a;
  --accent-ink: #fff;

  --h1-weight: 700;
  --h1-size: clamp(2.25rem, 5vw, 3.5rem);
  --h1-size-page: clamp(2rem, 4.2vw, 2.75rem);
  --h1-line-height: 1.1;
  --h1-tracking: -0.005em;

  --h2-weight: 600;
  --h3-weight: 600;

  --brand-weight: 700;
  --nav-weight: 500;
  --btn-weight: 600;
  --label-weight: 600;
  --body-line-height: 1.65;
  --body-size: 1.0625rem;
}
