/* ==========================================================================
   Car Wrapping Stuttgart — sauberes, zentrales Stylesheet
   Ersetzt die Elementor/Astra-Widget-Suppe der WordPress-Vorlage.
   Alle Farben/Schriften/Abstände hier zentral justierbar.
   ========================================================================== */

/* Manrope — moderne, edle Sans-Serif (Porsche-Next-Verwandte, lokal gehostet).
   Durchgängige Schriftfamilie wie bei Premium-Automarken (Porsche/Audi/BMW). */
@font-face{
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-400.woff2') format('woff2');
}
@font-face{
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-500.woff2') format('woff2');
}
@font-face{
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-600.woff2') format('woff2');
}
@font-face{
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-700.woff2') format('woff2');
}
@font-face{
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-800.woff2') format('woff2');
}

:root{
  /* Farben */
  --color-bg: #262626;
  --color-text: #ffffff;
  --color-text-soft: #dbdbdb;
  --color-text-mute: #bebebe;
  --color-heading: #e2e2e2;
  --color-heading-strong: #dbdbdb;
  --color-accent: #b8c74b;
  --color-accent-dark: #9aa83c;
  --color-border: rgba(255, 255, 255, .12);
  --color-card-bg: rgba(255, 255, 255, .04);

  /* Schriften */
  --font-heading: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 30px;
  --section-gap: clamp(48px, 8vw, 96px);
  --radius-pill: 999px;
  --radius-md: 14px;
}

