* {
  letter-spacing: 0;
}

html {
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(135deg, #07080b 0%, #11151d 48%, #090a0e 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

body.menu-open {
  overflow: hidden;
}

[data-lucide] {
  width: 1.05em;
  height: 1.05em;
  stroke-width: 2.35;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(246, 195, 67, .88);
  outline-offset: 3px;
}

#site-header {
  transition: padding .25s ease;
}

#site-header.is-scrolled {
  padding-top: .55rem;
}

.desktop-nav a,
.mobile-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.desktop-nav a {
  padding: 0 1rem;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #07080b;
  background: #fff;
  transform: translateY(-1px);
}

.mobile-nav.open {
  display: grid;
  gap: .35rem;
}

.mobile-nav a {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition:
    opacity .72s cubic-bezier(.2, .8, .2, 1),
    transform .72s cubic-bezier(.2, .8, .2, 1),
    filter .72s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.video-hero {
  min-height: 94svh;
  transition: min-height .45s cubic-bezier(.2, .8, .2, 1);
}

.video-hero.is-video-expanded {
  min-height: 116svh;
}

.hero-content {
  min-height: 94svh;
  padding-bottom: 3rem;
  transition: min-height .45s cubic-bezier(.2, .8, .2, 1);
}

.video-hero.is-video-expanded .hero-content {
  min-height: 116svh;
}

.hero-copy {
  text-shadow: 0 2px 28px rgba(0, 0, 0, .62);
}

.hero-video-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050507;
}

.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .7;
  background: #050507;
  transition: opacity .45s ease;
}

.hero-video-card.is-video-ready::before {
  opacity: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .88) 0%, rgba(7, 8, 11, .58) 42%, rgba(7, 8, 11, .24) 100%),
    linear-gradient(180deg, rgba(7, 8, 11, .1) 0%, rgba(7, 8, 11, .26) 52%, rgba(7, 8, 11, .9) 100%);
}

.video-top-controls,
.video-expand-toggle {
  position: absolute;
  z-index: 30;
}

.video-top-controls {
  top: 6.2rem;
  right: 1.25rem;
  display: flex;
  gap: .55rem;
}

.video-top-controls button,
.video-expand-toggle,
.incident-expand-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: .72rem 1rem;
  color: #fff;
  background: rgba(7, 8, 11, .72);
  font-weight: 950;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}

.video-top-controls button {
  width: 46px;
  padding: 0;
}

.video-top-controls button:hover,
.video-expand-toggle:hover,
.incident-expand-toggle:hover {
  transform: translateY(-2px);
  color: #07080b;
  border-color: transparent;
  background: #f6c343;
}

.video-expand-toggle {
  left: 50%;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  padding: 0;
  transform: translateX(-50%);
}

.video-expand-toggle:hover {
  transform: translateX(-50%) translateY(-2px);
}

.video-hero.is-video-expanded .video-expand-toggle [data-lucide] {
  transform: rotate(180deg);
}

.live-dot {
  width: .72rem;
  height: .72rem;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .55);
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.primary-action,
.ghost-action {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .8rem 1.15rem;
  font-weight: 950;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}

.primary-action {
  color: #fff;
  background: #d71920;
  box-shadow: 0 20px 60px rgba(215, 25, 32, .28);
}

.primary-action:hover,
.ghost-action:hover {
  transform: translateY(-3px);
}

.primary-action:hover {
  color: #07080b;
  background: #f6c343;
}

.ghost-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.ghost-action:hover {
  color: #07080b;
  background: #fff;
}

.hero-widgets article,
.service-widget,
.vehicle-panel,
.incident-row,
.contact-form,
.contact-facts,
.map-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045)),
    rgba(23, 28, 37, .86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.hero-widgets article {
  min-height: 106px;
  border-radius: 1.35rem;
  padding: .95rem;
}

.hero-widgets [data-lucide] {
  color: #f6c343;
  width: 1.25rem;
  height: 1.25rem;
}

.hero-widgets strong {
  display: block;
  margin-top: .35rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
}

.hero-widgets span {
  display: block;
  margin-top: .4rem;
  color: rgba(255, 255, 255, .68);
  font-weight: 850;
  line-height: 1.3;
}

.dark-section,
.vehicle-section,
.contact-section,
.team-photo-section {
  position: relative;
  overflow: hidden;
}

.dark-section {
  background: linear-gradient(180deg, #07080b 0%, #10141b 100%);
}

.vehicle-section {
  background: linear-gradient(180deg, #10141b 0%, #07080b 52%, #11151d 100%);
}

.team-photo-section {
  background: linear-gradient(180deg, #07080b 0%, #10141b 100%);
}

.contact-section {
  background: linear-gradient(180deg, #10141b 0%, #07080b 100%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #f6c343;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 2.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.service-widget {
  min-height: 176px;
  border-radius: 1.35rem;
  padding: 1.15rem;
  transition: transform .22s ease, border .22s ease, background .22s ease;
}

.service-widget:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 195, 67, .34);
  background:
    linear-gradient(145deg, rgba(246, 195, 67, .11), rgba(255, 255, 255, .05)),
    rgba(23, 28, 37, .9);
}

.service-widget [data-lucide] {
  width: 1.7rem;
  height: 1.7rem;
  color: #ff6b35;
}

.service-widget strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 950;
}

.service-widget span {
  display: block;
  margin-top: .55rem;
  color: rgba(255, 255, 255, .62);
  font-weight: 750;
  line-height: 1.55;
}

.vehicle-stage {
  position: relative;
  min-height: 100%;
  background: #050507;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.vehicle-stage::after {
  content: "Bild wird geladen";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
  font-weight: 950;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity .2s ease;
}

.vehicle-stage:has(#vehicle-image.is-switching)::after,
.vehicle-stage:has(#vehicle-image.has-load-error)::after {
  opacity: 1;
}

.vehicle-stage:has(#vehicle-image.has-load-error)::after {
  content: "Bild nicht gefunden";
  color: #f6c343;
}

#vehicle-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity .32s ease, transform .45s ease;
}

#vehicle-image.is-switching {
  opacity: 0;
  transform: scale(1.03);
}

#vehicle-image.has-load-error {
  opacity: 0;
}

