/* ============================================================
   BLOCKGUIDE — Components
   ============================================================ */

/* ════════════════════════════
   MOBILE OVERFLOW-PROTECTION (global)
   ════════════════════════════ */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; }
h1, h2, h3 { word-wrap: break-word; overflow-wrap: break-word; }

/* Mobile: Section-Padding kompakter */
@media (max-width: 768px) {
  .warum, .services, .vergleich, .about, .prozess, .testimonials, .faq, .cta-contact {
    padding: 64px 0 !important;
  }
  .stats-bar { padding: 40px 0 !important; }
  .quote-section { padding: 56px 0 !important; }
  /* Section-Titel auf Handy etwas kleiner */
  .section-title, .warum__title, .about__title, .cta-contact__title {
    font-size: clamp(26px, 6.5vw, 38px) !important;
    line-height: 1.2 !important;
  }
  /* Page-Headers (auf Subseiten) */
  .page-header h1 { font-size: clamp(28px, 7vw, 42px) !important; }
}
@media (max-width: 480px) {
  :root { --px: 18px; }
  .warum, .services, .vergleich, .about, .prozess, .testimonials, .faq, .cta-contact {
    padding: 52px 0 !important;
  }
}

/* ════════════════════════════
   STICKY MOBILE CTA-BAR
   ════════════════════════════ */
.mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 12px env(safe-area-inset-bottom, 10px);
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(15,32,55,0.08);
  }
  .mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
  }
  .mobile-cta a:active { opacity: 0.85; }
  .mcta-whatsapp { background: #25D366; color: #fff; }
  .mcta-call    { background: var(--wine); color: #fff; }
  .mobile-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* Body-Padding damit Content nicht hinter dem Balken verschwindet */
  body { padding-bottom: 76px; }
}

/* ════════════════════════════
   SOCIAL MEDIA ICONS (Footer)
   ════════════════════════════ */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
}
.footer__social a:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-3px);
}
.footer__social svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

/* ════════════════════════════
   VIDEO-GRID & LIGHTBOX
   ════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-card {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  padding: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  font-family: var(--ff-body);
  text-align: left;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,32,55,0.12);
  border-color: transparent;
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a1424;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-card:hover .video-card__thumb img { transform: scale(1.06); }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.video-card:hover .video-card__play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.12);
}
.video-card__play svg {
  width: 22px; height: 22px;
  fill: #15395E;
  margin-left: 3px;
}
.video-card__info {
  padding: 16px 18px;
}
.video-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 3px;
  line-height: 1.3;
}
.video-card__role {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
}

/* Solo-Video (Event) — groß & zentriert */
.video-solo {
  max-width: 920px;
  margin: 0 auto;
}
.video-solo .video-card__play {
  width: 88px; height: 88px;
}
.video-solo .video-card__play svg { width: 32px; height: 32px; }
.video-solo .video-card__info { padding: 24px 28px; }
.video-solo .video-card__name { font-size: 18px; }
.video-solo .video-card__role { font-size: 14px; }

/* Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 35, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
  animation: vlbFade 0.25s ease;
}
.video-lightbox.open { display: flex; }
@keyframes vlbFade { from { opacity: 0; } to { opacity: 1; } }
.video-lightbox__inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.video-lightbox iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 28px;
  font-weight: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.video-lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ════════════════════════════
   GLOBALE MODERN-VARIABLEN
   ════════════════════════════ */
:root {
  --accent-green:      #10B981;
  --accent-green-soft: #D1FAE5;
  --shadow-sm: 0 2px 8px rgba(15,32,55,0.06);
  --shadow-md: 0 8px 24px rgba(15,32,55,0.08);
  --shadow-lg: 0 16px 40px rgba(15,32,55,0.12);
}

/* ════════════════════════════
   BLAU-SEKTIONEN — moderner Hintergrund + Grid-Pattern
   ════════════════════════════ */
.hero,
.about,
.cta-contact,
.page-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(31,74,120,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 100%, rgba(31,74,120,0.4) 0%, transparent 55%),
    linear-gradient(180deg, #15395E 0%, #102D4E 100%);
}
.hero::before,
.about::before,
.cta-contact::before,
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
}
.hero > *,
.about > *,
.cta-contact > *,
.page-header > * {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════
   GHOST-BUTTON & BUTTON-ICONS (global)
   ════════════════════════════ */
.btn-icon { display: inline-flex; align-items: center; gap: 10px; }
.btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ════════════════════════════
   NAVIGATION — immer weiß
   ════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 40px;
}
@media (max-width: 768px) {
  .nav__inner { height: 80px; }
}
.nav__logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__logo-wrap:hover { opacity: 0.75; }
.nav__logo-full {
  display: block;
  flex-shrink: 0;
  height: 88px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 768px) {
  .nav__logo-full { height: 64px; }
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
}
.nav__logo-name {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__logo-name strong {
  font-weight: 700;
}
.nav__logo-sub {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}
.nav__links a:hover { color: var(--wine); }

/* ── Tools-Dropdown ── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__dropdown-trigger svg {
  width: 11px; height: 11px;
  transition: transform 0.25s ease;
}
.nav__dropdown:hover .nav__dropdown-trigger svg,
.nav__dropdown.is-open .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Bridge zwischen Trigger und Menü (verhindert Hover-Flackern) */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 14px;
  pointer-events: none;
}
.nav__dropdown:hover::before { pointer-events: auto; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15,32,55,0.14);
  padding: 10px;
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.18s ease;
}
.nav__dropdown-link:hover { background: var(--cream); }
.nav__dropdown-link.is-active { background: rgba(21,57,94,0.06); }
.nav__dropdown-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.nav__dropdown-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: 0;
  text-transform: none;
}
.nav__dropdown-desc {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.nav__dropdown-soon {
  padding: 12px 16px 8px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-align: center;
  font-style: italic;
}

/* Mobile-Nav — Tools-Label und Items */
.nav__mobile-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
  padding-bottom: 4px;
}

