/* ============================================
   NEXT:STAGE — Hovedstylesheet
   ============================================ */

:root {
  /* NEXT:STAGE brand — sage green fra PDF */
  --bg-dark: #BED2B4;          /* Primær sage grøn (fra PDF) */
  --bg-darker: #A4BB98;        /* Mørkere grøn */
  --bg-deep: #2C3A27;          /* Dyb skov-grøn til kontrast */
  --bg-light: #F0F3ED;         /* Cremehvid */
  --text-light: #ffffff;       /* Hvid tekst på grøn */
  --text-dark: #1a1a1a;        /* Mørk tekst */
  --text-on-green: #1a2e18;    /* Mørkegrøn tekst på grøn */
  --accent: #e86a1c;           /* Orange accent (kun til kolonnet og små detaljer) */
  --muted: #6B7F63;            /* Dæmpet grøn til undertekst */
  --border: rgba(0,0,0,0.12);  /* Subtle border */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-on-green);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* Forhindrer enkelte fed-ord i at stå alene på sidste linje */
.section__text p,
.section__title,
.hero__tagline,
.quote__text,
.founder__text,
.bio-details__body p,
.service-card__desc,
.timeline__desc {
  text-wrap: pretty;
}

.section__title,
h1, h2, h3 {
  text-wrap: balance;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(190, 210, 180, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  text-transform: lowercase;
  color: var(--text-on-green);
}

.nav__logo span { color: var(--accent); padding: 0 2px; }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover { color: var(--accent); }

.nav__links a[data-stage]::after {
  content: attr(data-stage);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--accent);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  margin-top: 8px;
}

.nav__links a[data-stage]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav__cta {
  border: 1px solid var(--text-on-green);
  padding: 10px 22px;
  transition: all 0.2s;
}

.nav__cta:hover {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
  color: var(--text-light);
}

.nav__burger { display: none; }

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  background: linear-gradient(180deg, rgba(44,58,39,0.15) 0%, rgba(44,58,39,0.15) 45%, rgba(44,58,39,0.85) 100%), url('images/hero.jpg') center top/cover;
  color: var(--text-light);
}

.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 180px);
  letter-spacing: 4px;
  line-height: 0.9;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero__logo span { color: var(--accent); }

/* Brand logo som på PDF'en — lowercase, heavy bold */
.hero__logo--brand {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -2.5px;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  animation: brandSlideIn 2.2s cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

.hero__logo--brand span {
  display: inline-block;
  animation: brandColonPop 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}

.hero__tagline {
  animation: brandFadeUp 1.8s ease 1.6s both;
}

@keyframes brandSlideIn {
  from {
    opacity: 0;
    transform: translateX(-120px);
    letter-spacing: 10px;
  }
  to {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: -2.5px;
  }
}

@keyframes brandColonPop {
  0% { transform: scale(0) rotate(-90deg); opacity: 0; }
  60% { transform: scale(1.4) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

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

.hero__logo--brand span {
  color: var(--accent);
  padding: 0 4px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  max-width: 700px;
  color: var(--text-light);
  opacity: 0.95;
  margin-bottom: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  animation: bounce 2s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION — generelt
   ============================================ */

.section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
  max-width: none;
  padding: 100px 40px;
}

.section--dark {
  background: var(--bg-deep);
  color: var(--text-light);
  max-width: none;
  padding: 100px 40px;
}

.section--dark .section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section--light .section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 30px;
}

.section__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.4;
  max-width: 900px;
  margin-bottom: 40px;
}

.section__text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
}

.section__text p + p { margin-top: 32px; }
.section__text p { line-height: 1.75; }

/* ============================================
   YDELSESGRID (3 kolonner på HJEM)
   ============================================ */

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

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44,58,39,0.15);
}

.service-card__image {
  aspect-ratio: 3/4;
  background: var(--bg-darker) center top/cover no-repeat;
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.service-card__badge-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.service-card__badge-text {
  font-size: 15px;
  text-transform: uppercase;
  padding-right: 4px;
}

.service-card__details {
  margin: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}

.service-card__details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  padding: 4px 0;
}

.service-card__details summary::-webkit-details-marker { display: none; }

.service-card__details summary::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.2s;
}

.service-card__details[open] summary::after {
  transform: rotate(180deg);
}

.service-card__details[open] summary {
  margin-bottom: 16px;
}

.service-card__expanded {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  animation: expandFade 0.3s ease;
}

