/* ============================================================
   HAVØYET NETTSIDE — page shell, layout, and motion
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--hv-ink);
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 15px;
  line-height: var(--hv-lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background: var(--hv-ink);
}

/* ---------- themes ---------- */
body.theme-dark {
  background: var(--hv-ink);
  color: var(--hv-fg-1);
}
body.theme-light {
  background: var(--hv-paper);
  color: var(--hv-stone-dk);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img { display: block; max-width: 100%; }

/* ---------- layout ---------- */
.nw-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .nw-wrap { padding: 0 20px; } }

/* ---------- top nav ---------- */
.nw-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8,10,9,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44,54,50,0.6);
  transition: background var(--hv-dur-base) var(--hv-ease);
}
body.theme-light .nw-nav {
  background: rgba(251,250,247,0.85);
  border-bottom: 1px solid var(--hv-paper-3);
}
.nw-nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.nw-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nw-nav-logo svg, .nw-nav-logo img { height: 32px; width: auto; }
.nw-footer-brand img { height: 56px; width: auto; }

.nw-nav ul {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nw-nav ul button {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--hv-fg-2);
  border-radius: 999px;
  transition: color var(--hv-dur-fast) var(--hv-ease), background var(--hv-dur-fast) var(--hv-ease);
}
body.theme-light .nw-nav ul button { color: var(--hv-stone-dk); }
.nw-nav ul button:hover { color: var(--hv-teal); }
.nw-nav ul button.active {
  color: var(--hv-teal);
  background: var(--hv-teal-wash);
}

.nw-nav-actions { display: flex; align-items: center; gap: 8px; }
.nw-nav-btn {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--hv-fg-2);
  transition: color var(--hv-dur-fast), background var(--hv-dur-fast);
}
.nw-nav-btn:hover { color: var(--hv-teal); background: var(--hv-teal-wash); }
body.theme-light .nw-nav-btn { color: var(--hv-stone-dk); }

.nw-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  color: var(--hv-fg-2);
  white-space: nowrap;
}
@media (max-width: 1100px) { .nw-status { display: none; } }
body.theme-light .nw-status { border-color: var(--hv-paper-3); color: var(--hv-stone); }
.nw-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hv-ok);
  box-shadow: 0 0 0 0 rgba(107,216,155,0.6);
  animation: nw-pulse 2.2s ease-in-out infinite;
}
@keyframes nw-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(107,216,155,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(107,216,155,0); }
}

.nw-cart-btn {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hv-line);
  color: var(--hv-fg-1);
  transition: all var(--hv-dur-fast) var(--hv-ease);
}
.nw-cart-btn:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
body.theme-light .nw-cart-btn { border-color: var(--hv-paper-3); color: var(--hv-stone-dk); }
.nw-cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: var(--hv-teal);
  color: var(--hv-ink);
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.nw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--hv-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform var(--hv-dur-fast) var(--hv-ease), background var(--hv-dur-fast) var(--hv-ease), box-shadow var(--hv-dur-fast) var(--hv-ease), border-color var(--hv-dur-fast) var(--hv-ease);
  white-space: nowrap;
}
.nw-btn-primary {
  background: var(--hv-teal);
  color: var(--hv-ink);
}
.nw-btn-primary:hover {
  background: var(--hv-teal-dk);
  transform: translateY(-1px);
  box-shadow: var(--hv-shadow-teal);
}
.nw-btn-primary:active { transform: translateY(0); background: #268B86; }
.nw-btn-ghost {
  background: transparent;
  color: var(--hv-fg-1);
  border: 1px solid var(--hv-line);
}
.nw-btn-ghost:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
body.theme-light .nw-btn-ghost { color: var(--hv-stone-dk); border-color: var(--hv-paper-3); }
.nw-btn-lg { padding: 18px 32px; font-size: 15px; }
.nw-btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- chips / eyebrows ---------- */
.nw-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--hv-ls-eyebrow);
  color: var(--hv-teal);
}
.nw-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}
.nw-eyebrow.plain::before { display: none; }

/* ---------- display heads ---------- */
.nw-display {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 136px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}
.nw-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--hv-teal);
}
.nw-h2 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
.nw-h2 em { font-style: italic; font-weight: 400; color: var(--hv-teal); }
.nw-h3 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.nw-lead {
  font-family: var(--hv-font-body);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--hv-fg-2);
  max-width: 58ch;
}
body.theme-light .nw-lead { color: var(--hv-stone); }

/* ---------- hero shared ---------- */
.nw-hero {
  position: relative;
  min-height: min(88vh, 900px);
  overflow: hidden;
}
.nw-hero-bg, .nw-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.nw-hero-bg {
  filter: saturate(1.05);
  animation: nw-kenburns 22s ease-in-out infinite alternate;
}
@keyframes nw-kenburns {
  0%   { transform: scale(1.0) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%,-3%); }
}
.nw-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,9,0.55) 0%, rgba(8,10,9,0.2) 30%, rgba(8,10,9,0.85) 100%);
  pointer-events: none;
}
.nw-hero-scrim.side {
  background: linear-gradient(100deg, rgba(8,10,9,0.92) 0%, rgba(8,10,9,0.65) 45%, rgba(8,10,9,0.15) 75%, rgba(8,10,9,0) 100%);
}
.nw-hero-scrim.none { display: none; }

