/* ==========================================================================
   Aleksi – Reinigung & Alltagshilfe · Grundlagen, Kopf, Held, Fußbereich
   ========================================================================== */

:root {
  --navy-950: #041e31;
  --navy-900: #0a2940;
  --navy-800: #113246;
  --navy-700: #1b4462;
  --navy-600: #245476;
  --navy-500: #3a6d93;
  --navy-200: #c9dae6;
  --navy-100: #e3edf4;
  --navy-50: #f1f6fa;
  --ink: #0b2a40;
  --text: #2f4659;
  --muted: #5d7282;
  --line: #e3eaf0;
  --line-strong: #cdd9e3;
  --bg: #ffffff;
  --bg-soft: #f8fafb;
  --bg-mint: #eff6f4;
  --yellow: #f7c948;
  --yellow-600: #efb92d;
  --yellow-700: #c9920c;
  --yellow-200: #fce7a2;
  --yellow-100: #fef6dc;
  --green: #2f9e6e;
  --red: #c93c3c;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --pill: 999px;

  --shadow-xs: 0 1px 2px rgba(4, 30, 49, 0.06);
  --shadow-sm: 0 2px 6px rgba(4, 30, 49, 0.04), 0 10px 24px -14px rgba(4, 30, 49, 0.14);
  --shadow-md: 0 20px 44px -22px rgba(4, 30, 49, 0.28);
  --shadow-lg: 0 44px 90px -34px rgba(4, 30, 49, 0.4);

  --font-serif: 'Source Serif 4', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-script: 'Caveat', 'Segoe Print', 'Bradley Hand', cursive;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@view-transition {
  navigation: auto;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--yellow-200);
  color: var(--navy-950);
}

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

[hidden] {
  display: none !important;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: var(--pill);
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.container--narrow {
  max-width: calc(820px + var(--gutter) * 2);
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
}

/* ───────── Typografie-Bausteine ───────── */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.kicker::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.015em;
}

.section-subtitle {
  margin: 8px 0 0;
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--navy-700);
}

.section-intro {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 56px;
}

.section-head--split .section-intro {
  padding-left: 28px;
  border-left: 2px solid var(--line);
}

.section-head--center {
  text-align: center;
}

.section-head--center .kicker {
  justify-content: center;
}

.prose p {
  color: var(--text);
}

.prose--lg {
  font-size: clamp(17px, 1.4vw, 19px);
}

.script {
  font-family: var(--font-script);
  font-weight: 700;
  line-height: 1;
  color: var(--navy-800);
}

.script-underline {
  display: block;
  width: 120px;
  height: 14px;
  overflow: visible;
}

.script-underline path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.1s var(--ease) 0.7s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.script-heart {
  width: 34px;
  height: 34px;
  animation: heartbeat 2.8s ease-in-out 1.6s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.16);
  }
  20% {
    transform: scale(0.96);
  }
  30% {
    transform: scale(1.08);
  }
  45% {
    transform: scale(1);
  }
}

/* ───────── Buttons ───────── */

.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.btn__arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--yellow {
  --btn-bg: var(--yellow);
  --btn-fg: var(--navy-950);
  box-shadow: 0 12px 26px -14px rgba(201, 146, 12, 0.85);
}

.btn--yellow:hover {
  --btn-bg: #f9d263;
  box-shadow: 0 18px 32px -14px rgba(201, 146, 12, 0.9);
}

.btn--navy:hover {
  --btn-bg: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--line-strong);
}

.btn--outline:hover {
  border-color: var(--navy-800);
  background: var(--navy-50);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-700);
  padding-inline: 16px;
}

.btn--ghost:hover {
  background: var(--navy-50);
  transform: none;
}

