/* ════════════════════════════════════════════════════════════════════
   SUREFOOT OSLO — Shared Stylesheet (Cinematic redesign)
   Drop-in replacement for /style.css

   Fonts: Oswald (condensed display) + Inter (body) — Surefoot Global DNA
   Accent: #E63946 (Surefoot red)
   Ground: #0a0a0a (black) — heroes, dark sections
   Paper: #fafafa  (light sections)

   Replaces the previous DM Serif + terracotta look.
   ════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  --sf-black: #0a0a0a;
  --sf-dark-1: #1a1a1a;
  --sf-dark-2: #2a2a2a;
  --sf-white: #ffffff;
  --sf-off-white: #f5f5f5;
  --sf-paper: #fafafa;
  --sf-red: #E63946;
  --sf-red-dark: #c12734;
  --sf-gray: #888888;
  --sf-gray-light: #cccccc;
  --sf-gray-line: #eeeeee;
  --sf-on-dark-85: rgba(255,255,255,0.85);
  --sf-on-dark-60: rgba(255,255,255,0.60);
  --sf-on-dark-15: rgba(255,255,255,0.15);
  --sf-on-dark-10: rgba(255,255,255,0.10);
  --sf-font-display: 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --sf-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sf-content-max: 1280px;
  --sf-ease: cubic-bezier(0.2, 0, 0.1, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sf-font-body);
  font-weight: 400;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.serif { font-family: var(--sf-font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }
.accent { color: var(--sf-red); }
.bg-light { background: var(--sf-paper); }
.bg-dark { background: var(--sf-black); color: #fff; }

.section-label, .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sf-red);
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow--on-dark { color: rgba(255,255,255,0.9); }

.section-h2 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #111;
}

/* ─── UTILITY STRIP (red top bar) ───────────────────────── */
.utility-strip {
  background: var(--sf-red);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
}
.utility-strip a { color: #fff; text-decoration: none; }
.utility-strip .sep { opacity: 0.55; margin: 0 10px; }

/* ─── NAV (kept class names from existing site for compatibility) ─ */
nav.site-nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background 0.25s var(--sf-ease), border-color 0.25s, color 0.25s, padding 0.2s;
}
nav.site-nav.scrolled,
body.light-hero nav.site-nav {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.08);
}
body.light-hero nav.site-nav:not(.scrolled) {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--sf-gray-line);
  color: #111;
}

nav.site-nav .logo {
  font-family: var(--sf-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: inherit;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-transform: uppercase;
}
nav.site-nav .logo::after {
  content: "Oslo";
  color: var(--sf-red);
  font-family: var(--sf-font-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  border-left: 1px solid currentColor;
  padding-left: 10px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.92;
  transition: color 0.15s;
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
}
.nav-links a:hover { color: var(--sf-red); }
.nav-links a.active { color: var(--sf-red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--sf-red);
}

.nav-book {
  background: var(--sf-red) !important;
  color: #fff !important;
  padding: 10px 16px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  border-radius: 0 !important;
}
.nav-book:hover { background: var(--sf-red-dark) !important; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-dark, .btn-white, .btn-border, .btn-outline-dark,
.btn-primary, .btn-ghost-light, .btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  transition: background 0.2s var(--sf-ease), color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
}
.btn-primary, .btn-dark {
  background: var(--sf-red); color: #fff; border-color: var(--sf-red);
}
.btn-primary:hover, .btn-dark:hover {
  background: var(--sf-red-dark); border-color: var(--sf-red-dark);
}
.btn-ghost-light, .btn-white {
  background: transparent; color: #fff; border-color: #fff;
}
.btn-ghost-light:hover, .btn-white:hover {
  background: #fff; color: #0a0a0a;
}
.btn-ghost-dark, .btn-outline-dark, .btn-border {
  background: transparent; color: #0a0a0a; border-color: #0a0a0a;
}
.btn-ghost-dark:hover, .btn-outline-dark:hover, .btn-border:hover {
  background: #0a0a0a; color: #fff;
}
.btn-lg { padding: 19px 32px; font-size: 13.5px; }

/* ─── HERO (cinematic, panorama) ───────────────────────── */
#hero, .page-hero {
  position: relative;
  min-height: 92vh;
  background: #000;
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
}
.page-hero { min-height: 60vh; }
.hero-panorama {
  position: absolute; inset: 0;
  background-image: url('/assets/hero-panorama.jpeg');
  background-size: cover;
  background-position: center 35%;
  animation: hero-pan 60s ease-in-out infinite alternate;
}
@keyframes hero-pan {
  0%   { background-position: 0% 35%;   transform: scale(1.02); }
  100% { background-position: 100% 35%; transform: scale(1.05); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.25) 100%);
}
.hero-credit {
  position: absolute;
  left: 32px;
  top: 130px;
  z-index: 4;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  display: flex; gap: 10px; align-items: center;
}
.hero-credit .sep { opacity: 0.5; }
/* Hide on shorter or narrower viewports to avoid colliding with hero content */
@media (max-width: 1100px), (max-height: 760px) {
  .hero-credit { display: none; }
}

