:root {
  --brand: #792831;
  --brand-dark: #5f1e26;
  --brand-soft: #f2e9eb;
  --ink: #222222;
  --muted: #666666;
  --line: #e7e1df;
  --paper: #ffffff;
  --soft: #f6f4f3;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(121, 40, 49, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--brand);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 322px;
  max-width: 58vw;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.header-phone {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(121, 40, 49, 0.22);
  border-radius: 999px;
  color: var(--brand);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.07);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-phone:hover {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  text-decoration: none;
}

.header-phone svg {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 13px;
}

.main-nav a:hover {
  color: var(--brand);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--brand);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #ffffff;
}

.hero-slider {
  position: relative;
  height: clamp(420px, 72vh, 760px);
  overflow: hidden;
  background: #111111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 32px;
  height: 32px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.page-hero {
  min-height: clamp(180px, 28vw, 340px);
  background-position: center;
  background-size: cover;
  background-color: var(--soft);
}

.intro-section,
.content-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.content-column {
  max-width: 860px;
}

.content-column h1 {
  margin: 0 0 28px;
  color: var(--brand);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 400;
}

.content-column h2 {
  margin-top: 42px;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.25;
}

.content-column h3 {
  margin-top: 28px;
  font-size: 21px;
}

.content-column ul {
  padding-left: 1.25rem;
}

.service-teasers {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-teasers article {
  border-top: 4px solid var(--brand);
  background: var(--soft);
  padding: 24px;
  min-height: 240px;
}

.service-teasers h2 {
  margin-top: 0;
  color: var(--brand);
  font-size: 22px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  color: #ffffff;
  text-decoration: none;
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 10px 26px rgba(34, 34, 34, 0.08);
}

.button-secondary:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.home-redesign {
  background:
    radial-gradient(circle at 8% 0%, rgba(121, 40, 49, 0.11), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(34, 34, 34, 0.07), transparent 30%),
    linear-gradient(180deg, #fbf8f6 0%, #f7f1ee 58%, #ffffff 100%);
}

.beratung-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(121, 40, 49, 0.11), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(34, 34, 34, 0.07), transparent 30%),
    linear-gradient(180deg, #fbf8f6 0%, #f7f1ee 58%, #ffffff 100%);
  padding-bottom: 1px;
}

.home-hero,
.home-service,
.home-topic-grid,
.beratung-section,
.beratung-final-cta {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 58px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(121, 40, 49, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.home-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #111111;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 800;
}

.home-hero h1 span,
.home-service h2,
.home-topic-grid h2 {
  color: var(--brand);
}

.lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: #4f5a54;
  font-size: 19px;
  line-height: 1.68;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.home-stats {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-stats div,
.home-service,
.topic-cards article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.08);
}

.home-stats div {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
}

.home-stats strong {
  display: block;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.05;
}

.home-stats span {
  display: block;
  color: #626b66;
  line-height: 1.35;
}

.home-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-mosaic img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(34, 34, 34, 0.12);
}

.home-mosaic .home-mosaic-large {
  grid-row: span 2;
  height: 476px;
}

.catering-page .home-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: 44px;
}

.catering-page .home-hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.catering-page .home-hero h1 span {
  display: block;
}

.catering-page .lead {
  max-width: 650px;
}

.home-float-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 280px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(34, 34, 34, 0.16);
}

.home-float-card strong {
  display: block;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.2;
}

.home-float-card span {
  display: block;
  margin-top: 4px;
  color: #626b66;
  line-height: 1.4;
}

.beratung-hero-note {
  max-width: 620px;
  margin: 0;
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.beratung-hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--soft);
  box-shadow: 0 24px 56px rgba(34, 34, 34, 0.12);
}

.beratung-hero-image img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.beratung-hero-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 20px 48px rgba(34, 34, 34, 0.14);
}

.home-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 30px;
}

.home-service-reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.home-service h2 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.06;
}

.home-service p {
  color: #4f5a54;
  font-size: 17px;
  line-height: 1.7;
}

.home-service .button {
  margin-top: 22px;
}

.home-service-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
}

.home-service-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: #3f4944;
  font-weight: 700;
  line-height: 1.35;
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: 0.1em;
}

.home-topic-grid {
  padding: 70px 0 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: #626b66;
}

.topic-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.topic-cards article {
  overflow: hidden;
  border-radius: 28px;
}

.topic-cards img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.topic-cards div {
  padding: 24px;
}

.topic-cards h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 25px;
}

.topic-cards p {
  margin: 0 0 14px;
  color: #626b66;
}

.topic-cards a {
  font-weight: 800;
}

.beratung-section {
  padding: 68px 0 0;
}

.beratung-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beratung-check-grid li,
.beratung-tag-list li,
.beratung-step-list li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(34, 34, 34, 0.07);
}

.beratung-check-grid li {
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 20px;
  color: #3f4944;
  font-weight: 800;
  line-height: 1.35;
}

.beratung-check-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: 0.12em;
}

