/*
Theme Name: Gude Theme
Author: Dein Name
Version: 1.0
Description: Eigenes Theme ohne Page Builder
*/

:root {
  --floral-white: #f9f5eb;
  --white: #ffffff;
  --graphit: #212121;
  --deep-safron: #ff931f;
  --black-cherry: #6a0116;
  --line: #e4dccd;
  --text-soft: #4a4a4a;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  
  
  --h3-size: clamp(1.3rem, 2.2vw, 1.5rem);
  --content-flow-gap: 1.15rem;
  --kicker-heading-gap: var(--content-flow-gap);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Clash Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: var(--graphit);
  background: var(--floral-white);
  line-height: 1.45;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.95rem);
  margin-bottom: 1rem;
  line-height: 1.03;
}

h3 {
  font-size: var(--h3-size);
  line-height: 1.08;
}

.site-shell {
  width: min(1320px, calc(100% - 2.8rem));
  margin-inline: auto;
}

.site-header {
  width: 100%;
  background: rgba(249, 245, 235, 0.97);
  border-bottom: 1px solid rgba(106, 1, 22, 0.08);
}

.header-shell {
  width: 100%;
  min-height: 84px;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 185px;
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--graphit);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.56rem 0.8rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.22rem;
  height: 2px;
  background: var(--deep-safron);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--graphit);
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--graphit);
  border-radius: 999px;
  background: var(--white);
  color: var(--graphit);
  padding: 0.45rem 0.95rem;
  font: inherit;
}

.eyebrow,
.imx-kicker,
.about-offer-kicker,
.faq032-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--graphit);
}

.eyebrow::before,
.imx-kicker::before,
.about-offer-kicker::before,
.faq032-kicker::before {
  content: "";
  width: 1.3rem;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.hero,
.ansatz-panel,
.imx-grid,
.about-offer-grid,
.footer-grid {
  column-gap: 5rem;
}

.hero-copy {
  background: var(--floral-white);
  padding: clamp(2rem, 5vw, 4.8rem);
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

h1 {
  font-size: clamp(2.2rem, 6.4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;

}

.hero-lead {
  max-width: 48ch;
  font-size: 1.1rem;
  color: #2f2f2f;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  margin: 0;
  background: var(--deep-safron);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--black-cherry);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #4d0010;
}

.btn-ghost {
  background: transparent;
  color: var(--graphit);
  border-color: rgba(33, 33, 33, 0.4);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(33, 33, 33, 0.05);
}

.section {
  padding: clamp(2.6rem, 6vw, 5.3rem) 0;
}

.section-head {
  margin-bottom: 1.9rem;
  max-width: 74ch;
  display: grid;
  gap: var(--content-flow-gap);
}

.section-cards {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 1.6rem;
  column-gap: 1.6rem;  
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
  min-height: 300px;
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-size: var(--h3-size);
  line-height: 1;
}

.service-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.topic-attractiveness {
  background: var(--black-cherry);
  color: var(--white);
}

.topic-retention {
  background: var(--graphit);
  color: var(--white);
}

.topic-engagement {
  background: var(--deep-safron);
  color: var(--graphit);
}

.topic-engagement a {
  color: var(--graphit);
}

.ansatz-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  row-gap: 2rem;
  align-items: stretch;
}

.ansatz-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ansatz-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ansatz-content {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.ansatz-content h2 {
  max-width: 14ch;
}

.ansatz-intro {
  color: var(--text-soft);
  max-width: 56ch;
}

.ansatz-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.ansatz-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
}

.ansatz-list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--deep-safron);
}

.ansatz-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.ansatz-metrics div {
  padding: 0.85rem 0;
}

.ansatz-metrics div + div {
  border-left: 1px solid #d8d8d8;
  padding-left: 1rem;
}

.ansatz-metrics strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.ansatz-metrics span {
  color: #666;
}

.ansatz-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.imx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  row-gap: 2rem;
  align-items: center;
}

