:root {
  --brand-orange: #e6511e;
  --brand-white: #ffffff;
  --brand-blue: #000e32;
  --brand-blue-soft: #0d1f57;
  --surface: #f4f6fb;
  --surface-strong: #e9eef8;
  --text-color: #0f172f;
  --text-muted: #4b587c;
  --shadow-soft: 0 18px 48px rgba(0, 14, 50, 0.18);
  --radius-sm: 0.65rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background: linear-gradient(180deg, #f4f6fb 0%, #eef3ff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  --header-brand-gap: 1.1rem;
  --header-brand-mark-size: 120px;
  --header-brand-mark-padding: 0.8rem;
  --header-brand-name-size: clamp(1.75rem, 1.4rem + 1vw, 2.45rem);
  --header-brand-tagline-size: 0.95rem;
  --header-brand-tagline-opacity: 0.78;
  --header-nav-y: 1rem;
  --header-hotline-min-height: 52px;
  position: sticky;
  top: 0;
  z-index: 1030;
  margin-bottom: 10px;
  background: rgba(0, 14, 50, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 14, 50, 0.2);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-condensed {
  --header-brand-gap: 0.9rem;
  --header-brand-mark-size: 92px;
  --header-brand-mark-padding: 0.65rem;
  --header-brand-name-size: clamp(1.45rem, 1.15rem + 0.8vw, 2rem);
  --header-brand-tagline-size: 0.85rem;
  --header-brand-tagline-opacity: 0.68;
  --header-nav-y: 0.55rem;
  --header-hotline-min-height: 46px;
  background: rgba(0, 14, 50, 0.985);
  box-shadow: 0 8px 24px rgba(0, 14, 50, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 14px;
  background-image: url("../img/rohr-line.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 14px;
  pointer-events: none;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--header-brand-gap);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.site-header .navbar {
  padding-top: var(--header-nav-y) !important;
  padding-bottom: var(--header-nav-y) !important;
  transition: padding 0.25s ease;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-brand-mark-size);
  height: var(--header-brand-mark-size);
  padding: var(--header-brand-mark-padding);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
  transition: width 0.25s ease, height 0.25s ease, padding 0.25s ease, border-radius 0.25s ease;
}

.brand-mark img {
  width: 100%;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-name {
  color: var(--brand-white);
  font-size: var(--header-brand-name-size);
  font-weight: 800;
  line-height: 1.1;
  transition: font-size 0.25s ease;
}

.brand-tagline {
  color: rgba(255, 255, 255, var(--header-brand-tagline-opacity));
  font-size: var(--header-brand-tagline-size);
  font-weight: 500;
  line-height: 1.25;
  transition: font-size 0.25s ease, color 0.25s ease;
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
}

.hotline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: var(--header-hotline-min-height);
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff7b37 0%, var(--brand-orange) 100%);
  color: var(--brand-white);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(230, 81, 30, 0.3);
  transition: min-height 0.25s ease, transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hotline-button:hover,
.hotline-button:focus-visible {
  color: var(--brand-white);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  overflow: visible;
  margin-bottom: 10px;
  padding: 4.75rem 0 4rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(230, 81, 30, 0.22), transparent 20%),
    linear-gradient(120deg, rgba(0, 14, 50, 0.98) 0%, rgba(7, 29, 86, 0.95) 58%, rgba(230, 81, 30, 0.18) 100%),
    #000e32 url("../img/rohre-hintergrund.png") center center no-repeat;
  background-size: auto, auto, cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 14, 50, 0.18) 0%, rgba(0, 14, 50, 0.04) 100%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 14px;
  background-image: url("../img/rohr-line.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 14px;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4.5rem);
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.hero-media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(230, 81, 30, 0.26), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 60px rgba(0, 6, 28, 0.35);
  backdrop-filter: blur(10px);
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  pointer-events: none;
}

.hero-media-frame img {
  width: min(100%, 520px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.hero-copy {
  max-width: 720px;
  color: var(--brand-white);
}

.section-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--brand-orange);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 1rem;
  color: var(--brand-white);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 1rem;
  color: var(--brand-orange);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
}

.lead-text {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.125rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8d54 0%, var(--brand-orange) 100%);
  box-shadow: 0 0 0 0.2rem rgba(230, 81, 30, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.hero-button-primary {
  background: linear-gradient(135deg, #ff7b37 0%, var(--brand-orange) 100%);
  color: var(--brand-white);
  box-shadow: 0 14px 34px rgba(230, 81, 30, 0.28);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  color: var(--brand-white);
  transform: translateY(-1px);
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  backdrop-filter: blur(8px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.14);
}

.content-section {
  padding: 4.5rem 0;
}

.section-pipe-end {
  position: relative;
  overflow: visible;
  margin-bottom: 10px;
}

.section-pipe-end::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 14px;
  background-image: url("../img/rohr-line.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 14px;
  pointer-events: none;
}

.section-pipe-end.section-pipe-end-last::after {bottom: -13px !important}

.section-bg-rohre-light {
  background:
    radial-gradient(circle at 82% 18%, rgba(230, 81, 30, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(244, 246, 251, 0.58) 0%, rgba(238, 243, 255, 0.52) 100%),
    #f4f6fb url("../img/rohre-hintergrund-leistungen.png") center center no-repeat;
  background-size: auto, auto, auto;
}

.section-bg-rohre-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.section-bg-rohre-white {
  background:
    radial-gradient(circle at 82% 18%, rgba(230, 81, 30, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%),
    #ffffff url("../img/rohre-hintergrund-leistungen.png") center center no-repeat;
  background-size: auto, auto, auto;
}

#kontakt.section-pipe-end {
  margin-bottom: 10px;
}

#kontakt.section-pipe-end::after {
  bottom: -13px;
}

.section-bg-rohre-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.section-bg-rohre-light .container,
.section-bg-rohre-white .container {
  position: relative;
  z-index: 1;
}

.services-intro,
.section-heading {
  margin-bottom: 2rem;
}

#ueber-uns.content-section {
  padding-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-copy {
  max-width: 68ch;
  padding-bottom: 4rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 1.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff7b37 0%, var(--brand-orange) 100%);
  box-shadow: 0 12px 28px rgba(230, 81, 30, 0.22);
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-button:hover,
.about-button:focus-visible {
  color: var(--brand-white);
  box-shadow: 0 16px 32px rgba(230, 81, 30, 0.28);
  transform: translateY(-1px);
}

.about-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
}

.about-media img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

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

.vorsorge-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.5rem;
}

.vorsorge-column {
  display: grid;
  gap: 1.5rem;
}

.vorsorge-item {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(13, 31, 87, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(0, 14, 50, 0.08);
}

.vorsorge-item h3 {
  margin: 0 0 0.9rem;
  color: var(--brand-blue);
  font-size: 1.35rem;
  line-height: 1.25;
}

.vorsorge-item p {
  max-width: none;
  color: var(--text-muted);
}

.vorsorge-media {
  min-height: 100%;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 14, 50, 0.08);
}

.vorsorge-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card,
.split-card,
.team-card,
.contact-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(13, 31, 87, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(0, 14, 50, 0.08);
}

.info-card-soft,
.team-card {
  background: rgba(247, 249, 253, 0.88);
}

.info-card-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.45rem;
  height: 4.45rem;
  margin: 0 auto 1.15rem;
  border-radius: 1.15rem;
  background: rgba(230, 81, 30, 0.12);
  flex-shrink: 0;
}

.info-card-icon-badge-strong {
  background: var(--brand-orange);
  box-shadow: 0 14px 28px rgba(230, 81, 30, 0.2);
}

.info-card-icon {
  color: var(--brand-orange);
  font-size: 1.22rem;
  line-height: 1;
}

.info-card-icon-badge-strong .info-card-icon {
  color: var(--brand-white);
}

.info-card h3,
.split-card h3,
.team-card h3,
.contact-card h3 {
  margin: 0 0 0.9rem;
  color: var(--brand-blue);
  font-size: 1.35rem;
  line-height: 1.25;
}

.info-card p,
.split-card p,
.team-card p,
.contact-card p {
  max-width: none;
  color: var(--text-muted);
}

.split-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.split-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.split-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(13, 31, 87, 0.08);
  border-bottom: 1px solid rgba(13, 31, 87, 0.1);
}