/* Active state — Anchor Scroll-Spy ODER aktuelle Seite */
.nav__links a.is-active,
.nav__links a.active {
  color: var(--wine);
  font-weight: 500;
}
.nav__links a.is-active::after,
.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__cta {
  background: var(--wine);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--wine2); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: all 0.25s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 96px 0 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 48px var(--px);
  gap: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .nav__mobile { inset: 80px 0 0; }
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--wine); }

/* ════════════════════════════
   HERO — Weinrot
   ════════════════════════════ */
.hero {
  padding-top: 96px; /* nav height */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero { padding-top: 80px; }
}
.hero__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 80px 0 60px;
}
.hero__text { padding-right: 40px; }

.hero__overline {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(210,225,250,0.7);
  margin-bottom: 28px;
  display: block;
}
.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-on-wine);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 28px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-card-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* Trust strip at bottom of hero */
.hero__trust {
  border-top: 1px solid var(--wine-border);
  padding: 22px 0;
}
.hero__trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__trust-item {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  padding: 0 48px 0 0;
  letter-spacing: 0.02em;
}
.hero__trust-item:first-child { padding-left: 0; }
.hero__trust-sep {
  width: 1px; height: 16px;
  background: var(--wine-border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* ════════════════════════════
   QUOTE SECTION — Creme
   ════════════════════════════ */
.quote-section {
  background: var(--cream2);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.quote-section blockquote {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto;
}

/* ════════════════════════════
   WARUM SECTION — Weiß
   ════════════════════════════ */
.warum {
  background: var(--white);
  padding: 100px 0;
}
.warum__head {
  margin-bottom: 64px;
}
.warum__head .overline { margin-bottom: 16px; display: block; }
.warum__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 20px;
}
.warum__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
}
.warum__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.warum__col-title {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.warum__list {
  list-style: none;
}
.warum__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.warum__list li::before {
  content: '•';
  color: var(--overline-c);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ════════════════════════════
   SERVICES — Creme
   ════════════════════════════ */
.services {
  background: var(--cream);
  padding: 100px 0;
}
.section-head {
  margin-bottom: 60px;
}
.section-head .overline { margin-bottom: 14px; display: block; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}
.section-title--center { text-align: center; }
.section-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 640px;
  margin-top: 16px;
}
.section-body--center { max-width: 560px; margin: 16px auto 0; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}
.svc {
  background: var(--white);
  padding: 40px 36px 44px;
  transition: background 0.2s;
}
.svc:hover { background: var(--cream2); }
.svc__overline {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--overline-c);
  margin-bottom: 16px;
  display: block;
}
.svc__title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.svc__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

/* ════════════════════════════
   VERGLEICH — Weiß
   ════════════════════════════ */
.vergleich {
  background: var(--white);
  padding: 100px 0;
}
.vergleich__intro {
  max-width: 680px;
  margin-bottom: 52px;
}
.vergleich__intro .overline { margin-bottom: 14px; display: block; }
.vergleich__intro .section-title { margin-bottom: 16px; }
.vergleich__intro p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}
.vtable-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.vtable {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.vtable thead th {
  padding: 18px 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  color: var(--text-body);
}
.vtable thead th:first-child { text-align: left; font-weight: 400; }
.th-wine {
  background: var(--wine) !important;
  color: var(--white) !important;
}
.vtable tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-body);
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.vtable tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
  border-right: 1px solid var(--border);
  min-width: 200px;
}
.vtable tbody tr:last-child td { border-bottom: none; }
.vtable tbody tr:hover td { background: rgba(21,57,94,0.02); }
.td-wine { background: rgba(21,57,94,0.04); }

