:root {
  --red: #e31a2b;
  --blue: #182d85;
  --ink: #454545;
  --text: #282828;
  --muted: #6d6d6d;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --blue-soft: #edf0fb;
  --red-soft: #fdebee;
  --offer-band: #E5EAF0;
  --action-gray: #E5EAF0;
  --process-band: #F5F7F9;
  --cta-band: var(--action-gray);
  --copy-size: clamp(1.04rem, 1.42vw, 1.32rem);
  --copy-line: 1.5;
  --hero-intro-size: clamp(1.12rem, 1.65vw, 1.45rem);
  --hero-intro-line: 1.44;
  --hero-min-height: clamp(560px, 48vw, 760px);
  --hero-min-height-tablet: clamp(540px, 68svh, 680px);
  --hero-min-height-mobile: clamp(520px, 76svh, 640px);
  --gutter: clamp(18px, 4vw, 36px);
  --text-max: 900px;
  --max: 1160px;
  --radius: 8px;
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.brand img {
  display: block;
  width: clamp(150px, 18vw, 214px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

/* Invisible hover bridge between "Angebote" and the dropdown so the
   menu stays open when the mouse moves directly down into it. */
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: auto;
}

.main-nav a,
.nav-trigger {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-trigger {
  appearance: none;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  border-color: var(--red);
}

.submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 10px 0;
  border: 1px solid rgba(69, 69, 69, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(25, 25, 25, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.submenu a,
.submenu span {
  display: block;
  padding: 10px 16px;
  border-bottom: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--red-soft);
  color: var(--red);
}

.submenu span {
  color: var(--muted);
  cursor: default;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: auto;
  min-height: var(--hero-min-height);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #b9c8d3;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background-color: #b9c8d3;
  background-image: url("assets/hero-landing-20260827.png");
  background-image: image-set(
    url("assets/hero-landing-20260827.webp") type("image/webp"),
    url("assets/hero-landing-20260827.png") type("image/png")
  );
  background-position: center 48%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 24, 22, 0.48) 0%, rgba(32, 27, 24, 0.32) 44%, rgba(32, 27, 24, 0.12) 74%, rgba(32, 27, 24, 0.02) 100%),
    linear-gradient(0deg, rgba(20, 18, 17, 0.18) 0%, rgba(20, 18, 17, 0.02) 58%);
}

.subpage-hero {
  max-width: calc(var(--max) + var(--gutter) + var(--gutter));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 116px) var(--gutter) clamp(42px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.45rem, 5.4vw, 5.1rem);
}

.offer-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  height: auto;
  min-height: var(--hero-min-height);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: #b9c8d3;
}

.offer-hero::before,
.offer-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.offer-hero::before {
  z-index: -2;
  background-color: #b9c8d3;
  background-image: url("assets/offer-hero-auftritt-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-auftritt-20260827.webp") type("image/webp"),
    url("assets/offer-hero-auftritt-20260827.png") type("image/png")
  );
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.auftritt-hero::before {
  background-image: url("assets/offer-hero-auftritt-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-auftritt-20260827.webp") type("image/webp"),
    url("assets/offer-hero-auftritt-20260827.png") type("image/png")
  );
}

.praesentation-hero::before {
  background-image: url("assets/offer-hero-praesentation-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-praesentation-20260827.webp") type("image/webp"),
    url("assets/offer-hero-praesentation-20260827.png") type("image/png")
  );
}

.konflikt-hero::before {
  background-image: url("assets/offer-hero-konflikt-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-konflikt-20260827.webp") type("image/webp"),
    url("assets/offer-hero-konflikt-20260827.png") type("image/png")
  );
}

.fuehrung-hero::before {
  background-image: url("assets/offer-hero-fuehrung-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-fuehrung-20260827.webp") type("image/webp"),
    url("assets/offer-hero-fuehrung-20260827.png") type("image/png")
  );
}

.team-hero::before {
  background-image: url("assets/offer-hero-team-20260827.png");
  background-image: image-set(
    url("assets/offer-hero-team-20260827.webp") type("image/webp"),
    url("assets/offer-hero-team-20260827.png") type("image/png")
  );
}

