/** Shopify CDN: Minification failed

Line 140:0 Unexpected "}"
Line 1185:0 Unexpected "}"

**/
/* ═══════════════════════════════════════════════════
   LULLABY.DK — THEME CSS
   Dark Luxury Sleep Sanctuary
   Bureau-grade, $10K standard
═══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --c-bg:      #F5F0E8;
  --c-dark:    #1A1F3A;
  --c-mid:     #9BA8A3;
  --c-accent:  #C8A882;
  --c-text:    #2C2C2C;
  --c-surface: #EDE6D8;
  --c-border:  rgba(44,30,10,.1);

  /* Dark-context derivatives */
  --c-on-dark:          rgba(250,250,248,.9);
  --c-muted-on-dark:    rgba(250,250,248,.5);
  --c-border-dark:      rgba(255,255,255,.1);
  /* WCAG AA compliant accent for small text on dark bg (~5.5:1 on #1A1F3A) */
  --c-accent-on-dark:   #DCBA90;

  /* Type */
  --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Typographic scale */
  --t-xs:  12px;
  --t-sm:  14px;
  --t-md:  16px;
  --t-lg:  20px;
  --t-xl:  28px;
  --t-2xl: 40px;
  --t-3xl: 56px;
  --t-4xl: 72px;

  /* Spacing */
  --sp-section:     120px;
  --sp-section-mob: 80px;
  --sp-container:   28px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --sh-soft: 0 2px 16px rgba(0,0,0,.06);
  --sh-md:   0 4px 32px rgba(0,0,0,.1);
  --sh-lg:   0 8px 48px rgba(0,0,0,.14);

  /* Z-index scale */
  --z-base:    10;
  --z-overlay: 20;
  --z-modal:   30;
  --z-header:  50;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--t-md);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
svg { display: block; }
input, textarea, select { font-family: inherit; }

/* ── FOCUS ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── LAYOUT ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-container);
}
.container--narrow { max-width: 720px; }
.container--wide   { max-width: 1400px; }

.section {
  padding: var(--sp-section) 0;
}

/* ── TYPOGRAPHY ──────────────────────────────────── */
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow--mid   { color: var(--c-mid); }
.eyebrow--light { color: var(--c-muted-on-dark); }
/* WCAG AA: accessible eyebrow on dark bg — passes 5.5:1 */
.eyebrow--dark  { color: var(--c-accent-on-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.section-heading {
  font-size: clamp(var(--t-2xl), 3.5vw, var(--t-3xl));
  color: var(--c-dark);
  margin-top: 12px;
}
.section-heading--light { color: var(--c-on-dark); }

.body-text {
  font-size: var(--t-md);
  line-height: 1.7;
  color: #1A1F3A;
  max-width: 65ch;
}
}
.body-text--sm { font-size: var(--t-sm); }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.25,.46,.45,.94),
              transform 700ms cubic-bezier(.25,.46,.45,.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal--left {
  transform: translateX(-28px);
}
.reveal--left.is-visible { transform: translateX(0); }

/* Subtle scale-up */
.reveal--scale {
  transform: translateY(16px) scale(0.97);
}
.reveal--scale.is-visible { transform: translateY(0) scale(1); }

.reveal--d1 { transition-delay: 100ms; }
.reveal--d2 { transition-delay: 200ms; }
.reveal--d3 { transition-delay: 300ms; }
.reveal--d4 { transition-delay: 400ms; }
.reveal--d5 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--scale { transition: none; opacity: 1; transform: none; }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 250ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 250ms cubic-bezier(.34,1.56,.64,1),
              background 200ms ease;
  position: relative;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--c-accent);
  color: var(--c-dark);
  font-weight: 500;
}
.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(200,168,130,.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-on-dark);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--outline-dark:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  box-shadow: none;
}

