/* ============================================================
   Privatim — production styles
   Logo-derived palette, euregio.net sibling-brand register.
   Single stylesheet; shared by homepage and every subpage.
   Stand: 2026-05-11
   ============================================================ */

:root {
  /* Brand palette — sampled from privatim.png logo */
  --navy:        #181860;
  --navy-deep:   #0F0F44;
  --green:       #1F7050;
  --gold:        #F0C000;
  --orange:      #F09018;
  --red:         #D04030;
  --purple:      #604890;

  /* Surfaces */
  --bg:               #FFFFFF;
  --bg-soft:          #F4F5FA;
  --bg-cool:          #EEF0F8;
  --ink:              #0A0E2E;
  --ink-soft:         #44486A;
  --ink-muted:        #8A8FA8;
  --hairline:         #DBDFEC;
  --hairline-strong:  #C4C9D8;

  --font:      "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
input, button, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  z-index: 100;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 0.75rem; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ---------- Two-row header ---------- */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
}
.brand a:hover { text-decoration: none; }
.brand img { display: block; height: 28px; width: auto; }
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.chip-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: transform 180ms var(--ease), filter 180ms var(--ease);
}
.chip:hover { transform: translateY(-1px); filter: brightness(1.05); text-decoration: none; }
.chip svg { width: 14px; height: 14px; }
.chip-green  { background: var(--green); }
.chip-gold   { background: var(--gold); color: #2a2200; }
.chip-red    { background: var(--red); }
.chip-purple { background: var(--purple); }

.mainbar {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.mainbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.5rem;
}
.mainnav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.mainnav a {
  color: rgba(255, 255, 255, 0.88);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.mainnav a:hover,
.mainnav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* Mobile brand label (visible only when nav collapses to hamburger) */
.mainbar-brand { display: none; }
.mainbar-brand a {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.mainbar-brand a:hover { color: var(--gold); text-decoration: none; }

/* Hamburger button (mobile only) */
.menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  transition: background 160ms var(--ease);
}
.menu-trigger:hover { background: rgba(255, 255, 255, 0.1); }
.menu-trigger:active { background: rgba(255, 255, 255, 0.18); }
.menu-trigger svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .mainnav { display: none; }
  .mainbar-brand { display: inline-block; }
  .menu-trigger { display: inline-flex; }
}

/* Tighter topbar on small screens (chips wrap and shrink) */
@media (max-width: 520px) {
  .topbar-inner { gap: 0.6rem; }
  .chip-row { gap: 0.35rem; width: 100%; justify-content: flex-end; }
  .chip { padding: 0.35rem 0.7rem; font-size: 0.76rem; }
}

/* ---------- Offcanvas drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
}
.drawer-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--navy-deep);
  color: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  overflow-y: auto;
  padding: 1.25rem 1.5rem 2rem;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drawer[data-open="true"] { transform: translateX(0); }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.drawer-brand:hover { color: var(--gold); text-decoration: none; }
.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  transition: background 160ms var(--ease);
}
.drawer-close:hover { background: rgba(255, 255, 255, 0.1); }
.drawer-close svg { width: 22px; height: 22px; }

.drawer nav { display: grid; }
.drawer nav a {
  padding: 0.95rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drawer nav a:hover { color: var(--gold); text-decoration: none; }
.drawer nav a[aria-current="page"] { color: var(--gold); }

.drawer-section {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.drawer .drawer-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.drawer-foot {
  margin-top: auto;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.drawer-foot a { color: rgba(255, 255, 255, 0.85); }

body.drawer-open { overflow: hidden; }

/* ---------- Homepage hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(96, 72, 144, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(31, 112, 80, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
  color: #fff;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 44rem;
  margin: 1.25rem auto 0;
}
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #2a2200; }
.btn-primary:hover { background: #FFD33A; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.btn-solid { background: var(--navy); color: #fff; }
.btn-solid:hover { background: var(--navy-deep); }

.trustline {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}
.trustline span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trustline svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Section structure ---------- */
section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.section-head h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-head p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

/* ---------- Service tiles ---------- */
.services { background: var(--bg-soft); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(24, 24, 96, 0.25);
  border-color: transparent;
}
.service-card h3 {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { text-decoration: none; }
.service-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 28rem;
}
.service-card .more {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.5rem;
  box-shadow: inset 0 -10px 24px rgba(0, 0, 0, 0.12);
}
.icon-circle svg { width: 28px; height: 28px; stroke-width: 1.6; }
.icon-green  { background: var(--green); }
.icon-gold   { background: var(--gold); color: #4a3a00; }
.icon-orange { background: var(--orange); }
.icon-purple { background: var(--purple); }

.badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-in-dev { background: rgba(31, 112, 80, 0.14); color: var(--green); }
.badge-planned { background: var(--bg-cool); color: var(--ink-muted); }

/* ---------- Comparison columns ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
}
.compare-head {
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.compare-good .compare-head { background: var(--green); }
.compare-bad  .compare-head { background: var(--red); }
.compare-body { padding: 1.5rem 1.5rem 1.75rem; }
.compare-body ul { list-style: none; padding: 0; }
.compare-body li {
  display: flex;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--hairline);
  color: var(--ink);
  font-size: 0.95rem;
}
.compare-body li:last-child { border-bottom: 0; }
.compare-body li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.compare-good svg { color: var(--green); }
.compare-bad  svg { color: var(--red); }

/* ---------- About / Why us ---------- */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.about-grid p + p { margin-top: 1rem; }
.about-grid strong { color: var(--ink); font-weight: 600; }
.about-pull {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-weight: 500;
}

/* ---------- CTA strip (homepage) ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--purple) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.cta-strip h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

/* ---------- Notify form (homepage CTA) ---------- */
form.notify {
  display: inline-flex;
  gap: 0.5rem;
  max-width: 32rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
form.notify input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 0;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
form.notify input[type="email"]::placeholder { color: var(--ink-muted); }
form.notify input[type="email"]:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
form.notify .helper {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
}
form.notify .helper a { color: var(--gold); }
form.notify .feedback {
  flex-basis: 100%;
  margin-top: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}
form.notify .feedback[data-visible="true"] { display: block; }
form.notify .feedback[data-state="success"] { background: rgba(31, 112, 80, 0.3); color: #fff; }
form.notify .feedback[data-state="error"]   { background: rgba(208, 64, 48, 0.3);  color: #fff; }

/* ---------- Page header (subpages) — navy band ---------- */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.5rem);
}
.page-header .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
}
.page-header .breadcrumb a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.page-header h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.page-header .tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  line-height: 1.5;
}
.page-header .status-row { margin-top: 1.5rem; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.status[data-state="planned"]::before { background: rgba(255, 255, 255, 0.55); }
.status[data-state="active"]::before { background: var(--gold); }

/* ---------- Page content (subpages) ---------- */
.page-content { padding-block: clamp(3rem, 6vw, 4.5rem); }
.prose { max-width: 38rem; color: var(--ink-soft); }
.prose p { font-size: 1.05rem; margin-bottom: 1.1rem; line-height: 1.65; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.1rem 1.1rem; padding: 0; color: var(--ink-soft); }
.prose ul li { margin-bottom: 0.4rem; }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--bg-cool);
  padding: 0.05em 0.35em;
  border-radius: 2px;
}
.prose a { color: var(--navy); border-bottom: 1px solid var(--hairline-strong); }
.prose a:hover { border-bottom-color: var(--navy); text-decoration: none; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.back-link:hover { color: var(--navy); text-decoration: none; }

/* ---------- Inline notify (subpages) ---------- */
form.notify-inline {
  margin-top: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 1.5rem;
  max-width: 38rem;
}
form.notify-inline legend {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding: 0;
}
form.notify-inline .field {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
form.notify-inline input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
form.notify-inline input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--navy);
}
form.notify-inline button[type="submit"] {
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}
form.notify-inline button[type="submit"]:hover { background: var(--navy-deep); transform: translateY(-1px); }
form.notify-inline .helper {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}
form.notify-inline .feedback {
  margin-top: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}
