/*
 * PVP Classic – main stylesheet.
 * Direction: Variant C (Regional Network) layout + Archivo typography.
 * Theme chrome (header/footer/nav/buttons) + Gutenberg section classes used
 * by the editable page content (.pvp-hero, .pvp-regions, .pvp-process, ...).
 */

:root {
  --pvp-blue: #2f6682;
  --pvp-blue-dark: #1f4f66;
  --pvp-text: #343946;
  --pvp-ink: #20242e;
  --pvp-muted: #5d626b; /* darkened for WCAG AA on white and soft-grey backgrounds (≥5:1) */
  --pvp-line: #d9dde2;
  --pvp-soft: #f3f5f6;
  --pvp-white: #ffffff;
  --pvp-orange: #f49a23;
  --pvp-red: #d82929;
  --pvp-blue-tint: #eaf0f3;
  --container: 1200px;
  --radius: 16px;
}

/* ---------- Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--pvp-text);
  background: #fbfcfd;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--pvp-blue); }
h1,h2,h3,h4 { font-family: 'Archivo', sans-serif; line-height: 1.08; letter-spacing: -.02em; font-weight: 700; color: var(--pvp-text); margin: 0 0 .6em; text-wrap: balance; scroll-margin-top: 100px; }
section[id], [id] { scroll-margin-top: 100px; }
p { text-wrap: pretty; }

.container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }

/* Accessibility */
.skip-link { position: absolute; left: 1rem; top: -3.5rem; z-index: 200; background: var(--pvp-text); color: #fff; padding: .7rem 1.1rem; border-radius: 6px; text-decoration: none; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:where(a, button, input, textarea, select, [tabindex], summary):focus-visible { outline: 3px solid var(--pvp-orange); outline-offset: 2px; border-radius: 3px; }
main:focus { outline: none; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }

/* ---------- Buttons ---------- */
.btn,
.site-main .wp-block-button__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; padding: .9rem 1.7rem; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary,
.site-main .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--pvp-blue); color: #fff; box-shadow: 0 10px 30px -10px rgba(47,102,130, 0.4);
}
.btn--primary:hover,
.site-main .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  transform: translateY(-3px); background: var(--pvp-blue-dark); color: #fff; box-shadow: 0 15px 35px -10px rgba(31,79,102, 0.6);
}
.site-main .wp-block-button.is-style-outline .wp-block-button__link {
  background: #fff; color: var(--pvp-text); border-color: var(--pvp-text);
}
.site-main .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--pvp-text); color: #fff; transform: translateY(-3px);
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,252,253,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--pvp-line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 100px; }
.site-brand img, .custom-logo { height: 72px; width: auto; } /* +20% (60px → 72px) */
.site-brand__link { display: inline-flex; }
.pvp-nav__list { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.pvp-nav__list a { color: var(--pvp-text); text-decoration: none; font-weight: 700; font-size: 1.19rem; padding: .4rem 0; position: relative; } /* ~19px, slightly above the 18px body size */
.pvp-nav__list a:hover, .pvp-nav__list .current-menu-item > a { color: var(--pvp-blue); }
.pvp-nav__list a::after { content: ""; position: absolute; left: 0; bottom: -.2rem; width: 0; height: 2px; background: var(--pvp-blue); transition: width 0.3s ease; }
.pvp-nav__list a:hover::after, .pvp-nav__list .current-menu-item > a::after { width: 100%; }
.nav-toggle { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--pvp-line); padding: 4rem 0 2rem; margin-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--pvp-line); }
.site-footer__brand img { height: 50px; width: auto; margin-bottom: 1rem; } /* +30% */
.site-footer__brand p { color: var(--pvp-muted); max-width: 34ch; margin: 0; }
.site-footer__title { font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer__address { font-style: normal; color: var(--pvp-muted); line-height: 1.9; }
.site-footer a { color: var(--pvp-text); text-decoration: none; }
.site-footer a:hover { color: var(--pvp-blue); }
.site-footer__menu { list-style: none; margin: 0; padding: 0; }
.site-footer__menu li { padding: .3rem 0; }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; font-size: .85rem; color: var(--pvp-muted); }
.site-footer__powered a { color: var(--pvp-blue); font-weight: 600; }

