/* ============================================================
   base.css — tokens, reset, typography
   Raise a Glass · raiseaglass.co
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Design tokens ── */
:root {
  --cream:       #F8F5EE;
  --cream-mid:   #EDE8DD;
  --ink:         #1A1814;
  --ink-soft:    #3D3A32;
  --ink-muted:   #7A7568;
  --ink-faint:   #B5B0A4;
  --amber:       #C4862A;
  --amber-pale:  #F5EDDA;
  --green-shift: #5A9B5A;
  --rule:        rgba(26,24,20,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

a { color: inherit; }

/* ── Utility: visually hidden (accessibility) ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
