/* ==============================================
   MeMo-Law Website – Hauptstylesheet
   Version: 1.4.0 | Mai 2026
   Brand Blue: #002c77
   Palette: Kühl-neutral (Slate/Zinc)
   Schriften: Outfit (Display) + DM Sans (Body) – lokal
   ============================================== */

/* ── Lokale Schriften ──────────────────────────── */
@import url('../assets/fonts/fonts-local.css');

/* ── CSS Custom Properties ─────────────────────── */
:root {
  /* Brand */
  --color-brand:        #002c77;
  --color-brand-mid:    #1a4a9e;
  --color-brand-light:  #2d5fb5;
  --color-brand-dark:   #001852;
  --color-gold:         #c8a84b;

  /* Neutral – kühl Zinc/Slate */
  --color-bg:           #f4f5f7;
  --color-bg-deep:      #eceef2;
  --color-surface:      #ffffff;
  --color-surface-2:    #f8f9fb;

  /* Text */
  --color-text:         #0f1829;
  --color-text-mid:     #374151;
  --color-text-muted:   #6b7280;

  /* Borders */
  --color-border:       #d1d5dc;
  --color-border-light: #e5e7eb;

  /* Overlays */
  --color-overlay:      rgba(0,44,119,0.05);
  --color-overlay-md:   rgba(0,44,119,0.09);

  /* Schriften */
  --font-display: 'Outfit', 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Radien */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Schatten */
  --shadow-xs: 0 1px 3px rgba(0,28,80,0.07);
  --shadow-sm: 0 2px 8px rgba(0,28,80,0.08);
  --shadow-md: 0 6px 24px rgba(0,28,80,0.11);
  --shadow-lg: 0 16px 48px rgba(0,28,80,0.15);
  --shadow-xl: 0 28px 64px rgba(0,28,80,0.18);

  --container-max: 1200px;
  --nav-height: 68px;
  --transition: 0.22s ease;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--color-brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-brand-light); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1200px) { .container { padding-inline: 3rem; } }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.section { padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 7rem; } }

.section--alt   { background: var(--color-bg-deep); }
.section--brand { background: var(--color-brand); color: #fff; }
.section--brand h1, .section--brand h2, .section--brand h3 { color: #fff; }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}
.section__label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.section--brand .section__label { color: rgba(255,255,255,0.55); }
.section--brand .section__label::before { background: rgba(255,255,255,0.4); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1.25rem;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.section--brand .section__lead { color: rgba(255,255,255,0.72); }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
.btn--primary:hover { background: var(--color-brand-dark); border-color: var(--color-brand-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--color-brand); border-color: var(--color-brand); }
.btn--outline:hover { background: var(--color-brand); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); color: #fff; }

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.nav__logo img { height: 42px; width: 42px; border-radius: 4px; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-brand);
  display: none;
}
@media (min-width: 480px) { .nav__logo-text { display: block; } }

.nav__menu { display: none; list-style: none; gap: 0.15rem; }
@media (min-width: 960px) { .nav__menu { display: flex; } }
.nav__menu li a {
  display: block;
  padding: 0.38rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__menu li a:hover, .nav__menu li a.active { color: var(--color-brand); background: var(--color-overlay); }
.nav__menu li a.active { font-weight: 600; }

.nav__right { display: flex; align-items: center; gap: 0.6rem; }

.lang-switch {
  display: flex; gap: 2px;
  background: var(--color-bg-deep);
  border-radius: var(--radius-sm);
  padding: 3px;
  border: 1px solid var(--color-border-light);
}
.lang-switch a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  color: var(--color-text-muted);
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.lang-switch a.active, .lang-switch a:hover { background: var(--color-brand); color: #fff; }

.nav__hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  border: none; background: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--color-overlay); }
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--color-brand); border-radius: 2px;
  transition: all 0.28s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav__hamburger { display: none; } }