.service-card__expanded p { margin-bottom: 12px; }
.service-card__expanded p strong { color: var(--text-dark); }
.service-card__expanded ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.service-card__expanded li {
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-card__expanded li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

@keyframes expandFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO IMAGE WRAP — Billedet styres direkte
   ============================================ */

.hero-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 80px; /* plads til nav */
  background: var(--bg-deep);
  text-align: center;
  color: var(--text-light);
}

.hero-image-wrap__img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  background: var(--bg-deep);
}

.hero-image-wrap__overlay {
  padding: 40px 20px 60px;
  background: var(--bg-deep);
}

.hero-image-wrap__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: 4px;
  line-height: 1;
  margin: 12px 0 16px;
  color: var(--text-light);
}

.hero-image-wrap__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text-light);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   TIMELINE — Wheel-modellen
   ============================================ */

.timeline {
  max-width: 900px;
  margin: 40px auto 60px;
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  opacity: 0.25;
}

.timeline__step {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  width: 50%;
  position: relative;
}

.timeline__step.reveal--left {
  margin-right: auto;
  padding-right: 40px;
  text-align: right;
  flex-direction: row-reverse;
}

.timeline__step.reveal--right {
  margin-left: auto;
  padding-left: 40px;
}

.timeline__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(232,106,28,0.3);
  border: 4px solid var(--bg-light);
  position: relative;
  z-index: 2;
}

.timeline__step.reveal--left .timeline__num { margin-right: -28px; }
.timeline__step.reveal--right .timeline__num { margin-left: -28px; }

.timeline__body {
  background: var(--text-light);
  padding: 20px 24px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex: 1;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.timeline__desc {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Exit strategy */
.exit-strategy {
  max-width: 1100px;
  margin: 80px auto 0;
  text-align: center;
  padding: 0;
  background: transparent;
  color: var(--text-dark);
  border-radius: 0;
}

.exit-strategy__flag {
  font-size: 48px;
  margin-bottom: 16px;
}

.exit-strategy__svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
  display: block;
}

.exit-path:hover .exit-path__svg {
  transform: scale(1.15);
}

.exit-strategy__title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.exit-strategy__sub {
  opacity: 0.85;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.exit-path {
  padding: 32px 24px;
  background: rgba(44,58,39,0.04);
  border-radius: 8px;
  border: 1px solid rgba(44,58,39,0.1);
  text-align: center;
}

.exit-path__svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent);
  display: block;
  transition: transform 0.3s;
}

.exit-path__label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

.exit-path__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: none;
}