.nw-hero-inner {
  position: relative; z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* wave divider */
.nw-wave-div {
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.nw-wave-div svg { width: 100%; height: 100%; display: block; }

/* marquee */
.nw-marquee {
  overflow: hidden;
  border-top: 1px solid var(--hv-line);
  border-bottom: 1px solid var(--hv-line);
  padding: 18px 0;
  background: var(--hv-ink-2);
}
body.theme-light .nw-marquee { border-color: var(--hv-paper-3); background: var(--hv-paper-2); }
.nw-marquee-track {
  display: flex; gap: 48px;
  animation: nw-marquee 38s linear infinite;
  width: max-content;
}
.nw-marquee-track span {
  font-family: var(--hv-font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--hv-fg-2);
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap;
}
.nw-marquee-track span::after {
  content: '~'; color: var(--hv-teal); font-style: italic; font-size: 1.4em; line-height: 0;
}
@keyframes nw-marquee { to { transform: translateX(-50%); } }

/* ---------- section ---------- */
.nw-section { padding: 96px 0; }
.nw-section.tight { padding: 64px 0; }
.nw-section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.nw-section-head > div:first-child { max-width: 680px; }
.nw-section-head .nw-h2 { margin-top: 12px; }

/* ---------- grid of products ---------- */
.nw-pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.nw-pcard {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-md);
  overflow: hidden;
  transition: transform var(--hv-dur-base) var(--hv-ease), border-color var(--hv-dur-base), box-shadow var(--hv-dur-base);
  display: flex; flex-direction: column;
  cursor: pointer;
}
body.theme-light .nw-pcard { background: #fff; border-color: var(--hv-paper-3); }
.nw-pcard:hover {
  transform: translateY(-2px);
  border-color: var(--hv-teal);
  box-shadow: var(--hv-shadow-md);
}
.nw-pcard-media {
  aspect-ratio: 5/4;
  background: var(--hv-ink);
  overflow: hidden;
  position: relative;
}
.nw-pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--hv-ease);
}
.nw-pcard:hover .nw-pcard-media img { transform: scale(1.05); }
.nw-pcard-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(8,10,9,0.7);
  backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--hv-teal);
  border: 1px solid rgba(65,193,186,0.4);
}
.nw-pcard-tag.nw-pcard-wild {
  background: var(--hv-teal);
  color: var(--hv-ink);
  border-color: var(--hv-teal);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ─── OceanBackground — dykke-effekt på hjemmeside ─────────────── */
/* Helt svart bakgrunn på forsiden — ingen blå gradient.
   Bruker høy spesifisitet for å overstyre tidligere regler. */
body.nw-has-ocean.theme-dark,
body.nw-has-ocean.theme-light,
body.nw-has-ocean {
  background: #000 !important;
  background-attachment: scroll !important;
}

/* Gjør alle seksjoner med egen bakgrunn gjennomsiktige på hjemmesiden,
   slik at havet vises bak innholdet */
body.nw-has-ocean .nw-hero,
body.nw-has-ocean .nw-hero.v2,
body.nw-has-ocean .nw-hero.v5,
body.nw-has-ocean main,
body.nw-has-ocean .nw-section { background: transparent !important; }
/* Alle seksjoner — også ink-2 — er transparente i ocean-mode så havet
   fader sømløst gjennom uten harde fargekanter mellom seksjonene */
body.nw-has-ocean .nw-section[style*="ink-2"] { background: transparent !important; }

/* Helt svart bakgrunn på hele forsiden via body — seksjoner gjøres transparente
   så bobler i bakgrunnen kan vises gjennom dem. */
body.nw-has-ocean { background: #000 !important; }
body.nw-has-ocean main,
body.nw-has-ocean .nw-hero,
body.nw-has-ocean .nw-hero.v1,
body.nw-has-ocean .nw-hero.v2,
body.nw-has-ocean .nw-hero.v3,
body.nw-has-ocean .nw-hero.v4,
body.nw-has-ocean .nw-hero.v5,
body.nw-has-ocean .nw-section,
body.nw-has-ocean .nw-section[style*="ink-2"] {
  background: transparent !important;
}

/* Skjul alle dekorative bakgrunnsteppe-lag på forsiden — ingen blå/teal gløder */
body.nw-has-ocean .nw-hero-bg,
body.nw-has-ocean .nw-hero-scrim,
body.nw-has-ocean .nw-hero-wash,
body.nw-has-ocean .nw-ocean-grad,
body.nw-has-ocean .nw-ocean-caustics { display: none !important; }

/* OceanBg: tom container — kun bobler i barnet .nw-ocean-particles */
.nw-ocean-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* OceanBg ligger på z=-1, så vi trenger ingen kompensasjon på #root, main, nav eller footer.
   Innholdet stacker naturlig OVER havet via vanlig dokumentflyt. */
body.nw-has-ocean .nw-footer { background: var(--hv-ink) !important; }
/* Boost sekundær- og tertiærtekst på det mørke ocean-bakteppet så alt blir tydelig */
body.nw-has-ocean {
  --hv-fg-2: #E8EDEC;   /* var #D7DDDB */
  --hv-fg-3: #B5BFBC;   /* var #8C9794 */
  --hv-fg-4: #7E8987;   /* var #5A6764 */
}

/* Caustic-lys av — bakgrunnen er nå helt svart */
.nw-ocean-caustics { display: none; }
@keyframes nw-caustic-shift {
  0%, 100% { transform: translate(0, 0)    scale(1); }
  33%      { transform: translate(3%, 1%)  scale(1.04); }
  66%      { transform: translate(-2%, 2%) scale(1.02); }
}

/* Marine snow: stigende partikler, holdes fixed mot viewport så de alltid er synlige */
.nw-ocean-particles {
  position: fixed;
  inset: 0;
  z-index: 0;             /* over body-bg, men under innhold (main har z=auto) */
  pointer-events: none;
  overflow: hidden;
}
.nw-bubble {
  position: absolute;
  bottom: -4vh;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.25) 100%);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.35);
  animation: nw-rise linear infinite;
  opacity: 0;
  filter: blur(0.3px);
  will-change: transform, opacity;
}
/* Små hvite dråper som flyter oppover — alltid så vidt synlige (~0.22) */
@keyframes nw-rise {
  0%   { transform: translate(0, 0);          opacity: 0; }
  8%   { opacity: 0.22; }
  92%  { opacity: 0.22; }
  100% { transform: translate(-3px, -112vh);  opacity: 0; }
}