.v-yes  { color: var(--wine); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.v-no   { color: var(--text-light); font-size: 14px; display: flex; align-items: center; justify-content: center; }
.v-warn { color: #9B6A2A; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.vtable-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ════════════════════════════
   ABOUT / TEAM — Weinrot
   ════════════════════════════ */
.about {
  padding: 100px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.about__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--wine-border);
  background: var(--wine2);
  flex-shrink: 0;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
}
.about__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: rgba(200,220,250,0.3);
}
.about__photo-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-on-wine);
  text-align: center;
}
.about__photo-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(210,225,250,0.55);
  text-align: center;
}
.about__content .overline--light { margin-bottom: 16px; display: block; }
.about__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--text-on-wine);
  line-height: 1.2;
  margin-bottom: 28px;
}
.about__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about__quote {
  border-left: 2px solid rgba(100,150,220,0.4);
  padding: 16px 24px;
  margin: 28px 0;
}
.about__quote p {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.about__link {
  font-size: 14px;
  color: rgba(210,225,250,0.65);
  text-decoration: underline;
  text-decoration-color: rgba(210,225,250,0.3);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
  margin-top: 8px;
  display: inline-block;
}
.about__link:hover { color: var(--text-on-wine); text-decoration-color: rgba(210,225,250,0.65); }

/* ════════════════════════════
   PROZESS — Weiß
   ════════════════════════════ */
.prozess {
  background: var(--white);
  padding: 100px 0;
}
.prozess .section-head { text-align: center; }
.prozess .section-body--center { text-align: center; max-width: 520px; margin: 14px auto 0; }
.prozess-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.pstep {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.pstep:last-child { border-right: none; }
.pstep:hover { background: var(--cream); }
.pstep__num {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--overline-c);
  margin-bottom: 20px;
  display: block;
}
.pstep__title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pstep__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ════════════════════════════
   TESTIMONIALS — Creme
   ════════════════════════════ */
.testimonials {
  background: var(--cream);
  padding: 100px 0;
}
.testimonials .section-head { text-align: center; }
.tgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 40px 36px;
  position: relative;
}
.tcard__qmark {
  font-family: var(--ff-display);
  font-size: 60px;
  line-height: 1;
  color: var(--overline-c);
  opacity: 0.2;
  position: absolute;
  top: 20px; left: 28px;
}
.tcard__text {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-top: 36px;
}
.tcard__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.tcard__city {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ════════════════════════════
   FAQ — Weiß
   ════════════════════════════ */
.faq {
  background: var(--white);
  padding: 100px 0;
}
.faq .section-head { text-align: center; }
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--wine); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--wine); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 640px;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════
   CTA CONTACT — Weinrot
   ════════════════════════════ */
.cta-contact {
  padding: 100px 0;
}
.cta-contact__head {
  text-align: center;
  margin-bottom: 56px;
}
.cta-contact__head .overline--light { margin-bottom: 16px; display: block; }
.cta-contact__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-on-wine);
  margin-bottom: 14px;
}
.cta-contact__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
}
.cta-contact__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.cta-box {
  border: 1px solid var(--wine-border);
  padding: 40px 36px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.cta-box:hover { background: rgba(255,255,255,0.04); border-color: rgba(100,160,240,0.4); }
.cta-box__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(210,225,250,0.55);
  margin-bottom: 14px;
  display: block;
}
.cta-box__value {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-on-wine);
  line-height: 1.5;
}
.cta-box__value a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.cta-box__value a:hover { opacity: 0.7; }
.cta-contact__btn-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════════
   FOOTER — Weinrot dunkel
   ════════════════════════════ */
.footer {
  background: #0A2541;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0 36px;
}
.footer__logo-name {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  display: block;
  margin-bottom: 4px;
}
.footer__logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  display: block;
}
.footer__links,
.footer__nav { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.footer__links a,
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__nav a:hover { color: #FFFFFF; }

/* Layout-Wrapper (verschiedene Seiten nutzen unterschiedliche Klassen) */
.footer__top,
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer__brand .footer__logo { text-decoration: none; display: block; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer__copy,
.footer__bottom p,
.footer__legal a,
.footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal,
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal a:hover,
.footer__legal-links a:hover { color: #FFFFFF; }

@media (max-width: 1024px) {
  .footer__top, .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer__top, .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 1024px) {
  .hero__main { grid-template-columns: 1fr; }
  .hero__img { display: none; }
  .hero__body { max-width: 100%; }
  .warum__cols { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-wrap { flex-direction: row; align-items: flex-start; }
  .about__photo { width: 160px; height: 160px; }
  .prozess-steps { grid-template-columns: 1fr; }
  .pstep { border-right: none; border-bottom: 1px solid var(--border); }
  .pstep:last-child { border-bottom: none; }
  .tgrid { grid-template-columns: 1fr; }
  .cta-contact__boxes { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__trust-item { padding: 0 24px 0 0; font-size: 12px; }
  .hero__trust-sep { margin-right: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about__photo-wrap { flex-direction: column; align-items: center; }
  .vtable-wrap { font-size: 13px; }
}

@media (max-width: 480px) {
  .hero__trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__trust-sep { display: none; }
  .btn { padding: 13px 28px; font-size: 13px; }
}
