
/* ─────────────────────────────────────────
   STEELAM — Minimal Unique Navbar
   Concept: Editorial luxury furniture brand.
   White canvas. One bold red slash accent.
   Typography does the heavy lifting.
   The logo mark is a typographic lockup —
   no image dependency.
───────────────────────────────────────── */

:root {
  --red:      #CC0000;
  --red-dark: #A30000;
  --ink:      #1C1C1C;
  --mist:     #F7F7F5;
  --line:     #E2E2E0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
  font-size: 16px;
  line-height: 20px;
}

h1,h2,h3,h4,h5,h6,p{
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}

ul{
  list-style: none;
}
li{
  margin: 0;
  padding: 0;
}
