/* ============================================
   SVEA RIKES LACKERINGSFIRMA — STYLES
   Royal Nordic Auto Editorial
============================================ */

:root {
  /* Palette */
  --ink: #0A0E1A;
  --ink-2: #0F1422;
  --ink-3: #161C2E;
  --ink-4: #1E2540;
  --royal: #1E3A8C;
  --royal-deep: #0F1F4D;
  --gold: #D4A857;
  --gold-bright: #F5C26B;
  --gold-pale: #E8CB8E;
  --cream: #F4EBD7;
  --paper: #ECE3D0;
  --muted: #8590A6;
  --muted-deep: #4A5470;
  --crimson: #8B1E2C;

  /* Typography */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1440px;
  --gutter: clamp(1.5rem, 3vw, 3rem);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Background atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(30, 58, 140, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 168, 87, 0.06) 0%, transparent 50%),
    var(--ink);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 87, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 87, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
}

/* Grain overlay (GPU-promoted; lighter blend) */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  transform: translateZ(0);
  will-change: transform;
}

/* ============================================
   LOADER
============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.loader-mark {
  width: 80px;
  height: 80px;
  animation: loaderSpin 3s ease-in-out infinite;
}
.loader-mark svg { width: 100%; height: 100%; }
@keyframes loaderSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.loader-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.6em;
  color: var(--gold);
  font-weight: 400;
  display: flex;
}
.loader-text span {
  opacity: 0;
  animation: loaderLetter 0.6s var(--ease-out) forwards;
}
.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.18s; }
.loader-text span:nth-child(3) { animation-delay: 0.26s; }
.loader-text span:nth-child(4) { animation-delay: 0.34s; }
.loader-text span:nth-child(5) { animation-delay: 0.42s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }
.loader-text span:nth-child(7) { animation-delay: 0.58s; }
.loader-text span:nth-child(8) { animation-delay: 0.66s; }
.loader-text span:nth-child(9) { animation-delay: 0.74s; }
.loader-text span:nth-child(10) { animation-delay: 0.82s; }
@keyframes loaderLetter {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

.loader-bar {
  width: 220px;
  height: 1px;
  background: rgba(212, 168, 87, 0.15);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loaderFill 2s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem var(--gutter);
  transition: all 0.4s var(--ease-out);
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0) 100%);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.12);
  padding: 1rem var(--gutter);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--cream);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-line1 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-brand-line2 {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  transition: color 0.3s;
}
.nav-menu a::before {
  content: attr(data-num);
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.5;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover svg { transform: translateX(3px); }

@media (max-width: 980px) {
  .nav-menu { display: none; }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Enhetlig bakgrund — samma som bokningssektionen (steg 4). */
  background:
    radial-gradient(ellipse at 85% 10%, rgba(30, 58, 140, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%) translateZ(0);
  animation: glowPulse 8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 87, 0.4), transparent);
  width: 100%;
  will-change: transform;
}
.streak-1 { top: 25%; animation: streakMove 8s linear infinite; }
.streak-2 { top: 55%; animation: streakMove 12s linear infinite reverse; }
.streak-3 { top: 80%; animation: streakMove 10s linear infinite; }
@keyframes streakMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 87, 0.15);
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
  padding: 0.85rem 0;
  margin-bottom: 4rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.hero-marquee-top { margin-top: 4rem; }

.marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-meta-left {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}

