:root {
  /* SCRphotography brand retheme (2026-07-11).
     Source of truth: SCRphotos-Website/brand/tokens.json.
     Var NAMES are legacy from the dark theme; values now map to the
     light SCR palette. --black is the page background (warm cream)
     and --offwhite is the primary text (warm ink). */

  /* surfaces */
  --black:    #F8F0DD;   /* brand bg: warm cream/sand */
  --ink:      #352717;   /* brand ink: warm black */
  --line:     #D9D3C7;   /* brand surface: warm greige, hairlines + panels */
  --offwhite: #352717;   /* primary text = brand ink */
  --muted:    #5C4A36;   /* brand ink secondary: warm taupe */

  /* accents */
  --acid:     #A85A2A;   /* links + CTA text: copper (accentText, AA on cream) */
  --orange:   #C6723B;   /* accent fills: copper primary */

  /* app-specific accents (kept inside the brand palette; sage 99A88C
     fails contrast on light surfaces, so Threadlane uses the brand's
     forest-green status color instead) */
  --tl-accent:  #2D6A4F;   /* Threadlane: brand forest green */
  --tl-cta:     #A85A2A;   /* Threadlane CTA = copper */
  --bl-accent:  #A85A2A;   /* Billable: copper (text-grade) */
  --cs-accent:  #4062BB;   /* Callsheet: brand info blue */
  --cs-cta:     #A85A2A;   /* Callsheet CTA = copper */

  /* homepage hero zones */
  --hp-hero-right: #D9D3C7;
  --hp-footer:     #D9D3C7;

  /* fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-cond:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-mono:    'Hanken Grotesk', -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
/* Cormorant needs weight where Bebas Neue didn't */
h1, h2, h3 { font-weight: 600; }