.imx-copy {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.imx-copy h2 {
  margin-top: 0;
  letter-spacing: -0.02em;
}



.imx-text {
  margin: 0;
  color: var(--text-soft);
}

.imx-copy .btn {
  justify-self: start;
  align-self: start;
  width: auto;
}


.imx-quote {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}
.imx-collage {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  column-gap: 1rem;
  row-gap: 1rem;
  align-items: stretch;
}

.imx-card {
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
}

.imx-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imx-card-image-top,
.imx-card-image-bottom,
.imx-card-status,
.imx-card-amount,
.imx-card-focus {
  min-height: 220px;
}

.imx-card-status {
  background: #ebe8dd;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0.55rem;
}

.check {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4cfbf;
  background: #f7f5ee;
  color: var(--graphit);
  font-weight: 700;
}

.imx-card-status h3 {
  font-size: var(--h3-size);
  line-height: 1.05;
}

.imx-card-status p {
  color: #666;
}

.imx-card-amount {
  background: var(--graphit);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.imx-card-focus {
  background: var(--deep-safron);
  color: var(--graphit);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.amount {
  font-size: clamp(1.7rem, 3.8vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sub {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
}

.about-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1.00fr) minmax(220px, 0.80fr);
  row-gap: 1.6rem;
  align-items: center;
}

.about-offer-copy {
  display: grid;
  gap: var(--content-flow-gap);
}

.about-offer-copy h2 {
  margin-top: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.about-offer-copy p {
  max-width: 40ch;
}

.about-offer-contact {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.about-mail {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.86rem;
  color: #3f4a5c;
  font-size: 1rem;
}

.about-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #42506a;
  font-size: 1rem;
  font-weight: 700;
}

.about-offer-portrait {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: 2rem;
  overflow: hidden;
  background: #e6eaf0;
}

.about-offer-orb {
  position: absolute;
  inset: 10% 12% 5% 12%;
  border-radius: 50%;
  background: rgba(229, 236, 247, 0.8);
  border: 1px solid #d7e0ec;
}

.about-offer-portrait img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-offer-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-mini-card {
  border: 1px solid #dbe5f2;
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
}

.about-mini-label {
  margin: 0;
  color: #212121;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-mini-card strong {
  display: block;
  margin-top: 0.28rem;
  color: #212121;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.about-mini-card p {
  margin: 0.38rem 0 0;
  font-size: 1rem;
  color: #212121;
}

.about-mini-badge {
  margin: 0 0 0.24rem;
  display: inline-flex;
  background: var(--deep-safron);
  color: #212121;
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.about-mini-card-featured {
  border-color: var(--deep-safron);
  box-shadow: none;
}

.section-cta {
  padding-top: clamp(2.6rem, 6vw, 5.3rem);
  background: var(--white);
}

#ueber-mich-teaser {
  background: var(--white);
}

.cta-box {
  width: min(900px, 100%);
  margin: 0 auto;
  background: var(--black-cherry);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2.4rem);
  text-align: center;
  display: grid;
  gap: var(--content-flow-gap);
  justify-items: center;
}

.cta-box h2 {
  max-width: 20ch;
}

.cta-box p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
}

.cta-box .eyebrow {
  color: var(--graphit);
}

.site-footer {
  background: #150109;
  color: #fff;
  padding: 5rem 0;
}

.site-subfooter {
  background: #0f0106;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.8rem 0;
}

.site-subfooter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}

.site-subfooter p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.95fr;
  row-gap: 1.2rem;
}

.footer-col {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-col h3 {
  font-size: var(--h3-size);
}

.footer-divider {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--deep-safron);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-col nav {
  display: grid;
  gap: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: #fff;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--deep-safron);
}

.faq032 {
  background: var(--white);
}

.faq032-shell {
  max-width: 1120px;
}



.faq032-head {
  display: grid;
  gap: var(--content-flow-gap);
}

.faq032-head h2 {
  margin-top: 0;
}

.topic-showcase-copy h2 {
  margin-top: 0;
}

.faq032-head p {
  margin-top: 0;
  font-size: 1.06rem;
  line-height: 1.6;
}
.faq032-timeline {
  margin-top: 1.5rem;
  position: relative;
  display: grid;
  gap: 1.20rem;
}

.faq032-timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: rgba(106, 1, 22, 0.35);
}