.meta-stamp {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.stamp-big {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.title-line {
  display: block;
  overflow: hidden;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 1.2s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 60ms + 1.4s);
}
.title-line .word:nth-child(1) { --d: 0; }
.title-line .word:nth-child(2) { --d: 1; }
.title-line .word:nth-child(3) { --d: 2; }
.hero-title .title-line:nth-child(1) .word { animation-delay: 1.4s; }
.hero-title .title-line:nth-child(1) .word:nth-child(2) { animation-delay: 1.5s; }
.hero-title .title-line:nth-child(2) .word:nth-child(1) { animation-delay: 1.6s; }
.hero-title .title-line:nth-child(2) .word:nth-child(2) { animation-delay: 1.7s; }
.hero-title .title-line:nth-child(3) .word:nth-child(1) { animation-delay: 1.8s; }
.hero-title .title-line:nth-child(3) .word:nth-child(2) { animation-delay: 1.9s; }

@keyframes wordReveal {
  to { transform: translateY(0); }
}

.word.italic {
  font-style: italic;
  font-weight: 400;
}
.word.gold, .gold {
  color: var(--gold);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 235, 215, 0.75);
  max-width: 540px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.4s forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover .btn-bg { transform: translateX(0); }
.btn-primary .btn-label, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(244, 235, 215, 0.3);
  background: transparent;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: heroLogoIn 1.4s var(--ease-out) 0.8s forwards;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.logo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.logo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
}
.logo-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.logo-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.logo-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.logo-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logoFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(212, 168, 87, 0.15);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
  will-change: transform;
}
.logo-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.logo-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.caption-num { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 3s forwards;
}
.scroll-text {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
  will-change: transform;
}
@keyframes scrollDown {
  from { transform: translateY(-200%); }
  to { transform: translateY(200%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-meta-left { display: none; }
}

/* ============================================
   SECTION COMMONS
============================================ */
.section-num {
  position: absolute;
  top: 4rem;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.section-num span:first-child {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MANIFESTO
============================================ */
.manifesto {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}

.manifesto-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  margin-left: 5rem;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 6rem;
  max-width: 1200px;
}
.manifesto-line {
  margin-bottom: 1rem;
}
.word-reveal {
  display: inline;
  opacity: 0.2;
  transition: opacity 0.6s var(--ease-out), color 0.6s var(--ease-out);
  white-space: pre-wrap;
}
.word-reveal.italic { font-style: italic; }
.word-reveal.lit {
  opacity: 1;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}

.manifesto-pillar {
  position: relative;
  padding-top: 2rem;
}
.manifesto-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}
.manifesto-pillar h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.manifesto-pillar p {
  color: rgba(244, 235, 215, 0.65);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-eyebrow { margin-left: 0; }
}

/* ============================================
   SERVICES
============================================ */
.services {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}

.services-header {
  max-width: var(--container);
  margin: 0 auto 5rem;
  text-align: center;
}

.services-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.services-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.services-title span { display: block; }
.services-title em { font-style: italic; color: var(--gold); }

.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.5rem;
}

.service {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(212, 168, 87, 0.1);
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 100%, rgba(212, 168, 87, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.service:hover {
  border-color: rgba(212, 168, 87, 0.4);
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.04) 0%, rgba(255,255,255,0) 100%);
}
.service:hover::before { opacity: 1; }

.service-large {
  grid-column: span 2;
  grid-row: span 2;
}
.service-wide {
  grid-column: span 2;
}

.service-num {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.service-content h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-out);
}
.service-large .service-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.service:hover .service-content h3 { color: var(--gold); }

.service-content p {
  color: rgba(244, 235, 215, 0.65);
  line-height: 1.7;
  font-size: 0.95rem;
}
.service-content em { color: var(--gold); font-style: italic; }

.service-detail {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.service-detail li {
  font-size: 0.85rem;
  color: rgba(244, 235, 215, 0.55);
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 87, 0.08);
  position: relative;
}
.service-detail li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-corner {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transform: translate(10px, 10px);
  transition: all 0.5s var(--ease-out);
}
.service:hover .service-corner {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-large, .service-wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-large, .service-wide { grid-column: span 1; }
}

/* ============================================
   PROCESS
============================================ */
.process {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}

.process-header {
  max-width: var(--container);
  margin: 0 auto 5rem;
}

.process-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.process-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.process-title span { display: block; }
.process-title em { font-style: italic; color: var(--gold); }

.process-rail {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  padding-left: 4rem;
}

.process-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 87, 0.3) 5%, rgba(212, 168, 87, 0.3) 95%, transparent);
}

.process-step {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(212, 168, 87, 0.08);
  position: relative;
  transition: padding 0.4s var(--ease-out);
}
.process-step:last-child { border-bottom: none; }

.process-step::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 3.5rem;
  width: 13px;
  height: 13px;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.4s var(--ease-out);
}
.process-step:hover::before {
  background: var(--gold);
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 20px rgba(212, 168, 87, 0.6);
}

.process-step:hover {
  padding-left: 1rem;
}

.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
  width: 100px;
}

