/* ==========================================================================
   Let's Go Autocamper — Design System (lys udgave)
   --------------------------------------------------------------------------
   Alt er offline: ingen CDN, ingen eksterne fonte, ingen tracking.
   Rediger farver og typografi ét sted: :root herunder.

   OM LÆSBARHED
   Publikum er typisk 50+ og læser på både telefon, tablet og stor skærm.
   Derfor: brødtekst på 17px i stedet for 16, luftig linjeafstand, kontrast
   godt over WCAG AA, og alt der kan klikkes er mindst 48px højt.
   ========================================================================== */

@import url('../fonts/fonts.css');

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Papir og flader — varm, lys og ren */
  --cream:      #fffbf4;
  --paper:      #ffffff;
  --sand:       #f8f1e4;
  --sand-deep:  #f0e5d2;

  /* Tekst — høj kontrast, aldrig gråt-i-gråt */
  --ink:        #17232e;   /* overskrifter  ~14:1 på cream */
  --body:       #3a4956;   /* brødtekst      ~8:1 */
  --muted:      #616e7c;   /* sekundært — holdt lige over WCAG AA (4.5:1) på hvidt */

  /* Glade accentfarver */
  --sun:        #fdb92e;
  --sun-soft:   #ffe6a8;
  --orange:     #f97316;
  --orange-deep:#e05505;
  --sky:        #1f9fdb;
  --sky-soft:   #cdebf9;
  --sky-deep:   #10688f;
  --grass:      #4fb06e;
  --grass-soft: #d6f0dd;
  --grass-deep: #2c7d47;
  --berry:      #e0576a;
  --plum:       #7c5cc4;

  --yt:         #ff0033;

  /* Linjer */
  --line:       #ece1cf;
  --line-soft:  #f4ecdf;
  --line-ink:   rgba(23, 35, 46, .12);

  /* Gradienter */
  --grad-sun:   linear-gradient(100deg, #ffcc4d 0%, #f97316 55%, #ef5f0a 100%);
  --grad-sky:   linear-gradient(180deg, #d8f0fb 0%, #eaf7fd 42%, var(--cream) 100%);
  --grad-grass: linear-gradient(180deg, #6cc48a 0%, #4fb06e 100%);

  /* Typografi */
  --font-display: 'Outfit', 'Segoe UI Variable Display', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --fs-hero:  clamp(2.6rem, 7.4vw, 6.2rem);
  --fs-h2:    clamp(1.95rem, 4.2vw, 3.25rem);
  --fs-h3:    clamp(1.25rem, 2vw, 1.65rem);
  --fs-lead:  clamp(1.09rem, 1.35vw, 1.28rem);
  --fs-body:  1.0625rem;              /* 17px */
  --fs-sm:    0.94rem;
  --fs-xs:    0.82rem;

  /* Rum */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --wrap: 1240px;
  --wrap-wide: 1420px;

  /* Radius — bløde, venlige former */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 34px;  --r-pill: 999px;

  /* Skygger — varme, ikke grå */
  --sh-sm: 0 2px 8px rgba(90, 66, 30, .07);
  --sh-md: 0 10px 30px rgba(90, 66, 30, .11);
  --sh-lg: 0 24px 60px rgba(90, 66, 30, .15);
  --sh-sun: 0 12px 32px rgba(240, 120, 20, .30);
  --sh-lift: 0 18px 40px rgba(90, 66, 30, .16);

  /* Bevægelse */
  --ease:      cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: 160ms;
  --t-med:  280ms;
  --t-slow: 620ms;

  --nav-h: 82px;
  --tap: 48px;                        /* mindste klikhøjde */
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip-link {
  position: absolute;
  left: 50%; top: -100px;
  transform: translateX(-50%);
  z-index: 10000;
  padding: var(--sp-3) var(--sp-5);
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  transition: top var(--t-med) var(--ease);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--wide { width: min(100% - 2.5rem, var(--wrap-wide)); margin-inline: auto; }
@media (min-width: 700px) {
  .wrap { width: min(100% - 4rem, var(--wrap)); }
  .wrap--wide { width: min(100% - 4rem, var(--wrap-wide)); }
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--sky { background: linear-gradient(180deg, var(--sky-soft) 0%, var(--cream) 100%); }

.section-head { max-width: 60ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Sticker-agtig etiket over hver overskrift */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--sun-soft);
  color: #7a4a06;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  transform: rotate(-1.2deg);
}
.eyebrow--sky   { background: var(--sky-soft);   color: #0b4f6e; }
.eyebrow--grass { background: var(--grass-soft); color: #1f6237; }

.section-title { font-size: var(--fs-h2); }

.lead {
  font-size: var(--fs-lead);
  color: var(--body);
  margin-top: var(--sp-4);
  max-width: 56ch;
}
.section-head--center .lead { margin-inline: auto; }

/* Håndtegnet streg under et fremhævet ord */
.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: -.08em;
  height: .16em;
  background: var(--sun);
  border-radius: var(--r-pill);
  transform: scaleX(0) rotate(-.6deg);
  transform-origin: left;
  transition: transform 900ms var(--ease) 250ms;
}
.is-in .squiggle::after, .squiggle.is-in::after { transform: scaleX(1) rotate(-.6deg); }

.text-sun { color: var(--orange-deep); }

/* --------------------------------------------------------------------------
   4. KNAPPER
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: var(--tap);
  padding: 0 var(--sp-6);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--line);
  position: relative;

  /* Knapperne har en gennemsigtig 2px kant, og baggrunden er en gradient.
     Som standard beregner browseren gradienten ud fra det indvendige felt
     (padding-box) og maler den derefter ud over kanten — og i kanten bliver
     gradientens yderste farve så trukket med ud. Det gav en misfarvet stribe
     i venstre side og fik gradienten til at se afskåret ud i højre.
     border-box får gradienten til at dække hele knappen, som man forventer. */
  background-origin: border-box;
  background-clip: border-box;

  transition: transform var(--t-fast) var(--ease-bounce),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.btn--primary {
  --btn-bg: var(--grad-sun);
  --btn-fg: #fff;
  border-color: transparent;
  box-shadow: var(--sh-sun);
}
.btn--primary:hover { box-shadow: 0 18px 44px rgba(240,120,20,.42); }

.btn--sky { --btn-bg: var(--sky); --btn-fg: #fff; border-color: transparent; }
.btn--sky:hover { box-shadow: 0 16px 40px rgba(31,159,219,.38); }

.btn--yt { --btn-bg: var(--yt); --btn-fg: #fff; border-color: transparent; }
.btn--yt:hover { box-shadow: 0 16px 40px rgba(255,0,51,.34); }

.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; border-color: transparent; }

.btn--ghost { --btn-bg: transparent; border-color: var(--line-ink); }
.btn--ghost:hover { background: var(--paper); }

.btn--sm { min-height: 42px; padding: 0 var(--sp-5); font-size: .92rem; }
.btn--lg { min-height: 58px; padding: 0 var(--sp-7); font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: height var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.nav.is-stuck {
  height: 68px;
  background: rgba(255, 251, 244, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}
@supports (backdrop-filter: blur(1px)) {
  .nav.is-stuck { background: rgba(255,251,244,.80); backdrop-filter: blur(16px) saturate(150%); }
}

.nav__inner {
  width: min(100% - 2.5rem, var(--wrap-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
@media (min-width: 700px) { .nav__inner { width: min(100% - 4rem, var(--wrap-wide)); } }

/* Logoet — deres eget, i en hvid cirkel så den stiplede ring får luft */
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); margin-right: auto; }
.brand__mark {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  padding: 3px;
  flex: none;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-med) var(--ease-bounce), box-shadow var(--t-med) var(--ease);
}
.nav.is-stuck .brand__mark { width: 46px; height: 46px; }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.07); box-shadow: var(--sh-md); }
.brand__mark img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand__tag {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}

.nav__links { display: none; align-items: center; gap: var(--sp-1); }
@media (min-width: 1040px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
  padding: var(--sp-3) var(--sp-4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .98rem;
  font-weight: 600;
  color: var(--body);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--sand); }
.nav__link.is-active { color: var(--orange-deep); background: var(--sun-soft); }
.nav__link--accent { color: var(--orange-deep); }

.nav__cta { display: none; }
@media (min-width: 780px) { .nav__cta { display: inline-flex; } }

.burger {
  display: grid;
  place-items: center;
  width: var(--tap); height: var(--tap);
  border-radius: 14px;
  border: 2px solid var(--line);
  background: var(--paper);
}
@media (min-width: 1040px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-1);
  padding: var(--sp-8) var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  padding: var(--sp-3) 0;
  border-bottom: 2px solid var(--line);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-med) var(--ease);
}
.mobile-menu a:hover { color: var(--orange-deep); padding-left: var(--sp-3); }
.mobile-menu .btn { margin-top: var(--sp-5); align-self: flex-start; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   6. HERO — illustreret landskab
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(1.5rem, 5vw, 3.5rem));
  background: var(--grad-sky);
  overflow: hidden;
  isolation: isolate;
}

.hero__inner { position: relative; z-index: 3; text-align: center; }

.hero__logo {
  width: clamp(104px, 15vw, 152px);
  height: clamp(104px, 15vw, 152px);
  margin: 0 auto var(--sp-5);
  border-radius: 50%;
  background: var(--paper);
  padding: 8px;
  box-shadow: 0 14px 40px rgba(90, 66, 30, .18);
  animation: bobIn 1s var(--ease-bounce) both;
}
.hero__logo img { width: 100%; height: 100%; border-radius: 50%; }
@keyframes bobIn {
  from { opacity: 0; transform: translateY(-24px) scale(.82) rotate(-12deg); }
  to   { opacity: 1; transform: none; }
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
  color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn 1s var(--ease) both;
}
.hero__title .line:nth-child(1) > span { animation-delay: .18s; }
.hero__title .line:nth-child(2) > span { animation-delay: .30s; }
@keyframes riseIn { to { transform: translateY(0); } }

.hero__word-go {
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Taglinjen står nu som undertekst, ikke som hovedoverskrift */
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 2px solid var(--sun);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  animation: popIn .7s var(--ease-bounce) .5s both;
  transform: rotate(-1deg);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.8) rotate(-1deg); }
  to   { opacity: 1; transform: scale(1) rotate(-1deg); }
}

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--body);
  max-width: 54ch;
  margin: var(--sp-5) auto 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  justify-content: center;
}