form.notify-inline .feedback[data-visible="true"] { display: block; }
form.notify-inline .feedback[data-state="success"] {
  background: rgba(31, 112, 80, 0.12);
  color: var(--ink);
  border-left: 3px solid var(--green);
}
form.notify-inline .feedback[data-state="error"] {
  background: rgba(208, 64, 48, 0.12);
  color: var(--ink);
  border-left: 3px solid var(--red);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
footer a { color: rgba(255, 255, 255, 0.8); }
footer a:hover { color: var(--gold); text-decoration: none; }
footer address {
  font-style: normal;
  line-height: 1.7;
}
footer address strong {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-bar {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bar .stand { font-family: var(--font-mono); }
.lang-flags { display: flex; gap: 0.4rem; }
.lang-flag {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}
.lang-de { background: linear-gradient(180deg, #000 0 33%, #DD0000 33% 66%, #FFCE00 66% 100%); }
.lang-fr { background: linear-gradient(90deg,  #002395 0 33%, #fff 33% 66%, #ED2939 66% 100%); }
.lang-nl { background: linear-gradient(180deg, #AE1C28 0 33%, #fff 33% 66%, #21468B 66% 100%); }

/* ---------- Print ---------- */
@media print {
  .topbar .chip-row, .mainbar, .cta-strip, footer.site-footer { display: none; }
  body { background: #fff; color: #000; }
}
