/* ============================================================
   AKTIV BILSYN — design tokens
   Direction: dark, editorial, photography-led — grounded in the
   real brand (the orange car-mark + anthracite signage on the
   Rødovre building) and in the client's own reference for tone
   (dark charcoal sections, dimmed background photography, an
   italic serif used sparingly against a clean grotesk, thin
   hairline dividers, underlined arrow links).
   ============================================================ */

:root {
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  /* Ink — the real anthracite signage color, dominant across the site */
  --ink: #1d2023;
  --ink-2: #292d31;
  --ink-3: #34383d;
  --ink-rgb: 29, 32, 35;

  /* Paper — warm off-white, used for light contrast sections only */
  --paper: #f7f5f1;
  --paper-2: #ece8e0;
  --paper-rgb: 247, 245, 241;

  /* The real brand orange, sampled from the Aktiv Bilsyn car-mark */
  --stamp: #e2652f;
  --stamp-dark: #c14f20;
  --stamp-light: #ee8a5b;
  --stamp-rgb: 226, 101, 47;

  --approved: #4a9b6e;
  --approved-dark: #367a53;

  --steel: #918177;
  --line-on-ink: rgba(247, 245, 241, 0.12);
  --line-on-ink-strong: rgba(247, 245, 241, 0.22);
  --line-on-paper: rgba(29, 32, 35, 0.1);
  --line-on-paper-strong: rgba(29, 32, 35, 0.18);

  --radius: 6px;
  --radius-lg: 10px;
  --container: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);

  /* Brushed-metal surface — echoes the anthracite cladding panels
     on the real building. A diagonal sheen + fine brushed grain
     over a deeper multi-stop gradient, not a flat fill. */
  --metal-surface:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 3px),
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(122deg, #2a2d31 0%, #35393e 14%, #17191c 34%, #3a3f45 52%, #131517 70%, #2f3338 86%, #1a1c1f 100%);
  --metal-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 60px 90px -60px rgba(0, 0, 0, 0.65),
    inset 0 -60px 90px -60px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

:focus-visible {
  outline: 3px solid var(--stamp);
  outline-offset: 3px;
}

/* ── eyebrow: a quiet uppercase label, no pill/border chrome ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stamp);
  margin: 0 0 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 0.9em 1.6em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--stamp);
  color: #fff8f0;
  box-shadow: 0 10px 24px -8px rgba(var(--stamp-rgb), 0.55);
}
.btn-primary:hover {
  background: var(--stamp-dark);
  box-shadow: 0 14px 28px -8px rgba(var(--stamp-rgb), 0.62);
  transform: translateY(-1px);
}
.btn-ghost-light {
  border-color: var(--line-on-ink-strong);
  color: var(--paper);
  background: transparent;
}
.btn-ghost-light:hover {
  border-color: var(--paper);
  background: rgba(245, 241, 230, 0.08);
}
.btn-ghost-dark {
  border-color: var(--line-on-paper-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost-dark:hover {
  border-color: var(--ink);
  background: rgba(16, 27, 45, 0.05);
}
.btn-text {
  padding: 0.3em 0;
  font-weight: 700;
  border-bottom: 2px solid var(--stamp);
  border-radius: 0;
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 1.15em 2.1em;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 18px 34px -10px rgba(var(--stamp-rgb), 0.6);
}
/* Secondary action rendered as a plain underlined link, never
   competing with the one solid CTA on the page. */
.btn-plain {
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  padding: 0.9em 0.2em;
  border-bottom: 1px solid rgba(250, 248, 244, 0.4);
  transition: border-color 0.15s var(--ease);
}
.btn-plain:hover {
  border-color: var(--paper);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(var(--ink-rgb), 0.97);
  border-bottom: 1px solid var(--line-on-ink);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  background: linear-gradient(90deg, transparent, var(--stamp) 20%, var(--stamp-light) 50%, var(--stamp) 80%, transparent);
}
.site-header.is-scrolled::before {
  opacity: 0.85;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
  flex: none;
}
.brand-seal {
  width: 58px;
  height: 58px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(var(--stamp-rgb), 0.5));
}
.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-word em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(250, 248, 244, 0.55);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  position: relative;
  color: rgba(250, 248, 244, 0.78);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--stamp);
  transition: right 0.25s var(--ease);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--paper);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.lang-switch-opt {
  position: relative;
  display: flex;
  width: 22px;
  height: 16px;
  padding-bottom: 6px;
  opacity: 0.45;
  transition: opacity 0.15s var(--ease);
}
.lang-switch-opt svg {
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 2px;
}
.lang-switch-opt:hover {
  opacity: 0.8;
}
.lang-switch-opt.is-active {
  opacity: 1;
}
.lang-switch-opt.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--stamp);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-on-ink-strong);
  border-radius: var(--radius);
  color: var(--paper);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.menu-actions {
  display: none;
}
.menu-scrim {
  display: none;
}
.menu-panel-head,
.menu-close {
  display: none;
}
.menu-links {
  display: contents;
}
.nav-num {
  display: none;
}