.vehicle-panel {
  border-radius: 1.6rem;
  padding: 1.25rem;
}

.vehicle-facts {
  display: grid;
  gap: .75rem;
}

.vehicle-facts div {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: .75rem;
}

.vehicle-facts dt {
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-facts dd {
  margin-top: .25rem;
  font-weight: 950;
  line-height: 1.3;
}

.vehicle-button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .72rem .95rem;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .055);
  font-weight: 950;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}

.vehicle-button:hover,
.vehicle-button.active {
  transform: translateY(-2px);
  color: #07080b;
  border-color: transparent;
  background: #f6c343;
}

.incident-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: flex-start;
}

.incident-chip {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .65rem 1rem;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .06);
  font-weight: 950;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}

.incident-chip:hover,
.incident-chip.active {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  background: #d71920;
}

.incident-list {
  counter-reset: incidents;
  display: grid;
  gap: .8rem;
}

.incident-row {
  counter-increment: incidents;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  border-radius: 1.15rem;
  padding: 1rem;
}

.incident-row::before {
  content: counter(incidents, decimal-leading-zero);
  width: 46px;
  height: 46px;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  border-radius: .95rem;
  color: #07080b;
  background: #f6c343;
  font-weight: 950;
}

.incident-row time {
  grid-column: 1;
  margin-left: 58px;
  color: rgba(255, 255, 255, .56);
  font-size: .88rem;
  font-weight: 900;
}

.incident-row strong {
  min-width: 0;
  font-weight: 950;
  line-height: 1.35;
}

.incident-row span {
  justify-self: end;
  border-radius: 999px;
  padding: .45rem .7rem;
  color: #fff;
  background: rgba(215, 25, 32, .36);
  font-size: .82rem;
  font-weight: 950;
}

.incident-row.is-hidden,
.incident-row.is-collapsed-away {
  display: none;
}

.incident-expand-toggle {
  margin: 1rem auto 0;
}

.incident-expand-toggle[hidden] {
  display: none;
}

.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #050507;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
}

.team-photo img {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0), rgba(7, 8, 11, .82));
  pointer-events: none;
}

.team-photo figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
}

.team-photo strong {
  display: block;
  margin-top: .7rem;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.1;
}

.contact-facts {
  display: grid;
  gap: .8rem;
  border-radius: 1.35rem;
  padding: 1rem;
}

.contact-facts div {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  line-height: 1.55;
}