/* --- Illustration: himmel, sol, skyer, bakker, vej, camper --- */
.scene {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  height: clamp(190px, 26vw, 330px);
  z-index: 1;
}
.scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.sun-disc { transform-origin: center; transform-box: fill-box; }
.sun-rays {
  transform-origin: center;
  transform-box: fill-box;
  animation: spinSlow 44s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.cloud { animation: floatX linear infinite; }
.cloud--1 { animation-duration: 68s; }
.cloud--2 { animation-duration: 92s; animation-delay: -30s; }
.cloud--3 { animation-duration: 78s; animation-delay: -55s; }
@keyframes floatX {
  from { transform: translateX(-22vw); }
  to   { transform: translateX(122vw); }
}

.bird { animation: flap 3.2s var(--ease-soft) infinite; transform-origin: center; transform-box: fill-box; }
.bird--2 { animation-delay: -1.1s; }
.bird--3 { animation-delay: -2.2s; }
@keyframes flap {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-5px) scaleY(.72); }
}

/* Camperen kører hen over vejen */
.hero-van {
  animation: driveBy 19s linear infinite;
}
@keyframes driveBy {
  from { transform: translateX(-16%); }
  to   { transform: translateX(112%); }
}
.hero-van__body { animation: bounce 1.1s var(--ease-soft) infinite; transform-origin: bottom center; transform-box: fill-box; }
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-1.6px) rotate(-.5deg); }
  75%      { transform: translateY(-.8px) rotate(.4deg); }
}
.wheel-spin { transform-origin: center; transform-box: fill-box; animation: spinFast 1.1s linear infinite; }
@keyframes spinFast { to { transform: rotate(360deg); } }

