/* ═══════════════════════════════════════
   Roland Gässler Beschichtungs GmbH
   Website CSS — geladen NACH tokens.css
   ═══════════════════════════════════════ */

/* ══════════════════════════════
   NAVIGATION — REDESIGN
   ══════════════════════════════ */
.nav__logo {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: .01em;
  position: relative;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--color-primary); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active {
  color: var(--color-primary);
  font-weight: 600;
}
.nav__tel-text { display: none; }
.nav__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
}
.nav__tel:hover { color: var(--color-primary); }

/* ── Dropdown ── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-arrow {
  transition: transform .2s;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav__dropdown-item:hover {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}
.nav__dropdown-item--all {
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  background: #fff;
  border-top: 1px solid var(--color-border);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: var(--font-body);
  cursor: pointer;
}
.nav__mobile-link:last-of-type { border-bottom: none; }
.nav__mobile-link--active { color: var(--color-primary); font-weight: 600; }

/* Mobile Leistungen Toggle */
.nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__mobile-arrow {
  transition: transform .25s;
}
.nav__mobile-toggle[aria-expanded="true"] .nav__mobile-arrow {
  transform: rotate(180deg);
}
.nav__mobile-sub {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
}
.nav__mobile-sub + .nav__mobile-link {
  border-top: 1px solid var(--color-border);
}
.nav__mobile-sub.is-open {
  display: flex;
}
.nav__mobile-sublink {
  padding: 10px 0 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.nav__mobile-sublink:hover {
  color: var(--color-primary);
}
.nav__mobile-sublink--all {
  font-weight: 600;
  color: var(--color-primary);
  padding-top: 12px;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__tel-text { display: inline; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ══════════════════════════════
   HOMEPAGE HERO — Full-Width Overlay
   ══════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--color-ink);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,.88) 0%,
    rgba(26,26,26,.72) 40%,
    rgba(26,26,26,.5) 100%
  );
}
.home-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
  color: #fff;
}
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.home-hero__badge::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}
.home-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  color: #fff;
  max-width: 700px;
}
.home-hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}
.home-hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 32px;
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 479px) {
  .home-hero__ctas {
    flex-direction: column;
  }
  .home-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* On-dark button variant */
.btn--on-dark {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn--on-dark:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── Bold accent line ── */
.home-hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-primary);
  z-index: 4;
}

@media (max-width: 479px) {
  .home-hero {
    min-height: 70vh;
  }
  .home-hero__content {
    padding: 40px 20px 60px;
  }
  .home-hero__badge {
    font-size: 11px;
  }
  .home-hero__sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
@media (min-width: 900px) {
  .home-hero {
    min-height: 88vh;
  }
  .home-hero__content {
    padding: 100px 40px 120px;
  }
  .home-hero__overlay {
    background: linear-gradient(
      100deg,
      rgba(26,26,26,.9) 0%,
      rgba(26,26,26,.7) 35%,
      rgba(26,26,26,.3) 65%,
      rgba(26,26,26,.15) 100%
    );
  }
}

/* ══════════════════════════════
   TRUST BAR — Numbers strip
   ══════════════════════════════ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 5;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
.trust-bar__item {
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.trust-bar__item:nth-child(2n) { border-right: none; }
.trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }
.trust-bar__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: .02em;
}
@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
  .trust-bar__item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: 36px 20px;
  }
  .trust-bar__item:last-child { border-right: none; }
}

/* ══════════════════════════════
   LEISTUNGEN — Card Grid
   ══════════════════════════════ */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.leistung-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--color-border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.leistung-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.leistung-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.leistung-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.leistung-card:hover .leistung-card__img img {
  transform: scale(1.03);
}
.leistung-card__body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.leistung-card__body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.leistung-card__body p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.leistung-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
}

@media (min-width: 600px) {
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .leistungen-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════
   LEISTUNGEN — Weitere (compact list)
   ══════════════════════════════ */
.leistungen-weitere {
  margin-top: 48px;
}
.leistungen-weitere__heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 24px;
  color: var(--color-ink);
}
.leistungen-weitere__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.leistung-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background-color .2s;
}
.leistung-item:hover {
  background: var(--color-bg-soft);
}
.leistung-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 2px;
}
.leistung-item__content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 4px;
}
.leistung-item__content p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}
.leistung-item--cta {
  background: var(--color-bg-soft);
}
.leistung-item--cta h4 {
  color: var(--color-primary);
}
.leistung-item--cta:hover {
  background: var(--color-border);
}
@media (min-width: 700px) {
  .leistungen-weitere__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════
   LEISTUNG — Detail Page
   ══════════════════════════════ */
.leistung-hero {
  padding: 120px 0 60px;
  background: var(--color-bg-soft);
}
.leistung-hero h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.leistung-hero__teaser {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.6;
  max-width: 38em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--color-primary);
}
.leistung-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.leistung-detail__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 38em;
}
.leistung-detail__sidebar {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px;
}
.leistung-detail__sidebar h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 20px;
  color: var(--color-ink);
}
.leistung-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.leistung-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.leistung-features li:last-child {
  border-bottom: none;
}
.leistung-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
}
.leistung-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .leistung-detail {
    grid-template-columns: 1fr 340px;
  }
  .leistung-hero {
    padding: 140px 0 80px;
  }
}

