/* ================================================================
   VISIR CONSULTING — style.css
   Ingen eksterne afhængigheder. Alt serveres fra dette repo.
   ================================================================ */

/* ----------------------------------------------------------------
   1. FONTE
   Space Grotesk (overskrifter, priser, tal) — SIL Open Font License
   Merriweather (brødtekst) — SIL Open Font License
   Begge fonter er selvhostede i /fonts/. Se fonts/README.md
   for download-instruktioner.
   ---------------------------------------------------------------- */

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/Merriweather-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ----------------------------------------------------------------
   2. DESIGNVARIABLER
   ---------------------------------------------------------------- */

:root {
  /* Farver */
  --clr-bg:           #F5F4F0;  /* kalkstensgrå/havre */
  --clr-text:         #2A2A28;  /* mørk skifer */
  --clr-brand:        #1C352D;  /* dyb skovfyr — logo, nav, sektionsmarkører */
  --clr-accent:       #B85B44;  /* brændt tegl — KUN CTA-knapper og prisfremhævning */
  --clr-border:       rgba(42, 42, 40, 0.15);
  /* Solid approksimation af --clr-border på --clr-bg baggrund.
     Bruges til gap-trik i grids: grid-background sættes til denne farve,
     gap: 1px giver "gratis" indre grænselinjer uden nth-child-selektor-magi. */
  --clr-border-solid: #D7D6D2;
  --clr-brand-faint:  rgba(28, 53, 45, 0.05);

  /* Typografi */
  --ff-heading: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:    'Merriweather', Georgia, 'Times New Roman', serif;

  /* Afstand (4-punkts system) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w:        1020px;
  --max-w-narrow: 700px;
  --border:       1px solid var(--clr-border);
}

/* ----------------------------------------------------------------
   3. RESET
   ---------------------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------------------------
   4. BASIS
   ---------------------------------------------------------------- */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clr-brand);
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-brand);
}

h1 { font-size: clamp(1.875rem, 4.5vw, 2.875rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); margin-bottom: var(--sp-8); }
h3 { font-size: 1.0625rem; }

p {
  margin-bottom: var(--sp-4);
}

p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: var(--sp-6);
}

li {
  margin-bottom: var(--sp-2);
}

li:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   5. LAYOUT
   ---------------------------------------------------------------- */

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

/* Springer til indhold for tastaturbrugere */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-brand);
  color: var(--clr-bg);
  font-family: var(--ff-heading);
  font-size: 0.875rem;
  padding: var(--sp-2) var(--sp-4);
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--sp-2);
}

/* ----------------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------------- */

.site-header {
  background-color: var(--clr-brand);
}

.site-nav {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-4) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.nav-logo {
  text-decoration: none;
  color: var(--clr-bg);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--clr-bg);
  opacity: 0.88;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  align-items: center;
}

.nav-links li {
  margin-bottom: 0;
}

.nav-links a {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(245, 244, 240, 0.8);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.12s;
}

.nav-links a:hover {
  color: var(--clr-bg);
}

.nav-links a[aria-current="page"] {
  color: var(--clr-bg);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ----------------------------------------------------------------
   7. WORDMARK / LOGO
   "VISIR" i versaler med tynd horisontal linje over toppen
   af bogstaverne. "CONSULTING" i markant mindre størrelse.
   ---------------------------------------------------------------- */

.wordmark {
  display: inline-flex;
  flex-direction: column;
  user-select: none;
  line-height: 1;
}

.wordmark__visir {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  line-height: 1;
  position: relative;
  padding-top: 7px;
}

/* Tynd linje over bogstavernes top */
.wordmark__visir::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background-color: currentColor;
}

.wordmark__consulting {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.45rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
  opacity: 0.75;
}

/* Hero-størrelse */
.wordmark--hero .wordmark__visir {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  padding-top: clamp(10px, 2vw, 18px);
}

.wordmark--hero .wordmark__visir::before {
  height: 2.5px;
}