.faq032-step {
  border: 1px solid #dbe5f2;
  border-radius: 1rem;
  background: var(--white);
  margin-left: 2.2rem;
  padding: 0 1rem;
}

.faq032-step summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 0;
  color: #000;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 600;
  line-height: 1.3;
}

.faq032-step summary::-webkit-details-marker {
  display: none;
}
.faq032-step summary::after {
  content: "+";
  color: currentColor;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.faq032-step[open] summary {
  color: var(--black-cherry);
}

.faq032-step[open] summary::after {
  content: "\2192";
}

.faq032-no {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 147, 31, 0.15);
  color: #000;
  border: 1px solid rgba(255, 147, 31, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.faq032-step p {
  margin: 0;
  padding: 0 0 1rem;
  color: #000;
  font-size: 1rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-shell {
    padding-inline: 1rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0.6rem;
    box-shadow: var(--shadow-soft);
  }

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

  .hero,
  .service-grid,
  .ansatz-panel,
  .imx-grid,
  .about-offer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 400px;
  }

  .imx-collage {
    grid-template-columns: 1fr;
  }

  .imx-card-image-top,
  .imx-card-image-bottom,
  .imx-card-status,
  .imx-card-amount,
  .imx-card-focus {
    min-height: 140px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: 100%;
    max-width: 1320px;
    padding-inline: 0.6rem;
  }

  .brand img {
    width: 160px;
  }

  .hero-copy {
    padding: 1.15rem;
  }

  .hero-visual {
    min-height: 280px;
    margin-inline: 0.7rem;
  }

  .ansatz-metrics {
    grid-template-columns: 1fr;
  }

  .ansatz-metrics div + div {
    border-left: 0;
    border-top: 1px solid #d8d8d8;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .faq032-head p {
    font-size: 1rem;
  }

  .faq032-timeline::before {
    left: 0.95rem;
  }

  .faq032-step {
    margin-left: 1.9rem;
    padding: 0 0.85rem;
  }

  .faq032-step summary {
    font-size: 1rem;
  }

  .faq032-step p {
    font-size: 1rem;
  }
}

@media (max-width: 1120px) {
  .about-offer-portrait {
    min-height: 600px;
  }

  .about-offer-cards {
    flex-direction: row;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about-offer-cards {
    display: flex;
    flex-direction: column;
  }

  .about-offer-portrait {
    min-height: 720px;
  }
}

























@media (max-width: 820px) {
  .site-shell,
  .angebotx-shell {
    width: 100% !important;
    max-width: 1320px !important;
    padding-inline: 1.2rem !important;
  }

  .header-shell {
    padding-inline: 1.2rem;
  }

  .main-nav {
    left: 1.2rem;
    right: 1.2rem;
  }

  .section,
  .topic-hero,
  .topic-showcase,
  .angebotx,
  .about-hero,
  .about-split-section,
  .contact-hero,
  .contact-calendar-section,
  .faq032 {
    padding-top: clamp(3.1rem, 9vw, 4rem) !important;
    padding-bottom: clamp(3.1rem, 9vw, 4rem) !important;
  }

  .contact-divider {
    padding-bottom: clamp(1.8rem, 5vw, 2.4rem) !important;
  }

  .hero,
  .service-grid,
  .ansatz-panel,
  .imx-grid,
  .about-offer-grid,
  .footer-grid,
  .topic-hero-grid,
  .topic-showcase-grid,
  .angebotx-grid,
  .about-hero-grid,
  .about-split,
  .contact-calendar-shell {
    gap: 1.6rem !important;
  }

  .imx-collage,
  .about-offer-cards,
  .angebotx-packages,
  .angebotx-side,
  .faq032-timeline {
    gap: 1rem !important;
  }

  .hero-copy,
  .cta-box,
  .angebotx-main-card,
  .angebotx-package,
  .angebotx-side-card,
  .faq032-step {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .angebotx-shell {
    width: 100% !important;
    max-width: 1320px !important;
    padding-inline: 1.4rem !important;
  }

  .header-shell {
    padding-inline: 1.4rem;
  }

  .main-nav {
    left: 1.4rem;
    right: 1.4rem;
  }

  .section,
  .topic-hero,
  .topic-showcase,
  .angebotx,
  .about-hero,
  .about-split-section,
  .contact-hero,
  .contact-calendar-section,
  .faq032 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .contact-divider {
    padding-bottom: 1.8rem !important;
  }

  .hero-copy {
    padding: 1.45rem 1.35rem 1.65rem !important;
  }

  .cta-box,
  .angebotx-main-card,
  .angebotx-package,
  .angebotx-side-card,
  .faq032-step {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }

  .section-head,
  .faq032-head,
  .topic-showcase-copy,
  .about-hero-copy,
  .about-split-copy,
  .imx-copy,
  .about-offer-copy,
  .contact-calendar-head {
    gap: 1rem !important;
  }

  .service-grid,
  .hero,
  .ansatz-panel,
  .imx-grid,
  .about-offer-grid,
  .footer-grid,
  .topic-hero-grid,
  .topic-showcase-grid,
  .angebotx-grid,
  .about-hero-grid,
  .about-split,
  .contact-calendar-shell {
    gap: 1.35rem !important;
  }

  .hero-visual,
  .about-offer-portrait,
  .about-hero-media,
  .about-split-media,
  .contact-hero-portrait,
  .contact-calendar-frame,
  .angebotx-side-card--image img {
    border-radius: 1.5rem !important;
  }
}
@media (max-width: 820px) {
  h1,
  h2,
  h3,
  h4 {
    max-width: none !important;
    width: 100%;
  }

  .angebotx-side-card--image {
    padding: 0 !important;
    min-height: 800px !important;
  }
}

@media (max-width: 640px) {
  .angebotx-side-card--image {
    padding: 0 !important;
  }
}
.main-menu,
.mobile-menu {
  position: relative;
}

.main-menu {
  margin-left: auto;
}

.menu-root {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.menu-root li {
  display: flex;
  align-items: center;
}

.menu-root-linkedin .linkedin-link {
  padding: 0.45rem;
  border-radius: 999px;
  line-height: 0;
}

.menu-root-linkedin .linkedin-link::after {
  display: none;
}

.menu-root-linkedin .linkedin-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  display: block;
}

.menu-root-linkedin .linkedin-link:hover,
.menu-root-linkedin .linkedin-link:focus-visible {
  background: rgba(255, 147, 31, 0.2);
}

.root-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--graphit);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  padding: 0.55rem 0;
}

.root-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12rem;
  height: 2px;
  background: var(--deep-safron);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.root-link:hover::after,
.root-link:focus-visible::after,
.root-link.is-active::after {
  transform: scaleX(1);
}

.cta-link {
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  background: var(--black-cherry);
  color: var(--white);
  border: 1px solid var(--black-cherry);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.cta-link::after {
  content: none;
}

.cta-link:hover,
.cta-link:focus-visible,
.cta-link.is-active {
  background: #4d0010;
  color: var(--white);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: var(--graphit);
  cursor: pointer;
}

.mobile-menu .menu-toggle:hover,
.mobile-menu .menu-toggle:focus-visible,
.mobile-menu.open .menu-toggle {
  background: none;
  border-color: transparent;
}

.mobile-menu .menu-toggle svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.mobile-menu .menu-toggle .icon-close {
  display: none;
}

.mobile-menu.open .menu-toggle .icon-menu {
  display: none;
}

.mobile-menu.open .menu-toggle .icon-close {
  display: block;
}

.mobile-menu .menu-wrapper {
  position: fixed;
  inset: 84px 0 0 0;
  display: flex;
  justify-content: flex-end;
  overflow-x: clip;
  background: rgba(33, 33, 33, 0.16);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
  z-index: 1100;
}

.mobile-menu .menu-panel {
  width: min(100%, 420px);
  max-width: 100vw;
  height: calc(100vh - 84px);
  margin-left: auto;
  padding: 1.6rem 1.4rem 2rem;
  background: var(--floral-white);
  border-left: 1px solid rgba(106, 1, 22, 0.08);
  box-shadow: -20px 0 40px rgba(33, 33, 33, 0.10);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease, visibility 0s linear 0s;
}

.mobile-menu.open .menu-panel {
  transform: translateX(0);
}

.mobile-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-link-list li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.mobile-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.08rem;
}

.mobile-link-list .root-link::after {
  display: none;
}

.mobile-link-list .root-link.is-active {
  color: var(--black-cherry);
}

.mobile-link-list .li-cta-link {
  border-bottom: 0;
  padding-top: 1rem;
}

.mobile-link-list .li-cta-link .cta-link {
  justify-content: center;
  padding: 0.95rem 1.2rem;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .menu-root {
    gap: 0.95rem;
  }

  .root-link {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    backdrop-filter: blur(12px);
  }

  .main-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }

  .header-shell {
    min-height: 84px;
    padding-inline: 0.8rem !important;
    gap: 0.6rem;
  }

  .brand {
    margin-right: auto;
  }

  .brand img {
    width: 168px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-shell {
    padding-inline: 0.7rem !important;
  }

  .brand img {
    width: 156px;
  }

  .mobile-menu .menu-wrapper {
    inset: 84px 0 0 0;
  }

  .mobile-menu .menu-panel {
    width: 100%;
    padding: 1.45rem 1.4rem 2rem;
  }

  .mobile-link-list a {
    font-size: 1rem;
  }
}
/* Topic Templates */
.topic-page {
  background: var(--white);
}

.topic-page h2 {
  font-size: clamp(1.7rem, 4vw, 2.95rem);
}

.topic-hero {
  padding: clamp(2.2rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.topic-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.topic-hero-grid > article {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.topic-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--graphit);
}

.topic-kicker::before {
  content: "";
  width: 1.3rem;
  height: 2px;
  background: var(--graphit);
}

.topic-hero h1 {
  margin-top: 0;
  max-width: 16ch;
}

.topic-hero p:not(.topic-kicker) {
  margin-top: 0;
  color: var(--text-soft);
  max-width: 60ch;
}

.topic-hero-media {
  margin: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}

.topic-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.topic-showcase {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
  background: var(--white);
}

.topic-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 3rem;
  align-items: stretch;
}

.topic-showcase-copy {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.topic-showcase-copy h2 {
  margin-top: 0;
  max-width: 15ch;
  line-height: 1.02;
}

.topic-showcase-copy p:not(.topic-kicker) {
  margin-top: 0;
  color: #000;
}

.topic-quote {
  margin: 0;
  font-weight: 600;
  max-width: 48ch;
}

.topic-hero article .btn,
.topic-showcase-copy .btn {
  margin-top: 0;
  justify-self: start;
}

.topic-boxes {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1rem;
}

.topic-box {
  border-radius: 1.6rem;
  padding: 1.2rem;
  min-height: 210px;
  display: grid;
  align-content: center;
  text-align: center;
}

.topic-box h3 {
  font-size: var(--h3-size);
  line-height: 1.06;
  margin-bottom: 0.45rem;
}

.topic-box p {
  margin: 0;
}

.topic-box-cherry {
  background: var(--deep-safron);
  color: #000;
}

.topic-box-light {
  background: #ebe8dd;
  color: #000;
}

.topic-box-dark {
  background: var(--graphit);
  color: var(--white);
}

.topic-box-saffron {
  background: var(--black-cherry);
  color: var(--white);
}

.topic-cta {
  background: var(--white);
}

.topic-cta-box {
  display: grid;
  gap: var(--content-flow-gap);
}

.topic-cta-box h2 {
  margin-top: 0;
}

.topic-cta-box p:not(.topic-kicker) {
  margin-top: 0;
  color: var(--text-soft);
  max-width: 60ch;
}

.topic-cta-box .btn {
  margin-top: 0;
  justify-self: start;
}

/* Angebot Templates */
.angebotx,
.legal-page {
  background: var(--white);
}

.angebotx {
  padding: clamp(1rem, 2vw, 1.4rem) 0 clamp(2.2rem, 5vw, 4.2rem);
}

.angebotx,
.angebotx * {
  box-sizing: border-box;
}

.angebotx-shell {
  width: min(1320px, calc(100% - 2.8rem));
  margin-inline: auto;
}

.angebotx-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 1fr);
  gap: 0.85rem;
}

