/* Casino Lommen — vanilla CSS (porteret fra det oprindelige design) */

:root {
  --brand-50:#eef4fb; --brand-100:#d9e6f5; --brand-200:#b3cdeb; --brand-300:#84abdc;
  --brand-400:#5285c8; --brand-500:#3267ad; --brand-600:#234f8c; --brand-700:#1d4071;
  --brand-800:#1a365d; --brand-900:#172d4d; --brand-950:#0f1d33;
  --accent-400:#f0b429; --accent-500:#de911d; --accent-600:#cb6e17;
  --slate-50:#f8fafc; --slate-100:#f1f5f9; --slate-200:#e2e8f0; --slate-300:#cbd5e1;
  --slate-400:#94a3b8; --slate-500:#64748b; --slate-600:#475569; --slate-700:#334155;
  --slate-800:#1e293b; --slate-900:#0f172a;
  --emerald-50:#ecfdf5; --emerald-200:#a7f3d0; --emerald-800:#065f46; --emerald-900:#064e3b;
  --amber-50:#fffbeb; --amber-200:#fde68a; --amber-800:#92400e; --amber-900:#78350f;
  --radius:16px;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family:var(--font-sans); color:var(--slate-800); background:var(--slate-50);
  line-height:1.5; -webkit-font-smoothing:antialiased; min-height:100vh;
  display:flex; flex-direction:column;
}
main { flex:1 0 auto; }
a { color:inherit; text-decoration:none; }
img,svg { display:block; max-width:100%; }
ul { list-style:none; }

.container { width:100%; max-width:1120px; margin-inline:auto; padding-inline:16px; }
@media (min-width:640px){ .container{ padding-inline:24px; } }

/* ---------- buttons ---------- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:12px; padding:10px 20px; font-size:14px; font-weight:600;
  cursor:pointer; transition:.2s ease; border:1px solid transparent; }
.btn-primary { color:#fff; background:linear-gradient(to bottom,var(--brand-600),var(--brand-700));
  box-shadow:0 10px 15px -3px rgba(15,29,51,.2); }
.btn-primary:hover { background:linear-gradient(to bottom,var(--brand-700),var(--brand-800)); }
.btn-gold { color:var(--brand-950); font-weight:700;
  background:linear-gradient(to bottom,var(--accent-400),var(--accent-500));
  box-shadow:0 10px 15px -3px rgba(222,145,29,.3); }
.btn-gold:hover { background:linear-gradient(to bottom,var(--accent-500),var(--accent-600)); }
.btn-outline { color:var(--brand-700); background:#fff; border-color:var(--brand-200); }
.btn-outline:hover { background:var(--brand-50); border-color:var(--brand-300); }
.btn-ghost-light { color:#fff; background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.2);
  backdrop-filter:blur(8px); }
.btn-ghost-light:hover { background:rgba(255,255,255,.2); }
.btn-block { width:100%; }
.btn-sm { padding:7px 14px; font-size:13px; }

/* ---------- cards ---------- */
.card { border-radius:var(--radius); border:1px solid rgba(226,232,240,.8);
  background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.04); }
.card-hover { transition:.3s ease; }
.card-hover:hover { transform:translateY(-4px);
  box-shadow:0 20px 25px -5px rgba(15,29,51,.12); border-color:var(--brand-200); }

/* ---------- badges / chips ---------- */
.badge { display:inline-flex; align-items:center; gap:6px; border-radius:999px;
  padding:3px 10px; font-size:12px; font-weight:500; border:1px solid var(--brand-200);
  background:var(--brand-50); color:var(--brand-800); }
.badge-green { background:var(--emerald-50); color:var(--emerald-800); border-color:var(--emerald-200); }
.badge-amber { background:var(--amber-50); color:var(--amber-800); border-color:var(--amber-200); }
.eyebrow { display:inline-flex; border-radius:999px; border:1px solid var(--brand-200);
  background:rgba(255,255,255,.7); padding:4px 12px; font-size:12px; font-weight:600;
  text-transform:uppercase; letter-spacing:.04em; color:var(--brand-600); }