.btn--lg   { padding: 18px 40px; font-size: var(--t-md); }
.btn--full { width: 100%; }
.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: 22px 0;
  transition: background 400ms ease, box-shadow 400ms ease, padding 400ms ease;
}
.site-header.is-scrolled {
  background: #F5F0E8;
  box-shadow: 0 1px 0 var(--c-border);
  padding: 14px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  display: flex;
  align-items: baseline;
  gap: 1px;
  transition: color 400ms ease;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.site-header.is-scrolled .site-header__logo {
  color: var(--c-dark);
  letter-spacing: .02em;
}
.site-header__logo-suffix {
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  transition: color 400ms ease;
}.site-header__flag {
  display: inline-block;
  width: 22px;
  height: 16px;
  margin-left: 8px;
  border-radius: 2px;
  background: #C8102E;
  position: relative;
  vertical-align: middle;
  flex-shrink: 0;
}
.site-header__flag::before {
  content: '';
  position: absolute;
  top: 0; left: 35%;
  width: 22%;
  height: 100%;
  background: #fff;
}
.site-header__flag::after {
  content: '';
  position: absolute;
  top: 40%; left: 0;
  width: 100%;
  height: 20%;
  background: #fff;
}
.site-header.is-scrolled .site-header__logo-suffix { color: var(--c-mid); }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__nav a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 200ms;
}
.site-header__nav a:hover { color: #fff; }
.site-header.is-scrolled .site-header__nav a { color: var(--c-mid); }
.site-header.is-scrolled .site-header__nav a:hover { color: var(--c-dark); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__actions .btn--primary {
  padding: 10px 20px;
  font-size: var(--t-xs);
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-header__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,.8);
  transition: all 250ms cubic-bezier(.25,.46,.45,.94);
  transform-origin: center;
}
.site-header.is-scrolled .site-header__hamburger span { background: var(--c-dark); }
.site-header__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: calc(var(--z-header) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(.25,.46,.45,.94);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2.8rem;
  color: rgba(250,250,248,.75);
  transition: color 200ms;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { color: var(--c-accent); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: linear-gradient(160deg, var(--c-dark) 0%, #0f1228 100%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(200,168,130,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  padding: 56px 0 96px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.hero__headline {
  font-size: clamp(var(--t-3xl), 6vw, var(--t-4xl));
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,.55);
}
.hero__subline {
  font-size: var(--t-md);
  color: var(--c-muted-on-dark);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs);
  color: var(--c-muted-on-dark);
}
.trust-item svg { color: var(--c-accent); flex-shrink: 0; }

/* Product image area */
.hero__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__product-wrap {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--c-surface);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.hero__product-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xs);
  color: var(--c-mid);
  letter-spacing: .06em;
  text-align: center;
  padding: 20px;
  background: var(--c-surface);
}
.img-placeholder--product {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
}
.img-placeholder--thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
}

/* Color swatches hero */
.hero__swatches {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.hero__swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 200ms, transform 200ms;
}
.hero__swatch-item.is-active .hero__swatch-dot { outline-color: rgba(255,255,255,.6); }
.hero__swatch-item:hover .hero__swatch-dot { transform: scale(1.1); }
.hero__swatch-label {
  font-size: 10px;
  color: var(--c-muted-on-dark);
  letter-spacing: .04em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-muted-on-dark);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,168,130,.5), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.5); }
}

/* ── TICKER ──────────────────────────────────────── */
.ticker {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: var(--t-xs);
  color: var(--c-muted-on-dark);
  padding: 0 32px;
  letter-spacing: .04em;
}
.ticker__item::after {
  content: '·';
  color: var(--c-accent);
  font-size: 1rem;
}
.ticker__accent { color: var(--c-accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── PROBLEM ─────────────────────────────────────── */
.problem { background: var(--c-bg); }
.section-intro {
  text-align: center;
  margin-bottom: 60px;
}
.section-intro .section-heading { margin-top: 12px; }
.section-intro p {
  font-size: var(--t-md);
  color: var(--c-mid);
  margin-top: 16px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--c-surface);
  border: .5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: transform 250ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 250ms ease;
  cursor: default;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.problem-card__icon {
  color: var(--c-accent);
  margin-bottom: 20px;
}
.problem-card__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--c-dark);
  margin-bottom: 12px;
  font-weight: 500;
}
.problem-card__text {
  font-size: var(--t-sm);
  color: rgba(250,250,248,.75);
  line-height: 1.75;
  max-width: 40ch;
}
.problem-closer {
  text-align: center;
  margin-top: 48px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--t-xl);
  color: var(--c-mid);
}

