/* Scoped Portfolio Gutenberg blocks. Original UI rules are restricted to .vzpfb-scope. */
/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO — Attorney Vera Zambrano & Associates
   WCAG 2.2 AA Compliant · Responsive · European Editorial Style
═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────────── */

.vzpfb-scope {
  /* Home-page brand tokens — matched to styles.css */
  --color-primary:      #3A3F5C;
  --color-primary-dark: #2a2e44;
  --color-secondary:    #B8A1B0;
  --color-accent:       #C8B27D;
  --color-accent-dark:  #b09a63;
  --color-accent-readable: #7B6428;
  --color-bg:           #F8F6F4;
  --color-bg-warm:      #F2EDEA;
  --color-form-bg:      #EAD9D3;
  --color-text:         #5F6472;
  --color-text-dark:    #2E3144;
  --color-text-light:   #707584;
  --color-white:        #ffffff;
  --color-border:       #e2dcd8;
  --color-border-light: #ede9e6;
  --color-accent-soft:  #EFE6D0;
  --color-line:         rgba(184, 161, 176, 0.28);
  --color-gold-star:    #B8962A;

  /* Portfolio aliases kept so the current UI/UX and scripts remain intact. */
  --clr-primary:      var(--color-primary);
  --clr-primary-deep: var(--color-primary-dark);
  --clr-secondary:    var(--color-secondary);
  --clr-accent:       var(--color-accent);
  --clr-accent-dark:  var(--color-accent-readable);
  --clr-accent-soft:  var(--color-accent-soft);
  --clr-bg:           var(--color-bg);
  --clr-surface:      var(--color-white);
  --clr-text:         var(--color-text);
  --clr-text-strong:  var(--color-text-dark);
  --clr-line:         var(--color-line);
  --clr-gold-star:    var(--color-gold-star);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --ff-heading:   var(--font-display);
  --ff-body:      var(--font-body);

  --container:    min(1160px, calc(100% - 2.5rem));
  --r-sm:         6px;
  --r-md:         14px;
  --r-lg:         22px;
  --r-xl:         36px;
  --shadow-card:  0 4px 24px rgba(58, 63, 92, 0.09);
  --shadow-lift:  0 12px 48px rgba(58, 63, 92, 0.14);
  --t:            240ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────────────── */

.vzpfb-scope *,
.vzpfb-scope *::before,
.vzpfb-scope *::after { box-sizing: border-box; }

.vzpfb-scope * { margin: 0; }

.vzpfb-scope {color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;}

.vzpfb-scope img,
.vzpfb-scope svg { display: block; max-width: 100%; }

.vzpfb-scope img { height: auto; }

.vzpfb-scope a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

/* ── WCAG 2.2 Focus Styles ──────────────────────────────────────── */

body:not(.block-editor-page) .vzpfb-scope :focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.vzpfb-scope ::selection {
  background: var(--clr-accent-soft);
  color: var(--clr-primary);
}

/* ── Layout Utilities ────────────────────────────────────────────── */

.vzpfb-scope .container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Typography ──────────────────────────────────────────────────── */

.vzpfb-scope h1,
.vzpfb-scope h2,
.vzpfb-scope h3,
.vzpfb-scope h4 {
  font-family: var(--ff-heading);
  color: var(--clr-primary);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.vzpfb-scope h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); }

.vzpfb-scope h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }

.vzpfb-scope h3 { font-size: clamp(1.05rem, 1.7vw, 1.35rem); }

.vzpfb-scope p { text-wrap: pretty; }

.vzpfb-scope .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-readable); /* WCAG AA on light backgrounds */
  line-height: 1.3;
}

.vzpfb-scope .eyebrow::before {
  content: none; /* removes the decorative/cat-eye line */
  display: none;
}

.vzpfb-scope .eyebrow svg {
  color: currentColor;
  stroke: currentColor;
}

.vzpfb-scope .eyebrow--light {
  color: var(--color-accent); /* WCAG AA on the dark primary hero background */
}

.vzpfb-scope .section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vzpfb-scope .section-header .eyebrow {
  justify-content: center;
  margin-bottom: 0.9rem;
}

.vzpfb-scope .section-header h2 { margin-bottom: 1rem; }

.vzpfb-scope .section-intro {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--clr-text);
}

.vzpfb-scope .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--clr-accent-dark);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap var(--t), color var(--t);
  min-height: 44px; /* WCAG touch target */
  padding-block: 0.5rem;
}

.vzpfb-scope .link-arrow:hover { gap: 0.75rem; color: var(--clr-primary); }

.vzpfb-scope .link-arrow:hover svg { transform: translateX(4px); }

.vzpfb-scope .link-arrow svg { transition: transform var(--t); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
.vzpfb-scope *,
.vzpfb-scope *::before,
.vzpfb-scope *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   § 1  HERO
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 820px);
  padding: clamp(3rem, 5.5vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  display: flex;
  align-items: center;
  background: var(--clr-primary);
  overflow: hidden;
}

.vzpfb-scope .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg,
      rgba(43, 47, 66, 0.97) 0%,
      rgba(58, 63, 92, 0.87) 52%,
      rgba(43, 47, 66, 0.74) 100%
    ),
    var(--vzpfb-hero-bg, url('https://rechtsanwalt-berlin-charlottenburg.de/wp-content/uploads/2014/10/slide1.jpg'))
    center / cover no-repeat;
}

.vzpfb-scope .hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent, transparent 56px,
    rgba(200, 178, 125, 0.04) 56px,
    rgba(200, 178, 125, 0.04) 57px
  );
  pointer-events: none;
}

.vzpfb-scope .hero__rule {
  position: absolute;
  inset-block: 0;
  inset-inline-start: clamp(3rem, 10%, 160px);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200, 178, 125, 0.22) 25%,
    rgba(200, 178, 125, 0.22) 75%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.vzpfb-scope .hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr min(500px, 44%);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.vzpfb-scope .hero__copy {
  display: grid;
  gap: 1.4rem;
}

.vzpfb-scope .hero__title {
  color: var(--clr-surface);
  font-size: clamp(2.55rem, 3.2vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.09;
  max-width: 100%;
}

.vzpfb-scope .hero__title em {
  display: block;
  color: var(--clr-accent); /* 4.6:1 on #3A3F5C ✓ */
  font-style: italic;
  font-weight: 400;
  margin-top: 0.12em;
}

.vzpfb-scope .hero__lede {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84); /* approx 12:1 on dark bg ✓ */
  font-size: clamp(0.95rem, 1.3vw, 1.07rem);
  line-height: 1.84;
}

