/* =========================================================
   MS Bau – DARK PREMIUM EDITION
   Tiefblauer Hintergrund, helle Akzente, extrem hochwertig.
   Schriftgrößen dezent, perfekt lesbar.
   ========================================================= */

/* ---------- Design Tokens (dunkles Theme) ---------- */
:root {
  /* Markenfarben – jetzt als helle Akzente auf dunklem Grund */
  --brand-light: #5b8fc9;  /* helleres Blau für Icons/Hover */
  --brand-1: #2b6bb0;      /* mittleres Blau */
  --brand-2: #1f5f99;      /* dein originales Blau */
  --brand-3: #174a7a;      /* etwas dunkler */

  /* Hintergrundfarben – tiefes Blau */
  --bg-0: #0a121c;         /* fast schwarz mit Blaustich */
  --bg-1: #0f1a26;         /* dunkelstes Blau */
  --bg-2: #15232f;         /* etwas heller für Cards */
  --bg-3: #1e2e3c;         /* für Hover-Zustände */

  /* Oberflächen */
  --surface-0: #0f1a26;
  --surface-1: #15232f;
  --surface-2: #1e2e3c;
  --surface-3: #2a3c4a;

  /* Text – helle, weiche Töne */
  --text-1: #f0f4fa;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;

  /* Borders – dezent, mit Blaustich */
  --border-light: rgba(100, 150, 220, 0.15);
  --border-regular: rgba(100, 150, 220, 0.25);
  --border-strong: rgba(100, 150, 220, 0.4);

  /* Schatten – auf dunklem Grund weicher, oft als Glow */
  --shadow-xs: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 20px 40px -8px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 30px 60px -12px rgba(0, 0, 0, 1);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --glow: 0 0 0 2px rgba(43, 107, 176, 0.5);

  /* Fokus-Ring – heller, damit er auf dunklem Grund sichtbar ist */
  --ring: 0 0 0 4px rgba(91, 143, 201, 0.5);

  /* Radien */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Layout */
  --max-width: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --gap: 1.5rem;

  /* Schrift – normale Größen, nicht zu groß */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Basis ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-2);
  background: var(--bg-1);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--brand-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: white;
}

.container {
  width: min(var(--max-width), 100% - var(--container-padding) * 2);
  margin-inline: auto;
}

/* ---------- Accessibility ---------- */
.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 1.5rem;
  top: 1.5rem;
  width: auto;
  height: auto;
  padding: 1rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-regular);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--text-1);
  z-index: 9999;
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 18, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 56px;
  width: auto;
  filter: brightness(1.2); /* Logo etwas heller machen */
  transition: transform 0.2s;
}

.brand:hover .site-logo {
  transform: scale(1.02);
}

.navpanel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.navlinks a {
  color: var(--text-2);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.navlinks a:hover {
  background: var(--surface-2);
  border-color: var(--border-regular);
  color: white;
  transform: translateY(-1px);
}

.navlinks a[aria-current="page"] {
  background: var(--surface-3);
  border-color: var(--border-strong);
  color: white;
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-regular);
  background: var(--surface-2);
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: var(--shadow-xs), var(--shadow-inner);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand-light);
  background: var(--surface-3);
  box-shadow: var(--shadow-md), var(--shadow-inner);
  color: white;
}

.btn.primary {
  background: linear-gradient(145deg, var(--brand-2), var(--brand-1));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: linear-gradient(145deg, var(--brand-1), var(--brand-light));
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.btn:focus {
  outline: none;
  box-shadow: var(--ring), var(--shadow-sm);
}

/* ---------- Pills & Tags ---------- */
.pill {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border-regular);
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tags {

  display:flex;

  flex-wrap:wrap;

  gap:.4rem;

  margin-top:.8rem;

}

.tag {

  display:inline-flex;
  align-items:center;

  padding:.3rem .8rem;

  border-radius:999px;

  border:1px solid var(--border-light);

  background:var(--surface-2);

  color:var(--text-2);

  font-size:.78rem;

  white-space:nowrap;

}

.tag:hover {
  background: var(--surface-2);
  border-color: var(--border-regular);
  color: var(--text-1);
}

.tag a {
  color: var(--brand-light);
  text-decoration: underline;
  text-decoration-color: rgba(91, 143, 201, 0.3);
  text-underline-offset: 3px;
}

/* ---------- Typografie (kleinere Schrift) ---------- */
h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}

p {
  color: var(--text-2);
  margin-bottom: 0.8rem;
  max-width: 70ch;
  font-size: 0.95rem;
}

.muted {
  color: var(--text-3);
  font-size: 0.9rem;
}

ul {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
}

li {
  color: var(--text-2);
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

/* ---------- Cards allgemein ---------- */
.card {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
}

.card.pad {
  padding: 1.8rem;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-regular);
}

/* Speziell für die 3 Mini-Cards im Hero – transparent */
.card[style*="box-shadow:none"] {
  box-shadow: none !important;
  background: transparent;
  border: none;
  padding: 1rem 1rem 1rem 0;
}

.card[style*="box-shadow:none"] h3 {
  font-size: 1.2rem;
  color: var(--text-1);
}

.card[style*="box-shadow:none"] p {
  font-size: 0.9rem;
  color: var(--text-3);
}

/* ---------- Divider ---------- */
.hr {
  height: 1px;
  background: var(--border-regular);
  margin: 1.8rem 0;
}