.btn--glass {
  --btn-bg: rgba(255, 255, 255, 0.62);
  --btn-fg: var(--navy-900);
  border-color: rgba(4, 30, 49, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  --btn-bg: #fff;
  border-color: var(--navy-800);
}

.btn--glass-dark {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn--glass-dark:hover {
  --btn-bg: rgba(255, 255, 255, 0.16);
}

.btn--sm {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 14.5px;
}

.btn--lg {
  min-height: 56px;
  padding: 15px 30px;
  font-size: 16.5px;
}

.btn--block {
  width: 100%;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-800);
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s var(--ease);
}

.icon-btn .icon {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.icon-btn:active {
  transform: scale(0.94);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy-700);
  text-decoration: none;
}

.link-arrow .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover .icon {
  transform: translateX(4px);
}

/* ───────── Kopfbereich ───────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 30px -24px rgba(4, 30, 49, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
  transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .site-header__inner {
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--navy-800);
  text-decoration: none;
}

.logo-mark {
  width: 52px;
  height: 52px;
  color: var(--navy-800);
  transition: transform 0.4s var(--ease);
}

.brand:hover .logo-mark {
  transform: rotate(-4deg) scale(1.04);
}

.logo-heart {
  stroke: var(--yellow);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.brand__tagline {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-700);
  white-space: nowrap;
}

.brand--light .logo-mark,
.brand--light .brand__name,
.brand--light .brand__tagline {
  color: #fff;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--navy-950);
  background: var(--navy-50);
}

.main-nav a.is-active {
  color: var(--navy-950);
  font-weight: 700;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition:
    transform 0.35s var(--ease),
    opacity 0.2s;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: calc(var(--header-h) + 12px) var(--gutter) calc(24px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease),
    visibility 0s linear 0.35s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
}

.mobile-menu.is-open .mobile-menu__nav a {
  animation: menu-in 0.5s var(--ease) both;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { animation-delay: 0.04s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { animation-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { animation-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { animation-delay: 0.16s; }

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
}

.mobile-menu__nav .icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  color: var(--navy-500);
}

.mobile-menu__num {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 28px;
  border-radius: var(--pill);
  background: var(--navy-50);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-700);
}

.mobile-menu__nav a.is-active .mobile-menu__num {
  background: var(--yellow);
  color: var(--navy-950);
}

.mobile-menu__contact {
  display: grid;
  gap: 12px;
}

.mobile-menu__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.mobile-menu__script {
  margin: 8px 0 0;
  font-size: 32px;
  text-align: center;
  transform: rotate(-3deg);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

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

@media (min-width: 1061px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 72px;
  }

  .site-header__cta {
    display: none;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 10px;
  }

  .brand__name {
    font-size: 26px;
  }

  .brand__tagline {
    font-size: 12.5px;
  }

  .site-header.is-scrolled .site-header__inner {
    height: 64px;
  }
}

/* ───────── Held (Startseite) ───────── */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 80vh, 720px);
  overflow: hidden;
  background: #f5f7f8;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
  animation: hero-zoom 16s var(--ease) both;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 32%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 64%
  );
}

.hero__inner {
  padding-block: clamp(56px, 8vw, 96px);
}

.hero__content {
  max-width: 610px;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin: 0 0 22px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.hero__dot {
  color: var(--yellow-700);
  font-size: 18px;
  line-height: 1;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.hero__name {
  font-size: clamp(66px, 8.6vw, 116px);
  line-height: 0.9;
}

.hero__tagline {
  max-width: 11ch;
  margin-top: 12px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
}

.hero__lead {
  max-width: 44ch;
  margin: 26px 0 32px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--navy-800);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-700);
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__points .icon {
  width: 20px;
  height: 20px;
  color: var(--navy-500);
}

.hero__script {
  position: absolute;
  top: clamp(40px, 10%, 96px);
  right: clamp(24px, 11vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform: rotate(-9deg);
  animation: fade-up 0.9s var(--ease) 0.5s both;
}

.hero__script .script {
  max-width: 7.5ch;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 0.95;
  text-align: center;
  color: var(--navy-800);
}

.hero__script .script-underline {
  width: 130px;
  margin-top: 8px;
}

.hero__script .script-heart {
  margin-top: 8px;
  color: var(--navy-800);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(-9deg);
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .hero__script {
    display: none;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 45%,
      rgba(255, 255, 255, 0.4) 72%,
      rgba(255, 255, 255, 0.05) 100%
    );
  }
}

@media (max-width: 760px) {
  .hero {
    display: block;
    min-height: 0;
    background: #fff;
  }

  .hero::before {
    display: none;
  }

  .hero__media {
    position: relative;
    aspect-ratio: 1 / 0.95;
  }

  .hero__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 92%);
  }

  .hero__media img {
    object-position: 55% 40%;
  }

  .hero__inner {
    position: relative;
    margin-top: -64px;
    padding-top: 0;
    padding-bottom: 52px;
  }

  .hero__script {
    top: 20px;
    left: 16px;
    right: auto;
  }

  .hero__script .script {
    font-size: 30px;
  }

  .hero__script .script-underline {
    width: 90px;
  }

  .hero__script .script-heart {
    width: 26px;
    height: 26px;
  }

  .hero__kicker {
    font-size: 11.5px;
    letter-spacing: 0.16em;
  }

  .hero__tagline {
    max-width: none;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }
}