.vzpfb-scope .hero__tagline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  font-weight: 500;
  margin-top: 0.5rem;
}

.vzpfb-scope .hero__tagline-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(200, 178, 125, 0.5);
  flex-shrink: 0;
}

/* ── Stats Panel ─────────────────────────────────────────────────── */

.vzpfb-scope .hero__panel {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  border: 1px solid rgba(200, 178, 125, 0.2);
  border-radius: var(--r-xl);
  background: rgba(43, 47, 66, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Donut Chart Container */

.vzpfb-scope .stat-chart {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200, 178, 125, 0.16);
	flex-direction: column;
}

.vzpfb-scope .stat-chart__graphic {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.vzpfb-scope .donut-svg {
  display: block;
  overflow: visible;
}

/* SVG track ring */

.vzpfb-scope .donut-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 11;
}

/* Unfilled 12% shown faintly */

.vzpfb-scope .donut-bg-arc {
  fill: none;
  stroke: rgba(200, 178, 125, 0.12);
  stroke-width: 11;
  stroke-dasharray: 351.86; /* 2π × 56 */
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 70px 70px;
}

/* Animated fill arc */

.vzpfb-scope .donut-fill {
  fill: none;
  stroke: var(--clr-accent);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-dasharray: 351.86; /* 2π × 56 = 351.858 */
  stroke-dashoffset: 351.86; /* start fully hidden */
  transform: rotate(-90deg);
  transform-origin: 70px 70px;
  transition: stroke-dashoffset 1.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.vzpfb-scope .donut-fill.animated {
  stroke-dashoffset: 42.22; /* 351.86 × (1 - 0.88) = 42.22 → shows 88% */
}

/* Center overlay text */

.vzpfb-scope .donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  pointer-events: none;
}

.vzpfb-scope .donut-center__pct {
  font-family: var(--ff-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.vzpfb-scope .donut-center__sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.vzpfb-scope .stat-chart__legend {
  flex: 1;
}

.vzpfb-scope .stat-chart__legend-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.68;
}

.vzpfb-scope .stat-chart__legend-text strong {
  color: var(--clr-surface);
  font-weight: 600;
}

/* Secondary stats row */

.vzpfb-scope .stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.vzpfb-scope .stat-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid rgba(200, 178, 125, 0.16);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  min-height: 44px; /* WCAG ✓ */
}

.vzpfb-scope .stat-item__value {
  font-family: var(--ff-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--clr-surface);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.vzpfb-scope .stat-item__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════════
   § 2  RECOMMENDED BY
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.recommended {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-line);
}

.vzpfb-scope .recommended__eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.vzpfb-scope .logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.vzpfb-scope .logo-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  filter: grayscale(25%);
  transition: opacity var(--t), filter var(--t), transform var(--t);
  min-height: 44px; /* touch target ✓ */
  padding: 0.25rem;
}

.vzpfb-scope .logo-strip__item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.vzpfb-scope .logo-strip__item img {
  height: 54px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.vzpfb-scope .logo-strip__item--wide img {
  height: 36px;
  max-width: 180px;
}

/* ══════════════════════════════════════════════════════════════════
   § 3  SUCCESS STORIES
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.stories {
  padding: clamp(4.5rem, 7.5vw, 7.5rem) 0;
  background: var(--clr-bg);
}

.vzpfb-scope .stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
}

.vzpfb-scope .story-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.vzpfb-scope .story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(200, 178, 125, 0.35);
}

.vzpfb-scope .story-card__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--clr-accent-soft);
  color: var(--clr-accent-dark);
}

.vzpfb-scope .story-card__icon svg { width: 28px; height: 28px; }

.vzpfb-scope .story-card__title {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  color: var(--clr-primary);
  margin-top: 0.15rem;
}

.vzpfb-scope .story-card__text {
  font-size: 0.875rem;
  line-height: 1.74;
  color: var(--clr-text);
  flex: 1;
}

.vzpfb-scope .story-card__tag {
  display: inline-block;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--clr-bg);
  color: var(--clr-accent-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 178, 125, 0.3);
  margin-top: 0.25rem;
}

.vzpfb-scope .stories__cta {
  text-align: center;
  padding-top: 0.5rem;
}

/* ══════════════════════════════════════════════════════════════════
   § 4  PHILOSOPHY
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.philosophy {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 9vw, 9rem) 0;
  overflow: hidden;
}

.vzpfb-scope .philosophy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(130deg,
      rgba(43, 47, 66, 0.95) 0%,
      rgba(58, 63, 92, 0.88) 55%,
      rgba(43, 47, 66, 0.94) 100%
    ),
    var(--vzpfb-philosophy-bg, url('https://rechtsanwalt-berlin-charlottenburg.de/wp-content/uploads/2018/01/rechtsanwaltskanzlei-berlin-charlottenburg-wilmersdorf-2.jpg'))
    center / cover no-repeat;
}

.vzpfb-scope .philosophy__vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    transparent 40%,
    rgba(43, 47, 66, 0.45) 100%
  );
  pointer-events: none;
}

.vzpfb-scope .philosophy__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.vzpfb-scope .philosophy__content {
  max-width: 840px;
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.vzpfb-scope .philosophy__heading {
  color: var(--clr-surface);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-top: 0.5rem;
}

.vzpfb-scope .philosophy__quote {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.75rem, 4vw, 3.5rem);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 178, 125, 0.26);
  margin-inline: auto;
  max-width: 780px;
}

.vzpfb-scope .philosophy__quote-mark {
  position: absolute;
  top: -0.8rem;
  left: clamp(1.75rem, 4vw, 3.5rem);
  font-family: var(--ff-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--clr-accent);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.vzpfb-scope .philosophy__quote p {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.76;
}

.vzpfb-scope .philosophy__quote footer { margin-top: 1.1rem; }

.vzpfb-scope .philosophy__quote cite {
  color: var(--clr-accent);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.vzpfb-scope .philosophy__body {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.84;
  max-width: 740px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════════════
   § 5  LEAD ATTORNEY
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.attorney {
  padding: clamp(4.5rem, 7.5vw, 8rem) 0;
  background: var(--clr-surface);
}

.vzpfb-scope .attorney__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(3rem, 6.5vw, 7.5rem);
  align-items: start;
}

/* Portrait */

.vzpfb-scope .attorney__portrait { position: sticky; top: 2rem; }

.vzpfb-scope .portrait-wrap { position: relative; }

.vzpfb-scope .portrait-accent {
  position: absolute;
  inset-block-start: -14px;
  inset-inline-end: -14px;
  inset-block-end: auto;
  inset-inline-start: auto;
  width: 62%;
  aspect-ratio: 1 / 1.4;
  border: 2px solid var(--clr-accent);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.vzpfb-scope .portrait-figure {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.vzpfb-scope .portrait-figure img {
  width: 100%;
  aspect-ratio: 3 / 4.5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vzpfb-scope .portrait-badge {
  position: absolute;
  z-index: 2;
  inset-block-end: 2.5rem;
  inset-inline-start: -1.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--clr-primary);
  border-radius: var(--r-md);
  box-shadow: 0 8px 28px rgba(43, 47, 66, 0.3);
  text-align: center;
  display: grid;
  gap: 0.15rem;
}

.vzpfb-scope .portrait-badge__year {
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.vzpfb-scope .portrait-badge__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.vzpfb-scope .portrait-award {
  position: absolute;
  z-index: 2;
  inset-block-start: 1.5rem;
  inset-inline-end: -1rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(43, 47, 66, 0.22);
  background: var(--clr-surface);
}

.vzpfb-scope .portrait-award img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bio */

.vzpfb-scope .attorney__bio {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.vzpfb-scope .attorney__bio .eyebrow { margin-bottom: 0.15rem; }

.vzpfb-scope .attorney__bio h2 { margin-bottom: 0; }

.vzpfb-scope .attorney__subtitle {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-top: -0.5rem;
}

.vzpfb-scope .attorney__intro {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--clr-text-strong);
  padding-top: 0.25rem;
}

.vzpfb-scope .attorney__text {
  font-size: 0.96rem;
  line-height: 1.78;
  color: var(--clr-text);
}

/* Credentials */

.vzpfb-scope .credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  margin-top: 0.25rem;
}

.vzpfb-scope .credentials-block__title {
  font-family: var(--ff-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: 0.8rem;
}

.vzpfb-scope .credentials-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.vzpfb-scope .credentials-list li {
  font-size: 0.835rem;
  line-height: 1.5;
  color: var(--clr-text);
  padding-inline-start: 1rem;
  position: relative;
}

.vzpfb-scope .credentials-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* Languages */

.vzpfb-scope .languages-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding-top: 0.25rem;
}

.vzpfb-scope .languages-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
}

.vzpfb-scope .languages-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}

.vzpfb-scope .lang-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.28rem 0.72rem;
  border: 1px solid var(--clr-line);
  border-radius: 999px;
  background: var(--clr-bg);
  color: var(--clr-primary);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.vzpfb-scope .lang-tag:hover {
  background: var(--clr-accent-soft);
  border-color: var(--clr-accent);
  color: var(--clr-accent-dark);
}

/* ══════════════════════════════════════════════════════════════════
   § 6  MEDIA & TELEVISION
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.media {
  padding: clamp(4.5rem, 7.5vw, 7.5rem) 0;
  background: var(--clr-bg);
}

.vzpfb-scope .media__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.vzpfb-scope .media-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}

.vzpfb-scope .media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.vzpfb-scope .media-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clr-secondary);
}

.vzpfb-scope .media-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.vzpfb-scope .media-card:hover .media-card__visual img { transform: scale(1.05); }

.vzpfb-scope .media-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 47, 66, 0.42);
  opacity: 0;
  transition: opacity var(--t);
}

.vzpfb-scope .media-card:hover .media-card__overlay { opacity: 1; }

.vzpfb-scope .play-btn {
  width: 50px;
  height: 50px;
  min-width: 44px; /* touch target ✓ */
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-surface);
  backdrop-filter: blur(4px);
}

