@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500&display=swap');

:root {
  --c-forest: #1a3a2a;
  --c-forest-deep: #0f2218;
  --c-sage: #4a7c59;
  --c-sage-light: #6b9e7a;
  --c-mint: #a8d5ba;
  --c-cream: #faf8f3;
  --c-cream-dark: #f0ece3;
  --c-warm: #f5f0e8;
  --c-gold: #c4a35a;
  --c-gold-light: #dfc07f;
  --c-text: #1a1a1a;
  --c-text-mid: #4a4a4a;
  --c-text-soft: #7a7a7a;
  --c-text-muted: #a0a0a0;
  --c-white: #ffffff;
  --c-border: rgba(0,0,0,0.06);
  --c-border-light: rgba(0,0,0,0.03);
  --c-glass: rgba(255,255,255,0.6);
  --c-glass-strong: rgba(255,255,255,0.85);
  --font-h: 'Fraunces', Georgia, serif;
  --font-b: 'Inter', -apple-system, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Fast reklameinformation — header ligger under denne */
  --ad-bar-h: 26px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--ad-bar-h) + 88px);
}

body {
  font-family: var(--font-b);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::selection {
  background: var(--c-sage);
  color: white;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; }

/* ===== ANIMATED REVEAL ===== */

[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ===== ANNONCE / REKLAMEMÆRKNING ===== */

.ad-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  height: var(--ad-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #2b2b2b;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: var(--ad-bar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: all 0.5s var(--ease);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: all 0.5s var(--ease);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.02em;
  transition: color 0.5s var(--ease);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.5s var(--ease);
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-forest) 100%);
}

.logo-mark .logo-mark-img {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.4s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-white);
  transition: width 0.4s var(--ease), background 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-white);
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

/* --- SCROLLED STATE: light bg, dark text --- */

.header.scrolled {
  background: var(--c-glass-strong);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--c-border);
}

.header.scrolled .header-inner { height: 68px; }

.header.scrolled .logo { color: var(--c-forest); }
.header.scrolled .logo-mark { border-color: transparent; }

.header.scrolled .nav-links a { color: var(--c-text-mid); }
.header.scrolled .nav-links a::after { background: var(--c-forest); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--c-forest); }

.header.scrolled .hamburger span { background: var(--c-forest); }

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--c-forest) !important;
  color: var(--c-white) !important;
  padding: 10px 28px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::after { display: none !important; }

.nav-cta::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-forest) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s var(--ease) !important;
}

.nav-cta:hover::before { opacity: 1 !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,58,42,0.25); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--c-forest);
  color: var(--c-white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-forest-deep) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,58,42,0.3);
}

.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  background: transparent;
  color: var(--c-forest);
  border: 1.5px solid var(--c-forest);
}

.btn-secondary:hover {
  background: var(--c-forest);
  color: var(--c-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,58,42,0.15);
}

.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: var(--c-white);
  color: var(--c-forest);
  border-color: var(--c-white);
}

.btn-large {
  padding: 18px 44px;
  font-size: 0.95rem;
}

.btn-arrow {
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== HERO ===== */

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--c-forest-deep);
  color: var(--c-white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(196,163,90,0.14) 0%, transparent 58%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74,124,89,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196,163,90,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(26,58,42,0.45) 0%, transparent 70%),
    repeating-linear-gradient(
      118deg,
      rgba(255,255,255,0.02) 0 1px,
      transparent 1px 56px
    ),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 28%);
}

/* Bølge mod cream-sektion — skarp kant, ingen slør-gradient */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(36px, 5vw, 56px);
  z-index: 2;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath fill='%23faf8f3' d='M0 48 L0 14 Q300 40 600 14 T1200 14 L1200 48 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-mesh .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-mesh .orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(74,124,89,0.3);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-mesh .orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(196,163,90,0.15);
  bottom: -20%;
  left: -10%;
  animation-delay: -7s;
}

.hero-mesh .orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(168,213,186,0.2);
  top: 30%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: calc(88px + var(--ad-bar-h)) 0 56px;
}

.hero-text {
  max-width: 580px;
  position: relative;
  padding-left: 22px;
}

.hero-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--c-gold-light), var(--c-sage-light) 45%, var(--c-mint));
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(168,213,186,0.25);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 14px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

.hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-mint);
}

.hero-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 460px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-microitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.58);
}