.road-dash { stroke-dasharray: 26 22; animation: dashRun 1.1s linear infinite; }
@keyframes dashRun { to { stroke-dashoffset: -48; } }

/* Bølget overgang mellem sektioner */
.wave { display: block; width: 100%; height: auto; margin-bottom: -1px; }

/* --------------------------------------------------------------------------
   7. TAL
   -------------------------------------------------------------------------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

.stat {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-med) var(--ease-bounce), box-shadow var(--t-med) var(--ease);
}
.stat:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--sh-lift); }
.stat:nth-child(even):hover { transform: translateY(-6px) rotate(1deg); }

.stat__icon {
  width: 46px; height: 46px;
  margin: 0 auto var(--sp-3);
  border-radius: 14px;
  display: grid; place-items: center;
}
.stat:nth-child(1) .stat__icon { background: var(--sun-soft); }
.stat:nth-child(2) .stat__icon { background: var(--sky-soft); }
.stat:nth-child(3) .stat__icon { background: var(--grass-soft); }
.stat:nth-child(4) .stat__icon { background: #f6e4f0; }
.stat__icon svg { width: 24px; height: 24px; }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. NYESTE VIDEO
   -------------------------------------------------------------------------- */
.latest__grid { display: grid; gap: var(--sp-6); align-items: start; }
@media (min-width: 1000px) { .latest__grid { grid-template-columns: 1.55fr 1fr; gap: var(--sp-7); } }

