/* ===========================================================================
   MerInvest — shared design system (Fable Freestyle 4: LYST tema)
   Used by the subpages so the design carries over 1:1.
   Tokens, palette, typography, nav, footer, buttons and motion all live here.

   Token-navnene er BEHOLDT fra det mørke tema, så markup og inline styles
   virker uændret, men rollerne er vendt om:
   - --green-9xx  = lys overflade-rampe (creme)
   - --cream      = primær TEKST (dyb grøn blæk)
   - --sand       = guld, mørknet så den holder kontrast på lys bund
   - --paper /--on-paper = det MØRKE kontrast-ark (rytmen er inverteret)
   - --pine       = dyb grøn til CTA-knapper (grøn = handling, guld = detalje)
   Mørke scopes (.sheet, footer.foot) re-definerer tokens lokalt, så alle
   regler indeni flipper automatisk.
   =========================================================================== */

:root {
  --green-900: #F4F1E6;        /* body: varm creme, lys */
  --green-850: #EDE9D8;        /* løftet bånd */
  --green-800: #E7E1CC;        /* dybere bånd / paneler */
  --green-750: #F9F5E7;        /* lyseste flade (kort, tooltips) — holdt i creme-familien */
  --green-700: #DCD8C0;        /* selection m.m. */
  --ink:       #0B1710;        /* mørkeste anker (footer, dybeste tekst) */
  --pine:      #1C4633;        /* dyb grøn: primær CTA */
  --pine-deep: #143528;        /* CTA hover */
  --cream:     #13251B;        /* primær tekst = dyb grøn blæk */
  --cream-dim: rgba(19, 37, 27, 0.76);
  --cream-dim2:rgba(19, 37, 27, 0.66);
  --sand:      #7A6127;        /* antik guld, mørknet så små tekster holder 4.5:1 på alle lyse bånd */
  --sand-deep: #6f571f;
  --sand-soft: rgba(122, 97, 39, 0.9);
  --sand-bright: #C6A35A;      /* guld til mørke flader */
  --line:      rgba(138, 109, 47, 0.34);
  --line-2:    rgba(19, 37, 27, 0.14);
  --paper:     #10231A;        /* mørkegrønt kontrast-ark */
  --on-paper:  #ECEAE0;        /* creme tekst på det mørke ark */
  --on-paper-dim: rgba(236, 234, 224, 0.72);
  --paper-line:   rgba(236, 234, 224, 0.15);

  --maxw: 1240px;
  /* Store monitorer: indholdet maa fylde lidt mere, saa siden ikke ser
     unoedigt smal ud paa 27"+. Kun layoutbredden aendres, intet andet. */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--green-900);
  color: var(--cream);
  font-family: 'Mulish', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--pine); color: #F4F1E6; }
a { color: inherit; text-decoration: none; }

/* Tastaturfokus: sitet havde ingen synlig fokusmarkering, og formularfelterne
   slog endda browserens egen fra. --pine er handlings-farven og vender med
   token-flippet (dyb grøn på lyse flader, creme inde i .sheet/footer), så den
   samme regel holder kontrasten begge steder. */
:focus-visible {
  outline: 3px solid var(--pine);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (min-width: 1800px) { :root { --maxw: 1400px; } }

.eyebrow {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--sand-deep);
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; letter-spacing: 0.005em; line-height: 1.08;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* Reveal: visible by default; hidden state applies only under .js so nothing ships blank. */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

/* ============ LOGO ============ */
.logo { display: inline-flex; align-items: center; gap: 14px; line-height: 1; }
.logo svg { width: var(--logo-h, 34px); height: var(--logo-h, 34px); display: block; }
.logo .mark-stroke { stroke: var(--sand); }
.logo .wm {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: calc(var(--logo-h, 34px) * 0.66);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--cream);
  border-bottom: 1.5px solid var(--sand-soft); padding-bottom: 5px;
}

/* ============ NAV ============ */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 32px;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  padding: 15px 32px;
  background: rgba(244, 241, 230, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 10px 30px rgba(19, 37, 27, 0.06);
}
nav.links { display: flex; align-items: center; gap: 40px; }
nav.links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--cream-dim); position: relative; transition: color .4s var(--ease);
}
nav.links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 1px; background: var(--sand); transition: width .4s var(--ease);
}
nav.links a:hover { color: var(--cream); }
nav.links a:hover::after { width: 100%; }
nav.links a.active { color: var(--cream); }
nav.links a.active::after { width: 100%; }