.step-body { flex: 1; }
.step-body h4 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-out);
}
.process-step:hover .step-body h4 { color: var(--gold); }
.step-body p {
  color: rgba(244, 235, 215, 0.65);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 600px;
}
.step-body em { color: var(--gold); font-style: italic; }

@media (max-width: 720px) {
  .process-rail { padding-left: 2rem; }
  .process-line { left: 1rem; }
  .process-step { flex-direction: column; gap: 1rem; padding: 2rem 0; }
  .process-step::before { left: -1rem; top: 2rem; }
  .step-num { font-size: 2.5rem; width: auto; }
}

/* ============================================
   STATS
============================================ */
.stats {
  position: relative;
  padding: 6rem var(--gutter);
  background:
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border-top: 1px solid rgba(212, 168, 87, 0.15);
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 58, 140, 0.2) 0%, transparent 70%);
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 87, 0.3), transparent);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
}

/* ============================================
   GALLERY
============================================ */
.gallery {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
}

.gallery-header {
  max-width: var(--container);
  margin: 0 auto 5rem;
}

.gallery-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.gallery-title span { display: block; }
.gallery-title em { font-style: italic; }

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 1.5rem;
}

.gallery-item-1 { grid-column: span 7; grid-row: span 4; }
.gallery-item-2 { grid-column: span 5; grid-row: span 3; }
.gallery-item-3 { grid-column: span 5; grid-row: span 4; }
.gallery-item-4 { grid-column: span 7; grid-row: span 3; }
.gallery-item-5 { grid-column: span 12; grid-row: span 4; }

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-6px); }

.gallery-img {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--c1), var(--c2)),
    radial-gradient(circle at 30% 70%, var(--c3), transparent 50%);
  background-blend-mode: overlay;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  border: 1px solid rgba(212, 168, 87, 0.15);
  transition: border-color 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-img {
  border-color: rgba(212, 168, 87, 0.5);
}

.gallery-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--c3) 0%, transparent 50%);
  opacity: 0.3;
  pointer-events: none;
}
.gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
  pointer-events: none;
}

.img-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-200%) skewX(-20deg);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover .img-shimmer {
  transform: translateX(300%) skewX(-20deg);
}

.img-label {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 14, 26, 0.82);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 168, 87, 0.3);
}

.gallery-item figcaption {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.cap-num { color: var(--gold); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item-4, .gallery-item-5 {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ============================================
   INSURANCE
============================================ */
.insurance {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%);
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}

.insurance-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.insurance-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.insurance-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.insurance-title span { display: block; }
.insurance-title em { font-style: italic; }

.insurance-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244, 235, 215, 0.7);
  max-width: 540px;
  margin-bottom: 3rem;
}

.insurance-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ins-feature {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 168, 87, 0.15);
}

.ins-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ins-feature-icon svg { width: 100%; height: 100%; }

.ins-feature h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.ins-feature p {
  font-size: 0.9rem;
  color: rgba(244, 235, 215, 0.6);
  line-height: 1.6;
}

.insurance-side {
  position: sticky;
  top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.partner-stamp {
  position: relative;
  width: 220px;
  height: 220px;
}
.stamp-ring {
  position: relative;
  width: 100%;
  height: 100%;
}
.stamp-ring svg {
  width: 100%;
  height: 100%;
  animation: ringRotate 60s linear infinite;
  will-change: transform;
}
.stamp-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.stamp-crown {
  color: var(--gold);
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(212, 168, 87, 0.5));
}
.stamp-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.stamp-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.stamp-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  border-top: 1px solid rgba(212, 168, 87, 0.15);
  padding-top: 1.5rem;
}
.partner-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(244, 235, 215, 0.6);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(212, 168, 87, 0.08);
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.02em;
}
.partner-logo:hover {
  color: var(--gold);
  padding-left: 1.5rem;
  border-bottom-color: rgba(212, 168, 87, 0.3);
}

@media (max-width: 900px) {
  .insurance-inner { grid-template-columns: 1fr; }
  .insurance-features { grid-template-columns: 1fr; }
  .insurance-side { position: static; }
}

/* ============================================
   TESTIMONIAL
============================================ */
.testimonial {
  padding: 10rem var(--gutter) 8rem;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30, 58, 140, 0.15) 0%, transparent 60%),
    var(--ink);
  border-top: 1px solid rgba(212, 168, 87, 0.1);
  border-bottom: 1px solid rgba(212, 168, 87, 0.1);
  overflow: hidden;
}

