@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --orange: #F07830;
  --orange-dark: #D4611A;
  --orange-light: #FFB07A;
  --cream: #FBF0D9;
  --cream-dark: #EFE0C0;
  --dark: #2A1A0F;
  --text: #3D2A18;
  --white: #FFFFFF;
  --gray: #888;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(42, 26, 15, 0.13);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Bowlby One SC', 'Cooper Black', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary { background: var(--white); color: var(--orange); }
.btn-secondary:hover { background: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-locate {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-locate:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
}
.btn-locate:disabled { opacity: 0.6; cursor: wait; }

.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.45em;
  margin-top: -3px;
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
}
.btn-icon-hat {
  height: 24px;
  width: 28px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(54%) sepia(89%) saturate(1605%) hue-rotate(353deg) brightness(99%) contrast(94%);
}

/* ── NEAREST BAR (lokasjoner.html) ── */
.nearest-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.nearest-btn--bar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--orange);
  background: var(--white);
  color: var(--orange);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nearest-btn--bar:hover { background: var(--orange); color: var(--white); }
.nearest-btn--bar:disabled { opacity: 0.6; cursor: wait; }
.nearest-bar-hint {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── NEAREST OVERLAY ── */
.nearest-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 4, 1, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nearest-overlay.open { opacity: 1; pointer-events: all; }

.nearest-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 2.2rem 2.4rem 2rem;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  transform: translateY(18px);
  transition: transform 0.28s ease;
}
.nearest-overlay.open .nearest-card { transform: translateY(0); }

.nearest-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s;
}
.nearest-close:hover { background: var(--cream-dark); }