/* ---------- Floating contact CTA ---------- */
.pvp-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--pvp-orange); color: #241600; font-weight: 700; font-size: 1rem;
  text-decoration: none; padding: .95rem 1.5rem; border-radius: 50px;
  box-shadow: 0 16px 34px -12px rgba(244,154,35,.75);
  transition: transform .2s ease, opacity .25s ease, visibility .25s ease, background .2s ease;
}
.pvp-fab:hover { transform: translateY(-3px); background: #ffab33; color: #241600; }
.pvp-fab.is-hidden { opacity: 0; visibility: hidden; transform: translateY(24px); pointer-events: none; }
.pvp-fab svg { width: 18px; height: 18px; }
@media (max-width: 560px) { .pvp-fab { right: .9rem; bottom: .9rem; padding: .85rem 1.2rem; font-size: .92rem; } }

/* ---------- Eyebrow / lead shared ---------- */
.pvp-eyebrow { font-weight: 700; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pvp-blue); display: flex; align-items: center; gap: .6rem; margin: 0 0 .6rem; }
.pvp-eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--pvp-orange); box-shadow: 0 0 0 4px rgba(244,154,35,.2); }
.pvp-lead { font-size: 1.2rem; color: var(--pvp-muted); }

/* Section rhythm + headings inside content */
.site-main { display: block; }
.pvp-section { padding: 5rem 0; }
.pvp-section > .wp-block-group__inner-container,
.pvp-hero > .wp-block-group__inner-container,
.pvp-cta > .wp-block-group__inner-container,
.pvp-about > .wp-block-group__inner-container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }
.pvp-section h2, .pvp-front h2.wp-block-heading { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; }
.pvp-section__head { max-width: 60ch; margin-bottom: 1rem; }

/* ---------- Hero ---------- */
.pvp-hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(60% 80% at 88% 16%, rgba(47,102,130,.12), transparent 60%),
    radial-gradient(50% 60% at 8% 92%, rgba(244,154,35,.10), transparent 60%);
}
.pvp-hero .wp-block-columns { align-items: center; gap: 3rem; }
.pvp-hero h1 { font-size: clamp(2.8rem, 5.8vw, 4.7rem); font-weight: 800; margin: 1rem 0 1.2rem; }
.pvp-hero h1 .pvp-hl { position: relative; color: var(--pvp-blue); white-space: nowrap; }
.pvp-hero h1 .pvp-hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: .07em; height: .32em; background: rgba(244,154,35,.35); z-index: -1; border-radius: 3px; transform: rotate(-1deg); }
.pvp-hero .pvp-lead { max-width: 44ch; }
.pvp-chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 1.6rem 0 0; padding: 0; }
.pvp-chips li { font-size: .85rem; font-weight: 600; padding: .45rem .9rem; border-radius: 50px; background: #fff; border: 1px solid var(--pvp-line); display: inline-flex; align-items: center; gap: .45rem; }
.pvp-chips li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pvp-orange); }
.pvp-chips li.is-hub::before { background: var(--pvp-orange); }