/* Book møde som tydelig CTA i nav (dyb grøn = handling) */
nav.links a.nav-cta {
  border: 1px solid var(--pine); color: var(--pine);
  padding: 10px 20px; border-radius: 2px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
nav.links a.nav-cta::after { display: none; }
nav.links a.nav-cta:hover, nav.links a.nav-cta.active { background: var(--pine); color: #F4F1E6; }

/* padding + negativ margin = 44px klikflade uden at ikonet flytter sig (tap target) */
.menu-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 8px; margin: -8px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(244,241,230,0.97); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity .5s var(--ease), visibility 0s; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); }
.mobile-menu .btn { margin-top: 10px; }

/* ============ BUTTONS ============ */
/* Grøn = handling. Guld er detalje, aldrig knapfarve. */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Mulish', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--pine);
  color: var(--pine); background: transparent; cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn:hover { background: var(--pine); color: #F4F1E6; border-color: var(--pine); }
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-ghost { border-color: transparent; padding: 16px 0; color: var(--pine); }
.btn-ghost:hover { background: transparent; color: var(--cream); }
/* Primær CTA: massiv dyb grøn, bruges på sidens vigtigste handling */
.btn-solid { background: var(--pine); color: #F4F1E6; border-color: var(--pine); font-weight: 600; }
.btn-solid:hover { background: var(--pine-deep); color: #F4F1E6; border-color: var(--pine-deep); }
.link-more {
  display: inline-flex; align-items: center; gap: 10px;
  /* padding + negativ margin = højere klikflade uden layoutskift (tap target) */
  padding-block: 8px; margin-block: -8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pine); border-bottom: 1px solid var(--line); padding-bottom: 5px;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.link-more:hover { color: var(--cream); border-color: var(--sand); }
.link-more .arrow { transition: transform .4s var(--ease); }
.link-more:hover .arrow { transform: translateX(4px); }

/* .dd-box: fremhaevet indgang til omkostningssiden. Klassenavnet stammer fra
   den tidligere dobbeltdyp-vinkel, som udgik ved compliance-runden 19/8-2026.
   Bygget på tokens, så den flipper automatisk i mørke scopes. */
.dd-box {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 26px;
  padding: 20px 22px; max-width: 58ch; border-radius: 2px;
  border: 1px solid var(--line); border-left: 3px solid var(--sand);
  background: rgba(138, 109, 47, 0.08);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.dd-box:hover { background: rgba(138, 109, 47, 0.15); border-color: var(--sand); }
.dd-box .dd-ic { flex: 0 0 auto; width: 22px; height: 22px; color: var(--sand); margin-top: 2px; }
.dd-box .dd-tx b { display: block; font-weight: 600; font-size: 1.02rem; color: var(--cream); margin-bottom: 5px; }
.dd-box .dd-tx span { display: block; font-size: 0.88rem; color: var(--cream-dim); line-height: 1.55; }
.dd-box .arrow { margin-left: auto; align-self: center; color: var(--sand); transition: transform .4s var(--ease); }
.dd-box:hover .arrow { transform: translateX(4px); }

/* ============ SECTION PRIMITIVES ============ */
section { position: relative; z-index: 1; }
.pad { padding: clamp(86px, 11vw, 150px) 0; }
.pad-sm { padding: clamp(64px, 8vw, 110px) 0; }
.divider-top { border-top: 1px solid var(--line-2); }
/* Skip-link: helt usynligt for mus/touch, dukker kun op ved tastatur-fokus (Tab
   som første tryk), så tastatur- og skærmlæserbrugere kan springe navigationen over */
.skip-link {
  position: fixed; left: 14px; top: 14px; z-index: 200;
  padding: 12px 20px; background: #0B1710; color: #F4F1E6;
  font-size: 0.85rem; font-weight: 600; border-radius: 2px;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

/* Diskret guld-diamant i stedet for den lange streg (lignede en stor tankestreg) */
.lead-line { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.lead-line .tick { width: 8px; height: 8px; background: var(--sand); transform: rotate(45deg); border-radius: 1px; flex: 0 0 auto; }

/* ============ SUBPAGE HERO ============ */
.page-hero { position: relative; z-index: 1; padding: clamp(150px, 18vh, 220px) 0 clamp(64px, 8vw, 104px); overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(120% 80% at 88% 0%, rgba(28, 70, 51, 0.06), transparent 60%);
}
.page-hero .back {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 38px;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim2);
  transition: color .4s var(--ease);
}
.page-hero .eyebrow { display: block; }
.page-hero .back:hover { color: var(--sand); }
.page-hero .back .arrow { transition: transform .4s var(--ease); }
.page-hero .back:hover .arrow { transform: translateX(-4px); }
.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); max-width: 18ch; margin: 18px 0 0; }
.page-hero h1 .accent { color: var(--sand); }
.page-hero .rule { width: 66px; height: 1px; background: var(--sand); margin: 30px 0 28px; }
.page-hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--cream-dim); max-width: 60ch; }
/* Paa de fleste sider skaber .rule-stregen luften mellem h1 og lede. Mangler den,
   laa leden klods op ad overskriften (* { margin: 0 }), og med line-height 1.08 paa
   en 4,6rem serif rørte descenderne naesten teksten. Rammer KUN de sider hvor leden
   foelger h1 direkte, saa siderne med .rule er uaendrede. */
.page-hero h1 + .lede, .page-hero h1 + .hero-ledes { margin-top: clamp(26px, 3.2vw, 40px); }

/* ============ SECTION BACKGROUNDS ============ */
.band-green { background: var(--green-850); }
.band-deep  { background: var(--green-800); }

/* .sheet er nu det MØRKE kontrast-ark. Tokens re-scopes, så alle regler
   indeni (checklist, principle, compare, forms m.m.) flipper automatisk. */
.sheet {
  background: var(--paper); color: var(--on-paper);
  --cream: #ECEAE0;
  --cream-dim: rgba(236, 234, 224, 0.70);
  --cream-dim2: rgba(236, 234, 224, 0.55);
  --sand: #C6A35A;
  --sand-deep: #C6A35A;
  --sand-soft: rgba(198, 163, 90, 0.9);
  --line: rgba(198, 163, 90, 0.26);
  --line-2: rgba(236, 234, 224, 0.12);
  --pine: #ECEAE0;            /* handlings-farve på mørk bund = creme */
  --pine-deep: #ffffff;
  --ink: #0B1710;
}
.sheet .eyebrow { color: var(--sand); }
.sheet .lead-line .tick { background: var(--sand); }
.sheet h2, .sheet h3 { color: var(--on-paper); }
.sheet p { color: var(--on-paper-dim); }
.sheet .link-more { color: var(--on-paper); border-color: var(--line); }
.sheet .link-more:hover { color: var(--sand); border-color: var(--sand); }
.sheet .btn { border-color: var(--sand-soft); color: var(--sand); }
.sheet .btn:hover { background: var(--sand); color: var(--ink); }
.sheet .btn-solid { background: var(--sand); color: var(--ink); border-color: var(--sand); }
.sheet .btn-solid:hover { background: #d4b56e; color: var(--ink); border-color: #d4b56e; }

.section-head { max-width: 26ch; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.04rem; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

/* ============ CHECKLIST ============ */
.checklist { list-style: none; display: grid; gap: 2px; }
.checklist li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--line-2); font-size: 1.04rem; color: var(--cream);
}
.checklist li:last-child { border-bottom: 1px solid var(--line-2); }
.checklist .ck { flex: 0 0 auto; width: 23px; height: 23px; margin-top: 2px; color: var(--pine); }
.checklist li b { font-weight: 600; }
.checklist li span.t { display: block; font-size: 0.92rem; color: var(--cream-dim); margin-top: 4px; }
/* checklist on the dark sheet */
.sheet .checklist li { color: var(--on-paper); border-top-color: var(--line-2); }
.sheet .checklist li:last-child { border-bottom-color: var(--line-2); }
.sheet .checklist .ck { color: var(--sand); }
.sheet .checklist li span.t { color: var(--on-paper-dim); }

/* ============ COMPARE (problem vs MerInvest) ============ */
.compare { display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.compare .vdiv { width: 1px; align-self: stretch; background: linear-gradient(transparent, var(--line) 14%, var(--line) 86%, transparent); }
.compare-col .ch {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim2); margin-bottom: 26px;
}
.compare-col.mi .ch { color: var(--sand); }
.compare-list { list-style: none; display: grid; gap: 2px; }
.compare-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid var(--line-2); font-size: 1.02rem; line-height: 1.45;
}
.compare-list li:last-child { border-bottom: 1px solid var(--line-2); }
.compare-list .mk { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; }
.compare-col.bank .compare-list li { color: var(--cream-dim); }
.compare-col.bank .mk { color: var(--cream-dim2); }
.compare-col.mi .compare-list li { color: var(--cream); }
.compare-col.mi .mk { color: var(--pine); }
.sheet .compare-col.mi .mk { color: var(--sand); }

