/* ===================================================
   Kitchen Cater — stylesheet
   =================================================== */

:root {
  --maroon: #7A1F2B;
  --maroon-dark: #5A1620;
  --maroon-light: #9C2C3A;
  --gold: #E8A33D;
  --gold-light: #F4C46A;
  --green: #3F7A54;
  --cream: #FFF8EF;
  --cream-2: #FBEEDD;
  --ink: #2B1B17;
  --ink-soft: #6B5750;
  --white: #ffffff;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 4px 14px rgba(43, 27, 23, 0.08);
  --shadow-md: 0 12px 30px rgba(43, 27, 23, 0.14);
  --shadow-lg: 0 24px 60px rgba(43, 27, 23, 0.22);

  --radius: 18px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

/* Reset native button chrome (Safari/iOS in particular renders a faint
   default border/shadow on <button> that custom styles don't fully cover
   unless appearance is explicitly turned off). */
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}
input:not([type="checkbox"]):not([type="radio"]), textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--maroon-dark); line-height: 1.15; }

.text-gold { color: var(--gold); }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--green);
  margin-bottom: 12px;
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 14px; }
.section-desc { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-dark));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--maroon-dark);
}
.btn-outline:hover { background: var(--maroon-dark); color: var(--white); border-color: var(--maroon-dark); }

/* Used on dark backgrounds (hero, footer) where maroon text/border would vanish */
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-light:hover { background: var(--white); color: var(--maroon-dark); border-color: var(--white); }

.btn-lg { padding: 17px 36px; font-size: 1.02rem; }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--maroon-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-spice { font-size: 3rem; animation: spin-pulse 1.1s ease-in-out infinite; }
@keyframes spin-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(15deg); }
}

/* ---------- Header ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: all var(--transition);
}
#header.scrolled {
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 54px; width: auto; transition: height var(--transition); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
#header.scrolled .logo-img { height: 44px; }
.footer-logo-img { height: 58px; }
.logo-tagline {
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.4px;
  color: var(--ink-soft); white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
#header:not(.scrolled) .logo-tagline { color: rgba(255,255,255,0.9); }

#nav ul { display: flex; gap: 34px; }
.nav-link {
  font-weight: 500; font-size: 0.96rem; position: relative; padding: 4px 0;
  color: var(--ink);
  transition: color var(--transition);
}
#header:not(.scrolled) .nav-link { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { padding: 12px 26px; font-size: 0.9rem; }

#burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: none; cursor: pointer;
  z-index: 1001;
}
#burger span { width: 24px; height: 2px; background: var(--ink); transition: all var(--transition); margin: 0 auto; }
#header:not(.scrolled) #burger span { background: var(--white); }
#burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#burger.open span:nth-child(2) { opacity: 0; }
#burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#burger.open span { background: var(--ink) !important; }

#mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(340px, 82%); height: 100vh;
  background: var(--cream); z-index: 1000; padding: 100px 36px 40px;
  transition: right 0.45s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
#mobile-nav.open { right: 0; }
#mobile-nav ul { display: flex; flex-direction: column; gap: 22px; }
#mobile-nav .nav-link { font-size: 1.15rem; font-family: var(--font-head); font-weight: 600; }

#mobile-overlay {
  position: fixed; inset: 0; background: rgba(43,27,23,0.5); z-index: 999;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
#mobile-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,15,15,0.75) 0%, rgba(58,15,20,0.82) 55%, rgba(122,31,43,0.9) 100%);
}
.hero-spices {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  font-size: 2.4rem; opacity: 0.18;
}
.hero-spices span { position: absolute; animation: float 7s ease-in-out infinite; }
.hero-spices span:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-spices span:nth-child(2) { top: 65%; left: 12%; animation-delay: 1.2s; }
.hero-spices span:nth-child(3) { top: 25%; right: 10%; animation-delay: 2.1s; }
.hero-spices span:nth-child(4) { top: 70%; right: 15%; animation-delay: 3s; }
.hero-spices span:nth-child(5) { top: 45%; left: 48%; animation-delay: 1.7s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(12deg); }
}

.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; padding-top: 90px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  max-width: 620px; margin: 0 auto 40px; font-size: 1.12rem;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }


/* ---------- Marquee ---------- */
.marquee {
  background: var(--maroon-dark);
  overflow: hidden; padding: 16px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  color: var(--gold-light); font-weight: 500; font-size: 0.95rem;
  padding: 0 28px; white-space: nowrap; letter-spacing: 0.4px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Om oss ---------- */
.om-oss-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.img-stack { position: relative; }
.img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.img-floating {
  position: absolute; bottom: -40px; left: -50px; width: 55%;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream); aspect-ratio: 1/1; object-fit: cover;
}
.om-oss-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 20px; }
.om-oss-text p { color: var(--ink-soft); margin-bottom: 16px; }