.vzpfb-scope .play-btn svg { width: 22px; height: 22px; margin-left: 2px; }

/* Placeholder visuals for non-image cards */

.vzpfb-scope .media-card__visual--editorial {
  background: var(--clr-accent-soft);
}

.vzpfb-scope .media-card__visual--news {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-line);
}

.vzpfb-scope .media-card__visual--podcast {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-deep, #2B2F42) 100%);
}

.vzpfb-scope .media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  color: var(--clr-primary);
}

.vzpfb-scope .media-placeholder svg { width: 54px; height: 40px; flex-shrink: 0; }

.vzpfb-scope .media-placeholder span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
}

.vzpfb-scope .media-placeholder--dark { color: var(--clr-text); }

.vzpfb-scope .media-placeholder--accent { color: var(--clr-accent); }

.vzpfb-scope .media-card__body {
  padding: 1.15rem 1.3rem 1.5rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.vzpfb-scope .media-card__channel {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
}

.vzpfb-scope .media-card__title {
  font-size: 0.94rem;
  color: var(--clr-primary);
  line-height: 1.35;
}

.vzpfb-scope .media-card__desc {
  font-size: 0.815rem;
  line-height: 1.66;
  color: var(--clr-text);
  margin-top: 0.1rem;
}

/* ══════════════════════════════════════════════════════════════════
   § 7  REVIEWS
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope.reviews {
  padding: clamp(4.5rem, 7.5vw, 7.5rem) 0;
  background: var(--clr-surface);
}

.vzpfb-scope .reviews__platform {
  margin-bottom: 4.5rem;
}

.vzpfb-scope .reviews__platform:last-child { margin-bottom: 0; }

.vzpfb-scope .reviews__platform--google {
  padding-top: 4.5rem;
  border-top: 1px solid var(--clr-line);
}

/* Platform header */

.vzpfb-scope .platform-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--clr-line);
}

.vzpfb-scope .platform-id {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vzpfb-scope .platform-logo svg {
  height: 30px;
  width: auto;
}

.vzpfb-scope .platform-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text);
}

.vzpfb-scope .platform-score {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.vzpfb-scope .score-stars {
  color: #6D4C00;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
}

.vzpfb-scope .score-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--clr-text-strong);
}

/* Review grid */

.vzpfb-scope .reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.vzpfb-scope .review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.4rem, 2.5vw, 1.85rem);
  background: var(--clr-bg);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.vzpfb-scope .review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--clr-surface);
}

.vzpfb-scope .review-card--alt {
  background: var(--clr-surface);
  border-color: rgba(184, 161, 176, 0.2);
}

.vzpfb-scope .review-card--alt:hover {
  background: var(--clr-bg);
}

.vzpfb-scope .review-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.vzpfb-scope .review-card__avatar {
  width: 50px;
  height: 50px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-accent); /* 4.6:1 on #3A3F5C ✓ */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.vzpfb-scope .review-card__avatar--alt {
  background: var(--clr-accent-soft);
  color: var(--clr-accent-dark); /* 5.6:1 on #EFE6D0 ✓ */
}

