:root {
  --ink: #151515;
  --ink-soft: #4c4a48;
  --paper: #f7f5f1;
  --surface: #ffffff;
  --surface-dark: #1b1b1b;
  --line: #dedad4;
  --red: #d9232e;
  --red-dark: #aa1720;
  --red-soft: #f9e9e9;
  --shadow: 0 24px 70px rgba(29, 27, 24, 0.12);
  --shadow-soft: 0 12px 36px rgba(29, 27, 24, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--red);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 11px;
  color: #353331;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #efede9;
}

.site-nav .team-link {
  margin-left: 6px;
  padding-inline: 16px;
  color: #fff;
  background: var(--ink);
}

.site-nav .team-link:hover {
  color: #fff;
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: #efede9;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.hero {
  padding: 58px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--red);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(217, 35, 46, 0.22);
}

.button-primary:hover {
  color: #fff;
  background: var(--red-dark);
}

.button-secondary {
  border-color: #cbc6bf;
  background: transparent;
}

.button-secondary:hover {
  color: var(--ink);
  background: #fff;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  color: #fff;
  background: #34312e;
}

.arrow {
  font-size: 1.2em;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-image {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 58% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 208px;
  padding: 22px;
  color: #fff;
  background: var(--red);
  border: 7px solid var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  margin-bottom: 3px;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.35;
}

.notice-section {
  padding: 0 0 76px;
}

.notice-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 32px;
  border: 1px solid #f0c8cb;
  background: var(--red-soft);
  border-radius: var(--radius-md);
}

.notice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 800;
}

.notice-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.notice-card p {
  max-width: 780px;
  margin: 0;
  color: #5e3437;
}

.notice-card .button {
  align-self: center;
}

.section {
  padding: 90px 0;
}

.section-white {
  background: var(--surface);
}

.section-dark {
  color: #fff;
  background: var(--surface-dark);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: #c5c1bb;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 850;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 70px 0 56px;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero .lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.stat {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 6px;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 70px;
  align-items: start;
}

.story-grid h2 {
  position: sticky;
  top: 130px;
}

.story-copy p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  padding: 32px;
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.image-band img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.image-band h2,
.image-band p:last-child {
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-points div {
  padding: 24px;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius-md);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.15rem;
}

.trust-points span {
  color: #c5c1bb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery-item {
  grid-column: span 2;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-item:first-child img {
  height: min(70vw, 720px);
  object-position: center;
}

.gallery-item figcaption {
  padding: 18px 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.fleet-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.fleet-details div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.fleet-details strong,
.fleet-details span {
  display: block;
}

.fleet-details strong {
  margin-bottom: 4px;
  color: var(--red-dark);
  font-size: 1.2rem;
}

.fleet-details span {
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.contact-card,
.map-card,
.job-card,
.notice-detail,
.legal-page {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 38px;
}

.contact-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.contact-note {
  padding: 38px;
  color: #fff;
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
}

.contact-note h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-note p:not(.eyebrow) {
  color: #c5c1bb;
}

.contact-list {
  display: grid;
  gap: 26px;
  margin: 32px 0 0;
}

.contact-list div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  margin-bottom: 5px;
  color: #77716a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
}

.map-card {
  min-height: 560px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.job-card,
.notice-detail {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 64px);
}

.job-card h2,
.notice-detail h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.job-card p,
.notice-detail p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.job-address {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.job-address strong {
  display: block;
  margin-bottom: 12px;
}

.notice-detail {
  border-color: #f0c8cb;
  background: var(--red-soft);
}

.notice-detail .notice-icon {
  margin-bottom: 28px;
}

.notice-detail p {
  color: #583235;
}

.notice-detail p + p {
  margin-top: 22px;
}

.legal-section {
  padding: 28px 0 90px;
}

.legal-page {
  max-width: 960px;
  padding: clamp(28px, 5vw, 64px);
  overflow-wrap: anywhere;
}

.legal-page h1,
.legal-page > .Impressum:first-child,
.legal-page > .Datenschutz:first-child,
.legal-page #text_index {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.legal-page h2,
.legal-page .Überschrift_Impressum {
  margin: 34px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page .Text_Impressum,
.legal-page #AGB {
  color: #47433f;
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-page .Impressum:not(:first-child) {
  margin: 36px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.legal-page a {
  color: var(--red-dark);
}

.site-footer {
  padding: 70px 0 24px;
  color: #dedbd7;
  background: #161616;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 22px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #aaa6a1;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column address,
.footer-column nav {
  display: grid;
  gap: 8px;
  color: #bdb9b4;
  font-style: normal;
}

.footer-column a {
  width: fit-content;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #343434;
  color: #8e8a85;
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 92px 0 auto;
    max-height: calc(100vh - 92px);
    display: none;
    align-items: stretch;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(20, 20, 20, 0.12);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 13px 16px;
    font-size: 1rem;
  }

  .site-nav .team-link {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .hero-visual,
  .hero-image {
    min-height: 500px;
    height: 500px;
  }

  .hero-badge {
    right: -8px;
  }

  .notice-card {
    grid-template-columns: 54px 1fr;
  }

  .notice-icon {
    width: 54px;
    height: 54px;
  }

  .notice-card .button {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 38px;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .trust-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-visual,
  .hero-image {
    min-height: 440px;
    height: 440px;
  }

  .hero-badge {
    right: 14px;
    bottom: -18px;
  }

  .card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .story-grid {
    gap: 10px;
  }

  .image-band {
    gap: 28px;
    margin-top: 52px;
  }

  .fleet-details {
    grid-template-columns: 1fr;
  }

  .story-grid h2 {
    position: static;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-item:first-child img {
    height: min(105vw, 650px);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 142px;
  }

  .site-nav {
    inset-block-start: 78px;
    max-height: calc(100vh - 78px);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual,
  .hero-image {
    min-height: 360px;
    height: 360px;
  }

  .hero-badge {
    right: 10px;
    bottom: -15px;
    width: 175px;
    padding: 17px;
    border-width: 5px;
    border-radius: 19px;
  }

  .hero-badge strong {
    font-size: 2rem;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .notice-section {
    padding-bottom: 58px;
  }

  .notice-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .notice-card .button {
    grid-column: auto;
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 52px 0 38px;
  }

  .contact-card,
  .job-card,
  .notice-detail,
  .legal-page {
    border-radius: var(--radius-md);
  }

  .contact-card {
    padding: 27px;
  }

  .image-band {
    padding: 20px;
  }

  .image-band img {
    height: 280px;
  }

  .contact-note {
    padding: 27px;
    border-radius: var(--radius-md);
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