.angebotx-main-card {
  background: #f1efea;
  border-radius: 1.45rem;
  padding: clamp(1.3rem, 2.4vw, 2.1rem);
  min-height: 620px;
}

.angebotx-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  font-size: 1rem;
  color: var(--graphit) !important;
  border: 1px solid var(--deep-safron) !important;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: var(--deep-safron) !important;
  font-weight: 600;
}

.angebotx-badge span {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 1rem;
}

.angebotx--employee .angebotx-badge {
  color: var(--graphit) !important;
  border: 1px solid var(--deep-safron) !important;
  background: var(--deep-safron) !important;
}

.angebotx--employee .angebotx-badge span {
  background: rgba(255, 255, 255, 0.24);
}

.angebotx-main-card h1,
.angebotx-main-card h2 {
  margin: 1.4rem 0 0;
  max-width: 15ch;
  font-size: clamp(1.7rem, 4vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.angebotx-lead {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: #2f2f2f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.angebotx-packages {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.angebotx-package {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid #e5e5e5;
  padding: 1rem 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.angebotx-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 1.5rem;
}

.angebotx-label {
  margin: 0;
  color: #606060;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.angebotx-reco {
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 78, 39, 0.15);
  color: #b12c10;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.angebotx-package h2,
.angebotx-package h3 {
  margin: 0.6rem 0 0;
  font-size: var(--h3-size);
  letter-spacing: -0.01em;
}

.angebotx-package ul {
  margin: 0.85rem 0 1rem;
  padding: 0;
  list-style: none;
  color: #2e2e2e;
  font-size: 1rem;
  line-height: 1.45;
  border-top: 1px solid #efefef;
}

.angebotx-package li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #efefef;
}

.angebotx-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background: transparent;
}