.nearest-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.3rem;
}
.nearest-name {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.nearest-dist {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.nearest-address {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.nearest-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}
.nearest-hours td { padding: 0.2rem 0; }
.nearest-hours td:first-child { font-weight: 700; color: var(--dark); width: 55%; }
.nearest-hours td:last-child { color: var(--text); }
.nearest-order-btn { display: block; text-align: center; width: 100%; }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 8, 2, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.4s ease;
}
#site-header.shrunk {
  box-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
#site-header.shrunk .header-inner {
  padding: 0.72rem 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  display: block;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
#site-header.shrunk .header-logo img {
  height: 28px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.header-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.015em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
.header-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Hamburger button */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
  flex-shrink: 0;
}
.header-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.32s ease, opacity 0.32s ease;
  transform-origin: center;
}
.header-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(3.5px, 5.5px); }
.header-hamburger.open span:nth-child(2) { opacity: 0; }
.header-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(3.5px, -5.5px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(14, 5, 1, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Bowlby One SC', 'Cooper Black', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  padding: 1.15rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-cta {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1.1rem !important;
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.9rem 3rem !important;
  border-radius: 50px;
  margin-top: 0.5rem;
  font-weight: 900 !important;
  border-bottom: none !important;
  width: auto !important;
  display: inline-block;
}
.mobile-nav-cta:hover { background: var(--orange-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-image: url('../assets/505917112_24352119654391859_467036705266667677_n.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 1.5rem 8rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(240,120,48,0.35), transparent 32%),
    linear-gradient(120deg, rgba(30,15,5,0.76) 0%, rgba(30,15,5,0.44) 48%, rgba(30,15,5,0.68) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 1040px);
  margin: 0 auto;
}
.hero-intro-card {
  max-width: 1040px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: 34px;
  text-align: left;
  background: linear-gradient(135deg, rgba(240,120,48,0.96), rgba(212,97,26,0.96));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-card-image {
  width: 330px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(42,26,15,0.24));
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 0.95;
  text-shadow: 0 3px 18px rgba(42,26,15,0.22);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.hero .hero-kicker {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
}
.hero-intro-card .btn-primary {
  background: var(--white);
  color: var(--orange-dark);
}
.hero-intro-card .btn-primary:hover { background: var(--cream); }
.hero-intro-card .btn-primary .btn-icon { filter: none; }
.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-wave-bottom svg { display: block; width: 100%; height: 110px; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  animation: scroll-hint-bounce 1.8s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.scroll-hint.hidden { opacity: 0; }
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── MENU TEASER ── */
.menu-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.menu-section-inner { max-width: 1180px; margin: 0 auto; }
.menu-section-header { text-align: center; margin-bottom: 3rem; }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.menu-card-preview {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
  cursor: pointer;
}
.menu-card-preview:hover { transform: translateY(-5px) rotate(-1deg); }
.menu-card-preview img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.menu-preview-footer { text-align: center; }

/* ── LOCATIONS TEASER ── */
.locations-teaser {
  background: var(--cream-dark);
  padding: 5rem 1.5rem;
}
.locations-teaser-inner { max-width: 1100px; margin: 0 auto; }
.locations-teaser-header { text-align: center; margin-bottom: 3rem; }

.location-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.location-chip {
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.22s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid transparent;
}
.location-chip .icon { font-size: 1.3rem; flex-shrink: 0; }
.location-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ── VIBES SECTION ── */
.vibes-section {
  background: var(--cream-dark);
  padding: 5rem 1.5rem;
}
.vibes-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.vibes-inner h2 {
  color: var(--dark);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
.vibes-inner > p {
  color: var(--text);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.vibes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.vibes-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.vibes-grid .tall { grid-row: span 2; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── HOME ORDER CTA ── */
.home-order-section {
  background: var(--orange);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.home-order-inner {
  max-width: 820px;
  margin: 0 auto;
}
.home-order-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.8rem;
}
.home-order-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  margin-bottom: 1.6rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--orange);
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1.2rem;
}
.footer-ticker {
  overflow: hidden;
  width: min(100%, 760px);
  margin: 0 auto 1.2rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: footer-ticker-scroll 40s linear infinite;
}
.footer-ticker-track span {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  font-size: 0.92rem;
}
@keyframes footer-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-top: 0.5rem; }
.footer-copy a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.footer-copy a:hover { color: rgba(255,255,255,0.55); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  position: relative;
  overflow: hidden;
  background-image: url('../assets/505917112_24352119654391859_467036705266667677_n.jpg');
  background-size: cover;
  background-position: center top;
  padding: 8rem 1.5rem 4.5rem;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(240,120,48,0.35), transparent 32%),
    linear-gradient(120deg, rgba(30,15,5,0.78) 0%, rgba(30,15,5,0.48) 48%, rgba(30,15,5,0.7) 100%);
}
.page-header > * {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 4rem);
  text-shadow: 0 3px 18px rgba(42,26,15,0.35);
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 0.6rem;
}
/* ── MENU PAGE ── */

.menu-grid-wrap {
  padding: 3rem 1.5rem 5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-notice {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, opacity 0.3s;
}
.menu-item-card:hover { transform: translateY(-5px); }
.menu-item-card.hidden { display: none; }
.menu-item-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.menu-item-info { padding: 1.2rem 1.3rem 1.4rem; }
.menu-item-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}
.menu-item-badge.special { background: #e8f7ee; color: #2a6b3c; }
.menu-item-badge.xhibition-only { background: #e8f0fa; color: #2a4a8c; }
.menu-item-name {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.menu-item-ingredients {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.menu-item-price {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--orange);
}
.menu-item-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-left: 0.4rem;
}

/* ── LOCATIONS PAGE ── */
.locations-wrap {
  padding: 3rem 1.5rem 5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.locations-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0;
  text-align: center;
}
.locations-intro p {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.locations-intro-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.locations-intro-actions .btn-secondary {
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--orange);
}
.locations-intro-actions .btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}
.locations-intro-actions .btn-secondary:hover .loc-action-icon {
  filter: brightness(0) invert(1);
}
.btn-map,
.nearest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.loc-action-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(54%) sepia(89%) saturate(1605%) hue-rotate(353deg) brightness(99%) contrast(94%);
}
.loc-action-icon-light {
  filter: brightness(0) invert(1);
}
.region-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 2.5rem;
  padding: 0.85rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.region-chip {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.region-chip:hover { border-color: var(--orange); color: var(--orange); }
.region-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s;
  display: flex;
  flex-direction: column;
}
.location-card:hover { transform: translateY(-3px); }
.location-card.hidden { display: none; }

.loc-card-image {
  width: 100%;
  height: 175px;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.loc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.location-card:hover .loc-card-image img { transform: scale(1.04); }

.loc-card-body {
  padding: 1.5rem 1.6rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.loc-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--text);
  margin-bottom: 0.7rem;
}
.loc-type.indoor { background: #e8f7ee; color: #2a6b3c; }
.loc-type.outdoor { background: #fff3e0; color: #8d4e00; }

.loc-name {
  font-size: 1.65rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.loc-address {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
}
.hours-table td { padding: 0.22rem 0; }
.hours-table td:first-child { font-weight: 700; color: var(--dark); width: 58%; }
.hours-table td:last-child { color: var(--text); }
.hours-divider { border-top: 1px solid var(--cream-dark); height: 6px; }

.loc-order-btn {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 0.72rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s;
  margin-top: auto;
}
.loc-order-btn:hover { background: var(--orange-dark); }
.loc-no-order {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  padding-top: 0.3rem;
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.wave-divider svg { display: block; width: 100%; height: 62px; }
@media (prefers-reduced-motion: reduce) {
  .footer-ticker-track { animation: none; }
}

/* ── RESPONSIVE ── */

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .header-inner { padding: 0.65rem 1.5rem; }
  #site-header.shrunk .header-inner { padding: 0.65rem 1.5rem; }
}

@media (max-width: 860px) {

  .hero-intro-card {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 620px;
  }
  .hero-card-image {
    width: 190px;
  }
  .hero-card-copy {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .menu-preview-grid { grid-template-columns: 1fr 1fr; }

  .vibes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 200px;
  }
  .vibes-grid .tall { grid-row: span 1; }

  .location-chips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .menu-preview-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
  .location-chips-grid { grid-template-columns: 1fr; }
  .vibes-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .region-filter {
    gap: 0.35rem;
    padding: 0.6rem;
    margin-bottom: 1.8rem;
    border-radius: 18px;
  }
  .region-chip {
    padding: 0.34rem 0.78rem;
    font-size: 0.78rem;
    border-width: 1px;
  }
  .menu-items-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-intro-card { border-radius: 26px; }
}

/* ── INTERACTIVE MAP ── */
.map-section {
  background: var(--cream-dark);
  padding: 5rem 1.5rem;
}
.map-section-inner { max-width: 1180px; margin: 0 auto; }
.map-section-header { text-align: center; margin-bottom: 2.5rem; }

#norway-map {
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.map-footer { text-align: center; margin-top: 2rem; }

/* ── Leaflet custom markers ── */
.pm-icon { background: none; border: none; overflow: visible; }

.pm-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  transform-origin: center bottom;
}
.pm-marker:hover { transform: scale(1.28) translateY(-4px); }

.pm-marker-pin {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.pm-marker-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.67rem;
  background: var(--white);
  color: var(--dark);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  border: 1.5px solid var(--orange);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  white-space: nowrap;
  margin-top: 3px;
}

/* ── Leaflet popup custom style ── */
.pm-leaflet-popup .leaflet-popup-content-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(42,26,15,0.18);
  border: none;
  padding: 0;
}
.pm-leaflet-popup .leaflet-popup-tip-container { display: none; }
.pm-leaflet-popup .leaflet-popup-content { margin: 0; padding: 0; width: auto !important; }
.pm-leaflet-popup .leaflet-popup-close-button {
  top: 8px; right: 10px;
  font-size: 1.15rem;
  color: var(--gray);
}

.pm-popup { padding: 1.3rem 1.5rem 1.4rem; min-width: 220px; }
.pm-popup h3 {
  font-family: 'Bowlby One SC', 'Cooper Black', Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.pm-popup-address {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.9rem;
}
.pm-popup-hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.pm-popup-hours td { padding: 0.18rem 0; }
.pm-popup-hours td:first-child { font-weight: 700; color: var(--dark); padding-right: 0.8rem; }
.pm-popup-hours td:last-child { color: var(--text); }
.pm-popup-order {
  display: block;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.pm-popup-order:hover { background: var(--orange-dark); }
.pm-popup-no-order {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

@media (max-width: 540px) {
  #norway-map { height: 380px; }
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-scale {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal       { opacity: 0; transform: translateY(35px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }
.reveal.visible,
.reveal-left.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
