:root {
  --ink: #16212b;
  --muted: #5c6873;
  --line: #d8dde1;
  --paper: #f7f4ef;
  --white: #ffffff;
  --accent: #9f3f2f;
  --accent-dark: #742c22;
  --green: #315c55;
  --gold: #caa86a;
  --shadow: 0 18px 55px rgba(22, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 25, 35, 0.88), rgba(15, 25, 35, 0.58) 55%, rgba(15, 25, 35, 0.28)),
    linear-gradient(0deg, rgba(15, 25, 35, 0.72), rgba(15, 25, 35, 0.02) 38%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 42px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.contact-section .button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 970px;
  margin: 56px 0 0;
  background: rgba(255, 255, 255, 0.28);
}

.hero-facts div {
  padding: 18px;
  background: rgba(15, 25, 35, 0.74);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 0;
}

.intro-grid,
.two-column,
.honorar,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.intro-grid > *,
.two-column > *,
.honorar > *,
.contact-section > *,
.court-lists > * {
  min-width: 0;
}

.two-column h2 {
  overflow-wrap: anywhere;
}

#stuttgart > div:first-child {
  max-width: 560px;
}

.text-block p,
.two-column p,
.honorar p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.feature-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.feature-band article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
}

.court-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.court-lists > div,
.profile {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.court-lists > div {
  padding: 24px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 6px;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process li {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  counter-increment: step;
}

.process li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.process strong,
.process span {
  display: block;
}

.process span {
  margin-top: 8px;
  color: var(--muted);
}

.honorar {
  align-items: center;
}

.contact-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  background: #e9eceb;
}

.profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.profile img {
  width: 120px;
  height: 150px;
  object-fit: cover;
}

.profile p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 40px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.site-footer p {
  margin-bottom: 0;
}

.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0 92px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.legal-main h2 {
  margin-top: 38px;
  font-size: 1.55rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.page-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 clamp(44px, 6vw, 72px);
}

.page-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.page-hero .lead {
  max-width: 760px;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.article-flow h2 {
  margin-top: 46px;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.article-flow p,
.article-flow li {
  color: var(--muted);
  font-size: 1.06rem;
}

.info-panel {
  position: sticky;
  top: 102px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-panel p {
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  display: block;
  padding: 12px 14px;
  background: #f1eee8;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.link-list a:hover {
  background: #e7e1d7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.service-list article {
  padding: 24px;
  background: var(--white);
}

.service-list p {
  margin-bottom: 0;
}

.cta-band {
  width: 100%;
  padding: clamp(42px, 6vw, 72px) max(18px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero-facts,
  .intro-grid,
  .two-column,
  .honorar,
  .contact-section,
  .content-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .court-lists,
  .service-list,
  .process ol {
    grid-template-columns: 1fr;
  }

  .info-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 94px;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .profile {
    grid-template-columns: 1fr;
  }
}
