/* Sporthaus Stückler — Design-System, Mobile First */

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/roboto-condensed-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Hurricane';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/hurricane.woff2') format('woff2');
}

:root {
  --red: #E30613;
  --red-dark: #C9000D;
  --black: #0B0D0F;
  --anthracite: #15181B;
  --bg-light: #F4F4F1;
  --white: #FFFFFF;
  --text-secondary: #656565;
  --border: #D9D9D9;

  --container-max: 1440px;
  --space-mobile: 22px;
  --space-desktop: 100px;

  --radius-s: 6px;
  --radius-m: 8px;
  --radius-l: 12px;

  --font-body: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-mobile);
}

@media (min-width: 1024px) {
  .container { padding-inline: 48px; }
}

.section {
  padding-block: 48px;
}

@media (min-width: 1024px) {
  .section { padding-block: 96px; }
}

.section--tight { padding-block: 40px; }
@media (min-width: 1024px) { .section--tight { padding-block: 72px; } }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-label--on-dark { color: var(--red); }

h2.section-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  h2.section-heading { font-size: 46px; }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding-inline: 26px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); }
.btn--primary:focus-visible { outline: 3px solid var(--red-dark); outline-offset: 2px; }

.btn--secondary-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--secondary-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--secondary-light {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn--secondary-light:hover { background: var(--black); color: var(--white); }

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--black);
}
.btn--outline:hover { border-color: var(--black); }

:focus-visible { outline: 3px solid var(--red-dark); outline-offset: 2px; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo img { height: 34px; width: auto; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  background: none;
  border: none;
  padding: 0;
}
.icon-btn svg { width: 24px; height: 24px; }

.site-header__nav-desktop,
.site-header__location-desktop,
.site-header__cta-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .site-header { height: 88px; }
  .site-header__nav-desktop {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }
  .site-header__nav-desktop a:hover { color: var(--red); }
  .site-header__location-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
  }
  .site-header__location-desktop svg { width: 18px; height: 18px; color: var(--red); }
  .site-header__location-mobile { display: none; }
  .site-header__cta-desktop { display: inline-flex; white-space: nowrap; }
  .site-header__cta-desktop.btn { padding-inline: 18px; }
  .site-header__hamburger { display: none; }
  .site-header__actions { gap: 18px; }
}

@media (min-width: 1280px) {
  .site-header__nav-desktop { gap: 32px; font-size: 15px; }
  .site-header__actions { gap: 28px; }
  .site-header__cta-desktop.btn { padding-inline: 26px; }
}

/* Mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s ease;
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__top {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--space-mobile);
  flex-shrink: 0;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
}
.mobile-menu__close svg { width: 26px; height: 26px; }

.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px var(--space-mobile) 32px;
}

.mobile-menu__nav a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__nav a:active,
.mobile-menu__nav a:hover { color: var(--red); }

.mobile-menu__footer {
  margin-top: 24px;
}

.mobile-menu__address {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.mobile-menu__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__socials svg { width: 18px; height: 18px; }

.mobile-menu__brand {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

body.menu-open { overflow: hidden; }

/* Hero */

.hero {
  --hero-edge: max(var(--space-mobile), calc((100vw - var(--container-max)) / 2 + var(--space-mobile)));
  position: relative;
  min-height: calc(var(--vh100, 100svh) - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero__kicker {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: var(--hero-edge);
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 100%;
  transform: scale(1.5);
  transform-origin: 67% 100%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11,13,15,0.9) 0%, rgba(11,13,15,0.4) 38%, rgba(11,13,15,0) 62%),
    linear-gradient(100deg, rgba(11,13,15,0.4) 0%, rgba(11,13,15,0) 48%);
}

.hero__content {
  position: relative;
  width: 100%;
  padding: 0 var(--space-mobile) 32px var(--hero-edge);
  color: var(--white);
}

