/* ================================================================
   KANZLEI STRASSBURGER — Premium Law Firm Stylesheet
   ================================================================ */

/* ===== CSS Variables ===== */
:root {
  --navy:        #0d1f3c;
  --navy-mid:    #1a3460;
  --navy-light:  #234b8a;
  --blue:        #2d5fa0;
  --gold:        #b8922a;
  --gold-light:  #d4a83a;
  --gold-pale:   #f5ecd4;
  --crimson:     #8c1a2e;
  --white:       #ffffff;
  --off-white:   #f6f7fb;
  --gray-100:    #f0f2f8;
  --gray-200:    #e0e4ef;
  --gray-300:    #c8ceda;
  --gray-400:    #98a2b3;
  --text:        #0e1a2e;
  --text-body:   #3c4a5e;
  --text-muted:  #6b7c93;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --copy-size:   0.95rem;
  --copy-small:  0.875rem;
  --copy-lead:   1.08rem;
  --copy-line:   1.78;

  --shadow-sm:  0 1px 3px rgba(13,31,60,0.06);
  --shadow-md:  0 3px 14px rgba(13,31,60,0.09);
  --shadow-lg:  0 6px 28px rgba(13,31,60,0.13);
  --shadow-xl:  0 12px 44px rgba(13,31,60,0.17);

  --radius:     0px;
  --radius-lg:  0px;
  --radius-xl:  0px;

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --header-h:   80px;
  --section-py: 6rem;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.2;
  font-weight: 400;
}
h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.3;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.925rem; }
h6 { font-size: 0.85rem; }

p {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-sans);
  font-size: var(--copy-lead);
  line-height: 1.8;
  color: var(--text-body);
}
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section { padding: var(--section-py) 0; }
.section--navy  { background: var(--navy); color: var(--white); }
.section--dark  { background: #08152a; color: var(--white); }
.section--gray  { background: var(--off-white); }
.section--gold  { background: var(--gold-pale); }

.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy h4, .section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--white); }

/* ===== Section Header ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-label { display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .lead { max-width: 640px; }
.section-header--center .lead { margin: 0 auto; }

.divider {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.divider--center { margin: 1.25rem auto 2rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--text);
  border-color: var(--text);
}

.btn--lg { font-size: 0.8rem; padding: 1.05rem 2.5rem; }
.btn--sm { font-size: 0.72rem; padding: 0.65rem 1.25rem; letter-spacing: .07em; }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 22px rgba(8,18,44,.12);
  height: 68px;
}
.site-header--solid {
  background: var(--white);
  box-shadow: 0 2px 22px rgba(8,18,44,.12);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.site-header.scrolled .header-logo img,
.site-header--solid .header-logo img {
  height: 44px;
  filter: none;
}

.logo-fallback { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .04em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.site-header.scrolled .logo-name,
.site-header--solid .logo-name {
  color: var(--navy);
}

.header-nav { display: flex; align-items: center; }
.header-nav__list { display: flex; align-items: center; gap: 0; }
.header-nav__item { position: relative; }

.header-nav__link {
  display: block;
  padding: .5rem 1rem;
  font-size: .855rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  letter-spacing: .015em;
  position: relative;
}
.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.header-nav__link:hover,
.header-nav__link.active { color: var(--gold); }
.header-nav__link:hover::after,
.header-nav__link.active::after { transform: scaleX(1); }

.site-header.scrolled .header-nav__link,
.site-header--solid .header-nav__link {
  color: var(--navy);
}
.site-header.scrolled .header-nav__link:hover,
.site-header.scrolled .header-nav__link.active,
.site-header--solid .header-nav__link:hover,
.site-header--solid .header-nav__link.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.28);
  overflow: hidden;
}
.lang-btn {
  padding: .32rem .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.site-header.scrolled .lang-switcher,
.site-header--solid .lang-switcher {
  border-color: rgba(8,18,44,.22);
}
.site-header.scrolled .lang-btn,
.site-header--solid .lang-btn {
  color: rgba(8,18,44,.62);
}
.site-header.scrolled .lang-btn.active,
.site-header--solid .lang-btn.active {
  color: var(--navy);
}
.site-header.scrolled .lang-btn:hover:not(.active),
.site-header--solid .lang-btn:hover:not(.active) {
  color: var(--navy);
  background: rgba(8,18,44,.06);
}

.site-header:not(.scrolled):not(.site-header--solid) .header-actions .btn--outline {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.45);
}
.site-header:not(.scrolled):not(.site-header--solid) .header-actions .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .mobile-menu-btn span,
.site-header--solid .mobile-menu-btn span {
  background: var(--navy);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__link {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-lang-switcher { display: flex; gap: .5rem; }

/* ===== Footer ===== */
.site-footer {
  background: #07142a;
  color: rgba(255,255,255,.72);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo { margin-bottom: 1.1rem; }
.footer-logo img {
  height: 42px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .03em;
}
.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .65rem; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

.footer-cookie-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.38);
  font: inherit;
  font-size: .78rem;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-cookie-link:hover { color: var(--gold); }