/* ---------- backgrounds ---------- */
.bg-hero { background-color:#0f1d33;
  background-image:linear-gradient(100deg, rgba(15,29,51,.92) 0%, rgba(15,29,51,.55) 45%, rgba(15,29,51,.2) 100%), url("../assets/bg-hero.jpg");
  background-size:cover; background-position:center; }
.bg-section { background-color:#eef4fb;
  background-image:linear-gradient(rgba(244,247,251,.80), rgba(244,247,251,.88)), url("../assets/bg-section.jpg");
  background-size:cover; background-position:center; }
.bg-cta { background-color:#0f1d33;
  background-image:linear-gradient(100deg, rgba(15,29,51,.82) 0%, rgba(15,29,51,.5) 55%, rgba(15,29,51,.3) 100%), url("../assets/bg-cta.jpg");
  background-size:cover; background-position:center; }

/* ---------- stars ---------- */
.stars { display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.stars .full { color:var(--accent-500); letter-spacing:1px; }
.stars .empty { color:var(--slate-300); letter-spacing:1px; }
.stars .num { font-size:14px; font-weight:600; color:var(--slate-700); }

/* ---------- alert bar ---------- */
.alertbar { background:var(--brand-950); color:#fff; font-size:13px; }
.alertbar .inner { display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:4px 8px; text-align:center; padding:8px 0; }
.alertbar a { color:#fff; font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.alertbar .age { color:var(--accent-400); font-weight:700; }

/* ---------- navbar ---------- */
.nav { position:sticky; top:0; z-index:40; border-bottom:1px solid var(--slate-200);
  background:rgba(255,255,255,.95); backdrop-filter:blur(8px); }
.nav .inner { display:flex; align-items:center; justify-content:space-between; height:64px; }
.brand { display:flex; align-items:center; gap:8px; }
.brand .mark { width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  filter:drop-shadow(0 4px 6px rgba(15,29,51,.2)); }
.brand .mark svg { width:100%; height:100%; }
.brand .name { font-size:18px; font-weight:700; color:var(--brand-900); letter-spacing:-.01em; }
.nav-links { display:none; align-items:center; gap:2px; }
.nav-links a { padding:8px 12px; border-radius:8px; font-size:14px; font-weight:500; color:var(--slate-600); transition:.15s; }
.nav-links a:hover { background:var(--brand-50); color:var(--brand-800); }
.nav-links a.active { color:var(--brand-800); background:var(--brand-50); }
.nav-toggle { width:40px; height:40px; border:1px solid var(--slate-200); border-radius:8px;
  background:#fff; color:var(--slate-700); font-size:20px; cursor:pointer; }
.mobile-menu { display:none; border-top:1px solid var(--slate-200); background:#fff; padding:8px 16px 16px; }
.mobile-menu.open { display:block; }
.mobile-menu a { display:block; padding:12px; border-radius:8px; font-size:16px; font-weight:500; color:var(--slate-700); }
.mobile-menu a:hover { background:var(--brand-50); }
@media (min-width:1024px){ .nav-links{ display:flex; } .nav-toggle{ display:none; } .mobile-menu{ display:none!important; } }

/* ---------- hero ---------- */
.hero { position:relative; overflow:hidden; color:#fff; }
.hero::after { content:""; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(15,29,51,.8),transparent 60%); pointer-events:none; }
.hero .inner { position:relative; z-index:1; padding:80px 0; }
@media (min-width:640px){ .hero .inner{ padding:112px 0; } }
.hero .tag { display:inline-flex; align-items:center; gap:8px; border-radius:999px;
  border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.1);
  padding:6px 16px; font-size:14px; font-weight:500; color:var(--brand-50); backdrop-filter:blur(8px); }
.hero .tag .dot { width:8px; height:8px; border-radius:999px; background:var(--accent-400); }
.hero h1 { max-width:760px; font-size:40px; line-height:1.1; font-weight:800; letter-spacing:-.02em;
  margin-top:16px; text-shadow:0 2px 30px rgba(15,29,51,.45); }
@media (min-width:640px){ .hero h1{ font-size:60px; } }
.hero p.lead { max-width:640px; margin-top:24px; font-size:18px; line-height:1.6; color:var(--brand-100); }
.hero .actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.gold-text { background:linear-gradient(to right,var(--accent-400),var(--accent-500));
  -webkit-background-clip:text; background-clip:text; color:transparent; }

/* stats */
.stats { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; margin-top:56px;
  max-width:760px; border:1px solid rgba(255,255,255,.1); border-radius:var(--radius);
  overflow:hidden; background:rgba(255,255,255,.1); backdrop-filter:blur(8px); }
@media (min-width:640px){ .stats{ grid-template-columns:repeat(4,1fr); } }
.stats .cell { background:rgba(255,255,255,.03); padding:16px; text-align:center; }
.stats .v { font-size:24px; font-weight:800; }
.stats .l { margin-top:4px; font-size:12px; line-height:1.3; color:var(--brand-100); }

/* ---------- generic sections ---------- */
.section { padding:64px 0; }
.section-tight { padding:40px 0; }
.section-head { margin-bottom:32px; }
.section-head .eyebrow { margin-bottom:8px; }
.section-head h2 { font-size:30px; font-weight:700; letter-spacing:-.02em; color:var(--brand-900); }
.section-head p { margin-top:4px; color:var(--slate-600); }
.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns:1fr; }
.grid-3 { grid-template-columns:1fr; }
@media (min-width:768px){ .grid-2{ grid-template-columns:repeat(2,1fr); } .grid-3{ grid-template-columns:repeat(3,1fr); } }

/* feature card */
.feature { padding:24px; }
.feature .ico { width:48px; height:48px; border-radius:12px; display:flex; align-items:center;
  justify-content:center; background:var(--brand-50); color:var(--brand-700);
  border:1px solid var(--brand-100); margin-bottom:16px; }
.feature h3 { font-size:18px; font-weight:700; color:var(--brand-900); margin-bottom:8px; }
.feature p { font-size:14px; color:var(--slate-600); line-height:1.6; }
.features-overlap { margin-top:-48px; position:relative; z-index:2; }

/* ---------- casino card ---------- */
.ccard { position:relative; overflow:hidden; padding:20px; display:flex; flex-direction:column; }
.ccard .rank { position:absolute; right:0; top:0; padding:4px 12px; font-size:12px; font-weight:700;
  color:var(--brand-950); border-bottom-left-radius:12px;
  background:linear-gradient(135deg,var(--accent-400),var(--accent-500)); }
.ccard .top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.ccard .logo { width:48px; height:48px; border-radius:12px; display:flex; align-items:center;
  justify-content:center; font-weight:900; font-size:14px; color:#fff;
  background:linear-gradient(135deg,var(--brand-600),var(--brand-800));
  box-shadow:0 4px 6px -1px rgba(15,29,51,.2); flex:none; }

/* logo-billede (rigtige operatørlogoer) med fallback til monogram */
.logo-img { background:#fff; padding:6px; overflow:hidden; border:1px solid var(--slate-200);
  box-shadow:0 1px 2px rgba(15,29,51,.08); }
.logo-img img { width:100%; height:100%; object-fit:contain; display:block; }
.logo-mono { background:linear-gradient(135deg,var(--brand-600),var(--brand-800)); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:900; }
.ccard h3 { font-size:18px; font-weight:700; color:var(--brand-900); }
.ccard .tagline { font-size:14px; color:var(--slate-500); }
.ccard .chips { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }
.ccard dl { display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; font-size:14px; margin-bottom:16px; }
.ccard dt { color:var(--slate-500); }
.ccard dd { font-weight:500; color:var(--slate-800); }
.ccard .cta { margin-top:auto; display:flex; flex-direction:column; gap:8px; }
@media (min-width:480px){ .ccard .cta{ flex-direction:row; } .ccard .cta .btn{ flex:1; } }

/* ---------- explorer filters ---------- */
.toolbar { display:flex; flex-direction:column; gap:16px; border:1px solid var(--slate-200);
  background:#fff; border-radius:12px; padding:16px; margin-bottom:24px; }
@media (min-width:640px){ .toolbar{ flex-direction:row; align-items:center; justify-content:space-between; } }
.chips-row { display:flex; flex-wrap:wrap; gap:8px; }
.chip { border:1px solid var(--slate-300); background:#fff; color:var(--slate-700);
  border-radius:999px; padding:7px 14px; font-size:14px; font-weight:500; cursor:pointer; transition:.15s; }
.chip:hover { border-color:var(--brand-300); background:var(--brand-50); }
.chip.active { border-color:var(--brand-600); background:var(--brand-700); color:#fff; }
.sortwrap { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--slate-600); }
select { border:1px solid var(--slate-300); border-radius:8px; padding:6px 12px; font-size:14px;
  font-weight:500; color:var(--slate-800); background:#fff; cursor:pointer; }
select:focus { outline:none; border-color:var(--brand-400); }
.result-count { font-size:14px; color:var(--slate-500); margin-bottom:16px; }

/* ---------- page header ---------- */
.page-head { border-bottom:1px solid rgba(226,232,240,.7); }
.page-head .inner { padding:48px 0; }
@media (min-width:640px){ .page-head .inner{ padding:64px 0; } }
.page-head h1 { font-size:30px; font-weight:800; letter-spacing:-.02em; color:var(--brand-900); margin-top:8px; }
@media (min-width:640px){ .page-head h1{ font-size:36px; } }
.page-head p { margin-top:16px; max-width:760px; font-size:18px; line-height:1.6; color:var(--slate-600); }

/* breadcrumbs */
.crumbs { padding-top:24px; font-size:14px; color:var(--slate-500); }
.crumbs ol { display:flex; flex-wrap:wrap; align-items:center; gap:6px; }
.crumbs a:hover { color:var(--brand-700); text-decoration:underline; }
.crumbs .sep { color:var(--slate-400); }
.crumbs .cur { color:var(--slate-700); }

/* ---------- prose ---------- */
.prose { max-width:760px; }
.prose h2 { font-size:24px; font-weight:700; color:var(--brand-900); margin:40px 0 12px; }
.prose h3 { font-size:18px; font-weight:600; color:var(--brand-800); margin:24px 0 8px; }
.prose p { margin-bottom:16px; line-height:1.7; color:var(--slate-700); }
.prose ul { margin:0 0 16px 24px; list-style:disc; }
.prose ul li { margin-bottom:4px; line-height:1.6; color:var(--slate-700); }
.prose a { color:var(--brand-700); font-weight:500; text-decoration:underline; text-underline-offset:2px; }
.prose a:hover { color:var(--brand-900); }
.prose .first-mt-0 h2:first-child { margin-top:0; }
.note { border:1px solid var(--amber-200); background:var(--amber-50); color:var(--amber-900);
  border-radius:12px; padding:16px; font-size:14px; }
.callout { border:1px solid var(--brand-200); background:var(--brand-50); border-radius:var(--radius); padding:24px; }
.callout h2 { margin-top:0; }

/* ---------- tables ---------- */
.table-wrap { overflow-x:auto; border:1px solid var(--slate-200); border-radius:12px; }
table.data { width:100%; border-collapse:collapse; font-size:14px; min-width:680px; }
table.data thead th { background:var(--brand-900); color:#fff; text-align:left; padding:12px 16px; font-weight:600; }
table.data thead a { color:#fff; }
table.data thead a:hover { text-decoration:underline; }
table.data th.rowhead { text-align:left; padding:12px 16px; font-weight:500; color:var(--slate-700);
  border-right:1px solid var(--slate-200); position:sticky; left:0; background:inherit; }
table.data td { padding:12px 16px; color:var(--slate-700); }
table.data tbody tr:nth-child(odd){ background:#fff; }
table.data tbody tr:nth-child(even){ background:var(--slate-50); }
table.simple { width:100%; border-collapse:collapse; font-size:14px; }
table.simple th, table.simple td { border:1px solid var(--slate-200); padding:8px 12px; text-align:left; }
table.simple th { background:var(--slate-50); color:var(--slate-600); font-weight:600; }

/* ---------- accordion ---------- */
.accordion { border:1px solid var(--slate-200); border-radius:12px; overflow:hidden; background:#fff; }
.accordion .item { border-top:1px solid var(--slate-200); }
.accordion .item:first-child { border-top:none; }
.accordion .q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 20px; text-align:left; background:none; border:none; cursor:pointer;
  font-size:16px; font-weight:600; color:var(--brand-900); }
.accordion .q .plus { color:var(--brand-600); font-size:20px; transition:transform .2s; flex:none; }
.accordion .item.open .q .plus { transform:rotate(45deg); }
.accordion .a { padding:0 20px 20px; color:var(--slate-700); line-height:1.7; display:none; }
.accordion .item.open .a { display:block; }
.accordion .a a { color:var(--brand-700); text-decoration:underline; }

/* ---------- detail layout ---------- */
.detail-grid { display:grid; grid-template-columns:1fr; gap:40px; }
@media (min-width:1024px){ .detail-grid{ grid-template-columns:1fr 280px; } }
.detail-hero { display:flex; flex-direction:column; gap:20px; padding:24px; }
@media (min-width:640px){ .detail-hero{ flex-direction:row; align-items:center; justify-content:space-between; padding:32px; } }
.detail-hero .id { display:flex; align-items:center; gap:16px; }
.detail-hero .logo { width:64px; height:64px; border-radius:16px; font-size:20px; }
.detail-hero h1 { font-size:24px; font-weight:700; color:var(--brand-900); }
@media (min-width:640px){ .detail-hero h1{ font-size:30px; } }
.detail-hero .right { display:flex; flex-direction:column; gap:8px; }
@media (min-width:640px){ .detail-hero .right{ align-items:flex-end; } }
.detail-hero .upd { font-size:12px; color:var(--slate-400); }
.keyfacts { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--slate-200);
  border-top:1px solid var(--slate-200); }
@media (min-width:640px){ .keyfacts{ grid-template-columns:repeat(4,1fr); } }
.keyfacts .kf { background:#fff; padding:16px; }
.keyfacts dt { font-size:11px; text-transform:uppercase; letter-spacing:.04em; color:var(--slate-500); }
.keyfacts dd { margin-top:4px; font-weight:600; color:var(--slate-800); }
.detail-section { scroll-margin-top:96px; margin-bottom:40px; }
.detail-section h2 { font-size:24px; font-weight:700; color:var(--brand-900); margin-bottom:16px; }
.detail-section ul.kv { display:flex; flex-direction:column; gap:8px; color:var(--slate-700); }
.proscons { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px){ .proscons{ grid-template-columns:repeat(2,1fr); } }
.pros { border:1px solid var(--emerald-200); background:var(--emerald-50); border-radius:var(--radius); padding:20px; }
.pros h3 { color:var(--emerald-900); margin-bottom:12px; font-weight:600; }
.pros li, .cons li { font-size:14px; margin-bottom:8px; display:flex; gap:8px; }
.pros li { color:var(--emerald-900); }
.cons { border:1px solid var(--amber-200); background:var(--amber-50); border-radius:var(--radius); padding:20px; }
.cons h3 { color:var(--amber-900); margin-bottom:12px; font-weight:600; }
.cons li { color:var(--amber-900); }
.ic-check, .ic-warn { flex:none; margin-top:2px; }
.affiliate-box { border:1px solid var(--slate-200); background:var(--slate-50);
  border-radius:var(--radius); padding:20px; font-size:14px; color:var(--slate-600); }
.sidebar { position:static; }
@media (min-width:1024px){ .sidebar{ position:sticky; top:96px; align-self:start; } }
.sidebar .toc { padding:20px; }
.sidebar .toc h2 { font-size:13px; text-transform:uppercase; letter-spacing:.04em; color:var(--slate-500); margin-bottom:12px; }
.sidebar .toc li { margin-bottom:6px; }
.sidebar .toc a { font-size:14px; color:var(--brand-700); }
.sidebar .toc a:hover { text-decoration:underline; }

/* ---------- responsible block ---------- */
.rg { position:relative; overflow:hidden; border-radius:24px; padding:28px; color:#fff;
  box-shadow:0 20px 25px -5px rgba(15,29,51,.2); }
@media (min-width:640px){ .rg{ padding:40px; } }
.rg .row { display:flex; flex-direction:column; gap:20px; }
@media (min-width:768px){ .rg .row{ flex-direction:row; align-items:center; justify-content:space-between; } }
.rg h2 { font-size:24px; font-weight:700; }
.rg p { margin-top:8px; color:var(--brand-100); line-height:1.6; max-width:640px; }
.rg ul { margin-top:16px; font-size:14px; color:var(--brand-100); display:flex; flex-direction:column; gap:6px; }
.rg ul strong { color:#fff; }
.rg a { color:var(--accent-400); font-weight:600; text-decoration:underline; }
.rg a.white { color:#fff; }

/* "sådan vurderer" list */
.rank-list li { display:flex; align-items:center; justify-content:space-between; gap:12px;
  border:1px solid var(--slate-200); background:rgba(255,255,255,.7); border-radius:12px;
  padding:16px; transition:.15s; }
.rank-list li:hover { border-color:var(--brand-200); background:#fff; }
.rank-list .who { display:flex; align-items:center; gap:12px; }
.rank-list .logo { width:36px; height:36px; border-radius:9px; font-size:12px; }
.rank-list a { font-weight:600; color:var(--brand-800); }
.rank-list a:hover { text-decoration:underline; }
.rank-list .hash { color:var(--slate-400); margin-right:4px; }
.mt-list { display:flex; flex-direction:column; gap:12px; }

/* ---------- guides ---------- */
.guide-card { padding:24px; display:flex; flex-direction:column; }
.guide-card .rt { font-size:12px; font-weight:500; text-transform:uppercase; letter-spacing:.04em; color:var(--brand-600); }
.guide-card h3 { font-size:18px; font-weight:700; color:var(--brand-900); margin-top:4px; }
.guide-card p { margin-top:8px; font-size:14px; color:var(--slate-600); line-height:1.6; flex:1; }
.guide-card .more { margin-top:16px; font-size:14px; font-weight:600; color:var(--brand-700); }

/* glossary */
.glossary { border:1px solid var(--slate-200); border-radius:12px; overflow:hidden; background:#fff; }
.glossary .term { padding:20px; border-top:1px solid var(--slate-200); }
.glossary .term:first-child { border-top:none; }
.glossary dt { font-weight:600; color:var(--brand-900); }
.glossary dd { margin-top:4px; line-height:1.6; color:var(--slate-700); }

/* ---------- form ---------- */
.form { display:flex; flex-direction:column; gap:20px; padding:24px; }
.field label { display:block; font-size:14px; font-weight:500; color:var(--slate-700); margin-bottom:6px; }
.input { width:100%; border:1px solid var(--slate-300); border-radius:8px; padding:10px 12px;
  font-size:14px; color:var(--slate-800); font-family:inherit; }
.input:focus { outline:none; border-color:var(--brand-500); box-shadow:0 0 0 2px rgba(132,171,220,.4); }
textarea.input { resize:vertical; min-height:120px; }
.consent { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--slate-600); }
.consent input { margin-top:4px; }
.hp { position:absolute; left:-9999px; }
.form-msg { border-radius:8px; padding:12px; font-size:14px; }
.form-msg.err { border:1px solid #fecaca; background:#fef2f2; color:#b91c1c; }
.form-msg.ok { border:1px solid var(--emerald-200); background:var(--emerald-50); color:var(--emerald-900); padding:24px; border-radius:12px; }
.hidden { display:none; }

/* ---------- footer ---------- */
.footer { margin-top:64px; background:var(--brand-950); color:var(--slate-200); border-top:1px solid var(--slate-200); }
.footer .cols { display:grid; gap:40px; padding:48px 0; grid-template-columns:1fr; }
@media (min-width:768px){ .footer .cols{ grid-template-columns:repeat(3,1fr); } }
.footer h3 { color:#fff; font-weight:600; margin-bottom:12px; font-size:15px; }
.footer p, .footer li { font-size:14px; line-height:1.6; color:var(--slate-300); }
.footer a { text-decoration:underline; text-underline-offset:2px; }
.footer a:hover { color:#fff; }
.footer .brand .name { color:#fff; }
.footer .desc { margin-top:12px; }
.footer .gold { color:var(--accent-400); font-weight:600; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); }
.footer-bottom .inner { padding:24px 0; font-size:14px; color:var(--slate-300); }
.footer-bottom .disc { border-radius:8px; background:rgba(255,255,255,.05); padding:12px; margin-bottom:16px; line-height:1.6; }
.footer-bottom .links { display:flex; flex-wrap:wrap; gap:8px 16px; }
.footer-bottom .copy { margin-top:16px; color:var(--slate-400); }

/* 404 */
.nf { text-align:center; padding:96px 0; }
.nf .code { font-size:64px; font-weight:900; color:var(--brand-200); }
.nf h1 { margin-top:16px; font-size:24px; font-weight:700; color:var(--brand-900); }
.nf p { margin-top:8px; color:var(--slate-600); }
.nf .actions { margin-top:24px; display:flex; gap:12px; justify-content:center; }

/* ---------- cookie consent ---------- */
.cookie-banner { position:fixed; left:16px; right:16px; bottom:16px; z-index:60;
  max-width:560px; margin-inline:auto; background:#fff; border:1px solid var(--slate-200);
  border-radius:var(--radius); box-shadow:0 20px 25px -5px rgba(15,29,51,.25); padding:20px; }
.cookie-banner h2 { font-size:16px; font-weight:700; color:var(--brand-900); margin-bottom:6px; }
.cookie-banner p { font-size:13px; line-height:1.6; color:var(--slate-600); margin-bottom:14px; }
.cookie-banner p a { color:var(--brand-700); text-decoration:underline; }
.cookie-banner .actions { display:flex; flex-wrap:wrap; gap:8px; }
.cookie-banner .btn { flex:1 1 auto; }
.cookie-fab { position:fixed; left:16px; bottom:16px; z-index:50; width:42px; height:42px;
  border-radius:999px; border:1px solid var(--slate-300); background:#fff; cursor:pointer;
  box-shadow:0 4px 12px rgba(15,29,51,.15); color:var(--brand-700); display:flex;
  align-items:center; justify-content:center; }
.cookie-fab:hover { background:var(--brand-50); }

/* annonce-label ved listings */
.adnote { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--slate-500);
  background:var(--slate-100); border:1px solid var(--slate-200); border-radius:10px;
  padding:10px 14px; margin-bottom:20px; }
.adnote .tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color:var(--brand-700); background:var(--brand-50); border:1px solid var(--brand-200);
  border-radius:6px; padding:2px 8px; flex:none; }
.ccard .annonce { position:absolute; left:0; top:0; font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:.04em; color:var(--slate-500);
  background:var(--slate-100); border-bottom-right-radius:10px; padding:3px 10px; }

/* ---------- polish: a11y, micro-interaktion, motion ---------- */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline:2px solid var(--brand-400); outline-offset:2px; border-radius:6px;
}
::selection { background:var(--brand-200); color:var(--brand-950); }
.btn { will-change:transform; }
.btn:active { transform:translateY(1px); }
h1, h2, h3 { text-wrap:balance; }
p { text-wrap:pretty; }
.crumbs ol { list-style:none; }

/* blød indtoning ved scroll (kun når JS er aktiv, så intet skjules uden JS) */
.js .reveal { opacity:0; transform:translateY(16px); }
.js .reveal.in { opacity:1; transform:none; transition:opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1); }

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

/* utils */
.mt-0{margin-top:0}.mt-6{margin-top:24px}.mt-8{margin-top:32px}.mt-10{margin-top:40px}
.hide-sm{display:none}
@media (min-width:640px){ .show-sm{display:inline} }
