/*
Theme Name: Din Hvide Handske
Theme URI: https://dinhvidehandske.dk
Author: Step Up Media
Description: Skræddersyet tema til Din Hvide Handske. Bygget ud fra XD-designet,
  uden eksterne kald, uden tracking og med selvhostede skrifttyper.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 8.0
Text Domain: dhh
*/

@import url("assets/fonts/fonts.css");

/* ==========================================================================
   Din Hvide Handske — stylesheet
   Designtokens er hentet fra XD-designet (CLEANMORE Webdesign) og tilpasset
   Din Hvide Handskes logo. Alt er mobile-first.
   ========================================================================== */

:root {
  /* Farver */
  --blue: #3a7cda;
  --blue-dark: #2c63b4;
  --blue-light: #eaf1fb;
  --ink: #1a1a1a;
  --ink-soft: #2b2b2b;
  --text: #565656;
  --muted: #707070;
  --line: #e3e3e3;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --gold: #ffd83a;

  /* Typografi */
  --font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Mål */
  --wrap: 1200px;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
  --shadow-lift: 0 12px 32px rgba(26, 26, 26, 0.14);
  --header-h: 84px;
}

/* --- Reset ------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); font-weight: 300; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

/* Tastaturfokus skal altid være synligt */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* --- Layout ------------------------------------------------------------ */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--blue); color: #fff; }
.section--dark { background: var(--ink); color: #cfcfcf; }
.section--blue h2,
.section--dark h2,
.section--blue h3,
.section--dark h3 { color: #fff; }

@media (min-width: 900px) { .section { padding: 104px 0; } }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { color: var(--muted); }
.section--blue .section-head p,
.section--dark .section-head p { color: rgba(255, 255, 255, 0.82); }

.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.section--blue .eyebrow,
.section--dark .eyebrow { color: var(--gold); }

.lead { font-size: 1.12rem; }

/* --- Knapper ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: #fff; color: #fff; }
.btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--dark { background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: #000; border-color: #000; }
.btn--wide { width: 100%; }

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 56px; height: 56px; }
.brand__name {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}
.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  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); }

.site-nav { display: none; }
.site-nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 8px 20px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-nav a {
  display: block;
  padding: 12px 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}
.site-nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.site-nav .btn { margin-top: 16px; width: 100%; border-bottom: 0; color: #fff; }

@media (min-width: 1040px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 30px; }
  .site-nav a {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
  }
  .site-nav a:hover { border-bottom-color: var(--blue); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--blue); }
  .site-nav .btn { margin-top: 0; width: auto; padding: 12px 24px; }
  .site-nav .btn:hover { border-bottom-color: var(--blue-dark); }
}

/* Faste kontaktknapper i højre kant (som i XD-designet) */
.quick-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.quick-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px 0 0 4px;
  transition: background 0.18s ease;
}
.quick-contact a:hover { background: var(--blue); }
.quick-contact svg { width: 20px; height: 20px; fill: currentColor; }
@media (min-width: 1040px) { .quick-contact { display: flex; } }

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Videoen vises kun på store skærme; mindre skærme nøjes med poster-billedet.
   js/main.js sætter først kilden på, når videoen faktisk skal bruges — så
   koster hero'en ikke 16 MB på mobildata. */
.hero__video { display: none; }
.hero__media.has-video .hero__video { display: block; }
.hero__media.has-video .hero__fallback { display: none; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 26, 36, 0.86) 0%, rgba(20, 26, 36, 0.62) 48%, rgba(20, 26, 36, 0.35) 100%);
}
/* Hero-teksten ligger i sidens indholdskolonne (.wrap) og flugter derfor
   med logoet i headeren. Læg ikke .wrap på selve .hero__inner igen — så
   centrerer den sig selv i vinduet og bryder flugten. */
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin-inline: 0; }
.hero h1 { color: #fff; margin-bottom: 0.35em; }
.hero h1 strong { display: block; font-weight: 900; }
.hero p { color: rgba(255, 255, 255, 0.9); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
/* De fire punkter skal kunne stå på én linje på desktop. Listen får derfor
   lov at bruge hele indholdskolonnen, mens overskrift og brødtekst stadig er
   begrænset af .hero__inner / .hero p. */
.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  width: max-content;
  max-width: 100%;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero__usps li::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 8px; }

/* Undersidernes kortere hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 72px 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 99, 180, 0.78);
}
.page-hero__inner { position: relative; z-index: 1; margin-inline: auto; max-width: 780px; }
.page-hero h1 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
}
.page-hero p { color: rgba(255, 255, 255, 0.92); margin: 0; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); }

/* --- Grid & kort ------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card ul { color: var(--muted); font-size: 0.95rem; }
.card__link {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.card__link::after { content: " →"; }
.card__icon { width: 64px; height: 64px; object-fit: contain; margin-bottom: 18px; }

/* Servicekort på blå baggrund (som i XD) */
.service-links { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .service-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-links { grid-template-columns: repeat(3, 1fr); } }
.service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}
.service-links a:hover { background: #fff; color: var(--blue); }
.service-links span[aria-hidden] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

/* --- Split-sektion ----------------------------------------------------- */
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--reverse .split__media { order: 2; }
}
.split__media img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); }
.split__body h2 { margin-top: 0; }

/* --- Proces ------------------------------------------------------------ */
.steps { display: grid; gap: 40px; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 20px;
  padding: 22px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}