.wordmark--hero .wordmark__consulting {
  font-size: clamp(0.6rem, 1.4vw, 1.0625rem);
  letter-spacing: 0.45em;
  margin-top: 10px;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   8. HERO (forsiden)
   ---------------------------------------------------------------- */

.hero {
  padding-block: var(--sp-24) var(--sp-20);
  border-bottom: var(--border);
  text-align: center;
}

.hero .wordmark {
  align-items: center;
  color: var(--clr-brand);
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.hero__tagline {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.3125rem);
  color: var(--clr-text);
  letter-spacing: 0.01em;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   9. SEKTION-BASIS
   ---------------------------------------------------------------- */

.section {
  padding-block: var(--sp-16);
  border-bottom: var(--border);
}

.section--shaded {
  background-color: var(--clr-brand-faint);
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-brand);
  opacity: 0.55;
  margin-bottom: var(--sp-4);
  display: block;
}

/* ----------------------------------------------------------------
   10. INTRODUKTIONSTEKST
   ---------------------------------------------------------------- */

.intro .container--narrow p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   11. FORDELE (3 kolonner)
   ---------------------------------------------------------------- */

/* Gap-trik: grid-baggrund = borderfarve, gap: 1px = grænselinje */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
}

.benefit {
  background-color: var(--clr-bg);
  padding: var(--sp-8);
}

.benefit h3 {
  font-size: 1.0625rem;
  color: var(--clr-brand);
  margin-bottom: var(--sp-4);
}

.benefit p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   12. PRISBLOK
   ---------------------------------------------------------------- */

.price-box {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
  max-width: 580px;
  margin-inline: auto;
}

.price-amount {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--clr-accent);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
}

.price-vat {
  font-size: 0.38em;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.05em;
  vertical-align: 0.25em;
  opacity: 0.7;
}

.price-desc {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--clr-text);
  opacity: 0.75;
  max-width: 46ch;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   13. NEUTRALITET-SEGL
   Cirkulært stempel-udseende med ydre streg og indre stiplet ring.
   ---------------------------------------------------------------- */

.neutralitet-wrap {
  display: flex;
  justify-content: center;
}

.neutralitet-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 2px solid var(--clr-brand);
  position: relative;
  text-align: center;
  flex-shrink: 0;
}

/* Indre stiplet ring */
.neutralitet-badge::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px dashed rgba(28, 53, 45, 0.35);
}

.neutralitet-badge__inner {
  position: relative;
  z-index: 1;
  padding: var(--sp-3);
}

.neutralitet-badge__pct {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.neutralitet-badge__title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--clr-brand);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
  margin-bottom: var(--sp-3);
}

.neutralitet-badge__sub {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  color: var(--clr-text);
  opacity: 0.7;
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   14. CTA-KNAP
   Accent-farve KUN her og ved prisfremhævning.
   Ingen rundede hjørner.
   ---------------------------------------------------------------- */

.btn-cta {
  display: inline-block;
  background-color: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  padding: 0.875rem 2.5rem;
  border: 2px solid var(--clr-accent);
  transition: background-color 0.12s, color 0.12s;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--clr-accent);
}

.cta-section .container {
  text-align: center;
}

/* ----------------------------------------------------------------
   15. SIDEOVERSKRIFT (indre sider)
   ---------------------------------------------------------------- */

.page-header {
  padding-block: var(--sp-16) var(--sp-10);
  border-bottom: var(--border);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: var(--sp-4);
}

.page-header .lead {
  font-family: var(--ff-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.75;
  max-width: 60ch;
}

/* ----------------------------------------------------------------
   16. YDELSER — NIVEAU-HEADER
   ---------------------------------------------------------------- */

.level-header {
  margin-bottom: var(--sp-10);
}

.level-header h2 {
  margin-bottom: var(--sp-4);
}

.level-price {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--clr-accent);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}

.level-price span {
  font-size: 0.4em;
  font-weight: 500;
  vertical-align: 0.3em;
  color: var(--clr-text);
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.level-meta {
  font-family: var(--ff-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.65;
}

/* ----------------------------------------------------------------
   17. KONTROLLISTER — 3×3 GRID
   Gap-trik giver grænselinjer uden nth-child-selektor-cirkus.
   ---------------------------------------------------------------- */

.controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
}

@media (max-width: 600px) {
  .controls-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 860px) {
  .controls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.control-item {
  background-color: var(--clr-bg);
  padding: var(--sp-6);
}

.control-num {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--clr-accent);
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin-bottom: var(--sp-2);
  display: block;
}

.control-item h3 {
  font-size: 0.9375rem;
  color: var(--clr-brand);
  margin-bottom: var(--sp-2);
}

.control-item p {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   18. ABONNEMENTSBOKS
   ---------------------------------------------------------------- */

.subscription-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
}

@media (max-width: 560px) {
  .subscription-box {
    grid-template-columns: 1fr;
  }
}

.subscription-price {
  background-color: var(--clr-bg);
  text-align: center;
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.subscription-price__amount {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--clr-accent);
  line-height: 1;
  display: block;
}

.subscription-price__unit {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.6;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.06em;
}

.subscription-details {
  background-color: var(--clr-bg);
  padding: var(--sp-8);
}

.subscription-details h3 {
  font-size: 1.125rem;
  margin-bottom: var(--sp-4);
}

.subscription-details ul {
  margin-top: var(--sp-4);
}

/* ----------------------------------------------------------------
   19. FØR / EFTER
   ---------------------------------------------------------------- */

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
}