/* Coverage line: all distribution areas, middot-separated (no bubble overload) */
.pvp-coverage { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 1.7rem 0 0; padding: 0; font-size: .95rem; font-weight: 600; color: var(--pvp-text); }
.pvp-coverage li { display: inline-flex; align-items: center; }
.pvp-coverage li:not(:last-child)::after { content: "·"; margin-left: .45rem; color: var(--pvp-orange); font-weight: 800; }
.pvp-hero__media { position: relative; }
.pvp-map-figure { margin: 0; background: #fff; border: 1px solid var(--pvp-line); border-radius: 24px; padding: 1.4rem; box-shadow: 0 50px 90px -50px rgba(31,79,102,.55); }
.pvp-hero__media .pvp-map-figure { transform: rotate(1deg); }
.pvp-map-figure svg { width: 100%; height: auto; }
.pvp-map-badge { position: absolute; top: 1.6rem; left: 1.6rem; z-index: 2; display: inline-flex; align-items: center; gap: .45rem; background: var(--pvp-blue); color: #fff; font-weight: 700; font-size: .78rem; padding: .42rem .85rem; border-radius: 50px; box-shadow: 0 10px 24px -8px rgba(31,79,102, 0.4); backdrop-filter: blur(4px); }
.pvp-map-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pvp-orange); box-shadow: 0 0 0 0 rgba(244,154,35,.7); animation: pvp-badge-pulse 2.4s ease-out infinite; }
@keyframes pvp-badge-pulse { 0% { box-shadow: 0 0 0 0 rgba(244,154,35,.6); } 70% { box-shadow: 0 0 0 7px rgba(244,154,35,0); } 100% { box-shadow: 0 0 0 0 rgba(244,154,35,0); } }
@media (prefers-reduced-motion: reduce) { .pvp-map-badge::before { animation: none; } }