#hero .hero-inner, .page-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--sf-content-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 32px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}

#hero h1 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0;
}
#hero h1 em {
  font-style: italic;
  color: var(--sf-red);
  font-weight: 700;
}
#hero .hero-meta {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  border-left: 2px solid var(--sf-red);
  padding-left: 20px;
  margin-bottom: 22px;
  max-width: 40ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-free, .hero-chips {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.chip--red {
  background: rgba(230,57,70,0.15);
  border-color: rgba(230,57,70,0.45);
  color: #ff6e7a;
}

/* ─── SECONDARY PAGE HERO (dark) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.page-hero h1 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: #fff;
  max-width: 16ch;
}
.page-hero h1 em { font-style: italic; color: var(--sf-red); font-weight: 700; }
.page-hero .lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 55ch;
  margin-top: 20px;
}
.page-hero .breadcrumb {
  display: flex; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.page-hero .breadcrumb .accent { color: var(--sf-red); }

/* ─── STRIP (trust line below hero) ───────────────────── */
.strip {
  background: #0a0a0a;
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.strip-item {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.strip-dot {
  width: 5px; height: 5px;
  background: var(--sf-red);
  flex-shrink: 0;
  border-radius: 0;
}

/* ─── STATS BAR (animated counters) ──────────────────── */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.statbar-cell {
  background: #0a0a0a;
  padding: 36px 24px;
  text-align: center;
}
.statbar-num {
  font-family: var(--sf-font-display);
  font-weight: 700;
  color: var(--sf-red);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.statbar-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* ─── SECTION WRAPPERS ───────────────────────────────── */
.section-wrap {
  max-width: var(--sf-content-max);
  margin: 0 auto;
  padding: 96px 32px;
}
.section--dark { background: var(--sf-black); color: #fff; }
.section--paper { background: var(--sf-paper); }

/* ─── INTRO BELT ─────────────────────────────────────── */
.intro-belt { background: var(--sf-paper); border-bottom: 1px solid var(--sf-gray-line); }
.intro-belt-inner {
  max-width: var(--sf-content-max);
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-belt h2 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}
.intro-belt h2 em { font-style: italic; color: var(--sf-red); font-weight: 700; }
.intro-belt p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 24px; max-width: 42ch; }
.link-arrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sf-red);
  display: inline-flex; gap: 6px; align-items: center;
}
.link-arrow:hover { color: var(--sf-red-dark); }

/* ─── PROCESS STEPS (number column) ─────────────────── */
.steps {
  display: grid;
  gap: 0;
  margin-top: 24px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--sf-gray-line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--sf-gray-line); }
.step-num {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--sf-red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 16px;
  color: #111;
  margin-bottom: 6px;
}
.step p { font-size: 14px; color: #555; line-height: 1.65; }

/* ─── SERVICES TABLE ─────────────────────────────────── */
.tjenester-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.tjenester-header p { font-size: 15px; color: #555; max-width: 38ch; line-height: 1.6; }
.services-table { width: 100%; border-collapse: collapse; }
.services-table tr {
  border-top: 1px solid var(--sf-gray-line);
  transition: background 0.15s;
}
.services-table tr:last-child { border-bottom: 1px solid var(--sf-gray-line); }
.services-table tr:hover { background: var(--sf-paper); }
.services-table td { padding: 28px 0; vertical-align: top; }
.svc-num {
  font-family: var(--sf-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--sf-red);
  letter-spacing: 0.08em;
  padding-right: 32px;
  padding-top: 4px;
  width: 60px;
}
.svc-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 22px;
  color: #111;
  margin-bottom: 8px;
}
.svc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 480px;
}
.svc-price {
  text-align: right;
  padding-left: 32px;
  white-space: nowrap;
}
.svc-price-main {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: 26px;
  color: #111;
  letter-spacing: 0.01em;
}
.svc-price-sub { font-size: 11.5px; color: var(--sf-gray); letter-spacing: 0.06em; margin-top: 4px; }
.badge-free {
  display: inline-block;
  background: var(--sf-red);
  color: #fff;
  font-family: var(--sf-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ─── FAQ ACCORDION ──────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  margin-top: 40px;
}
.faq-item { border-top: 1px solid var(--sf-gray-line); }
.faq-item:last-child { border-bottom: 1px solid var(--sf-gray-line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #111;
  user-select: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--sf-red); }
.faq-toggle {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.2s, background 0.15s, color 0.15s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--sf-red);
  color: #fff;
  border-color: var(--sf-red);
}
.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 60ch;
}
.faq-item.open .faq-a { display: block; }