@media (max-width: 940px) {
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .header-cta {
    visibility: hidden;
  }
  .main-nav {
    display: block;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 86vw;
    height: 100vh;
    background: var(--ink);
    box-shadow: 30px 0 60px rgba(0, 0, 0, 0.45);
    padding: 20px 22px;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .main-nav {
    transform: translateX(0);
    pointer-events: auto;
  }
  .menu-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--line-on-ink);
  }
  .menu-panel-head .brand-seal {
    width: 42px;
    height: 42px;
  }
  .menu-panel-head .brand-word {
    font-size: 17px;
  }
  .menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line-on-ink-strong);
    border-radius: var(--radius);
    background: none;
    color: var(--paper);
    cursor: pointer;
  }
  .menu-links {
    display: block;
  }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line-on-ink);
    font-size: 16px;
  }
  .nav-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--stamp-light);
    margin-right: 16px;
    letter-spacing: 0.04em;
  }
  .menu-scrim {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 11, 12, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  body.nav-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-actions {
    display: block;
    margin-top: 20px;
  }
  .menu-actions .btn-primary {
    margin-bottom: 10px;
  }
  .menu-actions-phone {
    display: block;
    text-align: center;
    padding: 12px 4px;
    color: var(--paper);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--line-on-ink-strong);
    border-radius: var(--radius);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-phone,
  .header-book {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-cta {
    gap: 8px;
  }
  .brand-word {
    font-size: 16px;
  }
  .brand-word em {
    display: none;
  }
  .brand-seal {
    width: 44px;
    height: 44px;
  }
}


/* ============================================================
   SECTIONS — alternate paper / paper-2 / ink, never two dark in a row
   ============================================================ */
.section {
  padding: 88px 0;
}
/* extra clearance where a section follows a diagonal clip-path cut,
   so content never sits inside the overlap zone of the seam */
.section-after-diagonal {
  padding-top: 132px;
}
.section-tight {
  padding: 64px 0;
}
.section-paper2 {
  background: var(--paper-2);
}
.section-ink {
  background: var(--metal-surface);
  box-shadow: var(--metal-shadow);
  color: var(--paper);
}
.section-ink .eyebrow {
  color: var(--stamp-light);
}
.section-header {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
}
.section-header p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--steel);
}
.section-ink .section-header p {
  color: rgba(245, 241, 230, 0.68);
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   THREAD — the one signature mark that recurs from top to bottom:
   the real car-face glyph from the Aktiv Bilsyn logo, flanked by
   hairlines, marking every section boundary on every page.
   ============================================================ */
.thread {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}
.thread .line {
  flex: 1;
  height: 1px;
  background: var(--line-on-paper-strong);
}
.thread.thread-ink .line {
  background: var(--line-on-ink-strong);
}
.thread-mark {
  width: 34px;
  height: 22px;
  object-fit: contain;
  flex: none;
}
.thread-wrap {
  padding: 0 20px;
}

/* ============================================================
   HERO — full-bleed real photography, heavily dimmed to dark
   editorial atmosphere (not a bright photo statement), headline
   set low-left over the image. Serif italic used once, for the
   one phrase that carries the promise.
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--metal-surface);
  box-shadow: var(--metal-shadow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.06);
  animation: heroZoom 16s var(--ease) forwards;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.58) 0%, rgba(var(--ink-rgb), 0.32) 22%, rgba(var(--ink-rgb), 0.42) 45%, rgba(var(--ink-rgb), 0.88) 100%),
    linear-gradient(100deg, rgba(var(--ink-rgb), 0.7) 0%, rgba(var(--ink-rgb), 0.1) 55%);
}
@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 220px 0 64px;
}
.hero-copy {
  max-width: 800px;
  opacity: 0;
  animation: heroRise 0.9s var(--ease) 0.2s forwards;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy .eyebrow {
  color: var(--stamp-light);
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}
.hero h1 .serif,
.page-hero h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: inline;
}
.hero-lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.78);
  max-width: 50ch;
  font-family: var(--font-body);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 248, 244, 0.68);
}
.hero-stats span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: var(--stamp-light);
}

@media (max-width: 700px) {
  .hero {
    min-height: 78vh;
  }
  .hero-inner {
    padding: 140px 0 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
    transform: scale(1);
  }
}

/* ============================================================
   SERVICES — clean card grid, generous padding, soft shadow on hover
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -24px rgba(23, 25, 28, 0.18);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--stamp-rgb), 0.08);
  color: var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: 20px;
}
.service-card p {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.55;
}
.service-card-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stamp);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ============================================================
   SERVICE ROWS — big, confident, numbered index rows. A real
   sequence through the offering, not a decorative grid: huge
   type carries the weight, a circular arrow fills solid orange
   and kicks on hover, a faint scanline sweeps in behind it.
   ============================================================ */
.feature-section {
  position: relative;
  background: var(--metal-surface);
  box-shadow: var(--metal-shadow);
  color: var(--paper);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 0 100%);
  margin-bottom: -44px;
  z-index: 2;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.3));
}
.feature-head {
  position: relative;
  z-index: 1;
  padding: 88px 0 0;
}
.section-marker {
  display: flex;
  justify-content: space-between;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line-on-ink);
  color: rgba(250, 248, 244, 0.45);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.services-title-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 24px;
  align-items: end;
  padding: 48px 0 56px;
}
.services-title-grid .eyebrow {
  margin: 0;
}
.services-title-grid h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 58px);
}
.services-title-grid .lead {
  margin-top: 14px;
  color: rgba(250, 248, 244, 0.64);
  font-size: 15.5px;
  max-width: 40ch;
}
.service-list {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line-on-ink);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1.15fr 1fr 56px;
  align-items: center;
  gap: 28px;
  min-height: 152px;
  padding: 0 4px;
  border-top: 1px solid var(--line-on-ink);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(250, 248, 244, 0.025) 3px, rgba(250, 248, 244, 0.025) 4px);
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-row:hover::before {
  opacity: 1;
}
.service-row:hover {
  padding: 0 22px;
  background: var(--metal-surface);
  box-shadow: var(--metal-shadow);
}
.service-row .row-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stamp-light);
}
.service-row h3 {
  margin: 0;
  min-width: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.service-row h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--stamp-light);
}
.service-row p {
  margin: 0;
  min-width: 0;
  color: rgba(250, 248, 244, 0.6);
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.row-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.row-arrow svg {
  width: 19px;
  height: 19px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-row:hover .row-arrow {
  background: var(--stamp);
  border-color: var(--stamp);
  color: #fff8f0;
}
.service-row:hover .row-arrow svg {
  transform: rotate(-35deg) scale(1.12);
}

@media (max-width: 760px) {
  .services-title-grid {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 40px 1fr 50px;
    grid-template-areas:
      "num   .      arrow"
      "title title  title"
      "desc  desc   desc";
    gap: 10px 28px;
    min-height: 0;
    padding: 28px 4px;
  }
  .service-row .row-num {
    grid-area: num;
  }
  .service-row h3 {
    grid-area: title;
  }
  .service-row p {
    grid-area: desc;
    margin-top: 0;
  }
  .row-arrow {
    grid-area: arrow;
  }
}

/* ============================================================
   VISIT BAND — real facade photo, short full-bleed break
   ============================================================ */
.visit-band {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.visit-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.visit-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--ink-rgb), 0.88) 0%, rgba(var(--ink-rgb), 0.15) 55%);
}
.visit-band-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--paper);
}
.visit-band-caption h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
}
.visit-band-caption p {
  margin-top: 4px;
  font-size: 14.5px;
  color: rgba(250, 248, 244, 0.7);
}