.footer-map {
  margin: -1.5rem 0 3rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: minmax(190px, .65fr) minmax(280px, 1.35fr);
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
}
.footer-map__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-map__copy .footer-heading { margin-bottom: .65rem; }
.footer-map__copy p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  line-height: 1.7;
}
.footer-map__frame {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #091933;
}
.footer-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  filter: grayscale(.18) contrast(1.04);
}
.footer-map__placeholder {
  min-height: 220px;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(201,166,107,.18), rgba(255,255,255,.03)),
    linear-gradient(135deg, #081832 0%, #0e2446 100%);
}
.footer-map__placeholder strong {
  color: var(--white);
  font-size: .98rem;
  margin-bottom: .45rem;
}
.footer-map__placeholder span {
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.65;
}
.footer-map__button {
  margin-top: 1rem;
  min-height: 40px;
  padding: .72rem 1rem;
  border: 1px solid rgba(201,166,107,.85);
  background: rgba(201,166,107,.12);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.footer-map__button:hover {
  background: var(--gold);
  color: #07142a;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1400;
  width: min(390px, calc(100vw - 2rem));
  padding: 1.2rem;
  background: rgba(255,255,255,.98);
  color: var(--text);
  border: 1px solid rgba(7,20,42,.12);
  box-shadow: var(--shadow-xl);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}
.cookie-banner__eyebrow {
  color: var(--gold);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.cookie-banner h2 {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 .55rem;
}
.cookie-banner p {
  margin: 0;
  color: var(--text-body);
  font-size: .84rem;
  line-height: 1.6;
}
.cookie-banner a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-banner a:hover { color: var(--gold); }
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cookie-banner__btn {
  flex: 1 1 150px;
  min-height: 42px;
  padding: .72rem .95rem;
  border: 1px solid var(--navy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-banner__btn--primary {
  background: var(--navy);
  color: var(--white);
}
.cookie-banner__btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.cookie-banner__btn--ghost {
  background: var(--white);
  color: var(--navy);
}
.cookie-banner__btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #071630 0%, #0e2458 60%, #112a68 100%);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,22,50,.58) 0%,
    rgba(7,22,50,.44) 52%,
    rgba(7,22,50,.36) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 5rem;
  max-width: 820px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(184,146,42,.5);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: rgba(184,146,42,.08);
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--gold);
  font-style: normal;
}
.hero__amp {
  font-family: Georgia, serif;
  font-style: italic;
}
.hero__statement {
  max-width: 760px;
}
.hero__intro {
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: .85rem;
}
.hero__highlight {
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-shadow: 0 1px 14px rgba(0,0,0,.28);
}
.hero__title--brand {
  font-size: 3.05rem;
  margin-bottom: 1.2rem;
}
.hero__brand-mark {
  display: inline-block;
  color: var(--gold);
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,.24);
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.72;
}
.hero__sub--wide {
  max-width: 720px;
  margin-bottom: 1rem;
}
.hero__sub--wide:last-child {
  margin-bottom: 2.5rem;
}
.hero__specialty {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201,166,107,.7);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 38px;
  height: 1px;
  background: rgba(255,255,255,.3);
}
.hero__stats {
  position: absolute;
  bottom: 3.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
}
.hero__stat-num em { color: var(--gold); font-style: normal; }
.hero__stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
}