.testimonial-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-style: italic;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 3rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.testimonial-quote em.gold {
  color: var(--gold);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.author-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.5rem;
}
.author-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.author-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   CONTACT
============================================ */
.contact {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  /* Enhetlig bakgrund — samma som bokningssektionen (steg 4). */
  background:
    radial-gradient(ellipse at 85% 10%, rgba(30, 58, 140, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.contact-title span { display: block; }
.contact-title em { font-style: italic; color: var(--gold); }

.contact-lede {
  font-size: 1.1rem;
  color: rgba(244, 235, 215, 0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(212, 168, 87, 0.15);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.contact-card:hover {
  border-color: rgba(212, 168, 87, 0.5);
  transform: translateY(-6px);
}
.contact-card:hover::before { opacity: 1; }

.contact-card-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.contact-card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card-value {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0.75rem 0;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-out);
}
.contact-card:hover .contact-card-value { color: var(--gold); }

.contact-card-hint {
  font-size: 0.85rem;
  color: rgba(244, 235, 215, 0.5);
  margin-top: auto;
}

.contact-card-arrow {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  transition: all 0.4s var(--ease-out);
}
.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: rotate(0deg) translate(4px, -4px);
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid rgba(212, 168, 87, 0.15);
}

.footer-marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(212, 168, 87, 0.15);
}
.marquee-large {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.02em;
  animation-duration: 30s;
}
.marquee-large .dot-large {
  color: var(--gold);
  margin: 0 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(244, 235, 215, 0.6);
  line-height: 1.8;
}

.footer-col a {
  color: rgba(244, 235, 215, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--cream);
}
.footer-bottom {
  border-top: 1px solid rgba(212, 168, 87, 0.1);
  padding: 1.5rem var(--gutter);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-divider { color: var(--gold); }

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

/* ============================================
   UTILITY
============================================ */
a, button { cursor: pointer; }

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Synligt fokus för tangentbordsnavigering */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   MOBILE NAV (hamburgare + overlay-meny)
============================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(212, 168, 87, 0.35);
  z-index: 1002;
}
.nav-burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; }
.mobile-menu li + li { border-top: 1px solid rgba(212, 168, 87, 0.1); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s, color 0.3s;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu.open li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.open li:nth-child(2) a { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(4) a { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(5) a { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(6) a { transition-delay: 0.3s; }
.mobile-menu.open li:nth-child(7) a { transition-delay: 0.35s; }
.mobile-menu a::before {
  content: attr(data-num);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.mobile-menu a:hover, .mobile-menu .mobile-menu-cta { color: var(--gold); }
.mobile-menu-foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 87, 0.2);
}
.mobile-menu-foot a {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  opacity: 1;
  transform: none;
  padding: 0;
}
@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ============================================
   BOOKING — BOKNINGSBOKEN
============================================ */
.booking {
  position: relative;
  padding: 10rem var(--gutter) 8rem;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(30, 58, 140, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid rgba(212, 168, 87, 0.15);
  overflow: hidden;
}
.booking::before {
  content: '♛';
  position: absolute;
  right: -2rem;
  top: 2rem;
  font-size: clamp(14rem, 26vw, 26rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.035;
  pointer-events: none;
}

.booking-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.booking-header { margin-bottom: 4rem; }

.booking-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
/* Bara de direkta reveal-raderna blir block; den nästlade .gold ("tid") förblir
   inline så att punkten stannar kvar på samma rad som "tid". */
.booking-title > span { display: block; }
.booking-title em { font-style: italic; }
.booking-lede {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 235, 215, 0.7);
  max-width: 520px;
}

/* ── Skal / laddning / fallback ── */
.bk-loading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-loading-mark {
  color: var(--gold);
  font-size: 1.3rem;
  animation: glowPulse 2s ease-in-out infinite;
}

.booking-fallback {
  max-width: 560px;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(212, 168, 87, 0.25);
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.05), transparent 70%);
  text-align: center;
  margin: 0 auto;
}
.bf-crown { color: var(--gold); font-size: 2rem; margin-bottom: 1rem; filter: drop-shadow(0 0 10px rgba(212, 168, 87, 0.5)); }
.booking-fallback h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.booking-fallback p {
  color: rgba(244, 235, 215, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.bf-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 87, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.bf-phone:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.bf-hint {
  display: block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-retry { text-align: center; margin-top: 1.5rem; }

/* ── Wizard-layout ── */
.bk-wizard {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Liggaren (sammanfattning) ── */
.bk-ledger {
  position: sticky;
  top: 7rem;
  border: 1px solid rgba(212, 168, 87, 0.3);
  background:
    linear-gradient(160deg, rgba(212, 168, 87, 0.06) 0%, rgba(255,255,255,0.01) 40%),
    var(--ink-2);
  padding: 2rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.bk-ledger::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 168, 87, 0.12);
  pointer-events: none;
}

.bk-ledger-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212, 168, 87, 0.25);
  margin-bottom: 0.5rem;
}
.bk-ledger-crown { color: var(--gold); font-size: 1.1rem; }
.bk-ledger-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.bk-ledger-no {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.bk-ledger-rows { margin: 0; }
.bk-ledger-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 168, 87, 0.1);
}
.bk-ledger-row dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}
.bk-ledger-row dt span { color: var(--gold); font-family: var(--serif); font-style: italic; }
.bk-ledger-row dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(244, 235, 215, 0.55);
  transition: color 0.4s;
  overflow-wrap: anywhere;
}
.bk-ledger-row dd em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.bk-ledger-row.filled dd { color: var(--cream); }
.bk-dash { color: var(--muted-deep); }

.bk-ledger-total { padding: 1.25rem 0 0.5rem; }
.bk-ledger-total > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0;
}
.bk-total-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-total-val {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
}
.bk-ledger-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(244, 235, 215, 0.62);
}

