/* =============================================================================
   Vesterålsegg – Østheim gård
   Stilark for landingssiden. Design-tokens ligger i :root under.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Selvhostede fonter (Baloo 2 + Mulish, variable, lastet ned fra Google Fonts).
   Ingen tredjeparts font-CDN → GDPR-vennlig og dekket av CSP style/font-src 'self'.
   ----------------------------------------------------------------------------- */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/baloo2-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/baloo2-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/mulish-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/mulish-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --accent:        #F5A623;  /* eggeplomme-gul – primær CTA/aksent */
  --accent-strong: #E07B0E;  /* mørkere oransje – hover, lenker, tall */
  --ink:           #2B211B;  /* nesten-svart brun – tekst */
  --muted:         #6E625A;  /* dempet brun – sekundærtekst */
  --cream:         #FBF6EE;  /* lys bakgrunn */
  --sand:          #F6E9CF;  /* varm sand – gårdsutsalg */
  --line:          #EADFCD;  /* kantlinjer */
  --brett:         #C6551F;  /* rustrød – brett-markør/tag */
  --gard:          #5C8A3A;  /* grønn – gårdsutsalg-markør/tag */

  --maxw: 1180px;
  --pad-x: clamp(18px, 4vw, 36px);
  --sec-y: clamp(52px, 8vw, 100px);
}

/* ------------------------------ Reset / base ----------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Mulish', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ------------------------------ Layout ----------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--sand  { background: var(--sand); }
.section--topline { border-top: 1px solid var(--line); }
[id] { scroll-margin-top: 78px; }

/* ------------------------------ Typografi -------------------------------- */
.h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 16px 0 0;
  color: var(--ink);
}
.h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin: 18px 0 0;
}
.lead + .lead { margin-top: 16px; }
.lead--ink { color: var(--ink); opacity: .82; }
.lead strong { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: #FCEFD6;
  padding: 7px 13px;
  border-radius: 999px;
}
.eyebrow--on-sand { background: #fff; }

.accent-strong { color: var(--accent-strong); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-intro { max-width: 720px; }

/* ------------------------------ Farge-prikker ---------------------------- */
.dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.dot--accent { background: var(--accent); }
.dot--brett  { background: var(--brett); }
.dot--gard   { background: var(--gard); }

/* ------------------------------ Knapper ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn--sm { font-size: 14.5px; padding: 10px 17px; }
.btn--primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn--shadow { box-shadow: 0 8px 20px rgba(245,166,35,.28); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--cream); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); font-size: 15.5px; padding: 13px 22px; margin-top: 14px; }
.btn--dark:hover { background: #41332a; border-color: #41332a; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--accent-strong);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* ------------------------------ Bilder ----------------------------------- */
.framed-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  border: 6px solid #fff;
  box-shadow: 0 20px 44px rgba(43,33,27,.14);
}
.framed-img--strong { box-shadow: 0 20px 44px rgba(43,33,27,.16); }

/* ============================== HEADER =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,246,238,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__logo { height: 50px; width: auto; mix-blend-mode: multiply; }
.brand__text { line-height: 1; }
.brand__name {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.brand__tag {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav { display: none; align-items: center; gap: 24px; }
.nav__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: color .15s ease;
}
.nav__link:hover { color: var(--accent-strong); }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.hamburger span { width: 20px; height: 2.5px; border-radius: 2px; background: var(--ink); display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 8px var(--pad-x) 16px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__link:last-child { border-bottom: 0; }

/* ============================== HERO ===================================== */
.hero-section { padding-top: clamp(38px, 6vw, 80px); padding-bottom: clamp(48px, 8vw, 92px); }
.hero { display: grid; gap: 30px; grid-template-columns: 1fr; }
.hero__title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.03;
  letter-spacing: -.01em;
  margin: 16px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 34em;
  line-height: 1.6;
  margin: 18px 0 0;
}
.hero__lead strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__media { position: relative; }
.hero__blob {
  position: absolute;
  top: -7%;
  right: -6%;
  width: 70%;
  height: 84%;
  background: var(--accent);
  opacity: .16;
  border-radius: 50% 50% 48% 52% / 62% 60% 40% 38%;
  filter: blur(4px);
}
.hero__media .framed-img {
  position: relative;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(43,33,27,.16);
}