/* ============================================================
   PROCESS STEPS (real sequence — numbering justified)
   ============================================================ */
/* ── Process rendered as a strip of torn ticket stubs — a real
   sequence, so numbering here is justified, not decorative. ── */
.stub-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stub-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--stamp);
  color: #fff8f0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
}
.stub h4 {
  margin-top: 18px;
  font-size: 19px;
  color: var(--paper);
}
.stub p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.6);
}

@media (max-width: 860px) {
  .stub-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-on-paper);
}
.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-on-paper);
  font-size: 15px;
}
.price-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
  background: var(--paper-2);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table td.price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
}
.price-table td.price.online {
  color: var(--stamp-dark);
  background: rgba(var(--stamp-rgb), 0.07);
}
.price-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--steel);
}
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

/* ── Pricing as a row list, extending the same big-type language
   as the services section — not a grid of pricing-tier cards. ── */
.price-list {
  border-top: 1px solid var(--line-on-paper);
}
.price-row {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1.3fr auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 0 6px;
  border-bottom: 1px solid var(--line-on-paper);
  transition: background 0.2s var(--ease);
}
.price-row:hover {
  background: rgba(var(--stamp-rgb), 0.04);
}
.price-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--stamp-rgb), 0.1);
  color: var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.price-row-icon svg {
  width: 20px;
  height: 20px;
}
.price-row h3 {
  min-width: 0;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}