.feature {
  position: relative;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: var(--sh-md);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--sun); }

.feature__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.feature:hover .feature__media img { transform: scale(1.05); }

.play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.play__btn {
  position: relative;
  width: clamp(62px, 8vw, 86px);
  height: clamp(62px, 8vw, 86px);
  border-radius: 50%;
  background: var(--yt);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  transition: transform var(--t-med) var(--ease-bounce), background var(--t-med) var(--ease);
}
.play__btn svg { width: 34%; height: 34%; margin-left: 8%; fill: #fff; }
.feature:hover .play__btn, .vcard:hover .play__btn { transform: scale(1.14); }
.play__btn::before {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  animation: ripple 2.6s var(--ease-soft) infinite;
}
@keyframes ripple {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.feature__badge {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--grad-sun);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--sh-sun);
  transform: rotate(-2deg);
}

.feature__foot { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.feature__title { font-size: var(--fs-h3); line-height: 1.2; }

.meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.meta__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--sand);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--body);
}
.meta__chip svg { width: 15px; height: 15px; opacity: .7; }

.upnext { display: flex; flex-direction: column; gap: var(--sp-3); }
.upnext__title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: var(--sp-1);
}
.upnext__item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--paper);
  border: 2px solid var(--line-soft);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.upnext__item:hover { border-color: var(--sun); transform: translateX(5px); box-shadow: var(--sh-sm); }
.upnext__thumb { aspect-ratio: 16 / 9; border-radius: var(--r-sm); overflow: hidden; background: var(--sand); }
.upnext__thumb img { width: 100%; height: 100%; object-fit: cover; }
.upnext__meta { min-width: 0; }
.upnext__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .99rem;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.upnext__sub { font-size: var(--fs-xs); color: var(--muted); margin-top: var(--sp-2); }

/* --------------------------------------------------------------------------
   9. VIDEO-GITTER
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  min-height: 46px;
  border-radius: var(--r-pill);
  border: 2px solid var(--line);
  background: var(--paper);
  background-origin: border-box;      /* samme grund som ved .btn ovenfor */
  background-clip: border-box;
  color: var(--body);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--sun); color: var(--ink); transform: translateY(-2px); }
.chip.is-active {
  /* Langformen background-image og ikke background: den korte form
     nulstiller background-origin til padding-box, og så er den misfarvede
     kant tilbage. background-origin gentages her for en sikkerheds skyld,
     så reglen holder uanset rækkefølgen i arket. */
  background-image: var(--grad-sun);
  background-origin: border-box;
  background-clip: border-box;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-sun);
}

.vgrid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

.vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.vcard:hover { transform: translateY(-8px); border-color: var(--sun); box-shadow: var(--sh-lift); }
.vcard__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand); }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.vcard:hover .vcard__media img { transform: scale(1.07); }
.vcard .play { opacity: 0; transition: opacity var(--t-med) var(--ease); }
.vcard:hover .play, .vcard:focus-within .play { opacity: 1; }
.vcard .play__btn { width: 54px; height: 54px; }

.vcard__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.vcard__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.32;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vcard__meta {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 500;
}
.vcard__meta span { display: inline-flex; align-items: center; gap: 5px; }
.vcard__meta svg { width: 15px; height: 15px; }

.stretch::before { content: ''; position: absolute; inset: 0; z-index: 4; }

.tag {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  z-index: 3;
  padding: 5px var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--berry);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
  transform: rotate(3deg);
}

/* --------------------------------------------------------------------------
   10. SHORTS-RAIL
   -------------------------------------------------------------------------- */
.rail {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: var(--sp-2) var(--sp-5);
  scrollbar-width: thin;
  scrollbar-color: var(--sand-deep) transparent;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(1.25rem, calc(50vw - var(--wrap) / 2));
}
@media (min-width: 700px) { .rail { padding-inline: max(2rem, calc(50vw - var(--wrap) / 2)); } }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--sand-deep); border-radius: 99px; }
.rail::-webkit-scrollbar-track { background: transparent; }