.vzpfb-scope .review-card__meta {
  flex: 1;
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.vzpfb-scope .review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-strong); /* 9.2:1 ✓ */
  line-height: 1.3;
}

.vzpfb-scope .review-card__context {
  font-size: 0.72rem;
  color: var(--clr-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vzpfb-scope .review-card__stars {
  color: #6D4C00;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.vzpfb-scope .review-card__quote {
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.vzpfb-scope .review-card__quote p {
  font-size: 0.875rem;
  line-height: 1.73;
  color: var(--clr-text);
  font-style: italic;
}

.vzpfb-scope .review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--clr-line);
  margin-top: auto;
}

.vzpfb-scope .review-card__source {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
}

.vzpfb-scope .review-card__date {
  font-size: 0.72rem;
  color: var(--clr-text);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════════ */

/* ── Tablet Landscape (≤ 1100px) ── */

@media (max-width: 1100px) {
.vzpfb-scope .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }

.vzpfb-scope .attorney__inner {
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
  }

.vzpfb-scope .attorney__portrait {
    position: static;
  }
}

/* ── Tablet Portrait (≤ 900px) ── */

@media (max-width: 900px) {
.vzpfb-scope .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

.vzpfb-scope .hero__title { max-width: none; }

.vzpfb-scope .hero__panel { max-width: 540px; }

.vzpfb-scope .stat-row { grid-template-columns: repeat(4, 1fr); }

.vzpfb-scope .attorney__inner {
    grid-template-columns: 1fr;
  }

.vzpfb-scope .portrait-wrap {
    max-width: 340px;
    margin-inline: auto;
  }

.vzpfb-scope .portrait-badge {
    inset-inline-start: 1rem;
  }

.vzpfb-scope .credentials-grid {
    grid-template-columns: 1fr;
  }

.vzpfb-scope .stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

.vzpfb-scope .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile Landscape (≤ 680px) ── */

@media (max-width: 680px) {
.vzpfb-scope .media__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

.vzpfb-scope .stat-row { grid-template-columns: repeat(2, 1fr); }

.vzpfb-scope .hero__panel { max-width: 100%; }

.vzpfb-scope .stat-chart {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

.vzpfb-scope .stat-chart__graphic {
    width: 120px;
    height: 120px;
  }
}

/* ── Mobile Portrait (≤ 540px) ── */

@media (max-width: 540px) {
.vzpfb-scope .stories__grid {
    grid-template-columns: 1fr;
  }

.vzpfb-scope .reviews__grid {
    grid-template-columns: 1fr;
  }

.vzpfb-scope .logo-strip {
    gap: 1.25rem;
  }

.vzpfb-scope .logo-strip__item img { height: 44px; max-width: 64px; }

.vzpfb-scope .logo-strip__item--wide img { height: 28px; max-width: 140px; }

.vzpfb-scope .platform-header {
    flex-direction: column;
    align-items: flex-start;
  }

.vzpfb-scope .review-card__context {
    white-space: normal;
  }
}

/* ── Very Small (≤ 400px) ── */

@media (max-width: 400px) {
.vzpfb-scope .credentials-grid { padding: 1rem; gap: 1rem; }

.vzpfb-scope .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   CUSTOM UPDATES — refined stories + accessible sliders
══════════════════════════════════════════════════════════════════ */

.vzpfb-scope .stories--editorial {position:relative;isolation:isolate;overflow:hidden;background:radial-gradient(circle at 10% 10%,rgba(184,161,176,.18),transparent 28rem),radial-gradient(circle at 85% 25%,rgba(200,178,125,.16),transparent 30rem),var(--clr-bg)}

.vzpfb-scope .stories--editorial::before {content:'';position:absolute;inset:4rem auto auto 50%;width:min(82%,980px);height:1px;transform:translateX(-50%);background:linear-gradient(90deg,transparent,rgba(200,178,125,.55),transparent);pointer-events:none}

.vzpfb-scope .stories-showcase {display:grid;grid-template-columns:minmax(280px,.88fr) minmax(0,1.25fr);gap:clamp(1.25rem,3vw,2rem);align-items:stretch}

.vzpfb-scope .stories-feature {position:relative;overflow:hidden;display:grid;align-content:end;gap:1rem;min-height:100%;padding:clamp(1.5rem,3vw,2.35rem);border-radius:var(--r-xl);background:linear-gradient(150deg,rgba(58,63,92,.98),rgba(43,47,66,.96)),repeating-linear-gradient(135deg,rgba(200,178,125,.12),rgba(200,178,125,.12) 1px,transparent 1px,transparent 38px);color:rgba(255,255,255,.82);box-shadow:var(--shadow-lift);align-content: center;}

.vzpfb-scope .stories-feature__mark {width:86px;height:86px;display:grid;place-items:center;border-radius:50%;color:var(--clr-accent);background:rgba(255,255,255,.06);border:1px solid rgba(200,178,125,.32)}

.vzpfb-scope .stories-feature h3 {max-width:11ch;color:var(--clr-surface);font-size:clamp(1.75rem,3.1vw,2.8rem)}

.vzpfb-scope .stories-feature p:not(.eyebrow) {color:rgba(255,255,255,.76);line-height:1.78}

.vzpfb-scope .stories-feature__stats {display:grid;grid-template-columns:repeat(3,1fr);gap:.65rem;margin-top:.45rem}

.vzpfb-scope .stories-feature__stats span {display:grid;gap:.14rem;min-height:76px;align-content:center;padding:.72rem;border-radius:var(--r-md);border:1px solid rgba(200,178,125,.25);background:rgba(255,255,255,.07);color:rgba(255,255,255,.72);font-size:.68rem;line-height:1.35;text-transform:uppercase;letter-spacing:.08em}

.vzpfb-scope .stories-feature__stats strong {color:var(--clr-accent);font-family:var(--ff-heading);font-size:1.35rem;line-height:1;text-transform:none;letter-spacing:0}

.vzpfb-scope .stories-mosaic {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(.9rem,2vw,1.2rem)}

.vzpfb-scope .story-tile {position:relative;display:grid;grid-template-columns:54px minmax(0,1fr);gap:1rem;align-items:start;min-height:178px;padding:clamp(1.1rem,2vw,1.45rem);border:1px solid rgba(184,161,176,.32);border-radius:var(--r-lg);background:rgba(255,255,255,.78);box-shadow:var(--shadow-card);overflow:hidden;transition:transform var(--t),box-shadow var(--t),border-color var(--t),background var(--t)}

.vzpfb-scope .story-tile::after {content:'';position:absolute;inset:auto 0 0;height:4px;background:linear-gradient(90deg,var(--clr-secondary),var(--clr-accent));transform:scaleX(.22);transform-origin:left;transition:transform var(--t)}

.vzpfb-scope .story-tile:hover {transform:translateY(-5px);border-color:rgba(200,178,125,.52);background:var(--clr-surface);box-shadow:var(--shadow-lift)}

.vzpfb-scope .story-tile:hover::after {transform:scaleX(1)}

.vzpfb-scope .story-tile__icon {width:54px;height:54px;display:grid;place-items:center;border-radius:18px;background:var(--clr-accent-soft);color:var(--clr-accent-dark);border:1px solid rgba(200,178,125,.35)}



.vzpfb-scope .story-tile__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.vzpfb-scope .story-tile__icon svg {width:30px;height:30px}

.vzpfb-scope .story-tile h3 {margin-bottom:.4rem;color:var(--clr-primary);font-size:clamp(1rem,1.4vw,1.2rem)}

.vzpfb-scope .story-tile p {color:var(--clr-text);font-size:.88rem;line-height:1.66}

.vzpfb-scope .carousel {position:relative;display:grid;gap:1.15rem}

.vzpfb-scope .carousel__viewport {overflow:hidden;border-radius:var(--r-xl)}

.vzpfb-scope .carousel__track {display:flex!important;gap:0!important;align-items:stretch;transition:transform 420ms cubic-bezier(.22,1,.36,1);will-change:transform}

.vzpfb-scope .carousel__slide {flex:0 0 100%;max-width:100%}

.vzpfb-scope .carousel__controls {display:flex;align-items:center;justify-content:center;gap:.85rem;min-height:48px}

.vzpfb-scope .carousel__arrow {width:46px;height:46px;min-width:44px;min-height:44px;display:inline-grid;place-items:center;border-radius:50%;border:1px solid rgba(58,63,92,.22);background:var(--clr-surface);color:var(--clr-primary);cursor:pointer;box-shadow:var(--shadow-card);transition:transform var(--t),background var(--t),color var(--t),border-color var(--t)}

.vzpfb-scope .carousel__arrow:hover:not(:disabled) {transform:translateY(-2px);background:var(--clr-primary);color:var(--clr-surface);border-color:var(--clr-primary)}

.vzpfb-scope .carousel__arrow:disabled {opacity:.45;cursor:not-allowed;box-shadow:none}

.vzpfb-scope .carousel__arrow svg {width:22px;height:22px}

.vzpfb-scope .carousel__dots {display:flex;align-items:center;justify-content:center;gap:.45rem;min-height:44px}

.vzpfb-scope .carousel__dot {width:11px;height:11px;min-width:44px;min-height:44px;padding:0;border:0;background:transparent;cursor:pointer;position:relative}

.vzpfb-scope .carousel__dot::before {content:'';position:absolute;inset:50% auto auto 50%;width:11px;height:11px;transform:translate(-50%,-50%);border-radius:999px;background:rgba(58,63,92,.25);transition:width var(--t),background var(--t)}

.vzpfb-scope .carousel__dot[aria-current="true"]::before {width:28px;background:var(--clr-accent-dark)}

/* Pointer/touch carousel interaction: smooth drag on mobile and desktop. */

.vzpfb-scope .carousel__viewport {
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.vzpfb-scope .carousel.is-dragging .carousel__viewport {
  cursor: grabbing;
}

.vzpfb-scope .carousel.is-dragging .carousel__track,
.vzpfb-scope .carousel.is-dragging .carousel__slide,
.vzpfb-scope .carousel.is-dragging img {
  user-select: none;
  -webkit-user-select: none;
}

.vzpfb-scope .carousel.is-dragging img {
  pointer-events: none;
}

.vzpfb-scope .media-carousel .carousel__viewport,
.vzpfb-scope .review-carousel .carousel__viewport {box-shadow:var(--shadow-card);background:var(--clr-surface)}

.vzpfb-scope .media-carousel .media-card {display:grid;grid-template-columns:minmax(280px,.92fr) minmax(0,1.08fr);min-height:390px;border-radius:var(--r-xl);border-color:rgba(184,161,176,.32);box-shadow:none}

.vzpfb-scope .media-carousel .media-card:hover {transform:none;box-shadow:none}

.vzpfb-scope .media-carousel .media-card__visual {aspect-ratio:auto;min-height:390px}

.vzpfb-scope .media-carousel .media-card__body {align-content:center;gap:.8rem;padding:clamp(1.6rem,4vw,3rem)}

.vzpfb-scope .media-carousel .media-card__channel {font-size:.72rem}

.vzpfb-scope .media-carousel .media-card__title {font-size:clamp(1.45rem,2.5vw,2.25rem)}

.vzpfb-scope .media-carousel .media-card__desc {font-size:.98rem;line-height:1.78}

.vzpfb-scope .review-carousel .review-card {min-height:310px;border-radius:var(--r-xl);box-shadow:none;padding:clamp(1.45rem,3.4vw,2.4rem)}

.vzpfb-scope .review-carousel .review-card:hover {transform:none;box-shadow:none}

.vzpfb-scope .review-carousel .review-card__quote p {font-size:clamp(.98rem,1.8vw,1.22rem);line-height:1.78;color:var(--clr-text-strong)}

@media (prefers-reduced-motion:reduce) {
.vzpfb-scope .carousel__track {transition:none!important}
}

@media (max-width:900px) {
.vzpfb-scope .stories-showcase {grid-template-columns:1fr}

.vzpfb-scope .stories-feature h3 {max-width:16ch}

.vzpfb-scope .media-carousel .media-card {grid-template-columns:1fr}

.vzpfb-scope .media-carousel .media-card__visual {min-height:260px;aspect-ratio:16/9}
}

@media (max-width:640px) {
.vzpfb-scope .stories-mosaic {grid-template-columns:1fr}

.vzpfb-scope .story-tile {grid-template-columns:48px minmax(0,1fr);min-height:auto}

.vzpfb-scope .story-tile__icon {width:48px;height:48px;border-radius:15px}

.vzpfb-scope .stories-feature__stats {grid-template-columns:1fr}

.vzpfb-scope .carousel__controls {gap:.35rem}

.vzpfb-scope .carousel__dot {min-width:34px;min-height:44px}

.vzpfb-scope .review-card__head {flex-wrap:wrap}

.vzpfb-scope .review-card__stars {width:100%;padding-inline-start:54px}
}

/* ══════════════════════════════════════════════════════════════════
   Client-requested refinements — May 2026
══════════════════════════════════════════════════════════════════ */

/* Hero: keep only the animated 88% international-clients SVG graph. */

.vzpfb-scope .hero__panel {
  justify-self: end;
  max-width: 520px;
}

.vzpfb-scope .stat-chart {
  border-bottom: 0;
  padding-bottom: 0;
}

.vzpfb-scope .stat-chart__graphic {
  width: clamp(128px, 14vw, 150px);
  height: clamp(128px, 14vw, 150px);
}

.vzpfb-scope .donut-svg {
  width: 100%;
  height: 100%;
}

.vzpfb-scope .donut-center__pct {
  font-size: clamp(1.55rem, 2.2vw, 1.92rem);
}

.vzpfb-scope .donut-center__sub {
  max-width: 62px;
  margin-inline: auto;
}

/* Recommended by: grayscale logos with original colour on hover. */

.vzpfb-scope .logo-strip__item {
  opacity: 1;
  filter: none;
  min-height: 58px;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-md);
}

.vzpfb-scope .logo-strip__item img,
.vzpfb-scope .logo-strip__item--wide img {
  height: 60px !important;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.94);
  opacity: 0.74;
  transition: filter var(--t), opacity var(--t), transform var(--t);
}

.vzpfb-scope .logo-strip__item:hover img,
.vzpfb-scope .logo-strip__item:focus-within img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: translateY(-1px);
}

/* Lead attorney portrait: keep the image visually inside the rear frame. */

.vzpfb-scope .portrait-wrap {
  position: relative;
  padding: 16px;
}

.vzpfb-scope .portrait-accent {
  inset: 0;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-width: 2px;
  border-radius: calc(var(--r-xl) + 3px);
  opacity: 0.48;
}

.vzpfb-scope .portrait-figure {
  border-radius: calc(var(--r-xl) - 4px);
}

.vzpfb-scope .portrait-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.35;
  object-fit: cover;
  object-position: center top;
}

.vzpfb-scope .portrait-badge {
  inset-block-end: 3rem;
  inset-inline-start: -0.45rem;
}

.vzpfb-scope .portrait-award {
  inset-block-start: 2rem;
  inset-inline-end: 0.15rem;
}

/* Language flags via FlagCDN. */

.vzpfb-scope .lang-tag {
  gap: 0.42rem;
  padding-inline: 0.62rem 0.76rem;
}

.vzpfb-scope .lang-tag img {
  flex: 0 0 auto;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(58, 63, 92, 0.16);
}

/* Public Presence: responsive media image behaviour inside the slider. */

.vzpfb-scope .media-carousel .media-card__visual {
  min-height: clamp(240px, 32vw, 390px);
}

.vzpfb-scope .media-carousel .media-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
.vzpfb-scope .hero__panel {
    justify-self: start;
    max-width: 560px;
  }

.vzpfb-scope .media-carousel .media-card__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
.vzpfb-scope .stat-chart {
    display: grid;
    grid-template-columns: minmax(112px, 128px) minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

.vzpfb-scope .stat-chart__graphic {
    width: 112px;
    height: 112px;
  }

.vzpfb-scope .donut-center__pct {
    font-size: 1.42rem;
  }

.vzpfb-scope .donut-center__sub {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    max-width: 54px;
  }

.vzpfb-scope .stat-chart__legend-text {
    font-size: 0.78rem;
    line-height: 1.62;
  }
}

@media (max-width: 540px) {
.vzpfb-scope .logo-strip__item img,
.vzpfb-scope .logo-strip__item--wide img {
    height: 42px !important;
    max-width: 180px;
  }

.vzpfb-scope .portrait-wrap {
    max-width: 350px;
    padding: 13px;
  }

.vzpfb-scope .portrait-badge {
    inset-inline-start: 0.2rem;
    inset-block-end: 2rem;
  }

.vzpfb-scope .portrait-award {
    inset-inline-end: 0.15rem;
    inset-block-start: 1.6rem;
  }

.vzpfb-scope .media-carousel .media-card__visual {
    aspect-ratio: 4 / 3;
  }

.vzpfb-scope .media-carousel .media-card__body {
    padding: 1.25rem;
  }
}

@media (max-width: 420px) {
.vzpfb-scope .stat-chart {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

.vzpfb-scope .stat-chart__legend-text {
    max-width: 30ch;
  }
}

/* ══════════════════════════════════════════════════════════════════
   DARK MODE — Home page palette · WCAG 2.2 AA contrast
   CSS-only update. No HTML, content, layout, or JavaScript changes.
══════════════════════════════════════════════════════════════════ */

html[data-theme="dark"] .vzpfb-scope {
  color-scheme: dark;

  /* Home stylesheet dark tokens */
  --color-primary:      #3A3F5C;
  --color-primary-dark: #4A5170;
  --color-secondary:    #C7B6C2;
  --color-accent:       #D9C47F;
  --color-accent-dark:  #C3A95D;
  --color-accent-readable: #EAD99A;
  --color-bg:           #101319;
  --color-bg-warm:      #171B24;
  --color-form-bg:      #1D2230;
  --color-text:         #D4DBEA;
  --color-text-dark:    #F4F1EA;
  --color-text-light:   #BBC6D8;
  --color-white:        #171B24;
  --color-border:       #3B4254;
  --color-border-light: #2A3040;
  --color-accent-soft:  rgba(217, 196, 127, 0.16);
  --color-line:         rgba(234, 217, 154, 0.22);
  --color-gold-star:    #EAD99A;

  /* Existing portfolio aliases retained, now reading from home dark tokens */
  --clr-primary:      var(--color-primary);
  --clr-primary-deep: var(--color-primary-dark);
  --clr-secondary:    var(--color-secondary);
  --clr-accent:       var(--color-accent);
  --clr-accent-dark:  var(--color-accent-readable);
  --clr-accent-soft:  var(--color-accent-soft);
  --clr-bg:           var(--color-bg);
  --clr-surface:      var(--color-white);
  --clr-text:         var(--color-text);
  --clr-text-strong:  var(--color-text-dark);
  --clr-line:         var(--color-line);
  --clr-gold-star:    var(--color-gold-star);

  --shadow-card: 0 10px 34px rgba(0, 0, 0, 0.34);
  --shadow-lift: 0 18px 58px rgba(0, 0, 0, 0.46);
}

html[data-theme="dark"] .vzpfb-scope {
  background: var(--color-bg);
  color: var(--color-text);
}

html[data-theme="dark"] .vzpfb-scope h1,
html[data-theme="dark"] .vzpfb-scope h2,
html[data-theme="dark"] .vzpfb-scope h3,
html[data-theme="dark"] .vzpfb-scope h4 {
  color: var(--color-text-dark);
}

html[data-theme="dark"] body:not(.block-editor-page) .vzpfb-scope :focus-visible {
  outline-color: var(--color-accent-readable);
}

html[data-theme="dark"] .vzpfb-scope ::selection {
  color: #101319;
  background: var(--color-accent);
}


html[data-theme="dark"] .vzpfb-scope .eyebrow,
html[data-theme="dark"] .vzpfb-scope .recommended__eyebrow,
html[data-theme="dark"] .vzpfb-scope .credentials-block__title,
html[data-theme="dark"] .vzpfb-scope .languages-label,
html[data-theme="dark"] .vzpfb-scope .media-card__channel,
html[data-theme="dark"] .vzpfb-scope .review-card__source,
html[data-theme="dark"] .vzpfb-scope .link-arrow {
  color: var(--color-accent-readable);
}

html[data-theme="dark"] .vzpfb-scope .eyebrow--light,
html[data-theme="dark"] .vzpfb-scope .hero__title em,
html[data-theme="dark"] .vzpfb-scope .philosophy__quote cite,
html[data-theme="dark"] .vzpfb-scope .philosophy__quote-mark,
html[data-theme="dark"] .vzpfb-scope .stories-feature__stats strong,
html[data-theme="dark"] .vzpfb-scope .donut-center__pct,
html[data-theme="dark"] .vzpfb-scope .audio-player__kicker {
  color: var(--color-accent);
}

html[data-theme="dark"] .vzpfb-scope .section-intro,
html[data-theme="dark"] .vzpfb-scope .attorney__subtitle,
html[data-theme="dark"] .vzpfb-scope .attorney__text,
html[data-theme="dark"] .vzpfb-scope .story-tile p,
html[data-theme="dark"] .vzpfb-scope .story-card__text,
html[data-theme="dark"] .vzpfb-scope .media-card__desc,
html[data-theme="dark"] .vzpfb-scope .review-card__quote p,
html[data-theme="dark"] .vzpfb-scope .review-card__context,
html[data-theme="dark"] .vzpfb-scope .review-card__date,
html[data-theme="dark"] .vzpfb-scope .platform-tagline,
html[data-theme="dark"] .vzpfb-scope .stat-chart__legend-text,
html[data-theme="dark"] .vzpfb-scope .stat-item__label {
  color: var(--color-text);
}

html[data-theme="dark"] .vzpfb-scope .attorney__intro,
html[data-theme="dark"] .vzpfb-scope .review-card__name,
html[data-theme="dark"] .vzpfb-scope .score-value,
html[data-theme="dark"] .vzpfb-scope .stat-chart__legend-text strong,
html[data-theme="dark"] .vzpfb-scope .story-tile h3,
html[data-theme="dark"] .vzpfb-scope .story-card__title,
html[data-theme="dark"] .vzpfb-scope .media-card__title,
html[data-theme="dark"] .vzpfb-scope .stat-item__value {
  color: var(--color-text-dark);
}

html[data-theme="dark"] .vzpfb-scope.hero,
html[data-theme="dark"] .vzpfb-scope.philosophy {
  background: var(--color-primary);
}

html[data-theme="dark"] .vzpfb-scope .hero__bg {
  background:
    linear-gradient(118deg,
      rgba(16, 19, 25, 0.96) 0%,
      rgba(58, 63, 92, 0.88) 52%,
      rgba(16, 19, 25, 0.82) 100%
    ),
    var(--vzpfb-hero-bg, url('https://rechtsanwalt-berlin-charlottenburg.de/wp-content/uploads/2014/10/slide1.jpg'))
    center / cover no-repeat;
}

html[data-theme="dark"] .vzpfb-scope .hero__texture,
html[data-theme="dark"] .vzpfb-scope .philosophy__vignette {
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 56px,
    rgba(217, 196, 127, 0.065) 56px,
    rgba(217, 196, 127, 0.065) 57px
  );
}

html[data-theme="dark"] .vzpfb-scope .hero__title,
html[data-theme="dark"] .vzpfb-scope .philosophy__heading,
html[data-theme="dark"] .vzpfb-scope .stories-feature h3,
html[data-theme="dark"] .vzpfb-scope .focus-sticky__body h2 {
  color: #FFFFFF;
}

html[data-theme="dark"] .vzpfb-scope .hero__lede,
html[data-theme="dark"] .vzpfb-scope .hero__tagline,
html[data-theme="dark"] .vzpfb-scope .philosophy__body,
html[data-theme="dark"] .vzpfb-scope .philosophy__quote p,
html[data-theme="dark"] .vzpfb-scope .stories-feature p:not(.eyebrow),
html[data-theme="dark"] .vzpfb-scope .stories-feature__stats span,
html[data-theme="dark"] .vzpfb-scope .donut-center__sub {
  color: rgba(255, 255, 255, 0.84);
}

html[data-theme="dark"] .vzpfb-scope .hero__panel,
html[data-theme="dark"] .vzpfb-scope .philosophy__quote,
html[data-theme="dark"] .vzpfb-scope .stories-feature {
  border-color: rgba(217, 196, 127, 0.34);
  background: rgba(23, 27, 36, 0.82);
  box-shadow: var(--shadow-lift);
}

html[data-theme="dark"] .vzpfb-scope .stories-feature {
  background:
    linear-gradient(150deg, rgba(58, 63, 92, 0.98), rgba(16, 19, 25, 0.96)),
    repeating-linear-gradient(135deg, rgba(217, 196, 127, 0.12), rgba(217, 196, 127, 0.12) 1px, transparent 1px, transparent 38px);
}

html[data-theme="dark"] .vzpfb-scope .donut-track {
  stroke: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .vzpfb-scope .donut-bg-arc {
  stroke: rgba(217, 196, 127, 0.16);
}

html[data-theme="dark"] .vzpfb-scope .donut-fill {
  stroke: var(--color-accent);
}

html[data-theme="dark"] .vzpfb-scope.recommended,
html[data-theme="dark"] .vzpfb-scope.attorney,
html[data-theme="dark"] .vzpfb-scope.reviews,
html[data-theme="dark"] .vzpfb-scope .carousel__viewport,
html[data-theme="dark"] .vzpfb-scope .media-carousel .carousel__viewport,
html[data-theme="dark"] .vzpfb-scope .review-carousel .carousel__viewport {
  background: var(--color-white);
  border-color: var(--color-border-light);
}

html[data-theme="dark"] .vzpfb-scope.stories,
html[data-theme="dark"] .vzpfb-scope .stories--editorial,
html[data-theme="dark"] .vzpfb-scope.media {
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 182, 194, 0.09), transparent 28rem),
    radial-gradient(circle at 85% 25%, rgba(217, 196, 127, 0.08), transparent 30rem),
    var(--color-bg);
}