/* Redusert bevegelse: stopp partikler, behold gradient */
@media (prefers-reduced-motion: reduce) {
  .nw-bubble { animation: none; display: none; }
  .nw-ocean-caustics { animation: none; }
}

/* ─── Min side dashbord — responsivt sidebar ─────────────────── */
@media (max-width: 900px) {
  .nw-wrap > div[style*="grid-template-columns: 240px"] {
    grid-template-columns: 1fr !important;
  }
  .nw-wrap aside[style*="position: sticky"] {
    position: static !important;
  }
}

/* ─── Review-form fokus-states ─────────────────────────────────── */
.nw-review-form input:focus,
.nw-review-form textarea:focus {
  border-color: var(--hv-teal);
  background: rgba(65, 193, 186, 0.04);
  box-shadow: 0 0 0 3px rgba(65, 193, 186, 0.1);
}
.nw-review-form input::placeholder,
.nw-review-form textarea::placeholder {
  color: var(--hv-fg-3);
  opacity: 0.75;
}

/* ─── Ken-burns zoom på preview-kort (home-siden) ─────────────── */
[data-pcard] img {
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-pcard]:hover img {
  transform: scale(1.06);
}

/* Magnetisk spring-hover på primær-knapper */
.nw-btn-primary, .nw-btn-lg {
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms var(--hv-ease);
}
.nw-btn-primary:hover, .nw-btn-lg:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -12px rgba(65, 193, 186, 0.55);
}

/* ─── Hero stack — rolig "flyt på vann"-bevegelse ────────────────
   Bruker individual transform properties (translate/rotate) som
   komponeres med anime.js' `transform`-skriving på samme element.
   Dette gir en kontinuerlig, organisk driving samtidig som swap-
   timelinen kjører sitt eget løp. */