.short {
  position: relative;
  flex: none;
  width: clamp(158px, 40vw, 208px);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--sand);
  border: 2px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-med) var(--ease-bounce), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.short:hover { transform: translateY(-8px) rotate(-1.5deg); border-color: var(--sun); box-shadow: var(--sh-lift); }
.short img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.short:hover img { transform: scale(1.07); }
.short__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.82) 100%);
}
.short__title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.short__pill {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  z-index: 2;
  padding: 4px var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--yt);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

/* --------------------------------------------------------------------------
   11. TURPLANLÆGGER
   -------------------------------------------------------------------------- */
.planner__grid { display: grid; gap: var(--sp-5); }
@media (min-width: 1060px) { .planner__grid { grid-template-columns: 1.35fr .95fr; gap: var(--sp-6); align-items: start; } }

.mapbox {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #e8f5fc 0%, #dcf0fa 100%);
  border: 2px solid var(--line);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.mapbox__svg { display: block; width: 100%; height: auto; touch-action: pan-y; }

.map-country {
  fill: #f3ead9;
  stroke: #e0d2ba;
  stroke-width: 1.4;
  stroke-linejoin: round;
  transition: fill var(--t-med) var(--ease);
}
.map-country.is-visited { fill: #e4f2e2; stroke: #bfdcc0; }
.map-country.is-hot { fill: var(--sun-soft); stroke: var(--sun); }

.map-route {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 9;
  opacity: .75;
  stroke-dashoffset: 2400;
  transition: stroke-dashoffset 3s var(--ease-soft);
}
.is-in .map-route { stroke-dashoffset: 0; }

/* Nålene. Hitboksen er bevidst større end prikken, så den er nem at ramme. */
.pin { cursor: pointer; }
.pin__hit { fill: transparent; }
.pin__shadow { fill: rgba(23,35,46,.16); }
.pin__drop {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: pinDrop .6s var(--ease-bounce) both;
}
@keyframes pinDrop {
  from { opacity: 0; transform: translateY(-26px) scale(.5); }
  to   { opacity: 1; transform: none; }
}
.pin__body { transition: transform var(--t-med) var(--ease-bounce); transform-box: fill-box; transform-origin: bottom center; }
.pin:hover .pin__body, .pin:focus-visible .pin__body { transform: translateY(-5px) scale(1.16); }
.pin.is-selected .pin__body { transform: translateY(-6px) scale(1.28); }
.pin.is-dim { opacity: .28; }
.pin__ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.pin.is-selected .pin__ring { opacity: 1; animation: pinPulse 1.7s var(--ease-soft) infinite; }
@keyframes pinPulse {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* Hopper kort, når man har klikket på stoppet nede i "Min tur",
   så man kan se hvilken nål der er tale om. */
.pin.is-flash .pin__body { animation: pinHop 1.4s var(--ease-bounce); }
@keyframes pinHop {
  0%, 100% { transform: translateY(-6px) scale(1.28); }
  20%      { transform: translateY(-20px) scale(1.5); }
  45%      { transform: translateY(-6px) scale(1.28); }
  65%      { transform: translateY(-13px) scale(1.4); }
  85%      { transform: translateY(-6px) scale(1.28); }
}
.pin__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  fill: var(--ink);
  paint-order: stroke;
  stroke: rgba(255,255,255,.95);
  stroke-width: 4;
  stroke-linejoin: round;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.pin:hover .pin__label, .pin.is-selected .pin__label, .pin:focus-visible .pin__label { opacity: 1; }

.map-legend {
  position: absolute;
  left: var(--sp-4); bottom: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  max-width: calc(100% - 2rem);
}
@supports (backdrop-filter: blur(1px)) { .map-legend { backdrop-filter: blur(8px); } }
.map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--body);
}
.map-legend__dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.15); }

.map-hint {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mapbox.has-selection .map-hint { opacity: 0; }

/* Panelet ved siden af kortet */
.stop-panel {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 12px);
}
.stop-panel__empty { padding: var(--sp-7) var(--sp-6); text-align: center; color: var(--muted); }
.stop-panel__empty svg { width: 62px; height: 62px; margin: 0 auto var(--sp-4); opacity: .55; }

