:root {
  --navy: #253746;
  --navy-deep: #18252e;
  --steel: #5f7483;
  --steel-soft: #dfe5e8;
  --taupe: #806a56;
  --ink: #20292f;
  --muted: #667078;
  --surface: #f4f3f0;
  --surface-dark: #ebe9e4;
  --paper: #ffffff;
  --line: #d9d9d5;
  --white: #ffffff;
  --content: 1220px;
  --wide: 1440px;
  --shadow: 0 18px 45px rgba(24, 37, 46, .10);
  --sans: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--steel); }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 1.15rem; }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 690;
  letter-spacing: -.035em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
ul, ol { padding-left: 1.25rem; }
blockquote { margin: 0; }
::selection { color: var(--white); background: var(--steel); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.v7-utility { color: rgba(255,255,255,.76); background: var(--navy-deep); font-size: 12px; }
.v7-utility > div {
  width: min(var(--wide), calc(100% - 48px));
  min-height: 38px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v7-utility nav { display: flex; gap: 24px; }
.v7-utility a { color: var(--white); text-decoration: none; }
.v7-utility a:hover { color: #d9e0e4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(37,55,70,.12);
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--wide), calc(100% - 48px));
  min-height: 88px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr auto;
  align-items: center;
  gap: 36px;
}
.brand { display: inline-flex; width: min(220px, 100%); }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.1vw, 34px); }
.site-nav a {
  position: relative;
  padding: 32px 0 29px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav a:hover,
.site-nav a.is-active { color: var(--navy); }
.v7-header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.v7-header-contact:hover { color: var(--white); background: var(--navy); }
.menu-toggle { display: none; border: 0; padding: 10px; color: var(--ink); background: transparent; font-weight: 680; cursor: pointer; }
.menu-toggle i { display: inline-block; width: 22px; height: 2px; margin-left: 9px; vertical-align: middle; background: currentColor; box-shadow: 0 -6px currentColor, 0 6px currentColor; }

.container,
.footer-main,
.footer-bottom { width: min(var(--content), calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.col-12 { flex: 1 1 100%; min-width: 0; }
.col-6 { flex: 1 1 calc(50% - 12px); }
.col-md-4 { flex: 1 1 calc(33.333% - 16px); }
.col-md-6, .col-lg-6 { flex: 1 1 calc(50% - 12px); }
.col-md-8 { flex: 1 1 650px; min-width: 0; }
.col-lg-3 { flex: 1 1 calc(25% - 18px); }

.calm-kicker,
.eyebrow {
  margin: 0 0 17px;
  color: var(--taupe);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.calm-button,
.button,
.cta,
input.action,
.Actions button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 690;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.calm-button:hover,
.button:hover,
.cta:hover,
input.action:hover,
.Actions button:hover { color: var(--white); background: var(--navy-deep); border-color: var(--navy-deep); }
.calm-button-secondary { color: var(--navy); background: transparent; }
.calm-button-secondary:hover { color: var(--white); background: var(--navy); }
.calm-button-light { color: var(--navy-deep); background: var(--white); border-color: var(--white); }
.calm-button-light:hover { color: var(--white); background: transparent; }
.calm-text-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.calm-text-link span,
.text-link span { transition: transform .2s ease; }
.calm-text-link:hover span,
.text-link:hover span { transform: translateX(4px); }

/* Calm editorial homepage */
.calm-home { overflow: clip; background: var(--paper); }
.calm-hero {
  width: min(var(--wide), calc(100% - 48px));
  min-height: 690px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(410px, .82fr) minmax(520px, 1.18fr);
  align-items: stretch;
  gap: clamp(46px, 6vw, 95px);
  padding: clamp(58px, 6vw, 92px) 0;
}
.calm-hero-copy { align-self: center; }
.calm-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: .98;
}
.calm-hero-lead { max-width: 650px; margin: 32px 0 0; color: #505b63; font-size: clamp(18px, 1.45vw, 22px); line-height: 1.55; }
.calm-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.calm-since { margin: 44px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.calm-since span { margin-right: 12px; color: var(--navy); font-weight: 760; }
.calm-hero-image { min-height: 540px; margin: 0; overflow: hidden; background: var(--surface); }
.calm-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }

.calm-facts {
  width: min(var(--wide), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.calm-facts > div { min-height: 110px; padding: 25px 28px; border-left: 1px solid var(--line); }
.calm-facts > div:first-child { border-left: 0; }
.calm-facts strong,
.calm-facts span { display: block; }
.calm-facts strong { margin-bottom: 6px; color: var(--navy); font-size: 15px; }
.calm-facts span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.calm-section { width: min(var(--content), calc(100% - 48px)); margin: auto; padding: clamp(90px, 10vw, 155px) 0; }
.calm-section-label { display: flex; align-items: flex-start; gap: 18px; }
.calm-section-label span { flex: 0 0 auto; color: var(--taupe); font-size: 12px; font-weight: 780; }
.calm-section-label p { margin: -3px 0 0; color: var(--muted); font-size: 12px; font-weight: 720; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.calm-intro { display: grid; grid-template-columns: 170px minmax(0, 1fr) 310px; align-items: start; gap: clamp(35px, 5vw, 78px); }
.calm-intro-copy h2 { max-width: 760px; font-size: clamp(39px, 4.2vw, 61px); line-height: 1.04; }
.calm-lead { max-width: 740px; margin: 32px 0 16px; color: var(--navy); font-size: clamp(20px, 2vw, 26px); line-height: 1.5; }
.calm-intro-copy > p:not(.calm-lead) { max-width: 760px; color: var(--muted); }
.calm-principle { margin-top: 8px; padding: 28px 0 28px 28px; border-left: 2px solid var(--steel); }
.calm-principle h3 { margin-bottom: 12px; color: var(--navy); font-size: 20px; line-height: 1.28; }
.calm-principle p { margin: 0; color: var(--muted); font-size: 14px; }

.calm-services { width: 100%; max-width: none; padding-right: max(24px, calc((100vw - var(--wide)) / 2)); padding-left: max(24px, calc((100vw - var(--wide)) / 2)); background: var(--surface); }
.calm-section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; gap: 70px; margin-bottom: 52px; }
.calm-section-heading h2 { max-width: 800px; font-size: clamp(39px, 4.2vw, 61px); line-height: 1.04; }
.calm-section-heading > p { margin: 0; color: var(--muted); }
.calm-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.calm-service-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.calm-service-card figure { height: clamp(330px, 31vw, 470px); margin: 0; overflow: hidden; background: var(--surface-dark); }
.calm-service-card figure img { width: 100%; height: 100%; object-fit: cover; }
.calm-service-card > div { min-height: 355px; padding: clamp(32px, 4vw, 52px); }
.calm-index { display: block; margin-bottom: 40px; color: var(--taupe); font-size: 12px; font-weight: 780; letter-spacing: .12em; }
.calm-service-card h3 { max-width: 520px; font-size: clamp(28px, 3vw, 41px); line-height: 1.08; }
.calm-service-card p { max-width: 550px; color: var(--muted); }

.calm-advantages { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(45px, 8vw, 120px); }
.calm-advantages > div > h2 { max-width: 760px; margin-bottom: 52px; font-size: clamp(39px, 4.2vw, 61px); line-height: 1.04; }
.calm-advantage-list { border-top: 1px solid var(--line); }
.calm-advantage-list article { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.calm-advantage-list article > span { color: var(--taupe); font-size: 12px; font-weight: 780; }
.calm-advantage-list h3 { margin: 0 0 6px; font-size: 22px; }
.calm-advantage-list p { max-width: 680px; margin: 0; color: var(--muted); }

.calm-insolvency {
  width: min(var(--wide), calc(100% - 48px));
  margin: 0 auto clamp(100px, 10vw, 155px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 570px;
  color: var(--white);
  background: var(--navy);
}
.calm-insolvency figure { min-height: 480px; margin: 0; overflow: hidden; }
.calm-insolvency figure img { width: 100%; height: 100%; object-fit: cover; object-position: 35% center; }
.calm-insolvency > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 6vw, 85px); }
.calm-insolvency .calm-kicker { color: #c3cbd0; }
.calm-insolvency h2 { color: var(--white); font-size: clamp(38px, 4.2vw, 60px); line-height: 1.04; }
.calm-insolvency p:not(.calm-kicker) { color: rgba(255,255,255,.74); }

.calm-quote { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: clamp(80px, 10vw, 145px) 0; text-align: center; }
.calm-quote blockquote { color: var(--navy-deep); font-size: clamp(29px, 4vw, 49px); font-weight: 520; letter-spacing: -.035em; line-height: 1.3; }
.calm-quote-author { margin: 28px 0 0; color: var(--taupe); font-size: 12px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }

.calm-cta {
  width: min(var(--wide), calc(100% - 48px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(58px, 7vw, 95px);
  border: 1px solid var(--line);
  background: var(--surface);
}
.calm-cta h2 { max-width: 850px; margin: 0; font-size: clamp(39px, 4.5vw, 65px); line-height: 1.02; }
.calm-cta > div:last-child { max-width: 390px; justify-self: end; }
.calm-cta > div:last-child p { color: var(--muted); }

/* Imported content pages */
.v7-inner-main { background: var(--paper); }
.image-content-block,
.insolvenz-page__header-image {
  width: min(var(--wide), calc(100% - 48px));
  height: clamp(340px, 41vw, 580px);
  margin: clamp(36px, 5vw, 72px) auto 0;
  overflow: hidden;
  background: var(--surface-dark);
}
.image-content-block img,
.insolvenz-page__header-image img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.text-content-block,
.teasers-content-block,
.i-can-bullet-points-content-block,
.too-green-content-block,
.testimonials-content-block,
.team-holder-content-block { padding: clamp(65px, 8vw, 110px) 0; }
.text-content-block.-background-white { background: var(--paper); }
.text-content-block.-background-gray { background: var(--surface); }
.text-content-block.-background-green { color: var(--white); background: var(--navy); }
.text-content-block.-background-green h1,
.text-content-block.-background-green h2,
.text-content-block.-background-green h3 { color: var(--white); }
.text-content-block__content { width: min(910px, 100%); }
.text-content-block__content > h1:first-child { margin-bottom: 32px; }
.text-content-block__content > h3:first-of-type { color: var(--navy); font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.text-content-block p,
.legal-content p,
.insolvenz-page__content { color: #48535a; }
.check { padding: 0; list-style: none; }
.check li { position: relative; margin-bottom: 12px; padding-left: 28px; }
.check li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--steel); font-weight: 800; }
.check li p { margin: 0; }

.teasers-content-block { background: var(--surface); }
.teasers-content-block .row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.teasers-content-block__teaser { height: 100%; padding: 28px; border-top: 2px solid var(--steel); background: var(--paper); }
.teasers-content-block__teaser img { width: 58px; height: 58px; margin-bottom: 22px; object-fit: contain; filter: saturate(.35); }
.teasers-content-block__teaser-title { font-size: 1.18rem; }
.teasers-content-block__teaser p { color: var(--muted); font-size: 14px; }

.too-green-content-block { color: var(--white); background: var(--navy); }
.too-green-content-block .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 65px; }
.too-green-content-block h1,
.too-green-content-block h2,
.too-green-content-block h3 { color: var(--white); }
.too-green-content-block p { color: rgba(255,255,255,.76); }
.too-green-content-block .cta { border-color: var(--white); color: var(--navy); background: var(--white); }

.i-can-bullet-points-content-block { background: var(--surface); }
.i-can-bullet-points-content-block__content { margin-bottom: 32px; }
.i-can-bullet-points-content-block .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.i-can-bullet-point { height: 100%; display: flex; gap: 20px; align-items: flex-start; padding: 24px; border: 1px solid var(--line); background: var(--paper); }
.i-can-bullet-point > div:first-child { flex: 0 0 60px; }
.i-can-bullet-point img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; filter: saturate(.3); }
.i-can-bullet-point h3 { margin-bottom: 6px; font-size: 1.16rem; }

.testimonials-content-block { color: var(--white); background: var(--navy); }
.testimonials-content-block h2 { color: var(--white); }
.legacy-slider .legacy-slide { display: none; }
.legacy-slider .legacy-slide:first-child { display: block; }
.testimonial { max-width: 920px; padding: 0; color: var(--white); background: none; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.45; }
.testimonial cite { display: block; margin-top: 22px; color: #c6d0d6; font-size: .85rem; font-style: normal; }

.team-holder-content-block { background: var(--surface); }
.team-holder-content-block h2 { margin-bottom: 32px; }
.team-holder-content-block .row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.team-member { height: 100%; padding: 18px; border: 1px solid var(--line); background: var(--paper); }
.team-member > img[src]:not([src=""]) { width: 100%; aspect-ratio: 4 / 4.4; margin-bottom: 18px; object-fit: cover; object-position: top; background: var(--surface-dark); filter: saturate(.72); }
.team-member img[src=""] { display: none; }
.team-member__title,
.team-member h3 { font-size: 1.12rem; }
.team-member p { color: var(--muted); font-size: .86rem; }

/* Insolvency information portal */
.insolvenz-page__breadcrumbs { margin-top: 0; padding: 42px 0; color: #d9e0e4; background: var(--navy); }
.insolvenz-page__breadcrumbs .container { width: min(var(--content), calc(100% - 48px)); }
.insolvenz-page__breadcrumbs h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); }
.insolvenz-page__breadcrumbs a { color: #e3e8ea; }
.insolvenz-page__breadcrumbs > .container > a,
.insolvenz-page__breadcrumbs > .container { font-size: .85rem; }
.insolvenz-page__breadcrumbs + .container { padding-top: 65px; padding-bottom: 85px; }
.insolvenz-page__breadcrumbs + .container > .row { flex-wrap: nowrap; align-items: flex-start; }
.order-md-2 { order: 2; }
.order-md-1 { order: 1; flex: 0 0 310px; }
.insolvenz-page__title { margin-bottom: 32px; font-size: clamp(2rem, 3.5vw, 3.1rem); }
.insolvenz-page__content h2,
.insolvenz-page__content h3,
.insolvenz-page__content h4 { margin-top: 35px; }
.insolvenz-page__content img { margin: 24px 0; }
.insolvenz-page__sidenav { position: sticky; top: 112px; margin: 0; padding: 8px; border: 1px solid var(--line); background: var(--surface); list-style: none; }
.insolvenz-page__sidenav li { margin: 0; padding: 0; border-bottom: 1px solid var(--line); }
.insolvenz-page__sidenav li:last-child { border-bottom: 0; }
.insolvenz-page__sidenav a { display: block; padding: 10px 11px; color: #3d484f; font-size: 13px; font-weight: 610; line-height: 1.4; text-decoration: none; }
.insolvenz-page__sidenav a:hover,
.insolvenz-page__sidenav a.current { color: var(--white); background: var(--navy); }
.insolvenz-page__sidenav ul { margin: 0; padding: 0 0 6px 10px; list-style: none; }
.v7-topic-toggle { display: none; }

/* Form and legal pages */
.userform .field { display: grid; gap: 6px; margin-bottom: 16px; }
.userform label { color: var(--ink); font-size: 14px; font-weight: 680; }
.userform input,
.userform textarea,
.userform select { width: 100%; padding: 13px 14px; border: 1px solid #b9bec1; border-radius: 1px; color: var(--ink); background: var(--paper); }
.userform input:focus,
.userform textarea:focus,
.userform select:focus { outline: 3px solid rgba(95,116,131,.18); border-color: var(--steel); }
.userform textarea { min-height: 155px; resize: vertical; }
.btn-toolbar { margin-top: 20px; }
.legal-hero { color: var(--white); background: var(--navy); }
.legal-hero > div { width: min(var(--content), calc(100% - 48px)); margin: auto; padding: 80px 0; }
.legal-hero h1 { color: var(--white); }
.legal-hero .eyebrow { color: #c8d0d5; }
.legal-content article { width: min(900px, 100%); }
.legal-content article h1:first-child { display: none; }
.legal-content article h2,
.legal-content article h3,
.legal-content article h4 { margin-top: 40px; }

/* Footer */
.site-footer { margin-top: 0; color: #dbe1e4; background: var(--navy-deep); }
.footer-main { padding: 75px 0 60px; display: grid; grid-template-columns: 1.5fr 1.15fr .9fr .65fr; gap: 48px; }
.footer-brand img { width: 210px; margin-bottom: 18px; filter: invert(1) grayscale(1); opacity: .95; }
.footer-brand p { max-width: 340px; color: #aeb9bf; }
.site-footer address { margin-bottom: 12px; font-style: normal; }
.site-footer a,
.site-footer section > span { display: block; width: fit-content; margin: 6px 0; color: #dbe1e4; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-title { margin-bottom: 16px; color: #aebbc2; font-size: 12px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.13); color: #8898a1; font-size: 12px; }

.v7-reading-progress { position: fixed; top: 0; left: 0; z-index: 4000; width: 0; height: 2px; background: var(--steel); pointer-events: none; }
.v7-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.v7-reveal.is-in-view { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 190px 1fr auto; gap: 24px; }
  .site-nav { gap: 18px; }
  .calm-hero { grid-template-columns: minmax(350px, .8fr) minmax(430px, 1.2fr); gap: 45px; }
  .calm-intro { grid-template-columns: 130px minmax(0, 1fr); }
  .calm-principle { grid-column: 2; max-width: 720px; }
  .team-holder-content-block .row,
  .teasers-content-block .row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main section:last-child { grid-column: 2; }
}

@media (max-width: 920px) {
  .header-inner { min-height: 76px; display: flex; justify-content: space-between; }
  .brand { width: 190px; }
  .v7-header-contact { display: none; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 12px 24px 20px; align-items: stretch; flex-direction: column; gap: 0; border-top: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .site-nav a::after { right: auto; bottom: 7px; width: 35px; }
  .calm-hero { min-height: 0; grid-template-columns: 1fr; padding: 70px 0; }
  .calm-hero-copy { max-width: 730px; }
  .calm-hero-image { min-height: 540px; }
  .calm-facts { grid-template-columns: repeat(2, 1fr); }
  .calm-facts > div:nth-child(3) { border-left: 0; }
  .calm-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .calm-intro { grid-template-columns: 1fr; gap: 32px; }
  .calm-principle { grid-column: auto; max-width: 720px; }
  .calm-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .calm-service-grid { grid-template-columns: 1fr; }
  .calm-service-card { display: grid; grid-template-columns: 1fr 1fr; }
  .calm-service-card figure { height: auto; min-height: 420px; }
  .calm-advantages { grid-template-columns: 1fr; gap: 35px; }
  .calm-insolvency { grid-template-columns: 1fr; }
  .calm-insolvency figure { min-height: 500px; }
  .calm-cta { grid-template-columns: 1fr; align-items: start; }
  .calm-cta > div:last-child { justify-self: start; }
  .insolvenz-page__breadcrumbs + .container > .row { flex-wrap: wrap; }
  .order-md-1 { order: 1; flex: 1 1 100%; }
  .order-md-2 { order: 2; }
  .v7-topic-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding: 14px 16px; border: 1px solid var(--line); color: var(--navy); background: var(--surface); font-weight: 700; cursor: pointer; }
  .insolvenz-page__sidenav { position: static; display: none; max-height: 60vh; overflow: auto; }
  .insolvenz-page__sidenav.is-expanded { display: block; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .v7-utility { display: none; }
  .header-inner,
  .container,
  .footer-main,
  .footer-bottom,
  .calm-hero,
  .calm-facts,
  .calm-section,
  .calm-insolvency,
  .calm-quote,
  .calm-cta,
  .image-content-block,
  .insolvenz-page__header-image { width: min(100% - 30px, var(--content)); }
  .calm-hero { padding: 54px 0; }
  .calm-hero h1 { font-size: clamp(43px, 13vw, 61px); }
  .calm-hero-lead { margin-top: 24px; font-size: 18px; }
  .calm-actions { align-items: stretch; flex-direction: column; }
  .calm-actions .calm-button { width: 100%; }
  .calm-hero-image { min-height: 420px; }
  .calm-hero-image img { object-position: 62% center; }
  .calm-facts { grid-template-columns: 1fr; }
  .calm-facts > div { min-height: 86px; border-left: 0; border-bottom: 1px solid var(--line); }
  .calm-facts > div:last-child { border-bottom: 0; }
  .calm-section { padding: 82px 0; }
  .calm-intro-copy h2,
  .calm-section-heading h2,
  .calm-advantages > div > h2 { font-size: 39px; }
  .calm-services { width: 100%; padding-right: 15px; padding-left: 15px; }
  .calm-service-card { display: block; }
  .calm-service-card figure { height: 310px; min-height: 0; }
  .calm-service-card > div { min-height: 0; padding: 30px 24px 38px; }
  .calm-index { margin-bottom: 25px; }
  .calm-service-card h3 { font-size: 31px; }
  .calm-advantage-list article { grid-template-columns: 50px 1fr; }
  .calm-insolvency { margin-bottom: 85px; }
  .calm-insolvency figure { min-height: 340px; }
  .calm-insolvency > div { padding: 40px 25px 48px; }
  .calm-insolvency h2 { font-size: 39px; }
  .calm-quote { padding: 80px 0; }
  .calm-quote blockquote { font-size: 29px; }
  .calm-cta { margin-bottom: 16px; padding: 45px 24px; }
  .calm-cta h2 { font-size: 39px; }
  .image-content-block,
  .insolvenz-page__header-image { height: 310px; margin-top: 28px; }
  .image-content-block img { object-position: 60% center; }
  .text-content-block,
  .teasers-content-block,
  .i-can-bullet-points-content-block,
  .too-green-content-block,
  .testimonials-content-block,
  .team-holder-content-block { padding: 62px 0; }
  .teasers-content-block .row,
  .i-can-bullet-points-content-block .row,
  .too-green-content-block .row,
  .team-holder-content-block .row { grid-template-columns: 1fr; }
  .i-can-bullet-point { display: block; }
  .i-can-bullet-point img { margin-bottom: 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-main section:last-child { grid-column: auto; }
  .footer-bottom { min-height: 80px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .v7-reveal { opacity: 1; transform: none; }
}