/* Page Hero (subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2050 100%);
  padding: calc(var(--header-h) + 4.5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2050 100%);
}
.page-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,22,50,.68) 0%,
    rgba(7,22,50,.54) 52%,
    rgba(7,22,50,.46) 100%
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 580px; }
.page-hero .btn-group { margin-top: 2rem; }

/* ===== Intro Split ===== */
.intro-section { padding: var(--section-py) 0; }
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-images { position: relative; padding-bottom: 4rem; }
.intro-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: right center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}
.intro-img-secondary {
  width: 46%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 62%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--white);
}
.intro-badge {
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 4;
  box-shadow: var(--shadow-md);
}
.intro-badge .num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.intro-badge .lbl {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}
.intro-content .section-label { margin-bottom: .75rem; }
.intro-content h2 { margin-bottom: 1.25rem; }
.intro-content .lead { margin-bottom: 1.75rem; }
.intro-content p {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .9rem;
}
.benefit-icon {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-icon svg { width: 11px; height: 11px; color: var(--gold); }

/* ===== Service Cards ===== */
.services-section { padding: var(--section-py) 0; background: var(--white); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--off-white); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1.75rem;
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--gold); }

.service-card h3 { font-size: 1rem; margin-bottom: .75rem; font-weight: 400; }
.service-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-card__link {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: .9rem; }

/* ===== Why Section ===== */
.why-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-section .container { position: relative; z-index: 1; }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left .section-label { margin-bottom: .75rem; }
.why-left h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-left .lead { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-item {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: rgba(255,255,255,.04); }

.why-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-icon svg { width: 18px; height: 18px; color: var(--gold); }
.why-item h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .875rem;
  margin-bottom: .35rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.why-item p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials-section { padding: var(--section-py) 0; background: var(--off-white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card:nth-child(3n) { border-right: none; }
.testimonial-card:nth-last-child(-n+3) { border-bottom: none; }
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.testimonial-card:hover { background: var(--off-white); }
.testimonial-card:hover::before { height: 100%; }

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
}
.star { color: var(--gold); font-size: .85rem; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gray-200);
  line-height: .75;
  margin-bottom: .75rem;
  font-weight: 400;
}
.testimonial-text {
  font-size: .875rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2rem;
  font-family: var(--font-sans);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: .06em;
}
.testimonial-name {
  font-weight: 600;
  font-size: .84rem;
  color: var(--text);
  margin-bottom: .15rem;
}
.testimonial-role {
  font-size: .74rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* ===== Documents ===== */
.docs-section { padding: var(--section-py) 0; background: var(--navy); }
.docs-section .section-label { color: var(--gold); }
.docs-section h2 { color: var(--white); }
.docs-section .lead { color: rgba(255,255,255,.65); }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.doc-card {
  background: rgba(255,255,255,.04);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background var(--transition);
  border-left: 2px solid transparent;
}
.doc-card:hover {
  background: rgba(255,255,255,.07);
  border-left-color: var(--gold);
}
.doc-info { display: flex; align-items: center; gap: 1.25rem; }
.doc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184,146,42,.35);
}
.doc-icon svg { width: 20px; height: 20px; color: var(--gold); }
.doc-title { font-weight: 600; color: var(--white); font-size: .9rem; margin-bottom: .2rem; }
.doc-desc { font-size: .76rem; color: rgba(255,255,255,.5); }

/* ===== Partners ===== */
.partners-section {
  padding: 4rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.partners-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--gray-200);
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 64px;
  border-right: 1px solid var(--gray-200);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.partner-card:last-child { border-right: none; }