.stop-panel__head { padding: var(--sp-5) var(--sp-6) var(--sp-4); border-bottom: 2px solid var(--line-soft); }
.stop-panel__type {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px var(--sp-3);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.stop-panel__name { font-size: clamp(1.5rem, 3vw, 2rem); }
.stop-panel__land { font-size: var(--fs-sm); color: var(--muted); font-weight: 600; margin-top: 2px; }
.stop-panel__note { padding: var(--sp-5) var(--sp-6); font-size: var(--fs-body); color: var(--body); }

.stop-panel__eps { padding: 0 var(--sp-6) var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.stop-ep {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-2);
  border-radius: var(--r-md);
  border: 2px solid var(--line-soft);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.stop-ep:hover { border-color: var(--sun); transform: translateX(4px); }
.stop-ep__thumb { position: relative; aspect-ratio: 16/9; border-radius: var(--r-sm); overflow: hidden; background: var(--sand); }
.stop-ep__thumb img { width: 100%; height: 100%; object-fit: cover; }
.stop-ep__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.22);
}
.stop-ep__play svg { width: 26px; height: 26px; fill: #fff; filter: drop-shadow(0 2px 5px rgba(0,0,0,.5)); }
.stop-ep__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.3;
  color: var(--ink);
  align-self: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stop-panel__actions { padding: 0 var(--sp-6) var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.privacy-line {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: var(--sp-3);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  line-height: 1.55;
}
.privacy-line svg { width: 15px; height: 15px; flex: none; margin-top: 3px; }

/* "Min tur" */
.mytrip {
  margin-top: var(--sp-5);
  background: var(--paper);
  border: 2px dashed var(--sky);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}
.mytrip__head { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.mytrip__title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); margin-right: auto; }
.mytrip__count {
  padding: 3px var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--sky);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 800;
}
.mytrip__empty { color: var(--muted); font-size: var(--fs-sm); }
.mytrip__list { list-style: none; margin: 0 0 var(--sp-4); padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); counter-reset: stop; }
.mytrip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--sand);
  animation: slideIn .35s var(--ease) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}
.mytrip__item::before {
  counter-increment: stop;
  content: counter(stop);
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  display: grid; place-items: center;
}
/* Hele navnet er en knap: tryk på den og kortet ruller hen til stoppet */
.mytrip__goto {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 38px;
  text-align: left;
  border-radius: var(--r-sm);
  transition: transform var(--t-fast) var(--ease);
}
.mytrip__goto:hover { transform: translateX(3px); }
.mytrip__goto:hover .mytrip__name { color: var(--orange-deep); }

.mytrip__name {
  font-weight: 700;
  color: var(--ink);
  margin-right: auto;
  font-size: var(--fs-sm);
  transition: color var(--t-fast) var(--ease);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mytrip__land { font-size: var(--fs-xs); color: var(--muted); flex: none; }
.mytrip__x {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--muted);
  flex: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.mytrip__x:hover { background: #fde8ea; color: var(--berry); }
.mytrip__foot { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.mytrip__note {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.55;
  border-left: 3px solid var(--sun);
  padding-left: var(--sp-3);
}

/* Liste over alle stop — alternativet til kortet */
.stoplist { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.stoplist__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  min-height: var(--tap);
  border-radius: var(--r-md);
  background: var(--paper);
  border: 2px solid var(--line);
  text-align: left;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.stoplist__item:hover, .stoplist__item.is-selected { border-color: var(--sun); transform: translateY(-2px); }
.stoplist__dot { width: 13px; height: 13px; border-radius: 50%; flex: none; border: 2px solid rgba(0,0,0,.12); }
.stoplist__name { font-weight: 700; color: var(--ink); font-size: var(--fs-sm); }
.stoplist__land { font-size: var(--fs-xs); color: var(--muted); margin-left: auto; }

.viewtoggle { display: inline-flex; gap: var(--sp-1); padding: 5px; background: var(--sand); border-radius: var(--r-pill); }
.viewtoggle button {
  padding: var(--sp-2) var(--sp-5);
  min-height: 42px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted);
  transition: all var(--t-fast) var(--ease);
}
.viewtoggle button.is-active { background: var(--paper); color: var(--ink); box-shadow: var(--sh-sm); }

/* --------------------------------------------------------------------------
   12. OM OS
   -------------------------------------------------------------------------- */
.about__grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 900px) { .about__grid { grid-template-columns: .8fr 1.2fr; } }

.about__portrait { position: relative; justify-self: center; }
.about__portrait img {
  width: clamp(210px, 28vw, 300px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: var(--paper);
  padding: 10px;
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}
.about__portrait::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sun), var(--orange), var(--sky), var(--grass), var(--sun));
  opacity: .28;
  filter: blur(14px);
  animation: spinSlow 22s linear infinite;
}

