/* Wichmand Vikar: designsystem v2 (navy, orange, store billeder). Tokens først, derefter komponenter. Ingen inline styles i HTML. */

@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/archivo-500.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/archivo-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/archivo-700.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/archivo-800.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/instrument-sans-400.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/instrument-sans-500.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/instrument-sans-600.woff2") format("woff2"); }

:root {
  --navy: #0B1F3A;
  --navy-2: #13294A;
  --navy-3: #1B355E;
  --charcoal: #111418;
  --charcoal-2: #1A1E24;
  --off: #F5F2EC;
  --off-2: #ECE7DE;
  --white: #FFFFFF;
  --ink: #14181F;
  --ink-2: #4E5561;
  --line-light: #DDD7CC;
  --line-dark: #24395C;
  --line-char: #2A2F37;
  --orange: #F5891F;
  --orange-hover: #FF9B3D;
  --orange-deep: #A94A08;
  --on-dark: #FFFFFF;
  --on-dark-muted: #B9C3D3;
  --error: #B42318;
  --error-on-dark: #FF8A80;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --w-page: 75rem;
  --w-text: 38rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section: 4.5rem;
  --nav-h: 4.5rem;
  --radius: 2px;
}
@media (min-width: 48em) { :root { --section: 6.5rem; --nav-h: 5rem; } }
@media (min-width: 64em) { :root { --section: 8rem; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--off);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 48em) { body { font-size: 1.125rem; } }
@media (max-width: 47.99em) { body { padding-bottom: 4.75rem; } }
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--display); margin: 0; }
h1 { font-weight: 800; font-size: clamp(2.75rem, 1.6rem + 5vw, 5.75rem); line-height: 0.95; letter-spacing: -0.025em; text-transform: uppercase; }
h2 { font-weight: 700; font-size: clamp(1.75rem, 1.1rem + 2.8vw, 3.5rem); line-height: 1.0; letter-spacing: -0.025em; text-transform: uppercase; overflow-wrap: break-word; }
h3 { font-weight: 700; font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.01em; }

.wrap { max-width: var(--w-page); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.text { max-width: var(--w-text); }
.eyebrow { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.875rem; line-height: 1.5; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-deep); }
.on-dark .eyebrow { color: var(--orange); }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--ink-2); }
@media (min-width: 48em) { .lead { font-size: 1.25rem; } }
.on-dark { color: var(--on-dark); }
.on-dark .lead { color: var(--on-dark-muted); }
.section-head { display: grid; gap: 1rem; margin-bottom: 3rem; }
.section-head h2 { max-width: 16ch; }
@media (min-width: 64em) { .section-head { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: end; gap: 3rem; margin-bottom: 4rem; } }

.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--orange); color: var(--navy); padding: 0.75rem 1.25rem; font-weight: 600; text-decoration: none; }
.skip:focus { left: var(--gutter); }

/* Knapper */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3.25rem; padding: 0 1.625rem;
  font-family: var(--display); font-weight: 700; font-size: 0.9375rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid transparent; border-radius: var(--radius); cursor: pointer; white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn-outline { background: transparent; color: var(--on-dark); border-color: rgba(255, 255, 255, 0.55); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--on-dark); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-3); border-color: var(--navy-3); }
.btn-block { width: 100%; }
.btn .num { font-variant-numeric: tabular-nums; }