/* ============ PRINCIPLES (editorial blocks) ============ */
.principles { display: grid; gap: 1px; }
.principle { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: clamp(24px, 5vw, 72px); padding: clamp(40px, 5vw, 56px) 0; border-top: 1px solid var(--line); }
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle .k { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--sand); }
.principle h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); max-width: 16ch; }
.principle .body p { color: var(--cream-dim); font-size: 1.02rem; max-width: 56ch; }
.principle .body p + p { margin-top: 16px; }

/* principles + compare på det mørke sheet (tokens klarer resten) */
.sheet .principle { border-top-color: var(--line); }
.sheet .principle:last-child { border-bottom-color: var(--line); }
.sheet .principle .k { color: var(--sand); }
.sheet .principle .body p { color: var(--on-paper-dim); }
.sheet .section-head p { color: var(--on-paper-dim); }
.sheet .compare .vdiv { background: linear-gradient(transparent, var(--line) 14%, var(--line) 86%, transparent); }
.sheet .compare-col .ch { color: var(--cream-dim2); }
.sheet .compare-col.mi .ch { color: var(--sand); }
.sheet .compare-list li { border-top-color: var(--line-2); }
.sheet .compare-list li:last-child { border-bottom-color: var(--line-2); }
.sheet .compare-col.bank .compare-list li { color: var(--on-paper-dim); }
.sheet .compare-col.bank .mk { color: var(--cream-dim2); }
.sheet .compare-col.mi .compare-list li { color: var(--on-paper); }
@media (max-width: 900px) { .sheet .compare-col.mi { border-top-color: var(--line-2); } }