.contact-facts [data-lucide] {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  color: #f6c343;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(246, 195, 67, .52);
  border-radius: 1.65rem;
  padding: .82rem;
  background:
    linear-gradient(135deg, rgba(246, 195, 67, .38), rgba(215, 25, 32, .22) 38%, rgba(255, 255, 255, .08)),
    rgba(23, 28, 37, .9);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, .42),
    0 0 0 4px rgba(246, 195, 67, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: .82rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 1rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(7, 8, 11, .28);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: .36rem;
  z-index: 2;
  border-radius: 1.25rem;
  pointer-events: none;
  background:
    linear-gradient(90deg, #f6c343 0 4.8rem, transparent 4.8rem calc(100% - 4.8rem), #d71920 calc(100% - 4.8rem)),
    linear-gradient(90deg, #d71920 0 3.2rem, transparent 3.2rem calc(100% - 3.2rem), #f6c343 calc(100% - 3.2rem));
  background-size: 100% 3px, 100% 3px;
  background-position: top, bottom;
  background-repeat: no-repeat;
}

.map-card iframe {
  width: 100%;
  height: 310px;
  position: relative;
  z-index: 0;
  display: block;
  border: 0;
  border-radius: 1rem;
  filter: grayscale(.15) contrast(1.05);
}

.contact-form {
  position: relative;
  display: grid;
  align-self: start;
  align-content: start;
  grid-auto-rows: auto;
  gap: 1rem;
  border-radius: 1.6rem;
  padding: 1rem;
}

.contact-form label {
  display: grid;
  gap: .45rem;
}

.contact-form label span {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1rem;
  padding: .9rem 1rem;
  color: #fff;
  background: rgba(7, 8, 11, .52);
  font-weight: 750;
  outline: none;
  transition: border .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 10.6rem;
  resize: vertical;
}

.contact-form .primary-action {
  width: 100%;
  min-height: 3.25rem;
  align-self: start;
  justify-self: start;
}

.contact-submit-status {
  min-height: 1.4rem;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  font-weight: 850;
}

.contact-envelope {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 6.2rem;
  height: 4rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
  border-radius: .45rem;
  background:
    linear-gradient(145deg, transparent 48%, rgba(7, 8, 11, .18) 49% 51%, transparent 52%),
    linear-gradient(35deg, transparent 48%, rgba(7, 8, 11, .18) 49% 51%, transparent 52%),
    #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .42);
}

.contact-envelope::before,
.contact-envelope::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-left: 3.1rem solid transparent;
  border-right: 3.1rem solid transparent;
}

.contact-envelope::before {
  top: 0;
  border-top: 2.1rem solid #f6c343;
}

.contact-envelope::after {
  bottom: 0;
  border-bottom: 2.1rem solid #d71920;
}

.contact-form.is-sending label,
.contact-form.is-sending .primary-action {
  animation: contactFold .75s cubic-bezier(.2, .8, .2, 1) forwards;
}

.contact-form.is-sending .contact-envelope {
  animation: envelopeLaunch 1.45s cubic-bezier(.2, .8, .2, 1) forwards;
}

.contact-form.is-sent {
  border-color: rgba(52, 211, 153, .45);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, .26),
    0 0 0 4px rgba(52, 211, 153, .12);
}

.contact-form.is-sent .contact-submit-status {
  color: #86efac;
}

@keyframes contactFold {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: .18;
    transform: translateY(10px) scale(.92);
    filter: blur(2px);
  }
}

@keyframes envelopeLaunch {
  0% {
    opacity: 0;
    transform: translate(-50%, -35%) scale(.7) rotate(-4deg);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -55%) scale(1) rotate(2deg);
  }
  72% {
    opacity: 1;
    transform: translate(-50%, -220%) scale(.9) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: translate(95%, -520%) scale(.6) rotate(24deg);
  }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .36);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 195, 67, .62);
  background: rgba(7, 8, 11, .78);
  box-shadow: 0 0 0 4px rgba(246, 195, 67, .1);
}

[data-tilt] {
  transition: transform .22s ease-out;
  will-change: transform;
}

@media (min-width: 1024px) {
  .video-top-controls {
    right: calc((100vw - min(1180px, calc(100vw - 28px))) / 2);
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.15rem;
  }

  .contact-form label:nth-of-type(4) {
    grid-row: span 2;
  }

  .contact-form .primary-action {
    width: max-content;
  }

  .contact-submit-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 82px;
  }

  .video-hero,
  .hero-content {
    min-height: 92svh;
  }

  .video-hero.is-video-expanded,
  .video-hero.is-video-expanded .hero-content {
    min-height: 112svh;
  }

  .hero-content {
    padding-top: 6.6rem;
    padding-bottom: 4.6rem;
  }

  .nav-toggle {
    color: #07080b;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .86);
  }

  .video-top-controls {
    top: 5.8rem;
    right: 1rem;
  }

  .hero-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin-top: 1.35rem;
  }

  .hero-widgets article {
    min-height: 88px;
    border-radius: 1rem;
    padding: .65rem;
  }

  .hero-widgets [data-lucide] {
    width: 1rem;
    height: 1rem;
  }

  .hero-widgets strong {
    font-size: 1.65rem;
  }

  .hero-widgets span {
    font-size: .68rem;
  }

  .service-widget {
    min-height: 138px;
  }

  .incident-row {
    grid-template-columns: 1fr auto;
    gap: .7rem;
  }

  .incident-row::before {
    display: none;
  }

  .incident-row time {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .incident-row strong {
    grid-column: 1;
  }

  .incident-row span {
    grid-column: 2;
  }

  .team-photo img {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .hero-widgets strong {
    font-size: 1.5rem;
  }

  .primary-action,
  .ghost-action {
    width: 100%;
  }
}

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

  .reveal,
  .reveal.is-visible,
  [data-tilt] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.legal-section {
  background: linear-gradient(180deg, rgba(7, 8, 11, .94), rgba(16, 20, 27, .98));
}

.legal-card {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}

.legal-card h2 {
  margin: .65rem 0 1rem;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.05;
}

.legal-card p {
  margin: 0 0 1rem;
  font-weight: 650;
  line-height: 1.75;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .68);
  background: #07080b;
}

.site-footer p {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-size: .86rem;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: #07080b;
  background: #f6c343;
  transform: translateY(-1px);
}

.lucide-local-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}