.offer-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 24, 22, 0.48) 0%, rgba(32, 27, 24, 0.32) 44%, rgba(32, 27, 24, 0.12) 74%, rgba(32, 27, 24, 0.02) 100%),
    linear-gradient(0deg, rgba(20, 18, 17, 0.18) 0%, rgba(20, 18, 17, 0.02) 58%);
}

.about-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  height: auto;
  min-height: var(--hero-min-height);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: #2d2723;
}

.about-hero::before,
.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.about-hero::before {
  z-index: -2;
  background-color: #2d2723;
  background-image: url("assets/about-hero-romanns-20260630.png");
  background-image: image-set(
    url("assets/about-hero-romanns-20260630.webp") type("image/webp"),
    url("assets/about-hero-romanns-20260630.png") type("image/png")
  );
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 24, 22, 0.48) 0%, rgba(32, 27, 24, 0.32) 44%, rgba(32, 27, 24, 0.12) 74%, rgba(32, 27, 24, 0.02) 100%),
    linear-gradient(0deg, rgba(20, 18, 17, 0.18) 0%, rgba(20, 18, 17, 0.02) 58%);
}

.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  height: auto;
  min-height: var(--hero-min-height);
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: #b9c8d3;
}

.contact-hero::before,
.contact-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.contact-hero::before {
  z-index: -2;
  background-color: #b9c8d3;
  background-image: url("assets/contact-hero-romanns-20260831.png");
  background-image: image-set(
    url("assets/contact-hero-romanns-20260831.webp") type("image/webp"),
    url("assets/contact-hero-romanns-20260831.png") type("image/png")
  );
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 24, 22, 0.48) 0%, rgba(32, 27, 24, 0.32) 44%, rgba(32, 27, 24, 0.12) 74%, rgba(32, 27, 24, 0.02) 100%),
    linear-gradient(0deg, rgba(20, 18, 17, 0.18) 0%, rgba(20, 18, 17, 0.02) 58%);
}

.offer-hero-copy {
  width: min(100%, 820px);
  max-width: var(--max);
  margin: 0 auto;
}

.about-hero-copy {
  width: min(100%, 860px);
  max-width: var(--max);
  margin: 0 auto;
}

.contact-hero-copy {
  width: min(100%, 840px);
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 901px) {
  .offer-hero-copy {
    width: min(960px, 68vw);
  }

  .offer-hero-copy,
  .about-hero-copy,
  .contact-hero-copy {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (min-width: 901px) and (max-height: 700px) and (orientation: landscape) {
  .hero h1,
  .offer-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  }

  .hero,
  .offer-hero,
  .about-hero,
  .contact-hero {
    padding-top: clamp(44px, 7vh, 72px);
    padding-bottom: clamp(36px, 6vh, 64px);
  }

  .offer-hero-copy {
    width: min(1120px, 84vw);
  }
}

@media (min-width: 901px) and (max-width: 1200px) and (orientation: landscape) {
  .hero,
  .offer-hero,
  .about-hero,
  .contact-hero {
    min-height: var(--hero-min-height-tablet);
  }

  .hero h1,
  .offer-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .offer-hero-copy {
    width: min(1040px, 84vw);
  }

  .offer-hero h1 {
    max-width: 1040px;
  }
}

.subpage-list {
  padding-top: clamp(44px, 7vw, 78px);
}

.section,
.contact-section,
.site-footer {
  max-width: calc(var(--max) + var(--gutter) + var(--gutter));
}

.hero-copy {
  max-width: var(--max);
}

.hero-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
}

@media (min-width: 901px) {
  .hero-copy {
    width: min(820px, 58vw);
    margin-left: 0;
    margin-right: auto;
  }
}

.hero h1 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.32);
}

.offer-hero h1 {
  max-width: 980px;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.32);
}

.about-hero h1 {
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.32);
}

.contact-hero h1 {
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.32);
}

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

h1,
h2 {
  font-family: Didot, "Bodoni 72", Georgia, serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7.8vw, 7.15rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
}

h3 {
  margin-bottom: 12px;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  color: var(--text);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.hero-intro {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--hero-intro-size);
  line-height: var(--hero-intro-line);
}