/* ---------- Notice ---------- */
.notice {
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(43, 107, 176, 0.1);
  box-shadow: var(--shadow-inner);
  color: var(--text-2);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.notice strong {
  color: var(--brand-light);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  padding: 3rem 0 2rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(43, 107, 176, 0.15), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: var(--gap);
  align-items: stretch;
}

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

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

@media (max-width: 640px) {
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service Cards (dunkle Variante) ---------- */
.service-card {
  display:flex;

  flex-direction:column;

  justify-content:space-between;

  height:100%;
  padding: 1rem 1rem 0.8rem;
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

/* Akzent-Linie oben in hellblau */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-light));
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-2);
  background: var(--surface-2);
}

.kv{

display:grid;

grid-template-columns: 1fr 40px;

gap:1rem;

align-items:start;

}

.kv > div {
  flex: 1;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--text-1);
}

.service-card .muted {
  font-size: 0.85rem;
}

/* Icon-Stempel – hell auf dunklem Grund */
.kv .icon{

width:40px;
height:40px;

display:flex;
align-items:center;
justify-content:center;

border-radius:10px;

background:var(--surface-3);

border:1px solid var(--border-regular);

flex-shrink:0;

}

  border: 1px solid var(--border-regular);

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow: var(--shadow-xs);
}

.kv .icon svg {
  width:22px;
  height:22px;
  color:var(--brand-light);
}

.service-card .tags {
  margin-top: 0.6rem;
}

/* Thumbnail */
.thumb {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.9); /* etwas abdunkeln für bessere Lesbarkeit des Overlays */
}

.service-card:hover .thumb img {
  transform: scale(1.07);
}

.thumb .thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .thumb-overlay {
  opacity: 1;
}

/* ---------- Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

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

/* ---------- Media Grid ---------- */
.gallery,
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .gallery,
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--surface-1);
  box-shadow: var(--shadow-xs);
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.media:hover {
  box-shadow: var(--shadow-md);
}

.media button {
  all: unset;
  cursor: pointer;
  display: block;
  height: 100%;
}

.media img,
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.media .cap {
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--border-light);
  background: var(--surface-2);
  color: var(--text-3);
  font-weight: 500;
  font-size: 0.8rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--brand-light);
  text-decoration: underline;
  text-decoration-color: rgba(91, 143, 201, 0.3);
  text-underline-offset: 3px;
}

/* ---------- Details / FAQ ---------- */
details {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--surface-1);
  transition: all 0.2s;
  margin-bottom: 0.6rem;
}

details[open] {
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '›';
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(0);
  transition: transform 0.2s;
  color: var(--brand-light);
}

details[open] summary::after {
  transform: rotate(90deg);
}

details[open] summary {
  border-bottom: 1px solid var(--border-light);
}

details p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
  color: var(--text-2);
  font-size: 0.95rem;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  padding: 2rem;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-inner {
  width: min(1000px, 100%);
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-regular);
  box-shadow: var(--shadow-lg);
  animation: modalFade 0.3s;
}

@keyframes modalFade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--surface-2);
  color: var(--text-1);
  border-bottom: 1px solid var(--border-light);
}

.modal-bar b {
  font-size: 1rem;
}

.modal .close {
  all: unset;
  cursor: pointer;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--border-regular);
  color: var(--text-1);
  font-weight: 500;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.modal .close:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  color: white;
}

.modal .content {
  padding: 1.5rem;
  background: var(--surface-0);
}

.modal img,
.modal video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* ---------- Formulare ---------- */
form {
  display: grid;
  gap: 1.2rem;
}

label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-regular);
  background: var(--surface-1);
  color: var(--text-1);
  outline: none;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-3);
  opacity: 0.7;
}

input:focus,
textarea:focus {
  border-color: var(--brand-light);
  box-shadow: var(--ring), var(--shadow-sm);
}

.form-status {
  display: none;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-2);
  background: rgba(43, 107, 176, 0.2);
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-status.show {
  display: block;
}

.form-status.error {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

/* ---------- Code ---------- */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--brand-light);
}

/* ---------- Mobile Navigation ---------- */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-regular);
  background: var(--surface-2);
  box-shadow: var(--shadow-xs);
  font-weight: 500;
  color: var(--text-1);
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.nav-toggle:hover {
  background: var(--surface-3);
}

.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 1px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle-icon::before { top: -5px; }
.nav-toggle-icon::after { top: 5px; }

@media (max-width: 820px) {
  .header .container {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navpanel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    padding: 1.2rem;
    background: var(--surface-1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-regular);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 0.8rem;
  }

  .navpanel.open {
    display: flex;
  }

  .navlinks {
    flex-direction: column;
    width: 100%;
  }

  .navlinks a {
    width: 100%;
    padding: 0.8rem;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.5rem 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .tags {
    gap: 0.4rem;
  }
}

/* ---------- Footer (dunkle Variante) ---------- */
.footer {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-0);
}

.footer-panel {
  border: 1px solid var(--border-light);
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.8rem;
}

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

.footer-col {
  border: 1px solid var(--border-light);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(1.2);
}

.footer-title {
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.footer-sub {
  color: var(--text-3);
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.footer-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

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

.chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--surface-3);
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
  font-size: 0.9rem;
}

.chip b {
  color: var(--brand-light);
  font-weight: 600;
}

a.chip {
  text-decoration: none;
}

a.chip:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
  color: var(--text-1);
}

.footer-address {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-3);
  font-weight: 400;
  font-size: 0.85rem;
}

.footer-col-right {
  justify-content: space-between;
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 0.85rem;
}

.footer-credit {
  color: var(--brand-light);
  text-decoration: underline;
  text-decoration-color: rgba(91, 143, 201, 0.3);
  text-underline-offset: 3px;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}