.angebotx-cta--solid {
  background: #111111;
  color: #ffffff;
}

.angebotx-package--featured {
  border-color: rgba(255, 78, 39, 0.45);
  box-shadow: none;
}

.angebotx-side {
  display: grid;
  gap: 0.85rem;
  grid-template-rows: auto auto;
}

.angebotx-side-card {
  border-radius: 1.45rem;
  padding: 1.25rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.angebotx-side-card--image {
  margin: 0;
  min-height: 450px;
  height: 450px;
  padding: 0;
  background: transparent;
}

.angebotx-side-card--image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 1.45rem;
}

.angebotx-side-card--dark {
  background: #060606;
  color: #fff;
  min-height: 250px;
}

.angebotx-side-card--dark h2,
.angebotx-side-card--dark h3 {
  margin: 0;
  font-size: var(--h3-size);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.angebotx-side-text {
  margin: 0.85rem 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.5;
}

.angebotx-side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  background: #ffffff;
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  width: fit-content;
}

.angebotx-side-rating {
  margin: 0.85rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.3;
}

.angebotx-side-stars {
  color: #ff4e27;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.angebotx-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  color: #2e2e2e;
  font-size: 1rem;
  line-height: 1.45;
  border-top: 1px solid #efefef;
}

.angebotx-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #efefef;
}