html[data-theme="dark"] .vzpfb-scope .story-card,
html[data-theme="dark"] .vzpfb-scope .story-tile,
html[data-theme="dark"] .vzpfb-scope .media-card,
html[data-theme="dark"] .vzpfb-scope .review-card,
html[data-theme="dark"] .vzpfb-scope .review-card--alt,
html[data-theme="dark"] .vzpfb-scope .credentials-grid,
html[data-theme="dark"] .vzpfb-scope .lang-tag {
  background: var(--color-form-bg);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .vzpfb-scope .story-card:hover,
html[data-theme="dark"] .vzpfb-scope .story-tile:hover,
html[data-theme="dark"] .vzpfb-scope .media-card:hover,
html[data-theme="dark"] .vzpfb-scope .review-card:hover,
html[data-theme="dark"] .vzpfb-scope .review-card--alt:hover,
html[data-theme="dark"] .vzpfb-scope .lang-tag:hover {
  background: #202637;
  border-color: rgba(217, 196, 127, 0.56);
  box-shadow: var(--shadow-lift);
}

html[data-theme="dark"] .vzpfb-scope .story-card__icon,
html[data-theme="dark"] .vzpfb-scope .story-card__tag,
html[data-theme="dark"] .vzpfb-scope .story-tile__icon,
html[data-theme="dark"] .vzpfb-scope .review-card__avatar--alt,
html[data-theme="dark"] .vzpfb-scope .media-card__visual--editorial,
html[data-theme="dark"] .vzpfb-scope .media-card__visual--news {
  background: rgba(217, 196, 127, 0.16);
  border-color: rgba(217, 196, 127, 0.42);
  color: var(--color-accent-readable);
}

html[data-theme="dark"] .vzpfb-scope .media-card__visual--podcast,
html[data-theme="dark"] .vzpfb-scope .review-card__avatar,
html[data-theme="dark"] .vzpfb-scope .portrait-badge {
  background: var(--color-primary);
  color: var(--color-accent);
}

html[data-theme="dark"] .vzpfb-scope .media-placeholder {
  color: var(--color-text-dark);
}

html[data-theme="dark"] .vzpfb-scope .media-placeholder--accent {
  color: var(--color-accent-readable);
}
html[data-theme="dark"] .vzpfb-scope .score-stars,
html[data-theme="dark"] .vzpfb-scope .review-card__stars {
	color: #ffffff;
}
html[data-theme="dark"] .vzpfb-scope .portrait-award {
  background: var(--color-form-bg);
  border: 1px solid var(--color-border);
}

html[data-theme="dark"] .vzpfb-scope .portrait-accent {
  border-color: var(--color-accent);
  opacity: 0.58;
}

html[data-theme="dark"] .vzpfb-scope .credentials-list li,
html[data-theme="dark"] .vzpfb-scope .lang-tag {
  color: var(--color-text);
}

html[data-theme="dark"] .vzpfb-scope .lang-tag:hover {
  color: var(--color-accent-readable);
}

html[data-theme="dark"] .vzpfb-scope .lang-tag img {
  box-shadow: 0 0 0 1px rgba(234, 217, 154, 0.28);
}

html[data-theme="dark"] .vzpfb-scope .platform-header,
html[data-theme="dark"] .vzpfb-scope .reviews__platform--google,
html[data-theme="dark"] .vzpfb-scope .review-card__foot,
html[data-theme="dark"] .vzpfb-scope.recommended,
html[data-theme="dark"] .vzpfb-scope .stat-chart,
html[data-theme="dark"] .vzpfb-scope .credentials-grid {
  border-color: var(--color-border);
}

html[data-theme="dark"] .vzpfb-scope .platform-logo svg {
  color: var(--color-text-dark);
}

html[data-theme="dark"] .vzpfb-scope .media-card__overlay {
  background: rgba(16, 19, 25, 0.56);
}

html[data-theme="dark"] .vzpfb-scope .play-btn {
  background: rgba(217, 196, 127, 0.18);
  border-color: rgba(234, 217, 154, 0.72);
  color: #FFFFFF;
}

html[data-theme="dark"] .vzpfb-scope .carousel__arrow {
  background: var(--color-form-bg);
  border-color: var(--color-border);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .vzpfb-scope .carousel__arrow:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-accent-readable);
  color: #FFFFFF;
}