/* dark variant */
.section--dark .faq-item { border-color: rgba(255,255,255,0.12); }
.section--dark .faq-q { color: #fff; }
.section--dark .faq-a { color: rgba(255,255,255,0.7); }

/* ─── REVIEWS ───────────────────────────────────────── */
.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.rating-line { font-size: 13px; color: var(--sf-gray); letter-spacing: 0.06em; }
.rating-line strong { color: #111; font-size: 15px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 32px 28px;
  border-left: 3px solid var(--sf-red);
  border-top: 1px solid var(--sf-gray-line);
  border-right: 1px solid var(--sf-gray-line);
  border-bottom: 1px solid var(--sf-gray-line);
}
.review-stars {
  font-size: 13px;
  color: var(--sf-red);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}
.review-meta {
  font-size: 11px;
  color: var(--sf-gray);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ─── KONTAKT ──────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.kontakt-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kd-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sf-red);
  margin-bottom: 4px;
}
.kd-value { font-size: 16px; color: #111; line-height: 1.5; }
.kd-value a { color: var(--sf-red); }

.map-placeholder {
  background: #0a0a0a;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.map-placeholder svg { width: 100%; height: 100%; display: block; }

/* ─── BOOKING BANNER ──────────────────────────────────── */
.booking-section {
  background: var(--sf-black);
  color: #fff;
  padding: 120px 32px;
  text-align: center;
  border-top: 3px solid var(--sf-red);
}
.booking-section h2 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 16px 0 22px;
}
.booking-section h2 em { font-style: italic; color: var(--sf-red); font-weight: 700; }
.booking-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}
.booking-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.booking-foot {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
}
.booking-foot .accent { color: var(--sf-red); }