.split-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.6rem;
}

.split-card-button {
  align-self: flex-start;
  margin-top: auto;
}

.split-card-list {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.split-card-list li + li {
  margin-top: 0.55rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.4rem;
}

.team-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  border: 12px solid var(--brand-orange);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(245, 248, 252, 0.98) 100%);
  color: var(--brand-blue);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 36px rgba(0, 14, 50, 0.1);
  overflow: hidden;
}

.team-card-avatar-placeholder {
  color: var(--brand-orange);
  font-size: 2.6rem;
}

.team-card h3 {
  margin-bottom: 0.45rem;
}

.team-card-position {
  margin: 0;
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: 700;
}

.team-card-role,
.contact-card-kicker {
  margin-bottom: 0.75rem;
  color: var(--brand-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card-link {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--brand-orange);
  font-weight: 700;
  text-decoration: none;
}

.team-card-link:hover,
.team-card-link:focus-visible {
  color: #b63f17;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  width: min(100%, 360px);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff7b37 0%, var(--brand-orange) 100%);
  box-shadow: 0 12px 28px rgba(230, 81, 30, 0.24);
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.section-call-button:hover,
.section-call-button:focus-visible {
  color: var(--brand-white);
  box-shadow: 0 16px 32px rgba(230, 81, 30, 0.3);
  transform: translateY(-1px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
}

.contact-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(13, 31, 87, 0.08);
  color: var(--text-muted);
}

.contact-detail-list li:first-child {
  padding-top: 0;
}

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

.contact-detail-list span {
  color: var(--brand-blue);
  font-weight: 700;
}

.contact-detail-list strong {
  color: var(--brand-blue);
  font-weight: 700;
}

.contact-info-card a {
  color: var(--brand-orange);
  font-weight: 700;
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  color: #b63f17;
}

.contact-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 87, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(0, 14, 50, 0.08);
}

.contact-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.contact-media-card-vehicle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-media-card-vehicle img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 360px;
  object-fit: contain;
  object-position: center bottom;
}