.hero__headline {
  font-size: clamp(38px, 11vw, 48px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.hero__headline > [aria-hidden] {
  white-space: nowrap;
}

.hero__headline em {
  white-space: nowrap;
  font-style: normal;
  color: var(--red);
}

.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 12px;
  align-items: end;
  max-width: 420px;
}

.hero__actions .btn {
  grid-column: 1;
  width: 100%;
}

.hero__actions-logo {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 140px;
  height: auto;
}

.hero__signature {
  display: none;
}

@media (min-width: 640px) {
  .hero__headline { font-size: 60px; }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 600px;
    --hero-edge: max(48px, calc((100vw - var(--container-max)) / 2 + 48px));
  }
  .hero__media img {
    object-position: 66% 66%;
    transform: scale(1);
    transform-origin: 66% 66%;
  }
  .hero__content {
    padding: 0 48px 40px var(--hero-edge);
    max-width: 640px;
  }
  .hero__headline { font-size: 84px; }
  .hero__actions { display: flex; flex-direction: row; max-width: none; }
  .hero__actions .btn { flex: 0 0 auto; width: auto; }
  .hero__actions-logo { display: none; }
  .hero__kicker {
    top: 44px;
    left: auto;
    right: calc(var(--hero-edge) + 2px);
    width: 168px;
  }
  .hero__signature {
    display: block;
    position: absolute;
    right: var(--hero-edge);
    bottom: 40px;
    height: 45px;
    width: auto;
  }
  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(11,13,15,0.78) 0%, rgba(11,13,15,0.22) 40%, rgba(11,13,15,0) 60%),
      linear-gradient(90deg, rgba(11,13,15,0.6) 0%, rgba(11,13,15,0.08) 40%, rgba(11,13,15,0) 55%);
  }
}

/* Offer cards */

.offers {
  background: var(--white);
  padding-top: 20px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .offers { padding-top: 24px; padding-bottom: 72px; }
}

.offers__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .offers__grid { flex-direction: row; gap: 24px; }
}

.offer-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--white);
  isolation: isolate;
}

@media (min-width: 1024px) {
  .offer-card { flex: 1; aspect-ratio: 3 / 4; }
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}

@media (hover: hover) {
  .offer-card:hover img { transform: scale(1.04); }
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(11,13,15,0.92) 0%, rgba(11,13,15,0.35) 55%, rgba(11,13,15,0) 78%);
}

.offer-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
}

.offer-card__title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.offer-card__text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.offer-card__extra {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.offer-card .btn { height: 46px; padding-inline: 20px; font-size: 15px; }

/* Season rental */

.season {
  background: var(--bg-light);
}

.season__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-mobile);
}

@media (min-width: 1024px) {
  .season__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding-left: 48px;
    padding-right: 0;
  }
  .season__intro { flex: 0 0 40%; display: flex; flex-direction: column; justify-content: center; }
  .price-card { flex: 0 0 27%; align-self: center; }
  .season__media { flex: 1; }
}

.season__intro p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: 0 8px 32px rgba(11,13,15,0.08);
  padding: 28px 24px;
  margin-top: 28px;
}

@media (min-width: 1024px) { .price-card { margin-top: 0; } }

.price-card__name {
  font-size: 20px;
  font-weight: 800;
}

.price-card__from {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 2px;
}

.price-card__value {
  font-size: 60px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.price-card__unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.price-card ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}

.price-card li svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.season__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.season__media::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 45%;
  background: linear-gradient(225deg, rgba(11,13,15,0.55) 0%, rgba(11,13,15,0) 70%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .season__media { aspect-ratio: auto; border-radius: 0; min-height: 460px; }
}

.season__media img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 42%; }

