/* Hummingbird Hill Home Services — brand tokens */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Archivo:wght@400;500;600;700&display=swap');

:root{
  /* Primary */
  --hh-navy:      #243C54;   /* rgb(36,60,84)   headings, structure */
  --hh-green:     #587631;   /* rgb(88,118,49)  accent, CTAs, markers */

  /* Neutrals */
  --hh-paper:     #F7F5F0;   /* rgb(247,245,240) backgrounds, logo chip */
  --hh-ink:       #24221E;   /* rgb(36,34,30)   body text on light */

  /* Tints — text on dark backgrounds only */
  --hh-sage-light:  #A9BE8A; /* green accent text on navy */
  --hh-slate-light: #CDD6DF; /* secondary text on navy */

  /* Type */
  --hh-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --hh-font-body:    'Archivo', system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

/* Optional helpers */
.hh-display{ font-family:var(--hh-font-display); }
.hh-body{ font-family:var(--hh-font-body); }
.hh-eyebrow{
  font-family:var(--hh-font-body);
  font-size:11px; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--hh-green);
}
.hh-btn{
  display:inline-block; font-family:var(--hh-font-body); font-weight:600;
  background:var(--hh-green); color:var(--hh-paper);
  padding:13px 26px; border-radius:6px; text-decoration:none;
}
.hh-btn:hover{ filter:brightness(1.08); }
