@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── DESIGN TOKENS ─── */
:root {
  /* Lys varm canvas */
  --bg:           #FAF8F3;
  --surface:      #F2EDE4;
  --card:         #FFFFFF;
  --card-hover:   #FDF9F4;

  /* Amber accent */
  --accent:       #FFA500;
  --accent-dark:  #CC8400;
  --accent-glow:  rgba(255,165,0,0.22);
  --accent-soft:  rgba(255,165,0,0.10);

  /* Tekst (på lys) */
  --text:         #1C1410;
  --text-mid:     #6B5A4E;
  --text-muted:   #A0907C;

  /* Mørk kontrastsektion */
  --dark-bg:      #0C0906;
  --dark-surface: #171210;
  --dark-text:    #EDE5D5;
  --dark-mid:     #9B8B78;

  /* Om Os (linen) */
  --cream-bg:     #EDE8DF;
  --cream-text:   #1C1410;
  --cream-mid:    #6B5A4E;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:     0 2px 16px rgba(160,120,80,0.08);
  --shadow:        0 8px 40px rgba(160,120,80,0.14);
  --shadow-lg:     0 24px 80px rgba(160,120,80,0.2);
  --shadow-accent: 0 8px 32px rgba(255,165,0,0.35);

  /* Borders */
  --border:        rgba(160,120,80,0.15);
  --border-warm:   rgba(255,165,0,0.3);

  /* Radii — sharper for bold design */
  --radius:    4px;
  --radius-lg: 10px;

  /* Layout */
  --nav-h:  90px;
  --max-w:  1400px;

  /* Easing */
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  /* ── Legacy aliases — bevares til dynamisk HTML ── */
  --red:        var(--accent);
  --red-dark:   var(--accent-dark);
  --red-light:  var(--accent-soft);
  --off-white:  var(--cream-bg);
  --gray:       var(--text-mid);
  --gray-light: var(--border);
  --dark:       var(--cream-text);
  --white:      var(--cream-bg);
  --amber-light: var(--accent);
  --fire:       var(--accent);
  --fire-bright: var(--accent-dark);
  --surface2:   var(--card);
}

/* ─── BASE ─── */
html, body { background: var(--bg); }
body {
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── GRAIN TEXTURE ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── PAGE OVERLAY ─── */
#page-overlay {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s var(--ease);
}
#page-overlay.fade-out { opacity: 0; pointer-events: none; }
.pizza-loader {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,165,0,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

/* Specialty cards — staggered fade-in */
.specialty-card.fade-up:nth-child(1) { transition-delay: 0.0s; }
.specialty-card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.specialty-card.fade-up:nth-child(3) { transition-delay: 0.24s; }
.specialty-card.fade-up:nth-child(4) { transition-delay: 0.36s; }


/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 1.1rem;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 3rem); max-width: 1140px;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.75rem; z-index: 1000;
  background: rgba(20,15,10,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(35,26,16,0.97);
  border-color: rgba(255,165,0,0.35);
  box-shadow: 0 12px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,165,0,0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.04em;
  color: #EDE5D5; transition: color 0.25s;
}
.nav-logo:hover { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(237,229,213,0.65); transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #EDE5D5; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--border-warm) !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #EDE5D5; border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #0A0704;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
/* Hvid outline — til mørk baggrund (hero) */
.btn-outline {
  background: transparent;
  color: #EDE5D5;
  border: 1px solid rgba(237,229,213,0.28);
}
.btn-outline:hover {
  border-color: rgba(237,229,213,0.65);
  background: rgba(237,229,213,0.06);
  color: #EDE5D5;
}
/* Mørk outline — til lys baggrund (about-sektion) */
.btn-outline-dark {
  background: transparent;
  color: var(--cream-text);
  border: 1px solid rgba(28,20,16,0.22);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── HERO INDGANG ANIMATION ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  animation: heroFadeUp 0.7s var(--ease) both;
  animation-delay: 0.2s;
}
.hero h1 {
  animation: heroFadeUp 0.8s var(--ease) both;
  animation-delay: 0.38s;
}
.hero-content > p {
  animation: heroFadeUp 0.7s var(--ease) both;
  animation-delay: 0.56s;
}
.hero-btns {
  animation: heroFadeUp 0.7s var(--ease) both;
  animation-delay: 0.7s;
}
.hero-stats {
  animation: heroFadeUp 0.7s var(--ease) both;
  animation-delay: 0.84s;
}

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('Forside billede.jpg');
  background-size: cover; background-position: center;
  transform: scaleX(-1);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    112deg,
    rgba(10,7,4,0.97) 20%,
    rgba(10,7,4,0.68) 52%,
    rgba(10,7,4,0.20) 100%
  );
  transform: scaleX(-1);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  height: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 5%; padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: ''; display: block; flex-shrink: 0;
  width: 40px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.03em;
  color: #EDE5D5; margin-bottom: 2.25rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.h1-line1 { white-space: nowrap; }