.season__media .season__caption {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  max-width: 160px;
  text-align: right;
  transform: rotate(-20deg);
  transform-origin: right top;
  font-family: 'Hurricane', cursive;
  font-size: 26px;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Benefits */

.benefits { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

@media (min-width: 1024px) {
  .benefits { flex-direction: row; gap: 24px; }
  .benefit { flex: 1; }
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit__icon svg { width: 20px; height: 20px; color: var(--red); }

.benefit__text { font-size: 15px; padding-top: 10px; font-weight: 600; }

.season__cta { margin-top: 28px; }

/* Dark service section */

.service-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-section__head p {
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 520px;
}

.service-section__head p + p { margin-top: 6px; }

.service-packages {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1024px) {
  .service-packages { flex-direction: row; }
}

.service-package {
  flex: 1;
  background: var(--anthracite);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-m);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.service-package__name { font-weight: 700; font-size: 16px; }
.service-package__desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.service-package__price {
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-package__price svg { width: 16px; height: 16px; }

.service-section__cta { margin-top: 28px; }

.service-section__media {
  position: relative;
  z-index: 0;
  margin-top: 40px;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-section__media img { width: 100%; height: 100%; object-fit: cover; }

.service-section__caption { display: none; }

@media (min-width: 1024px) {
  .service-section .container { position: relative; z-index: 1; }
  .service-section__head,
  .service-packages,
  .service-section__cta { position: relative; z-index: 1; }

  .service-section__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin-top: 0;
    border-radius: 0;
    aspect-ratio: auto;
  }
  .service-section__media img {
    object-position: left center;
  }
  .service-section__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,13,15,0.55) 0%, rgba(11,13,15,0.9) 42%, rgba(11,13,15,0.98) 70%);
  }

  .service-section__caption {
    display: block;
    position: absolute;
    z-index: 1;
    top: 40px;
    right: 48px;
    transform: rotate(-20deg);
    transform-origin: right top;
    font-family: 'Hurricane', cursive;
    color: var(--white);
    font-size: 30px;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    text-align: right;
  }
}

/* Teamwear */

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

.teamwear-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-mobile);
}

@media (min-width: 1024px) {
  .teamwear-section__grid {
    grid-template-columns: 38% 23% 1fr;
    grid-template-areas:
      "head    process media"
      "cta     process media";
    align-items: start;
    row-gap: 24px;
    column-gap: 40px;
    padding-left: 48px;
    padding-right: 0;
  }
  .teamwear-section__head { grid-area: head; }
  .teamwear-section__cta { grid-area: cta; margin-top: 0; }
  .process { grid-area: process; align-self: center; }
  .teamwear-section__media { grid-area: media; align-self: stretch; margin-top: 0; }
}

.teamwear-section__head p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
}
.teamwear-section__head p + p { margin-top: 6px; }

.process {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.process::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .process {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    box-shadow: 0 8px 32px rgba(11,13,15,0.06);
    padding: 24px 16px;
    gap: 18px 12px;
  }
}

.process__step {
  flex: 0 0 auto;
  width: 92px;
  text-align: center;
}

@media (min-width: 1024px) { .process__step { width: 30%; } }

.process__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.process__icon svg { width: 24px; height: 24px; color: var(--red); }

.process__num { font-size: 12px; font-weight: 700; color: var(--red); }
.process__label { font-size: 13px; font-weight: 600; margin-top: 2px; }

.teamwear-section__media {
  position: relative;
  margin-top: 32px;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.teamwear-section__media img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1024px) {
  .teamwear-section__media { aspect-ratio: auto; border-radius: 0; min-height: 380px; }
}

.teamwear-section__cta { margin-top: 24px; }
.teamwear-section__cta .btn { width: 100%; }
@media (min-width: 1024px) { .teamwear-section__cta .btn { width: auto; } }

/* Brands */

.brands { background: var(--white); }

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

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.brands__item img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%) contrast(0.9) brightness(0.35);
  opacity: 0.85;
}

.brands__cta { margin-top: 28px; text-align: center; }
.brands__cta .btn { width: 100%; }
@media (min-width: 640px) { .brands__cta .btn { width: auto; } }