.offer-hero .hero-intro {
  max-width: 820px;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  border-color: var(--action-gray);
  background: var(--action-gray);
  color: var(--ink);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--action-gray);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.hero .button.primary {
  border-color: rgba(255, 255, 255, 0.72);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  margin: 0 auto;
  padding: clamp(66px, 9vw, 124px) var(--gutter);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 32px;
}

.offers-section > .section-heading,
.offers-section > .copy-block,
.process-section > .section-heading,
.process-section > .copy-block,
.about-section > .section-heading,
.about-section > .copy-block,
.about-section > p,
.offer-tools-section > .section-heading,
.offer-tools-section > .copy-block,
.learning-section > .section-heading,
.learning-section > .copy-block,
.offer-facts-section > .section-heading {
  text-align: center;
}

.copy-block {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro-section {
  padding-top: clamp(56px, 8vw, 92px);
}

.intro-section .copy-block {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 62px);
  max-width: 980px;
}

.approach-copy {
  max-width: var(--max);
  margin: 0 auto;
}

.offers-section {
  position: relative;
  background: var(--paper);
}

#angebote.offers-section {
  background: var(--offer-band);
}

#angebote.offers-section,
.offer-tools-section {
  box-shadow: 0 0 0 100vmax var(--offer-band);
  clip-path: inset(0 -100vmax);
}

.process-section {
  background: var(--process-band);
  box-shadow: 0 0 0 100vmax var(--process-band);
  clip-path: inset(0 -100vmax);
}

.method-grid,
.offer-grid,
.stats-grid,
.process-list {
  display: grid;
  gap: 16px;
}

.method-grid article,
.offer-card,
.process-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.method-grid article {
  min-height: 230px;
  padding: 26px;
}

.method-grid h3 {
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.58vw, 1.45rem);
}

.offers-section .section-heading,
.offers-section .copy-block {
  max-width: var(--max);
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.offer-card {
  min-height: 280px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.offer-type {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

#angebote .offer-card h3 {
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.58vw, 1.45rem);
}

.offer-card p:not(.offer-type) {
  color: var(--muted);
}

.offer-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.offer-card.is-draft {
  border-style: dashed;
  background: var(--red-soft);
}

.offers-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

#angebote .offers-actions .button.primary {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.proof-section .proof-copy,
.proof-section .stats-grid {
  max-width: none;
}

.proof-section p {
  color: var(--muted);
}

.proof-section h2 {
  margin-bottom: 32px;
  color: var(--ink);
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div {
  padding: 24px;
  border: 1px solid var(--action-gray);
  border-radius: var(--radius);
  background: var(--process-band);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--blue);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.process-list {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.learning-section .process-list::before,
.process-section .process-list::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  left: -28px;
  z-index: 0;
  height: 3px;
  background: var(--red);
  transform: translateY(-50%);
}

.learning-section .process-list::after,
.process-section .process-list::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  z-index: 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--red);
  transform: translateY(-50%);
}

.process-list article {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.process-section .process-list article:nth-child(2),
.learning-section .process-list article:nth-child(2) {
  border-color: rgba(227, 26, 43, 0.16);
  background: var(--red-soft);
}

.learning-section .process-list article:not(:last-child)::after,
.process-section .process-list article:not(:last-child)::after {
  content: none;
}

.learning-section .process-list article:last-child::after,
.process-section .process-list article:last-child::after {
  content: none;
}

.process-list h3 {
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.58vw, 1.45rem);
}

.offer-intro-section .copy-block + .copy-block {
  margin-top: 20px;
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 38px auto 0;
}

.offer-detail-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.offer-detail-card h3 {
  max-width: 520px;
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.58vw, 1.45rem);
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 1.15em;
  color: var(--text);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.offer-list li::marker {
  color: var(--red);
}

.offer-tools-section {
  background: var(--offer-band);
}

.offer-testimonial-section {
  background: #fff;
}

.learning-section {
  background: var(--process-band);
  box-shadow: 0 0 0 100vmax var(--process-band);
  clip-path: inset(0 -100vmax);
}

.testimonial-card.is-placeholder {
  border-top-color: rgba(227, 26, 43, 0.28);
  background: #fafafa;
}