.content-section h2 {
  margin-bottom: 1rem;
  color: var(--brand-blue);
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 700;
}

.content-section p {
  max-width: 68ch;
  margin: 0;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 2.25rem 1.75rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 0.4rem 0;
  background: transparent;
}

.service-card-media {
  --service-media-size: 180px;
  --service-media-border: 12px;
  --service-media-accent-size: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--service-media-size);
  height: var(--service-media-size);
  flex: 0 0 var(--service-media-size);
  margin: 4rem auto;
  overflow: visible;
}

.service-card-media-clip {
  width: 100%;
  height: 100%;
  border: var(--service-media-border) solid var(--brand-orange);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(230, 81, 30, 0.16);
}

.service-card-media-accent {
  position: absolute;
  width: var(--service-media-accent-size);
  height: var(--service-media-accent-size);
  background: var(--brand-orange);
  pointer-events: none;
  z-index: 2;
}

.service-card-media-accent-top {
  top: calc(-1 * (var(--service-media-accent-size) - var(--service-media-border)));
  left: 50%;
  transform: translateX(-50%);
}

.service-card-media-accent-right {
  top: 50%;
  right: calc(-1 * (var(--service-media-accent-size) - var(--service-media-border)));
  transform: translateY(-50%);
}

.service-card-media-accent-bottom {
  bottom: calc(-1 * (var(--service-media-accent-size) - var(--service-media-border)));
  left: 50%;
  transform: translateX(-50%);
}

.service-card-media-accent-left {
  top: 50%;
  left: calc(-1 * (var(--service-media-accent-size) - var(--service-media-border)));
  transform: translateY(-50%);
}