.nav__drawer {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 3px solid var(--color-brand);
  padding: 1.25rem 1.5rem 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.nav__drawer.open { transform: translateY(0); }
.nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
.nav__drawer ul li a {
  display: block; padding: 0.7rem 1rem;
  font-family: var(--font-display);
  font-size: 0.975rem; font-weight: 500;
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.nav__drawer ul li a:hover { color: var(--color-brand); border-left-color: var(--color-brand); background: var(--color-overlay); padding-left: 1.4rem; }

/* ── Page offset ───────────────────────────────── */
.page-content { padding-top: var(--nav-height); }

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--color-brand);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 50%, rgba(45,95,181,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 55% 80% at 5% 85%, rgba(0,18,60,0.7) 0%, transparent 60%),
    linear-gradient(135deg, #001852 0%, #002c77 60%, #1a4a9e 100%);
}
/* Geometric SVG pattern overlay in hero */
.hero__geo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  pointer-events: none;
  opacity: 0.06;
}
.hero__photo {
  /* Kupferstich-Illustration auf allen Bildschirmgroessen.
     Mobil: zentriert, etwas groesser skaliert fuer bessere Sichtbarkeit.
     Tablet: leicht rechts verschoben.
     Desktop: rechts positioniert, Text links. */
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero2-background.png');
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  /* Mobil: Illustration zentriert, untere 80% sichtbar (Kopf ggf. leicht abgeschnitten) */
  background-size: auto 80%;
  background-position: center bottom;
  opacity: 0.13;
}
@media (min-width: 480px) {
  .hero__photo {
    background-size: auto 88%;
    background-position: center bottom;
    opacity: 0.15;
  }
}
@media (min-width: 768px) {
  .hero__photo {
    background-size: auto 92%;
    background-position: 65% center;
    opacity: 0.16;
  }
}
@media (min-width: 1024px) {
  .hero__photo {
    background-size: auto 95%;
    background-position: right center;
    opacity: 0.18;
  }
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: 5rem 4rem;
  max-width: 700px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--color-gold); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  color: #fff; line-height: 1.08;
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: normal; color: var(--color-gold); }
.hero__text { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ── Facts bar ─────────────────────────────────── */
.facts-bar { background: var(--color-surface); border-bottom: 1px solid var(--color-border-light); padding-block: 1.75rem; }
.facts-bar__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 640px) { .facts-bar__grid { grid-template-columns: repeat(4,1fr); } }
.facts-bar__item strong { display: block; font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: var(--color-brand); letter-spacing: -0.02em; }
.facts-bar__item span { font-size: 0.72rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ── About ─────────────────────────────────────── */
.about__grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 900px) { .about__grid { grid-template-columns: 1fr 1fr; } }
.about__visual { position: relative; }
.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about__accent {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--color-brand-mid), var(--color-brand));
  border-radius: var(--radius-md); z-index: -1; opacity: 0.7;
}
.about__quotes { display: grid; gap: 1rem; margin-top: 2.5rem; }

.quote-card {
  background: var(--color-surface);
  border-left: 3px solid var(--color-brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-xs);
  border-top: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.quote-card p { font-style: italic; color: var(--color-text-mid); margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.65; }
.quote-card cite { font-size: 0.75rem; font-weight: 700; color: var(--color-brand); font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-display); }

/* ── Field cards ───────────────────────────────── */
.fields__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .fields__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .fields__grid { grid-template-columns: repeat(3,1fr); } }
.field-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.field-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-light));
  opacity: 0; transition: opacity var(--transition);
}
.field-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,44,119,0.2); }
.field-card:hover::before { opacity: 1; }
.field-card__num { font-family: var(--font-display); font-size: 2.2rem; color: rgba(0,44,119,0.1); line-height: 1; margin-bottom: 0.75rem; font-weight: 700; letter-spacing: -0.04em; }
.field-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--color-brand); margin-bottom: 0.6rem; }
.field-card__text { font-size: 0.855rem; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* ── Lawyer cards ──────────────────────────────── */
.lawyers__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lawyers__grid { grid-template-columns: repeat(3,1fr); } }
.lawyer-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border-light); transition: all var(--transition); }
.lawyer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lawyer-card__header { background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand) 100%); padding: 2.25rem 1.5rem 1.5rem; text-align: center; }
.lawyer-card__avatar { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,0.12); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.9); border: 2px solid rgba(255,255,255,0.25); letter-spacing: -0.02em; }
.lawyer-card__name { color: #fff; font-size: 1.1rem; margin-bottom: 0.25rem; }
.lawyer-card__role { color: var(--color-gold); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.lawyer-card__body { padding: 1.4rem; }
.lawyer-card__body p { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.65; }

/* ── Location ──────────────────────────────────── */
.location__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 900px) { .location__grid { grid-template-columns: 1fr 1fr; } }
.location__address { background: var(--color-surface); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border-light); }
.location__address h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.925rem; }
.contact-list .icon { width: 18px; flex-shrink: 0; color: var(--color-brand); margin-top: 3px; }

.directions { margin-top: 2rem; }
.directions h3 { margin-bottom: 1rem; }
.direction-item { border: 1px solid var(--color-border-light); border-radius: var(--radius-md); margin-bottom: 0.6rem; overflow: hidden; background: var(--color-surface); transition: box-shadow var(--transition); }
.direction-item[open] { box-shadow: var(--shadow-sm); }
.direction-item summary { padding: 0.9rem 1.1rem; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; color: var(--color-brand); list-style: none; display: flex; align-items: center; gap: 0.75rem; user-select: none; transition: background var(--transition); }
.direction-item summary:hover { background: var(--color-overlay); }
.direction-item summary::after { content: '›'; margin-left: auto; font-size: 1.1rem; transition: transform 0.2s; line-height: 1; }
.direction-item[open] summary::after { transform: rotate(90deg); }
.direction-item__body { padding: 1rem 1.1rem 1.1rem; font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.75; border-top: 1px solid var(--color-border-light); }