.hero-microitem::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-mint);
  opacity: 0.9;
  box-shadow: 0 0 0 2px rgba(168,213,186,0.2), 0 0 18px rgba(168,213,186,0.35);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.22) 0%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.hero-card-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.35));
}

.hero-card-stack::before {
  content: '';
  position: absolute;
  inset: -12px -8px 8px -8px;
  border-radius: 32px;
  z-index: -1;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(196,163,90,0.35),
    rgba(74,124,89,0.25),
    rgba(168,213,186,0.2),
    rgba(196,163,90,0.35)
  );
  opacity: 0.45;
  filter: blur(16px);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: var(--c-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 28px;
  color: var(--c-white);
  transition: all 0.6s var(--ease);
}

.hero-card-main {
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
}

.hero-card-main .card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-card-main .card-badge {
  background: rgba(168,213,186,0.2);
  border: 1px solid rgba(168,213,186,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-mint);
}

.hero-card-main .card-icon-big {
  font-size: 3.5rem;
  line-height: 1;
}

.hero-card-main .card-body {
  margin-top: auto;
}

.hero-card-main .card-body h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-card-main .card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.hero-card-main .card-nutrients {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.hero-card-main .nutrient {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}

.hero-card-main .nutrient strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-card-main .nutrient span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-float {
  width: 220px;
  z-index: 4;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  animation: cardFloat 4s ease-in-out infinite;
}

.hero-card-float.float-1 {
  bottom: -24px;
  left: -40px;
  animation-delay: 0s;
}

.hero-card-float.float-2 {
  top: 40px;
  right: -40px;
  animation-delay: -2s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-float .float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-card-float .float-icon.i-green { background: rgba(168,213,186,0.25); }
.hero-card-float .float-icon.i-gold { background: rgba(196,163,90,0.25); }

.hero-card-float .float-icon:has(img) {
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
}

.hero-card-float .float-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float .float-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-card-float .float-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* ===== MARQUEE ===== */

.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--c-text-soft);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-track span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-sage);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */

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

.section-cream { background: var(--c-cream); }
.section-warm { background: var(--c-warm); }
.section-white { background: var(--c-white); }

.section-dark {
  background: var(--c-forest-deep);
  color: var(--c-white);
}

.section-header {
  max-width: 680px;
  margin-bottom: 72px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 16px;
}

.section-header .eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-sage);
}

.section-header.centered .eyebrow { justify-content: center; }

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  line-height: 1.8;
  font-weight: 300;
}

.section-dark .section-header .eyebrow { color: var(--c-gold-light); }
.section-dark .section-header .eyebrow::before { background: var(--c-gold); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===== BENTO GRID (FEATURES) ===== */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--c-white);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(74,124,89,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.bento-card:hover::before { opacity: 1; }

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

.bento-card.span-2 { grid-column: span 2; }

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  position: relative;
}

.bento-icon.i-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.bento-icon.i-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.bento-icon.i-gold { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.bento-icon.i-purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.bento-icon.i-rose { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.bento-icon.i-teal { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); }

/* Full-bleed photo cover inside bento cards */
.bento-card > .bento-icon:has(img) {
  width: auto;
  height: 172px;
  margin: -40px -36px 22px;
  border-radius: 24px 24px 0 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--c-warm);
}

.bento-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-card h3 {
  font-family: var(--font-b);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bento-card p {
  color: var(--c-text-soft);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ===== PACKAGES ===== */

.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pkg {
  background: var(--c-white);
  border-radius: 28px;
  padding: 44px 36px;
  border: 1.5px solid var(--c-border);
  transition: all 0.5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pkg:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  border-color: transparent;
}

.pkg.pkg-featured {
  background: var(--c-forest);
  color: var(--c-white);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(26,58,42,0.25);
}

.pkg.pkg-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(26,58,42,0.35);
}

.pkg-popular {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--c-gold);
  color: var(--c-forest-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Full-bleed photo cover inside package cards */
.pkg > .pkg-icon {
  width: auto;
  height: 172px;
  margin: -44px -36px 22px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  border: 0;
}

.pkg.pkg-featured .pkg-icon {
  border-color: transparent;
}

.pkg-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.pkg .pkg-desc {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pkg.pkg-featured .pkg-desc { color: rgba(255,255,255,0.65); }

.pkg-list { margin-bottom: 36px; flex: 1; }

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--c-text-mid);
}

.pkg.pkg-featured .pkg-list li { color: rgba(255,255,255,0.8); }

.pkg-list li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,124,89,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg.pkg-featured .pkg-list li .check { background: rgba(168,213,186,0.2); }

.pkg-list li .check svg {
  width: 12px;
  height: 12px;
  stroke: var(--c-sage);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg.pkg-featured .pkg-list li .check svg { stroke: var(--c-mint); }

.pkg .btn { width: 100%; }

/* ===== PLAN CARDS ===== */

.plan-category { margin-bottom: 80px; }
.plan-category:last-child { margin-bottom: 0; }

.plan-cat-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.plan-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  flex-shrink: 0;
}

.plan-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-cat-head h2 {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.plan-cat-head p {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  margin-top: 4px;
}

.plans-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.plan-tile {
  background: var(--c-white);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.plan-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.plan-tile:hover::after { transform: scaleX(1); }

.plan-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: transparent;
}

.plan-tile .tile-photo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--c-border);
}