.hero-content > p {
  color: rgba(237,229,213,0.62);
  font-size: 1.05rem; max-width: 420px;
  line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }

/* Stats bar — glass */
.hero-stats {
  display: inline-flex;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,165,0,0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats > div {
  padding: 1.1rem 1.75rem;
  border-right: 1px solid rgba(255,165,0,0.08);
}
.hero-stats > div:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 600;
  color: var(--accent); line-height: 1; margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(237,229,213,0.42);
}

/* ─── HERO WAVE ─── */
.hero-wave {
  position: absolute; bottom: -35px; left: 0; right: 0;
  z-index: 3; line-height: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; }

/* ─── SECTION UTILITIES ─── */
.section { background: var(--surface); padding: 7rem 5%; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 0; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

.section-label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.02;
  letter-spacing: -0.025em; margin-bottom: 1.25rem;
  color: var(--text);
}
.section-sub {
  color: var(--text-mid); font-size: 1rem;
  max-width: 520px; line-height: 1.8;
}

/* ─── SPECIALITETER GRID ─── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
  align-items: start;
}
/* Alle kort samme størrelse — kort 2+4 forskudt ned */
.specialty-card { height: 430px; }
.specialty-card:nth-child(even) { margin-top: 3rem; }

.specialty-card {
  background: var(--card);
  overflow: hidden; position: relative;
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.specialty-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: var(--border-warm);
}
.specialty-card:hover::before { transform: scaleX(1); }
.specialty-img-wrap {
  width: 100%; height: 210px; flex-shrink: 0; overflow: hidden;
}
.specialty-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88) brightness(0.96);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
  display: block;
}
.specialty-card:hover .specialty-img-wrap img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}
.specialty-info {
  padding: 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}
.specialty-info h3 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.4rem; line-height: 1.15;
}
.specialty-info > p {
  color: var(--text-mid); font-size: 0.88rem;
  line-height: 1.65; margin-bottom: 0; flex: 1;
}
.specialty-price {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  margin-top: 1.25rem;
}
.specialty-price .price {
  color: var(--accent); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.specialty-price .btn-primary {
  font-size: 0.75rem !important; padding: 0.45rem 1.1rem !important;
}

/* ─── OM OS (lys kontrastsektion) ─── */
.section-alt {
  background: var(--cream-bg);
  padding: 7rem 5%;
}
.section-alt .section-label  { color: var(--accent-dark); }
.section-alt .section-title  { color: var(--cream-text); }
.section-alt .section-sub    { color: var(--cream-mid); }
.about-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: saturate(0.88) sepia(0.06) brightness(0.96);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12), 0 32px 80px rgba(0,0,0,0.28);
}
.about-image::after {
  content: '';
  position: absolute; top: -16px; left: -16px;
  width: 56px; height: 56px;
  border-left: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  border-radius: 10px 0 0 0;
}
.about-image-caption {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  color: var(--cream-mid);
  letter-spacing: 0.01em;
  text-align: center;
}
.about-text > p {
  color: var(--cream-mid); font-size: 1rem;
  line-height: 1.85; margin-bottom: 2.75rem;
}
.features { margin-top: 0; }
.feature {
  display: flex; gap: 1.25rem; align-items: center;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(28,20,16,0.09);
  transition: transform 0.3s var(--ease);
}
.feature:last-child { border-bottom: none; }
.feature:hover { transform: translateX(5px); }
.feature-icon { color: var(--accent); flex-shrink: 0; align-self: flex-start; margin-top: 0.25rem; }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--cream-text); margin-bottom: 0.2rem;
}
.feature-text p { color: var(--cream-mid); font-size: 0.88rem; line-height: 1.65; }

/* ─── TILBUD SEKTION ─── */
#tilbud-sektion .section-title { color: var(--cream-text); }