/* ---------- Regions ---------- */
.pvp-regions { background: linear-gradient(180deg,#fff,#fbfcfd); border-top: 1px solid var(--pvp-line); border-bottom: 1px solid var(--pvp-line); }
.pvp-region { background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 1.6rem 1.4rem; height: 100%; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pvp-region:hover { transform: translateY(-5px); border-color: var(--pvp-blue); box-shadow: 0 20px 50px -20px rgba(47,102,130, 0.15); }
/* Category labels use blue, not orange: orange text on white is only ~2.2:1 (fails WCAG AA). */
.pvp-region .pvp-region__tag { color: var(--pvp-blue); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 .4rem; }
.pvp-region.is-hub .pvp-region__tag { color: var(--pvp-blue-dark); }
.pvp-region h3 { font-size: 1.35rem; margin: 0 0 .3rem; }
.pvp-region p { font-size: .92rem; color: var(--pvp-muted); margin: 0; }
.pvp-region .pvp-region__stat { font-size: 1.02rem; color: var(--pvp-text); margin: .1rem 0 .15rem; }
.pvp-region .pvp-region__stat strong { color: var(--pvp-blue); font-weight: 800; font-size: 1.2rem; }
.pvp-region .pvp-region__plz { font-size: .84rem; color: var(--pvp-muted); letter-spacing: .02em; margin: 0; }

/* ---------- Process steps ---------- */
.pvp-process .wp-block-columns { gap: 0; border: 1px solid var(--pvp-line); border-radius: 18px; overflow: hidden; background: #fff; }
.pvp-step { padding: 2rem 1.6rem; border-right: 1px solid var(--pvp-line); height: 100%; transition: background .2s ease; }
.pvp-process .wp-block-column:last-child .pvp-step { border-right: 0; }
.pvp-step:hover { background: var(--pvp-blue-tint); }
.pvp-step .pvp-step__n { font-weight: 800; font-size: 2.6rem; color: var(--pvp-blue); opacity: .25; line-height: 1; margin: 0; }
.pvp-step h3 { font-size: 1.25rem; margin: .6rem 0 .4rem; }
.pvp-step p { font-size: .93rem; color: var(--pvp-muted); margin: 0; }

/* ---------- Map section (Leistungen) ---------- */
.pvp-map-section .wp-block-columns { align-items: center; gap: 3.5rem; }
.pvp-map-section .pvp-map-figure { transform: none; }
.pvp-area-list { columns: 2; column-gap: 2rem; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.pvp-area-list li { break-inside: avoid; display: flex; align-items: center; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--pvp-line); }
.pvp-area-list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--pvp-orange); flex: none; }
.pvp-area-list li.is-hub { font-weight: 700; }
.pvp-area-list li.is-hub::before { background: var(--pvp-orange); width: 12px; height: 12px; }
/* 3-region variant: single-column list of region names */
.pvp-area-list--regions { columns: 1; }
.pvp-map-section .pvp-area-note { color: var(--pvp-muted); margin-top: 1.6rem; max-width: 46ch; }
.pvp-map-section .wp-block-buttons { margin-top: 1.2rem; }

/* ---------- About ---------- */
.pvp-about .wp-block-columns { align-items: center; gap: 3.5rem; }
.pvp-about .pvp-claim { font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 800; line-height: 1.1; }
.pvp-about .pvp-claim .pvp-hl { color: var(--pvp-blue); }
.pvp-about .wp-block-image { border-radius: 20px; overflow: hidden; border: 1px solid var(--pvp-line); transform: rotate(-1deg); }
.pvp-about .wp-block-image img { width: 100%; height: clamp(280px, 38vw, 440px); object-fit: cover; }
.pvp-about figcaption { font-size: .82rem; color: var(--pvp-muted); }

/* ---------- CTA ---------- */
.pvp-cta { padding: 1rem 0 4rem; }
.pvp-cta .pvp-cta__box { background: var(--pvp-text); color: #fff; border-radius: 28px; padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.pvp-cta .pvp-cta__box::before { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 180%; background: radial-gradient(closest-side, rgba(47,102,130,.5), transparent 70%); }
.pvp-cta .pvp-cta__box::after { content: ""; position: absolute; left: -8%; bottom: -50%; width: 45%; height: 160%; background: radial-gradient(closest-side, rgba(244,154,35,.28), transparent 70%); }
.pvp-cta .pvp-cta__box > * { position: relative; }
.pvp-cta .pvp-eyebrow { color: #9fd0e6; justify-content: center; }
.pvp-cta .pvp-cta__box h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 1rem auto; max-width: 20ch; }
.pvp-cta p { color: #c9d0da; max-width: 52ch; margin: 0 auto 2rem; }

/* ---------- Generic inner-page content ---------- */
.pvp-page .pvp-flow > * + * { margin-top: 1.2rem; }
.pvp-page .pvp-section__title { font-size: clamp(2rem, 4vw, 3rem); }
.pvp-page h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.pvp-post-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.pvp-post-card { background: #fff; border: 1px solid var(--pvp-line); border-radius: 12px; padding: 1.6rem; }
.pvp-post-card__title { margin: 0 0 .4rem; }

/* Leistungen spacing tweaks (scoped via :has so other pages are unaffected) */
.pvp-page-hero:has(+ .pvp-process) { padding-bottom: 2rem; }    /* tighter gap: hero intro → "So liefern wir" */
.pvp-page-hero + .pvp-process { padding-top: 2rem; }
.pvp-map-section { padding-top: calc(5rem - 25px); }            /* "Hier liefern wir" block 25px higher */

/* Inner-page hero (Leistungen, Über uns …) – left-aligned content zone.
   Center a contentSize-wide zone via padding and disable the constrained
   layout's per-child centering so narrow text stays left-aligned. */
.pvp-page-hero { padding-top: 4rem; padding-inline: max(1.5rem, calc((100% - var(--container)) / 2)); }
/* Override WordPress' constrained-layout auto-centering so text stays left-aligned. */
.pvp-page-hero > * { margin-inline: 0 !important; max-width: 100%; }
.pvp-page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin: 1rem 0 1rem; max-width: 22ch; }
.pvp-page-hero .pvp-lead { max-width: 62ch; }

/* Generic content card (products, clients) */
.pvp-card { background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 2rem; height: 100%; }
.pvp-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.pvp-card .wp-block-list { list-style: none; margin: 0; padding: 0; }
.pvp-card .wp-block-list li { padding: .5rem 0; border-bottom: 1px solid var(--pvp-line); display: flex; align-items: center; gap: .6rem; }
.pvp-card .wp-block-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pvp-orange); flex: none; }
.pvp-card .wp-block-list li:last-child { border-bottom: 0; }
.pvp-products, .pvp-clients { background: var(--pvp-soft); border-top: 1px solid var(--pvp-line); border-bottom: 1px solid var(--pvp-line); }

/* Logo wall (Auftraggeber / Endkunden) */
.pvp-logos { background: var(--pvp-soft); border-top: 1px solid var(--pvp-line); border-bottom: 1px solid var(--pvp-line); }
.pvp-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.pvp-logo-grid li {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 96px; padding: 1rem; background: #fff; border: 1px solid var(--pvp-line);
  border-radius: 12px; color: var(--pvp-muted); font-weight: 700; letter-spacing: .01em;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.pvp-logo-grid li:hover { border-color: var(--pvp-blue); color: var(--pvp-text); transform: translateY(-3px); }
.pvp-logo-grid img { max-height: 56px; width: auto; filter: grayscale(1); opacity: .8; transition: filter .2s ease, opacity .2s ease; }
.pvp-logo-grid li:hover img { filter: none; opacity: 1; }
@media (max-width: 781px) { .pvp-logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* Anfrage / contact-form section (page footer CTA replacement) */
.pvp-anfrage { background: linear-gradient(180deg, #ffffff, var(--pvp-soft)); border-top: 1px solid var(--pvp-line); }
.pvp-anfrage .wp-block-columns { gap: 3.5rem; align-items: flex-start; }
.pvp-anfrage h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: .8rem 0 1rem; max-width: 18ch; }
.pvp-anfrage > .wp-block-columns > .wp-block-column:first-child > p { color: var(--pvp-muted); }
.pvp-contact-quick { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.pvp-contact-quick li { padding: .35rem 0; }
.pvp-contact-quick a { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--pvp-text); font-weight: 600; }
.pvp-contact-quick a:hover { color: var(--pvp-blue); }
.pvp-contact-quick svg { width: 20px; height: 20px; color: var(--pvp-blue); flex: none; }

/* Legal pages (Datenschutz / Impressum) – readable single text column */
.pvp-legal { padding-top: 2rem; padding-inline: max(1.5rem, calc((100% - 860px) / 2)); }
.pvp-legal > * { margin-inline: 0 !important; max-width: 100%; }
.pvp-legal h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin: 2.6rem 0 .8rem; }
.pvp-legal h2:first-child { margin-top: 0; }
.pvp-legal h3 { font-size: 1.2rem; margin: 1.8rem 0 .5rem; }
.pvp-legal p { margin: 0 0 1rem; }
.pvp-legal a { color: var(--pvp-blue); }
.pvp-legal .wp-block-list { margin: 0 0 1.2rem; padding-left: 1.3rem; list-style: disc; }
.pvp-legal .wp-block-list li { margin: .3rem 0; }

/* Contact (WPForms) container helper */
.pvp-form-card { background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 2rem; }
.pvp-contact-grid .wp-block-columns { gap: 3rem; align-items: flex-start; }
.pvp-contact-grid h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); hyphens: auto; }
.pvp-contact-details { font-style: normal; line-height: 2; }
.pvp-contact-details strong { display: block; font-size: 1.15rem; margin-bottom: .4rem; }

/* Full-width inner-page hero variant (Leistungen, Kontakt) */
.pvp-page-hero--full h1 { max-width: none; }
.pvp-page-hero--full .pvp-lead { max-width: none; }

/* Quick contact cards (Kontakt hero) */
.pvp-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.pvp-contact-card { display: flex; flex-direction: column; gap: .25rem; background: #fff; border: 1px solid var(--pvp-line); border-radius: 14px; padding: 1.5rem; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.pvp-contact-card:hover { transform: translateY(-4px); border-color: var(--pvp-blue); box-shadow: 0 20px 40px -20px rgba(47,102,130, 0.15); }
.pvp-contact-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--pvp-blue-tint); color: var(--pvp-blue); display: grid; place-items: center; margin-bottom: .6rem; }
.pvp-contact-card .ic svg { width: 22px; height: 22px; }
.pvp-contact-card .lbl { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pvp-muted); font-weight: 700; }
.pvp-contact-card .val { font-weight: 700; color: var(--pvp-text); }
@media (max-width: 781px) { .pvp-contact-cards { grid-template-columns: 1fr; } }