@media (min-width: 1024px) {
  .brands__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
  .brands__label { margin-bottom: 0; flex-shrink: 0; }
  .brands__grid {
    margin-top: 0;
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
  .brands__item { padding: 0; }
  .brands__item img { max-height: 24px; }
  .brands__cta { margin-top: 0; flex-shrink: 0; margin-left: auto; }
  .brands__cta .btn {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    color: var(--red);
    font-size: 15px;
  }
  .brands__cta .btn:hover { color: var(--red-dark); }
}

/* Regional break */

.regional-break {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-left: var(--space-mobile);
}
.regional-break img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 15% 50%;
}
.regional-break::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,13,15,0.6) 0%, rgba(11,13,15,0.35) 35%, rgba(11,13,15,0.15) 60%, rgba(11,13,15,0.35) 100%);
}
.regional-break__text {
  position: relative;
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.6);
}

@media (min-width: 1024px) {
  .regional-break { display: none; }
}

/* Trust */

.trust { background: var(--white); }
.trust__list {
  display: flex;
  flex-direction: column;
}
.trust__item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust__item:last-child { border-bottom: none; }
.trust__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust__icon svg { width: 22px; height: 22px; color: var(--red); }
.trust__title { font-weight: 800; font-size: 17px; }
.trust__text { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

@media (min-width: 1024px) {
  .trust__list { flex-direction: row; }
  .trust__item { flex: 1; border-bottom: none; border-right: 1px solid var(--border); padding: 0 32px; }
  .trust__item:last-child { border-right: none; }
}

/* Contact */

.contact {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0;
}
.contact__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
}
.contact__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,15,0.75), rgba(11,13,15,0.96));
}
.contact__inner { position: relative; }
.contact__grid {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .contact__grid { flex-direction: row; justify-content: space-between; }
}
.contact__block { display: flex; gap: 14px; }
.contact__block svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact__label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.contact__value { font-size: 16px; font-weight: 600; line-height: 1.5; }
.contact__value a:hover { color: var(--red); }
.contact__map-link { margin-top: 24px; display: inline-flex; }

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: 48px 24px;
}

.site-footer__logo img { height: 30px; }

.site-footer__middle { margin-top: 36px; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.site-footer__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__grid a svg { width: 16px; height: 16px; opacity: 0.5; }
.site-footer__grid a:hover { color: var(--red); }

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.site-footer__socials {
  display: flex;
  gap: 14px;
}
.site-footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__socials svg { width: 18px; height: 18px; }

.site-footer__caption {
  display: none;
}

.site-footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.site-footer__bottom a:hover { color: var(--white); }

@media (min-width: 1024px) {
  .site-footer__middle {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
  .site-footer__grid {
    grid-template-columns: repeat(6, auto);
    gap: 8px 40px;
  }
  .site-footer__grid a { border-bottom: none; padding: 0; }
  .site-footer__meta { margin-top: 0; flex-shrink: 0; }
  .site-footer__caption {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.3;
    text-align: right;
    color: rgba(255,255,255,0.7);
    margin-left: 8px;
  }
  .site-footer__bottom { justify-content: space-between; }
}

/* Placeholder subpages */

.placeholder-page {
  min-height: calc(var(--vh100, 100svh) - 72px);
  display: flex;
  align-items: center;
}
.placeholder-page__inner { padding-block: 64px; }
.placeholder-page h1 { font-size: 34px; font-weight: 800; text-transform: uppercase; }
.placeholder-page p { margin-top: 14px; color: var(--text-secondary); font-size: 16px; max-width: 480px; }
.placeholder-page .btn { margin-top: 24px; }

/* Legal pages */

.legal-page { padding-block: 48px; }
.legal-page h1 { font-size: 30px; font-weight: 800; text-transform: uppercase; }
.legal-page h2 { font-size: 18px; font-weight: 700; margin-top: 32px; }
.legal-page p, .legal-page address { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--text-secondary); font-style: normal; }
.legal-page a:hover { color: var(--red); }

/* Subpages: shared components */

.page-hero {
  background: var(--bg-light);
  padding-block: 40px 32px;
}
@media (min-width: 1024px) { .page-hero { padding-block: 72px 48px; } }

.page-hero h1 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin-top: 10px;
}
@media (min-width: 1024px) { .page-hero h1 { font-size: 56px; } }