@keyframes nw-float-front {
  0%   { translate: 0 0;        rotate: 0deg; }
  20%  { translate: 4px -7px;   rotate: 0.35deg; }
  40%  { translate: -3px 6px;   rotate: -0.45deg; }
  60%  { translate: 5px 3px;    rotate: 0.25deg; }
  80%  { translate: -4px -4px;  rotate: -0.3deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
@keyframes nw-float-middle {
  0%   { translate: 0 0;        rotate: 0deg; }
  25%  { translate: -5px 4px;   rotate: -0.4deg; }
  50%  { translate: 4px -6px;   rotate: 0.5deg; }
  75%  { translate: -3px -3px;  rotate: -0.25deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
@keyframes nw-float-back {
  0%   { translate: 0 0;        rotate: 0deg; }
  30%  { translate: 3px 6px;    rotate: 0.3deg; }
  55%  { translate: -5px -4px;  rotate: 0.4deg; }
  80%  { translate: 4px -5px;   rotate: -0.35deg; }
  100% { translate: 0 0;        rotate: 0deg; }
}
.nw-hero-stack-card.c1 { animation: nw-float-front  9s ease-in-out infinite; }
.nw-hero-stack-card.c2 { animation: nw-float-middle 11s ease-in-out -2s infinite; }
.nw-hero-stack-card.c3 { animation: nw-float-back   13s ease-in-out -4s infinite; }

/* Brukere som foretrekker redusert bevegelse skal ikke se flyten */
@media (prefers-reduced-motion: reduce) {
  .nw-hero-stack-card.c1,
  .nw-hero-stack-card.c2,
  .nw-hero-stack-card.c3 { animation: none; }
}
.nw-pcard-body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.nw-pcard-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  font-weight: 500;
}
body.theme-light .nw-pcard-cat { color: var(--hv-stone); }
.nw-pcard-name {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.nw-pcard-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.nw-price {
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.nw-price-unit { font-size: 12px; color: var(--hv-fg-3); font-weight: 400; font-family: var(--hv-font-body); }
body.theme-light .nw-price-unit { color: var(--hv-stone); }

/* ---------- "fra båt til dør" timeline ---------- */
.nw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.nw-timeline::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hv-line) 10%, var(--hv-line) 90%, transparent);
}
body.theme-light .nw-timeline::before {
  background: linear-gradient(90deg, transparent, var(--hv-paper-3) 10%, var(--hv-paper-3) 90%, transparent);
}
.nw-tl-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.nw-tl-num {
  font-family: var(--hv-font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--hv-teal);
  margin-bottom: 12px;
}
.nw-tl-dot {
  position: relative;
  z-index: 1;
  width: 48px; height: 48px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--hv-ink);
  border: 1px solid var(--hv-teal);
  display: grid; place-items: center;
  color: var(--hv-teal);
}
body.theme-light .nw-tl-dot { background: var(--hv-paper); }
.nw-tl-step h4 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.nw-tl-step p {
  font-size: 14px;
  color: var(--hv-fg-3);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}
body.theme-light .nw-tl-step p { color: var(--hv-stone); }
@media (max-width: 720px) {
  .nw-timeline { grid-template-columns: 1fr; gap: 24px; }
  .nw-timeline::before { display: none; }
  .nw-tl-dot { margin-bottom: 14px; }
}

/* ---------- sesongkalender ---------- */
.nw-cal {
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
}
body.theme-light .nw-cal { background: #fff; border-color: var(--hv-paper-3); }
.nw-cal-head {
  display: grid; grid-template-columns: 180px repeat(12, 1fr);
  background: var(--hv-ink-3);
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-cal-head { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }
.nw-cal-head > div {
  padding: 14px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  text-align: center;
  border-right: 1px solid var(--hv-line);
}
body.theme-light .nw-cal-head > div { color: var(--hv-stone); border-color: var(--hv-paper-3); }
.nw-cal-head > div:first-child { text-align: left; padding-left: 20px; }
.nw-cal-head > div:last-child { border-right: none; }
.nw-cal-head > div.current {
  color: var(--hv-teal);
  background: var(--hv-teal-wash);
}

.nw-cal-row {
  display: grid; grid-template-columns: 180px repeat(12, 1fr);
  border-bottom: 1px solid var(--hv-line);
  align-items: center;
}
body.theme-light .nw-cal-row { border-color: var(--hv-paper-3); }
.nw-cal-row:last-child { border-bottom: none; }
.nw-cal-row:hover { background: rgba(65,193,186,0.04); }
.nw-cal-label {
  padding: 14px 20px;
  font-family: var(--hv-font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 10px;
}
.nw-cal-cell {
  height: 36px;
  position: relative;
  border-right: 1px solid rgba(44,54,50,0.4);
}
body.theme-light .nw-cal-cell { border-color: rgba(230,225,214,0.6); }
.nw-cal-cell:last-child { border-right: none; }
.nw-cal-bar {
  position: absolute;
  left: 4px; right: 4px;
  top: 50%; transform: translateY(-50%);
  height: 10px;
  border-radius: 999px;
  background: var(--hv-teal-wash);
}
.nw-cal-bar.peak {
  background: var(--hv-teal);
  box-shadow: 0 0 12px rgba(65,193,186,0.4);
}
.nw-cal-bar.mid { background: rgba(65,193,186,0.35); }
.nw-cal-bar.span-from-left { border-top-left-radius: 0; border-bottom-left-radius: 0; left: 0; }
.nw-cal-bar.span-to-right { border-top-right-radius: 0; border-bottom-right-radius: 0; right: 0; }

@media (max-width: 900px) {
  .nw-cal-head, .nw-cal-row { grid-template-columns: 120px repeat(12, 1fr); }
  .nw-cal-label { padding: 12px; font-size: 13px; }
}

/* ---------- editorial split ---------- */
.nw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nw-split.reverse { direction: rtl; }
.nw-split.reverse > * { direction: ltr; }
.nw-split-img {
  aspect-ratio: 4/5;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  position: relative;
}
.nw-split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .nw-split { grid-template-columns: 1fr; gap: 32px; }
  .nw-split.reverse { direction: ltr; }
}

/* ---------- quote block ---------- */
.nw-quote {
  padding: 64px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.nw-quote-text {
  font-family: var(--hv-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.nw-quote-text .mark { font-style: normal; color: var(--hv-teal); }
.nw-quote-attr {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
}

/* ---------- footer ---------- */
.nw-footer {
  background: var(--hv-ink);
  border-top: 1px solid var(--hv-line);
  padding: 80px 0 40px;
  color: var(--hv-fg-2);
}
body.theme-light .nw-footer { background: #EFEBE1; color: var(--hv-stone-dk); border-color: var(--hv-paper-3); }
.nw-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-footer-top { border-color: var(--hv-paper-3); }
.nw-footer h5 {
  font-family: var(--hv-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  margin: 0 0 16px;
}
body.theme-light .nw-footer h5 { color: var(--hv-stone); }
.nw-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.nw-footer ul button { font-size: 14px; transition: color var(--hv-dur-fast); }
.nw-footer ul button:hover { color: var(--hv-teal); }
.nw-footer-brand {
  display: flex; flex-direction: column; gap: 20px;
}
.nw-footer-brand .mark { width: 60px; height: 60px; }
.nw-footer-brand p { max-width: 42ch; color: var(--hv-fg-3); font-size: 14px; line-height: 1.6; margin: 0; }
body.theme-light .nw-footer-brand p { color: var(--hv-stone); }
.nw-footer-bot {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px;
  font-size: 12px; color: var(--hv-fg-3);
}
body.theme-light .nw-footer-bot { color: var(--hv-stone); }

@media (max-width: 820px) {
  .nw-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .nw-footer-top { grid-template-columns: 1fr; }
}

/* ---------- cart drawer ---------- */
.nw-drawer-bg {
  position: fixed; inset: 0;
  background: rgba(8,10,9,0.6);
  backdrop-filter: blur(8px);
  z-index: 60;
  opacity: 0; pointer-events: none;
  transition: opacity var(--hv-dur-base) var(--hv-ease);
}
.nw-drawer-bg.open { opacity: 1; pointer-events: all; }
.nw-drawer {
  position: fixed; top: 0; right: 0;
  height: 100vh;
  width: min(480px, 100vw);
  background: var(--hv-ink-2);
  border-left: 1px solid var(--hv-line);
  z-index: 70;
  transform: translateX(100%);
  transition: transform var(--hv-dur-slow) var(--hv-ease-out);
  display: flex; flex-direction: column;
}
body.theme-light .nw-drawer { background: #fff; border-color: var(--hv-paper-3); }
.nw-drawer.open { transform: translateX(0); }
.nw-drawer-head {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-drawer-head { border-color: var(--hv-paper-3); }
.nw-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.nw-drawer-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--hv-line);
  background: var(--hv-ink);
}
body.theme-light .nw-drawer-foot { border-color: var(--hv-paper-3); background: var(--hv-paper); }
.nw-cart-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-cart-row { border-color: var(--hv-paper-3); }
.nw-cart-row:last-child { border-bottom: none; }
.nw-cart-thumb {
  width: 64px; height: 80px;
  border-radius: var(--hv-r-sm);
  overflow: hidden;
  background: var(--hv-ink);
}
.nw-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nw-cart-qty {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  padding: 2px;
  margin-top: 6px;
}
body.theme-light .nw-cart-qty { border-color: var(--hv-paper-3); }
.nw-cart-qty button {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--hv-fg-2);
}
.nw-cart-qty button:hover { color: var(--hv-teal); }
.nw-cart-qty span { font-variant-numeric: tabular-nums; font-size: 13px; font-weight: 500; min-width: 20px; text-align: center; }

/* ---------- tweaks panel ---------- */
.nw-tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 300px;
  background: var(--hv-ink-3);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  padding: 18px 20px;
  z-index: 90;
  box-shadow: var(--hv-shadow-lg);
  backdrop-filter: blur(10px);
  animation: nw-tweaks-in 320ms var(--hv-ease-out);
  color: var(--hv-fg-1);
}
@keyframes nw-tweaks-in { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none;} }
.nw-tweaks h6 {
  font-family: var(--hv-font-display);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.nw-tweaks .tw-group { margin-bottom: 14px; }
.nw-tweaks .tw-group:last-child { margin-bottom: 0; }
.nw-tweaks label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hv-fg-3);
  display: block; margin-bottom: 6px;
}
.nw-tw-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.nw-tw-chip {
  flex: 1;
  font-size: 12px; font-weight: 500;
  padding: 8px 8px;
  border: 1px solid var(--hv-line);
  border-radius: 6px;
  color: var(--hv-fg-2);
  background: transparent;
  transition: all var(--hv-dur-fast);
  min-width: 30px;
}
.nw-tw-chip:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
.nw-tw-chip.active {
  background: var(--hv-teal);
  color: var(--hv-ink);
  border-color: var(--hv-teal);
}
.nw-tw-input {
  width: 100%;
  background: var(--hv-ink);
  border: 1px solid var(--hv-line);
  border-radius: 6px;
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 13px;
  padding: 8px 10px;
}
.nw-tw-input:focus { outline: none; border-color: var(--hv-teal); }

/* ---------- reveal animations ---------- */
.nw-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 800ms var(--hv-ease-out), transform 800ms var(--hv-ease-out);
}
.nw-reveal.in { opacity: 1; transform: none; }

/* ---------- subscription calculator ---------- */
.nw-kalk {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
body.theme-light .nw-kalk { background: #fff; border-color: var(--hv-paper-3); }
.nw-kalk-control {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-kalk-control { border-color: var(--hv-paper-3); }
.nw-kalk-control:last-child { border-bottom: none; }
.nw-kalk-chipset { display: flex; gap: 8px; flex-wrap: wrap; }
.nw-kalk-chip {
  padding: 10px 16px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--hv-fg-2);
  transition: all var(--hv-dur-fast);
}
.nw-kalk-chip:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
.nw-kalk-chip.active {
  background: var(--hv-teal); color: var(--hv-ink); border-color: var(--hv-teal);
}
.nw-kalk-summary {
  background: var(--hv-ink);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  padding: 32px;
  position: sticky; top: 100px;
  align-self: start;
}
body.theme-light .nw-kalk-summary { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }
.nw-kalk-line {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
}
.nw-kalk-line .lbl { color: var(--hv-fg-3); }
body.theme-light .nw-kalk-line .lbl { color: var(--hv-stone); }
.nw-kalk-total {
  font-family: var(--hv-font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) { .nw-kalk { grid-template-columns: 1fr; padding: 28px; } }

/* ---------- misc ---------- */
.nw-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nw-badge-fresh { background: var(--hv-teal-wash); color: var(--hv-teal); border: 1px solid rgba(65,193,186,0.35); }
.nw-badge-new { background: rgba(127,179,232,0.1); color: var(--hv-info); border: 1px solid rgba(127,179,232,0.35); }
.nw-badge-limit { background: rgba(245,184,74,0.08); color: var(--hv-warn); border: 1px solid rgba(245,184,74,0.3); }

.nw-dash { color: var(--hv-teal); font-style: italic; }

.nw-recipe-card {
  display: block;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  transition: all var(--hv-dur-base) var(--hv-ease);
  cursor: pointer;
}
body.theme-light .nw-recipe-card { background: #fff; border-color: var(--hv-paper-3); }
.nw-recipe-card:hover { transform: translateY(-3px); border-color: var(--hv-teal); box-shadow: var(--hv-shadow-md); }
.nw-recipe-card-media { aspect-ratio: 5/4; overflow: hidden; }
.nw-recipe-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--hv-ease); }
.nw-recipe-card:hover .nw-recipe-card-media img { transform: scale(1.04); }
.nw-recipe-card-body { padding: 24px; }
.nw-recipe-card-body h4 {
  font-family: var(--hv-font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 10px 0 6px;
  letter-spacing: -0.01em;
}
.nw-recipe-card-body .meta {
  display: flex; gap: 14px;
  font-size: 12px;
  color: var(--hv-fg-3);
  margin-top: 12px;
}
body.theme-light .nw-recipe-card-body .meta { color: var(--hv-stone); }

/* ---------- FAQ ---------- */
.nw-faq-item {
  border-bottom: 1px solid var(--hv-line);
  padding: 24px 0;
}
body.theme-light .nw-faq-item { border-color: var(--hv-paper-3); }
.nw-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--hv-font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  width: 100%; text-align: left;
  padding: 0;
}
.nw-faq-q .chev { transition: transform var(--hv-dur-base); color: var(--hv-teal); }
.nw-faq-item.open .nw-faq-q .chev { transform: rotate(45deg); }
.nw-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--hv-dur-slow) var(--hv-ease), margin var(--hv-dur-base);
  font-size: 16px; line-height: 1.65;
  color: var(--hv-fg-2);
}
.nw-faq-item.open .nw-faq-a {
  max-height: 500px;
  margin-top: 16px;
}
body.theme-light .nw-faq-a { color: var(--hv-stone); }

/* ---------- PDP ---------- */
.nw-pdp {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.nw-pdp-gallery { position: sticky; top: 100px; align-self: start; }
.nw-pdp-main {
  aspect-ratio: 5/4;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  background: var(--hv-ink-2);
  margin-bottom: 12px;
}
.nw-pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.nw-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.nw-pdp-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--hv-r-sm);
  overflow: hidden;
  border: 1px solid var(--hv-line);
  background: var(--hv-ink-2);
  transition: border var(--hv-dur-fast);
  cursor: pointer;
}
.nw-pdp-thumb.active { border-color: var(--hv-teal); }
.nw-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .nw-pdp { grid-template-columns: 1fr; } .nw-pdp-gallery { position: static; } }

.nw-pdp-meta { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.nw-pdp-name {
  font-family: var(--hv-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 14px;
}
.nw-pdp-price {
  font-family: var(--hv-font-display);
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.nw-pdp-price .unit { font-size: 14px; font-weight: 400; color: var(--hv-fg-3); font-family: var(--hv-font-body); margin-left: 6px; }
.nw-pdp-desc {
  font-size: 16px; line-height: 1.65;
  color: var(--hv-fg-2);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hv-line);
}
body.theme-light .nw-pdp-desc { color: var(--hv-stone); border-color: var(--hv-paper-3); }
.nw-pdp-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hv-line);
  margin-bottom: 28px;
}
body.theme-light .nw-pdp-facts { border-color: var(--hv-paper-3); }
.nw-pdp-fact {
  display: flex; flex-direction: column; gap: 3px;
}
.nw-pdp-fact .k {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
}
body.theme-light .nw-pdp-fact .k { color: var(--hv-stone); }
.nw-pdp-fact .v { font-size: 15px; font-weight: 500; font-variant-numeric: tabular-nums; }

.nw-pdp-add {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 20px;
}
.nw-qty {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--hv-line);
  border-radius: 999px;
  padding: 4px;
}
body.theme-light .nw-qty { border-color: var(--hv-paper-3); }
.nw-qty button {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--hv-fg-2);
  transition: all var(--hv-dur-fast);
}
.nw-qty button:hover { color: var(--hv-teal); background: var(--hv-teal-wash); }
.nw-qty span { min-width: 40px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

/* utility */
.nw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.nw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 820px) { .nw-grid-2, .nw-grid-3 { grid-template-columns: 1fr; } }