/* ── PRODUCT FEATURE ─────────────────────────────── */
.product-feature { background: var(--c-bg); }
.product-feature__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}
.product-feature__images { position: sticky; top: 120px; }

.product-feature__main {
  width: 100%;
  aspect-ratio: 1/1
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--sh-lg);
  background: var(--c-surface);
  max-height: 500px
  
}
.product-feature__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-feature__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.product-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 200ms, transform 200ms;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--c-mid);
  min-height: 44px;
}
.product-thumb:hover,
.product-thumb.is-active { border-color: var(--c-accent); transform: translateY(-2px); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Swatch selector */
.swatch-selector { margin-bottom: 4px; }
.swatch-label-text {
  font-size: var(--t-sm);
  color: var(--c-mid);
  margin-bottom: 10px;
}
.swatch-label-text strong {
  color: var(--c-text);
  font-weight: 500;
}
.swatch-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 200ms, transform 200ms ease;
  background: none;
}
.swatch:hover { transform: scale(1.05); }
.swatch.is-active {
  outline-color: var(--c-accent);
  transform: scale(1.1);
}

/* Product info */
.product-feature__info { padding-top: 4px; }
.product-eyebrow {
  font-size: var(--t-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
  display: block;
}
.product-name {
  font-family: var(--f-display);
  font-size: clamp(var(--t-2xl), 3vw, var(--t-3xl));
  color: var(--c-dark);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 16px;
}
.product-price {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  color: var(--c-dark);
  font-weight: 500;
}
.product-shipping {
  font-size: var(--t-sm);
  color: var(--c-mid);
  margin: 6px 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-trustpilot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--c-mid);
  margin-bottom: 24px;
}
.stars { color: #00b67a; letter-spacing: 1px; font-size: var(--t-sm); }
.product-divider {
  height: 1px;
  background: var(--c-border);
  margin: 22px 0;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--t-sm);
  color: var(--c-text);
  line-height: 1.55;
}
.feature-list__check {
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.product-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.product-trust-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--t-xs);
  color: var(--c-mid);
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how-it-works {
  background: #1A1F3A;
  position: relative;
  overflow: hidden;
}

/* Levende baggrund — tre bløde orbs der langsomt driver */
.how-it-works::before,
.how-it-works::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Orb 1 — varm guld tåge, nede til venstre */
.how-it-works::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,130,.13) 0%, rgba(200,168,130,.04) 45%, transparent 70%);
  bottom: -180px;
  left: -120px;
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

/* Orb 2 — kølig blå tåge, oppe til højre */
.how-it-works::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90,110,200,.10) 0%, rgba(90,110,200,.03) 45%, transparent 70%);
  top: -140px;
  right: -100px;
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0,    0)    scale(1); }
  50%  { transform: translate(60px, -40px) scale(1.08); }
  100% { transform: translate(20px,  30px) scale(0.95); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0,     0)    scale(1); }
  50%  { transform: translate(-50px, 50px) scale(1.12); }
  100% { transform: translate(20px, -30px) scale(0.92); }
}

/* Orb 3 — midterste svag hvid, via inline div i sektionen */
.how-it-works__orb3 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,250,248,.03) 0%, transparent 70%);
  filter: blur(60px);
  top: 30%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbDrift3 28s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes orbDrift3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(calc(-50% + 80px), calc(-50% - 30px)) scale(1.15); }
  100% { transform: translate(calc(-50% - 40px), calc(-50% + 50px)) scale(0.9); }
}

/* Sørg for at indhold sidder over orbs */
.how-it-works > .container { position: relative; z-index: 1; }