.service-card-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at top right, rgba(230, 81, 30, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(0, 14, 50, 0.94), rgba(14, 36, 95, 0.9));
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.service-card-media-placeholder i {
  color: var(--brand-orange);
  font-size: 2.5rem;
}

.service-card-media-placeholder span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.service-card-body h3 {
  margin: 0 0 0.85rem;
  color: var(--brand-blue);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-card-body p {
  max-width: none;
  flex: 0 1 auto;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.65rem;
  width: min(100%, 240px);
  height: 52px;
  margin-top: auto;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff7b37 0%, var(--brand-orange) 100%);
  box-shadow: 0 12px 26px rgba(230, 81, 30, 0.24);
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card-link i {
  font-size: 0.95rem;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: var(--brand-white);
  box-shadow: 0 16px 30px rgba(230, 81, 30, 0.3);
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 1.75rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 81, 30, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(0, 14, 50, 0.985) 0%, rgba(7, 29, 86, 0.96) 100%);
  color: var(--brand-white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 40%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 200px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column-right {
  text-align: right;
}

.footer-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-white);
}

.footer-brand-column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-brand {
  display: inline-flex;
  text-decoration: none;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 6, 28, 0.2);
}

.footer-brand-mark img {
  display: block;
  width: 100%;
}

.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom p + p {
  margin-top: 0.35rem;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 1600px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hotline-button {
    width: 100%;
    margin-top: 0.5rem;
  }

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

  .vorsorge-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vorsorge-media {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .info-grid-3,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid .team-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 0.75rem);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

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

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info-grid .contact-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-brand-column {
    grid-column: 1 / -1;
    order: -1;
  }

  .footer-column-right {
    text-align: right;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    --header-brand-mark-size: 84px;
    --header-brand-mark-padding: 0.65rem;
    --header-brand-name-size: 1.45rem;
    --header-brand-tagline-size: 0.8rem;
  }

  .site-header.is-condensed {
    --header-brand-mark-size: 72px;
    --header-brand-mark-padding: 0.55rem;
    --header-brand-name-size: 1.2rem;
    --header-brand-tagline-size: 0.74rem;
  }

  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-mark {
    border-radius: var(--radius-sm);
  }

  .brand-copy {
    gap: 0.1rem;
  }

  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
    background-position: center center;
    background-size: auto, auto, cover;
  }

  .hero-media-frame {
    min-height: 320px;
    border-radius: 1.15rem;
  }

  .hero-media-frame::before {
    inset: 0.75rem;
    border-radius: 0.85rem;
  }

  .hero-button {
    width: 100%;
  }

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

  .vorsorge-layout {
    grid-template-columns: 1fr;
  }

  .vorsorge-media {
    min-height: 280px;
  }

  .info-grid-3,
  .team-grid,
  .split-card-grid,
  .contact-info-grid,
  .contact-media-grid {
    grid-template-columns: 1fr;
  }

  .team-grid .team-card:last-child {
    max-width: none;
  }

  .team-card-avatar {
    width: 156px;
    height: 156px;
    font-size: 2.05rem;
  }

  .team-card-avatar-placeholder {
    font-size: 2.2rem;
  }

  .contact-detail-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .contact-media-card:not(.contact-media-card-vehicle) img {
    min-height: 240px;
  }

  .about-button {
    width: 100%;
  }

  .section-call-button {
    width: 100%;
  }

  #ueber-uns.content-section {
    padding-bottom: 3.5rem;
  }

  .service-card-media {
    --service-media-size: 156px;
    width: var(--service-media-size);
    height: var(--service-media-size);
    flex-basis: var(--service-media-size);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 3.5rem 0;
  }

  .site-footer {
    padding-top: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-column {
    order: 0;
  }

  .footer-column-right {
    text-align: center;
  }

  .footer-brand-mark {
    width: 128px;
    height: 128px;
  }

  .footer-links li + li {
    margin-top: 0.6rem;
  }
}

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

  .hero-media {
    order: 2;
  }

  .hero-copy {
    order: 1;
    max-width: 100%;
  }
}

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

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