.page-hero__intro {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 620px;
}

.page-hero--dark { background: var(--black); color: var(--white); }
.page-hero--dark .page-hero__intro { color: rgba(255,255,255,0.75); }

.page-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) { .page-hero__actions { flex-direction: row; } }
.page-hero__actions .btn { width: 100%; }
@media (min-width: 640px) { .page-hero__actions .btn { width: auto; } }

.page-block { padding-block: 40px; }
@media (min-width: 1024px) { .page-block { padding-block: 64px; } }
.page-block--tight { padding-block: 24px; }
@media (min-width: 1024px) { .page-block--tight { padding-block: 32px; } }

.page-block h2.section-heading { font-size: 26px; }
@media (min-width: 1024px) { .page-block h2.section-heading { font-size: 38px; } }

.page-block__intro {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
}

/* Responsive price table: real <table> markup, becomes stacked cards on mobile */

.price-group + .price-group { margin-top: 40px; }
.price-group__title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

@media (min-width: 1024px) {
  .price-table { table-layout: fixed; }
  .price-table th:first-child,
  .price-table td:first-child { width: 40%; }
  .price-table th:not(:first-child),
  .price-table td:not(:first-child) { width: 15%; }
}

.price-table thead th {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 10px;
}
.price-table thead th:first-child { text-align: left; }

.price-table tbody td {
  padding: 12px 10px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.price-table tbody td:first-child { text-align: left; font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: var(--bg-light); }
.price-table tbody td.price-table__value { color: var(--red); font-weight: 800; }

@media (max-width: 767px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tbody tr {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: 14px 16px;
    background: var(--white);
  }
  .price-table tbody tr:nth-child(even) { background: var(--white); }
  .price-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
    border-bottom: none;
    font-size: 14px;
    text-align: right;
  }
  .price-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-secondary);
    text-align: left;
  }
  .price-table tbody td:first-child {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    padding-top: 0;
  }
  .price-table tbody td:first-child::before { content: none; }
}

.price-table-note {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.price-table-note + .price-table-note { margin-top: 8px; }

/* Service package detail cards */

.service-detail-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) { .service-detail-grid { flex-direction: row; } }

.service-detail-card {
  flex: 1;
  background: var(--anthracite);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  color: var(--white);
}
.service-detail-card__name { font-size: 20px; font-weight: 800; }
.service-detail-card__price {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
}
.service-detail-card__price span { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 600; }
.service-detail-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.service-detail-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.service-detail-card li svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* Client / partner logo grid (Teamwear) */

.client-logos {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}
.client-logos--4col { grid-template-columns: repeat(4, 1fr); gap: 16px 8px; }

.client-logos__item { display: flex; align-items: center; justify-content: center; }
.client-logos__item img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  opacity: 0.85;
}

/* Category grid (Sortiment) */

.category-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px;
}
.category-card__title { font-size: 17px; font-weight: 800; }
.category-card__text { margin-top: 6px; font-size: 14px; color: var(--text-secondary); }

/* About page image + text row */

.about-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) { .about-row { flex-direction: row; align-items: center; gap: 56px; } }
.about-row__media { flex: 1; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; }
.about-row__media img { width: 100%; height: 100%; object-fit: cover; }
.about-row__text { flex: 1; }
.about-row__text p { margin-top: 14px; color: var(--text-secondary); font-size: 16px; line-height: 1.6; }
.about-row--reverse { flex-direction: column; }
@media (min-width: 1024px) { .about-row--reverse { flex-direction: row-reverse; } }

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .offer-card img { transition: none; }
}