.partner-card:hover {
  background: var(--off-white);
  color: var(--gold);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--text); margin-bottom: 1.25rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-section .btn--secondary {
  color: var(--navy);
  border-color: rgba(13,31,60,.35);
}
.cta-section .btn--secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ===== Service Detail (mietrecht-baurecht.html) ===== */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 5rem;
  align-items: start;
}
.service-detail-inner.reverse { grid-template-columns: .85fr 1.15fr; }
.service-detail-inner.reverse .sdi-content { order: 2; }
.service-detail-inner.reverse .sdi-aside  { order: 1; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.service-detail h2 { margin-bottom: 1.1rem; }
.service-detail .lead,
.sdi-content > p {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}
.service-detail .lead { margin-bottom: 1.25rem; }

.case-list { margin-bottom: 2rem; }
.case-list h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .875rem;
}
.case-list ul { display: flex; flex-direction: column; gap: .55rem; }
.case-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-body);
}
.case-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.sdi-aside-card {
  background: var(--off-white);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--gold);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.sdi-aside-card h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.target-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.target-chip {
  padding: .35rem .85rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text-body);
  transition: var(--transition);
}
.target-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Kanzlei Page ===== */
.team-section { padding: var(--section-py) 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-grid:has(.team-card--single) {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: right center;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.team-photo-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,.25); }
.team-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; letter-spacing: .02em; margin-bottom: .2rem; }
.team-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.team-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
  padding-top: .25rem;
  transition: color var(--transition);
}
.process-step:hover .step-number { color: var(--gold-pale); }
.step-content h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}
.step-content p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ===== Karriere Page ===== */
.career-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
}
.career-value-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  transition: background var(--transition);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.career-value-card:nth-child(3n) { border-right: none; }
.career-value-card:nth-last-child(-n+3) { border-bottom: none; }
.career-value-card:hover { background: var(--off-white); }

.career-value-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.career-value-icon svg { width: 22px; height: 22px; color: var(--gold); }
.career-value-card h4 {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.career-value-card p { font-size: .83rem; color: var(--text-muted); }

.open-positions { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); }
.position-card {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: background var(--transition);
  border-left: 2px solid transparent;
}
.position-card:last-child { border-bottom: none; }
.position-card:hover { background: var(--off-white); border-left-color: var(--gold); }
.position-info h4 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.position-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.position-tag {
  padding: .2rem .75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
}
.benefit-card {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.875rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.benefit-card:nth-child(3n) { border-right: none; }
.benefit-card:nth-last-child(-n+3) { border-bottom: none; }
.benefit-card:hover { background: var(--off-white); }
.benefit-card-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.benefit-card h4 {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.benefit-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ===== Kontakt Page ===== */
.contact-section { padding: var(--section-py) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .015em;
}
.form-label span { color: var(--crimson); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  padding: .875rem 1.1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,95,160,.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7c93' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-file-label {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1.1rem 1.25rem;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
}
.form-file-label:hover { border-color: var(--blue); background: var(--gray-100); }
.form-file-label svg { color: var(--gold); flex-shrink: 0; }
.form-file-label span { font-size: .875rem; color: var(--text-muted); }
.form-file-label strong { color: var(--blue); }
input[type="file"] { display: none; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 0;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-checkbox-text { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }
.form-checkbox-text a { color: var(--blue); text-decoration: underline; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--off-white);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--gold);
}
.contact-info-card h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-detail-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .15rem;
  font-weight: 700;
}
.contact-detail-value { font-size: .9rem; color: var(--text); font-weight: 500; }

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .875rem;
  border: 1px solid var(--gray-200);
}
.map-placeholder svg { width: 34px; height: 34px; color: var(--gray-300); }

.hours-list { display: flex; flex-direction: column; gap: .55rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 500; color: var(--text); }

