@charset "UTF-8";
/* ════════════════════════════════════════════════════
   CVI: 4 farver, Figtree Light (300) + Extra Bold (800)
   Samme system som forsiden (index.html).
   ════════════════════════════════════════════════════ */
:root {
  --dark-blue: #1a2227;
  --mint: #2effd1;
  --warm-sand: #EBD7AF;
  --cold-sand: #fafafa;

  --cs-soft: rgba(250, 250, 250, 0.75);
  --cs-faint: rgba(250, 250, 250, 0.5);
  --cs-line: rgba(250, 250, 250, 0.12);
  --db-soft: rgba(26, 34, 39, 0.7);
  --db-faint: rgba(26, 34, 39, 0.45);
  --db-line: rgba(26, 34, 39, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--warm-sand); }

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  color: var(--cold-sand);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--mint); color: var(--dark-blue); }

img { max-width: 100%; display: block; }
#bg-canvas { position: fixed; inset: 0; z-index: -1; background: var(--cold-sand); }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 800; }
section[id] { scroll-margin-top: 100px; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* TYPE */
.h1 { font-size: clamp(48px, 5.6vw, 88px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.98; }
.h2 { font-size: clamp(42px, 5vw, 72px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.lead { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.55; font-weight: 300; }
.eyebrow { font-size: 15px; font-weight: 800; letter-spacing: normal; color: var(--mint); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; font-family: inherit; font-size: 14px;
  font-weight: 800; letter-spacing: -0.005em; border: none;
  border-radius: 20px 0 20px 0; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-mint { background: var(--mint); color: var(--dark-blue); }
.btn-mint:hover { background: var(--cold-sand); }
.subhero .btn-mint:hover { background: var(--dark-blue); color: var(--cold-sand); }
.btn-ghost-light { background: transparent; color: var(--cold-sand); border: 1.5px solid var(--cs-line); }
.btn-ghost-light:hover { background: var(--cold-sand); color: var(--dark-blue); border-color: var(--cold-sand); }
.btn-ghost-dark { background: transparent; color: var(--dark-blue); border: 1.5px solid var(--db-line); }
.btn-ghost-dark:hover { background: var(--dark-blue); color: var(--cold-sand); }
.arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* REVEAL (samme som forsiden) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
nav.is-scrolled {
  background: rgba(26, 34, 39, 0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px; max-width: 1400px; margin: 0 auto;
}
.zeit-logo { height: 36px; width: auto; display: block; }
.nav-logo { color: var(--dark-blue); transition: color .35s ease; }
nav.is-scrolled .nav-logo, nav.nav-open .nav-logo { color: var(--cold-sand); }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 300; }
.nav-links a { position: relative; padding: 6px 0; color: var(--dark-blue); transition: color .35s ease; }
nav.is-scrolled .nav-links a { color: var(--cold-sand); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--mint); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 11px 18px; font-size: 13px; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.lang-switch button {
  background: none; border: 0; color: var(--cold-sand); cursor: pointer;
  font: inherit; padding: 4px 7px; border-radius: 8px 0 8px 0; transition: color .2s ease, background .2s ease;
}
.lang-switch button:hover { color: var(--mint); }
.lang-switch button.active { color: var(--dark-blue); background: var(--mint); }
.nav-lang { gap: 7px; }
.nav-lang button { color: var(--dark-blue); }
.nav-lang button:hover { color: var(--mint); }
.nav-lang button.active { color: var(--dark-blue); background: var(--mint); }
nav.is-scrolled .nav-lang button { color: var(--cold-sand); }
nav.is-scrolled .nav-lang button:hover { color: var(--mint); }
nav.is-scrolled .nav-lang button.active { color: var(--dark-blue); background: var(--mint); }
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 9px; cursor: pointer;
  background: transparent; border: 1.5px solid var(--db-line); border-radius: 10px;
  transition: border-color .35s ease;
}
.burger span { display: block; height: 2px; width: 100%; background: var(--dark-blue); border-radius: 2px; transition: transform .25s ease, opacity .2s ease, background .35s ease; }
nav.is-scrolled .burger { border-color: var(--cs-line); }
nav.is-scrolled .burger span { background: var(--cold-sand); }

/* Foto-hero-sider: lyst logo + menutekst over heroen (foer scroll) for laesbarhed paa det moerke foto */
body.photo-hero nav:not(.is-scrolled) .nav-logo,
body.photo-hero nav:not(.is-scrolled) .nav-links a { color: var(--cold-sand); }
body.photo-hero nav:not(.is-scrolled) .nav-lang button:not(.active) { color: var(--cold-sand); }
body.photo-hero nav:not(.is-scrolled) .burger { border-color: var(--cs-line); }
body.photo-hero nav:not(.is-scrolled) .burger span { background: var(--cold-sand); }
.burger.open { border-color: var(--cs-line); }
.burger.open span { background: var(--cold-sand); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--dark-blue);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 110px 24px 56px; overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 36px; width: 100%; margin: 0; position: static; text-align: center; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 26px; margin: 0; padding: 0; position: static; flex: none; width: auto; }
.mobile-nav-links a { color: var(--cold-sand); text-decoration: none; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; transition: color .2s ease; }
.mobile-nav-links a:hover, .mobile-nav-links a:focus { color: var(--mint); }
.mobile-lang { margin: 0; gap: 14px; position: static; flex: none; justify-content: center; }
.mobile-lang button { padding: 9px 18px; font-size: 14px; }

/* HERO (kompakt under-side hero) */
.subhero {
  position: relative; color: var(--dark-blue);
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 100px 0 72px; overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--warm-sand); opacity: .55;
}
.subhero .wrap { position: relative; z-index: 2; max-width: 920px; }
.subhero .eyebrow { color: var(--dark-blue); opacity: 1; }
.subhero h1 { margin: 16px 0 22px; }
.subhero .lead { max-width: 660px; color: var(--dark-blue); }
.subhero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* Foto-hero paa undersider: fuldt baggrundsfoto + centreret indhold. Hero-teksten goeres lys for laesbarhed paa det moerke foto. */
.subhero.has-photo { color: var(--cold-sand); background-size: cover; background-position: center; background-repeat: no-repeat; }
.subhero.has-photo::before { display: none; }
.subhero.has-photo::after { content: ''; position: absolute; inset: 0; background: rgba(26, 34, 39, .46); z-index: 1; pointer-events: none; }
.subhero.has-photo .wrap { position: relative; z-index: 2; text-align: center; margin-left: auto; margin-right: auto; }
.subhero.has-photo .eyebrow { color: var(--mint); opacity: 1; }
.subhero.has-photo h1 { color: var(--cold-sand); }
.subhero.has-photo .lead { color: var(--cold-sand); margin-left: auto; margin-right: auto; }
.subhero.has-photo .subhero-cta { justify-content: center; }
.subhero-bg-1 { background-image: url(assets/underside-1.webp); }
.subhero-bg-2 { background-image: url(assets/underside-2.webp); }
.subhero-bg-3 { background-image: url(assets/underside-3.webp); }
.subhero-bg-4 { background-image: url(assets/underside-4.webp); }
.subhero-bg-5 { background-image: url(assets/underside-5.webp); }
.subhero-bg-6 { background-image: url(assets/underside-6.webp); }

/* GENERIC SECTION HEADS */
.sec { padding: 110px 0; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 { margin: 14px 0 18px; }
.sec-head .lead { color: var(--cold-sand); }
.on-sand { background: var(--cold-sand); color: var(--dark-blue); }
.on-sand .sec-head .lead { color: var(--dark-blue); }
.on-sand .eyebrow { color: var(--dark-blue); opacity: 1; }
.on-warm { color: var(--dark-blue); }
.on-warm .eyebrow { color: var(--dark-blue); opacity: 1; }
.on-warm .sec-head .lead { color: var(--dark-blue); }

/* PRINCIP-GRID (3 grunde) */
.princip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.princip { }
.princip .num { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--mint); margin-bottom: 14px; }
.on-sand .princip .num, .on-warm .princip .num { color: var(--dark-blue); }
.on-sand .princip p, .on-warm .princip p { color: var(--dark-blue); }
.princip .num, .kanal .knum { display: inline-block; transform-origin: left bottom; transform: scale(var(--num-scale, 1)); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.princip.in .num, .kanal.in .knum { --num-scale: 2; }
.princip h3 { margin-bottom: 10px; }
.princip p { font-size: 15px; line-height: 1.6; color: var(--cold-sand); }

/* FORMAT-KORT */
.format-block { margin-bottom: 64px; }
.format-block:last-child { margin-bottom: 0; }
.format-block > .eyebrow { display: block; margin-bottom: 8px; }
.format-block > h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 24px; }
.format-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.fcard {
  background: rgba(250,250,250,0.04); border: 1px solid var(--cs-line);
  border-radius: 24px 0 24px 0; padding: 28px 26px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--mint); background: rgba(46,255,209,0.05); }
.fcard h4 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.fcard p { font-size: 14px; line-height: 1.6; color: var(--cold-sand); }
.fcard .spec {
  display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 800;
  letter-spacing: .04em; color: var(--mint);
  border: 1px solid var(--cs-line); border-radius: 100px; padding: 5px 12px;
}
/* Kort på lyse sektioner */
.on-sand .fcard, .on-warm .fcard { background: rgba(26,34,39,0.03); border-color: var(--db-line); }
.on-sand .fcard:hover, .on-warm .fcard:hover { background: #fafafa; border-color: var(--dark-blue); }
.on-sand .fcard p, .on-warm .fcard p { color: var(--dark-blue); }
.on-sand .fcard .spec, .on-warm .fcard .spec { color: var(--dark-blue); border-color: var(--db-line); }

/* MEDIEPLAN, anbefalede formater i tags */
.tagrow { margin-bottom: 30px; }
.tagrow h4 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 13px; font-weight: 800; letter-spacing: .01em;
  background: var(--dark-blue); color: var(--cold-sand);
  border-radius: 100px; padding: 8px 16px;
}
.on-warm .tag.alt { background: var(--mint); color: var(--dark-blue); }

/* KANAL-KORT */
.kanal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kanal {
  background: rgba(250,250,250,0.04); border: 1px solid var(--cs-line);
  border-radius: 28px 0 28px 0; padding: 34px 30px; position: relative;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.kanal:hover { transform: translateY(-4px); border-color: var(--mint); background: rgba(46,255,209,0.05); }
.kanal .knum { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--mint); margin-bottom: 16px; }
.kanal h3 { margin-bottom: 8px; }
.kanal .ksub { font-size: 13px; color: var(--cold-sand); margin-bottom: 18px; }
.kanal ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.kanal li { font-size: 14px; line-height: 1.5; color: var(--cold-sand); padding-left: 22px; position: relative; }
.kanal li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50% 50% 50% 0; background: var(--mint);
}