/* ─── PERSONALE BANNER ─── */
.personale-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.personale-banner-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.personale-banner:hover .personale-banner-img {
  transform: scale(1);
}
.personale-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,7,4,0.35) 0%,
    rgba(10,7,4,0.58) 100%
  );
}
.personale-banner-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 5%;
}
.personale-quote {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  color: #EDE5D5;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ─── ARRANGEMENTER ─── */
.events-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 7rem 5%;
}
.events-intro {
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 3.5rem;
}
.events-intro .section-title { color: var(--text); margin-bottom: 0.75rem; }
.events-sub {
  color: var(--text-mid); font-size: 1rem;
  max-width: 500px; line-height: 1.8;
}

/* Split layout */
.events-split {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

/* Venstre: checklist */
.events-list-col {
  display: flex; flex-direction: column;
}
.events-checklist {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  list-style: none;
}
.events-checklist li {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500; color: var(--text);
  letter-spacing: -0.01em; line-height: 1.2;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s var(--ease);
}
.events-checklist li:first-child { border-top: 1px solid var(--border); }
.events-checklist li:hover { color: var(--accent); padding-left: 6px; }
.events-check {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A0704;
}

/* Højre: billedgrid */
.events-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.events-photo {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.events-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.85) brightness(0.96);
}
.events-photo img { cursor: pointer; }
.events-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
}
#lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.2rem;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.2); }
#lightbox-prev, #lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 2.5rem; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.25); }

.btn-dark {
  display: inline-flex; align-items: center;
  padding: 0.85rem 2rem; flex-shrink: 0;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer;
  background: #0A0704; color: var(--accent);
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-dark:hover { background: rgba(10,7,4,0.82); transform: translateY(-2px); }

/* ─── ÅBNINGSTIDER / KONTAKT ─── */
.hours-section {
  background: #0F0B07;
  text-align: center;
  padding: 7rem 5%;
}
.hours-section .section-label { color: var(--accent); }
.hours-top { max-width: 680px; margin: 0 auto; }
.hours-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500; color: rgba(237,229,213,0.55);
  margin: 0.75rem 0 0.25rem; line-height: 1.1;
  letter-spacing: 0.01em;
}
.hours-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700; color: #EDE5D5;
  line-height: 1; margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
  transition: color 0.2s;
}
.hours-phone:hover { color: var(--accent); }
.hours-actions {
  display: flex; gap: 1rem;
  justify-content: center; margin-bottom: 4rem;
}
.hours-btn-primary {
  background: var(--accent); color: #0A0704;
}
.hours-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hours-btn-secondary {
  background: transparent; color: rgba(237,229,213,0.65);
  border: 1px solid rgba(237,229,213,0.18);
}
.hours-btn-secondary:hover {
  border-color: rgba(237,229,213,0.45);
  color: #EDE5D5;
}
.hours-strip {
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: center; flex-wrap: wrap;
  padding: 2.5rem 0 0; gap: 0;
}
.hours-card {
  background: transparent; border: none; box-shadow: none; border-radius: 0;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center; display: block;
}
.hours-card:last-child { border-right: none; }
.hours-card:hover { transform: none; }
.hours-day {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(237,229,213,0.3); margin-bottom: 0.4rem;
}
.hours-time {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 500; color: rgba(237,229,213,0.7);
}

/* ─── MENU SIDE ─── */
.menu-hero {
  padding: calc(var(--nav-h) + 4.5rem) 5% 4.5rem;
  background: var(--dark-bg); text-align: center;
  border-bottom: 1px solid rgba(255,165,0,0.15);
  position: relative; overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,165,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.menu-hero .section-label {
  color: var(--accent);
}
.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; color: #EDE5D5;
  letter-spacing: -0.025em; margin-bottom: 0.75rem; line-height: 1.05;
}
.menu-hero p { color: rgba(237,229,213,0.55); max-width: 480px; margin: 0 auto 2rem; }
.menu-hero strong { color: var(--accent) !important; }

.filter-bar, .menu-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  justify-content: center;
  padding: 1.4rem 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 90;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.filter-btn {
  padding: 0.55rem 1.5rem; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-mid); font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(255,165,0,0.15);
}
.filter-btn.active {
  background: var(--accent); color: #0A0704;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(255,165,0,0.3);
  font-weight: 600;
}