.testimonial-card.is-placeholder blockquote,
.testimonial-card.is-placeholder figcaption,
.testimonial-card.is-placeholder figcaption strong {
  color: var(--muted);
}

.offer-contact-section {
  background: var(--cta-band);
}

.about-profile-intro .copy-block + .copy-block {
  margin-top: 20px;
}

.about-profile-intro {
  padding-bottom: 0;
}

.profile-section {
  padding-top: clamp(30px, 4vw, 42px);
  background: #fff;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.profile-card {
  min-height: 620px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.profile-photo {
  margin: 0 0 24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--offer-band);
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-kicker {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.profile-card h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.profile-card h3 {
  margin-top: 32px;
  font-family: "DIN Pro", "DINPro-Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.58vw, 1.45rem);
}

.profile-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 1.15em;
  color: var(--text);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.profile-list li::marker {
  color: var(--red);
}

.client-section {
  background: #fff;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 38px auto 0;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 24px;
  border: 1px solid rgba(69, 69, 69, 0.14);
  border-radius: var(--radius);
  background: #fff;
}

.client-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.client-logo-card img.client-logo-otis {
  width: min(100%, 170px);
  max-height: 68px;
}

.client-logo-card img.client-logo-basler {
  width: min(100%, 220px);
  max-height: 72px;
}

.client-logo-card-lindt {
  padding-inline: 10px;
}

.client-logo-card img.client-logo-lindt {
  width: min(112%, 310px);
  max-width: 112%;
  max-height: 96px;
}

.about-contact-section {
  display: grid;
  grid-template-columns:
    minmax(var(--gutter), 1fr)
    minmax(0, var(--max))
    minmax(var(--gutter), 1fr);
  justify-items: center;
  row-gap: 18px;
  max-width: none;
  margin: 0 0 clamp(28px, 5vw, 58px);
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--cta-band);
}

.about-contact-section .section-heading {
  margin-bottom: 0;
}

.about-contact-section .copy-block {
  max-width: var(--max);
  margin-top: 0;
  margin-bottom: 0;
}

.about-contact-section h2,
.about-contact-section p {
  color: var(--ink);
}

.about-contact-section,
.contact-section {
  text-align: center;
}

.about-contact-section > *,
.contact-section > * {
  grid-column: 2;
}

.about-contact-section .button.primary,
.contact-section .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.about-contact-actions {
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: 6px auto 0;
}

.contact-page-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-details,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-details {
  padding: clamp(24px, 3vw, 34px);
}

.contact-kicker {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-details h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(69, 69, 69, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: var(--copy-size);
  font-weight: 800;
  line-height: 1.25;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(227, 26, 43, 0.42);
  color: var(--red);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-card {
  padding: clamp(24px, 3vw, 34px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-fields {
  display: grid;
  gap: 18px;
}

.form-fields[hidden],
.form-success[hidden] {
  display: none;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.privacy-check {
  color: var(--ink);
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(69, 69, 69, 0.22);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.4;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(24, 45, 133, 0.13);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 0.96rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.privacy-check a,
.form-privacy-note a,
.legal-copy a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form .button.primary {
  width: fit-content;
}

.form-success {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(24, 45, 133, 0.18);
  border-radius: var(--radius);
  background: #f8f9ff;
  color: var(--ink);
  font-weight: 800;
}

.legal-hero p {
  margin-left: 0;
}

.legal-copy {
  max-width: var(--text-max);
  margin: 0 auto;
}

.legal-copy h2 {
  margin-top: clamp(72px, 9vw, 118px);
  margin-bottom: 16px;
  padding-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid rgba(43, 41, 39, 0.18);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-copy h2[id] {
  scroll-margin-top: 112px;
}

.legal-copy h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: var(--copy-size);
  font-weight: 900;
  line-height: 1.25;
}

.legal-copy ul {
  margin: 0 0 28px;
  padding-left: 1.35em;
}

.legal-copy li {
  color: var(--text);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.voice-hero {
  border-bottom: 0;
}

.voice-hero p {
  margin-left: 0;
}

.voice-video-section {
  padding-top: clamp(24px, 4vw, 52px);
}

.voice-video-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
}

.voice-video {
  overflow: hidden;
  border-radius: 8px;
  background: var(--action-gray);
  box-shadow: 0 18px 42px rgba(43, 41, 39, 0.1);
}

.voice-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.about-section {
  position: relative;
  isolation: isolate;
}

.about-section::before {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  background: url("assets/about-background-20260629.png") center 18% / cover no-repeat;
}

.about-section::after {
  position: absolute;
  z-index: -1;
  top: clamp(34px, 5vw, 72px);
  bottom: clamp(34px, 5vw, 72px);
  left: 50%;
  width: min(calc(100vw - 24px), calc(var(--text-max) + 220px));
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.78) 42%,
    rgba(255, 255, 255, 0.4) 62%,
    rgba(255, 255, 255, 0.16) 90%,
    rgba(255, 255, 255, 0) 99%
  );
  pointer-events: none;
}

.about-section > p {
  max-width: var(--text-max);
  margin-left: auto;
  margin-right: auto;
}

.about-section .section-heading,
.about-section .copy-block {
  max-width: var(--text-max);
}

.about-actions {
  display: flex;
  justify-content: center;
  max-width: var(--text-max);
  margin: 30px auto 0;
}

.testimonials-section {
  background: #fff;
}

.testimonials-section > .section-heading {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(69, 69, 69, 0.14);
  border-radius: var(--radius);
  background: #fff;
}

.testimonial-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
  border-top: 4px solid var(--red);
  border-left: 4px solid var(--red);
  border-top-left-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: var(--copy-size);
  font-weight: 700;
  line-height: var(--copy-line);
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
}

.testimonial-card figcaption strong {
  color: var(--ink);
  font-size: 1rem;
}

.testimonial-card figcaption span {
  display: block;
}

.testimonials-section .client-logo-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.testimonials-section .client-logo-card {
  min-height: 88px;
  padding: 14px;
}

.testimonials-section .client-logo-card img {
  max-height: 42px;
}

.testimonials-section .client-logo-card img.client-logo-otis {
  width: min(100%, 126px);
  max-height: 50px;
}

.testimonials-section .client-logo-card img.client-logo-basler {
  width: min(100%, 154px);
  max-height: 52px;
}

.testimonials-section .client-logo-card-lindt {
  padding-inline: 18px;
}

.testimonials-section .client-logo-card img.client-logo-lindt {
  width: min(100%, 190px);
  max-height: 62px;
}

.contact-section {
  display: grid;
  grid-template-columns:
    minmax(var(--gutter), 1fr)
    minmax(0, var(--max))
    minmax(var(--gutter), 1fr);
  justify-items: center;
  row-gap: 18px;
  max-width: none;
  margin: 0 0 clamp(28px, 5vw, 58px);
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--cta-band);
}

.contact-section h2,
.contact-section p {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
}

.contact-section h2 {
  margin-bottom: 0;
}

.contact-section p {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-section .button.primary {
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

.offers-section > .section-heading,
.process-section > .section-heading,
.about-section > .section-heading,
.offer-tools-section > .section-heading,
.learning-section > .section-heading,
.offer-facts-section > .section-heading,
.testimonials-section > .section-heading,
.about-contact-section .section-heading,
.contact-section h2 {
  max-width: 820px;
  text-wrap: balance;
}

.offers-section > .copy-block,
.process-section > .copy-block,
.about-section > .copy-block,
.about-section > p,
.offer-tools-section > .copy-block,
.learning-section > .copy-block {
  max-width: 1040px;
  text-wrap: pretty;
}

.about-contact-section .copy-block,
.contact-section p {
  max-width: 760px;
  text-wrap: pretty;
}

.offer-card h3,
.process-list h3,
.method-grid h3,
.offer-detail-card h3 {
  text-wrap: balance;
}

.offer-card p,
.process-list p,
.method-grid p {
  text-wrap: pretty;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px var(--gutter) 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    z-index: 100;
    align-items: flex-start;
    flex-direction: column;
    overflow: visible;
  }

  .main-nav {
    flex-wrap: wrap;
    position: relative;
    z-index: 110;
    width: 100%;
    padding-bottom: 2px;
  }

  .submenu {
    z-index: 120;
    left: 0;
    right: auto;
    min-width: min(230px, calc(100vw - (var(--gutter) * 2)));
    max-width: calc(100vw - (var(--gutter) * 2));
  }

  .hero {
    height: auto;
    min-height: var(--hero-min-height-tablet);
    padding-top: clamp(58px, 11vw, 86px);
    padding-bottom: clamp(62px, 11vw, 92px);
  }

  .hero::before {
    background-position: 68% 48%;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .about-hero {
    height: auto;
    min-height: var(--hero-min-height-tablet);
    padding-top: clamp(58px, 11vw, 86px);
    padding-bottom: clamp(62px, 11vw, 92px);
  }

  .about-hero::before {
    background-position: 78% 40%;
  }

  .about-hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .offer-hero {
    height: auto;
    min-height: var(--hero-min-height-tablet);
    padding-top: clamp(58px, 11vw, 86px);
    padding-bottom: clamp(62px, 11vw, 92px);
  }

  .offer-hero::before {
    background-position: 63% 50%;
  }

  .auftritt-hero::before {
    background-position: 68% 50%;
  }

  .praesentation-hero::before {
    background-position: 66% 50%;
  }

  .konflikt-hero::before {
    background-position: 78% 50%;
  }

  .fuehrung-hero::before {
    background-position: 88% 50%;
  }

  .team-hero::before {
    background-position: 88% 50%;
  }

  .offer-hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .contact-hero {
    height: auto;
    min-height: var(--hero-min-height-tablet);
    padding-top: clamp(58px, 11vw, 86px);
    padding-bottom: clamp(62px, 11vw, 92px);
  }

  .contact-hero::before {
    background-position: 78% 32%;
  }

  .contact-hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .two-column,
  .method-grid,
  .offer-grid,
  .offer-detail-grid,
  .proof-section,
  .process-list,
  .testimonial-grid,
  .profile-grid,
  .voice-video-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .learning-section .process-list::before,
  .process-section .process-list::before {
    top: -20px;
    bottom: -20px;
    left: 50%;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  .learning-section .process-list::after,
  .process-section .process-list::after {
    top: auto;
    right: auto;
    bottom: -34px;
    left: 50%;
    border-top: 14px solid var(--red);
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
    transform: translateX(-50%);
  }

  .learning-section .process-list article:last-child::after,
  .process-section .process-list article:last-child::after {
    content: none;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-section .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-card {
    min-height: auto;
  }

  .proof-section {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .offer-card {
    min-height: auto;
  }

  .offers-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.08rem, 9.2vw, 2.82rem);
  }

  .hero {
    min-height: var(--hero-min-height-mobile);
    padding-top: 42px;
    overflow: hidden;
  }

  .hero::before {
    background-position: 74% 50%;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .about-hero {
    min-height: var(--hero-min-height-mobile);
    padding-top: 42px;
  }

  .about-hero::before {
    background-position: 84% 40%;
  }

  .about-hero::after {
    background:
      linear-gradient(90deg, rgba(28, 24, 22, 0.54) 0%, rgba(32, 27, 24, 0.42) 52%, rgba(32, 27, 24, 0.2) 100%),
      linear-gradient(0deg, rgba(20, 18, 17, 0.2) 0%, rgba(20, 18, 17, 0) 42%);
  }

  .offer-hero {
    min-height: var(--hero-min-height-mobile);
    padding-top: 42px;
  }

  .offer-hero::before {
    background-position: 66% 50%;
  }

  .auftritt-hero::before {
    background-position: 74% 50%;
  }

  .praesentation-hero::before {
    background-position: 70% 50%;
  }

  .konflikt-hero::before {
    background-position: 84% 50%;
  }

  .fuehrung-hero::before {
    background-position: 94% 50%;
  }

  .team-hero::before {
    background-position: 94% 50%;
  }

  .contact-hero {
    min-height: var(--hero-min-height-mobile);
    padding-top: 42px;
  }

  .contact-hero::before {
    background-position: 84% 32%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form .button.primary {
    width: 100%;
  }

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

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}