/* ══════════════════════════════
   ABOUT TEASER (Homepage)
   ══════════════════════════════ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-teaser__text { max-width: 540px; }
.about-teaser__text p {
  color: var(--color-text);
  margin-top: 16px;
  line-height: 1.75;
}
.about-teaser__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-teaser__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about-teaser { grid-template-columns: 1.2fr 1fr; gap: 72px; }
}

/* ══════════════════════════════
   REFERENZEN — Before/After
   ══════════════════════════════ */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.ref-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ref-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ref-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-img--placeholder {
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.ref-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.ref-label--before {
  background: linear-gradient(0deg, rgba(26,26,26,.7), transparent);
}
.ref-label--after {
  background: linear-gradient(0deg, rgba(193,39,45,.6), transparent);
}
.ref-caption {
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

@media (max-width: 479px) {
  .ref-pair { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
  .ref-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ══════════════════════════════
   COMPANY TEASER (Homepage)
   ══════════════════════════════ */
.company-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.company-teaser__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.company-teaser__logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
}
.company-teaser__logo2 {
  max-width: 110px;
  width: 100%;
  height: auto;
}
.company-teaser__left h2 {
  margin-bottom: 16px;
}
.company-teaser__left p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
.company-teaser__right {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  max-width: 480px;
}
.company-teaser__right img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 767px) {
  .company-teaser__left {
    text-align: center;
  }
  .company-teaser__logos {
    justify-content: center;
  }
  .company-teaser__left p {
    margin-left: auto;
    margin-right: auto;
  }
  .company-teaser__left .btn {
    width: 100%;
    justify-content: center;
  }
  .company-teaser__right {
    margin: 0 auto;
  }
  .company-teaser__logo {
    max-width: 110px;
  }
  .company-teaser__logo2 {
    max-width: 80px;
  }
}
@media (min-width: 768px) {
  .company-teaser__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* ══════════════════════════════
   INSTAGRAM BANNER
   ══════════════════════════════ */
.insta-banner {
  padding: 48px 0;
  background: var(--color-bg-soft);
}
.insta-banner__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.insta-banner__link:hover {
  border-color: #E1306C;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.1);
  transform: translateY(-2px);
}
.insta-banner__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 12px;
  color: #fff;
}
.insta-banner__icon svg {
  stroke: #fff;
}
.insta-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.insta-banner__handle {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-ink);
}
.insta-banner__cta {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.insta-banner__arrow {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform .2s, color .2s;
}
.insta-banner__link:hover .insta-banner__arrow {
  transform: translateX(4px);
  color: #E1306C;
}
@media (max-width: 600px) {
  .insta-banner {
    padding: 32px 0;
  }
  .insta-banner__link {
    padding: 20px 16px;
    gap: 14px;
  }
  .insta-banner__arrow {
    display: none;
  }
  .insta-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .insta-banner__icon svg {
    width: 22px;
    height: 22px;
  }
  .insta-banner__handle {
    font-size: 0.9375rem;
    word-break: break-word;
  }
  .insta-banner__cta {
    font-size: 0.8125rem;
  }
}

/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  padding: 28px 24px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.testimonial__stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial__text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial__author {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════
   CTA BLOCK
   ══════════════════════════════ */
.cta-block {
  background: var(--color-ink);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-primary);
}
.cta-block h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-block p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ══════════════════════════════
   KONTAKT
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__block h3 { margin-bottom: 6px; }
.contact-info__block p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
}
.contact-info__phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1.2;
}
.contact-info__phone:hover { color: var(--color-primary-dk); }
.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}

/* ══════════════════════════════
   KONTAKT FORMULAR
   ══════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--color-ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-bg);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371706E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   ÜBER UNS
   ══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about-text { max-width: 580px; }
.about-text p {
  color: var(--color-text);
  margin-top: 14px;
  line-height: 1.75;
}
.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border: 2px dashed var(--color-border);
  aspect-ratio: 3/4;
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  border-radius: var(--r-lg);
}
.facts-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fact {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
}
.fact__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.fact__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.3fr 1fr; gap: 72px; }
  .facts-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════
   PARTNER — Logo Grid
   ══════════════════════════════ */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.partner-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}
.partner-card__logo {
  flex-shrink: 0;
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-card__body h3 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--color-ink);
}
.partner-card__body p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-card__logo {
    width: 120px;
    height: 70px;
  }
}

/* ── About page logo ── */
.about-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
}
@media (min-width: 768px) {
  .about-logo { width: 140px; }
}

/* ══════════════════════════════
   PAGE HEADER (Unterseiten)
   ══════════════════════════════ */
.page-header {
  padding: 120px 0 48px;
  margin-top: var(--nav-h);
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
}
.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
}
.page-header p {
  margin-top: 12px;
  color: var(--color-text);
  max-width: 540px;
  font-size: 16px;
  line-height: 1.7;
}

/* ══════════════════════════════
   LEGAL PAGES
   ══════════════════════════════ */
.legal__content { max-width: 700px; }
.legal__content h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 20px;
}
.legal__content h3 {
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 16px;
}
.legal__content p {
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 15px;
}
.legal__content ul {
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 24px;
  font-size: 15px;
}
.legal__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__content a:hover { color: var(--color-primary-dk); }
.legal__content code {
  background: var(--color-bg-soft);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-size: 13px;
}

/* ══════════════════════════════
   LAYOUT HELPERS
   ══════════════════════════════ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section--soft {
  background: var(--color-bg-soft);
}

/* ══════════════════════════════
   SECTION INTRO (reusable)
   ══════════════════════════════ */
.section__intro {
  max-width: 600px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 16px;
}

/* ══════════════════════════════
   INSTAGRAM / SOCIAL
   ══════════════════════════════ */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, transform .15s;
}
.footer__social-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