.feature-list { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px;
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Meny ---------- */
.meny { background: var(--cream-2); }
.menu-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 46px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px; border-radius: 100px; border: 2px solid var(--maroon-dark);
  background: transparent; color: var(--maroon-dark); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { background: rgba(122,31,43,0.08); }
.filter-btn.active { background: var(--maroon-dark); color: var(--white); }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card.hide { display: none; }
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.menu-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-tag {
  position: absolute; top: 14px; left: 14px; background: var(--maroon-dark); color: var(--white);
  font-size: 0.72rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; letter-spacing: 0.4px;
}
.menu-tag.veg { background: var(--green); }
.menu-card-body { padding: 22px 24px 26px; }
.menu-card-title { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.menu-card-body h3 { font-size: 1.2rem; }
.menu-price { color: var(--maroon-dark); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.menu-card-body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; min-height: 44px; }
.menu-order { color: var(--maroon-dark); font-weight: 600; font-size: 0.92rem; transition: gap var(--transition); }
.menu-order:hover { color: var(--gold); }

.meny-cta { text-align: center; margin-top: 52px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.filter-link { text-decoration: none; display: inline-flex; align-items: center; }

/* ---------- Frokost banner ---------- */
.frokost-banner {
  margin-top: 60px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 30px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border: 1px solid rgba(122,31,43,0.08);
}
.frokost-banner-text { display: flex; align-items: center; gap: 18px; }
.frokost-icon { font-size: 2.2rem; flex-shrink: 0; }
.frokost-banner-text h3 { font-size: 1.15rem; margin-bottom: 4px; }
.frokost-banner-text p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; max-width: 460px; }

/* ---------- Bedriftskunder ---------- */
.bedriftskunder { background: var(--cream-2); }
.logo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.logo-item {
  background: var(--white); border-radius: 14px; padding: 24px 18px; min-height: 92px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-item img { max-height: 48px; max-width: 100%; object-fit: contain; filter: grayscale(35%); opacity: 0.9; transition: filter var(--transition), opacity var(--transition); }
.logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.logo-fallback { font-family: var(--font-head); font-weight: 700; color: var(--maroon-dark); font-size: 1.05rem; text-align: center; }

/* ---------- Selskapslokale ---------- */
.selskapslokale { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-light)); text-align: center; }
.selskapslokale-inner { max-width: 720px; margin: 0 auto; }
.selskapslokale h2 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.selskapslokale > .container > p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.selskapslokale-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; text-align: left;
}
.selskapslokale-list li {
  display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 500; font-size: 0.95rem;
  background: rgba(255,255,255,0.08); padding: 14px 16px; border-radius: 12px;
}
.selskapslokale-list span { font-size: 1.3rem; }

/* ---------- Kontaktskjema ---------- */
.kontaktskjema { background: var(--cream-2); }
.contact-form {
  max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label, .form-label { font-weight: 600; font-size: 0.9rem; color: var(--maroon-dark); }
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid rgba(122,31,43,0.18); background: var(--cream); color: var(--ink);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--maroon); }
.form-field textarea { resize: vertical; }
.checkbox-group { display: flex; gap: 22px; flex-wrap: wrap; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.94rem; color: var(--ink); cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--maroon-dark); cursor: pointer; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 14px; }