.exit-path__label {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .timeline::before { left: 28px; }
  .timeline__step,
  .timeline__step.reveal--left,
  .timeline__step.reveal--right {
    width: 100%;
    margin: 0 0 24px 0;
    padding: 0 0 0 70px;
    flex-direction: row;
    text-align: left;
  }
  .timeline__num { position: absolute; left: 0; margin: 0 !important; }
  .exit-strategy__paths { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLL REVEAL — slide-in animationer
   ============================================ */

.reveal {
  opacity: 0;
  transition: opacity 2.5s ease, transform 3.5s cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: transform, opacity;
}

.reveal--left  { transform: translateX(-250px); }
.reveal--right { transform: translateX(250px); }
.reveal--up    { transform: translateY(100px); }
.reveal--down  { transform: translateY(-100px); }
.reveal--zoom  { transform: scale(0.85); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* stagger children - hver efterfølgende element kommer lidt efter */
.reveal[data-delay="1"].is-visible { transition-delay: 0.25s; }
.reveal[data-delay="2"].is-visible { transition-delay: 0.50s; }
.reveal[data-delay="3"].is-visible { transition-delay: 0.75s; }

/* Respect user preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

.service-card__body { padding: 30px; flex: 1; display: flex; flex-direction: column; }

.service-card__stage {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-card__desc {
  color: #555;
  font-size: 16px;
  margin-bottom: 24px;
  flex: 1;
}

.service-card__link {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.service-card__link::after { content: ' →'; }

/* ============================================
   PILLARS (3 søjler på OM OS)
   ============================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pillar__number {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.pillar--card {
  padding: 32px 24px;
  background: rgba(44,58,39,0.04);
  border-radius: 8px;
  border: 1px solid rgba(44,58,39,0.1);
  text-align: center;
}

.pillar--card .pillar__icon {
  margin: 0 auto 20px;
}

.pillar--card .pillar__title,
.pillar--card .pillar__text {
  text-align: center;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.pillar__text { font-size: 16px; line-height: 1.7; }

/* ============================================
   FOUNDERS (OM OS)
   ============================================ */

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.founder__image {
  aspect-ratio: 3/4;
  background: var(--bg-darker) center 20%/cover no-repeat;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.founder__text { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.founder__role {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bio-details {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}

.bio-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  padding: 4px 0;
}

.bio-details summary::-webkit-details-marker { display: none; }

.bio-details summary::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.2s;
}

.bio-details[open] summary::after { transform: rotate(180deg); }
.bio-details[open] summary { margin-bottom: 20px; }

.bio-details__body {
  font-size: 15px;
  line-height: 1.75;
  animation: expandFade 0.35s ease;
}

.bio-details__body p { margin-bottom: 14px; }
.bio-details__body em { color: var(--accent); font-style: italic; }

/* ============================================
   PARTNERSKAB
   ============================================ */

.partnership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.partnership__image {
  aspect-ratio: 4/5;
  background: var(--bg-darker) center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
}

/* ============================================
   QUOTE
   ============================================ */

.quote {
  text-align: center;
  padding: 120px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.4;
  text-wrap: balance;
}

.quote__text::before { content: '"'; color: var(--accent); }
.quote__text::after { content: '"'; color: var(--accent); }

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

.footer {
  background: var(--bg-deep);
  color: var(--text-light);
  border-top: 4px solid var(--accent);
  padding: 80px 40px 40px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.footer__logo span { color: var(--accent); padding: 0 3px; }

.footer__tagline-old { display: none; }

.footer__heading {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer__list { list-style: none; }
.footer__list li { margin-bottom: 12px; }
.footer__list a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__list a:hover { color: var(--text-light); }

.footer__bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer__tagline { color: rgba(255,255,255,0.7); max-width: 400px; }

/* ============================================
   KONTAKT-FORMULAR
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea { min-height: 160px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light);
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.btn:hover { background: #c55510; }

.btn--outline {
  background: transparent;
  border: 1px solid var(--text-light);
}

.btn--outline:hover { background: var(--text-light); color: var(--text-dark); }

/* ============================================
   LISTS (ydelses-undersider)
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature-block__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-block ul {
  list-style: none;
  padding: 0;
}

.feature-block li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================
   BOARD / BESTYRELSE
   ============================================ */

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.board-member {
  padding: 30px;
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
}

.board-member__role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.board-member__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.board-member__title { color: #6B7F63; font-size: 14px; }

/* ============================================
   JOURNEY STEPS — zigzag layout for Rejsen
   ============================================ */

.journey-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.journey-step--reverse {
  direction: rtl;
}

.journey-step--reverse .journey-step__content {
  direction: ltr;
}

.journey-step__image {
  aspect-ratio: 3/4;
  background-color: var(--bg-darker);
  background-size: cover;
  background-position: center 20%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(44,58,39,0.15);
  max-height: 560px;
}

.journey-step__content {
  padding: 20px 0;
}

.journey-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-light);
  margin-bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

.journey-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.journey-step__label {
  font-size: 14px;
  text-transform: uppercase;
  padding-right: 4px;
}

.journey-step__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.journey-step__text {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.journey-step__link {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s;
  display: inline-block;
}

.journey-step__link:hover {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .journey-step,
  .journey-step--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }
}

/* ============================================
   ICON CARDS — visuelle klap-ud kort
   ============================================ */

.icon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.icon-card {
  background: var(--text-light);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(44,58,39,0.06);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44,58,39,0.12);
}

.icon-card summary {
  cursor: pointer;
  padding: 40px 28px;
  text-align: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.icon-card summary::-webkit-details-marker { display: none; }

.icon-card__emoji {
  font-size: 56px;
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.icon-card:hover .icon-card__emoji {
  transform: scale(1.15) rotate(-5deg);
}

.icon-card__svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.icon-card:hover .icon-card__svg {
  transform: scale(1.15);
}

.icon-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.icon-card__teaser {
  font-family: var(--font-serif);
  font-style: italic;
  color: #6B7F63;
  font-size: 16px;
  margin: 0;
}

.icon-card__action {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  transition: transform 0.2s;
}

.icon-card[open] .icon-card__action {
  transform: rotate(180deg);
}

.icon-card__body {
  padding: 0 28px 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  animation: expandFade 0.4s ease;
}

.icon-card__body ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
}

.icon-card__body li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.icon-card__body li:last-child { border-bottom: none; }

.icon-card__body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

@media (max-width: 900px) {
  .icon-cards { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS — udtalelser
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 50px;
}

.testimonial-grid--extra {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.testimonial {
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--accent);
  background: none;
  box-shadow: none;
  border-radius: 0;
  min-height: 0;
}

.testimonial::before { content: none; }

.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.testimonial__author {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
}

.testimonial-more {
  margin-top: 40px;
  text-align: center;
}

.testimonial-more summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}

.testimonial-more summary::-webkit-details-marker { display: none; }
.testimonial-more summary::after {
  content: '▼';
  font-size: 9px;
  transition: transform 0.3s;
}

.testimonial-more[open] summary::after { transform: rotate(180deg); }

.testimonial-grid--extra .testimonial {
  animation: expandFade 0.5s ease backwards;
}
.testimonial-grid--extra .testimonial:nth-child(1) { animation-delay: 0.05s; }
.testimonial-grid--extra .testimonial:nth-child(2) { animation-delay: 0.15s; }
.testimonial-grid--extra .testimonial:nth-child(3) { animation-delay: 0.25s; }
.testimonial-grid--extra .testimonial:nth-child(4) { animation-delay: 0.35s; }
.testimonial-grid--extra .testimonial:nth-child(5) { animation-delay: 0.45s; }
.testimonial-grid--extra .testimonial:nth-child(6) { animation-delay: 0.55s; }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   INLINE DETAILS — klap-ud i body-tekst
   ============================================ */

.inline-details {
  margin-top: 24px;
}

.inline-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  padding: 8px 0;
}

.inline-details summary::-webkit-details-marker { display: none; }

.inline-details summary::after {
  content: '▼';
  font-size: 9px;
  transition: transform 0.3s;
}

.inline-details[open] summary::after { transform: rotate(180deg); }
.inline-details[open] summary { margin-bottom: 8px; }

.inline-details__body {
  animation: expandFade 0.35s ease;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.inline-details__body p {
  margin-bottom: 16px;
}

.inline-details__body p:last-child {
  margin-bottom: 0;
}

.inline-details--dark .inline-details__body {
  border-top-color: rgba(255,255,255,0.15);
}

/* ============================================
   ARROW LIST — til formål/udfald
   ============================================ */

.arrow-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  max-width: 800px;
}

.arrow-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 17px;
  line-height: 1.5;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: bold;
}

/* ============================================
   BOARD — kompakt version med små cirkel-billeder
   ============================================ */

.board-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.board-compact__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.board-compact__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--bg-darker);
  background-size: cover;
  background-position: center top;
  margin-bottom: 16px;
  border: 3px solid var(--bg-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.board-compact__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.board-compact__role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.board-compact__title {
  font-size: 13px;
  line-height: 1.5;
  color: #6B7F63;
  max-width: 240px;
}

@media (max-width: 768px) {
  .board-compact { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   PLACEHOLDER-BILLEDE
   ============================================ */

.placeholder-img {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .section { padding: 60px 20px; }
  .section--light { padding: 60px 20px; }
  .services { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 30px; }
  .founders { grid-template-columns: 1fr; }
  .partnership { grid-template-columns: 1fr; padding: 60px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
}

/* Bestyrelse toggle */
.board-toggle {
  max-width: 900px;
  margin: 0 auto;
}
.board-toggle__summary {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  padding: 12px 24px;
  display: inline-block;
  list-style: none;
  transition: opacity 0.2s;
  opacity: 0.75;
}
.board-toggle__summary::-webkit-details-marker { display: none; }
.board-toggle__summary:hover { opacity: 1; }
.board-toggle__summary::after {
  content: " +";
  margin-left: 4px;
  font-family: var(--font-body);
}
.board-toggle[open] .board-toggle__summary::after { content: " -"; }

/* Board members slide in when toggle opens */
.board-toggle[open] .board-compact__member {
  animation: boardSlideIn 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.board-toggle[open] .board-compact__member:nth-child(1) { animation-delay: 0.1s; animation-name: boardSlideInLeft; }
.board-toggle[open] .board-compact__member:nth-child(2) { animation-delay: 0.4s; animation-name: boardSlideInUp; }
.board-toggle[open] .board-compact__member:nth-child(3) { animation-delay: 0.7s; animation-name: boardSlideInRight; }

@keyframes boardSlideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes boardSlideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes boardSlideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Social media icon */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Brand: orange colon in next:stage */
.ns-colon {
  color: var(--accent);
  font-weight: inherit;
}

/* Contact icon (Kontakt-side) */
.contact-icon__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  transition: all 0.4s ease;
}
.contact-icon:hover .contact-icon__circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-4px);
}
.contact-icon:hover span:last-child {
  color: var(--accent);
}

/* Nav dropdown (next:stage menu) */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.nav__dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
  z-index: 1000;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}
.nav__stage-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-12px);
}
.nav__dropdown:hover .nav__stage-item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.nav__dropdown:hover .nav__stage-item:nth-child(1) { transition-delay: 0.1s; }
.nav__dropdown:hover .nav__stage-item:nth-child(2) { transition-delay: 0.18s; }
.nav__dropdown:hover .nav__stage-item:nth-child(3) { transition-delay: 0.26s; }
.nav__stage-item:hover {
  background: rgba(232, 106, 28, 0.08) !important;
}
.nav__stage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  flex-shrink: 0;
}
.nav__stage-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__stage-label {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav__stage-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}

/* Hide nav__stage tooltip (from previous feature) when using dropdown */
.nav__dropdown .nav__stage-item[data-stage]::after {
  display: none;
}

/* Mega menu — next:stage dropdown (Option A) */
.nav__dropdown--mega {
  position: static;
}
.nav__mega {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(190, 210, 180, 0.98);
  backdrop-filter: blur(12px);
  padding: 40px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
  z-index: 999;
}
.nav__dropdown--mega:hover .nav__mega,
.nav__dropdown--mega:focus-within .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.nav__dropdown--mega::before {
  content: '';
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 998;
}
.nav__mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nav__mega-card {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none !important;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__dropdown--mega:hover .nav__mega-card {
  opacity: 1;
  transform: translateY(0);
}
.nav__dropdown--mega:hover .nav__mega-card:nth-child(1) { transition-delay: 0.15s; }
.nav__dropdown--mega:hover .nav__mega-card:nth-child(2) { transition-delay: 0.28s; }
.nav__dropdown--mega:hover .nav__mega-card:nth-child(3) { transition-delay: 0.41s; }
.nav__mega-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,58,39,0.1) 0%, rgba(44,58,39,0.4) 50%, rgba(44,58,39,0.92) 100%);
  transition: background 0.4s ease;
}
.nav__mega-card:hover .nav__mega-overlay {
  background: linear-gradient(180deg, rgba(232,106,28,0.15) 0%, rgba(44,58,39,0.45) 50%, rgba(44,58,39,0.95) 100%);
}
.nav__mega-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #ffffff;
  z-index: 2;
}
.nav__mega-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.nav__mega-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  color: #ffffff;
}
.nav__mega-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 12px 0;
  color: #ffffff;
}
.nav__mega-cta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: transform 0.3s ease;
  display: inline-block;
}
.nav__mega-card:hover .nav__mega-cta {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .nav__mega-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nav__mega-card {
    height: 160px;
  }
}