.price-row-amounts {
  display: flex;
  align-items: baseline;
  gap: 20px;
  justify-self: end;
  text-align: right;
}
.price-row-amounts .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--stamp);
}
.price-row-amounts .amount small {
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
  margin-left: 4px;
}
.price-row-amounts .alt {
  font-size: 13px;
  color: var(--steel);
  white-space: nowrap;
}
.price-list-highlight {
  border-top: none;
}
.price-list-highlight .price-row {
  background: var(--ink);
  border-bottom-color: var(--line-on-ink);
  border-radius: var(--radius-lg);
  padding: 0 22px;
}
.price-list-highlight .price-row-icon {
  background: rgba(var(--stamp-rgb), 0.18);
  color: var(--stamp-light);
}
.price-list-highlight h3 {
  color: var(--paper);
}
.price-list-highlight .price-row-amounts .amount {
  color: var(--stamp-light);
}
.price-list-highlight .price-row-amounts .amount small {
  color: rgba(250, 248, 244, 0.6);
}

@media (max-width: 700px) {
  .price-row {
    grid-template-columns: 40px 1fr;
    row-gap: 8px;
    padding: 18px 4px;
    min-height: 0;
  }
  .price-row-amounts {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.review-stars {
  color: var(--stamp);
  font-size: 20px;
  letter-spacing: 2px;
}
.review-score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.04), 0 18px 30px -24px rgba(29, 32, 35, 0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.05), 0 26px 38px -22px rgba(29, 32, 35, 0.36);
}
.review-quote-mark {
  display: none;
}
.review-card p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}
.review-name {
  font-size: 13.5px;
  font-weight: 700;
}
.review-author .review-stars {
  font-size: 12px;
  color: var(--stamp);
}