/* ---------- PDF modal ---------- */
#pdf-modal {
  position: fixed; inset: 0; background: rgba(20,10,10,0.85); z-index: 1200;
  display: flex; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: all 0.35s ease;
}
#pdf-modal.open { opacity: 1; visibility: visible; }
.pdf-modal-box {
  background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  width: min(900px, 100%); height: min(85vh, 1100px); display: flex; flex-direction: column;
}
.pdf-modal-head {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 22px;
  background: var(--maroon-dark); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.pdf-modal-actions { display: flex; align-items: center; gap: 16px; }
.pdf-modal-actions .btn { padding: 8px 18px; font-size: 0.85rem; }
#pdf-modal-close { background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; line-height: 1; opacity: 0.85; }
#pdf-modal-close:hover { opacity: 1; }
#pdf-frame { flex: 1; background: var(--cream); }

/* ---------- Catering ---------- */
.catering-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 70px; align-items: center; }
.catering-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.catering-text > p { color: var(--ink-soft); margin-bottom: 28px; }
.catering-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 34px; }
.catering-list li {
  display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.96rem;
  background: var(--cream-2); padding: 14px 16px; border-radius: 12px;
}
.catering-list span { font-size: 1.3rem; }
.catering-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }

/* ---------- Galleri ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item { border-radius: 14px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(122,31,43,0.55); opacity: 0; transition: opacity var(--transition); font-size: 1.6rem;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.12); }

#lightbox {
  position: fixed; inset: 0; background: rgba(20,10,10,0.92); z-index: 1200;
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: all 0.35s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
#lightbox-close {
  position: absolute; top: 26px; right: 34px; background: none; border: none; color: var(--white);
  font-size: 2.4rem; cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; }

/* ---------- CTA stripe ---------- */
.cta-stripe {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon-light));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-stripe::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(232,163,61,0.18), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(232,163,61,0.14), transparent 45%);
}
.cta-stripe-inner { position: relative; z-index: 1; }
.cta-stripe h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-stripe p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 1.05rem; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.kontakt-info h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  margin: 30px 0; display: flex; flex-direction: column; gap: 22px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 1.4rem; }
.info-row h4 { font-size: 1rem; margin-bottom: 3px; }
.info-row p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }
.kontakt-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.kontakt-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }

/* ---------- Footer ---------- */
.footer { background: var(--maroon-dark); color: rgba(255,255,255,0.85); padding-top: 70px; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .logo { color: var(--white); }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 260px; }
.footer-col h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.94rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { color: rgba(255,255,255,0.75); font-size: 0.94rem; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: center; gap: 6px 18px; flex-wrap: wrap;
}
.footer-bottom-inner p { margin: 0; }
.credit a { color: rgba(255,255,255,0.75); font-weight: 500; transition: color var(--transition); }
.credit a:hover { color: var(--gold-light); }

/* ---------- Floating buttons ---------- */
#float-order {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: var(--shadow-md);
  animation: pulse-btn 2.4s ease-in-out infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,163,61,0.5), var(--shadow-md); }
  50% { box-shadow: 0 0 0 14px rgba(232,163,61,0), var(--shadow-md); }
}

#back-to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--maroon-dark); color: var(--white); font-size: 1.2rem;
  box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 980px) {
  #nav, .header-cta { display: none; }
  #burger { display: flex; }

  .om-oss-grid, .catering-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .catering-media { order: -1; }
  .img-floating { width: 45%; left: -20px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .selskapslokale-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .logo-tagline { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .catering-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .img-floating { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  #float-order { width: 54px; height: 54px; font-size: 1.35rem; bottom: 20px; right: 20px; }
  #back-to-top { bottom: 20px; left: 20px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .frokost-banner { flex-direction: column; text-align: center; }
  .frokost-banner-text { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .pdf-modal-box { height: 80vh; }
}

@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
}