.form-success {
  display: none;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg { width: 52px; height: 52px; color: #388e3c; margin: 0 auto 1.25rem; }
.form-success h3 { color: #2e7d32; font-family: var(--font-serif); font-weight: 400; margin-bottom: .75rem; }
.form-success p { color: #4a7c59; font-size: .95rem; }
.form-error {
  display: none;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(140,26,46,.28);
  border-left: 3px solid var(--crimson);
  background: rgba(140,26,46,.06);
  color: var(--crimson);
  font-size: .9rem;
  line-height: 1.6;
}
.form-error.show { display: block; }

/* ===== Impressum ===== */
.legal-page { padding: calc(var(--header-h) + 4rem) 0 6rem; }
.legal-content { max-width: 860px; }
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.legal-section h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: .75rem; }
.legal-section p,
.legal-section ul li { font-size: .9rem; color: var(--text-body); line-height: 1.75; }
.legal-section ul { padding-left: 1.5rem; }
.legal-section ul li { list-style: disc; margin-bottom: .4rem; }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .service-cards  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --section-py: 4.5rem; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions .btn { display: none; }

  .intro-split    { grid-template-columns: 1fr; gap: 3rem; }
  .intro-images   { order: -1; max-width: 520px; }
  .why-split      { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid       { grid-template-columns: 1fr 1fr; }

  .service-detail-inner,
  .service-detail-inner.reverse { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-inner.reverse .sdi-content,
  .service-detail-inner.reverse .sdi-aside { order: 0; }
  .sdi-aside-card { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .career-values { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; --header-h: 68px; }
  .container { padding: 0 1.25rem; }

  .service-cards      { grid-template-columns: 1fr; }
  .testimonial-grid   { grid-template-columns: 1fr; }
  .docs-grid          { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .career-values      { grid-template-columns: 1fr; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-map         { grid-template-columns: 1fr; margin-top: -1rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .contact-sidebar    { grid-template-columns: 1fr; }
  .form-grid          { grid-template-columns: 1fr; }

  .doc-card           { flex-direction: column; text-align: center; }
  .doc-info           { flex-direction: column; text-align: center; }

  .intro-img-main     { width: 100%; }
  .intro-img-secondary { display: none; }
  .intro-badge        { display: none; }

  .hero__content      { padding-bottom: 4rem; }
  .hero__intro        { font-size: 1rem; }
  .hero__highlight    { font-size: 1.18rem; }
  .hero__title--brand { font-size: 2.45rem; }
  .page-hero          { padding: calc(var(--header-h) + 3rem) 0 4rem; }
}

@media (max-width: 480px) {
  .hero__btns     { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__title--brand { font-size: 2.08rem; }
  .btn-group      { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .cookie-banner  { right: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); }
  .cookie-banner__btn { flex-basis: 100%; }
}

/* ===== Handelszentrum / Standort Section ===== */
.hz-section {
  padding: var(--section-py) 0;
  background: #ffffff;
}
.hz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5rem;
  align-items: center;
}
.hz-intro {
  max-width: 620px;
}
.hz-intro .lead {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
  margin-bottom: 0;
}
.hz-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: .625rem;
  height: 520px;
}
.hz-collage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hz-collage-stack {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.hz-collage-sm {
  flex: 1;
  width: 100%;
  object-fit: cover;
  display: block;
  min-height: 0;
}
.hz-address-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.5rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  margin-top: 1.75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.hz-address-badge svg { color: var(--gold); flex-shrink: 0; }
.hz-text-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: .5rem;
}
.hz-text-block {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.35rem;
}
.hz-text-block h3 {
  font-family: var(--font-sans) !important;
  font-size: .78rem;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.hz-text-block p {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
  margin-bottom: 1rem;
}
.hz-text-block p:last-child {
  margin-bottom: 0;
}

/* ===== Kooperationspartner Profile Cards ===== */
.koop-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.koop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}
.koop-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.koop-card:hover { box-shadow: var(--shadow-lg); }
.koop-photo-wrap {
  height: 320px;
  overflow: hidden;
  background: var(--off-white);
}
.koop-photo {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.koop-photo--wide {
  object-position: center center;
}
.koop-photo--portrait {
  object-position: center 14%;
}
.koop-photo--landscape {
  object-position: center 38%;
}
.koop-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.koop-photo-placeholder > svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,.12);
}
.koop-photo-initials {
  position: absolute;
  bottom: 1.1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  line-height: 1;
}
.koop-body { padding: 1.75rem 2rem 2rem; }
.koop-role {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.koop-name {
  font-family: var(--font-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--text);
  margin-bottom: .2rem;
  line-height: 1.2;
}
.koop-firm {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.koop-bio {
  font-size: .86rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.koop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.koop-tag {
  padding: .2rem .65rem;
  background: var(--gold-pale);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold);
  border: 1px solid rgba(184,146,42,.25);
}
.koop-contacts {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.koop-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text-body);
}
.koop-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.koop-contact-item a { color: inherit; transition: color var(--transition); }
.koop-contact-item a:hover { color: var(--gold); }

.koop-network-row {
  border-top: 1px solid var(--gray-200);
  padding-top: 3rem;
}
.koop-network-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== Form Section Divider ===== */
.form-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* ===== Lawyer Profile Section ===== */
.lawyer-section { background: var(--white); }
.lawyer-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.lawyer-section .intro-content .lead,
.lawyer-section .intro-content > p,
.vita-intro-split .lead,
.vita-intro-split p {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}
.lawyer-subtitle {
  display: block;
  font-family: var(--font-sans) !important;
  font-size: var(--copy-size);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-top: .55rem;
  line-height: 1.65;
}
.lawyer-photo-wrap {
  position: relative;
  padding-bottom: 2.5rem;
  padding-right: 1.75rem;
}
.lawyer-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72%;
  height: 72%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  pointer-events: none;
}
.lawyer-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  box-shadow: var(--shadow-xl);
}
.lawyer-fa-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.25rem;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
  min-width: 240px;
}
.lawyer-fa-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.lawyer-fa-item {
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: .6rem;
  line-height: 1.5;
  margin-bottom: .35rem;
}
.lawyer-fa-item:last-child { margin-bottom: 0; }
.lawyer-fa-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
}
.lawyer-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .85rem;
}
.lawyer-title-chip {
  display: inline-block;
  padding: .3rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.lawyer-title-chip--base {
  background: var(--gray-100);
  color: var(--text);
  border: 1px solid var(--gray-200);
}
.lawyer-specialist-strip {
  margin-bottom: 1.75rem;
  padding: 1.15rem;
  border: 1px solid rgba(184,146,42,.35);
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(184,146,42,.1), rgba(255,255,255,.92));
}
.lawyer-specialist-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.lawyer-specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.lawyer-specialist-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}
.lawyer-specialist-count {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Vita Page ===== */
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}
.vita-intro-split {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}
.vita-intro-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  box-shadow: var(--shadow-xl);
}
.vita-qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.vita-qual-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  padding: 2rem;
}
.vita-qual-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,146,42,.4);
  margin-bottom: 1rem;
}
.vita-qual-icon svg { width: 18px; height: 18px; color: var(--gold); }
.vita-qual-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.vita-qual-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.vita-qual-sub { font-size: .82rem; color: var(--text-muted); }
.vita-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3.5rem;
}
.vita-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: .5rem;
  bottom: .5rem;
  width: 1px;
  background: var(--gray-200);
}
.vita-entry {
  position: relative;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.vita-entry:last-child { border-bottom: none; }
.vita-dot {
  position: absolute;
  left: -2.275rem;
  top: 2.05rem;
  width: 9px;
  height: 9px;
  background: var(--gold);
  z-index: 1;
}
.vita-year {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.vita-entry h4 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .3rem;
}
.vita-entry p { font-size: .87rem; color: var(--text-muted); margin: 0; }
.vita-quote {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vita-quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  line-height: .6;
  opacity: .18;
  position: absolute;
  top: 2rem;
  left: 3rem;
  user-select: none;
}
.vita-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.vita-quote-sig {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.member-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
}
.member-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9rem;
  color: var(--text-body);
  transition: background var(--transition), border-left-color var(--transition);
  border-left: 2px solid transparent;
}
.member-item:last-child { border-bottom: none; }
.member-item:hover { background: var(--off-white); border-left-color: var(--gold); }
.member-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== Responsive – new sections ===== */
@media (max-width: 1024px) {
  .hz-layout          { grid-template-columns: 1fr; gap: 3rem; }
  .hz-collage         { height: 400px; }
  .hz-intro           { max-width: none; }
  .hz-text-grid       { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 0; }
  .koop-grid          { grid-template-columns: 1fr 1fr; }
  .lawyer-split       { grid-template-columns: 1fr; gap: 3rem; }
  .lawyer-photo-wrap  { max-width: 400px; }
  .vita-intro-split   { grid-template-columns: 1fr; gap: 3rem; }
  .vita-intro-photo   { max-width: 380px; }
  .vita-qual-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hz-collage {
    grid-template-columns: 1fr;
    height: auto;
    gap: .5rem;
  }
  .hz-collage-main    { height: 260px; }
  .hz-collage-stack   { flex-direction: row; height: 160px; }
  .koop-grid          { grid-template-columns: 1fr; }
  .vita-qual-grid     { grid-template-columns: 1fr; }
  .vita-quote         { padding: 3.5rem 1.5rem; }
  .vita-quote-mark    { font-size: 5rem; }
  .lawyer-fa-badge    { left: 0; min-width: 0; right: 0; }
  .lawyer-specialist-grid { grid-template-columns: 1fr; }
  .lawyer-specialist-card { min-height: 0; }
}