.nw-hr {
  height: 1px; background: var(--hv-line);
  border: none; margin: 0;
}
body.theme-light .nw-hr { background: var(--hv-paper-3); }

.nw-cb {
  position: relative; width: 100%;
  background: var(--hv-ink-2);
  border-radius: var(--hv-r-xl);
  padding: 64px;
  overflow: hidden;
  border: 1px solid var(--hv-line);
}
body.theme-light .nw-cb { background: #fff; border-color: var(--hv-paper-3); }

/* number in a circle */
.nw-num {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hv-teal-wash);
  color: var(--hv-teal);
  font-family: var(--hv-font-display);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* subtle teal radial behind hero headline */
.nw-hero-wash {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle at 25% 70%, rgba(65,193,186,0.15), transparent 50%);
}

/* ---------- hero variant 2: typographic ---------- */
.nw-hero.v2 { background: var(--hv-ink); min-height: auto; padding: 180px 0 80px; overflow: visible; }
body.theme-light .nw-hero.v2 { background: var(--hv-paper); }
.nw-hero-typo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.nw-hero-typo-img {
  aspect-ratio: 3/4;
  border-radius: var(--hv-r-lg);
  overflow: hidden;
  position: relative;
}
.nw-hero-typo-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .nw-hero-typo { grid-template-columns: 1fr; } .nw-hero.v2 { padding-top: 64px; } }