@media (max-width: 940px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   VEHICLE TYPE ICON ROW
   ============================================================ */
.vehicle-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.vehicle-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 34px 10px 28px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  text-align: center;
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.04), 0 16px 30px -22px rgba(29, 32, 35, 0.35);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.vehicle-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.05), 0 26px 40px -22px rgba(29, 32, 35, 0.42);
}
.vehicle-chip .icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--stamp-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s var(--ease);
}
.vehicle-chip:hover .icon-ring {
  background: var(--stamp);
}
.vehicle-chip svg {
  width: 26px;
  height: 26px;
  color: var(--stamp);
  transition: color 0.22s var(--ease);
}
.vehicle-chip:hover svg {
  color: #fff8f0;
}
.vehicle-chip span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 860px) {
  .vehicle-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--line-on-paper);
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--line-on-paper);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 16.5px;
}
.faq-item summary::marker {
  content: "";
}
.faq-item summary .clause-num {
  display: none;
}
.faq-item summary .clause-title {
  flex: 1;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--stamp);
  flex: none;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 4px 22px;
  color: var(--steel);
  font-size: 15.5px;
  max-width: 62ch;
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band {
  background: var(--metal-surface);
  box-shadow: var(--metal-shadow);
  color: var(--paper);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--stamp);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: 640px;
  height: 640px;
  margin-left: -320px;
  background: radial-gradient(circle, rgba(var(--stamp-rgb), 0.28), transparent 68%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 20ch;
  margin: 0 auto;
}
.cta-band p {
  margin: 16px auto 0;
  color: rgba(245, 241, 230, 0.7);
  max-width: 52ch;
}
.cta-band .hero-cta-row {
  justify-content: center;
  margin-top: 30px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-on-ink-strong);
  color: rgba(245, 241, 230, 0.72);
  padding: 60px 0 28px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 5px 0;
  transition: color 0.15s var(--ease);
}
.footer-col a:hover {
  color: var(--paper);
}
.footer-brand p {
  margin-top: 12px;
  max-width: 38ch;
  color: rgba(245, 241, 230, 0.6);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: color 0.15s var(--ease);
}
.footer-contact a:hover {
  color: var(--stamp-light);
}
.footer-contact svg {
  width: 15px;
  height: 15px;
  color: var(--stamp-light);
  flex: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-ink);
  font-size: 13px;
  color: rgba(245, 241, 230, 0.5);
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

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

/* ============================================================
   GENERIC PAGE HERO (for sub-pages: bilsyn, priser, kontakt, etc.)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(100deg, rgba(var(--ink-rgb), 0.93) 0%, rgba(var(--ink-rgb), 0.78) 45%, rgba(var(--ink-rgb), 0.55) 100%),
    linear-gradient(0deg, rgba(var(--ink-rgb), 0.96) 0%, rgba(var(--ink-rgb), 0.7) 60%, rgba(var(--ink-rgb), 0.5) 100%),
    url("/images/synshal-indendoers.jpg");
  background-size: cover;
  background-position: center 62%;
  color: var(--paper);
  padding: 132px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-on-ink);
}
.page-hero .container {
  position: relative;
}
/* real aerial photo of the shared building — shown as a proper
   image in the page content instead, since forcing it through the
   wide/short hero band cropped both signs out of view */
.building-photo {
  margin: 8px 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-on-paper);
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.04), 0 22px 40px -26px rgba(29, 32, 35, 0.3);
}
.building-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.building-photo figcaption {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--steel);
  background: var(--paper);
  border-top: 1px solid var(--line-on-paper);
}
.page-hero .case-ref {
  position: absolute;
  top: 0;
  right: var(--container-pad, 0);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 230, 0.4);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(245, 241, 230, 0.55);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  max-width: 18ch;
}
.page-hero .lead {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(245, 241, 230, 0.72);
  max-width: 60ch;
}