.angebotx-list a {
  color: inherit;
  text-decoration: none;
}

.angebotx-list a:hover,
.angebotx-list a:focus-visible {
  color: var(--black-cherry);
}

.angebotx-text {
  margin-top: 0.85rem;
  color: #2e2e2e;
  line-height: 1.55;
}

.angebotx-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
}

.angebotx-side-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.45;
}

.angebotx-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--deep-safron);
}

/* About Template */
.about-page {
  background: var(--white);
}

.about-hero {
  padding: clamp(2.2rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f9f5eb 0%, #ffffff 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.about-hero-copy {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.about-hero-copy h1 {
  max-width: 13ch;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--text-soft);
}

.about-hero-media {
  margin: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  min-height: 650px;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-split-section {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split-media {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 650px;
  background: #ebe8dd;
}

.about-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-split-media-approach,
.about-split-media-collab {
  min-height: 650px;
  height: 650px;
}

.about-split-copy {
  display: grid;
  gap: var(--content-flow-gap);
  align-content: center;
}

.about-split-copy h2 {
  max-width: 16ch;
}

.about-split-copy p:not(.eyebrow) {
  color: var(--text-soft);
  max-width: 54ch;
}

.about-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--deep-safron);
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* IMX Template */
.imx-page {
  background: var(--white);
}

.imx-page h2 {
  font-size: clamp(1.7rem, 4vw, 2.95rem);
}

.imx-hero {
  padding: clamp(2.2rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.imx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.imx-hero-copy {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.imx-kicker-local {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--graphit);
}

.imx-kicker-local::before {
  content: "";
  width: 1.3rem;
  height: 2px;
  background: var(--graphit);
}

.imx-page .imx-kicker-local,
.imx-page .faq032-kicker {
  color: var(--graphit);
}

.imx-page .imx-kicker-local::before,
.imx-page .faq032-kicker::before {
  background: var(--graphit);
}

.imx-hero-copy h1 {
  margin-top: 0;
  max-width: 15ch;
}

.imx-hero-copy p {
  margin-top: 0;
  max-width: 62ch;
  color: var(--text-soft);
}

.imx-hero-copy .btn,
.imx-ohc-copy .btn {
  justify-self: start;
  align-self: start;
  width: auto;
}

.imx-hero-media {
  margin: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}

.imx-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.imx-what {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
  background: var(--white);
}

.imx-what-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: stretch;
}

.imx-what-copy {
  display: grid;
  align-content: center;
  gap: var(--content-flow-gap);
}

.imx-what-copy h2 {
  margin-top: 0;
  max-width: 15ch;
}

.imx-what-copy p {
  margin-top: 0;
  color: var(--text-soft);
  max-width: 62ch;
}

.imx-quote-local {
  margin: 0;
  font-weight: 600;
  max-width: 54ch;
}

.imx-matrix {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1rem;
}

.imx-matrix-card {
  border-radius: 1.6rem;
  min-height: 210px;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  text-align: center;
}

.imx-matrix-card h3 {
  margin-bottom: 0.45rem;
  line-height: 1.06;
}

.imx-matrix-card p {
  margin: 0;
}

.imx-matrix-card--one {
  background: var(--black-cherry);
  color: var(--white);
}

.imx-matrix-card--two {
  background: #ebe8dd;
  color: #000;
}

.imx-matrix-card--three {
  background: var(--graphit);
  color: var(--white);
}

.imx-matrix-card--four {
  background: var(--deep-safron);
  color: #000;
}

.imx-context {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
  background: var(--white);
}

.imx-context-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.imx-context-card {
  border-radius: 1.2rem;
  padding: 1.5rem;
  background: #f9f5eb;
  display: grid;
  gap: 0.6rem;
}

.imx-context-card h3 {
  margin: 0;
}

.imx-context-card p {
  margin: 0;
  color: var(--text-soft);
}

.imx-ohc {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
  background: var(--white);
}

.imx-ohc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.imx-ohc-media {
  margin: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}

.imx-ohc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imx-ohc-copy {
  display: grid;
  gap: var(--content-flow-gap);
}

.imx-ohc-copy h2,
.imx-ohc-copy p,
.imx-ohc-copy ul {
  margin: 0;
}

.imx-ohc-copy p {
  color: var(--text-soft);
}

.imx-ohc-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}

.imx-ohc-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.imx-ohc-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.52rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--deep-safron);
}