/* CALLOUT-bånd (Bauhaus) */
.band {
  color: var(--dark-blue);
  padding: 88px 0; position: relative;
}
.band::before {
  content: ''; position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  border: 28px solid var(--dark-blue); opacity: .12;
}
.band .wrap { position: relative; z-index: 2; max-width: 820px; }
.band h2 { letter-spacing: -.035em; }
.band p { margin-top: 18px; font-size: clamp(16px,1.3vw,19px); max-width: 620px; color: var(--dark-blue); }

/* BOOKING / FINAL CTA (som forsiden) */
.finalcta { padding: 140px 0 120px; position: relative; overflow: hidden; }
.booking-grid { display: block; position: relative; z-index: 1; }
.booking-left { margin-bottom: 46px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px 64px; align-items: center; }
.booking-intro { max-width: 640px; }
.booking-left .eyebrow { display: block; margin-bottom: 22px; }
.booking-left h2 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; margin-bottom: 22px; }
.booking-left p { font-size: 16px; font-weight: 300; color: var(--cold-sand); line-height: 1.5; margin-bottom: 28px; max-width: 44ch; }
.booking-includes { align-self: center; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-includes li { position: relative; padding-left: 26px; font-size: 14px; font-weight: 300; color: var(--cold-sand); }
.booking-includes li::before { content: ''; position: absolute; left: 0; top: 2px; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%232effd1%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat; }
.booking-embed { position: relative; z-index: 1; }
.booking-embed iframe { width: 100%; height: 760px; border: 8px solid var(--mint); border-radius: 20px 0 20px 0; background: var(--cold-sand); display: block; box-shadow: 0 50px 90px -25px #252f35; }

/* FOOTER (som forsiden) */
footer { padding: 80px 0 36px; border-top: 1px solid var(--cs-line); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer-brand .zeit-logo { margin-bottom: 22px; }
.footer-brand p { font-size: 13px; font-weight: 300; color: var(--cold-sand); max-width: 32ch; line-height: 1.5; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-top: 20px; border-radius: 50%; border: 1px solid var(--cs-line); color: var(--cold-sand); transition: color .2s ease, background .2s ease, border-color .2s ease; }
.footer-social-link:hover { color: var(--dark-blue); background: var(--mint); border-color: var(--mint); }
.footer-cert { margin-top: 18px; font-size: 12px; font-weight: 300; color: var(--cold-sand); letter-spacing: 0.02em; }
.footer-cert a { color: inherit; text-decoration: none; transition: color .2s ease; }
.footer-cert a:hover { color: var(--mint); }
.footer-col h4 { font-size: 11px; font-weight: 800; margin-bottom: 22px; color: var(--mint); letter-spacing: normal; text-transform: none; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 13px; font-weight: 300; }
.footer-col a { color: var(--cold-sand); transition: color .2s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--cs-line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px 28px; font-size: 12px; font-weight: 300; color: var(--cold-sand); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: var(--cold-sand); transition: color .2s; }
.footer-legal a:hover { color: var(--mint); }

/* Fjern stor bogstavafstand på små overskrifter/labels, ens med forsiden */
.eyebrow,
.princip .num,
.kanal .knum { letter-spacing: normal; }

/* TEXT-SCROLL: store overskrifter farves ord-for-ord ved scroll, samme som forsiden */
.text-scroll { color: var(--dark-blue); }
.text-scroll .ts-word { display: inline-block; opacity: var(--w, 0.18); transition: opacity 0.25s linear; }
.text-scroll.on-dark { color: var(--cold-sand); }
.text-scroll.on-dark .ts-word { opacity: 1; color: color-mix(in srgb, var(--mint) calc(var(--m, 0) * 100%), var(--cold-sand)); transition: color 0.2s linear; }
.text-scroll.on-mint { color: var(--dark-blue); }
.text-scroll.on-mint .ts-word { opacity: var(--w, 0.25); }

/* Kontinuerlig Bauhaus-drift på dekorative former, samme som forsiden (translate komponerer med eksisterende transform) */
@keyframes drift-slow   { 0%,100% { translate: 0 0; } 50% { translate: -10px -14px; } }
@keyframes drift-medium { 0%,100% { translate: 0 0; } 50% { translate: 12px -8px; } }
@keyframes drift-diag   { 0%,100% { translate: 0 0; } 50% { translate: -14px 10px; } }
.subhero::before { animation: drift-slow 16s ease-in-out infinite; }
.band::before    { animation: drift-medium 18s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .subhero::before, .subhero::after, .band::before { animation: none; }
  .text-scroll .ts-word { opacity: 1 !important; }
  .princip .num, .kanal .knum { transition: none; }
  .princip.in .num, .kanal.in .knum { --num-scale: 1; }
}

/* FORMAT-GALLERI */
.gallery-sec .sec-head .lead { color: var(--dark-blue); }
.gallery-sec .sec-head .eyebrow { color: var(--dark-blue); opacity: 1; }
.fmt-group { margin-bottom: 48px; }
.fmt-group:last-child { margin-bottom: 0; }
.fmt-group > .eyebrow { display: block; margin-bottom: 6px; color: var(--dark-blue); opacity: 1; }
.fmt-group > h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 18px; color: var(--dark-blue); }
.fmt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.fmt-card { background: #fafafa; border: 1px solid var(--db-line); border-radius: 20px 0 20px 0; padding: 18px; }
.fmt-stage { height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fmt-stage.tall { height: 210px; }
.fmt-stage svg { max-width: 100%; max-height: 100%; height: auto; display: block; }
.fmt-cap b { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.01em; color: var(--dark-blue); margin-bottom: 5px; }
.fmt-cap span { display: block; font-size: 13px; line-height: 1.5; color: var(--dark-blue); }

.fcard-illu { background: var(--cold-sand); border-radius: 14px 0 14px 0; height: 104px; display: flex; align-items: center; justify-content: center; padding: 14px; margin-bottom: 18px; overflow: hidden; }
.fcard-illu svg { max-width: 100%; max-height: 100%; height: auto; width: auto; display: block; }

/* FORMAT-MODAL */
#fmt-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(26,34,39,0.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
#fmt-modal.open { display: flex; }
.fm-panel { position: relative; width: 100%; max-width: 720px; max-height: 90vh; overflow: auto; background: var(--dark-blue); border-radius: 28px 0 28px 0; padding: 32px; box-shadow: 0 30px 80px rgba(26,34,39,.45); }
.fm-eyebrow { font-size: 15px; font-weight: 800; color: var(--mint); margin-bottom: 8px; }
.fm-title { font-size: clamp(22px,3vw,30px); font-weight: 800; letter-spacing: -.03em; color: var(--cold-sand); margin-bottom: 8px; }
.fm-note { font-size: 14px; line-height: 1.55; color: var(--cold-sand); margin-bottom: 22px; max-width: 60ch; }
.fm-stage svg { width: 100%; height: auto; display: block; }
.fm-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: none; border-radius: 12px 0 12px 0; background: var(--mint); color: var(--dark-blue); font-size: 22px; font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.fm-close:hover { transform: translateY(-2px); background: var(--cold-sand); }
svg[data-format] { cursor: pointer; }
.fcard-illu, .fmt-stage { position: relative; }
.fcard-illu::after, .fmt-stage::after { content: '+'; position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--mint); color: var(--dark-blue); font-weight: 800; font-size: 14px; line-height: 1; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.fcard:hover .fcard-illu::after, .fcard-illu:focus-visible::after, .fmt-card:hover .fmt-stage::after, .fmt-card:focus-visible .fmt-stage::after { opacity: 1; }
.fcard-illu:focus-visible, .fmt-card:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .fm-close:hover { transform: none; } }

/* CASES GRID */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; margin-top: 6px; }
.case-shot { position: relative; aspect-ratio: 4 / 3; border-radius: 16px 0 16px 0; overflow: hidden; background: rgba(250,250,250,0.05); }
.case-link { display: block; width: 100%; height: 100%; position: relative; }
.case-photo { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.case-shot:hover .case-photo { transform: scale(1.14); }
.case-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,34,39,.6), rgba(26,34,39,0) 55%); z-index: 1; }
.case-logo { position: absolute; left: 20px; bottom: 18px; z-index: 2; height: auto; width: auto; max-height: 26px; max-width: 52%; filter: brightness(0) invert(1); }
.case-cta { position: absolute; right: 20px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; color: var(--cold-sand); font-size: 13px; font-weight: 800; letter-spacing: .01em; white-space: nowrap; transition: color .25s ease; }
.case-cta svg { width: 14px; height: 14px; display: block; transition: transform .25s ease; }
.case-shot:hover .case-cta { color: var(--mint); }
.case-shot:hover .case-cta svg { transform: translateX(3px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang { display: none; }
  .burger { display: inline-flex; }
  .princip-grid { grid-template-columns: 1fr; gap: 36px; }
  .kanal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
/* Swipebare kort på mobil (samme mønster som forsiden) */
@media (max-width: 720px) {
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .booking-left { grid-template-columns: 1fr; gap: 28px; }
  .booking-embed iframe { height: 100vh; height: 100dvh; }
  .format-grid, .fmt-grid, .kanal-grid {
    display: flex; flex-direction: row; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin: 22px -48px 0; padding: 14px 48px 18px;
    scrollbar-width: none;
  }
  .format-grid::-webkit-scrollbar, .fmt-grid::-webkit-scrollbar, .kanal-grid::-webkit-scrollbar { display: none; }
  .format-grid > .fcard, .kanal-grid > .kanal { flex: 0 0 84%; scroll-snap-align: center; }
  .fmt-grid > .fmt-card { flex: 0 0 58%; scroll-snap-align: center; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 24px; }
  .format-grid, .fmt-grid, .kanal-grid { margin: 22px -24px 0; padding: 14px 24px 18px; }
  .nav-inner { padding: 18px 24px; }
  .sec { padding: 76px 0; }
  .subhero { padding: 92px 0 72px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Sideovergang: pak sammen, glid videre, pak ud (View Transitions) --- */
@view-transition { navigation: auto; }
::view-transition { background-color: #EBD7AF; }
/* Standard = forward (maalside til hoejre): ny side fra hoejre, gammel ud til venstre.
   :root.vt-back (maalside til venstre): ny side fra venstre, gammel ud til hoejre.
   3 faser uden pauser: pak sammen -> flyt -> pak ud (0,5s hver). */
::view-transition-old(root){ animation: vt-out-fwd 2250ms both; transform-origin: center center; filter: drop-shadow(0 22px 44px rgba(26,34,39,.38)); }
::view-transition-new(root){ animation: vt-in-fwd 2250ms both; transform-origin: center center; filter: drop-shadow(0 22px 44px rgba(26,34,39,.38)); }
:root.vt-back::view-transition-old(root){ animation-name: vt-out-back; }
:root.vt-back::view-transition-new(root){ animation-name: vt-in-back; }
@keyframes vt-out-fwd {
  0%   { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); animation-timing-function: cubic-bezier(.7,0,.22,1); }
  33%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); }
  100% { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); }
}
@keyframes vt-in-fwd {
  0%   { transform: translateX(110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: linear; }
  33%  { transform: translateX(110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.16,1,.3,1); }
  100% { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); }
}
@keyframes vt-out-back {
  0%   { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); animation-timing-function: cubic-bezier(.7,0,.22,1); }
  33%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); }
  100% { transform: translateX(110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); }
}
@keyframes vt-in-back {
  0%   { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: linear; }
  33%  { transform: translateX(-110%) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.83,0,.17,1); }
  67%  { transform: translateX(0) scale(.86); clip-path: inset(0px round 200px 0px 200px 0px); animation-timing-function: cubic-bezier(.16,1,.3,1); }
  100% { transform: translateX(0) scale(1); clip-path: inset(0px round 0px 0px 0px 0px); }
}
@media (prefers-reduced-motion: reduce){
  ::view-transition-old(root),::view-transition-new(root){ animation: none; }
}