/* Navigation */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; color: var(--on-dark); transition: background-color 0.2s ease, box-shadow 0.2s ease; }
.site-nav.is-scrolled, .site-nav.is-solid { background: var(--navy); box-shadow: 0 1px 0 var(--line-dark); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--nav-h); transition: height 0.2s ease; }
.site-nav.is-scrolled .nav-row { height: 4rem; }
.logo { display: block; flex: none; }
.logo img { width: 168px; height: 48px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--display); font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.02em; text-decoration: none; padding: 0.5rem 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-cta { display: none; }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 3rem; height: 3rem; padding: 0; background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.35); border-radius: var(--radius); cursor: pointer; align-items: center; }
.nav-toggle span { display: block; width: 1.25rem; height: 2px; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 64em) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; min-height: 2.875rem; padding: 0 1.25rem; font-size: 0.875rem; }
  .nav-toggle { display: none; }
}
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: var(--navy); color: var(--on-dark); padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2rem; display: none; flex-direction: column; gap: 2rem; overflow-y: auto; }
.mobile-menu.is-open { display: flex; }
.mobile-menu nav { display: grid; gap: 0.25rem; }
.mobile-menu nav a { font-family: var(--display); font-weight: 700; font-size: 1.75rem; letter-spacing: -0.01em; text-decoration: none; padding: 0.75rem 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .menu-contact { display: grid; gap: 0.75rem; }
.mobile-menu .menu-contact a { text-decoration: none; font-weight: 600; }
.mobile-menu .menu-contact .big { font-family: var(--display); font-size: 1.75rem; font-weight: 700; font-variant-numeric: tabular-nums; }
@media (min-width: 64em) { .mobile-menu { display: none !important; } }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--on-dark); background: var(--navy); overflow: hidden; isolation: isolate; }
@media (min-width: 48em) { .hero { min-height: min(92vh, 60rem); } }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11, 31, 58, 0.94) 0%, rgba(11, 31, 58, 0.78) 40%, rgba(11, 31, 58, 0.35) 100%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 31, 58, 0.35) 0%, rgba(11, 31, 58, 0) 35%, rgba(11, 31, 58, 0.55) 100%); }
.hero-inner { position: relative; width: 100%; padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 6.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 48em) { .hero-inner { padding-bottom: 3.5rem; } }
@media (min-width: 64em) { .hero-inner { padding-bottom: 4.5rem; } }
.hero-copy { display: grid; gap: 1.5rem; }
.hero-copy h1 { max-width: 11ch; }
.hero-copy .lead { color: var(--on-dark); max-width: 30rem; font-size: 1.125rem; }
@media (min-width: 48em) { .hero-copy .lead { font-size: 1.3125rem; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
/* Underside-hero og sprogvalg */
.hero-sub { min-height: min(88svh, 52rem); }
@media (min-width: 48em) { .hero-sub { min-height: min(74vh, 46rem); } }
.lang { display: inline-flex; width: max-content; max-width: 100%; justify-self: start; gap: 0.25rem; padding: 0.25rem; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: var(--radius); margin-bottom: 0.5rem; }
.lang a, .lang span { font-family: var(--display); font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.45rem 0.75rem; border-radius: var(--radius); text-decoration: none; color: var(--on-dark); }
.lang a:hover { background: rgba(255, 255, 255, 0.12); }
.lang [aria-current="true"] { background: var(--orange); color: var(--navy); }
.lang span { color: var(--on-dark-muted); cursor: default; }

/* Tillidsstribe */
.strip { background: var(--navy); color: var(--on-dark); border-top: 1px solid var(--line-dark); }
.strip-grid { display: grid; grid-template-columns: 1fr; }
.strip-item { padding: 1.5rem 0; border-bottom: 1px solid var(--line-dark); display: grid; gap: 0.35rem; align-content: start; }
.strip-item:last-child { border-bottom: 0; }
.strip-item .strip-title { font-family: var(--display); font-weight: 700; font-size: 0.875rem; line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: flex-start; gap: 0.75rem; }
.strip-item .strip-title::before { content: ""; width: 0.5rem; height: 0.5rem; margin-top: 0.45em; background: var(--orange); flex: none; }
.strip-item p { color: var(--on-dark); font-size: 0.9375rem; }
@media (min-width: 48em) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item { padding: 2rem 2rem 2rem 0; }
  .strip-item:nth-child(odd) { border-right: 1px solid var(--line-dark); }
  .strip-item:nth-child(even) { padding-left: 2rem; }
  .strip-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 64em) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .strip-item { border-bottom: 0; border-right: 1px solid var(--line-dark); padding: 2.25rem 1.5rem; }
  .strip-item:first-child { padding-left: 0; }
  .strip-item:last-child { border-right: 0; padding-right: 0; }
  .strip-item:nth-child(even) { padding-left: 1.5rem; }
}

/* Intro */
.intro { background: var(--off); }
.intro-grid { display: grid; gap: 3rem; }
@media (min-width: 64em) { .intro-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 5rem; align-items: center; } }
.intro-copy { display: grid; gap: 1.5rem; }
.intro-copy h2 { max-width: 12ch; }
.checklist { display: grid; gap: 0.75rem 2rem; margin-top: 0.5rem; }
@media (min-width: 30em) { .checklist { grid-template-columns: repeat(2, 1fr); } }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 600; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line-light); }
.checklist li::before { content: ""; flex: none; width: 1.25rem; height: 1.25rem; margin-top: 0.15rem; background: var(--orange); clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 20%, 86% 6%, 40% 70%); }
.intro-media { position: relative; }
.intro-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); position: relative; z-index: 1; }
.intro-media::before { content: ""; position: absolute; left: -1.25rem; bottom: -1.25rem; width: 55%; height: 45%; background: var(--orange); z-index: 0; }
.intro-media::after { content: ""; position: absolute; right: -1.25rem; top: -1.25rem; width: 40%; height: 55%; background: var(--navy); z-index: 0; }
@media (min-width: 64em) { .intro-media { margin-inline: 1.5rem 1.25rem; } }