/* ---------- hero variant 5: card stack ---------- */
.nw-hero-stack-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding: 80px 0;
  align-items: center;
}
.nw-hero-stack-cards {
  position: relative;
  height: 560px;
}
.nw-hero-stack-card {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: var(--hv-r-xl);
  overflow: hidden;
  box-shadow: var(--hv-shadow-lg);
  border: 1px solid var(--hv-line);
  background: var(--hv-ink-2);
}
.nw-hero-stack-card img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-stack-card.c1 { transform: rotate(-6deg) translate(-32px, 20px); }
.nw-hero-stack-card.c2 { transform: rotate(3deg) translate(24px, -8px); }
.nw-hero-stack-card.c3 { transform: rotate(-2deg); }
.nw-hero-stack-card-pill {
  position: absolute; bottom: 20px; left: 20px;
  padding: 10px 16px;
  background: rgba(8,10,9,0.75);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex; gap: 8px; align-items: center;
}
.nw-hero-stack-card-pill .p { font-variant-numeric: tabular-nums; color: var(--hv-teal); font-weight: 700; }
@media (max-width: 820px) { .nw-hero-stack-grid { grid-template-columns: 1fr; } .nw-hero-stack-cards { height: 420px; margin: 0 auto; max-width: 360px; } }

/* ---------- hero variant 4: split manifest ---------- */
.nw-hero.v4 { min-height: min(88vh, 820px); }
.nw-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: inherit;
  gap: 0;
}
.nw-hero-split-img { position: relative; overflow: hidden; }
.nw-hero-split-img img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-split-text {
  padding: 120px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  background: var(--hv-ink);
}
body.theme-light .nw-hero-split-text { background: var(--hv-paper); }
@media (max-width: 820px) {
  .nw-hero-split-grid { grid-template-columns: 1fr; }
  .nw-hero-split-img { min-height: 380px; }
  .nw-hero-split-text { padding: 48px 24px; }
}