/* Contact Template */
.contact-page {
  background: var(--white);
}

.contact-hero {
  padding: clamp(2.2rem, 6vw, 5rem) 0;
  background: var(--white);
}

.contact-hero-grid {
  align-items: stretch;
}

.contact-hero-copy {
  align-content: center;
}

.contact-hero-copy h1 {
  max-width: 12ch;
}

.contact-hero-copy p:not(.about-offer-kicker) {
  max-width: 40ch;
  color: var(--text-soft);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.contact-chip {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--graphit);
  font-weight: 600;
  background: rgba(249, 245, 235, 0.8);
}

.contact-chip:hover,
.contact-chip:focus-visible {
  background: rgba(255, 147, 31, 0.12);
  border-color: rgba(255, 147, 31, 0.42);
}

.contact-hero-portrait {
  min-height: 560px;
}

.contact-hero-portrait .about-offer-orb {
  background: rgba(248, 236, 214, 0.88);
  border-color: rgba(255, 147, 31, 0.2);
}

.contact-hero-portrait img {
  object-position: center top;
}

.contact-mini-card {
  background: #fffdf9;
}

.contact-mini-card strong {
  max-width: 10ch;
}

.contact-mini-card-featured {
  background: linear-gradient(180deg, rgba(255, 147, 31, 0.12) 0%, rgba(255, 147, 31, 0.04) 100%);
}