/* ---- Prisberegner (priser.html) ---- */
#beregner .sec-head { max-width: 720px; }
.calc-modes { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 40px; }
.calc-mode { text-align: left; padding: 20px; border: 1.5px solid var(--db-line); border-radius: 16px 0 16px 0; background: transparent; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; display: flex; flex-direction: column; gap: 6px; font-family: inherit; }
.calc-mode:hover { transform: translateY(-3px); border-color: var(--dark-blue); }
.calc-mode.active { background: var(--dark-blue); border-color: var(--dark-blue); }
.cm-name { font-weight: 800; font-size: 17px; color: var(--dark-blue); }
.cm-pct { font-weight: 800; font-size: 13px; color: var(--dark-blue); opacity: 1; }
.cm-desc { font-size: 13px; line-height: 1.5; color: var(--dark-blue); font-weight: 300; }
.calc-mode.active .cm-name, .calc-mode.active .cm-desc { color: var(--cold-sand); }
.calc-mode.active .cm-pct { color: var(--mint); opacity: 1; }
.calc-shell { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.calc-list { display: flex; flex-direction: column; gap: 26px; }
.calc-cat-title { font-weight: 800; font-size: 13px; letter-spacing: normal; color: var(--dark-blue); flex: 1; }
.calc-row { display: flex; align-items: center; gap: 14px; padding: 9px 0; }
.cr-name { font-size: 15px; font-weight: 300; color: var(--dark-blue); flex: 1; }
.calc-row.has .cr-name { font-weight: 800; }
.cr-price { font-size: 13px; color: var(--dark-blue); min-width: 84px; text-align: right; font-variant-numeric: tabular-nums; }
.cr-stepper { display: inline-flex; align-items: center; gap: 4px; }
.step-btn { width: 30px; height: 30px; border-radius: 8px 2px 8px 2px; border: 1.5px solid var(--db-line); background: transparent; color: var(--dark-blue); font-weight: 800; font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .15s ease, background .15s ease; font-family: inherit; }
.step-btn:hover:not(:disabled) { border-color: var(--dark-blue); background: rgba(26,34,39,0.04); }
.step-btn:disabled { opacity: .3; cursor: default; }
.cr-qty { min-width: 24px; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--dark-blue); }
.calc-summary { position: sticky; top: 100px; background: var(--dark-blue); color: var(--cold-sand); border-radius: 24px 0 24px 0; padding: 28px; }
.cs-mode-label { font-size: 12px; letter-spacing: normal; color: var(--cold-sand); font-weight: 800; }
.cs-mode-name { font-size: 18px; font-weight: 800; margin: 4px 0 18px; color: var(--cold-sand); }
.cs-mode-name .pct { color: var(--mint); }
.cs-total-label { font-size: 13px; color: var(--cold-sand); }
.cs-total { font-size: clamp(30px,4vw,42px); font-weight: 800; letter-spacing: -.02em; color: var(--mint); font-variant-numeric: tabular-nums; margin: 2px 0 6px; }
.cs-vat { font-size: 12px; color: var(--cold-sand); margin-bottom: 18px; }
.cs-concept { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.45; color: var(--cold-sand); padding: 14px 0; border-top: 1px solid var(--cs-line); border-bottom: 1px solid var(--cs-line); margin-bottom: 18px; cursor: pointer; }
.cs-concept input { margin-top: 2px; accent-color: var(--mint); width: 16px; height: 16px; flex: 0 0 auto; }
.calc-summary .btn { width: 100%; justify-content: center; }
@media (max-width: 860px){ .calc-modes { grid-template-columns: 1fr; } .calc-shell { grid-template-columns: 1fr; } .calc-summary { position: static; } }