.beratung-card-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.beratung-card-band > div {
  position: sticky;
  top: 118px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.08);
}

.beratung-card-band h2,
.beratung-employer h2,
.beratung-final-cta h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
}

.beratung-card-band p,
.beratung-employer p,
.beratung-final-cta p {
  color: #4f5a54;
  font-size: 17px;
  line-height: 1.7;
}

.beratung-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beratung-tag-list li {
  padding: 12px 15px;
  border-radius: 999px;
  color: #3f4944;
  font-weight: 800;
}

.beratung-process {
  margin-top: 68px;
}

.beratung-step-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.beratung-step-list li {
  position: relative;
  min-height: 58px;
  padding: 15px 16px 15px 58px;
  border-radius: 18px;
  color: #3f4944;
  font-weight: 800;
  line-height: 1.35;
  counter-increment: steps;
}

.beratung-step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 14px;
  transform: translateY(-50%);
}

.beratung-statement {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(121, 40, 49, 0.18);
}

.beratung-statement strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.beratung-statement p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.beratung-challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beratung-challenge-grid article,
.beratung-pillar-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.08);
}

.beratung-challenge-grid article:first-child {
  background: var(--brand);
  color: #ffffff;
}

.beratung-challenge-grid h3,
.beratung-pillar-grid h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.18;
}

.beratung-challenge-grid article:first-child h3,
.beratung-challenge-grid article:first-child p {
  color: #ffffff;
}

.beratung-challenge-grid p,
.beratung-pillar-grid p {
  margin: 0;
  color: #4f5a54;
}

.beratung-employer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.beratung-employer-intro {
  padding: 34px;
  border-radius: 30px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(121, 40, 49, 0.18);
}

.beratung-employer-intro .kicker {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.beratung-employer-intro .kicker::before {
  background: #ffffff;
}

.beratung-employer-intro h2,
.beratung-employer-intro p {
  color: #ffffff;
}

.beratung-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.beratung-pillar-grid article p + p {
  margin-top: 8px;
}

.beratung-interim {
  margin-top: 68px;
}

.beratung-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 68px;
  margin-bottom: 72px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  background: #222222;
  color: #ffffff;
  box-shadow: 0 20px 52px rgba(34, 34, 34, 0.16);
}

.beratung-final-cta h2,
.beratung-final-cta p {
  color: #ffffff;
}

.beratung-final-cta a:not(.button) {
  color: #ffffff;
  font-weight: 800;
}

.beratung-final-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.beratung-consultant {
  margin: 0 0 8px;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.beratung-consultant img {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.beratung-consultant figcaption {
  display: grid;
  gap: 2px;
  padding: 12px 4px 2px;
  text-align: center;
}

.beratung-consultant strong {
  color: var(--brand);
  font-size: 18px;
  line-height: 1.2;
}

.beratung-consultant span {
  color: #4f5a54;
  font-size: 13px;
  line-height: 1.3;
}

.subpage {
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 40, 49, 0.11), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(34, 34, 34, 0.06), transparent 28%),
    linear-gradient(180deg, #fbf8f6 0%, #f7f1ee 58%, #ffffff 100%);
  padding-bottom: 1px;
}

.subpage-hero,
.subpage-body {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0 42px;
}

.subpage-hero-compact {
  grid-template-columns: minmax(0, 0.92fr);
  max-width: 980px;
  align-items: start;
  padding-bottom: 16px;
}

.subpage-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: #111111;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}

.subpage-hero h1 strong,
.subpage-hero h1 em {
  color: var(--brand);
  font-style: normal;
}

.subpage-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--soft);
  box-shadow: 0 24px 56px rgba(34, 34, 34, 0.12);
}

.subpage-hero-image img {
  width: 100%;
  height: clamp(280px, 34vw, 470px);
  object-fit: cover;
}

.subpage-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  padding: 24px 0 34px;
}

.subpage-body-legal {
  display: block;
  max-width: 980px;
}

.content-card {
  max-width: none;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.08);
}

.content-card > :first-child {
  margin-top: 0;
}

.content-card h1 {
  color: var(--brand);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 800;
}

.content-card h2 {
  margin-top: 38px;
  color: var(--brand);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
}

.content-card h3 {
  color: #111111;
  font-size: 22px;
  line-height: 1.25;
}

.content-card p,
.content-card li {
  color: #4f5a54;
}

.content-card a {
  font-weight: 800;
}

.content-card ul,
.content-card ol {
  padding-left: 1.25rem;
}

.subpage-aside {
  display: grid;
  gap: 14px;
}

.subpage-aside div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(34, 34, 34, 0.07);
}

.subpage-aside strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.subpage-aside span {
  display: block;
  margin-top: 6px;
  color: #626b66;
  line-height: 1.35;
}

.contact-hero .subpage-hero-image img {
  height: clamp(300px, 36vw, 500px);
}

.gallery {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 64px;
}