/* Slide dropdown — Option B (clean bar) */
.nav__dropdown--slide {
  position: relative;
}
.nav__dropdown--slide::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -100px;
  right: -100px;
  height: 30px;
}
.nav__slide {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000;
  min-width: 240px;
}
.nav__dropdown--slide:hover .nav__slide,
.nav__dropdown--slide:focus-within .nav__slide {
  pointer-events: auto;
}
.nav__dropdown--slide:hover .nav__slide-item,
.nav__dropdown--slide:focus-within .nav__slide-item {
  opacity: 1;
  transform: translateX(0);
}
.nav__dropdown--slide:hover .nav__slide-item:nth-child(1),
.nav__dropdown--slide:focus-within .nav__slide-item:nth-child(1) {
  transition-delay: 0.15s;
}
.nav__dropdown--slide:hover .nav__slide-item:nth-child(2),
.nav__dropdown--slide:focus-within .nav__slide-item:nth-child(2) {
  transition-delay: 1.4s;
}
.nav__dropdown--slide:hover .nav__slide-item:nth-child(3),
.nav__dropdown--slide:focus-within .nav__slide-item:nth-child(3) {
  transition-delay: 2.6s;
}
.nav__slide-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none !important;
  color: var(--text-dark) !important;
  position: relative;
  background: rgba(44, 58, 39, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 10px 30px rgba(44, 58, 39, 0.2);
  opacity: 0;
  transform: translateX(-250px);
  transition: opacity 2.5s ease, transform 3.5s cubic-bezier(0.16, 0.84, 0.24, 1), background 0.4s ease;
}
.nav__slide-item:hover {
  background: var(--accent);
}
.nav__slide-label {
  color: var(--accent) !important;
}
.nav__slide-item:hover .nav__slide-label {
  color: #ffffff !important;
}
.nav__slide-title {
  color: #ffffff !important;
}
.nav__slide-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.nav__slide-title {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.2px;
  color: #ffffff;
  line-height: 1;
}