/* ============================================================
   TWO-COL CONTENT LAYOUT (service / local pages)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.content-grid .prose h2 {
  font-size: 26px;
  margin-top: 40px;
}
.content-grid .prose h2:first-child {
  margin-top: 0;
}
.content-grid .prose p {
  margin-top: 14px;
  color: var(--ink);
  opacity: 0.85;
  font-size: 16px;
}
.content-grid .prose ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-grid .prose ul li {
  display: flex;
  gap: 10px;
  font-size: 15.5px;
}
.content-grid .prose ul li svg {
  width: 18px;
  height: 18px;
  color: var(--approved);
  flex: none;
  margin-top: 2px;
}
.side-card {
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.side-card h3 {
  font-size: 18px;
}
.side-card dl {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line-on-paper);
  padding-bottom: 10px;
}
.side-card dt {
  color: var(--steel);
}
.side-card dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.side-card .btn {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .side-card {
    position: static;
  }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13.5px;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line-on-paper-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--stamp);
  outline: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-note {
  font-size: 13px;
  color: var(--steel);
  margin-top: 4px;
}
.form-success {
  display: none;
  background: rgba(var(--approved), 0.1);
  border: 1px solid var(--approved);
  color: var(--approved-dark);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-body {
  padding: 24px;
}
.blog-card .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stamp-dark);
}
.blog-card h3 {
  margin-top: 10px;
  font-size: 19px;
}
.blog-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--steel);
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Featured post — for a single/lead article, a full-width row
   with real presence instead of one small card lost in a grid. ── */
.featured-post {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 56px;
  align-items: center;
  gap: 28px;
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.04), 0 22px 40px -26px rgba(29, 32, 35, 0.32);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(29, 32, 35, 0.05), 0 30px 50px -24px rgba(29, 32, 35, 0.4);
}
.featured-post-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--stamp-rgb), 0.1);
  color: var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.featured-post-icon svg {
  width: 26px;
  height: 26px;
}
.featured-post .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stamp-dark);
}
.featured-post h2 {
  margin-top: 8px;
  min-width: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  overflow-wrap: break-word;
}
.featured-post p {
  margin-top: 10px;
  min-width: 0;
  font-size: 15.5px;
  color: var(--steel);
  max-width: 56ch;
  overflow-wrap: break-word;
}
.featured-post .row-arrow {
  border-color: var(--line-on-paper-strong);
  color: var(--ink);
}
.featured-post:hover .row-arrow {
  background: var(--stamp);
  border-color: var(--stamp);
  color: #fff8f0;
}
.featured-post:hover .row-arrow svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .featured-post {
    grid-template-columns: 48px 1fr;
    padding: 28px 22px;
  }
  .featured-post .row-arrow {
    display: none;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(250, 248, 244, 0.6);
}
.article-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: var(--stamp-light);
}
.article-body {
  max-width: 700px;
}
.article-body h2 {
  font-size: 24px;
  margin-top: 36px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--ink);
  opacity: 0.85;
}
.article-body ul {
  margin-top: 14px;
  padding-left: 22px;
  list-style: disc;
}
.article-body li {
  margin-top: 8px;
  font-size: 16px;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0 !important;
}
.stack-gap-sm > * + * {
  margin-top: 8px;
}
.badge-approved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--approved-dark);
  background: rgba(58, 143, 95, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .section-tight {
    padding: 44px 0;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  border-top: 1px solid var(--line-on-ink-strong);
  padding: 18px 20px;
}
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  color: rgba(250, 248, 244, 0.82);
  font-size: 14px;
  line-height: 1.5;
  max-width: 640px;
}
.cookie-banner a {
  color: var(--stamp-light);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex: none;
}
@media (max-width: 560px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .btn {
    flex: 1;
  }
}