/* Location card + OpenStreetMap embed */
.pvp-location-card { background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 2rem; }
.pvp-location-card h2 { font-size: 1.4rem; hyphens: auto; }
/* Static, linked map screenshot (no third-party embed → no consent needed) */
.pvp-map-static { display: block; position: relative; margin: 1.2rem 0 .5rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--pvp-line); }
.pvp-map-static img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .4s ease; }
.pvp-map-static:hover img { transform: scale(1.04); }
.pvp-map-static__cta { position: absolute; left: .8rem; bottom: .8rem; display: inline-flex; align-items: center; gap: .4rem; background: var(--pvp-blue); color: #fff; font-weight: 700; font-size: .85rem; padding: .5rem .9rem; border-radius: 50px; box-shadow: 0 8px 18px -8px rgba(31,79,102,.7); transition: background .2s ease; }
.pvp-map-static__cta svg { width: 16px; height: 16px; }
.pvp-map-static:hover .pvp-map-static__cta { background: var(--pvp-blue-dark); }
.pvp-map-credit { font-size: .72rem; color: var(--pvp-muted); margin: 0; }

/* Endkunden logo wall (image) */
.pvp-logos .wp-block-columns { align-items: center; gap: 3rem; }
.pvp-logo-wall-img { margin: 0; }
.pvp-logo-wall-img img { width: 100%; max-width: 440px; border-radius: 14px; background: #fff; }

/* FAQ accordion */
.pvp-faq .wp-block-details { background: #fff; border: 1px solid var(--pvp-line); border-radius: 12px; padding: 1.1rem 1.5rem; margin-top: .8rem; }
.pvp-faq .wp-block-details summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.pvp-faq .wp-block-details summary::-webkit-details-marker { display: none; }
.pvp-faq .wp-block-details summary::after { content: "+"; color: var(--pvp-blue); font-weight: 800; font-size: 1.5rem; line-height: 1; flex: none; }
.pvp-faq .wp-block-details[open] summary::after { content: "\2013"; }
.pvp-faq .wp-block-details p { color: var(--pvp-muted); margin: .8rem 0 0; }

/* About section with image on the left (Über uns logistics) */
.pvp-about--alt .wp-block-image { transform: rotate(1deg); }

/* Endless vertical logo marquee (Endkunden brands) */
.pvp-logo-marquee { position: relative; height: 460px; overflow: hidden; border-radius: 16px; background: #fff; border: 1px solid var(--pvp-line);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent); }
.pvp-logo-marquee__track { display: flex; flex-direction: column; animation: pvp-logo-scroll 28s linear infinite; }
.pvp-logo-marquee__track img { display: block; width: auto; max-width: 74%; max-height: 40px; height: auto; margin: 15px auto; object-fit: contain; }
@keyframes pvp-logo-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.pvp-logo-marquee:hover .pvp-logo-marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .pvp-logo-marquee { height: auto; -webkit-mask-image: none; mask-image: none; }
  .pvp-logo-marquee__track { animation: none; }
  .pvp-logo-marquee__track img + img { display: none; }
}
/* Marquee placed inside a card (Leistungen products): no inner border/bg – one closed bubble */
.pvp-card .pvp-logo-marquee { border: 0; background: transparent; border-radius: 0; height: 380px; margin-top: 1rem; }
.pvp-products .wp-block-columns { align-items: stretch; }
.pvp-products .wp-block-column > .pvp-card { height: 100%; }

/* Benefit / value cards */
.pvp-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.2rem; }
.pvp-benefit { background: #fff; border: 1px solid var(--pvp-line); border-radius: 16px; padding: 1.8rem 1.6rem; height: 100%; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pvp-benefit:hover { transform: translateY(-4px); border-color: var(--pvp-blue); box-shadow: 0 20px 50px -20px rgba(47,102,130, 0.15); }
.pvp-benefit .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--pvp-blue-tint); color: var(--pvp-blue); display: grid; place-items: center; margin-bottom: 1.1rem; }
.pvp-benefit .ic svg { width: 26px; height: 26px; }
.pvp-benefit h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.pvp-benefit p { color: var(--pvp-muted); font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .pvp-benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pvp-benefit-grid { grid-template-columns: 1fr; } }

/* Focal statement (Über uns) – full-width dark-blue band, centered */
.pvp-statement { background: var(--pvp-blue); color: #fff; text-align: center; padding-inline: 1.5rem; }
/* constrained (non-column) sections need their own inset so content doesn't hit the edges on mobile */
.pvp-values { padding-inline: 1.5rem; }
.pvp-statement .pvp-eyebrow { color: #9fd0e6; justify-content: center; }
.pvp-statement h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); color: #fff; max-width: 34ch; margin: 0 auto; line-height: 1.12; }
.pvp-statement h2 .pvp-hl { color: var(--pvp-orange); }
.pvp-statement__text { max-width: 62ch; margin: 1.6rem auto 0; }
.pvp-statement__text p { color: #d7e6ee; font-size: 1.1rem; }
.pvp-statement__text p + p { margin-top: 1rem; }

/* "Auf einen Blick" facts card (Über uns hero) */
.pvp-facts-card { background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: 0 30px 60px -45px rgba(31,79,102,.5); }
.pvp-facts-card h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pvp-blue); margin-bottom: 1rem; }
.pvp-facts-card dl { margin: 0; }
.pvp-facts-card dl > div { padding: .9rem 0; border-bottom: 1px solid var(--pvp-line); }
.pvp-facts-card dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.pvp-facts-card dt { font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--pvp-muted); font-weight: 700; margin-bottom: .25rem; }
.pvp-facts-card dd { margin: 0; font-weight: 600; color: var(--pvp-text); }

