/* ARISE Coffee — design tokens, reset, base typography */

:root{
  --navy-deep:   #0F2B41;
  --navy-black:  #081722;
  --ivory:       #F9FAF5;
  --steel:       #8FA4B3;
  --frost:       #C7D6DE;

  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --navy-soft:   #5C7488;
}

*{ margin:0; padding:0; box-sizing:border-box; }
/* The reserved gutter is what keeps the page from jumping sideways when the
   lightbox locks scrolling and the scrollbar disappears. */
html{ scroll-behavior:smooth; scrollbar-gutter: stable; }

body{
  background: var(--navy-black);
  color: var(--ivory);
  font-family: var(--body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; text-decoration:none; }

section[id]{ scroll-margin-top: 84px; }