@media (max-width: 580px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}

.before-after__side {
  background-color: var(--clr-bg);
  padding: var(--sp-8);
}

.before-after__side--after {
  background-color: var(--clr-brand-faint);
}

.before-after__tag {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
}

.before-after__side--before .before-after__tag {
  color: var(--clr-text);
  opacity: 0.45;
}

.before-after__side--after .before-after__tag {
  color: var(--clr-brand);
  opacity: 0.7;
}

.before-after__side h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-6);
}

.before-after__side--before h3 {
  color: var(--clr-text);
}

.before-after__side ul {
  list-style: none;
  padding: 0;
}

.before-after__side li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  font-size: 0.9375rem;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
}

.before-after__side li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.before-after__side--before li::before {
  content: '–';
  flex-shrink: 0;
  color: var(--clr-text);
  opacity: 0.35;
  font-family: var(--ff-heading);
  font-weight: 500;
}

.before-after__side--after li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--clr-brand);
  font-family: var(--ff-heading);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   20. OM-SIDEN — LAYOUT
   ---------------------------------------------------------------- */

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

@media (max-width: 720px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

/* Billedplaceholder — kommentér i om.html, hvor billedet indsættes */
.portrait-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  background-color: var(--clr-brand-faint);
  border: 1px solid var(--clr-border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.portrait-placeholder__label {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--clr-text);
  opacity: 0.35;
  padding: var(--sp-4);
  line-height: 1.6;
}

.about-text h2 {
  margin-bottom: var(--sp-6);
}

.about-text p + h2 {
  margin-top: var(--sp-10);
}

/* ----------------------------------------------------------------
   21. KONTAKTSIDEN
   ---------------------------------------------------------------- */

.contact-block {
  border: 1px solid var(--clr-border-solid);
  padding: var(--sp-8);
  max-width: 500px;
}

.contact-block dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3) var(--sp-8);
  align-items: baseline;
}

.contact-block dt {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-brand);
  opacity: 0.6;
  white-space: nowrap;
}

.contact-block dd {
  font-size: 1rem;
  margin-left: 0;
}

.contact-block dd a {
  color: var(--clr-brand);
  font-weight: 500;
}

.contact-note {
  margin-top: var(--sp-12);
  max-width: 55ch;
  font-size: 0.9375rem;
  opacity: 0.7;
  font-style: italic;
}

/* ----------------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------------- */

.site-footer {
  background-color: var(--clr-brand);
  color: var(--clr-bg);
  padding-block: var(--sp-8);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.site-footer p {
  font-family: var(--ff-heading);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--clr-bg);
  opacity: 1;
}

.site-footer a:hover {
  color: var(--clr-bg);
  opacity: 0.85;
}

/* ----------------------------------------------------------------
   23. HJÆLPEKLASSER
   ---------------------------------------------------------------- */

.text-center { text-align: center; }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mt-16 { margin-top: var(--sp-16); }

/* ----------------------------------------------------------------
   24. SEKUNDÆR KNAP (outline-stil)
   ---------------------------------------------------------------- */

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--clr-brand);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  padding: 0.875rem 2.5rem;
  border: 2px solid var(--clr-brand);
  transition: background-color 0.12s, color 0.12s;
}

.btn-secondary:hover {
  background-color: var(--clr-brand);
  color: var(--clr-bg);
}

/* ----------------------------------------------------------------
   25. HERO — OPDATERET TIL NY STRUKTUR
   (H1 tagline er nu et langt udsagn, ikke en kort strap)
   ---------------------------------------------------------------- */

.hero__tagline {
  font-size: clamp(1.375rem, 3.5vw, 2.125rem);
  font-weight: 700;
  max-width: 24ch;
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--clr-text);
  max-width: 60ch;
  margin-inline: auto;
  margin-top: var(--sp-6);
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0.78;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-10);
}