.plan-tile .tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-tile h3 {
  font-family: var(--font-b);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-tile .tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.plan-tile .tile-tags span {
  background: var(--c-warm);
  color: var(--c-sage);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.plan-tile p {
  color: var(--c-text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Kostplaner: fullbredde Swiper + store kortbilleder */
body.page-kostplaner .section:has(.plans-slider-bleed) {
  overflow-x: clip;
}

body.page-kostplaner .plans-slider-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

body.page-kostplaner .plans-slider-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 14px 16px;
  padding-bottom: 10px;
}

body.page-kostplaner .plans-slider-wrap .plans-swiper-prev {
  grid-column: 1;
  grid-row: 1;
}

body.page-kostplaner .plans-slider-wrap .plans-swiper {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

body.page-kostplaner .plans-slider-wrap .plans-swiper-next {
  grid-column: 3;
  grid-row: 1;
}

body.page-kostplaner .plans-slider-wrap .plans-swiper-pagination {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  position: static !important;
  width: auto !important;
  max-width: 100%;
  margin: 4px 0 0 !important;
  padding: 8px 12px 0 !important;
  text-align: center;
  line-height: 0;
}

body.page-kostplaner .plans-slider-wrap .plans-swiper-pagination .swiper-pagination-bullet {
  vertical-align: middle;
}

body.page-kostplaner .plans-swiper-prev,
body.page-kostplaner .plans-swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--c-forest);
  background: var(--c-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--c-border);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}

body.page-kostplaner .plans-swiper-prev:hover,
body.page-kostplaner .plans-swiper-next:hover {
  background: var(--c-sage);
  color: var(--c-white);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(74,124,89,0.35);
}

body.page-kostplaner .plans-swiper-prev.swiper-button-disabled,
body.page-kostplaner .plans-swiper-next.swiper-button-disabled {
  opacity: 0.32;
  pointer-events: none;
  box-shadow: none;
}

body.page-kostplaner .plans-swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--c-text-muted);
  opacity: 0.45;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.25s var(--ease);
}

body.page-kostplaner .plans-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--c-sage);
  opacity: 1;
  transform: scale(1.15);
}

body.page-kostplaner .plans-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

body.page-kostplaner .plans-swiper .swiper-slide .plan-tile {
  width: 100%;
  min-height: 100%;
}

@media (max-width: 520px) {
  body.page-kostplaner .plans-swiper-prev,
  body.page-kostplaner .plans-swiper-next {
    display: none;
  }

  body.page-kostplaner .plans-slider-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px 0;
  }

  body.page-kostplaner .plans-slider-wrap .plans-swiper {
    grid-column: 1;
  }
}

body.page-kostplaner .plan-cat-icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
}

body.page-kostplaner .plan-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

body.page-kostplaner .plan-tile .tile-photo {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
  border: none;
  border-radius: 24px 24px 0 0;
  flex-shrink: 0;
  overflow: hidden;
}

body.page-kostplaner .plan-tile .tile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.page-kostplaner .plan-tile h3 {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 22px 24px 0;
  font-size: 1.14rem;
}

body.page-kostplaner .plan-tile .tile-tags {
  margin-bottom: 12px;
  padding: 0 24px;
}

body.page-kostplaner .plan-tile p {
  padding: 0 24px;
  font-size: 0.9rem;
}

body.page-kostplaner .plan-tile .recipe-cta-row {
  margin-top: auto;
  padding: 16px 24px 26px;
}