.cs-pm { justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: var(--cold-sand); padding: 12px 0; border-top: 1px solid var(--cs-line); margin: 4px 0 14px; }
.cs-pm:not([hidden]) { display: flex; }
.cs-pm span:last-child { font-weight: 800; color: var(--cold-sand); font-variant-numeric: tabular-nums; }
.cr-unit { font-size: 11px; font-weight: 300; color: var(--dark-blue); }

/* ===== PRISPAKKER (beregner) ===== */
.calc-packs { margin: 0 0 34px; }
.calc-packs-label { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.calc-packs-sub { font-size: 15px; color: var(--dark-blue); max-width: 60ch; }
.calc-packages { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.pack-card {
  display: flex; flex-direction: column; gap: 7px; text-align: left; cursor: pointer;
  background: var(--dark-blue); color: var(--cold-sand); border: none;
  padding: 22px 20px; border-radius: 22px 0 22px 0; font-family: inherit;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
}
.pack-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(26,34,39,.28); }
.pack-name { font-weight: 800; font-size: 17px; line-height: 1.18; }
.pack-desc { font-size: 13.5px; font-weight: 300; color: var(--cold-sand); line-height: 1.35; min-height: 2.6em; }
.pack-price { margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
.pack-price s { color: var(--cold-sand); font-size: 14px; font-weight: 300; }
.pack-price strong { color: var(--mint); font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -.01em; }
.pack-save { font-size: 13px; color: var(--mint); font-weight: 800; }
.pack-cta {
  margin-top: 12px; align-self: flex-start; background: var(--mint); color: var(--dark-blue);
  font-weight: 800; font-size: 13.5px; padding: 9px 18px; border-radius: 13px 0 13px 0;
  transition: filter .2s ease;
}
.pack-card:hover .pack-cta { filter: brightness(1.06); }
@media (max-width: 900px) { .calc-packages { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .calc-packages { grid-template-columns: 1fr; } .pack-desc { min-height: 0; } }

/* Modes låst når en pakke er aktiv */
.calc-modes.locked { opacity: .4; pointer-events: none; filter: grayscale(.35); }
.calc-modes-note { margin: -22px 0 30px; font-size: 14px; color: var(--dark-blue); }

/* Near-miss hint */
.calc-hint {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  background: var(--mint); color: var(--dark-blue);
  padding: 15px 20px; border-radius: 18px 0 18px 0; margin: 0 0 26px;
}
.calc-hint[hidden], .calc-hint:empty { display: none; }
.calc-hint .hint-txt { font-size: 15px; line-height: 1.4; flex: 1 1 280px; }
.calc-hint .hint-txt strong { font-weight: 800; }
.hint-btn {
  flex: 0 0 auto; cursor: pointer; border: 2px solid var(--dark-blue); background: transparent;
  color: var(--dark-blue); font-family: inherit; font-weight: 800; font-size: 14px;
  padding: 9px 20px; border-radius: 12px 0 12px 0; transition: background .2s ease, color .2s ease;
}
.hint-btn:hover { background: var(--dark-blue); color: var(--mint); }

/* Pakkepris-linje i summary */
.cs-pkg span:last-child { white-space: nowrap; }
.cs-pkg span:last-child s { color: var(--cold-sand); font-weight: 300; margin-right: 5px; }

/* ===== Foldbare priskategorier (beregner) ===== */
.calc-cat-head {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; border-bottom: 1.5px solid var(--db-line);
  cursor: pointer; font-family: inherit; text-align: left; color: var(--dark-blue);
  padding: 0 0 8px; margin: 0 0 8px;
}
.cc-chevron {
  flex: 0 0 auto; width: 8px; height: 8px;
  border-right: 2px solid var(--dark-blue); border-bottom: 2px solid var(--dark-blue);
  transform: rotate(45deg); transition: transform .25s ease; margin: 0 1px 3px 0;
}
.calc-cat.collapsed .cc-chevron { transform: rotate(-45deg); margin-bottom: 0; }
.cc-sum {
  flex: 0 0 auto; font-size: 13px; font-weight: 800; color: var(--dark-blue);
  font-variant-numeric: tabular-nums; white-space: nowrap; display: none;
}
.calc-cat.collapsed .cc-sum { display: inline; }
.calc-cat.collapsed .calc-cat-body { display: none; }
.calc-cat-head:hover { opacity: .72; }

/* Nulstil-knap i beregner-summary */
.cs-reset {
  display: block; width: 100%; margin-top: 12px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
  color: var(--cold-sand); transition: color .2s ease;
}
.cs-reset:hover { color: var(--mint); }

/* Plus = mint, minus = warm sand ved hover */
.step-btn[aria-label="plus"]:hover:not(:disabled)  { border-color: var(--mint);      background: var(--mint);      color: var(--dark-blue); }
.step-btn[aria-label="minus"]:hover:not(:disabled) { border-color: var(--warm-sand); background: var(--warm-sand); color: var(--dark-blue); }

/* Hero-eyebrow paa undersider = samme stoerrelse som forsidens hero-eyebrow */
.subhero .eyebrow { font-size: 20px; letter-spacing: normal; text-transform: none; }

/* Fast kunde / retainer rabat-switch i beregneren */
.cs-loyalty { margin: 4px 0; padding-top: 14px; border-top: 1px solid var(--cs-line); }
.cs-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; -webkit-user-select: none; user-select: none; }
.cs-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cs-switch-track { flex: 0 0 auto; width: 40px; height: 22px; border-radius: 100px; border: 1.5px solid var(--cs-line); background: transparent; position: relative; transition: background .2s ease, border-color .2s ease; }
.cs-switch-thumb { position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: var(--cold-sand); transition: transform .2s ease, background .2s ease; }
.cs-switch input:checked + .cs-switch-track { background: var(--mint); border-color: var(--mint); }
.cs-switch input:checked + .cs-switch-track .cs-switch-thumb { transform: translateX(18px); background: var(--dark-blue); }
.cs-switch input:focus-visible + .cs-switch-track { outline: 2px solid var(--mint); outline-offset: 2px; }
.cs-switch-label { font-size: 13px; font-weight: 800; color: var(--cold-sand); }
.cs-loyalty-note { font-size: 12px; font-weight: 300; color: var(--cold-sand); margin-top: 6px; padding-left: 50px; }
.cs-loyalty.locked .cs-switch { opacity: .4; pointer-events: none; }
#calcDiscRow span:last-child { color: var(--mint); }

/* services.html: #derfor paa cold sand (#fafafa) + centreret "loving"-band uden cirkel */
.on-sand .booking-includes li { color: var(--dark-blue); }
.on-sand .booking-includes li::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%2238%2014%20126%20140%22%20fill%3D%22%231a2227%22%3E%3Cpolygon%20points%3D%2270.3%20146.8%2044.1%2099.6%2048.4%2097.3%2070.7%20137.5%20146.2%2026.6%20150.2%2029.3%2070.3%20146.8%22%2F%3E%3C%2Fsvg%3E"); }
.band-center::before { display: none; }
.band-center .wrap { text-align: center; }
.band-center p { margin-left: auto; margin-right: auto; }

/* formater-og-kanaler.html: "Vores filosofi" (#tilgang) er nu en enkelt #fafafa-sektion via .on-sand */
#tilgang .eyebrow { color: var(--mint); }
#tilgang .princip .num { color: var(--mint); }

/* priser.html: "Saadan regner vi" -> to raekker med tre kasser (2x3) */
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .model-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .model-grid { grid-template-columns: 1fr; } }

/* ── Google Ads-fremhævning (formater og kanaler) ── */
#google-ads .ga-highlight{
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center;
  background: var(--dark-blue); color: var(--cold-sand);
  border-radius: 0 42px 0 42px; padding: 60px; position: relative; overflow: hidden;
}
#google-ads .eyebrow{ color: var(--mint); margin-bottom: 14px; }
#google-ads .ga-highlight h2{ color: var(--cold-sand); margin: 0 0 16px; }
#google-ads .ga-highlight .lead{ color: var(--cold-sand); max-width: 56ch; }
.ga-points{ list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ga-points li{ position: relative; padding-left: 30px; font-size: 15px; line-height: 1.5; color: var(--cold-sand); }
.ga-points li::before{ content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 0 6px 0 6px; background: var(--mint); }
.ga-stat{ text-align: center; }
.ga-big{ font-size: clamp(58px, 8vw, 104px); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--mint); }
.ga-big span{ font-size: .42em; margin-left: 6px; letter-spacing: 0; }
.ga-vs{ margin-top: 12px; font-size: 15px; font-weight: 300; color: var(--warm-sand); }
.ga-vs span{ font-weight: 800; }
@media (max-width: 820px){
  #google-ads .ga-highlight{ grid-template-columns: 1fr; gap: 28px; padding: 38px 26px; border-radius: 0 26px 0 26px; }
  .ga-stat{ order: -1; }
  .ga-vs{ margin-bottom: 4px; }
}