.menu-content {
  max-width: var(--max-w); margin: 0 auto;
  padding: 4rem 5% 6rem;
}
.menu-section { margin-bottom: 4rem; }
.menu-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600; color: var(--text);
  margin-bottom: 1.75rem; letter-spacing: -0.02em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.menu-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.menu-img-wrap {
  width: 100%; height: 260px; overflow: hidden; flex-shrink: 0;
  background: var(--border);
}
.menu-card--detailed .menu-img-wrap {
  height: 480px;
}
.menu-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.92);
  transition: filter 0.5s var(--ease);
}
.menu-card:hover .menu-img-wrap img {
  filter: saturate(0.9) brightness(0.94);
}
.menu-card-body { padding: 1.25rem 1.25rem 0.35rem; }
.menu-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem; margin-bottom: 0.4rem;
}
.menu-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--text); line-height: 1.2;
}
.menu-card-price {
  color: var(--accent); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  flex-shrink: 0; margin-top: 0.2rem;
}
.menu-card-desc {
  color: var(--text-mid); font-size: 0.86rem;
  line-height: 1.65; margin-bottom: 0.9rem;
}

/* Detaljeret kort */
.menu-card--detailed { grid-column: 1 / -1; }

.menu-card-priser {
  margin: 1rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}
.menu-card-pris-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text);
}
.menu-card-pris-val {
  font-weight: 600; color: var(--accent);
  font-size: 1rem;
}
.menu-card-pris-note {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.6; margin-top: 0.7rem;
}
.menu-card-minimum {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text);
  margin: 0.9rem 0;
  text-align: left;
}

.menu-info-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFA500;
  letter-spacing: 0.04em;
  margin: 1rem 0 1.5rem;
}
.menu-info-banner::before,
.menu-info-banner::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #FFA500);
}
.menu-info-banner::after {
  background: linear-gradient(to left, transparent, #FFA500);
}

.menu-card-details {
  margin-top: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.menu-card-details summary {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); cursor: pointer;
  list-style: none; display: flex; align-items: center; gap: 0.5rem;
  user-select: none;
}
.menu-card-details summary::after {
  content: '▾'; font-size: 0.9rem; transition: transform 0.2s;
}
.menu-card-details[open] summary::after { transform: rotate(180deg); }
.menu-card-details-body {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2rem; margin-top: 1rem;
}
.menu-detail-group h5 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}
.menu-detail-group ul { list-style: none; }
.menu-detail-group li {
  font-size: 0.85rem; color: var(--text-mid);
  padding: 0.2rem 0; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.menu-detail-group li:last-child { border-bottom: none; }
.menu-detail-cols {
  columns: 3; column-gap: 1.5rem;
}
.menu-detail-cols li { break-inside: avoid; }

@media (max-width: 600px) {
  .menu-card-details-body { grid-template-columns: 1fr; }
  .menu-detail-cols { columns: 2; }
}

.menu-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.72rem;
  border-radius: 50px;
}
.tag-popular {
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--border-warm);
}
.tag-new {
  background: rgba(80,160,120,0.1); color: #6bc49a;
  border: 1px solid rgba(80,160,120,0.2);
}
.tag-veg {
  background: rgba(100,180,80,0.1); color: #8abf6a;
  border: 1px solid rgba(100,180,80,0.2);
}

/* ─── KONTAKT SIDE ─── */
.contact-hero {
  padding: calc(var(--nav-h) + 4.5rem) 5% 4.5rem;
  background: var(--dark-bg); text-align: center;
  border-bottom: 1px solid rgba(255,165,0,0.15);
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,165,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero .section-label { color: var(--accent); }
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; color: #EDE5D5;
  letter-spacing: -0.025em; margin-bottom: 0.75rem; line-height: 1.05;
}
.contact-hero p { color: rgba(237,229,213,0.55); max-width: 440px; margin: 0 auto; }