/* Subpages: Fließtext, Check-Listen, Service-Preisliste */

.block-gap { margin-top: 32px; }

.prose { max-width: 720px; }
.prose p { margin-top: 14px; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.prose p:first-child { margin-top: 0; }
.page-block .prose { margin-top: 16px; }

.check-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 600; line-height: 1.4; }
.check-list svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

.service-list { border-top: 1px solid var(--border); max-width: 860px; }
.service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.service-item__name { flex: 1 1 55%; font-size: 17px; font-weight: 800; line-height: 1.25; }
.service-item__price { font-size: 20px; font-weight: 800; color: var(--red); text-align: right; white-space: nowrap; line-height: 1.3; }
.service-item__price small { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); margin-right: 4px; }
.service-item__desc { flex: 1 0 100%; max-width: 640px; font-size: 14px; line-height: 1.55; color: var(--text-secondary); }

/* FAQ (native details/summary) */

.faq { margin-top: 24px; max-width: 820px; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; flex-shrink: 0; font-size: 26px; font-weight: 400; line-height: 1; color: var(--red); }
.faq__item[open] summary::after { content: '\2013'; }
.faq__item summary:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.faq__answer { padding: 0 40px 18px 0; font-size: 15px; line-height: 1.65; color: var(--text-secondary); }

/* Anfrage-Formular */