/* Sigill-platsen i liggaren */
.bk-seal-slot {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
}
.bk-seal {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border: 1px dashed rgba(212, 168, 87, 0.35);
  color: rgba(212, 168, 87, 0.35);
  transition: all 0.4s var(--ease-out);
}
.bk-seal-crown { font-size: 1.3rem; line-height: 1; }
.bk-seal-crown-svg { width: 30px; height: auto; }
.bk-seal-text {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}
.bk-seal-hint {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-deep);
}
.bk-seal-slot.stamped .bk-seal {
  border: none;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 235, 190, 0.35), transparent 45%),
    radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 55%, #9B7A3F 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 3px rgba(212, 168, 87, 0.25),
    0 10px 30px -8px rgba(212, 168, 87, 0.5);
  animation: sealStamp 0.7s var(--ease-bounce);
}
.bk-seal-slot.stamped .bk-seal-hint { color: var(--gold); }
@keyframes sealStamp {
  0%   { transform: scale(2.1) rotate(-14deg); opacity: 0; }
  55%  { transform: scale(0.92) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); }
}

/* ── Huvudpanelen ── */
.bk-main {
  border: 1px solid rgba(212, 168, 87, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 60%);
  padding: 2rem 2.5rem 2.5rem;
  min-height: 540px;
}

/* Stegraden */
.bk-rail {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 87, 0.12);
  flex-wrap: wrap;
}
.bk-rail-step span, .bk-rail-step button {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  gap: 0.45rem;
  transition: color 0.3s;
}
.bk-rail-num { font-family: var(--serif); font-style: italic; letter-spacing: 0; }
.bk-rail-step.on span { color: var(--gold); }
.bk-rail-step.done span, .bk-rail-step.done button { color: rgba(244, 235, 215, 0.7); }
.bk-rail-step.done button:hover { color: var(--gold); }
.bk-rail-sep {
  flex: 1;
  min-width: 14px;
  height: 1px;
  background: rgba(212, 168, 87, 0.15);
}

.bk-step-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.bk-step-title span { color: var(--gold); font-style: italic; margin-right: 0.4rem; }