/* ============ PULL QUOTE ============ */
.pullquote { display: grid; grid-template-columns: 1fr 1px 0.74fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.pullquote .vdiv { width: 1px; align-self: stretch; min-height: 180px; background: linear-gradient(transparent, var(--sand-soft) 16%, var(--sand-soft) 84%, transparent); }
.pullquote blockquote { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.5rem, 2.8vw, 2.4rem); line-height: 1.32; color: var(--cream); max-width: 24ch; }
.pullquote blockquote em { font-style: italic; color: var(--sand); }
.pullquote .attr { margin-top: 28px; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand); }
.pullquote .attr small { display: block; color: var(--cream-dim2); margin-top: 8px; letter-spacing: 0.16em; }
.pullquote .aside p { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.2rem, 1.9vw, 1.55rem); line-height: 1.4; color: var(--cream); margin-bottom: 24px; max-width: 26ch; }

/* ============ ABOUT SPLIT (portrait + story) ============ */
.about-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
.portrait {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); position: relative; overflow: hidden;
  background: radial-gradient(120% 80% at 30% 18%, rgba(28, 70, 51, 0.10), transparent 60%), linear-gradient(160deg, var(--green-800), var(--green-850));
  display: grid; place-items: center;
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait .ph { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 10vw, 7.5rem); color: rgba(19, 37, 27, 0.12); }
.portrait .cap { position: absolute; bottom: 20px; left: 22px; right: 22px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim2); }
.about-split .body h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; max-width: 18ch; }
.about-split .body p { color: var(--cream-dim); margin-bottom: 18px; max-width: 58ch; }
.about-split .sig { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: var(--sand); margin-top: 30px; }
.about-split .sig small { display: block; font-family: 'Mulish', sans-serif; font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim2); margin-top: 8px; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--green-850); text-align: center; border-top: 1px solid var(--line-2); }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0 auto 22px; max-width: 18ch; }
.cta-band p { color: var(--cream-dim); max-width: 48ch; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-band .actions { display: inline-flex; gap: 26px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cta-band .mail { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--pine); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .4s var(--ease), border-color .4s var(--ease); }
.cta-band .mail:hover { color: var(--sand); border-color: var(--sand); }

/* ============ CONTACT PAGE ============ */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 76px); align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info .detail { margin: 22px 0; }
.contact-info .detail .lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim2); margin-bottom: 6px; }
.contact-info .detail a, .contact-info .detail p { font-size: 1.05rem; color: var(--cream); }
.contact-info .detail a:hover { color: var(--sand); }
.contact-steps { list-style: none; display: grid; gap: 2px; margin-top: 34px; }
.contact-steps li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-2); color: var(--cream-dim); font-size: 0.98rem; }
.contact-steps li:last-child { border-bottom: 1px solid var(--line-2); }
.contact-steps .no { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand); flex: 0 0 auto; }

.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim2); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; background: rgba(19, 37, 27, 0.04); border: 1px solid var(--line-2); color: var(--cream);
  font-family: 'Mulish', sans-serif; font-size: 0.98rem; padding: 13px 14px; transition: border-color .3s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--pine); }
.form input:focus:not(:focus-visible), .form select:focus:not(:focus-visible), .form textarea:focus:not(:focus-visible) { outline: none; }
/* Dropdown-listens punkter: altid mørk tekst på lys flade, uanset sektionens tone
   (OS'et tegner selv listen, så token-scoping må ikke smitte af her) */