/* ---------- hero variant 3: ukens fisk ---------- */
.nw-hero.v3 { min-height: min(88vh, 880px); }
.nw-hero-uf {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  padding: 80px 0;
  align-items: center;
}
.nw-hero-uf-card {
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-xl);
  overflow: hidden;
}
body.theme-light .nw-hero-uf-card { background: #fff; border-color: var(--hv-paper-3); }
.nw-hero-uf-media { aspect-ratio: 1/1; overflow: hidden; background: var(--hv-ink); position: relative; }
.nw-hero-uf-media img { width: 100%; height: 100%; object-fit: cover; }
.nw-hero-uf-body { padding: 32px; }
.nw-hero-uf-price-block {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 20px 0;
}
.nw-hero-uf-price {
  font-family: var(--hv-font-display);
  font-size: 48px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
@media (max-width: 820px) { .nw-hero-uf { grid-template-columns: 1fr; padding: 48px 0; } }

/* ---------- forms ---------- */
.nw-input, .nw-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-sm);
  color: var(--hv-fg-1);
  font-family: var(--hv-font-body);
  font-size: 15px;
  transition: border-color var(--hv-dur-fast);
}
body.theme-light .nw-input, body.theme-light .nw-textarea { background: #fff; border-color: var(--hv-paper-3); color: var(--hv-stone-dk); }
.nw-input:focus, .nw-textarea:focus { outline: none; border-color: var(--hv-teal); box-shadow: 0 0 0 3px var(--hv-teal-wash); }
.nw-input::placeholder, .nw-textarea::placeholder { color: var(--hv-fg-3); }
.nw-textarea { resize: vertical; min-height: 120px; }

.nw-form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.nw-form-group label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hv-fg-3);
  font-weight: 600;
}
body.theme-light .nw-form-group label { color: var(--hv-stone); }

/* Bergen map */
.nw-map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--hv-ink-2);
  border: 1px solid var(--hv-line);
  border-radius: var(--hv-r-lg);
  overflow: hidden;
}
body.theme-light .nw-map { background: var(--hv-paper-2); border-color: var(--hv-paper-3); }

/* scroll reveal fallback when no IO */
@media (prefers-reduced-motion: reduce) {
  .nw-reveal { opacity: 1; transform: none; }
  .nw-hero-bg { animation: none; }
  .nw-marquee-track { animation: none; }
}

/* ─────────────────────────────────────────────────────────────────
   MOBIL — kompakte fix for navigasjon, hero, kasse og kort.
   ───────────────────────────────────────────────────────────────── */
.nw-nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--hv-line);
  color: var(--hv-fg-2);
  border-radius: 999px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nw-nav-burger:hover { color: var(--hv-teal); border-color: var(--hv-teal); }

@media (max-width: 820px) {
  /* Skjul den vanlige nav-listen, vis burger */
  .nw-nav-links { display: none; }
  .nw-nav-burger { display: inline-flex; }
  .nw-nav-actions { gap: 4px; }
  .nw-nav-inner { gap: 12px; height: 60px; }
  /* Skjul konto-ikon og status på små skjermer (kommer i meny) */
  .nw-nav-actions .nw-status { display: none; }

  /* Mobil-meny som glir ned fra nav */
  .nw-nav-links.open {
    display: block;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(8,10,9,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hv-line);
    padding: 14px 16px 18px;
    z-index: 39;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    animation: nw-mobnav-in 200ms cubic-bezier(0.16,1,0.3,1);
  }
  .nw-nav-links.open ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .nw-nav-links.open ul li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .nw-nav-links.open ul li button.active { background: var(--hv-teal-wash); }
}
@keyframes nw-mobnav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Generelle mobil-justeringer */
@media (max-width: 720px) {
  /* Mindre vertikal luft mellom seksjoner */
  .nw-section { padding: 56px 0; }
  .nw-section.tight { padding: 40px 0; }

  /* Display-tekst skaleres ned */
  .nw-display { font-size: clamp(36px, 10vw, 56px) !important; line-height: 1.05; }
  .nw-h2 { font-size: clamp(26px, 6vw, 40px); }
  .nw-h3 { font-size: clamp(20px, 5vw, 28px); }
  .nw-lead { font-size: 15px; }

  /* Knapper litt større tap-target */
  .nw-btn { min-height: 44px; padding: 10px 18px; }
  .nw-btn-sm { min-height: 36px; }

  /* Cart drawer fyller hele skjermen */
  .nw-drawer { width: 100% !important; }

  /* Produkter: alltid 2 kolonner istedenfor 4 */
  .nw-pgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .nw-pcard-name { font-size: 14px; }
  .nw-pcard-cat { font-size: 11px; }

  /* Skjul ekstra padding på Wrap */
  .nw-wrap { padding: 0 16px; }

  /* Kasse: stack form og sammendrag vertikalt */
  .nw-checkout-grid,
  .nw-checkout-grid > * { grid-template-columns: 1fr !important; }
  /* Generic 2-col grid stacker */
  div[style*="grid-template-columns: 1fr 380px"],
  div[style*="grid-template-columns: 1fr 420px"] {
    grid-template-columns: 1fr !important;
  }
  /* Sticky sammendrag oppfører seg ikke sticky på mobil */
  aside[style*="position: sticky"] { position: static !important; top: auto !important; }
}