/* Skjul "Priser" fra menu (top-nav + footer). Siden bevares og kan tilgås direkte. */
a[href="priser.html"] { display: none !important; }
li:has(> a[href="priser.html"]) { display: none !important; }

/* ── Citat / testimonial (referencestil — som forsiden) ── */
.testimonial {
  background: var(--mint); color: var(--dark-blue);
  padding: 130px 0; position: relative; overflow: clip; overflow-clip-margin: 240px;
}
.testimonial::before {
  content: ''; position: absolute; bottom: -135px; left: 20px;
  width: 290px; height: 290px; background: var(--cold-sand); border-radius: 50%;
}
.t-inner { position: relative; z-index: 1; max-width: 900px; }
.t-mark { margin-bottom: 16px; line-height: 0; color: var(--dark-blue); }
.t-mark svg { width: clamp(112px, 12vw, 150px); height: auto; display: inline-block; }
.t-text {
  font-size: clamp(28px, 3.4vw, 48px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 32px; max-width: 22ch;
}
.t-meta { font-size: 14px; font-weight: 300; }
.t-meta strong { font-weight: 800; }
@media (max-width: 760px) {
  .testimonial { padding: 88px 0; }
  .t-text { font-size: clamp(20px, 5vw, 28px); }
  .testimonial::before { width: 200px; height: 200px; bottom: -90px; left: 12px; }
}
@media (max-width: 480px) {
  .testimonial::before { width: 175px; height: 175px; }
}

/* ===== Mobil-optimeringer (desktop uaendret) ===== */
@media (max-width: 900px) {
  /* Tvungne desktop-linjeskift skal ikke gaelde paa mobil (naturlig ombrydning) */
  h1 br, h2 br, h3 br { display: none; }
  /* Letter belastningen: stop uendelige CSS-animationer + drop ekstra GPU-lag */
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  * { will-change: auto !important; }
  /* Case-billeder: vis hele kreativet uden beskaering */
  .case-img img, .case-photo { object-fit: contain !important; transform: none !important; }
}

@media (max-width: 900px) {
  /* Testimonial-cirklen ruller vandret og kunne male op til 240px ud over sektionen.
     Paa mobil = sektionsbredde = skaermbredde, saa den pressede siden bred + flyttede nav.
     Klip stramt til sektionen paa mobil (slaar inline 'overflow: clip; overflow-clip-margin').
     'hidden' virker ogsaa paa aeldre browsere uden stoette for 'overflow: clip'. */
  .testimonial { overflow: hidden !important; }
}

@media (max-width: 900px) {
  /* Tillad at lange sammensatte ord (fx marketingbudgettet) brydes ved blod bindestreg paa mobil.
     ts-word er normalt inline-block (bryder ikke internt); inline lader shy-bindestregen virke. */
  .break-compound .ts-word { display: inline !important; }
}