.maps-wrapper { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand)); min-height: 340px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.25rem; text-align: center; padding: 2rem; }
.maps-wrapper--loaded { background: transparent; padding: 0; }
.maps-wrapper__consent { color: #fff; }
.maps-wrapper__consent h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.maps-wrapper__consent p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1.1rem; }
.maps-wrapper iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ── Contact page ──────────────────────────────── */
.contact-page-grid { display: grid; gap: 3rem; }
@media (min-width: 900px) { .contact-page-grid { grid-template-columns: 1fr 1.4fr; } }

/* ── Footer ────────────────────────────────────── */
.footer { background: var(--color-brand-dark); color: rgba(255,255,255,0.65); padding-block: 3.5rem 1.75rem; }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer__brand img { height: 56px; width: 56px; border-radius: 4px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__col h4 { color: #fff; font-size: 0.72rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__col ul li a:hover { color: #fff; }
.footer__col address { font-style: normal; font-size: 0.875rem; line-height: 1.8; }
.footer__col address a { color: rgba(255,255,255,0.6); }
.footer__col address a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.775rem; color: rgba(255,255,255,0.38); }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Page hero ─────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand) 100%); padding-block: 3.25rem; }
.page-hero .section__label { color: rgba(255,255,255,0.5); }
.page-hero h1 { color: #fff; }

/* ── Prose ─────────────────────────────────────── */
.prose-content { padding-block: 3rem 5rem; max-width: 860px; }
.prose-content h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.75rem; padding-top: 2rem; border-top: 1px solid var(--color-border-light); }
.prose-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose-content h3 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.prose-content ul, .prose-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content li { margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--color-text-mid); }
.prose-content a { text-decoration: underline; text-underline-offset: 3px; }
.prose-content strong { color: var(--color-text); }
.prose-content p { font-size: 0.925rem; color: var(--color-text-mid); }

/* ── Beratungsfelder detail ─────────────────────── */
.field-detail { padding-block: 2rem; border-bottom: 1px solid var(--color-border-light); }
.field-detail:last-of-type { border-bottom: none; }
.field-detail h2 { font-size: 1.4rem; margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.75rem; }
.field-num { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--color-brand); background: var(--color-overlay-md); padding: 0.25rem 0.55rem; border-radius: var(--radius-xs); flex-shrink: 0; }
.field-note { font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; border-left: 3px solid var(--color-gold); padding-left: 0.75rem; margin-top: 0.75rem; }

/* ── Anwälte profiles ──────────────────────────── */
.lawyer-profile { padding-block: 3rem; border-bottom: 1px solid var(--color-border-light); }
.lawyer-profile:last-of-type { border-bottom: none; }
.lawyer-profile__header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; }
.lawyer-profile__avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand)); color: #fff; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: -0.02em; box-shadow: var(--shadow-sm); }
.lawyer-profile__name { font-size: 1.55rem; margin-bottom: 0.2rem; }
.lawyer-profile__title { color: var(--color-gold); font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.lawyer-profile__contact { font-size: 0.875rem; }
.lawyer-profile__contact a { color: var(--color-brand); }
.lawyer-profile__body { display: grid; gap: 2rem; }
@media (min-width: 768px) { .lawyer-profile__body { grid-template-columns: 1fr 1fr; } }
.lawyer-profile__col h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); font-family: var(--font-display); margin: 1.25rem 0 0.5rem; }
.lawyer-profile__col ul { padding-left: 1.2rem; }
.lawyer-profile__col ul li { font-size: 0.875rem; margin-bottom: 0.3rem; color: var(--color-text-mid); }
.lawyer-profile__col p { font-size: 0.9rem; color: var(--color-text-mid); }
.lawyer-profile__transactions { margin-top: 1.5rem; border: 1px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; }
.lawyer-profile__transactions summary { padding: 0.9rem 1.25rem; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; color: var(--color-brand); background: var(--color-surface-2); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.lawyer-profile__transactions summary::after { content: '›'; font-size: 1.1rem; transition: transform 0.2s; }
.lawyer-profile__transactions[open] summary::after { transform: rotate(90deg); }
.lawyer-profile__tx-body { padding: 1.5rem; }
.lawyer-profile__tx-body h4 { font-size: 0.9rem; margin-bottom: 0.5rem; margin-top: 1.25rem; }
.lawyer-profile__tx-body h4:first-child { margin-top: 0; }
.lawyer-profile__tx-body ul { padding-left: 1.2rem; }
.lawyer-profile__tx-body li { font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--color-text-muted); }

/* ── Scroll animations ──────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Back to top ────────────────────────────────── */
.back-to-top { position: fixed; bottom: 2rem; right: 1.5rem; width: 42px; height: 42px; border-radius: 50%; background: var(--color-brand); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(10px); transition: all var(--transition); z-index: 500; font-size: 1rem; font-family: var(--font-display); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--color-brand-dark); transform: translateY(-2px); }