.bk-error {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(139, 30, 44, 0.6);
  background: rgba(139, 30, 44, 0.15);
  color: #E8A0AA;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Steg 1: tjänster ── */
.bk-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.bk-service {
  position: relative;
  text-align: left;
  padding: 1.4rem 1.4rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(212, 168, 87, 0.18);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.35s var(--ease-out);
  font-family: var(--sans);
}
.bk-service:hover { border-color: rgba(212, 168, 87, 0.5); transform: translateY(-2px); }
.bk-service.sel {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.1), rgba(212, 168, 87, 0.02));
}
.bk-service.sel::after {
  content: '✦';
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.bk-service-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.bk-service-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(244, 235, 215, 0.6);
  line-height: 1.5;
}
.bk-service-count {
  margin-top: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.bk-jobs-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.bk-jobs { animation: fadeUp 0.5s var(--ease-out); }
.bk-job {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(212, 168, 87, 0.12);
  border-bottom: none;
  cursor: pointer;
  transition: background 0.3s;
}
.bk-job:last-child { border-bottom: 1px solid rgba(212, 168, 87, 0.12); }
.bk-job:hover { background: rgba(212, 168, 87, 0.04); }
.bk-job.sel { background: rgba(212, 168, 87, 0.07); }
.bk-job input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.bk-job-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(212, 168, 87, 0.65);
  position: relative;
  transition: all 0.25s;
}
.bk-job.sel .bk-job-check { background: var(--gold); border-color: var(--gold); }
.bk-job.sel .bk-job-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--ink);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.bk-job input:focus-visible + .bk-job-check { outline: 1px solid var(--gold); outline-offset: 3px; }
.bk-job-body { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.bk-job-name { font-size: 0.98rem; font-weight: 400; }
.bk-job-desc { font-size: 0.8rem; color: rgba(244, 235, 215, 0.55); line-height: 1.5; }
.bk-job-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}
.bk-job-price { color: var(--gold); }

/* ── Steg 2: kalender + tider ── */
.bk-when {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 2.5rem;
  align-items: start;
}
.bk-cal {
  border: 1px solid rgba(212, 168, 87, 0.18);
  padding: 1.4rem;
}
.bk-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.bk-cal-month {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.bk-cal-nav {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 168, 87, 0.5);
  color: var(--gold);
  transition: all 0.3s;
}
.bk-cal-nav:hover:not(:disabled) { background: var(--gold); color: var(--ink); }
.bk-cal-nav:disabled { opacity: 0.25; }
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal-names span {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
}
.cal-pad { aspect-ratio: 1; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--cream);
  position: relative;
  transition: all 0.25s;
}
/* En guldsignal räcker: den lilla punkten markerar lediga dagar — ram bara
   vid hover/val, annars dränks sidan i guld. */
.cal-day:not(:disabled)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.cal-day:not(:disabled):hover { border-color: var(--gold); background: rgba(212, 168, 87, 0.08); }
.cal-day:disabled { color: var(--muted-deep); opacity: 0.45; }
.cal-day.today { text-decoration: underline; text-underline-offset: 3px; }
.cal-day.sel {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.cal-day.sel::after { background: var(--ink); }
.bk-cal-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-cal-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.4rem;
}
.bk-cal-legend .dot-free { background: var(--gold); }
.bk-cal-legend .dot-busy { background: var(--muted-deep); }

.bk-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 0.6rem;
}
.bk-time {
  padding: 0.8rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(212, 168, 87, 0.5);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.25s;
}
.bk-time:hover { border-color: var(--gold); background: rgba(212, 168, 87, 0.08); }
.bk-time.sel {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.bk-times-empty {
  padding: 1.5rem 0;
  color: rgba(244, 235, 215, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Steg 3: formulär ── */
.bk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.bk-field { display: flex; flex-direction: column; gap: 0.45rem; }
.bk-field label, .bk-plate-wrap label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-field label i, .bk-plate-wrap label i { font-style: normal; color: var(--muted); text-transform: none; letter-spacing: 0.1em; }
.bk-field input, .bk-field textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 168, 87, 0.45);
  cursor: text;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.bk-field input:focus, .bk-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 168, 87, 0.04);
}
.bk-field input::placeholder, .bk-field textarea::placeholder { color: var(--muted); }
.bk-field.err input { border-color: rgba(139, 30, 44, 0.7); }
.bk-field-err { font-size: 0.78rem; color: #E8A0AA; }
.bk-field-hint { font-size: 0.75rem; color: var(--muted); }

/* Autofyll: behåll mörkt tema (Chrome målar annars ett blekt block) */
.bk-field input:-webkit-autofill,
.bk-field textarea:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #131a2d;
  -webkit-text-fill-color: var(--cream);
  caret-color: var(--cream);
  transition: background-color 99999s ease-out;
}
.bk-plate input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #f1f1f1;
  -webkit-text-fill-color: #14161a;
}
.bk-field textarea { resize: vertical; min-height: 80px; }