/* Value grid (Anspruch / "Wofür wir stehen") */
.pvp-value-grid { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pvp-value-grid li { display: flex; flex-direction: column; gap: .9rem; background: #fff; border: 1px solid var(--pvp-line); border-radius: var(--radius); padding: 1.6rem 1.5rem; font-weight: 700; font-size: 1.06rem; color: var(--pvp-text); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pvp-value-grid li:hover { transform: translateY(-4px); border-color: var(--pvp-blue); box-shadow: 0 20px 50px -25px rgba(47,102,130,.18); }
.pvp-value-grid .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--pvp-blue-tint); color: var(--pvp-blue); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pvp-value-grid .ic svg { width: 24px; height: 24px; }
@media (max-width: 860px) { .pvp-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pvp-value-grid { grid-template-columns: 1fr; } }

/* Tables (reach data, generic) */
.site-main .wp-block-table table { border-collapse: collapse; width: 100%; }
.site-main .wp-block-table th, .site-main .wp-block-table td { border: 1px solid var(--pvp-line); padding: .7rem 1rem; text-align: left; }
.site-main .wp-block-table th { background: var(--pvp-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pvp-area-list { columns: 1; }
}
@media (max-width: 781px) {
  .pvp-nav { position: fixed; inset: 82px 0 auto 0; background: #fff; border-bottom: 1px solid var(--pvp-line); padding: 1rem 1.5rem 1.5rem; transform: translateY(-120%); transition: transform .25s ease; box-shadow: 0 20px 40px -24px rgba(0,0,0,.3); }
  .pvp-nav.is-open { transform: translateY(0); }
  .pvp-nav__list { flex-direction: column; gap: .2rem; }
  .pvp-nav__list a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--pvp-line); }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 40px; background: none; border: 1px solid var(--pvp-line); border-radius: 8px; padding: 0 9px; }
  .nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; display: block; height: 2px; background: var(--pvp-text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle__bars { position: relative; }
  .nav-toggle__bars::before { position: absolute; top: -7px; left: 0; right: 0; }
  .nav-toggle__bars::after { position: absolute; top: 7px; left: 0; right: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }
  .site-header__cta { display: none; }
  .pvp-hero__media .pvp-map-figure { transform: none; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