/* Fagområder */
.trades { background: var(--navy); color: var(--on-dark); }
.trades-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
@media (min-width: 30em) { .trades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .trades-grid { grid-template-columns: repeat(4, 1fr); } }
.trade { position: relative; background: var(--navy); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 1.5rem 1.25rem; display: grid; gap: 0.5rem; align-content: start; transition: background-color 0.2s ease; }
@media (min-width: 30em) { .trade { padding: 2rem 1.5rem; gap: 0.625rem; min-height: 10rem; } }
.trade::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.trade:hover { background: var(--navy-2); }
.trade:hover::before { transform: scaleX(1); }
.trade h3 { font-size: 1.375rem; }
.trade p { color: var(--on-dark-muted); font-size: 0.9375rem; line-height: 1.55; }
.trades-foot { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.trades-foot p { color: var(--on-dark-muted); }

/* Hvorfor */
.why { background: var(--off); }
.why-grid { display: grid; gap: 3rem; }
@media (min-width: 64em) { .why-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; align-items: start; } .why-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); } }
.why-sticky { display: grid; gap: 1.5rem; }
.why-sticky h2 { max-width: none; font-size: clamp(1.75rem, 1.1rem + 2.2vw, 2.75rem); }
.why-list { border-top: 1px solid var(--line-light); }
.why-list li { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 0.25rem 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line-light); }
@media (min-width: 48em) { .why-list li { grid-template-columns: 4.5rem minmax(0, 1fr); padding: 2rem 0; } }
.why-list .num { grid-row: 1 / span 2; font-family: var(--display); font-weight: 800; font-size: 1.75rem; letter-spacing: -0.02em; color: var(--orange-deep); line-height: 1; }
.why-list h3 { font-size: 1.25rem; }
.why-list p { color: var(--ink-2); max-width: 34rem; }