.step h3 { font-weight: 400; font-size: 1.3rem; }
.step p { color: var(--muted); max-width: 34ch; margin-inline: auto; }

/* --- Tal / fakta ------------------------------------------------------- */
.facts { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}
.fact span { font-size: 0.95rem; color: var(--muted); }
.section--dark .fact span { color: rgba(255, 255, 255, 0.75); }
.section--dark .fact strong { color: var(--gold); }

/* --- Anmeldelser ------------------------------------------------------- */
.quotes { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { position: relative; padding-left: 56px; }
.quote::before {
  content: "”";
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}
.quote blockquote { margin: 0 0 20px; font-size: 1rem; }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.quote figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote cite { font-style: normal; font-weight: 700; color: var(--gold); display: block; }
.quote figcaption span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

/* --- Logobjælke -------------------------------------------------------- */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 72px; /* respektafstand omkring logoerne */
  padding: 36px 0;
}
/* Kundelogoer vises i deres egne farver, uskalerede i forholdet og uden
   filtre. Lyreco har en logopolitik, og gråtone, gennemsigtighed eller
   blend-modes ville ændre logoet i strid med den. Rør ikke ved dette. */
.logos img {
  max-height: 54px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* --- FAQ --------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: var(--muted); }

/* --- Kontakt / formular ------------------------------------------------ */
.contact-band { position: relative; overflow: hidden; color: #fff; }
.contact-band__media { position: absolute; inset: 0; z-index: 0; }
.contact-band__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 26, 36, 0.92) 0%, rgba(20, 26, 36, 0.7) 60%, rgba(20, 26, 36, 0.55) 100%);
}
.contact-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
  padding: 80px 0;
  grid-template-columns: 1fr;
}
@media (min-width: 950px) {
  .contact-band__inner { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}
.contact-band h2 { color: #fff; }
.contact-band p { color: rgba(255, 255, 255, 0.86); }
.contact-band strong { color: #fff; }

.contact-list { list-style: none; margin: 28px 0 0; padding: 0; }
.contact-list li { margin-bottom: 14px; }
.contact-list a { color: #fff; text-decoration: none; font-size: 1.05rem; }
.contact-list a:hover { text-decoration: underline; }
.contact-list span { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.form { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form { grid-template-columns: 1fr 1fr; } }
.form .field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) { border-color: #ff8a8a; }
.form__consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.form__consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.form__consent a { color: #fff; }
.form__note { grid-column: 1 / -1; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin: 0; }
.form .btn { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Formular på lys baggrund (kontaktsiden) */
.form--light .field label { color: var(--muted); }
.form--light .field input,
.form--light .field select,
.form--light .field textarea { background: #fff; border-color: var(--line); }
.form--light .form__consent { color: var(--muted); }
.form--light .form__consent a { color: var(--blue); }
.form--light .form__note { color: var(--muted); }

/* --- CTA-bånd ---------------------------------------------------------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  background: var(--blue);
  border-radius: var(--radius);
  color: #fff;
}
.cta-band h2 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.9rem); }
.cta-band p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.85); }

/* --- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #a9a9a9; padding: 72px 0 0; font-size: 0.95rem; }
.site-footer a { color: #d8d8d8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; } }
.site-footer h2 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-brand img { width: 76px; height: 76px; margin-bottom: 18px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
}
.social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid #2c2c2c;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #7d7d7d;
}

/* --- Diverse ----------------------------------------------------------- */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}
.section--blue .checklist li::before,
.section--dark .checklist li::before { color: var(--gold); }

.area-list { columns: 2; column-gap: 40px; }
@media (min-width: 700px) { .area-list { columns: 3; } }

.note {
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  color: var(--ink-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note p:last-child { margin-bottom: 0; }

.text-page { max-width: 780px; }
.text-page h2 { margin-top: 1.8em; }

/* ---- WordPress-specifikke tilføjelser ---------------------------------- */
.site-nav li { margin: 0; }
.site-nav .menu-item-cta > a,
.site-nav li.btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav .menu-item-cta > a:hover,
.site-nav li.btn > a:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
/* Aktiv side markeres med blå tekst — men ALDRIG på CTA-knappen.
   WordPress sætter også current-menu-item på "Få et tilbud", fordi den peger
   på /kontakt/#tilbud. Uden :not() blev knappens tekst blå på blå baggrund. */
.site-nav li:not(.menu-item-cta).current-menu-item > a,
.site-nav li:not(.menu-item-cta).current_page_item > a,
.site-nav li:not(.menu-item-cta).current-menu-ancestor > a { color: var(--blue); font-weight: 700; }

/* Knappens tekst skal være hvid i alle tilstande. */
.site-nav .menu-item-cta > a,
.site-nav .menu-item-cta > a:link,
.site-nav .menu-item-cta > a:visited,
.site-nav .menu-item-cta > a:hover,
.site-nav .menu-item-cta > a:focus,
.site-nav .menu-item-cta.current-menu-item > a { color: #fff; }

@media (min-width: 1040px) {
  .site-nav li:not(.menu-item-cta).current-menu-item > a,
  .site-nav li:not(.menu-item-cta).current_page_item > a { border-bottom-color: var(--blue); }
  .site-nav .menu-item-cta > a { border-bottom: 0; }
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