.how-it-works .section-heading { color: var(--c-on-dark); }
.how-it-works .eyebrow--mid    { color: var(--c-accent-on-dark); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps — animates in */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.667% + 14px);
  right: calc(16.667% + 14px);
  height: 1px;
  background: linear-gradient(to right,
    rgba(220,186,144,.15),
    rgba(220,186,144,.4) 30%,
    rgba(220,186,144,.4) 70%,
    rgba(220,186,144,.15));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.steps-grid.line-active::before {
  transform: scaleX(1);
}

/* Travelling glow dot along the line */
.line-traveller {
  position: absolute;
  top: 24px;
  left: calc(16.667% + 14px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DCBA90;
  box-shadow: 0 0 10px 3px rgba(220,186,144,.55);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.steps-grid.line-active .line-traveller {
  animation: travelLine 1.4s cubic-bezier(0.4, 0, 0.6, 1) 1.0s forwards;
}
@keyframes travelLine {
  0%   { opacity: 0;   left: calc(16.667% + 14px); }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { opacity: 0;   left: calc(83.333% - 14px); }
}

/* Step dot — breathing outer ring */
.step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(220,186,144,.08);
  border: 1px solid rgba(220,186,144,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-accent-on-dark);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.step__dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(220,186,144,.18);
  animation: dotBreathe 3.8s ease-in-out infinite;
  pointer-events: none;
}
.step:nth-child(2) .step__dot::before { animation-delay: 1.2s; }
.step:nth-child(3) .step__dot::before { animation-delay: 2.4s; }
@keyframes dotBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.35); opacity: 0; }
}

.step {
  text-align: left;
  position: relative;
  padding: 0 40px 0 0;
}

.step:last-child { padding-right: 0; }

/* Step number dot — styles now in the animated block above */

.step__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--c-on-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.step__text {
  font-size: var(--t-sm);
  color: rgba(250,250,248,.88);
  line-height: 1.8;
  max-width: 38ch;
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { background: var(--c-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--c-surface);
  border: .5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 250ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 250ms ease;
  cursor: default;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.review-card__stars { margin-bottom: 14px; }
.review-card__text {
  font-size: var(--t-sm);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 10px;
}
.review-card__disclaimer {
  font-size: var(--t-xs);
  color: var(--c-mid);
  font-style: italic;
  margin-bottom: 18px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__name {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-dark);
}
.review-card__date {
  font-size: var(--t-xs);
  color: var(--c-mid);
}
.trustpilot-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #00b67a;
  border: 1px solid rgba(0,182,122,.3);
  border-radius: 3px;
  padding: 2px 6px;
}
.reviews-link-wrap { text-align: center; margin-top: 40px; }
.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  color: var(--c-accent);
  font-weight: 500;
  transition: opacity 200ms;
}
.link-accent:hover { opacity: .7; }

/* ── COMPARISON ──────────────────────────────────── */
.comparison { background: var(--c-dark); }
.comparison .section-heading { color: var(--c-on-dark); }
.comparison .eyebrow { color: var(--c-accent-on-dark); }

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table th,
.compare-table td {
  padding: 16px 22px;
  text-align: center;
  font-size: var(--t-sm);
}
.compare-table thead th {
  font-size: var(--t-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted-on-dark);
  font-weight: 500;
  padding-bottom: 20px;
  font-family: var(--f-body);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.col-lullaby { color: var(--c-accent); font-size: var(--t-sm); font-weight: 600; }
.compare-table tbody td { border-top: 1px solid rgba(255,255,255,.05); color: var(--c-muted-on-dark); }
.compare-table tbody td:first-child { text-align: left; color: rgba(250,250,248,.7); }
.compare-table tbody td.col-lullaby { background: rgba(200,168,130,.08); color: var(--c-on-dark); font-weight: 500; }
.compare-table tbody tr:first-child .col-lullaby { border-top-left-radius: var(--r-sm); }
.icon-yes  { color: #4ade80; }
.icon-no   { color: rgba(255,255,255,.2); }
.icon-warn { color: var(--c-accent); font-size: var(--t-xs); }
.compare-cta { text-align: center; margin-top: 48px; }

/* ── GUARANTEE ───────────────────────────────────── */
.guarantee { background: var(--c-bg); }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guarantee-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border-left: 2px solid var(--c-accent);
  cursor: default;
  transition: transform 280ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(200,168,130,.8);
}

.guarantee-card__icon {
  color: var(--c-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.guarantee-card__title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--c-dark);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.15;
}

.guarantee-card__text {
  font-size: var(--t-sm);
  color: #1A1F3A;
  line-height: 1.8;
}
}

