/* Nakashi Bar — design tokens
   Paleta extraída do cardápio impresso (navy profundo + vermilion + off-white). */

:root {
  --navy:           #0e3a5c;
  --navy-deep:      #08274a;
  --navy-darker:    #061b35;
  --vermilion:      #dd4f1e;
  --vermilion-soft: #e8693e;
  --cream:          #f5f2ec;
  --cream-warm:     #ede8de;
  --white:          #ffffff;
  --text:           #f5f2ec;
  --text-muted:     #b8c4d2;
  --text-dim:       #8a99ab;
  --divider:        rgba(245, 242, 236, 0.12);

  --max-w:          1440px;
  --gutter:         clamp(16px, 4vw, 40px);
  --radius:         2px;

  --font-sans:      "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display:   "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-jp:        "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --shadow-sm:      0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md:      0 8px 24px rgba(0, 0, 0, 0.25);

  --ease:           cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 148px;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}
a:hover { color: var(--vermilion-soft); }

img, svg { display: block; max-width: 100%; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Logo wordmark — imagem oficial da marca */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__img {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 640px) {
  .brand__img { height: 36px; }
}
