/* ===== HERO ===== */
.wh-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background-color: #070707;
  background-image: url("/Assets/hero-startseite.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wh-bg { display: none; }

.wh-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 90% 80% at 50% 44%,
    rgba(7,7,7,0.68) 0%,
    rgba(7,7,7,0.90) 55%,
    rgba(7,7,7,0.98) 100%
  );
}

.wh-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 70px 40px 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.wh-hero-spacer {
  height: 260px;
  flex-shrink: 0;
}

.wh-content { max-width: 580px; }

.wh-sub {
  color: #ef3030;
  font-size: 15px;
  letter-spacing: 1px;
}

.wh-content h1 {
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: -4px;
  margin: 18px 0 0;
  color: #ffffff;
}

.wh-content h1 span {
  display: block;
  color: #e32929;
}

.wh-divider {
  width: 90px;
  height: 1px;
  background: #e32929;
  margin: 28px 0;
}

.wh-mini {
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin: 0;
}

.wh-price { margin-top: 28px; }

.wh-price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wh-price-label {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.wh-price-big {
  color: #e32929;
  font-size: 32px;
  font-weight: 800;
  vertical-align: baseline;
  line-height: 1;
}

.wh-text {
  margin-top: 35px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 18px;
  max-width: 520px;
}

.wh-btn {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  padding: 18px 32px;
  background: #c0211f;
  border: none;
  text-decoration: none;
  border-radius: 14px;
  transition: 0.25s ease;
  box-shadow: 0 8px 32px rgba(192,33,31,0.45);
}

.wh-btn:hover {
  background: #a81b19;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192,33,31,0.55);
}

.wh-btn-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff; font-size: 22px;
}