.fact-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 700;
}

/* ============================== SPLIT (om/gårdsutsalg) =================== */
.split { display: grid; gap: 28px; grid-template-columns: 1fr; }

.stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.stat {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
}
.section--white .stat { background: var(--cream); }
.stat__num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.stat__label { font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 4px; }

/* ============================== PRODUKTER =============================== */
.product-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 40px; }
.product-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s ease;
}
.product-card:hover { box-shadow: 0 18px 36px rgba(43,33,27,.12); }
.product-card__img { width: 100%; height: 186px; object-fit: cover; display: block; }
.product-card__body { padding: 20px 20px 24px; }
.product-card__text { font-size: 15.5px; color: var(--muted); margin: 10px 0 0; line-height: 1.6; }

/* ============================== FINN – FILTER =========================== */
.filters {
  margin-top: 26px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filters__search {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.filters__search:focus { border-color: var(--accent); }
.filters__groups { display: flex; flex-wrap: wrap; gap: 20px; }
.filter-group { display: flex; flex-direction: column; gap: 9px; }
.filter-group__label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  padding: 9px 15px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.pill:hover { border-color: var(--ink); }
.pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.chip__dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.chip[data-type="kartong"] .chip__dot { background: var(--accent); }
.chip[data-type="brett"]   .chip__dot { background: var(--brett); }
.chip[data-type="gardsutsalg"] .chip__dot { background: var(--gard); }
.chip.is-active .chip__dot { background: #fff; }
.chip[data-type="kartong"].is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip[data-type="brett"].is-active   { background: var(--brett); color: #fff; border-color: var(--brett); }
.chip[data-type="gardsutsalg"].is-active { background: var(--gard); color: #fff; border-color: var(--gard); }

.filters__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.filters__count { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12.5px; font-weight: 800; color: var(--muted); }
.legend__item { display: inline-flex; align-items: center; gap: 6px; }
.legend .dot { width: 11px; height: 11px; }

/* ============================== FINN – KART + LISTE ===================== */
.finn-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 18px; }
.finn-map {
  height: 380px;
  border: 2px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #E8E0D0;
  z-index: 0;
}
.store-list { position: relative; display: flex; flex-direction: column; gap: 12px; padding-right: 2px; }

.store-card {
  display: flex;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.store-card:hover { box-shadow: 0 18px 36px rgba(43,33,27,.12); }
.store-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.store-card.is-selected {
  border-color: var(--accent);
  background: #FFFDF7;
  box-shadow: 0 14px 30px rgba(43,33,27,.14);
  transform: translateY(-1px);
}
.store-card__bar { width: 6px; align-self: stretch; border-radius: 6px; flex: 0 0 auto; }
.store-card--kartong .store-card__bar { background: var(--accent); }
.store-card--brett   .store-card__bar { background: var(--brett); }
.store-card--gard    .store-card__bar { background: var(--gard); }
.store-card__body { flex: 1; min-width: 0; }
.store-card__name { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin: 0; }
.store-card__meta { font-size: 14px; color: var(--muted); margin: 2px 0 0; }
.store-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.store-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--accent-strong);
  text-decoration: none;
}
.store-card__dir:hover { text-decoration: underline; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
}
.tag__dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.tag--kartong { background: #FCEFD6; color: #8A5A10; }
.tag--kartong .tag__dot { background: var(--accent); }
.tag--brett { background: #F7E2D3; color: #98401A; }
.tag--brett .tag__dot { background: var(--brett); }
.tag--gard { background: #E4EFD8; color: #3E6222; }
.tag--gard .tag__dot { background: var(--gard); }

.store-empty {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 2px dashed var(--line);
  border-radius: 18px;
  font-weight: 600;
}

/* ============================== GÅRDSUTSALG ============================= */
.infobox {
  background: #fff;
  border: 2px solid rgba(43,33,27,.08);
  border-radius: 20px;
  margin-top: 22px;
  overflow: hidden;
}
.infobox__row { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.infobox__row:last-child { border-bottom: 0; }
.infobox__key {
  width: 104px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.infobox__val { font-weight: 700; color: var(--ink); }

.pricebox {
  background: #fff;
  border: 2px solid rgba(43,33,27,.08);
  border-radius: 20px;
  margin-top: 16px;
  overflow: hidden;
}
.pricebox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 18px;
  background: var(--accent);
}
.pricebox__title { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); }
.pricebox__unit { font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); opacity: .68; }
.pricebox__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.pricebox__row:last-child { border-bottom: 0; }
.pricebox__price { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--accent-strong); }

.welcome { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); margin: 22px 0 0; }

/* ============================== KONTAKT ================================= */
.kontakt-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 26px; }
.contact-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card__row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-card__row:last-child { border-bottom: 0; }
.contact-card__body { flex: 1; min-width: 0; }
.contact-card__key { display: block; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.contact-card__val { display: block; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); margin-top: 2px; }
.contact-card__val--break { word-break: break-word; }
.kontakt-map {
  min-height: 320px;
  border: 2px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #E8E0D0;
  z-index: 0;
}

/* ============================== FOOTER ================================= */
.site-footer { background: var(--ink); color: #F3E7D0; }
.site-footer .container { padding-top: 46px; padding-bottom: 46px; display: flex; flex-direction: column; gap: 9px; }
.site-footer__brand { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 23px; color: #fff; }
.site-footer__line { opacity: .88; font-size: 15px; line-height: 1.6; }
.site-footer__line--muted { opacity: .8; }
.site-footer__line a { color: var(--accent); text-decoration: none; }
.site-footer__line a:hover { text-decoration: underline; }
.site-footer__copy { margin-top: 14px; opacity: .5; font-size: 13px; }
.site-footer__social { display: flex; gap: 12px; margin-top: 4px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #F3E7D0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.social-btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }
.social-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.social-btn svg { display: block; }

/* ============================== LEAFLET =============================== */
.leaflet-container { font-family: 'Mulish', sans-serif; }
.leaflet-popup-content { margin: 12px 14px; font-family: 'Mulish', sans-serif; }
.leaflet-popup-content-wrapper { border-radius: 14px; }

/* Kartmarkør — dråpeform, bygget som .pin i app.js (ingen inline-styles) */
.ost-pin { background: transparent; border: 0; }
.pin { position: relative; display: block; width: 32px; height: 32px; }
.pin__drop {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(43,33,27,.3);
}
.pin__dot {
  position: absolute;
  top: 28%;
  left: 28%;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: #fff;
}
.pin--kartong .pin__drop { background: var(--accent); }
.pin--brett   .pin__drop { background: var(--brett); }
.pin--gard    .pin__drop { background: var(--gard); }
.pin--sel { width: 42px; height: 42px; }
.pin--sel.pin--kartong .pin__drop { box-shadow: 0 0 0 6px rgba(245,166,35,.2), 0 8px 16px rgba(43,33,27,.35); }
.pin--sel.pin--brett   .pin__drop { box-shadow: 0 0 0 6px rgba(198,85,31,.2), 0 8px 16px rgba(43,33,27,.35); }
.pin--sel.pin--gard    .pin__drop { box-shadow: 0 0 0 6px rgba(92,138,58,.2), 0 8px 16px rgba(43,33,27,.35); }

/* Popup-innhold (klasser, ikke inline-styles) */
.map-popup { min-width: 180px; }
.map-popup__name { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.map-popup__meta { font-size: 13px; color: var(--muted); margin: 3px 0 8px; }
.map-popup__tags { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.map-popup__dir { font-weight: 800; font-size: 13px; color: var(--accent-strong); text-decoration: none; }
.map-popup__dir:hover { text-decoration: underline; }

/* ============================== 404 ================================= */
.error-page {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 80px var(--pad-x);
}
.error-page__logo { height: 72px; width: auto; margin-bottom: 8px; mix-blend-mode: multiply; }
.error-code { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: clamp(64px, 14vw, 120px); line-height: 1; color: var(--accent-strong); margin: 0; }
.error-title { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: clamp(24px, 4vw, 34px); margin: 0; color: var(--ink); }
.error-text { color: var(--muted); max-width: 30em; margin: 6px 0 18px; line-height: 1.6; }

/* ============================== RESPONSIVT ============================ */
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
  .split { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
  .kontakt-grid { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 30px; }
  .finn-grid { grid-template-columns: 1.12fr 0.88fr; align-items: start; }
  .finn-map { height: 640px; }
  .store-list { height: 640px; overflow: auto; }

  .nav { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}