.form select option { background: #F9F5E7; color: #13251B; }
.form textarea { min-height: 120px; resize: vertical; }
.form button { margin-top: 4px; justify-content: center; }

/* Påkrævede felter + knap der først aktiveres når de er udfyldt */
.form label .req { color: var(--sand); margin-left: 3px; font-size: 0.85rem; }
.form .req-note { font-size: 0.76rem; color: var(--cream-dim2); letter-spacing: 0.03em; }
.form .req-note .req { color: var(--sand); margin-right: 4px; }
.form button[type="submit"]:disabled {
  background: transparent; border-color: var(--line-2); color: var(--cream-dim2);
  cursor: not-allowed; opacity: 0.75;
}
.form input.touched:invalid, .form textarea.touched:invalid { border-color: rgba(164, 76, 52, 0.6); }

/* Formular-backend: honeypot (skjult for mennesker), kvittering og fejlbesked */
.form .hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-sent h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--pine); margin-bottom: 10px; }
.form-sent p { color: var(--cream-dim); }
.form-error { font-size: 0.88rem; color: #A44C34; }
/* ============ OVERSIGT: fuld menu på desktop (alle sider) ============
   Panelet er ALTID mørkegrønt uanset sidens lyse/mørke tema, så farverne er
   hårdkodede her i stedet for tokens (tokens flipper værdier på undersiderne). */
.nav-oversigt {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.02em; color: var(--cream-dim); position: relative;
  transition: color .4s var(--ease);
}
.nav-oversigt::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--sand); transition: width .4s var(--ease); }
.nav-oversigt:hover, .nav-oversigt[aria-expanded="true"] { color: var(--cream); }
.nav-oversigt:hover::after, .nav-oversigt[aria-expanded="true"]::after { width: 100%; }
/* Dropdown under headeren, IKKE fuldskaerm: der skal findes et "udenfor",
   som musen kan forlade panelet til. inset:0 gjorde det umuligt. Panelet
   starter i top:0 og ligger bag headeren (z 48 < 50); .ov-in's padding-top
   paa 106px holder indholdet fri af den, saa layoutet er uaendret.
   Spejlet i index.html's inline-CSS (forsiden loader ikke denne fil). */