.wh-btn small { display: block; color: rgba(255,255,255,0.8); font-size: 13px; }
.wh-btn strong { display: block; color: #ffffff; font-size: 30px; font-weight: 700; letter-spacing: 0.01em; }

/* ===== FEATURE CARDS ===== */
.wh-features {
  max-width: 1300px;
  margin: -260px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wh-feature-card {
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 22px;
  text-align: center;
  border-radius: 18px;
}

.wh-feature-icon {
  display: flex; align-items: center; justify-content: center;
  color: #d6a75f;
}

.wh-feature-icon svg { width: 36px; height: 36px; }

.wh-feature-card h3 {
  font-family: Georgia, serif;
  color: #ffffff; font-size: 20px; margin: 12px 0 0;
}

.wh-feature-card p {
  color: rgba(255,255,255,0.62);
  margin-top: 10px; font-size: 14px; line-height: 1.75;
}

.wh-feature-line {
  width: 50px; height: 1px;
  background: #e32929; margin: 18px auto 0;
}

/* ===== BRANDS ===== */
.wh-brands {
  max-width: 1300px; margin: 0 auto; padding: 150px 40px;
}

.wh-brands-top {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 28px;
}

.wh-brands-sub {
  color: #e32929; text-transform: uppercase; letter-spacing: 4px; font-size: 13px;
}

.wh-brands h2 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 72px; line-height: 0.96; margin: 18px 0 0;
}

.wh-brands h2 span { display: block; color: #e32929; }

.wh-brands-top p {
  color: rgba(255,255,255,0.65); line-height: 2; font-size: 18px; margin: 0; max-width: 620px;
}

.wh-marquee {
  overflow: hidden; margin-top: 90px; position: relative;
}

.wh-marquee::before,
.wh-marquee::after {
  content: ""; position: absolute; top: 0; width: 120px; height: 100%;
  z-index: 2; pointer-events: none;
}

.wh-marquee::before { left: 0; background: linear-gradient(to right, #151515, transparent); }
.wh-marquee::after  { right: 0; background: linear-gradient(to left, #151515, transparent); }

.wh-marquee-track {
  display: flex; gap: 22px; width: max-content;
  animation: whScrollBrands 42s linear infinite;
}

@keyframes whScrollBrands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-logo {
  min-width: 180px; height: 90px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px; padding: 20px 30px;
  transition: 0.3s ease;
}

.brand-logo:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.brand-logo span {
  color: rgba(255,255,255,0.7);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}

.brand-logo:hover span { color: #ffffff; }

/* ===== DEVICES ===== */
.wh-devices {
  max-width: 1300px; margin: 0 auto; padding: 20px 40px 160px;
}

.wh-devices-head {
  max-width: 760px; margin: 0 auto 70px; text-align: center;
}

.wh-devices-sub {
  color: #e32929; text-transform: uppercase; letter-spacing: 4px; font-size: 13px;
}

.wh-devices h2 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 72px; line-height: 0.96; margin: 18px 0 0;
}

.wh-devices h2 span { display: block; color: #e32929; }

.wh-devices-head p {
  margin-top: 28px; color: rgba(255,255,255,0.65); line-height: 2; font-size: 18px;
}

.wh-device-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.wh-device-card {
  position: relative; min-height: 360px; overflow: hidden;
  border-radius: 22px; border: 1px solid rgba(255,255,255,0.1);
  background: #080808;
  display: block; text-decoration: none; color: inherit;
}

.wh-device-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85; transition: 0.4s ease;
}

.wh-device-card::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.42);
}

.wh-device-card:hover img { transform: scale(1.06); opacity: 0.9; }

.wh-device-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 28px;
}

.wh-device-content h3 {
  font-family: Georgia, serif; font-size: 34px;
  line-height: 1.05; color: #ffffff; margin: 0;
}

.wh-device-content p {
  margin: 16px 0 0; color: rgba(255,255,255,0.68); line-height: 1.7;
}

.wh-device-tag {
  display: inline-flex; margin-bottom: 18px; padding: 8px 13px;
  border-radius: 999px; background: rgba(227,41,41,0.14);
  border: 1px solid rgba(227,41,41,0.28); color: #ff4a4a;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* ===== REVIEWS ===== */
.wh-reviews {
  padding: 150px 0 130px; background: #0c0c0c; overflow: hidden;
}

.wh-reviews-inner {
  max-width: 1300px; margin: 0 auto 80px; padding: 0 40px; text-align: center;
}

.wh-reviews-sub {
  color: #e32929; text-transform: uppercase; letter-spacing: 4px; font-size: 13px;
}

.wh-reviews h2 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 64px; line-height: 1.05; letter-spacing: -2px; margin: 20px 0 0;
}

.wh-reviews h2 span { color: #e32929; }

.wh-reviews-desc { color: rgba(255,255,255,0.55); font-size: 18px; margin: 20px 0 0; }

.wh-reviews-badge {
  display: inline-flex; align-items: center; gap: 20px;
  margin-top: 44px; padding: 18px 36px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
}

.wh-reviews-badge-score { font-size: 42px; font-weight: 800; color: #ffffff; line-height: 1; }
.wh-reviews-badge-right { text-align: left; }
.wh-reviews-badge-stars { color: #d6a75f; font-size: 20px; letter-spacing: 3px; }
.wh-reviews-badge-label { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 4px; }
.wh-reviews-badge-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

.wh-reviews-marquee { overflow: hidden; position: relative; margin-bottom: 20px; }

.wh-reviews-marquee::before,
.wh-reviews-marquee::after {
  content: ""; position: absolute; top: 0; width: 160px; height: 100%;
  z-index: 2; pointer-events: none;
}

.wh-reviews-marquee::before { left: 0; background: linear-gradient(to right, #0c0c0c, transparent); }
.wh-reviews-marquee::after  { right: 0; background: linear-gradient(to left, #0c0c0c, transparent); }

.wh-reviews-track {
  display: flex; gap: 20px; width: max-content; padding: 12px 10px;
}

.wh-track-fwd { animation: whRevFwd 65s linear infinite; }
.wh-track-rev { animation: whRevRev 58s linear infinite; }

@keyframes whRevFwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes whRevRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.wh-review-card {
  min-width: 360px; max-width: 360px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 30px; display: flex; flex-direction: column;
}

.wh-rc-stars { color: #d6a75f; font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }

.wh-rc-text {
  color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.8; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; margin: 0 0 22px;
}

.wh-rc-line { width: 100%; height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 20px; }

.wh-rc-author { display: flex; align-items: center; gap: 14px; }

.wh-rc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}

.wh-av-a { background: rgba(227,41,41,0.2);   border: 1px solid rgba(227,41,41,0.35);   color: #ff7070; }
.wh-av-b { background: rgba(214,167,95,0.2);  border: 1px solid rgba(214,167,95,0.35);  color: #d6a75f; }
.wh-av-c { background: rgba(99,155,255,0.18); border: 1px solid rgba(99,155,255,0.28);  color: #7eb3ff; }
.wh-av-d { background: rgba(80,200,140,0.15); border: 1px solid rgba(80,200,140,0.25);  color: #5ec88c; }
.wh-av-e { background: rgba(200,120,255,0.15);border: 1px solid rgba(200,120,255,0.25); color: #c87eff; }

.wh-rc-info strong { display: block; color: #ffffff; font-size: 15px; font-weight: 600; }
.wh-rc-info span   { color: rgba(255,255,255,0.42); font-size: 13px; margin-top: 3px; display: block; }

/* ===== ABLAUF ===== */
.wh-process { padding: 160px 0; background: #111111; }

.wh-process-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

.wh-process-head { margin-bottom: 100px; text-align: center; }

.wh-process-sub { color: #e32929; text-transform: uppercase; letter-spacing: 4px; font-size: 13px; }

.wh-process h2 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 64px; line-height: 1.05; letter-spacing: -2px; margin: 20px 0 0;
}

.wh-process h2 span { color: #e32929; }

.wh-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.wh-process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.wh-process-step:last-child { border-right: none; }

.wh-step-track {
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}

.wh-step-dot {
  width: 64px; height: 64px; border: 1.5px solid #e32929; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 700; color: #e32929; flex-shrink: 0;
  font-family: Georgia, serif; letter-spacing: -1px;
  background: rgba(227,41,41,0.05);
}

.wh-step-line { display: none; }

.wh-step-body h3 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 17px; line-height: 1.4; margin: 0 0 12px;
}

.wh-step-body p { color: rgba(255,255,255,0.52); font-size: 15px; line-height: 1.85; margin: 0; }

/* ===== FAQ ===== */
.wh-faq { padding: 160px 0; background: #0c0c0c; }

.wh-faq-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}

.wh-faq-head { position: sticky; top: 90px; text-align: center; }

.wh-faq-sub { color: #e32929; text-transform: uppercase; letter-spacing: 4px; font-size: 13px; }

.wh-faq h2 {
  font-family: Georgia, serif; color: #ffffff;
  font-size: 56px; line-height: 1.05; letter-spacing: -2px; margin: 20px 0 0;
}

.wh-faq h2 span { color: #e32929; }

.wh-faq-list { display: flex; flex-direction: column; gap: 14px; }

.wh-faq-item {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  background: rgba(255,255,255,0.03); overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.wh-faq-item.wh-open {
  border-color: rgba(227,41,41,0.35); background: rgba(227,41,41,0.025);
}

.wh-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 28px 32px; background: none; border: none; cursor: pointer;
  color: #ffffff; text-align: left; font-size: 17px; font-weight: 600;
  font-family: Arial, Helvetica, sans-serif; line-height: 1.4;
  transition: background 0.2s ease;
}

.wh-faq-q:hover { background: rgba(255,255,255,0.02); }

.wh-faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(227,41,41,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #e32929; flex-shrink: 0;
  transition: transform 0.32s ease, background 0.32s ease;
}

.wh-faq-item.wh-open .wh-faq-icon { transform: rotate(45deg); background: rgba(227,41,41,0.12); }

.wh-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

.wh-faq-item.wh-open .wh-faq-a { max-height: 300px; }

.wh-faq-a-inner {
  padding: 24px 32px 32px; border-top: 1px solid rgba(255,255,255,0.06);
}

.wh-faq-a-inner p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.9; margin: 0; }

/* ===== TABLET 980px ===== */
@media (max-width: 980px) {
  .wh-hero { min-height: auto; }

  .wh-container { padding: 60px 24px 0; justify-content: center; }
  .wh-hero-spacer { height: 190px; }
  .wh-features { grid-template-columns: repeat(3,1fr); padding: 0 24px; margin: -190px auto 0; gap: 16px; }
  .wh-feature-card { padding: 22px 16px; }
  .wh-content { max-width: 560px; text-align: center; }
  .wh-content h1 { font-size: 56px; letter-spacing: -3px; }
  .wh-divider { width: 160px; margin: 22px auto; }
  .wh-price-label { font-size: 14px; }
  .wh-price-big { font-size: 26px; }
  .wh-btn { padding: 16px 24px; gap: 16px; }
  .wh-btn strong { font-size: 22px; }
  .wh-feature-card h3 { font-size: 17px; }

  .wh-brands { padding: 80px 24px; }
  .wh-brands h2 { font-size: 48px; }
  .wh-brands-top p { font-size: 17px; }

  .wh-devices { padding: 20px 24px 80px; }
  .wh-devices h2 { font-size: 48px; }
  .wh-device-grid { grid-template-columns: 1fr; gap: 16px; }
  .wh-device-card { min-height: 320px; }

  .wh-reviews { padding: 90px 0 80px; }
  .wh-reviews-inner { padding: 0 24px; margin-bottom: 48px; }
  .wh-reviews h2 { font-size: 44px; letter-spacing: -1px; }
  .wh-reviews-badge { gap: 14px; padding: 14px 24px; }
  .wh-reviews-badge-score { font-size: 34px; }
  .wh-review-card { min-width: 290px; max-width: 290px; }

  .wh-process { padding: 80px 0; }
  .wh-process-inner { padding: 0 24px; }
  .wh-process h2 { font-size: 44px; letter-spacing: -1px; }
  .wh-process-steps { grid-template-columns: 1fr; gap: 40px; }
  .wh-step-body h3 br { display: none; }

  .wh-faq { padding: 80px 0; }
  .wh-faq-inner { padding: 0 24px; grid-template-columns: 1fr; gap: 0; }
  .wh-faq-head { position: static; margin-bottom: 44px; }
  .wh-faq h2 { font-size: 40px; letter-spacing: -1px; }
  .wh-faq-q { font-size: 15px; padding: 20px 22px; }
  .wh-faq-a-inner { padding: 16px 22px 22px; }
}

/* ===== MOBILE 640px ===== */
@media (max-width: 640px) {
  .wh-hero { min-height: auto; }
  .wh-overlay { background: radial-gradient(ellipse 100% 80% at 50% 40%, rgba(7,7,7,0.75) 0%, rgba(7,7,7,0.97) 100%); }

  .wh-container { padding: 60px 20px 0; text-align: center; justify-content: center; }
  .wh-hero-spacer { height: 110px; }
  .wh-content { max-width: 100%; width: 100%; }
  .wh-sub { font-size: 13px; }
  .wh-content h1 { font-size: 38px; letter-spacing: -0.5px; line-height: 1.02; hyphens: none; word-break: normal; }
  .wh-divider { width: 130px; margin: 18px auto; }
  .wh-price { margin-top: 18px; }
  .wh-price-label { font-size: 13px; }
  .wh-price-big { font-size: 22px; }
  .wh-btn { width: 100%; justify-content: center; padding: 16px 20px; gap: 14px; margin-top: 24px; }
  .wh-btn-icon { width: 38px; height: 38px; font-size: 18px; }
  .wh-btn small { font-size: 12px; }
  .wh-btn strong { font-size: 20px; }

  .wh-features { grid-template-columns: repeat(3,1fr); margin: -110px auto 0; padding: 0 16px; gap: 10px; }
  .wh-feature-card { padding: 18px 10px; }
  .wh-feature-card h3 { font-size: 13px; margin-top: 8px; line-height: 1.3; }
  .wh-feature-card p { display: none; }
  .wh-feature-icon svg { width: 26px; height: 26px; }
  .wh-feature-line { display: none; }

  .wh-brands { padding: 90px 20px; }
  .wh-brands h2 { font-size: 44px; letter-spacing: -1px; }
  .wh-brands-top p { font-size: 16px; line-height: 1.8; }
  .brand-logo { min-width: 160px; height: 88px; }
  .brand-logo img { width: 110px; height: 44px; }

  .wh-devices { padding: 10px 20px 90px; }
  .wh-devices h2 { font-size: 44px; letter-spacing: -1px; }
  .wh-devices-head p { font-size: 16px; }
  .wh-device-grid { grid-template-columns: 1fr; gap: 16px; }
  .wh-device-card { min-height: 290px; }
  .wh-device-content h3 { font-size: 30px; }
  .wh-device-content p { font-size: 15px; }

  .wh-reviews { padding: 90px 0 80px; }
  .wh-reviews-inner { padding: 0 20px; margin-bottom: 50px; }
  .wh-reviews h2 { font-size: 40px; letter-spacing: -1px; }
  .wh-reviews-desc { font-size: 16px; }
  .wh-reviews-badge { gap: 12px; padding: 14px 20px; }
  .wh-reviews-badge-score { font-size: 34px; }
  .wh-reviews-badge-stars { font-size: 18px; }
  .wh-reviews-badge-label { font-size: 12px; }
  .wh-reviews-marquee::before,
  .wh-reviews-marquee::after { width: 50px; }
  .wh-review-card { min-width: 275px; max-width: 275px; padding: 24px; }
  .wh-rc-text { font-size: 14px; }

  .wh-process { padding: 90px 0; }
  .wh-process-inner { padding: 0 20px; }
  .wh-process h2 { font-size: 42px; letter-spacing: -1px; }
  .wh-process-head { margin-bottom: 56px; }
  .wh-process-steps { grid-template-columns: 1fr; gap: 44px; }
  .wh-step-dot { width: 58px; height: 58px; font-size: 18px; }
  .wh-step-body h3 { font-size: 22px; }
  .wh-step-body p { font-size: 16px; }

  .wh-faq { padding: 90px 0; }
  .wh-faq-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 0; }
  .wh-faq-head { position: static; margin-bottom: 44px; }
  .wh-faq h2 { font-size: 38px; letter-spacing: -1px; }
  .wh-faq-q { font-size: 16px; padding: 20px 20px; gap: 14px; }
  .wh-faq-icon { width: 28px; height: 28px; }
  .wh-faq-a-inner { padding: 16px 20px 22px; }
  .wh-faq-a-inner p { font-size: 15px; }

  .wh-person { padding: 80px 0; }
  .wh-person-inner { flex-direction: column-reverse; gap: 40px; padding: 0 20px; }
  .wh-person-content { max-width: 100%; }
  .wh-person-photo { width: 100%; max-width: 320px; height: 340px; margin: 0 auto; }

  .wh-anfahrt { padding: 80px 0; }
  .wh-anfahrt-inner { flex-direction: column; gap: 40px; padding: 0 20px; }
  .wh-anfahrt-info { max-width: 100%; }
  .wh-anfahrt-map { width: 100%; height: 280px; }
  .wh-anfahrt h2 { font-size: 38px; }
}

/* ===== ANSPRECHPARTNER ===== */
.wh-person {
  padding: 120px 0;
  background: #0c0c0c;
}

.wh-person-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.wh-person-sub {
  display: block;
  color: #ef2b2d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wh-person-content { flex: 1; }

.wh-person-content h2 {
  font-family: Georgia, serif;
  font-size: 62px;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
}

.wh-person-content h2 span { color: #e32929; }

.wh-person-content p {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 0 36px;
}

.wh-person-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: #c0211f;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background .25s, transform .25s;
}

.wh-person-call:hover { background: #a81b19; transform: translateY(-2px); }

.wh-person-call-icon { font-size: 20px; }

.wh-person-call small {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .75;
}

.wh-person-call strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
}

.wh-person-photo {
  width: 420px;
  height: 520px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(239,43,45,.2);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.wh-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===== ANFAHRT ===== */
.wh-anfahrt {
  padding: 120px 0;
  background: #111;
}

.wh-anfahrt-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.wh-anfahrt-sub {
  display: block;
  color: #ef2b2d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wh-anfahrt-info {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wh-anfahrt-info h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 32px;
}

.wh-anfahrt-info h2 span { color: #e32929; }

.wh-anfahrt-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.wh-anfahrt-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.6;
}

.wh-anfahrt-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: #ef2b2d; }

.wh-anfahrt-row a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}

.wh-anfahrt-row a:hover { color: #fff; }


.wh-anfahrt-map {
  flex: 1;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.wh-anfahrt-map iframe { display: block; width: 100%; height: 100%; }

/* ===== TABLET Ansprechpartner & Anfahrt (980px) ===== */
@media (max-width: 980px) {
  .wh-person { padding: 90px 0; }
  .wh-person-inner { flex-direction: column-reverse; gap: 48px; padding: 0 24px; }
  .wh-person-content { max-width: 100%; text-align: center; }
  .wh-person-content p { max-width: 100%; }
  .wh-person-call { margin: 0 auto; }
  .wh-person-photo { width: 100%; max-width: 360px; height: 400px; margin: 0 auto; }
  .wh-person-content h2 { font-size: 48px; }

  .wh-anfahrt { padding: 90px 0; }
  .wh-anfahrt-inner { flex-direction: column; gap: 40px; padding: 0 24px; }
  .wh-anfahrt-info { flex: none; }
  .wh-anfahrt-info h2 { font-size: 44px; }
  .wh-anfahrt-map { min-height: 340px; }
}