.gallery h2 {
  color: var(--brand);
  font-size: 30px;
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 920px;
}

.contact-panel,
.login-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.08);
}

.contact-panel h1 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 34px;
  line-height: 1.1;
}

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

.contact-details {
  display: grid;
  gap: 8px;
  margin: 28px 0 30px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.contact-details dt {
  color: #4f5a54;
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
}

.contact-details a {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-address {
  color: #4f5a54;
  font-style: normal;
  line-height: 1.55;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  padding: 11px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 6px;
}

.hp {
  position: absolute;
  left: -9999px;
}

.notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  background: #ffffff;
}

.notice.error {
  border-left-color: #a01822;
}

.notice.success {
  border-left-color: #217a3c;
}

.site-footer {
  margin-top: 40px;
  background: #222222;
  color: #ffffff;
}

.cta-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 24px auto 72px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.08);
}

.cta-band h2 {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.25;
}

.cta-band p {
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-mark {
  max-width: 280px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-mainnav {
  display: grid;
  gap: 6px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer a,
.link-button {
  color: #ffffff;
}

.link-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.site-footer .copyright {
  max-width: 620px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
  font-weight: 600;
}

.site-footer .copyright p {
  margin: 0;
  text-align: right;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.cookie-dialog {
  max-width: 480px;
  border: 0;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.cookie-dialog::backdrop {
  background: rgba(0, 0, 0, 0.38);
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--soft);
}

.maintenance {
  max-width: 680px;
  padding: 32px;
  text-align: center;
}

.maintenance img {
  margin: 0 auto 28px;
}

.maintenance-actions {
  margin-top: 28px;
}

.maintenance-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .service-teasers,
  .contact-layout,
  .footer-inner,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .home-service,
  .home-service-reverse,
  .topic-cards,
  .beratung-card-band,
  .beratung-employer,
  .beratung-final-cta,
  .subpage-hero,
  .subpage-hero-compact,
  .subpage-body {
    grid-template-columns: 1fr;
  }

  .catering-page .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 48px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .catering-page .home-hero h1 {
    font-size: clamp(42px, 8vw, 56px);
  }

  .home-service-reverse .home-service-image {
    order: 2;
  }

  .home-service-reverse .home-service-copy {
    order: 1;
  }

  .beratung-card-band > div {
    position: static;
  }

  .beratung-check-grid,
  .beratung-challenge-grid,
  .beratung-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beratung-final-actions {
    min-width: 0;
    width: 100%;
  }

  .subpage-hero {
    gap: 28px;
    padding: 46px 0 24px;
  }

  .subpage-aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-band {
    display: grid;
    align-items: start;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .brand img {
    max-width: 70vw;
  }

  .header-inner {
    width: min(var(--max), calc(100% - 24px));
    gap: 12px;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .header-phone {
    width: 40px;
    height: 40px;
  }

  .hero-slider {
    height: 62vh;
  }

  .home-hero,
  .home-service,
  .home-topic-grid,
  .beratung-section,
  .beratung-final-cta,
  .subpage-hero,
  .subpage-body {
    width: min(100% - 24px, 1240px);
  }

  .home-hero {
    padding: 38px 0 34px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .catering-page .home-hero h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  .lead {
    font-size: 17px;
  }

  .home-stats,
  .feature-list,
  .form-grid,
  .beratung-check-grid,
  .beratung-challenge-grid,
  .beratung-pillar-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .home-mosaic {
    grid-template-columns: 1fr;
  }

  .home-mosaic img,
  .home-mosaic .home-mosaic-large {
    grid-row: auto;
    height: 238px;
  }

  .home-float-card {
    position: static;
    max-width: none;
    margin-top: -22px;
  }

  .home-service {
    padding: 22px;
    border-radius: 24px;
  }

  .beratung-card-band > div,
  .beratung-employer-intro,
  .beratung-final-cta,
  .beratung-statement {
    padding: 22px;
    border-radius: 24px;
  }

  .home-service h2,
  .section-head h2,
  .beratung-card-band h2,
  .beratung-employer h2,
  .beratung-final-cta h2 {
    font-size: 32px;
  }

  .subpage-hero h1 {
    font-size: 40px;
  }

  .subpage-hero-image,
  .content-card,
  .contact-panel,
  .cta-band {
    border-radius: 22px;
  }

  .subpage-hero-image img {
    height: 245px;
  }

  .subpage-body {
    padding-top: 12px;
  }

  .subpage-aside {
    grid-template-columns: 1fr;
  }

  .home-service-image img,
  .topic-cards img,
  .beratung-hero-image img {
    height: 235px;
  }

  .beratung-hero-image,
  .beratung-hero-image img {
    border-radius: 24px;
  }

  .beratung-hero-image figcaption {
    position: static;
    border-radius: 0;
    box-shadow: none;
  }

  .intro-section,
  .content-main {
    padding: 38px 0;
  }

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

  .button,
  button.button {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .site-footer .copyright,
  .site-footer .copyright p {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