.inquiry { background: var(--black); color: var(--white); }
.inquiry__grid { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) {
  .inquiry__grid { flex-direction: row; gap: 72px; }
  .inquiry__intro { flex: 0 0 38%; }
  .inquiry__form { flex: 1; max-width: 640px; }
}
.inquiry__intro p:not(.section-label):not(.inquiry__addr) { margin-top: 14px; color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.6; }
.inquiry__direct { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.inquiry__addr { margin-top: 24px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.inquiry__addr a:hover { color: var(--white); text-decoration: underline; }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-m);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus-visible,
.field textarea:focus-visible { outline: 3px solid var(--red); outline-offset: 1px; }
.field [aria-invalid="true"] { border-color: var(--red); }
.field__error { font-size: 14px; font-weight: 600; color: #FF6B73; }
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; }
.field--check input { flex-shrink: 0; width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--red); }
.field--check label { font-size: 14px; font-weight: 500; line-height: 1.5; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.85); }
.field--check a { text-decoration: underline; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status {
  margin-bottom: 18px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: var(--radius-s);
}

/* Rechtstexte: Listen */

.legal-page ul { margin-top: 12px; padding-left: 20px; list-style: disc; font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.legal-page a { text-decoration: underline; }

.page-block__intro + .price-group { margin-top: 28px; }

/* Textlinks im Fließtext (SEO-Verlinkung), z. B. Startseite "Region" */
.text-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; color: var(--black, #0B0D0F); font-weight: 600; }
.text-link:hover { color: var(--red); }

/* Kundenstimmen (ausgewählte Google-Bewertungen) */
.reviews__list { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 768px) { .reviews__list { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.review { margin: 0; padding: 20px 20px 18px; background: var(--bg-light); border-left: 3px solid var(--red); border-radius: 0 8px 8px 0; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.5; }
.review blockquote p { margin: 0; }
.review figcaption { margin-top: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }
.reviews__link { margin-top: 24px; }

/* Ablauf in Schritten (z. B. Skischuh-Anpassung) */
.steps { list-style: none; counter-reset: step; margin: 28px 0 0; padding: 0; display: grid; gap: 20px; max-width: 720px; }
.steps li { counter-increment: step; position: relative; padding-left: 56px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border: 2px solid var(--red); border-radius: 50%; color: var(--red); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.steps__title { font-weight: 700; font-size: 18px; margin: 0 0 4px; }
.steps li p:not(.steps__title) { margin: 0; color: var(--text-secondary); }
.service-section .text-link { color: #fff; }
.service-section .text-link:hover { color: var(--red); }

/* Sterne der Kundenstimmen (alle Bewertungen sind 5 Sterne) */
.review__stars { display: flex; gap: 2px; margin-bottom: 10px; color: var(--red); }
.review__stars svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }

/* Lange Bewertungen über die volle Breite, Absätze mit Abstand */
.review blockquote p + p { margin-top: 12px; }
@media (min-width: 768px) { .review--long { grid-column: 1 / -1; } }


/* Marke ohne Logo-Datei: Schriftzug im Stil der Logos */
.client-logos__text { font-weight: 800; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); opacity: 0.85; }

/* ===== WhatsApp-Widget: Aufbau, Maße, Farben und Animationen 1:1 nach Chaty (wie auf boudoir.at) ===== */
.wa-chat, .wa-chat * { box-sizing: border-box; }
.wa-chat__sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* Button: WhatsApp-Logo, beim Öffnen blenden WhatsApp-Button und X-Button (Markenrot) ineinander über */
.wa-widget { position: fixed; right: 29px; bottom: 25px; width: 54px; height: 54px; z-index: 997; }
.wa-widget__btn { position: absolute; right: 0; bottom: 0; display: block; width: 54px; height: 54px; padding: 0; border: 0; border-radius: 50%; background: none; box-shadow: 0 16px 24px 0 rgba(73, 104, 126, 0.16); cursor: pointer; line-height: 0; transition: opacity 0.35s ease, visibility 0.35s ease; }
.wa-widget__btn img, .wa-widget__btn svg { display: block; width: 54px; height: 54px; border-radius: 50%; }
.wa-widget__btn:focus-visible { outline: 3px solid #0B0D0F; outline-offset: 3px; }
.wa-widget__main { opacity: 1; z-index: 1099; }
.wa-widget.is-open .wa-widget__main { opacity: 0; visibility: hidden; z-index: 999; }
.wa-widget__x { opacity: 0; visibility: hidden; z-index: 999; }
.wa-widget.is-open .wa-widget__x { opacity: 1; visibility: visible; z-index: 1099; }

/* Tooltip „WhatsApp“ links vom Button (nur mit Maus) */
.wa-widget__main::before, .wa-widget__main::after { display: none; position: absolute; opacity: 0; pointer-events: none; }
.wa-widget__main::after { content: attr(data-tip); right: calc(100% + 10px); top: 50%; z-index: 100; padding: 5px 15px; border-radius: 10px; background: #fff; box-shadow: 0 1.93465px 7.73859px rgba(0, 0, 0, 0.15); color: #333; font-size: 17px; line-height: 21px; text-align: center; white-space: nowrap; transform: translate(-0.5em, -50%); }
.wa-widget__main::before { content: ""; left: -10px; top: 50%; z-index: 1001; border: 5px solid transparent; border-left-color: #fff; border-right-width: 0; transform: translate(-0.5em, -50%); }
@media (hover: hover) {
  .wa-widget:not(.is-open) .wa-widget__main:hover::after, .wa-widget:not(.is-open) .wa-widget__main:hover::before { display: block; opacity: 1; animation: wa-tip-horz 0.3s ease-out forwards; }
}
@keyframes wa-tip-horz { to { opacity: 1; transform: translateY(-50%); } }

/* Fenster: fährt 0,5 s nach oben ein und blendet ein */
.wa-chat { position: fixed; right: 25px; bottom: -25px; z-index: 999999; width: 320px; max-width: calc(100vw - 50px); padding: 0; border-radius: 6px; box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16); opacity: 0; visibility: hidden; pointer-events: none; transition: 0.5s; }
.wa-chat.is-open { bottom: 0; opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(-93px); }
.wa-chat__form { position: relative; margin: 0; border-radius: 8px; background-color: #f0ede7; font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial, Ubuntu, Cantarell, "Fira Sans", sans-serif; }
.wa-chat__header { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; border-top-left-radius: 6px; border-top-right-radius: 6px; background-color: #4aa485; box-shadow: 0 16px 32px 0 rgba(26, 14, 53, 0.161); }
.wa-chat__header-icon { flex: none; width: 30px; height: 30px; margin-right: 7px; }
.wa-chat__header-title { flex: 1; padding-right: 8px; color: #fff; font-size: 15px; }
.wa-chat__close { flex: 0 0 16px; width: 16px; height: 16px; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; line-height: 0; }
.wa-chat__close svg { width: 16px; height: 16px; }
.wa-chat__body { position: relative; z-index: 2; height: 260px; padding: 0; }
.wa-chat__content { display: flex; align-items: flex-start; padding: 20px; }
.wa-chat__avatar { flex: none; width: 30px; height: 30px; margin-right: 15px; }
.wa-chat__avatar img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.wa-chat__message { position: relative; z-index: 2; max-width: calc(100% - 40px); margin: 0; padding: 7px 14px 6px; border: 1px solid rgba(34, 17, 71, 0.08); border-radius: 0 10px 10px 10px; background-color: #fff; font-size: 14px; line-height: 18px; transform-origin: center top; }
.wa-chat__message::before { content: ""; display: block; position: absolute; left: -12px; top: 0; width: 0; height: 0; border-top: 0 solid transparent; border-bottom: 10px solid transparent; border-right: 12px solid #fff; }
.wa-chat__message p { margin: 0; padding: 0; color: #111b21; font-weight: 400; word-wrap: break-word; }
.wa-chat__nick { color: #489d81; font-size: 10px; font-weight: 500; line-height: 14px; }
.wa-chat__time { color: #a1a1a9; font-size: 10px; line-height: 12px; }
.wa-chat__footer { position: relative; padding: 20px 15px; }
.wa-chat__formel { display: flex; margin: 0; padding: 0; }
.wa-chat__data { display: flex; flex: 1; z-index: 1; }
.wa-chat__field { position: relative; display: flex; align-items: center; flex: 1; padding-right: 0; }
.wa-chat__input { flex: 1; width: 100%; height: 40px; margin: 0; padding: 0 10px 0 15px; border: none; border-radius: 24px; outline: 0; background: #fff; box-shadow: none; color: #111b21; font-family: inherit; font-size: 16px; line-height: normal; resize: none; }
.wa-chat__input::placeholder { color: #83a1b7; opacity: 0.4; }
.wa-chat__send { flex: 0 0 40px; width: 40px; height: 40px; min-width: 1px; margin: 0 0 0 10px; padding: 0; border: none; border-radius: 20px; outline: none; background: #c6d7e3; box-shadow: none; cursor: pointer; text-align: center; line-height: 0; }
.wa-chat__send svg { display: inline-block; vertical-align: sub; }
.wa-chat__send:hover, .wa-chat__send:focus { background: #a8c5da; }
.wa-chat__input:not(:placeholder-shown) + .wa-chat__send { background: #25d366; }
.wa-chat__input:not(:placeholder-shown) + .wa-chat__send:hover, .wa-chat__input:not(:placeholder-shown) + .wa-chat__send:focus { background: #22bf5b; }
.wa-chat__send:focus-visible, .wa-chat__close:focus-visible { outline: 2px solid #0B0D0F; outline-offset: 2px; }

/* WhatsApp-Widget erscheint erst nach 3 Sekunden (sanftes Einblenden, funktioniert ohne JavaScript) */
.wa-widget { animation: wa-widget-in 0.6s ease 3s both; }
@keyframes wa-widget-in { from { opacity: 0; visibility: hidden; } to { opacity: 1; visibility: visible; } }
@media (prefers-reduced-motion: reduce) { .wa-widget { animation-duration: 0.01s; } }
