/* Blackbird Hollow — design tokens (sage/parchment editorial palette, Morgen display) */
@font-face {
  font-family: 'Morgen';
  src: url('/fonts/morgen-regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
:root {
  /* palette — warmed toward the farm-store parchment; sage stays this room's lead */
  --sage: #6B8E6F;
  --sage-deep: #4F6E54;
  --sage-soft: #A8BEA9;
  --sand: #E8DCC4;
  --sand-soft: #EFE5CF;
  --terra: #B0512E;
  --terra-deep: #8F3E22;
  --gold: #C9A961;
  --night: #161D12;
  --off-white: #F4EFE2;
  --paper: #FAF6EC;
  --ink: #35311F;
  --ink-soft: #6B6350;
  --hairline: rgba(53, 49, 31, 0.12);

  /* active roles — sage lead */
  --accent: var(--sage);
  --accent-deep: var(--sage-deep);
  --bg: var(--off-white);
  --bg-tint: var(--sand-soft);

  /* type */
  --display: 'Morgen', 'Playfair Display', Georgia, serif;
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Inter', system-ui, sans-serif;

  /* rhythm */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* texture */
  --linen-opacity: 0.35;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'kern';
  font-size: 16px;
  line-height: 1.55;
}