/* Veldig små skjermer (iPhone SE etc.) */
@media (max-width: 380px) {
  .nw-pgrid { grid-template-columns: 1fr !important; }
  .nw-nav-actions .nw-nav-btn { padding: 6px 8px; }
}

/* ─────────────────────────────────────────────────────────────────
   MOBIL-LAYOUT — egne komponenter, kun synlige på små skjermer.
   ───────────────────────────────────────────────────────────────── */
.hv-mob-eyebrow {
  display: inline-block;
  font-family: var(--hv-font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hv-teal);
  margin-bottom: 10px;
}
.hv-mob-h1 {
  font-family: var(--hv-font-display);
  font-size: clamp(40px, 11vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  font-weight: 700; margin: 0 0 14px;
  color: var(--hv-fg-1);
}
.hv-mob-h1 em { color: var(--hv-teal); font-style: italic; font-weight: 600; }
.hv-mob-h2 {
  font-family: var(--hv-font-display);
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; margin: 4px 0 0;
  color: var(--hv-fg-1);
}
.hv-mob-h2 em { color: var(--hv-teal); font-style: italic; font-weight: 600; }
.hv-mob-lead {
  font-size: 15px; line-height: 1.55;
  color: var(--hv-fg-2); margin: 0;
}

/* Hero */
.hv-mob-hero { position: relative; }
.hv-mob-hero-img {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3; overflow: hidden;
}
.hv-mob-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-mob-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hv-mob-hero-text {
  padding: 24px 20px 32px;
  margin-top: -80px;
  position: relative;
}
.hv-mob-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
}
.hv-mob-cta-row .nw-btn { flex: 1 1 140px; min-height: 48px; }

/* Hurtig-kategorier */
.hv-mob-cats { padding: 0 16px 8px; }
.hv-mob-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.hv-mob-cat-card {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden;
  background: var(--hv-ink-2); border: 1px solid var(--hv-line);
  cursor: pointer; padding: 0;
}
.hv-mob-cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
  transition: filter 200ms;
}
.hv-mob-cat-card:active img { filter: brightness(0.4); }
.hv-mob-cat-card span {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  font-family: var(--hv-font-display);
  font-weight: 700; font-size: 16px;
  color: #fff; text-align: left;
}

/* Generell mobil-seksjon */
.hv-mob-section {
  padding: 32px 20px;
}
.hv-mob-section-head { margin-bottom: 18px; }

/* Sesong-chips */
.hv-mob-chip-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hv-mob-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: var(--hv-teal-wash); color: var(--hv-teal);
  border: 1px solid rgba(65,193,186,0.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
}

/* Produktgrid */
.hv-mob-pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hv-mob-pcard {
  background: var(--hv-ink-2); border: 1px solid var(--hv-line);
  border-radius: 12px; overflow: hidden;
  padding: 0; text-align: left;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 150ms, border-color 150ms;
}
.hv-mob-pcard:active { transform: scale(0.98); border-color: var(--hv-teal); }
.hv-mob-pcard-img { aspect-ratio: 4 / 5; overflow: hidden; }
.hv-mob-pcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-mob-pcard-body { padding: 10px 12px 12px; }
.hv-mob-pcard-cat {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--hv-fg-3);
  margin-bottom: 4px;
}
.hv-mob-pcard-name {
  font-family: var(--hv-font-display);
  font-weight: 600; font-size: 14px;
  line-height: 1.25; color: var(--hv-fg-1);
  margin-bottom: 6px;
}
.hv-mob-pcard-price {
  font-family: var(--hv-font-display);
  font-weight: 700; font-size: 15px;
  color: var(--hv-teal);
  font-variant-numeric: tabular-nums;
}
.hv-mob-pcard-price .u { color: var(--hv-fg-3); font-weight: 400; font-size: 11px; margin-left: 3px; }

/* Sjømatkasse-pitch */
.hv-mob-pitch {
  background: var(--hv-teal-wash);
  border-top: 1px solid var(--hv-line);
  border-bottom: 1px solid var(--hv-line);
  text-align: left;
}

/* Om Havøyet */
.hv-mob-about-img {
  width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 16px; margin-bottom: 18px;
  border: 1px solid var(--hv-line);
}
.hv-mob-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