/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-deep);
  color: #f2efe6;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: var(--font-body);
  animation: cookieSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 250px;
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--accent);
}
.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(242, 239, 230, 0.85);
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 12px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(242, 239, 230, 0.8);
  border: 1px solid rgba(242, 239, 230, 0.3);
}
.cookie-banner__btn--reject:hover {
  background: rgba(242, 239, 230, 0.1);
  color: #f2efe6;
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: #ffffff;
}
.cookie-banner__btn--accept:hover {
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 18px 20px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__btn {
    flex: 1;
    padding: 12px 16px;
  }
}

/* FOOTER LEGAL INFO */
.footer__legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 239, 230, 0.1);
  font-size: 12px;
  color: rgba(242, 239, 230, 0.55);
  line-height: 1.7;
}
.footer__legal a {
  color: rgba(242, 239, 230, 0.7);
  text-decoration: underline;
}
.footer__legal a:hover {
  color: var(--accent);
}

/* ============================================

/* ============================================
   MOBIL & HAMBURGER — ÉN REN VERSION
   Samler alle mobile requirements
   ============================================ */

/* Global: ingen horizontal scroll, billeder holder sig indenfor */
html, body { overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }

/* ========= HAMBURGER (SVG-ikon) ========= */
.nav__burger {
  display: none;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1002;
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
}
.nav__burger-icon {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__burger-icon--close { opacity: 0; transform: rotate(-90deg); }
body.menu-open .nav__burger { color: var(--accent); }
body.menu-open .nav__burger-icon--open { opacity: 0; transform: rotate(90deg); }
body.menu-open .nav__burger-icon--close { opacity: 1; transform: rotate(0deg); }

/* ========= OVERLAY-MENU (sage baggrund, ren tekst) ========= */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(190, 210, 180, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow-y: auto;
}
body.menu-open .nav__overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
.nav__overlay-nav {
  text-align: center;
  width: 100%;
  max-width: 360px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, opacity 0.5s ease 0.15s;
}
body.menu-open .nav__overlay-nav { transform: translateY(0); opacity: 1; }
.nav__overlay-link {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  padding: 12px 0;
  transition: color 0.25s ease;
}
.nav__overlay-link:hover,
.nav__overlay-link:active,
.nav__overlay-link:focus { color: var(--accent); }
.nav__overlay-link--cta {
  margin-top: 20px;
  display: inline-block;
  font-size: 16px;
  padding: 12px 30px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  letter-spacing: 1.5px;
}
.nav__overlay-sub {
  margin: 14px 0 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(44, 58, 39, 0.18);
  border-bottom: 1px solid rgba(44, 58, 39, 0.18);
}
.nav__overlay-sublink {
  display: block;
  text-decoration: none;
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}
.nav__overlay-swap {
  position: relative;
  display: inline-block;
  height: 1.1em;
  line-height: 1.1;
}
.nav__overlay-swap-default,
.nav__overlay-swap-hover {
  display: block;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__overlay-swap-default { color: var(--text-dark); }
.nav__overlay-swap-hover {
  position: absolute;
  inset: 0;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  white-space: nowrap;
}
.nav__overlay-sublink:hover .nav__overlay-swap-default,
.nav__overlay-sublink:active .nav__overlay-swap-default,
.nav__overlay-sublink:focus .nav__overlay-swap-default {
  opacity: 0;
  transform: translateY(-8px);
}
.nav__overlay-sublink:hover .nav__overlay-swap-hover,
.nav__overlay-sublink:active .nav__overlay-swap-hover,
.nav__overlay-sublink:focus .nav__overlay-swap-hover {
  opacity: 1;
  transform: translateY(0);
}

/* ============== TABLET (max 900px) ============== */
@media (max-width: 900px) {
  .section { padding: 60px 20px !important; max-width: 100% !important; }
  .section__title { font-size: clamp(32px, 7vw, 56px) !important; line-height: 1.1; }
  .services { grid-template-columns: 1fr !important; gap: 24px; }
  .pillars { grid-template-columns: 1fr !important; gap: 30px; }
  .footer__inner { grid-template-columns: 1fr !important; gap: 30px; text-align: center; }
  .footer__list { justify-content: center; }
}

/* ============== MOBIL (max 768px) ============== */
@media (max-width: 768px) {
  /* Nav: vis burger, skjul normal links. Nav er IKKE fixed på mobil = overlapper ikke billedet */
  .nav {
    position: relative !important;
    padding: 18px 68px 18px 20px !important;
    justify-content: flex-start !important;
  }
  .nav__burger { display: flex; }
  .nav__links { display: none !important; }
  body.menu-open { overflow: hidden; }
  body { padding-top: 0 !important; }

  /* Hero: Enkel opbygning - billede fuld bredde, tekst under på sage */
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 0 0 40px 0 !important;
    background: var(--bg-sage, #bed2b4) !important;
    display: block !important;
    text-align: center !important;
  }
  .hero__mobile-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Hero-indhold under billedet */
  .hero > * {
    position: static !important;
    padding: 0 !important;
    margin: 8px auto !important;
    text-align: center !important;
    color: var(--text-dark) !important;
  }
  .hero .section__label {
    color: var(--accent) !important;
    margin-top: 10px !important;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .hero__logo,
  .hero h1 {
    font-size: clamp(36px, 11vw, 64px) !important;
    color: var(--text-dark) !important;
    line-height: 1 !important;
    margin: 8px auto !important;
  }
  .hero__tagline {
    color: var(--text-dark) !important;
    font-size: 15px !important;
    max-width: 320px !important;
    margin: 4px auto 20px !important;
  }
  .hero__scroll {
    position: static !important;
    transform: none !important;
    margin: 10px auto 20px !important;
    color: var(--text-dark) !important;
    font-size: 24px !important;
  }
  .hero::before { display: none !important; }

  /* Sections centreret */
  .section { padding: 40px 20px !important; text-align: center !important; }
  .section__title { font-size: clamp(28px, 8vw, 40px) !important; text-align: center !important; }
  .section__label { text-align: center !important; }
  .section p { text-align: center !important; }
  .section ul, .section ol {
    list-style: none !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .section li { text-align: center !important; padding: 4px 0 !important; }

  /* Service cards & pillars */
  .service-card, .service-card__body, .pillar {
    text-align: center !important;
  }

  /* Footer */
  .footer, .footer__inner, .footer__right, .footer__bottom, .footer__legal {
    text-align: center !important;
  }
  .footer__right, .footer__list { justify-content: center !important; }

  /* Cookie banner */
  .cookie-banner { padding: 16px 18px !important; }
  .cookie-banner__text strong { font-size: 14px; }
  .cookie-banner__text p { font-size: 12px; }
}

/* ============================================
   MOBIL — SEKTIONER UDEN BAGGRUND (transparent/sage)
   ============================================ */
@media (max-width: 768px) {
  .section,
  .section--dark,
  .section--light,
  .section--sage,
  .section--cream {
    background: transparent !important;
    background-color: transparent !important;
  }

  /* Hele siden har en base sage-farve */
  body {
    background: var(--bg-sage, #bed2b4) !important;
  }

  /* Dark sections som Exit-strategy/CTA skal stadig kunne være accent-farvet */
  .section--accent,
  .exit-strategy,
  .cta-section {
    background: var(--bg-deep, #2c3a27) !important;
    color: #fff !important;
  }
  .section--accent *,
  .exit-strategy *,
  .cta-section * {
    color: inherit !important;
  }

  /* Scroll-arrow eksplicit centreret */
  .hero__scroll,
  .hero .hero__scroll {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 16px auto !important;
    text-align: center !important;
    display: block !important;
    width: 40px !important;
    color: var(--text-dark, #2c3a27) !important;
  }
}

/* Skjul mobil-hero billede på desktop (kun min-width: 769px) */
@media (min-width: 769px) {
  .hero__mobile-img { display: none !important; }
}

/* Padding-adjustment på tekst-sektionen i hero på mobil */
@media (max-width: 768px) {
  .hero > *:not(.hero__mobile-img) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Kontakt-emner: desktop = grid med kasser, mobil = enkel stak */
.contact-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 50px auto 0;
  align-items: stretch;
}
.contact-topic {
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(44,58,39,0.1);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44,58,39,0.06);
  text-align: left;
}
.contact-topic h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px 0;
  letter-spacing: 1.5px;
  text-align: left;
}
.contact-topic p {
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .contact-topics {
    display: block !important;
    max-width: 600px;
    margin: 30px auto 0 !important;
    padding: 0 20px;
  }
  .contact-topic {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .contact-topic h3 {
    text-align: center !important;
    margin: 0 0 6px 0 !important;
  }
  .contact-topic p {
    text-align: center !important;
  }
}

/* ====== AI-READABLE SERVICES OVERVIEW (under hero på forside) ====== */
.services-overview {
  background: var(--bg-cream, #f4efe6);
  padding: 80px 40px;
}
.services-overview__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.services-overview__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1px;
  color: var(--text-on-green);
  line-height: 1.15;
  margin: 14px auto 50px;
  max-width: 880px;
}
.services-overview__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
  position: relative;
}
.services-overview__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 24px 22px 26px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  backdrop-filter: blur(2px);
  transition: opacity 1.1s cubic-bezier(0.16, 0.84, 0.24, 1) var(--stage-delay, 0s),
              transform 1.1s cubic-bezier(0.16, 0.84, 0.24, 1) var(--stage-delay, 0s),
              background 0.4s ease,
              box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}
.services-overview__item:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 32px rgba(44, 58, 39, 0.12);
}
.services-overview.is-visible .services-overview__item {
  opacity: 1;
  transform: translateY(0);
}
.services-overview__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.services-overview__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 0.9;
  color: var(--accent);
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.services-overview__item:hover .services-overview__num {
  transform: scale(1.1) translateY(-3px);
}
.services-overview__icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.services-overview__item:hover .services-overview__icon {
  opacity: 1;
  transform: rotate(-6deg);
}
.services-overview__body {
  flex: 1 1 auto;
  text-align: center;
}
/* Connecting line + arrow mellem stages (desktop) — staircase animation */
.services-overview__item--stage[data-stage="1"]::after,
.services-overview__item--stage[data-stage="2"]::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 56px;
  width: 0;
  max-width: 24px;
  height: 2px;
  background: var(--accent);
  opacity: 0.85;
  transition: width 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--line-delay, 1s);
  z-index: 2;
  pointer-events: none;
  transform-origin: left center;
}
.services-overview__item--stage[data-stage="1"]::before,
.services-overview__item--stage[data-stage="2"]::before {
  content: "";
  position: absolute;
  right: -32px;
  top: 50px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease calc(var(--line-delay, 1s) + 0.7s),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--line-delay, 1s) + 0.7s);
  z-index: 2;
  pointer-events: none;
}
.services-overview.is-visible .services-overview__item--stage[data-stage="1"]::after,
.services-overview.is-visible .services-overview__item--stage[data-stage="2"]::after {
  width: 24px;
}
.services-overview.is-visible .services-overview__item--stage[data-stage="1"]::before,
.services-overview.is-visible .services-overview__item--stage[data-stage="2"]::before {
  opacity: 0.85;
  transform: translateX(0);
  animation: stairBounceH 1.6s ease-in-out calc(var(--line-delay, 1s) + 1.4s) infinite;
}
@keyframes stairBounceH {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.services-overview.is-visible .services-overview__item {
  opacity: 1;
  transform: translateY(0);
}
.services-overview__stage {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px 0;
  font-weight: 700;
}
.services-overview__stage--plus {
  opacity: 0.7;
}
.services-overview__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-on-green);
  margin: 0 0 6px 0;
  text-transform: uppercase;
}
.services-overview__desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-on-green);
  opacity: 0.85;
  margin: 0;
  min-height: 4.65em;
}

