:root {
  color-scheme: light;
  --nh-cream: #fff6e9;
  --nh-paper: #ffffff;
  --nh-ink: #0b1f3a;
  --nh-red: #c51f2d;
  --nh-red-dark: #9f1723;
  --nh-red-soft: #fde8e8;
  --nh-blue-soft: #eaf1f8;
  --nh-line: #e6ddd3;
  --nh-muted: #667085;
  --nh-green: #177245;
  --nh-danger: #a31222;
  --nh-shadow: 0 16px 40px rgba(11, 31, 58, .08);
  --nh-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --nh-ui: Manrope, "Segoe UI", Arial, sans-serif;
  font-family: var(--nh-ui);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--nh-cream); }
body { margin: 0; min-height: 100vh; background: var(--nh-cream); color: var(--nh-ink); }
body, button, input, select, textarea { font-family: var(--nh-ui); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--nh-ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--nh-ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.nh-service-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  background: var(--nh-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
}
.nh-service-bar a { color: #fff; text-decoration: none; }
.nh-live { display: inline-flex; align-items: center; gap: 8px; }
.nh-live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #43d17a;
  box-shadow: 0 0 0 4px rgba(67, 209, 122, .16);
}
.nh-live-dot.is-closed { background: #ff6672; box-shadow: 0 0 0 4px rgba(255, 102, 114, .15); }

.nh-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 10px max(20px, calc((100vw - 1540px) / 2));
  background: rgba(255, 246, 233, .94);
  border-bottom: 1px solid var(--nh-line);
  backdrop-filter: blur(18px);
}
.nh-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  color: var(--nh-ink);
  text-decoration: none;
}
.nh-brand img {
  width: 82px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.nh-brand-copy { display: grid; gap: 1px; }
.nh-brand-copy b {
  font-family: var(--nh-display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: .045em;
}
.nh-brand-copy small { color: var(--nh-muted); font-size: 10px; font-weight: 700; }

.nh-nav { display: flex; align-items: center; justify-content: center; gap: 8px; }
.nh-nav a,
.nh-nav button,
.nh-utility {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--nh-ink);
  padding: 9px 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}
.nh-nav a:hover,
.nh-nav button:hover,
.nh-nav .active { border-bottom-color: var(--nh-red); color: var(--nh-red); }

.nh-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.nh-cart-trigger,
.nh-primary,
.primary,
.header-order {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--nh-red);
  border-radius: 10px;
  background: var(--nh-red);
  color: #fff;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: none;
}
.nh-cart-trigger:hover,
.nh-primary:hover,
.primary:hover,
.header-order:hover { background: var(--nh-red-dark); border-color: var(--nh-red-dark); }
.nh-cart-trigger b {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  color: var(--nh-red);
  font-variant-numeric: tabular-nums;
}
.nh-secondary,
.secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bac7d6;
  border-radius: 10px;
  background: #fff;
  color: var(--nh-ink);
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 750;
}
.nh-secondary:hover,
.secondary:hover { border-color: var(--nh-red); color: var(--nh-red); }

.nh-overline,
.eyebrow {
  margin: 0 0 8px;
  color: var(--nh-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nh-footer {
  margin-top: 80px;
  background: var(--nh-ink);
  color: #fff;
}
.nh-footer-main {
  width: min(1540px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  padding: 54px 0 42px;
}
.nh-footer-brand { display: grid; gap: 12px; max-width: 420px; }
.nh-footer-brand b { font-family: var(--nh-display); font-size: 31px; letter-spacing: .04em; }
.nh-footer-brand p { margin: 0; color: #bfc9d7; line-height: 1.6; }
.nh-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nh-footer-links div { display: grid; align-content: start; gap: 9px; }
.nh-footer-links b { margin-bottom: 3px; color: #fff; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.nh-footer-links a { color: #cdd5df; text-decoration: none; font-size: 13px; }
.nh-footer-links a:hover { color: #fff; text-decoration: underline; }
.nh-footer-bottom {
  width: min(1540px, calc(100% - 40px));
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #aeb9c8;
  font-size: 11px;
}

.nh-mobile-nav { display: none; }

@media (max-width: 1120px) {
  .nh-header { grid-template-columns: auto 1fr auto; }
  .nh-nav a:nth-of-type(n+3), .nh-nav .desktop-extra { display: none; }
  .nh-brand { min-width: 0; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .nh-service-bar { justify-content: space-between; padding-inline: 13px; font-size: 10px; }
  .nh-service-bar .service-location { display: none; }
  .nh-header { min-height: 60px; grid-template-columns: 1fr auto; padding: 7px 12px; }
  .nh-brand img { width: 64px; height: 40px; }
  .nh-brand-copy b { font-size: 19px; }
  .nh-brand-copy small, .nh-nav, .nh-header-actions .desktop-action { display: none; }
  .nh-cart-trigger { min-height: 42px; padding: 8px 10px; font-size: 12px; }
  .nh-cart-trigger span { display: none; }
  .nh-mobile-nav {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 6px 6px max(7px, env(safe-area-inset-bottom));
    border-top: 1px solid #d8dee7;
    background: rgba(255,255,255,.97);
    box-shadow: 0 -12px 30px rgba(11,31,58,.1);
    backdrop-filter: blur(16px);
  }
  .nh-mobile-nav a,
  .nh-mobile-nav button {
    position: relative;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 1px;
    border: 0;
    background: transparent;
    color: var(--nh-muted);
    text-decoration: none;
    font-size: 17px;
  }
  .nh-mobile-nav b { font-size: 9px; }
  .nh-mobile-nav .active { color: var(--nh-red); }
  .nh-mobile-nav i {
    position: absolute;
    top: 1px;
    right: 18%;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--nh-red);
    color: #fff;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
  }
  .nh-footer { margin-top: 50px; }
  .nh-footer-main { width: min(100% - 28px, 1540px); grid-template-columns: 1fr; gap: 32px; padding: 38px 0 30px; }
  .nh-footer-links { grid-template-columns: 1fr 1fr; gap: 25px; }
  .nh-footer-bottom { width: min(100% - 28px, 1540px); flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