/* ─── STICKY BOOK BAR ─────────────────────────────────── */
.sticky-book {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: #0a0a0a;
  border-top: 2px solid var(--sf-red);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transform: translateY(110%);
  transition: transform 0.4s var(--sf-ease);
  gap: 16px;
}
.sticky-book.visible { transform: translateY(0); }
.sticky-book-msg {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.sticky-book-msg .accent { color: var(--sf-red); }
.sticky-book-msg .sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.sticky-book-btn {
  background: var(--sf-red);
  color: #fff;
  padding: 14px 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.sticky-book-btn:hover { background: var(--sf-red-dark); }

/* ─── PRODUCT CATEGORIES (4 tiles) ───────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat {
  background: #fff;
  border: 1px solid var(--sf-gray-line);
  display: block;
  cursor: pointer;
  transition: transform 0.2s var(--sf-ease), border-color 0.2s;
  color: inherit;
}
.cat:hover { transform: translateY(-4px); border-color: var(--sf-red); }
.cat-img {
  aspect-ratio: 5/4;
  background-color: #1a1a1a;
  background-size: cover; background-position: center;
}
.cat-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.cat-tag {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--sf-red);
  letter-spacing: 0.08em;
}
.cat-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 20px;
  color: #111;
  margin: 0;
  line-height: 1.1;
}
.cat-blurb {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.cat-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px; border-top: 1px solid var(--sf-gray-line);
  margin-top: 8px;
}
.cat-price {
  font-family: var(--sf-font-display);
  font-weight: 700;
  font-size: 18px;
  color: #111;
}
.cat-cta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sf-red);
}

/* ─── PHOTO INTERLUDE ────────────────────────────────── */
.interlude {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: center;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.interlude .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.interlude .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.interlude--right .veil {
  background: linear-gradient(270deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.interlude-inner {
  position: relative; z-index: 2;
  max-width: var(--sf-content-max);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.interlude--right .interlude-inner { text-align: right; }
.interlude-inner > div {
  max-width: 42ch;
}
.interlude--right .interlude-inner > div { margin-left: auto; }
.interlude h2 {
  font-family: var(--sf-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 12px 0 16px;
}
.interlude p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee {
  background: #0a0a0a;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  font-family: var(--sf-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
}
.marquee-track .dot { color: var(--sf-red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding: 80px 32px 32px;
  border-top: 3px solid var(--sf-red);
}
.footer-inner {
  max-width: var(--sf-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  font-family: var(--sf-font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: inline-block;
}
.footer-brand .logo::after {
  content: "Oslo · Skøyen";
  color: var(--sf-red);
  font-family: var(--sf-font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--sf-red); }
.footer-bottom {
  max-width: var(--sf-content-max);
  margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--sf-red); }

/* ─── HAMBURGER (mobile) ─────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .statbar { grid-template-columns: repeat(2, 1fr); }
  nav.site-nav { padding: 14px 20px; }
  .nav-toggle { display: flex; color: inherit; }
  .nav-links {
    display: none;
    position: fixed;
    top: calc(34px + 56px); left: 0; right: 0; bottom: 0;
    background: #0a0a0a; color: #fff;
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
    z-index: 49;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { display: block; padding: 18px 24px; font-size: 14px; }
  .nav-book { background: var(--sf-red) !important; margin: 16px 24px !important; }
}
@media (max-width: 900px) {
  #hero .hero-inner, .page-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .strip { gap: 18px; padding: 16px 24px; }
  .section-wrap { padding: 64px 24px; }
  .intro-belt-inner { grid-template-columns: 1fr; padding: 64px 24px; gap: 32px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-table td { display: block; padding: 6px 0; }
  .services-table tr { display: block; padding: 24px 0; }
  .svc-price { text-align: left; padding-left: 0; margin-top: 12px; }
  .svc-num { padding-bottom: 8px; }
  .booking-section { padding: 80px 24px; }
  .booking-foot { gap: 18px; }
  footer.site-footer { padding: 56px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cat-grid { grid-template-columns: 1fr; }
}

/* ─── LOGO: hvit pa moerk bakgrunn (nav + footer) ──────────────────── */
.site-nav .logo img,
.site-footer .logo img {
  filter: brightness(0) invert(1);
}

/* ============================================================
   GUIDE-SIDER (SEO-undersider) — komponent-styling
   Guidene gjenbruker noen klasser (.strip, .faq-toggle) med annen
   markup enn hovedsidene. :has() og button.faq-toggle treffer kun
   guide-variantene, ikke hovedsidene.
   ============================================================ */
.section-wrap-narrow { max-width: 820px; margin: 0 auto; padding: 96px 32px; }
.prose p { font-size: 17px; line-height: 1.75; color: #333; margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }

/* Myte-/fristelse-kort */
.myth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.myth-card { background: #fff; border: 1px solid var(--sf-gray-line); border-top: 3px solid var(--sf-red); padding: 32px 28px; }
.myth-card h3 { font-family: var(--sf-font-display); font-weight: 600; font-size: 21px; margin: 8px 0 14px; color: var(--sf-black); }
.myth-card p { font-size: 15px; line-height: 1.6; color: #555; margin: 0 0 12px; }
.myth-card p:last-child { margin-bottom: 0; }
.myth-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sf-red); }

/* "Fra butikken"-sitat (mørk full-bredde) */
.from-the-shop { background: var(--sf-black); color: #fff; }
.from-the-shop .section-label { color: var(--sf-red); }
.from-the-shop blockquote { font-family: var(--sf-font-display); font-weight: 300; font-size: clamp(23px,3vw,36px); line-height: 1.3; margin: 16px 0 22px; color: #fff; }
.from-the-shop .quote-credit { font-size: 14px; letter-spacing: .04em; color: var(--sf-on-dark-60); margin: 0; }

/* Guide-variant av .strip — vertikale verdiløft-kort (har nested <div>) */
.strip:has(.strip-item > div) { background: transparent; color: inherit; border: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; margin-top: 40px; }
.strip-item:has(> div) { display: flex; gap: 14px; align-items: flex-start; font-size: inherit; font-weight: 400; letter-spacing: normal; text-transform: none; }
.strip-item:has(> div) .strip-dot { margin-top: 8px; width: 7px; height: 7px; }
.strip-item > div strong { display: block; font-family: var(--sf-font-display); font-weight: 600; font-size: 17px; color: var(--sf-black); margin-bottom: 6px; }
.strip-item > div p { font-size: 14px; line-height: 1.55; color: #555; margin: 0; }

/* Guide-variant av FAQ — hele spørsmålet er en <button> */
.faq-q > button.faq-toggle { width: 100%; height: auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; border: 0; background: none; font-family: inherit; font-size: 17px; font-weight: 600; text-align: left; color: var(--sf-black); cursor: pointer; padding: 18px 0; }
.faq-q > button.faq-toggle > span { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--sf-gray-light); font-size: 16px; transition: transform .2s; }
.faq-item.open .faq-q > button.faq-toggle > span { transform: rotate(45deg); background: var(--sf-red); color: #fff; border-color: var(--sf-red); }