.hero-micro {
  font-family: var(--ff-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.48;
  margin-top: var(--sp-4);
  text-align: center;
}

/* ----------------------------------------------------------------
   26. PROCES — 4 TRIN
   ---------------------------------------------------------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
  margin-top: var(--sp-8);
}

@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  background-color: var(--clr-bg);
  padding: var(--sp-6);
}

.process-step__week {
  font-family: var(--ff-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  opacity: 0.7;
  margin-bottom: var(--sp-3);
  display: block;
}

.process-step__num {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--clr-brand);
  opacity: 0.09;
  line-height: 1;
  margin-bottom: var(--sp-3);
  user-select: none;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: var(--sp-3);
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   27. TILLIDS-BLOK / AUTORITETSCITAT
   ---------------------------------------------------------------- */

.trust-block {
  border-left: 3px solid var(--clr-brand);
  padding-left: var(--sp-8);
  max-width: 58ch;
}

.trust-block p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.trust-block cite {
  display: block;
  margin-top: var(--sp-4);
  font-family: var(--ff-heading);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-brand);
  opacity: 0.75;
}

/* ----------------------------------------------------------------
   28. PRISSIDEN
   ---------------------------------------------------------------- */

.price-hero {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
}

.price-hero .price-amount {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: var(--sp-2);
}

.price-period {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--clr-text);
  opacity: 0.55;
  display: block;
  margin-top: var(--sp-2);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--clr-border-solid);
  border: 1px solid var(--clr-border-solid);
  margin-top: var(--sp-8);
}

@media (max-width: 580px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
}

.inclusions-col {
  background-color: var(--clr-bg);
  padding: var(--sp-8);
}

.inclusions-col--excluded {
  background-color: var(--clr-brand-faint);
}

.inclusions-col h3 {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: var(--border);
}

.inclusions-col ul {
  list-style: none;
  padding: 0;
}

.inclusions-col li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  font-size: 0.9375rem;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
}

.inclusions-col li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.inclusions-col--included li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--clr-brand);
  font-family: var(--ff-heading);
  font-weight: 700;
}

.inclusions-col--excluded li::before {
  content: '–';
  flex-shrink: 0;
  color: var(--clr-text);
  opacity: 0.35;
  font-family: var(--ff-heading);
  font-weight: 500;
}

.guarantee-box {
  border: 1px solid var(--clr-border-solid);
  border-left: 3px solid var(--clr-brand);
  padding: var(--sp-8);
  margin-top: var(--sp-12);
}

.guarantee-box h3 {
  margin-bottom: var(--sp-4);
}

.guarantee-box p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.guarantee-box p + p {
  margin-top: var(--sp-4);
  font-size: 0.875rem;
  opacity: 0.65;
  font-style: italic;
}

/* ----------------------------------------------------------------
   29. "IKKE FOR"-AFSNIT (produktet.html)
   ---------------------------------------------------------------- */

.not-for-box {
  border: 1px solid var(--clr-border-solid);
  padding: var(--sp-8);
  background-color: var(--clr-brand-faint);
}

.not-for-box h2 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-6);
}

.not-for-box ul {
  list-style: none;
  padding: 0;
}

.not-for-box li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.not-for-box li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.not-for-box li::before {
  content: '×';
  flex-shrink: 0;
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-text);
  opacity: 0.38;
}

/* ----------------------------------------------------------------
   30. SEKTION-LINK ("Se den fulde gennemgang →")
   ---------------------------------------------------------------- */

.section-link {
  display: inline-block;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--clr-brand);
  text-decoration: none;
  margin-top: var(--sp-8);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--clr-brand);
  padding-bottom: 2px;
  transition: opacity 0.12s;
}

.section-link:hover {
  opacity: 0.7;
  color: var(--clr-brand);
}

/* ----------------------------------------------------------------
   31. BOOKING-SEKTION (kontakt.html)
   ---------------------------------------------------------------- */

.booking-block {
  border: 1px solid var(--clr-border-solid);
  padding: var(--sp-10) var(--sp-8);
  max-width: 560px;
  margin-bottom: var(--sp-12);
}

.booking-block h2 {
  font-size: 1.375rem;
  margin-bottom: var(--sp-4);
}

.booking-block p {
  font-size: 0.9375rem;
  margin-bottom: var(--sp-8);
  max-width: 44ch;
}

.booking-micro {
  font-family: var(--ff-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text);
  opacity: 0.5;
  margin-top: var(--sp-4);
}