/* ── FAQ ─────────────────────────────────────────── */
.faq { background: var(--c-bg); }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-item.is-open { background: var(--c-surface); border-radius: var(--r-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--c-dark);
  transition: color 200ms;
  min-height: 44px;
}
.faq-item.is-open .faq-question { padding-left: 16px; }
.faq-question:hover { color: var(--c-accent); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--c-mid);
  transition: transform 300ms ease, color 200ms;
}
.faq-item.is-open .faq-arrow { transform: rotate(45deg); color: var(--c-accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease;
}
.faq-answer-inner {
  padding: 0 16px 22px;
  font-size: var(--t-sm);
  color: var(--c-mid);
  line-height: 1.8;
  max-width: 65ch;
}

/* ── CLOSING CTA ─────────────────────────────────── */
.closing-cta {
  background: linear-gradient(160deg, var(--c-dark) 0%, #0f1228 100%);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(200,168,130,.07) 0%, transparent 65%);
  pointer-events: none;
}
.closing-cta__mark {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: rgba(200,168,130,.25);
  margin-bottom: 28px;
  letter-spacing: .12em;
  position: relative;
}
.closing-cta__headline {
  font-family: var(--f-display);
  font-size: clamp(var(--t-2xl), 5vw, var(--t-4xl));
  color: #fff;
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 20px;
  position: relative;
}
.closing-cta__headline em { font-style: italic; color: var(--c-accent); }
.closing-cta__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}
.closing-cta__sub span {
  font-size: var(--t-sm);
  color: var(--c-muted-on-dark);
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.closing-cta__sub span:last-child { border: none; }
.payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  position: relative;
}
.payment-chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
  padding: 5px 12px;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #060812;
  padding: 72px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer__logo {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: rgba(250,250,248,.8);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.site-footer__logo-suffix {
  font-family: var(--f-body);
  font-size: .75rem;
  color: rgba(250,250,248,.3);
}
.site-footer__tagline {
  font-size: var(--t-sm);
  color: rgba(250,250,248,.3);
  line-height: 1.65;
  margin-top: 6px;
}
.site-footer__col-title {
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a {
  font-size: var(--t-sm);
  color: rgba(250,250,248,.4);
  transition: color 200ms;
}
.site-footer__links a:hover { color: rgba(250,250,248,.8); }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: rgba(250,250,248,.4);
}
.site-footer__contact-item svg { color: var(--c-mid); flex-shrink: 0; }
.site-footer__contact-item a { transition: color 200ms; }
.site-footer__contact-item a:hover { color: rgba(250,250,248,.8); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  font-size: var(--t-xs);
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --sp-section: 96px; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .product-feature__grid { gap: 48px; }
  .steps-grid { gap: 40px; grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step { padding-right: 0; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > :first-child { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --sp-section: var(--sp-section-mob); }

  /* ── Header ── */
  .site-header__nav,
  .site-header__actions { display: none; }
  .site-header__hamburger { display: flex; }

  /* ── Hero (nuværende klasser) ── */
  .hero__hl  { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .hero__sub { font-size: 15px; max-width: 36ch; }
  .hero__copy { bottom: 6%; padding-bottom: 64px; }
  .hero__trust {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  /* Skjul de dekorative · separatorer på lille skærm */
  .hero__trust .trust-pill:nth-child(even) { display: none; }

  /* Arc gallery */
  #arc-gallery-mount { height: 58vh; }

  /* ── Problem ── */
  .problem-grid { grid-template-columns: 1fr; }
  /* Skjul de store ghost-tal — de bruger for meget plads */
  .problem-card__number { display: none; }

  /* ── Product-feature ── */
  .product-feature__grid { grid-template-columns: 1fr; }
  .product-feature__images { position: static; }

  /* ── How-it-works ── */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .steps-grid::before { display: none; }
  .line-traveller { display: none; }
  .step { padding-right: 0; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .step:last-child { border-bottom: none; padding-bottom: 0; }

  /* ── Testimonials ── */
  .reviews-grid { grid-template-columns: 1fr; }

  /* ── Comparison — scroll-hint ── */
  .compare-wrap::after {
    content: '← swipe →';
    display: block;
    text-align: center;
    font-size: 11px;
    color: rgba(220,186,144,.4);
    letter-spacing: .12em;
    margin-top: 12px;
  }

  /* ── Guarantee ── */
  .guarantee-grid { grid-template-columns: 1fr; }

  /* ── Closing-CTA ── */
  .closing-cta { padding: 80px 0; }
  .closing-cta__sub { flex-direction: column; gap: 6px; }
  .closing-cta__sub span { border: none; padding: 3px 0; }
  .payment-row { flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* ── Footer ── */
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__grid > :first-child { grid-column: unset; }

  /* ── Typografi ── */
  .section-heading { font-size: clamp(var(--t-xl), 7vw, var(--t-2xl)); }
  .closing-cta__headline { font-size: clamp(var(--t-xl), 8vw, var(--t-3xl)); }

  /* ── Touch targets ── */
  .swatch { min-width: 40px; min-height: 40px; }
  .faq-question { min-height: 52px; }
}

@media (max-width: 480px) {
  :root { --sp-container: 18px; }

  /* Hero CTA stack */
  .hero__ctas { flex-direction: column; gap: 10px; }
  .btn--primary-hero,
  .btn--secondary-hero { width: 100%; justify-content: center; }

  /* Skjul sub-tekst i hero på meget lille skærm — frigiver plads */
  .hero__sub { display: none; }

  /* Arc gallery skjules på mobil — stjernebaggrund er visuelt nok */
  #arc-gallery-mount { display: none; }

  /* Problem padding */
  .problem-card { padding: 28px 20px; }

  /* Section intro strammes */
  .section-intro { margin-bottom: 36px; }
}


/* ── ARC GALLERY ─────────────────────────────────────── */
.arc-wrapper {
  will-change: transform, opacity;
}

.arc-card {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.arc-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 600px) {
  .hero__arc { height: 50dvh; min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  #arc-gallery-mount * {
    animation: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   CURSOR MICRO-INTERACTIONS — CSS-lag
═══════════════════════════════════════════════════ */

/* 2. Problem — radial spotlight */
.problem {
  --spot-x: 50%; --spot-y: 50%; --spot-o: 0;
}
.problem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 380px at var(--spot-x) var(--spot-y), rgba(220,186,144,0.045) 0%, transparent 70%);
  opacity: var(--spot-o);
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.problem > * { position: relative; z-index: 1; }

/* 8. Guarantee — kort-shimmer */
.guarantee-card {
  --gc-x: 50%; --gc-y: 50%; --gc-o: 0;
  overflow: hidden;
}
.guarantee-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 100px at var(--gc-x) var(--gc-y), rgba(220,186,144,0.08) 0%, transparent 70%);
  opacity: var(--gc-o);
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

/* 9. FAQ — venstre accent-linje */
.faq-question {
  --faq-accent: 0;
  border-left: 2px solid rgba(200,168,130, var(--faq-accent));
  padding-left: 0;
  transition: color 200ms, border-color 150ms ease;
}
.faq-item.is-open .faq-question {
  border-left-color: rgba(200,168,130,0.6);
  padding-left: 16px;
}

/* 10. Closing-CTA — knap spotlight */
.closing-cta .btn--lg {
  --btn-mx: 50%; --btn-my: 50%;
  position: relative;
  overflow: hidden;
}
.closing-cta .btn--lg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 55px at var(--btn-mx) var(--btn-my), rgba(255,255,255,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  border-radius: inherit;
}
.closing-cta .btn--lg:hover::after { opacity: 1; }