.oversigt {
  position: fixed; top: 0; left: 0; right: 0; bottom: auto; z-index: 48;
  max-height: 100vh; overflow-y: auto;
  background: rgba(10, 19, 15, 0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236, 234, 224, 0.14);
  opacity: 0; transform: translateY(-10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.oversigt.open { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .oversigt { transition: none; transform: none; }
}
.oversigt .ov-in { padding-top: 106px; padding-bottom: 70px; }
.oversigt .ov-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.oversigt .ov-top .eyebrow { color: #C6A35A; }
.oversigt .ov-close {
  background: none; border: 1px solid rgba(198, 163, 90, 0.26); color: rgba(236, 234, 224, 0.66);
  width: 42px; height: 42px; border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.oversigt .ov-close:hover { color: #ECEAE0; border-color: #C6A35A; }
.oversigt .ov-feature { display: grid; gap: 18px; margin-bottom: 46px; }
@media (min-width: 760px) { .oversigt .ov-feature { grid-template-columns: 1fr 1fr; } }
.oversigt .ov-card {
  display: flex; flex-direction: column; gap: 8px; padding: 24px 26px;
  background: #15241B; border: 1px solid rgba(198, 163, 90, 0.45); border-left: 3px solid #C6A35A;
  border-radius: 3px; transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.oversigt .ov-card:hover { background: #192C20; border-color: #C6A35A; transform: translateY(-2px); }
.oversigt .ov-card b { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.45rem; color: #ECEAE0; }
.oversigt .ov-card > span { color: rgba(236, 234, 224, 0.66); font-size: 0.92rem; max-width: 46ch; }
.oversigt .ov-card .ov-go { margin-top: 6px; color: #C6A35A; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }
.oversigt .ov-card .ov-go .arrow { transition: transform .35s var(--ease); }
.oversigt .ov-card:hover .ov-go .arrow { transform: translateX(4px); }
.oversigt .ov-cols { display: grid; gap: 36px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 980px) { .oversigt .ov-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.oversigt .ov-col h4 { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: #C6A35A; margin-bottom: 14px; font-family: 'Mulish', sans-serif; font-weight: 600; }
.oversigt .ov-col a { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; color: rgba(236, 234, 224, 0.66); padding: 7px 0; transition: color .3s var(--ease); }
.oversigt .ov-col a:hover { color: #C6A35A; }
@media (max-width: 900px) { .nav-oversigt { display: none; } }

.form input[type="file"] {
  width: 100%; padding: 12px 14px; border: 1px dashed var(--line); border-radius: 2px;
  background: rgba(236, 234, 224, 0.04); color: var(--cream-dim); font-size: 0.9rem; cursor: pointer;
}
.form input[type="file"]::file-selector-button {
  font: inherit; margin-right: 12px; padding: 8px 14px; cursor: pointer;
  border: 1px solid var(--sand-soft); background: transparent; color: var(--sand); border-radius: 2px;
}
.form-fineprint { font-size: 0.8rem; color: var(--cream-dim2); }
.form-fineprint a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .contact-split { grid-template-columns: 1fr; gap: 44px; } .form .row { grid-template-columns: 1fr; } }

/* ============ INFO-MÆRKE + FORKLARINGSBOKS (faelles standard) ============
   Spejlet i index.html's egen inline-CSS (forsiden loader ikke denne fil).
   Maerket er FYLDT som udgangspunkt, saa man kan se at der gemmer sig noget.
   Ved hover/fokus toemmes det, og forklaringen folder ud UDEN FOR broedteksten;
   flytter man musen vaek, fyldes det igen. Glyffen skifter med underlaget:
   moerkt guld-fyld paa lyse sider faar naesten hvid glyf, lyst guld-fyld i
   moerke scopes (.sheet/footer, hvor --sand flippes til #C6A35A) faar moerk glyf. */
:root { --mark-glyph: var(--green-750); }
.sheet, footer.foot { --mark-glyph: var(--ink); }
.info-tip { position: relative; display: inline-flex; margin-left: 8px; vertical-align: middle; }
.info-mark {
  width: 24px; height: 24px; border-radius: 50%; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; line-height: 1;
  border: 1px solid var(--sand); background: var(--sand); color: var(--mark-glyph);
  cursor: help; position: relative;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
/* usynlig udvidelse af klikfladen til 44px (tap target) */
.info-mark::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; }
.info-mark:hover, .info-mark:focus-visible { background: transparent; color: var(--sand); }
.info-mark:focus:not(:focus-visible) { outline: none; }
.tip-body {
  position: absolute; left: 50%; top: calc(100% + 12px); transform: translateX(-50%);
  width: min(360px, 82vw); background: #F9F5E7; border: 1px solid var(--line);
  border-radius: 2px; padding: 16px 18px; z-index: 30;
  font-family: 'Mulish', sans-serif; font-size: 0.9rem; font-weight: 400; line-height: 1.6;
  color: rgba(19, 37, 27, 0.80); text-align: left; text-transform: none; letter-spacing: normal;
  box-shadow: 0 18px 40px rgba(19, 37, 27, 0.18);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
/* Kortet holdes bevidst lyst i ALLE scopes: i .sheet flippes --cream-dim til en lys
   vaerdi, saa token-baseret tekstfarve ville blive lys paa lys. Faste vaerdier her. */
.tip-body b { display: block; color: #13251B; font-weight: 600; margin-bottom: 6px; }
.tip-body::before {
  content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-bottom-color: #F9F5E7; /* skal matche kortets faste bund */
}
.info-tip:hover .tip-body, .info-mark:focus + .tip-body { opacity: 1; visibility: visible; }
@media (max-width: 560px) { .tip-body { left: auto; right: -10px; transform: none; } .tip-body::before { left: auto; right: 14px; transform: none; } }

/* ============ COMPARE PAGE (sammenlign) ============ */
.cmp-layout { display: grid; grid-template-columns: 1fr 210px; gap: clamp(40px, 6vw, 80px); align-items: start; }
.cmp-nav { position: sticky; top: 108px; }
.cmp-nav .lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim2); margin-bottom: 14px; }
.cmp-nav a { display: block; padding: 12px 0; border-top: 1px solid var(--line-2); color: var(--cream-dim); font-size: 0.95rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.cmp-nav a:last-child { border-bottom: 1px solid var(--line-2); }
.cmp-nav a:hover { color: var(--pine); padding-left: 8px; }
.cmp-nav a.active { color: var(--pine); padding-left: 8px; border-top-color: var(--line); }
.cmp-section { scroll-margin-top: 100px; }
.cmp-section + .cmp-section { border-top: 1px solid var(--line-2); margin-top: clamp(50px, 7vw, 84px); padding-top: clamp(50px, 7vw, 84px); }
.cmp-section h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.cmp-section .sub { color: var(--cream-dim); max-width: 56ch; margin-bottom: 34px; }
.cmp-section .body p { color: var(--cream-dim); max-width: 60ch; margin-bottom: 16px; }
.callout { border: 1px solid var(--line); background: var(--green-750); padding: clamp(22px, 3vw, 32px); margin-top: 34px; }
.callout p { color: var(--cream); max-width: 62ch; margin-bottom: 14px; }
@media (max-width: 900px) {
  .cmp-layout { grid-template-columns: 1fr; }
  .cmp-nav { position: static; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
  .cmp-nav .lbl { width: 100%; margin-bottom: 4px; }
  .cmp-nav a { border: 1px solid var(--line-2); padding: 9px 16px; }
  .cmp-nav a:last-child { border: 1px solid var(--line-2); }
}

/* ============ DUAL CTA (sammenlign + book) ============ */
.dual-grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.dual-grid .vdiv { width: 1px; align-self: stretch; min-height: 120px; background: linear-gradient(transparent, var(--line) 14%, var(--line) 86%, transparent); }
.dual-grid h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.dual-grid p { color: var(--cream-dim); margin-bottom: 22px; max-width: 38ch; }
.dual-grid .right { text-align: right; }
.dual-grid .right p { margin-left: auto; }
@media (max-width: 760px) { .dual-grid { grid-template-columns: 1fr; gap: 36px; } .dual-grid .vdiv { display: none; } .dual-grid .right { text-align: left; } .dual-grid .right p { margin-left: 0; } }

/* ============ FOOTER ============ */
/* Mørkegrønt anker i bunden. Tokens re-scopes, så alle footer-regler flipper. */
footer.foot {
  background: var(--ink); border-top: 1px solid rgba(198, 163, 90, 0.2); position: relative; z-index: 1;
  --cream: #ECEAE0;
  --cream-dim: rgba(236, 234, 224, 0.66);
  --cream-dim2: rgba(236, 234, 224, 0.55);
  --sand: #C6A35A;
  --sand-deep: #C6A35A;
  --sand-soft: rgba(198, 163, 90, 0.9);
  --line-2: rgba(236, 234, 224, 0.10);
  color: var(--cream);
}
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: 60px 0 44px; }
.foot-col h4 { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; font-family:'Mulish',sans-serif; font-weight: 600; }
.foot-col a, .foot-col p { display: block; font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 10px; transition: color .4s var(--ease); }
.foot-col a:hover { color: var(--cream); }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap; }
/* De to staerkeste indgange fra Oversigt-panelet, gentaget under logoet i footeren.
   Samme to kort som .ov-feature, saa trafik-maalene ogsaa staar i bunden af hver side. */
.foot-cta { display: grid; gap: 12px; max-width: 340px; margin-top: 26px; }
.foot-card {
  display: block; padding: 16px 18px; border-radius: 2px;
  border: 1px solid var(--line-2); border-left: 3px solid var(--sand);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.foot-card b { display: block; font-size: 0.95rem; font-weight: 600; color: var(--cream); margin-bottom: 5px; }
.foot-card > span { display: block; font-size: 0.84rem; line-height: 1.55; color: var(--cream-dim2); }
.foot-card .foot-go {
  margin-top: 10px; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand); display: flex; align-items: center; gap: 8px;
}
.foot-card:hover { background: rgba(198, 163, 90, 0.08); border-color: var(--sand); }
.foot-card .arrow { transition: transform .4s var(--ease); }
.foot-card:hover .arrow { transform: translateX(4px); }
@media (max-width: 760px) { .foot-cta { max-width: none; } }
.foot-partner { color: var(--cream-dim2); font-size: 0.88rem; max-width: 34ch; margin-top: 16px; }
.foot-legal { color: var(--cream-dim2); }
.foot-bottom { border-top: 1px solid var(--line-2); padding: 24px 0 40px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.74rem; color: var(--cream-dim2); line-height: 1.7; }
.foot-bottom .disc { max-width: 60ch; }

/* ============ PHOTO FIGURES ============ */
/* Full-bleed mood image that fades into the surrounding section colours.
   Override the fade colours per placement: style="--fade-top: var(--green-800); --fade-bottom: var(--green-850);" */
.figure-band { position: relative; overflow: hidden; --fade-top: var(--green-900); --fade-bottom: var(--green-900); }
.figure-band img { display: block; width: 100%; height: clamp(320px, 46vw, 520px); object-fit: cover; }
.figure-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, var(--fade-top) 0%, transparent 22%, transparent 74%, var(--fade-bottom) 100%),
    rgba(19, 37, 27, 0.10);
}
.figure-band .fig-cap {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); padding: 0 32px; z-index: 2;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  /* altid lys: bundfadet er moerkegroent på alle placeringer, og sidens
     tekstfarve er blaek paa de lyse sider — den var naesten usynlig her */
  color: rgba(236, 234, 224, 0.92); text-shadow: 0 1px 14px rgba(7, 13, 10, 0.6);
}

/* Small photo + text row (used inside content sections) */
.cmp-fig { margin-top: 34px; display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.cmp-fig img { width: 100%; display: block; border-radius: 2px; box-shadow: 0 16px 40px rgba(19, 37, 27, 0.14); }
.cmp-fig p { color: var(--cream-dim); }
@media (max-width: 700px) { .cmp-fig { grid-template-columns: 1fr; } }

/* Text + photo split: the "freedom" moment (text left, photo right) */
.free-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.free-split h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 17ch; margin-bottom: 20px; }
.free-split .fs-body p { color: var(--cream-dim); max-width: 52ch; margin-bottom: 18px; }
.free-split .fs-body .link-more { margin-top: 10px; }
.free-split .fs-photo { position: relative; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 22px 50px rgba(19, 37, 27, 0.14); }
.free-split .fs-photo img { display: block; width: 100%; height: clamp(340px, 36vw, 500px); object-fit: cover; }
.free-split .fs-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(19, 37, 27, 0.06); }
@media (max-width: 900px) { .free-split { grid-template-columns: 1fr; gap: 36px; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.links { display: none; }
  .menu-toggle { display: block; }
  .compare { grid-template-columns: 1fr; gap: 8px; }
  .compare .vdiv { display: none; }
  .compare-col { padding-top: 8px; }
  .compare-col.mi { border-top: 1px solid var(--line-2); padding-top: 36px; margin-top: 16px; }
  .principle { grid-template-columns: 1fr; gap: 14px; }
  .pullquote { grid-template-columns: 1fr; gap: 36px; }
  .pullquote .vdiv { width: 100%; height: 1px; min-height: 0; background: linear-gradient(90deg, transparent, var(--sand-soft), transparent); }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .portrait { max-width: 340px; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

@media (max-width: 540px) {
  .wrap { padding: 0 22px; }
  header.nav { padding: 20px 22px; }
  .logo { --logo-h: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ── Fremhaevet citat (afkast-siden). Genbruges hvor pointen skal staa alene. ── */
.mi-citat { margin: 34px 0 0; padding: clamp(22px, 3vw, 32px) clamp(24px, 4vw, 46px); border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mi-citat p { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.45; color: var(--sand); max-width: 34ch; margin: 0; text-wrap: balance; }
.ddip-mark { color: var(--sand); font-weight: 600; }

/* ── "Min loesning staar ikke paa listen": egen indtastning ── */
.egenboks { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.egenboks label { display: block; font-size: 0.9rem; color: var(--cream); margin-bottom: 8px; }
.egen-felt { display: flex; align-items: center; gap: 10px; }
.egen-felt input { width: 7ch; background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--cream); font-size: 1.05rem; padding: 9px 12px; border-radius: 4px; font-variant-numeric: tabular-nums; }
.egen-felt input:focus-visible { outline: 2px solid var(--sand); outline-offset: 2px; }
.egen-felt span { font-size: 0.9rem; color: var(--cream-dim); }
.egen-hjaelp { font-size: 0.8rem; color: var(--cream-dim2); max-width: 62ch; margin: 10px 0 0; line-height: 1.6; }
#egenSvar { margin-top: 16px; padding: 16px 18px; background: rgba(198,163,90,0.07); border: 1px solid var(--line); }
#egenSvar .linje { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; font-size: 0.94rem; color: var(--cream-dim); flex-wrap: wrap; }
#egenSvar .linje + .linje { border-top: 1px solid rgba(255,255,255,0.07); }
#egenSvar .linje b { color: var(--cream); font-variant-numeric: tabular-nums; }
#egenSvar .slut { color: var(--sand); font-size: 1.02rem; }
#egenSvar .slut b { color: var(--sand); }
#egenSvar .noten { font-size: 0.8rem; color: var(--cream-dim2); margin: 12px 0 0; line-height: 1.6; }

/* ── FAKTABOKS: Finanstilsynets tal, genbruges paa flere sider ──
   Peger altid paa vores egen gennemgang, ikke ud af sitet. */
.ft-boks { border: 1px solid var(--line); background: rgba(198,163,90,0.06); padding: clamp(22px, 3vw, 30px); margin: clamp(30px, 4vw, 44px) 0; max-width: 780px; }
.ft-boks .ft-kilde { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.ft-boks h3 { font-size: clamp(1.1rem, 1.9vw, 1.35rem); margin: 0 0 16px; max-width: 30ch; }
.ft-tal { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin-bottom: 18px; }
.ft-tal div { display: flex; flex-direction: column; gap: 4px; }
.ft-tal b { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 3.2vw, 2.2rem); line-height: 1; color: var(--sand); font-weight: 500; }
.ft-tal span { font-size: 0.83rem; line-height: 1.5; }

/* Kort Finanstilsyn-linje med info-maerke (forsiden). Kortere end faktaboksen,
   saa den ikke bryder rytmen i tjeklisten den staar under. */
.ft-linje { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.92rem; line-height: 1.7; max-width: 56ch; }
.ft-linje b { font-weight: 600; }
.ft-linje a { color: var(--sand); border-bottom: 1px solid transparent; text-decoration: none; white-space: nowrap; }
.ft-linje a:hover { border-bottom-color: currentColor; }

/* Krydset i oversigten laa klemt op ad "Oversigt"-knappen i topbaren.
   Flyt det ind i panelets egen top-raekke med luft omkring. */
.oversigt .ov-top { padding-top: 6px; }
.oversigt .ov-close { margin-left: auto; position: relative; z-index: 2; }