@media (max-width: 980px) {
  .services-overview__list {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 520px;
    margin: 0 auto;
  }
  .services-overview__item--stage[data-stage="1"]::after,
  .services-overview__item--stage[data-stage="2"]::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: -42px !important;
    width: 2px !important;
    height: 0 !important;
    max-height: 28px !important;
    background: var(--accent) !important;
    transform: translateX(-50%) !important;
    transform-origin: top center !important;
    border: none !important;
    transition: height 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--line-delay, 1s) !important;
  }
  .services-overview__item--stage[data-stage="1"]::before,
  .services-overview__item--stage[data-stage="2"]::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: -22px !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 10px solid var(--accent) !important;
    border-bottom: none !important;
    border-left: 7px solid transparent !important;
    border-right: 7px solid transparent !important;
    background: transparent !important;
    transform: translate(-50%, -8px) !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease calc(var(--line-delay, 1s) + 0.6s),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--line-delay, 1s) + 0.6s) !important;
  }
  .services-overview.is-visible .services-overview__item--stage[data-stage="1"]::after,
  .services-overview.is-visible .services-overview__item--stage[data-stage="2"]::after {
    height: 28px !important;
  }
  .services-overview.is-visible .services-overview__item--stage[data-stage="1"]::before,
  .services-overview.is-visible .services-overview__item--stage[data-stage="2"]::before {
    opacity: 0.85 !important;
    transform: translate(-50%, 0) !important;
    animation: stairBounce 1.6s ease-in-out calc(var(--line-delay, 1s) + 1.2s) infinite !important;
  }
}
@keyframes stairBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 4px); }
}
@media (max-width: 768px) {
  .services-overview {
    padding: 56px 24px;
  }
  .services-overview__num {
    font-size: 44px;
  }
  .services-overview__icon {
    width: 26px;
    height: 26px;
  }
  .services-overview__name {
    font-size: 19px;
  }
}