.quote {
  border-left: 5px solid var(--sun);
  padding-left: var(--sp-5);
  margin: var(--sp-6) 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.quote cite { display: block; margin-top: var(--sp-3); font-size: var(--fs-sm); font-style: normal; font-weight: 600; color: var(--muted); font-family: var(--font-body); }

.points { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
@media (min-width: 640px) { .points { grid-template-columns: repeat(3, 1fr); } }
.point {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 2px solid var(--line);
  transition: transform var(--t-med) var(--ease-bounce), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.point:hover { transform: translateY(-6px); border-color: var(--sun); box-shadow: var(--sh-md); }
.point__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: var(--sp-4);
}
.point:nth-child(1) .point__icon { background: var(--sun-soft); }
.point:nth-child(2) .point__icon { background: var(--grass-soft); }
.point:nth-child(3) .point__icon { background: var(--sky-soft); }
.point__icon svg { width: 24px; height: 24px; }
.point__title { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.point__text { font-size: var(--fs-sm); color: var(--body); margin-top: var(--sp-2); }

/* --------------------------------------------------------------------------
   13. CTA-BÅND
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 5.5vw, 4rem);
  background: linear-gradient(120deg, #fff4dd 0%, #ffe9c9 45%, #ffe0d0 100%);
  border: 2px solid var(--sun);
  box-shadow: var(--sh-md);
}
.band--sky { background: linear-gradient(120deg, #e3f4fd 0%, #d3ecfa 100%); border-color: var(--sky); }
.band__grid { display: grid; gap: var(--sp-6); align-items: center; position: relative; z-index: 1; }
@media (min-width: 860px) { .band__grid { grid-template-columns: 1fr auto; gap: var(--sp-8); } }
.band__title { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
.band__lead { color: var(--body); margin-top: var(--sp-4); max-width: 52ch; }
.band__lead + .band__lead { margin-top: var(--sp-4); }

.band__deco {
  position: absolute;
  right: -30px; bottom: -20px;
  width: clamp(150px, 22vw, 250px);
  opacity: .22;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 2px solid var(--line);
  background: var(--sand);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer__grid { display: grid; gap: var(--sp-7); }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__blurb { color: var(--body); font-size: var(--fs-sm); margin-top: var(--sp-4); max-width: 42ch; }
.footer__head {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-1); }
.footer__list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: var(--fs-sm);
  color: var(--body);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.footer__list a:hover { color: var(--orange-deep); padding-left: 5px; }

.footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.footer__disclosure {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  background: var(--paper);
  border: 2px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  background: rgba(23, 35, 46, .82);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
@supports (backdrop-filter: blur(1px)) { .lightbox { backdrop-filter: blur(10px); } }
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__panel {
  width: min(100%, 1080px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-lg);
  transform: scale(.94) translateY(14px);
  transition: transform var(--t-slow) var(--ease);
}
.lightbox.is-open .lightbox__panel { transform: none; }
.lightbox__frame { aspect-ratio: 16 / 9; }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.lightbox__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--paper);
}
.lightbox__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-right: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lightbox__close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  width: var(--tap); height: var(--tap);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--sh-md);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lightbox__close:hover { background: var(--yt); color: #fff; transform: rotate(90deg); }

.lightbox__offline { display: none; padding: var(--sp-7) var(--sp-5); text-align: center; background: var(--paper); color: var(--body); font-size: var(--fs-sm); }
.lightbox.is-offline .lightbox__frame { display: none; }
.lightbox.is-offline .lightbox__offline { display: block; }

body.no-scroll { overflow: hidden; }

/* --------------------------------------------------------------------------
   16. SCROLL-ANIMATIONER
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(.94); }
.stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

.no-reveal .reveal,
.no-reveal .stagger > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
.no-reveal .map-route { stroke-dashoffset: 0 !important; }
.no-reveal .squiggle::after { transform: scaleX(1) rotate(-.6deg) !important; }

/* --------------------------------------------------------------------------
   17. TILBUDSSIDE
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #fff2da 0%, var(--cream) 100%);
  overflow: hidden;
}
.page-hero__title { font-size: clamp(2.35rem, 6vw, 4.4rem); font-weight: 900; letter-spacing: -.045em; max-width: 16ch; }

.adnote {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 2px solid var(--sun);
  box-shadow: var(--sh-sm);
  margin-top: var(--sp-6);
  max-width: 68ch;
}
.adnote__badge {
  flex: none;
  padding: 5px var(--sp-3);
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.adnote p { font-size: var(--fs-sm); color: var(--body); line-height: 1.6; }
.adnote a { color: var(--orange-deep); text-decoration: underline; font-weight: 600; }

.toolbar { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between; margin-bottom: var(--sp-5); }
.search { position: relative; flex: 1; min-width: 230px; max-width: 340px; }
.search svg { position: absolute; left: var(--sp-4); top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--muted); pointer-events: none; }
.search input {
  width: 100%;
  min-height: var(--tap);
  padding: 0 var(--sp-4) 0 2.9rem;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 2px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast) var(--ease);
}
.search input::placeholder { color: var(--muted); }
.search input:focus { outline: none; border-color: var(--sky); }

.dgrid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); }

.deal {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 2px solid var(--line);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.deal::before {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.deal:hover { transform: translateY(-7px); border-color: var(--sun); box-shadow: var(--sh-lift); }
.deal:hover::before { transform: scaleX(1); }

.deal__top { display: flex; align-items: flex-start; gap: var(--sp-4); padding-right: 5.5rem; }
.deal__icon {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--sun-soft);
  font-size: 1.5rem;
  line-height: 1;
}
.deal__vendor { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.deal__name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; color: var(--ink); line-height: 1.22; margin-top: 3px; }
.deal__tagline { font-size: var(--fs-sm); color: var(--orange-deep); font-weight: 600; margin-top: var(--sp-2); }
.deal__desc { font-size: var(--fs-sm); color: var(--body); margin-top: var(--sp-4); }

.deal__why {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--sand);
  border-left: 4px solid var(--sun);
  font-size: var(--fs-sm);
  color: var(--body);
  font-style: italic;
  line-height: 1.6;
}

.deal__badge {
  position: absolute;
  top: var(--sp-5); right: var(--sp-5);
  max-width: 5rem;
  padding: 4px var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--grass-soft);
  color: var(--grass-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.deal__foot { margin-top: auto; padding-top: var(--sp-5); display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.deal__price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-right: auto; }

.deal__video {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  min-height: 40px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--sky-deep);
  transition: color var(--t-fast) var(--ease);
}
.deal__video:hover { color: var(--orange-deep); }
.deal__video svg { width: 16px; height: 16px; }

.deal__ad { position: absolute; bottom: var(--sp-2); right: var(--sp-4); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.empty {
  grid-column: 1 / -1;
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
  color: var(--muted);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
}

.steps { display: grid; gap: var(--sp-5); counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: var(--sp-6) var(--sp-5) var(--sp-5); border-radius: var(--r-lg); background: var(--paper); border: 2px solid var(--line); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: var(--sp-4); right: var(--sp-5);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--sun-soft);
}
.step__title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); padding-right: 3rem; }
.step__text { font-size: var(--fs-sm); color: var(--body); margin-top: var(--sp-3); }

.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq__item { border: 2px solid var(--line); border-radius: var(--r-md); background: var(--paper); overflow: hidden; transition: border-color var(--t-fast) var(--ease); }
.faq__item:hover { border-color: var(--sun); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  min-height: var(--tap);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
}
.faq__q span { flex: 1; }
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sun-soft);
  color: var(--orange-deep);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-slow) var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 var(--sp-5) var(--sp-5); font-size: var(--fs-sm); color: var(--body); }

.toast {
  position: fixed;
  left: 50%; bottom: var(--sp-6);
  transform: translate(-50%, 20px);
  z-index: 9500;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease-bounce), visibility var(--t-med);
}
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   18. HJÆLPERE
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.row { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.row--center { justify-content: center; }
.row--between { justify-content: space-between; }

/* --------------------------------------------------------------------------
   19. REDUCERET BEVÆGELSE
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__title .line > span { transform: none !important; }
  .hero__logo, .hero__tagline { opacity: 1 !important; transform: none !important; }
  .map-route { stroke-dashoffset: 0 !important; }
  .squiggle::after { transform: scaleX(1) rotate(-.6deg) !important; }
  .hero-van { transform: translateX(42%) !important; }
  .pin__drop { opacity: 1 !important; transform: none !important; }
}

@media print {
  body { background: #fff; }
  .nav, .lightbox, .mobile-menu, .scene, .rail, .toast { display: none !important; }
  .mytrip { border-style: solid; page-break-inside: avoid; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: .7em; color: #666; }
}