html[data-theme="dark"] .vzpfb-scope .carousel__dot::before {
  background: rgba(212, 219, 234, 0.35);
}

html[data-theme="dark"] .vzpfb-scope .carousel__dot[aria-current="true"]::before {
  background: var(--color-accent-readable);
}

html[data-theme="dark"] .vzpfb-scope .media-carousel .media-card,
html[data-theme="dark"] .vzpfb-scope .review-carousel .review-card {
  background: var(--color-form-bg);
  border-color: var(--color-border);
}

html[data-theme="dark"] .vzpfb-scope .review-carousel .review-card__quote p {
  color: var(--color-text-dark);
}

html[data-theme="dark"] .vzpfb-scope .logo-strip__item img,
html[data-theme="dark"] .vzpfb-scope .logo-strip__item--wide img {
opacity: 0.95;
    filter: invert(1) grayscale(100%) brightness(1.22) contrast(1.16);
}

html[data-theme="dark"] .vzpfb-scope .logo-strip__item:hover img,
html[data-theme="dark"] .vzpfb-scope .logo-strip__item:focus-within img {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1);
}

html[data-theme="dark"] .vzpfb-scope .link-arrow:hover {
  color: var(--color-text-dark);
}
/* Reviews: source CTA button below carousel controls. */
.vzpfb-scope .reviews__more-link {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.vzpfb-scope .media-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 190px;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid #AEB4C5;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform 160ms ease;
}

.vzpfb-scope .media-view-all-btn:hover,
.vzpfb-scope .media-view-all-btn:focus-visible {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

html[data-theme="dark"] .vzpfb-scope .media-view-all-btn {
  color: #ffffff;
  border-color: #7C849A;
}

html[data-theme="dark"] .vzpfb-scope .media-view-all-btn:hover,
html[data-theme="dark"] .vzpfb-scope .media-view-all-btn:focus-visible {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.vzpfb-scope .carousel__controls[hidden] {display:none !important}