/* Registreringsskylt */
.bk-plate-wrap { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.4rem; }
.bk-plate {
  display: flex;
  width: min(300px, 100%);
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #1a1a1a;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.4);
  background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 100%);
}
.bk-plate-band {
  width: 44px;
  background: linear-gradient(180deg, #2A4FA8, #0F1F4D);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
}
.bk-plate-stars { font-size: 0.55rem; color: #F5C26B; letter-spacing: 0.1em; }
.bk-plate input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #14161a;
  text-align: center;
  min-width: 0;
}
.bk-plate input { cursor: text; }
.bk-plate input:focus { outline: none; }
.bk-plate input::placeholder { color: #8c8c8c; }
.bk-plate-wrap.err .bk-plate { border-color: rgba(139, 30, 44, 0.9); }

/* Honeypot — osynligt för människor */
.bk-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Steg 4: granska ── */
.bk-review { border-top: 1px solid rgba(212, 168, 87, 0.15); }
.bk-review-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(212, 168, 87, 0.1);
}
.bk-review-row span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}
.bk-review-row strong {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--cream);
  overflow-wrap: anywhere;
}
.bk-review-total strong { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.bk-fineprint {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(244, 235, 215, 0.62);
  max-width: 520px;
}

/* ── Knappar ── */
.bk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.bk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  transition: all 0.35s var(--ease-out);
}
.bk-btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.bk-btn-gold:hover:not(:disabled) { background: var(--gold-bright); transform: translateY(-1px); }
.bk-btn-gold:disabled { opacity: 0.35; }
.bk-btn-ghost {
  background: transparent;
  border: 1px solid rgba(244, 235, 215, 0.5);
  color: var(--cream);
}
.bk-btn-ghost:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.bk-btn-seal { padding: 1.1rem 2.2rem; }
.bk-btn-crown { font-size: 1rem; }

/* ── Kvitto / bokningsbevis ── */
.bk-done .bk-main { display: flex; align-items: center; justify-content: center; }
.bk-receipt {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 0;
  animation: fadeUp 0.7s var(--ease-out);
}
.bk-receipt-seal { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.bk-seal-big {
  width: 110px;
  height: 110px;
  border: none;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 235, 190, 0.35), transparent 45%),
    radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 55%, #9B7A3F 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 4px rgba(212, 168, 87, 0.25),
    0 16px 40px -10px rgba(212, 168, 87, 0.5);
  animation: sealStamp 0.8s var(--ease-bounce);
}
.bk-seal-big .bk-seal-crown { font-size: 1.8rem; }
.bk-seal-big .bk-seal-crown-svg { width: 42px; }
.bk-seal-big .bk-seal-text { font-size: 0.62rem; }
.bk-receipt-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.bk-receipt-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.bk-receipt-title em { font-style: italic; color: var(--gold); }
.bk-receipt-lede {
  color: rgba(244, 235, 215, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.bk-receipt-card {
  text-align: left;
  border: 1px solid rgba(212, 168, 87, 0.25);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.05), transparent 70%);
}

/* ── Responsivt ── */
@media (max-width: 1100px) {
  .bk-wizard { grid-template-columns: 1fr; }
  /* relative (inte static) så sigill-ramens ::before fortsätter följa kortet */
  .bk-ledger { position: relative; top: 0; order: 2; }
  .bk-main { order: 1; }
}
@media (max-width: 860px) {
  .bk-when { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* De stora sektionsnumren kolliderar med rubrikerna på smala skärmar. */
  .section-num { display: none; }
  .bk-main { padding: 1.4rem 1.2rem 1.8rem; }
  .bk-form-grid { grid-template-columns: 1fr; }
  .bk-actions { flex-direction: column-reverse; align-items: stretch; }
  .bk-actions .bk-btn { justify-content: center; }
  .bk-actions > span { display: none; }
  .bk-review-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .booking { padding: 7rem var(--gutter) 5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