/* Sådan fungerer det */
.how { background: var(--white); border-top: 1px solid var(--line-light); }
.steps { display: grid; gap: 2.5rem; counter-reset: step; position: relative; }
@media (min-width: 48em) { .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.step { position: relative; display: grid; gap: 0.75rem; padding-top: 1.75rem; border-top: 2px solid var(--line-light); }
.step::before { content: ""; position: absolute; top: -2px; left: 0; width: 4rem; height: 2px; background: var(--orange); }
.step .num { font-family: var(--display); font-weight: 800; font-size: 3rem; letter-spacing: -0.03em; line-height: 1; color: var(--navy); }
.step h3 { font-size: 1.1875rem; text-transform: uppercase; letter-spacing: 0.02em; }
.step p { color: var(--ink-2); }

/* Hele Danmark */
.coverage { background: var(--navy); color: var(--on-dark); overflow: hidden; }
.coverage-grid { display: grid; gap: 3rem; }
@media (min-width: 64em) { .coverage-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; align-items: center; } }
.coverage-copy { display: grid; gap: 1.5rem; }
.coverage-copy h2 { max-width: 12ch; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li { font-family: var(--display); font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.55rem 0.85rem; border: 1px solid var(--line-dark); color: var(--on-dark-muted); }
.tags li:first-child { border-color: var(--orange); color: var(--orange); }
.map { position: relative; width: 100%; max-width: 36rem; justify-self: center; }
.map svg.land { width: 100%; height: auto; color: var(--navy-3); display: block; }
.map .pins { position: absolute; inset: 0; pointer-events: none; }
.map .pins svg { width: 100%; height: 100%; display: block; overflow: visible; }
.map .pin-group { pointer-events: auto; cursor: default; }
.map .pin { fill: var(--orange); }
.map .pin-ring { fill: none; stroke: var(--orange); stroke-width: 2; opacity: 0.6; }
.map .pin-label { font-family: var(--display); font-weight: 600; font-size: 22px; fill: var(--white); letter-spacing: 0.04em; text-anchor: middle; }
.map .pin-city, .map .pin { stroke: transparent; stroke-width: 24px; }
.map .pin-city { fill: var(--on-dark-muted); transition: fill 0.15s ease; }
.map .pin-group:hover .pin-city { fill: var(--orange); }
.map .pin-tip { opacity: 0; transition: opacity 0.15s ease; pointer-events: none; }
.map .pin-group:hover .pin-tip { opacity: 1; }
.map .pin-tip rect { fill: var(--off); }
.map .pin-tip text { font-family: var(--display); font-weight: 600; font-size: 17px; fill: var(--navy); text-anchor: middle; }

/* Kontakt */
.contact { position: relative; isolation: isolate; background: var(--charcoal); color: var(--on-dark); overflow: hidden; }
.contact-media { position: absolute; inset: 0; z-index: -1; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.22; }
.contact-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17, 20, 24, 0.55) 0%, rgba(17, 20, 24, 0.15) 50%, rgba(17, 20, 24, 0.7) 100%); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 64em) { .contact-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; align-items: start; } }
.contact-copy { display: grid; gap: 1.5rem; }
.contact-copy h2 { max-width: 10ch; }
.contact-direct { display: grid; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line-char); }
.contact-direct a { text-decoration: none; }
.contact-direct .phone { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.contact-direct .phone:hover { color: var(--orange); }
.contact-direct .mail { font-size: 1.125rem; font-weight: 600; color: var(--orange); }
.contact-direct .mail:hover { text-decoration: underline; }
.contact-direct .hours { color: var(--on-dark-muted); font-size: 0.9375rem; }

.form-card { background: var(--white); color: var(--ink); padding: 1.75rem; border-radius: var(--radius); border-top: 4px solid var(--orange); }
@media (min-width: 48em) { .form-card { padding: 2.5rem; } }
.form-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.form-card .note { color: var(--ink-2); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; gap: 1.125rem; }
@media (min-width: 40em) { .form-grid { grid-template-columns: repeat(2, 1fr); } .field-full { grid-column: 1 / -1; } }
.field { display: grid; gap: 0.375rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field label .req { color: var(--orange-deep); }
.field input, .field select, .field textarea { width: 100%; min-height: 3.125rem; padding: 0.75rem 0.875rem; font: inherit; font-size: 1rem; color: var(--ink); background: var(--off); border: 1px solid var(--line-light); border-radius: var(--radius); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.field textarea { min-height: 7rem; resize: vertical; }
.field select { appearance: auto; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.15); background: var(--white); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field .error { display: none; color: var(--error); font-size: 0.875rem; font-weight: 500; }
.field.has-error .error { display: block; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: grid; gap: 0.75rem; margin-top: 0.5rem; }
.form-actions .fine { color: var(--ink-2); font-size: 0.875rem; }
.form-actions .fine a { color: var(--navy); }
.form-status { display: none; margin-top: 1rem; padding: 1rem 1.125rem; border-radius: var(--radius); font-size: 0.9375rem; line-height: 1.5; }
.form-status.is-error { display: block; background: #FBEAE7; color: #7A1B12; border: 1px solid #F0C4BD; }
.form-status.is-error a { color: #7A1B12; font-weight: 600; }
.form-success { display: none; padding: 2rem 0; }
.form-success.is-visible { display: grid; gap: 1rem; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--ink-2); }
.form-card.is-sent form { display: none; }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--on-dark); border-top: 1px solid var(--line-char); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 48em) { .footer-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr); gap: 3rem; } }
.footer-brand { display: grid; gap: 1.25rem; align-content: start; }
.footer-brand img { height: 3rem; width: auto; }
.footer-brand address { font-style: normal; color: var(--on-dark-muted); font-size: 0.9375rem; line-height: 1.7; }
.footer-col h3 { font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a { text-decoration: none; font-weight: 500; }
.footer-col a:hover { color: var(--orange); }
.footer-col .phone { font-family: var(--display); font-weight: 700; font-size: 1.375rem; font-variant-numeric: tabular-nums; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-char); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 1.5rem; color: var(--on-dark-muted); font-size: 0.875rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* Mobil bund-CTA */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1.4fr; gap: 0.5rem; padding: 0.625rem var(--gutter) calc(0.625rem + env(safe-area-inset-bottom)); background: var(--navy); border-top: 1px solid var(--line-dark); transition: transform 0.25s ease; }
.mobile-bar .btn { min-height: 3rem; padding: 0 1rem; font-size: 0.875rem; }
.mobile-bar.is-hidden { transform: translateY(110%); }
@media (min-width: 48em) { .mobile-bar { display: none; } }

/* Afsløring ved scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.trades-grid .reveal:nth-child(2), .steps .reveal:nth-child(2), .strip-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.trades-grid .reveal:nth-child(3), .steps .reveal:nth-child(3), .strip-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.trades-grid .reveal:nth-child(4), .strip-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Underside (privatlivspolitik) */
.page-hero { background: var(--navy); color: var(--on-dark); padding: calc(var(--nav-h) + 4rem) 0 3.5rem; }
.page-hero h1 { font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); }
.prose { padding-block: var(--section); }
.prose .text { display: grid; gap: 1rem; }
.prose h2 { font-size: 1.5rem; text-transform: none; letter-spacing: -0.01em; margin-top: 1.5rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; display: grid; gap: 0.35rem; }
.prose a { color: var(--orange-deep); }

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