/* ───────── Fußbereich ───────── */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 72px);
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 320px at 88% -10%, rgba(247, 201, 72, 0.1), transparent 70%),
    radial-gradient(520px 320px at -5% 110%, rgba(255, 255, 255, 0.05), transparent 70%);
}

.site-footer .container {
  position: relative;
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer .logo-mark {
  width: 62px;
  height: 62px;
}

.site-footer .brand__name {
  font-size: 40px;
}

.site-footer .brand__tagline {
  font-size: 16px;
}

.site-footer__script {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 14px;
  justify-self: center;
  max-width: 330px;
  margin: 0;
  font-size: clamp(27px, 2.4vw, 34px);
  text-align: center;
  color: #fff;
  transform: rotate(-6deg);
}

.site-footer__script-text {
  flex-basis: 100%;
}

.site-footer__script .script-underline {
  width: 110px;
}

.site-footer__script .script-heart {
  width: 26px;
  height: 26px;
  color: var(--yellow);
}

.site-footer__cta {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 14.5px;
}

.site-footer__contact a,
.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__contact .icon {
  width: 17px;
  height: 17px;
}

.site-footer__contact a:hover,
.site-footer__bottom a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-block: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14.5px;
}

.site-footer__title {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--yellow);
}

.site-footer address {
  font-style: normal;
}

.hours {
  display: grid;
  gap: 6px;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.site-footer .hours dd {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 32px;
  padding-block: 22px;
  font-size: 14px;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__script {
    justify-self: start;
    transform: rotate(-4deg);
  }

  .site-footer__cta {
    justify-items: start;
  }

  .site-footer__contact {
    justify-content: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ───────── Mobile Schnellkontakt-Leiste ───────── */

.mobile-bar {
  display: none;
}

@media (max-width: 760px) {
  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 40;
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 22px;
    background: rgba(11, 45, 69, 0.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 44px -16px rgba(4, 30, 49, 0.6);
    transform: translateY(150%);
    transition: transform 0.45s var(--ease);
  }

  .mobile-bar.is-visible {
    transform: none;
  }

  body.menu-open .mobile-bar,
  body.dialog-open .mobile-bar {
    transform: translateY(150%);
  }

  .mobile-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 54px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }

  .mobile-bar__item .icon {
    width: 22px;
    height: 22px;
  }

  .mobile-bar__item--primary {
    background: var(--yellow);
    color: var(--navy-950);
  }
}

/* ───────── Scroll-Animationen ───────── */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Touch-Geräte: kein Weichzeichner hinter Leisten, die beim Scrollen stehen bleiben –
   er müsste bei jedem Scroll-Bild neu berechnet werden. Die Flächen sind ohnehin fast deckend. */
@media (hover: none) {
  .site-header,
  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .mobile-bar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(11, 45, 69, 0.97);
  }
}

/* Sechs Menüpunkte (mit „Für Unternehmen“): auf schmaleren Desktop-Breiten etwas kompakter */
@media (min-width: 1061px) and (max-width: 1260px) {
  .main-nav ul {
    gap: 0;
  }

  .main-nav a {
    padding: 10px 11px;
    font-size: 14.5px;
  }

  .main-nav a::after {
    left: 11px;
    right: 11px;
  }

  .site-header__inner {
    gap: 14px;
  }
}