/* --- Reset / Basics --- */
*, *::before, *::after{ box-sizing: border-box; }
body.cwx-site{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}
.cwx-site img{ max-width: 100%; height: auto; display: block; }
.cwx-site a{ color: inherit; }

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.h-eyebrow{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  text-align: center;
  letter-spacing: .5px;
  font-size: clamp(32px, 6vw, 67px);
  margin: 0 0 12px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Textblock unter dem Video (SEO-freundlich, echtes HTML) */
.hero-intro{
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
  scroll-margin-top: 80px;
}
.hero-intro .container{ max-width: 900px; }
.hero-intro h1{
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.4;
  margin: 0 0 16px;
}
.hero-intro h2{
  font-family: var(--font-heading);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 29px);
  color: var(--color-text-soft);
  margin: 0 0 20px;
}
.hero-intro p{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 720px;
  color: var(--color-text-soft);
  margin: 0 auto;
}
.hero-scroll{
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll a{
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: var(--radius-pill);
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Leistungs-Teaser (Car Wrapping, Lackschutz, Colored PPF, Design, Werbung)
   ========================================================================== */
.services{ padding: var(--section-gap) 0; }

.service{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: clamp(24px, 5vw, 40px) 0;
}
.service:not(:last-child){ border-bottom: 1px solid var(--color-border); }

.service-media{ width: 100%; display: flex; justify-content: center; }
.service-media img{
  height: clamp(220px, 30vw, 360px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.service-content{ text-align: center; }
.service-content h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.services-title{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  font-size: clamp(32px, 5vw, 60px);
  text-align: center;
  margin: 0 0 clamp(24px, 4vw, 48px);
}
.service-content p{
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto 28px;
}

.service-icons{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.icon-box{ text-align: center; }
.icon-box .icon{
  font-size: 50px;
  color: var(--color-heading);
  display: block;
  margin: 0 auto 12px;
}
.icon-box h3{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 21px;
  color: var(--color-heading-strong);
  margin: 0;
}
.icon-box p{
  font-size: 15px;
  color: var(--color-text-mute);
  margin: 6px 0 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 16px 34px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}
.btn:hover{ background: var(--color-accent-dark); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 700;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); border-color: var(--color-accent); }

/* ==========================================================================
   Standort-Landingpages (SEO)
   ========================================================================== */
.local-hero{ padding: clamp(48px, 8vw, 80px) 0 40px; text-align: center; scroll-margin-top: 80px; }
.local-kicker{
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-accent); font-weight: 700; font-size: 14px; margin: 0 0 14px;
}
.local-hero h1{
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase;
  font-size: clamp(28px, 5vw, 52px); line-height: 1.15; color: #fff; margin: 0 0 18px;
}
.local-lead{
  max-width: 780px; margin: 0 auto 28px;
  color: var(--color-text-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
}
.local-cta-row{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.seo-grid h2 a{ color: inherit; text-decoration: none; }
.seo-grid h2 a:hover{ color: var(--color-accent); }

.local-faq{ padding: var(--section-gap) 0; }
.faq-list{ max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details{
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px; padding: 16px 20px;
}
.faq-list summary{ cursor: pointer; font-weight: 700; color: #fff; list-style-position: inside; }
.faq-list summary::-webkit-details-marker{ color: var(--color-accent); }
.faq-list p{ margin: 12px 0 0; color: var(--color-text-soft); font-size: 15px; line-height: 1.6; }

.local-cta-section{ padding: var(--section-gap) 0; text-align: center; }
.local-cta-section h2{
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 44px); color: var(--color-heading-strong); margin: 0 0 12px;
}
.local-cta-section > .container > p{ color: var(--color-text-mute); margin: 0 0 24px; }

/* ==========================================================================
   Terminbuchung (/angebot/)
   ========================================================================== */
.booking{ padding: 120px 0 clamp(48px, 8vw, 96px); }
.booking h1{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  color: var(--color-heading-strong);
  margin: 0 0 12px;
}
.booking-intro{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--color-text-soft);
}
#appointment-widget-frame{
  width: 100%;
  min-height: 600px;
  border: 0;
  overflow: hidden;
  display: block;
}

/* ==========================================================================
   Unser Anspruch
   ========================================================================== */
.anspruch{ padding: var(--section-gap) 0; }
.anspruch-head{ max-width: 720px; margin: 0 auto 40px; text-align: center; }
.anspruch-head h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-heading);
  margin: 0 0 12px;
}
.anspruch-head p{ color: var(--color-text-mute); margin: 0; }
.anspruch-sub{
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}
.anspruch-list{
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.anspruch-item{ display: flex; gap: 16px; align-items: flex-start; }
.anspruch-item .icon{ font-size: 26px; color: var(--color-accent); flex: none; margin-top: 2px; }
.anspruch-item h3{
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.anspruch-item p{ margin: 0; color: var(--color-text-mute); font-size: 15px; }

/* ==========================================================================
   Kooperationen (Logo-Streifen)
   ========================================================================== */
.partners{ padding: var(--section-gap) 0 calc(var(--section-gap) / 2); text-align: center; }
.partners h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 57px);
  color: var(--color-heading-strong);
  margin: 0 0 12px;
}
.partners > .container > p{ color: var(--color-text-mute); margin: 0 0 36px; }
.partners-track-wrap{ overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners-track{
  display: flex;
  gap: 64px;
  width: max-content;
  animation: partners-scroll 22s linear infinite;
}
.partners-track img{ height: 56px; width: auto; filter: grayscale(1) brightness(1.6); opacity: .85; }
@keyframes partners-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Rezensionen
   ========================================================================== */
.reviews{ padding: var(--section-gap) 0; text-align: center; }
.reviews h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 57px);
  color: var(--color-heading-strong);
  margin: 0 0 12px;
}
.reviews > .container > p{ color: var(--color-text-mute); margin: 0 0 36px; }
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}
.review-card{
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.review-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar{
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: var(--rc, #666);
  color: #fff; font-weight: 700; font-size: 18px;
  display: grid; place-items: center;
}
.review-meta{ display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review-name{ font-weight: 700; font-size: 15px; color: #fff; }
.review-date{ font-size: 12px; color: var(--color-text-mute); }
.review-google{ margin-left: auto; flex: none; }
.review-stars{ display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.review-stars-row{ color: #fbbc04; font-size: 16px; letter-spacing: 2px; }
.review-verified{ display: inline-flex; }
.review-text{ font-size: 14px; color: var(--color-text-soft); margin: 0; line-height: 1.55; }
.review-text.clamp{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-more{
  align-self: flex-start;
  background: none; border: 0; cursor: pointer;
  color: var(--color-text-mute); font-size: 13px; font-weight: 600;
  font-family: var(--font-body); padding: 8px 0 0;
}
.review-more:hover{ color: #fff; }

.reviews-cta{ margin-top: 36px; text-align: center; }
.reviews-google-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-card-bg);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.reviews-google-link:hover{ border-color: var(--color-accent); background: rgba(255,255,255,.07); }

/* ==========================================================================
   Referenzen (Bildergalerie)
   ========================================================================== */
.gallery-section{ padding: var(--section-gap) 0; text-align: center; }
.gallery-section h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 57px);
  color: var(--color-heading-strong);
  margin: 0 0 32px;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-item{ position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item figcaption{
  position: absolute; inset: auto 0 0 0;
  padding: 10px 12px;
  font-size: 13px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
}
.gallery-more{ margin-top: 32px; }
.gallery-more a{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--color-heading-strong);
  text-decoration: none;
}
.gallery-more a:hover{ color: var(--color-accent); }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact{ padding: var(--section-gap) 0; }
.contact h2{
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 57px);
  color: var(--color-heading-strong);
  text-align: center;
  margin: 0 0 32px;
}
.contact-form{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.contact-form .row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
}
.contact-form textarea{ min-height: 120px; resize: vertical; }
.contact-form .radio-group{ display: flex; gap: 24px; }
.contact-form .radio-group label{ display: flex; align-items: center; gap: 8px; font-weight: 400; margin: 0; }
.contact-form .consent{ display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--color-text-mute); }
.contact-form .consent a{ color: var(--color-accent); }
.contact-form button{ justify-self: start; border: 0; cursor: pointer; }

/* ==========================================================================
   Lokale SEO-Textblöcke
   ========================================================================== */
.seo-blocks{ padding: 0 0 var(--section-gap); }
.seo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.seo-grid h2{
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-soft);
  margin: 0 0 10px;
}
.seo-grid p{ font-size: 14px; color: var(--color-text-mute); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: #1c1c1c;
  border-top: 1px solid var(--color-border);
  padding: var(--section-gap) 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-map iframe{ width: 100%; height: 100%; min-height: 280px; border: 0; border-radius: var(--radius-md); }
.footer-logo img{ height: 60px; width: auto; margin-bottom: 16px; }
.footer-info p{ font-size: 15px; color: var(--color-text-soft); margin: 0 0 16px; }
.footer-contact-buttons{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.footer-contact-buttons a{
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
}
.footer-contact-buttons a:hover{ border-color: var(--color-accent); color: var(--color-accent); }
.footer-contact-buttons svg{ width: 16px; height: 16px; fill: currentColor; }
.footer-social{ display: flex; gap: 14px; margin-top: 8px; }
.footer-social a{
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: #fff;
}
.footer-social svg{ width: 16px; height: 16px; fill: currentColor; }
.footer-social a:hover{ border-color: var(--color-accent); color: var(--color-accent); }
.footer-locations{
  border-top: 1px solid var(--color-border);
  padding-top: 22px; margin-bottom: 20px;
}
.footer-locations-title{
  display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
  color: var(--color-text-mute); margin-bottom: 12px;
}
.footer-locations ul{
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  list-style: none; padding: 0; margin: 0; font-size: 14px;
}
.footer-locations a{ color: var(--color-text-soft); text-decoration: none; }
.footer-locations a:hover{ color: var(--color-accent); }
.footer-links{
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  list-style: none; padding: 0; margin: 0 0 20px;
  font-size: 14px;
}
.footer-links a{ text-decoration: none; color: var(--color-text-soft); }
.footer-links a:hover{ color: var(--color-accent); }
.footer-copy{ font-size: 13px; color: var(--color-text-mute); margin: 0; }

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */
.cookie-banner{
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 480px;
  background: #0b0b0c;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 999999;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.cookie-banner.is-hidden{ display: none; }
.cookie-banner-logo{ height: 30px; margin-bottom: 14px; }
.cookie-banner p{ font-size: 14px; color: var(--color-text-soft); margin: 0 0 18px; }
.cookie-banner button{
  width: 100%;
  border: 0; cursor: pointer;
  background: var(--color-accent);
  color: #1c1c1c;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.cookie-banner button:hover{ background: var(--color-accent-dark); }
.cookie-banner button[data-cookie-decline]{
  background: transparent;
  color: var(--color-text-mute);
  border: 1px solid var(--color-border);
}
.cookie-banner button[data-cookie-decline]:hover{ background: transparent; border-color: var(--color-text-mute); color: #fff; }
.cookie-banner-links{ display: flex; gap: 16px; font-size: 13px; }
.cookie-banner-links a{ color: var(--color-text-mute); text-decoration: underline; }

/* Injizierter Consent-Banner (Unterseiten ohne eigenen Banner) */
#cwx-consent-banner{
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 480px;
  background: #0b0b0c;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  z-index: 2147483647;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  font-family: var(--font-body);
}
#cwx-consent-banner p{ font-size: 14px; color: var(--color-text-soft); margin: 0 0 16px; }
#cwx-consent-banner a{ color: var(--color-accent); }
#cwx-consent-banner .cwx-consent-btns{ display: flex; gap: 12px; }
#cwx-consent-banner button{
  flex: 1; border: 0; cursor: pointer; font-weight: 700; font-size: 14px;
  padding: 12px; border-radius: 10px; font-family: var(--font-body);
}
#cwx-consent-banner .cwx-consent-accept{ background: var(--color-accent); color: #1c1c1c; }
#cwx-consent-banner .cwx-consent-accept:hover{ background: var(--color-accent-dark); }
#cwx-consent-banner .cwx-consent-decline{ background: transparent; color: var(--color-text-mute); border: 1px solid var(--color-border); }
#cwx-consent-banner .cwx-consent-decline:hover{ border-color: var(--color-text-mute); color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
  .seo-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .service-icons{ grid-template-columns: 1fr; }
  .contact-form .row{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero{ padding-top: 120px; }
}