body.page-kostplaner .pf-card .pf-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  margin-bottom: 12px;
}

/* ===== SPECIALISTS ===== */

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  background: var(--c-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  border-color: transparent;
}

.spec-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

.spec-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.spec-avatar.av-1::before { background: linear-gradient(135deg, #a8d5ba 0%, #4a7c59 100%); }
.spec-avatar.av-2::before { background: linear-gradient(135deg, #bbdefb 0%, #5c9ce6 100%); }
.spec-avatar.av-3::before { background: linear-gradient(135deg, #e1bee7 0%, #ab47bc 100%); }
.spec-avatar.av-4::before { background: linear-gradient(135deg, #ffe0b2 0%, #f57c00 100%); }
.spec-avatar.av-5::before { background: linear-gradient(135deg, #b2dfdb 0%, #26a69a 100%); }
.spec-avatar.av-6::before { background: linear-gradient(135deg, #f8bbd0 0%, #e91e63 100%); }

.spec-avatar span { position: relative; z-index: 1; }

.spec-info { padding: 28px; }

.spec-info h3 {
  font-family: var(--font-b);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-info .spec-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-sage);
  margin-bottom: 12px;
}

.spec-info p {
  color: var(--c-text-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* ===== STEPS ===== */

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-sage), var(--c-gold), transparent);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--c-forest);
  color: var(--c-white);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--c-sage);
  opacity: 0.3;
}

.step-item h3 {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--c-text-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* ===== RECIPES ===== */

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recipe-card {
  background: var(--c-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  border-color: transparent;
}

.recipe-visual {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.recipe-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.recipe-visual.rv-green::before { background: linear-gradient(135deg, #e8f5e9, #a5d6a7); }
.recipe-visual.rv-orange::before { background: linear-gradient(135deg, #fff3e0, #ffcc80); }
.recipe-visual.rv-blue::before { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
.recipe-visual.rv-purple::before { background: linear-gradient(135deg, #f3e5f5, #ce93d8); }
.recipe-visual.rv-red::before { background: linear-gradient(135deg, #fce4ec, #ef9a9a); }
.recipe-visual.rv-teal::before { background: linear-gradient(135deg, #e0f2f1, #80cbc4); }

.recipe-visual span { position: relative; z-index: 1; }

.recipe-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.recipe-body h3 {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.recipe-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.recipe-meta span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.recipe-body > p {
  color: var(--c-text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.recipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.recipe-tags span {
  background: var(--c-warm);
  color: var(--c-sage);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.recipe-cta-row {
  margin-top: auto;
  padding-top: 16px;
}

.recipe-card .btn-recipe,
body.page-kostplaner .plan-tile .btn-recipe {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
}

/* ===== TESTIMONIALS ===== */

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
}

.testi-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--c-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-card blockquote {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168,213,186,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-mint);
}

.testi-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.testi-author-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ===== STATS ===== */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stat-block { text-align: center; }

.stat-block h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--c-forest);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-block p {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  font-weight: 400;
}

/* ===== CTA BANNER ===== */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-wrap {
  background: var(--c-forest);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 90%, rgba(74,124,89,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 10%, rgba(196,163,90,0.2) 0%, transparent 50%);
}

.cta-wrap > * { position: relative; z-index: 1; }

.cta-wrap h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-wrap p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.cta-wrap .btn {
  background: var(--c-white);
  color: var(--c-forest);
  font-weight: 700;
}

.cta-wrap .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}

/* ===== FOOTER ===== */

.footer {
  background: var(--c-forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo { color: var(--c-white); margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--c-sage); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-contact a .footer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-contact a:hover { color: var(--c-mint); }

.footer h4 {
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}

.footer ul li a:hover { color: var(--c-mint); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== DISCLAIMER ===== */

.disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
  border-radius: 16px;
  margin-top: 36px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.disclaimer strong { color: rgba(255,255,255,0.6); }

.footer-science {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-science-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  font-size: 0.75rem;
}

.footer-science-label {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
}

.footer-science-inner a {
  color: var(--c-mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-science-inner a:hover {
  color: #c4e8d2;
}

.footer-science-note {
  margin-top: 14px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.55;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-light {
  background: var(--c-warm);
  border: 1px solid var(--c-border);
  color: var(--c-text-soft);
}

.disclaimer-light strong { color: var(--c-text-mid); }

/* ===== PAGE HERO ===== */

.page-hero {
  padding: calc(88px + var(--ad-bar-h)) 0 48px;
  background: var(--c-forest-deep);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 42% at 100% 0%, rgba(196,163,90,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 48% at 0% 100%, rgba(168,213,186,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 30% 72%, rgba(74,124,89,0.32) 0%, transparent 58%),
    radial-gradient(ellipse 42% 38% at 72% 28%, rgba(196,163,90,0.12) 0%, transparent 50%),
    repeating-linear-gradient(
      125deg,
      rgba(255,255,255,0.018) 0 1px,
      transparent 1px 52px
    ),
    linear-gradient(180deg, rgba(255,255,255,0.035) 0%, transparent 32%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(36px, 5vw, 56px);
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath fill='%23faf8f3' d='M0 48 L0 14 Q300 40 600 14 T1200 14 L1200 48 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.page-hero > * { position: relative; z-index: 1; }

/* To-kolonne layout: tekst + foto (undgår “tom” venstreside) */
.page-hero .page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, min(38vw, 400px));
  gap: clamp(24px, 4.5vw, 52px);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-figure {
  position: relative;
  margin: 0;
  justify-self: stretch;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.1);
}

@media (min-width: 961px) {
  .page-hero-figure {
    justify-self: end;
  }
}

.page-hero-figure::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 40%, rgba(168,213,186,0.2), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15,34,24,0.05) 0%,
    transparent 40%,
    rgba(15,34,24,0.35) 100%
  );
}

.page-hero .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.page-hero .breadcrumb a {
  color: var(--c-mint);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--c-gold-light);
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.72);
}

.page-hero h1 {
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  max-width: 680px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  padding-bottom: 14px;
  position: relative;
  text-wrap: balance;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-mint), rgba(168,213,186,0.35));
}

.page-hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.66);
  max-width: 560px;
  font-weight: 400;
  line-height: 1.68;
  margin: 6px 0 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

/* Juridiske sider: ingen hero-foto — rolig, centreret intro */
body.page-legal .page-hero .container {
  text-align: center;
  max-width: 680px;
}

body.page-legal .page-hero .breadcrumb {
  display: inline-flex;
}

body.page-legal .page-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

body.page-legal .page-hero h1::after {
  left: 50%;
  transform: translateX(-50%);
}

body.page-legal .page-hero p {
  margin-left: auto;
  margin-right: auto;
}

/* Tak-side efter kontaktformular */
body.page-thankyou .page-hero .container {
  text-align: center;
  max-width: 680px;
}

body.page-thankyou .page-hero .breadcrumb {
  display: inline-flex;
}

body.page-thankyou .page-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

body.page-thankyou .page-hero h1::after {
  left: 50%;
  transform: translateX(-50%);
}

body.page-thankyou .page-hero p {
  margin-left: auto;
  margin-right: auto;
}

body.page-thankyou .thanks-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

body.page-thankyou .thanks-box p {
  margin-bottom: 16px;
}

body.page-thankyou .thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

/* Mindre luft mellem side-top og første indholdssektion */
.page-hero + .section {
  padding-top: 56px;
}

.marquee-section + .section {
  padding-top: 64px;
}

@media (max-width: 960px) {
  .page-hero .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero-figure {
    justify-self: stretch;
    max-width: none;
    aspect-ratio: 16 / 9;
    max-height: min(220px, 34vh);
    border-radius: 18px;
  }
}

/* ===== INFO GRID ===== */

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.info-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.info-text p {
  color: var(--c-text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 400;
}

.info-visual {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.info-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.info-visual span { position: relative; z-index: 1; }

.info-visual.iv-green::before { background: linear-gradient(135deg, #a8d5ba, #4a7c59); }
.info-visual.iv-gold::before { background: linear-gradient(135deg, #fde68a, #c4a35a); }
.info-visual.iv-blue::before { background: linear-gradient(135deg, #bbdefb, #5c9ce6); }
.info-visual.iv-purple::before { background: linear-gradient(135deg, #e1bee7, #ab47bc); }

/* ===== PERSONALIZED BLOCK ===== */

.personal-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--c-forest);
  border-radius: 32px;
  padding: 64px;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.personal-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(74,124,89,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(196,163,90,0.15) 0%, transparent 50%);
}

.personal-block > * { position: relative; z-index: 1; }

.personal-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.personal-block > div:first-child p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pf-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease);
}

.pf-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.pf-card .pf-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.15);
}

.pf-card .pf-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-card strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.pf-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ===== FAQ ===== */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--c-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  gap: 16px;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.faq-toggle svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  stroke: var(--c-text-mid);
  fill: none;
  stroke-width: 2;
  transition: transform 0.4s var(--ease);
  display: block;
}

.faq-item.open .faq-toggle {
  background: var(--c-forest);
  border-color: var(--c-forest);
}

.faq-item.open .faq-toggle svg {
  stroke: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ===== JURIDISKE SIDER (simpel tekst, ingen hover-kort) ===== */

body.page-legal .section.section-cream:has(.legal-body) {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2px 8px;
}

.legal-body > p:first-child {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

.legal-body h2 {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0;
  margin: 28px 0 10px;
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--c-text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-body p {
  margin-bottom: 14px;
}

.legal-body ul {
  margin-bottom: 18px;
}

.legal-body a {
  color: var(--c-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover {
  color: var(--c-forest);
}

/* ===== CONTACT FORM ===== */

.contact-form {
  max-width: 580px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: 28px;
  padding: 52px 44px;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: 14px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: var(--c-text);
  background: var(--c-cream);
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-sage);
  box-shadow: 0 0 0 4px rgba(74,124,89,0.08);
  background: var(--c-white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== MOBILE ===== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-cream);
  z-index: 999;
  padding: calc(120px + var(--ad-bar-h)) 32px 32px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--c-forest);
  border-bottom: 1px solid var(--c-border);
  letter-spacing: -0.02em;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ===== CHECK SVG ===== */

.check-svg { display: inline-block; }

/* ===== REAL IMAGES ===== */

.recipe-visual {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.recipe-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.recipe-card:hover .recipe-visual img { transform: scale(1.06); }

.recipe-visual::before { display: none; }

.info-visual {
  position: relative;
  overflow: hidden;
}

.info-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.info-visual::before { display: none; }

.spec-avatar {
  position: relative;
  overflow: hidden;
}

.spec-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.spec-avatar::before { display: none; }

.hero-card-main {
  overflow: hidden;
}

.hero-card-main .card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-card-main .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,34,24,0.92) 0%, rgba(15,34,24,0.4) 50%, rgba(15,34,24,0.2) 100%);
}

.hero-card-main .card-top-row,
.hero-card-main .card-body {
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 1; }
  .packages-row { grid-template-columns: repeat(2, 1fr); }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .personal-block { grid-template-columns: 1fr; padding: 44px; }
  .hero-content-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-content-wrap { padding: calc(88px + var(--ad-bar-h)) 0 72px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-card-stack { max-width: 320px; }
  .hero-card-float { display: none; }
  .hero-text {
    padding-left: 18px;
  }
  .hero-text::before {
    width: 2px;
    opacity: 0.85;
  }
  .hero-microproof {
    margin-top: 18px;
    padding-top: 16px;
    gap: 6px 18px;
  }
  .hero-visual::before {
    width: min(320px, 95vw);
    height: min(320px, 95vw);
  }
  .page-hero-figure {
    max-height: min(200px, 32vh);
    border-radius: 16px;
  }

  body.page-kostplaner .plan-tile .tile-photo {
    min-height: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 20px 20px 0 0;
  }

  body.page-kostplaner .plan-cat-icon {
    width: 76px;
    height: 76px;
  }

  body.page-kostplaner .pf-card .pf-icon {
    width: 64px;
    height: 64px;
  }

  .section { padding: 80px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .packages-row { grid-template-columns: 1fr; }
  .bento-icon:has(img),
  .pkg-icon {
    height: 154px;
  }
  .specialists-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 48px 0; }
  .info-row { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-science-inner { gap: 8px 10px; font-size: 0.7rem; }
  .footer-science-note { font-size: 0.64rem; }
  .cta-wrap { padding: 48px 28px; border-radius: 24px; }
  .page-hero {
    padding: calc(72px + var(--ad-bar-h)) 0 40px;
  }

  .page-hero h1 { font-size: 1.85rem; }

  .page-hero + .section,
  .marquee-section + .section {
    padding-top: 40px;
  }
  .contact-form { padding: 36px 28px; }
  .pf-grid { grid-template-columns: 1fr; }
  .marquee-section { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-card-stack { max-width: 280px; }
}