/* Hvorfor vælge os */
.contact-why {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid rgba(255,165,0,0.15);
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 6px 20px rgba(0,0,0,0.2);
}
.contact-why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,165,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.contact-why .section-label { color: var(--accent); }
.contact-why h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #EDE5D5; font-weight: 600;
  margin-bottom: 3rem; line-height: 1.1;
  position: relative;
}
.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.contact-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,165,0,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
}
.contact-why-card:hover {
  border-color: rgba(255,165,0,0.3);
  background: rgba(255,165,0,0.06);
}
.contact-why-icon {
  width: 52px; height: 52px;
  background: rgba(255,165,0,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.contact-why-card h4 {
  color: #EDE5D5;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.6rem;
}
.contact-why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem; line-height: 1.65; margin: 0;
}
@media (max-width: 900px) {
  .contact-why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-why { padding: 3rem 1.5rem; }
}
@media (max-width: 500px) {
  .contact-why-grid { grid-template-columns: 1fr; }
}

/* Ring os op CTA */
.contact-cta {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,165,0,0.15);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255,165,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-inner { position: relative; z-index: 1; }
.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: #EDE5D5;
  margin-bottom: 0.75rem; line-height: 1.1;
}
.contact-cta p {
  color: rgba(237,229,213,0.55);
  max-width: 480px; margin: 0 auto 2rem;
  line-height: 1.75; font-size: 0.95rem;
}
.contact-cta .section-label { color: var(--accent); }

.contact-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 4.5rem 5% 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.contact-card:hover { border-color: var(--border-warm); transform: translateY(-3px); }
.contact-card-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.contact-card h3, .contact-card h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.35rem;
}
.contact-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--text); transition: color 0.2s; }
.contact-card a:hover { color: var(--accent); }

/* Store kontaktkort */
.contact-cards-big {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-big-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.6rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-big-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255,165,0,0.12);
}
.contact-big-card--muted:hover { border-color: var(--border-warm); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.contact-big-icon {
  width: 64px; height: 64px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 0.75rem;
}
.contact-big-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.contact-big-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--accent);
  line-height: 1.15;
}
.contact-big-sub {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 0.2rem;
}

.cta-card {
  background: var(--dark-bg);
  border: 1px solid rgba(255,165,0,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.cta-card h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: #EDE5D5; margin-bottom: 1rem;
}

.contact-form-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem; line-height: 1.1;
}
.contact-form-section > p { color: var(--text-mid); margin-bottom: 2.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mid);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  color: var(--text); font-family: var(--font-body);
  font-size: 0.95rem; line-height: 1.5;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { background-image: none; }
.form-group select option { background: var(--card); color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.hours-list { margin-top: 2.5rem; }
.hours-list h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--text); margin-bottom: 1.25rem;
}
.frokost-list { display: flex; flex-direction: column; gap: 0; }
.frokost-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.frokost-row:last-child { border-bottom: none; }
.frokost-row span:first-child { color: var(--text); }
.frokost-row span:last-child  { color: var(--text-mid); font-weight: 500; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,165,0,0.12);
  padding: 4.5rem 5% 2.5rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3.5rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1.25rem; color: #EDE5D5; }
.footer-brand p {
  color: var(--dark-mid); font-size: 0.88rem;
  max-width: 280px; line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: #EDE5D5; margin-bottom: 1.25rem; letter-spacing: 0.01em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: var(--dark-mid); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,165,0,0.1); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom > span { color: var(--dark-mid); font-size: 0.82rem; }
.footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: #FFA500; border-color: #FFA500; }
.footer-bottom .footer-cvr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #EDE5D5;
  letter-spacing: 0.01em;
}

/* ─── SCROLL TO TOP BUTTON ─── */
#scroll-top-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 44px; height: 44px;
  background: var(--accent); color: #0A0704;
  border: none; border-radius: 50%;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateY(8px);
}
#scroll-top-btn.visible {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
#scroll-top-btn:hover { background: var(--accent-dark); }

/* ─── LOADER PÅ MENU-SIDEN ─── */
#menu-loader {
  text-align: center; padding: 4rem 0; color: var(--text-muted); font-size: 0.9rem;
}