.contact-divider {
  padding: 0 0 clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white);
}

.contact-divider-line {
  height: 1px;
  background: var(--line);
}

.contact-calendar-section {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: var(--white);
}

.contact-calendar-shell {
  display: grid;
  gap: 1.5rem;
}

.contact-calendar-head {
  display: grid;
  gap: var(--content-flow-gap);
  max-width: 58ch;
}

.contact-calendar-head h2 {
  max-width: 14ch;
}

.contact-calendar-head p {
  color: var(--text-soft);
}

.contact-calendar-frame {
  width: 100%;
  min-height: 820px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: #fbf8f1;
  box-shadow: 0 24px 56px rgba(33, 33, 33, 0.08);
}

.contact-calendar-note {
  color: var(--text-soft);
  font-size: 1rem;
}

@media (min-width: 981px) {
  .topic-showcase-copy {
    order: 2;
  }

  .topic-boxes {
    order: 1;
  }

  .imx-what-copy {
    order: 2;
  }

  .imx-matrix {
    order: 1;
  }
}

@media (max-width: 1120px) {
  .contact-hero-portrait {
    min-height: 460px;
  }
}

@media (max-width: 1100px) {
  .angebotx-grid {
    grid-template-columns: 1fr;
  }

  .angebotx-main-card {
    min-height: 560px;
  }

  .angebotx-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .angebotx-side-card--image,
  .angebotx-side-card--image img,
  .angebotx-side-card--dark {
    min-height: 220px;
  }

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

@media (max-width: 980px) {
  .topic-hero-grid,
  .topic-showcase-grid,
  .topic-boxes,
  .about-hero-grid,
  .about-split,
  .imx-hero-grid,
  .imx-what-grid,
  .imx-ohc-grid,
  .imx-context-grid,
  .imx-matrix {
    grid-template-columns: 1fr;
  }

  .topic-box {
    min-height: 170px;
  }

  .about-hero-media,
  .about-split-media,
  .about-split-media-approach,
  .about-split-media-collab {
    min-height: 320px;
    height: auto;
  }

  .about-split {
    gap: 1.5rem;
  }

  .about-split--one .about-split-copy,
  .about-split--two .about-split-copy {
    order: 1;
  }

  .about-split--one .about-split-media,
  .about-split--two .about-split-media {
    order: 2;
  }

  .imx-matrix-card {
    min-height: 300px;
  }

  .contact-hero-portrait {
    min-height: 360px;
  }

  .contact-calendar-frame {
    min-height: 900px;
  }
}

@media (max-width: 820px) {
  .angebotx-side {
    grid-template-columns: 1fr;
  }

  .angebotx-packages {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-calendar-frame {
    min-height: 980px;
    border-radius: 1.4rem;
  }
}
.legal-richtext {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.5rem;
}

.legal-richtext-section {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.35rem;
  border-top: 1px solid #ddd6c8;
}

.legal-richtext h2,
.legal-richtext h3 {
  margin: 0;
  max-width: none;
  letter-spacing: -0.01em;
}

.legal-richtext h2 {
  font-size: var(--h3-size);
}

.legal-richtext h3 {
  font-size: 1.05rem;
}

.legal-richtext p {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.6;
}

.legal-richtext a,
.legal-side-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.legal-side-link {
  color: #ffffff;
}