/* ─── RESPONSIV ─── */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .events-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-card:nth-child(even) { margin-top: 2rem; }
  .cta-card { position: static; }

  .events-split { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 820px) {
  /* Navigation */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 0.5rem);
    left: 1.5rem; right: 1.5rem;
    background: rgba(20,15,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,165,0,0.2);
    border-radius: 14px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.6);
    flex-direction: column; justify-content: center;
    gap: 2rem; align-items: center;
    padding: 2.5rem 1.5rem;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s var(--ease), visibility 0.25s, transform 0.25s var(--ease);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1; visibility: visible;
    transform: translateY(0);
  }
  .nav-links a { font-size: 1.15rem; }

  /* Hero */
  .hero-bg { background-position: 30% center; }
  .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 6%; padding-top: var(--nav-h);
    justify-content: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero h1 { line-height: 1.15; font-size: clamp(2.9rem, 12vw, 3.8rem); }

  .h1-line1 { white-space: normal; }
  .hero-content > p { font-size: 0.95rem; max-width: 100%; margin-bottom: 2rem; }
  .hero-btns {
    flex-direction: row; flex-wrap: nowrap;
    gap: 0.75rem; justify-content: center;
    margin-bottom: 2.5rem; align-self: stretch;
  }
  .hero-btns .btn { flex: 1; text-align: center; justify-content: center; display: flex; align-items: center; padding: 0.85rem 1rem; font-size: 0.82rem; }
  .hero-stats {
    display: flex; flex-direction: row;
    width: 100%;
    align-self: center;
    border-radius: 14px;
    background: rgba(12,9,6,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,165,0,0.18);
  }
  .hero-stats > div {
    flex: 1; padding: 1rem 0.5rem;
    border-right: 1px solid rgba(255,165,0,0.1);
    border-bottom: none;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-stats > div:last-child { border-right: none; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; text-align: center; }

  /* Om os */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { display: block; order: -1; }
  .about-image img { aspect-ratio: 1/1; border-radius: 12px; object-position: center 15%; }
  .specialties-cta { margin-top: 2rem !important; }
  #specialties-section { padding-bottom: 2rem; }
  .about-image::after { display: none; }
  .features { gap: 1.25rem; }

  /* Specialiteter */
  .specialties-grid { grid-template-columns: 1fr; }
  .specialty-card { height: auto; }
  .specialty-card:nth-child(even) { margin-top: 0; }
  .specialty-img-wrap { height: 200px; }

  /* Events */
  .events-split { grid-template-columns: 1fr; gap: 2rem; }
  .events-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .events-section { padding-top: 3.5rem; padding-bottom: 2rem; }
  .events-intro { text-align: center; }
  .events-sub { text-align: center; margin: 0 auto; }
  .events-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .events-list-col { align-items: center; }
  .events-list-col .btn { align-self: center; }
  .events-checklist li { font-size: 1rem; padding: 0.5rem 0; gap: 0.6rem; }
  .events-checklist li:first-child { border-top: none; }
  .events-check { width: 20px; height: 20px; flex-shrink: 0; }
  .events-check svg { width: 10px; height: 10px; }

  /* Sektioner */
  .section     { padding: 3.5rem 5%; }
  .section-alt { padding: 3.5rem 5%; }
  .section-sub { text-align: center; }

  /* Menu side */
  .menu-hero   { padding: calc(var(--nav-h) + 2.5rem) 5% 0.25rem; }
  .menu-content { padding: 0.5rem 5% 3.5rem; }
  .filter-bar, .menu-filters { gap: 0.5rem; padding: 1.5rem 5% 1.5rem; position: static; }
  .menu-category-title { text-align: center; }
  .menu-img-wrap { height: 200px !important; }
  .menu-tag { margin-top: 1.25rem; }
  .filter-btn { font-size: 0.78rem; padding: 0.45rem 1rem; }
  .menu-card--detailed { grid-column: 1 / -1; }
  .menu-detail-cols { columns: 2; }

  /* Kontakt side */
  .contact-hero { padding: calc(var(--nav-h) + 2.5rem) 5% 2.5rem; }
  .contact-cards-big { grid-template-columns: 1fr; gap: 1rem; }
  .contact-big-card { padding: 2rem 1.5rem; }
  .contact-why { padding: 2.5rem 1.25rem; }
  .contact-why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-why-card { padding: 1.5rem 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
  footer { padding: 3rem 5% 2rem; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-col ul { align-items: center; }

  /* Lightbox pile */
  #lightbox-prev { left: 0.5rem; }
  #lightbox-next { right: 0.5rem; }
}

@media (min-width: 600px) and (max-width: 820px) {
  .hero h1 { font-size: clamp(4rem, 10vw, 5.5rem); }
  .hero-content > p { max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero-btns { max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 480px; margin-left: auto; margin-right: auto; }
  .events-checklist { grid-template-columns: repeat(3, 1fr); }
  .menu-detail-cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
  .menu-card-details-body { grid-template-columns: 2fr 1fr; }
  .menu-card-details-body .menu-detail-group:first-child { order: 2; }
  .menu-card-details-body .menu-detail-group:last-child { order: 1; }
}

@media (max-width: 400px) {
  .contact-why-grid { grid-template-columns: 1fr; }
  .events-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-detail-cols { columns: 2; }
}
