:root {
  --bg: #eef8fc;
  --surface: #ffffff;
  --surface-soft: #f5fbff;
  --text: #17364a;
  --muted: #557186;
  --line: #c8e5f2;
  --accent: #6bb8d6;
  --accent-dark: #2f7f9f;
  --accent-deep: #155c78;
  --sky: #dff4fb;
  --sky-2: #cbeefa;
  --shadow: 0 24px 70px rgba(20, 78, 105, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(238, 248, 252, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 229, 242, 0.9);
}
.brand { text-decoration: none; line-height: 1.1; }
.brand span { display: block; font-size: .9rem; color: var(--muted); }
.brand strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; color: var(--accent-deep); }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: .95rem; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--accent-dark); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 10px 14px; color: var(--text); }

.section { position: relative; padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 72px); }
.section-white { background: var(--surface); }
.section-blue { background: linear-gradient(180deg, var(--sky) 0%, var(--surface-soft) 100%); }

.hero-photo {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: clamp(90px, 10vw, 150px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  color: #ffffff;
  background-image: url("images/hero-berg-ruecken.jpg");
  background-size: cover;
  background-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 48, 69, .62) 0%, rgba(9, 48, 69, .42) 38%, rgba(9, 48, 69, .22) 68%, rgba(9, 48, 69, .36) 100%), linear-gradient(180deg, rgba(9, 48, 69, .28), rgba(9, 48, 69, .38));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 34px;
  background: rgba(8, 47, 70, .32);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 28px 70px rgba(4, 27, 40, .22);
  backdrop-filter: blur(3px);
  text-shadow: 0 8px 34px rgba(0,0,0,.30);
}
.eyebrow { margin: 0 0 12px; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 800; }
.eyebrow.light { color: #d6f4ff; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
h1 { font-size: clamp(3.2rem, 9vw, 7.4rem); letter-spacing: -.055em; margin-bottom: 22px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); letter-spacing: -.04em; margin-bottom: 20px; color: var(--accent-deep); }
h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--accent-deep); }
.lead { max-width: 700px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.96); font-size: clamp(1.12rem, 2vw, 1.38rem); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); box-shadow: 0 14px 34px rgba(21, 92, 120, .26); }
.button.primary:hover { background: var(--accent-deep); }
.button.secondary { background: rgba(255,255,255,.82); color: var(--text); }
.light-button { border-color: rgba(255,255,255,.56); }

.mountain-section { overflow: hidden; }
.mountain-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 4;
  clip-path: polygon(0 64%, 8% 46%, 16% 58%, 25% 34%, 35% 61%, 45% 38%, 56% 67%, 67% 32%, 77% 56%, 88% 35%, 100% 60%, 100% 100%, 0 100%);
}
.mountain-edge.top {
  top: -71px;
}
.hero .mountain-edge {
  bottom: -1px;
}
.mountain-edge-white { background: var(--surface); }
.mountain-edge-blue { background: var(--sky); }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 48px rgba(20, 78, 105, .08);
}
.card p:last-child { margin-bottom: 0; }
.price { color: var(--accent-dark); font-weight: 800; margin-top: -2px; }
ul { padding-left: 1.2rem; }

.about {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
.about-image-wrap { position: sticky; top: 112px; }
.about-image {
  width: 100%;
  max-width: 420px;
  display: block;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 12px solid rgba(255,255,255,.72);
}
.about-text { max-width: 820px; }
.qualification-list li { margin-bottom: 8px; }

.contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
.contact-intro p { color: var(--muted); max-width: 610px; }
.contact-details { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-image {
  margin-top: 26px;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 10px solid var(--surface-soft);
}
.contact-form { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow); display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
input:focus, textarea:focus { outline: 3px solid rgba(107,184,214,.25); border-color: var(--accent); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--muted); }
.checkbox input { width: auto; margin-top: 6px; }
.privacy-note { font-size: .9rem; color: var(--muted); margin: 0; }
.hidden { display: none; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px clamp(20px,5vw,72px); border-top: 1px solid var(--line); color: var(--muted); background: var(--surface-soft); }
.site-footer nav { display: flex; gap: 18px; }
.legal { max-width: 920px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); color: var(--accent-deep); }
.legal h2 { font-size: 1.8rem; margin-top: 42px; }
.simple { position: static; }
.always-visible { display: flex !important; }
.thank-you { min-height: 100vh; display: grid; place-items: center; }
.narrow { max-width: 680px; }

@media (max-width: 840px) {
  .menu-button { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 72px; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 10px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .about, .contact, .cards { grid-template-columns: 1fr; }
  .hero-photo { min-height: 720px; background-position: 58% center; }
  .hero-content { padding: 24px 18px; }
  .about-image-wrap { position: static; }
  .about-image { max-width: 330px; }
  .mountain-edge { height: 46px; }
  .mountain-edge.top { top: -45px; }
}

/* Kreativerer Leistungsbereich */
.section-sky {
  background: linear-gradient(180deg, #d8eef8 0%, #c5e5f4 100%);
}
.offers {
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(86px, 9vw, 132px);
}
.section-heading.centered {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-subtitle {
  max-width: 720px;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 46px;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 24px 26px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 22px 60px rgba(21,92,120,.13);
  backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
}
.offer-card::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 0;
  height: 76px;
  background: linear-gradient(135deg, rgba(107,184,214,.28), rgba(255,255,255,.12));
  clip-path: polygon(0 52%, 18% 28%, 34% 55%, 50% 18%, 68% 57%, 84% 32%, 100% 55%, 100% 0, 0 0);
  z-index: -1;
}
.offer-card.highlighted {
  background: rgba(255,255,255,.64);
  transform: none;
  border-color: rgba(255,255,255,.72);
}
.offer-card.wide {
  grid-column: span 1;
}
.offer-icon {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(21,92,120,.96), rgba(107,184,214,.86));
  box-shadow: 0 14px 34px rgba(21,92,120,.26);
  outline: 9px solid rgba(255,255,255,.55);
}
.offer-icon span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  letter-spacing: -.04em;
}
.offer-card h3 {
  text-align: center;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  margin-bottom: 8px;
}
.offer-card .price {
  text-align: center;
  font-style: italic;
  font-weight: 650;
  margin-bottom: 22px;
}
.offer-card p {
  color: #17364a;
}
.offer-card .button {
  margin-top: auto;
  align-self: center;
}
.button.small {
  min-height: 42px;
  padding: 0 17px;
  font-size: .94rem;
  background: rgba(255,255,255,.78);
}
.button.small:hover {
  border-color: var(--accent-dark);
}
.button.small.primary {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.button.small.primary:hover {
  background: var(--accent-deep);
  color: #fff;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin: 14px 0 20px;
}
.pill-list span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(47,127,159,.18);
  color: var(--accent-deep);
  font-size: .92rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card.highlighted { transform: none; }
}

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 30px 20px 24px; }
}

/* Revision: geteiltes Header-Layout und einheitlichere Angebotskarten */
.hero-split {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: linear-gradient(135deg, #e9f8fd 0%, #c8e9f6 100%);
  color: var(--text);
  overflow: hidden;
}
.hero-split .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 0 0 auto;
  align-self: center;
  text-align: left;
  padding: clamp(54px, 7vw, 96px) clamp(28px, 5vw, 76px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
}
.hero-split h1 {
  color: var(--accent-deep);
  margin-bottom: 24px;
}
.hero-split .lead {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
  color: var(--text);
}
.hero-split .hero-actions {
  justify-content: flex-start;
}
.hero-media {
  min-height: calc(100vh - 78px);
  background-image:
    linear-gradient(90deg, rgba(232,248,253,.92) 0%, rgba(232,248,253,.40) 24%, rgba(8,47,70,.06) 100%),
    url("images/hero-berg-ruecken.jpg");
  background-size: cover;
  background-position: 54% center;
  clip-path: ellipse(96% 118% at 100% 50%);
}
.light-button { border-color: var(--line); }

.offer-card {
  padding: 34px 26px 28px;
}
.offer-card h3 {
  min-height: 3.1rem;
  display: grid;
  place-items: center;
}
.offer-card .price {
  min-height: 1.55rem;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  gap: 9px;
}
.offer-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border: 1px solid rgba(47,127,159,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.25;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--accent-dark);
}
.button.small.offer-cta {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(21,92,120,.18);
}
.button.small.offer-cta:hover {
  background: var(--accent-deep);
  color: #fff;
}

.about {
  grid-template-columns: minmax(280px, 360px) minmax(0, 820px);
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
}
.about-image {
  max-width: 360px;
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-split .hero-content {
    max-width: none;
    margin: 0;
    text-align: center;
    padding-top: 78px;
    padding-bottom: 54px;
  }
  .hero-split .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split .hero-actions {
    justify-content: center;
  }
  .hero-media {
    min-height: 420px;
    clip-path: none;
    background-position: center center;
  }
}

@media (max-width: 840px) {
  .hero-split { min-height: auto; }
  .about {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .about-text {
    max-width: 720px;
  }
}

/* Feinschliff korrigiert: Header ohne weißen Bildfilter, Angebote nur mit Chips, Über-mich-Mittelabstand */
.hero-media {
  background-image: url("images/hero-berg-ruecken.jpg") !important;
  background-size: cover !important;
  background-position: 55% center !important;
}
.hero-split .lead { max-width: 560px; }
.offer-card > p:not(.price) { display: none !important; }
.offer-card .price { margin-bottom: 26px; }
.offer-list { margin-top: 0; margin-bottom: 30px; }
.offer-list li { background: rgba(255,255,255,.78); }
.button.small.offer-cta,
.offer-card .button.small.offer-cta,
.offer-card .button.small {
  background: var(--accent-dark) !important;
  color: #ffffff !important;
  border-color: var(--accent-dark) !important;
  box-shadow: 0 12px 26px rgba(21,92,120,.18);
}
.button.small.offer-cta:hover,
.offer-card .button.small.offer-cta:hover,
.offer-card .button.small:hover {
  background: var(--accent-deep) !important;
  color: #ffffff !important;
}
.about {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(300px, 400px) minmax(0, 820px);
  gap: clamp(44px, 6vw, 84px);
  justify-content: center;
}
.about-image { max-width: 400px; }
@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 34px; }
  .about-image-wrap { justify-self: center; }
}


/* Aktualisierung: präsentere Navigation und persönlichere Angebotskarten */
.site-header {
  background: rgba(238, 248, 252, 0.96);
  box-shadow: 0 8px 28px rgba(21, 92, 120, 0.08);
}
.site-nav {
  gap: 10px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(47,127,159,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(21,92,120,.06);
}
.site-nav a:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.offer-note {
  display: block !important;
  color: var(--text) !important;
  font-size: .98rem;
  line-height: 1.58;
  margin: 0 0 22px;
  min-height: 78px;
}
.offer-card > p:not(.price):not(.offer-note) { display: none !important; }
.offer-card h3 { min-height: 3.45rem; }
.offer-list { margin-top: 0; }
.offer-list li {
  min-height: 43px;
  display: flex;
  align-items: center;
}
@media (max-width: 1120px) {
  .offer-note { min-height: 0; }
}
@media (max-width: 840px) {
  .site-nav a {
    width: 100%;
    justify-content: center;
    margin: 4px 0;
  }
}


/* Datenschutz-Ergänzungen */
.legal-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 780px;
}
.legal-disclaimer {
  margin-top: 42px;
  padding: 18px 20px;
  border: 1px solid rgba(49, 145, 179, .28);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  color: var(--text);
}
.privacy-check {
  padding: 14px 16px;
  border: 1px solid rgba(49, 145, 179, .25);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}
.privacy-check a,
.privacy-note a {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Aktualisierung 2026-05-03: neues Headerfoto, kleinere Überschriften, ruhigere Angebotskarten */
h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.7rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 4.1vw, 3.7rem);
  letter-spacing: -0.035em;
}
.hero-split h1 {
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  max-width: 680px;
}
.section-heading.centered {
  max-width: 980px;
}
.section-heading.centered h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.offer-grid {
  align-items: stretch;
}
.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.offer-card .price {
  margin-bottom: 20px !important;
}
.offer-card .offer-note,
.offer-card .offer-list {
  display: none !important;
}
.offer-text {
  display: block !important;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.62;
  text-align: left;
  margin: 0 0 28px;
  min-height: 250px;
}
.offer-text p {
  margin: 0 0 16px;
}
.offer-text p:last-child {
  margin-bottom: 0;
}
.text-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 9px;
}
.text-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}
.text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dark);
}
.offer-card .offer-cta {
  margin-top: auto;
  align-self: center;
}
@media (max-width: 1120px) {
  .offer-card { min-height: auto; }
  .offer-text { min-height: 0; }
}
@media (max-width: 840px) {
  .hero-split h1 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
}


/* Update 2026-05-03: neues Headerfoto + Angebotsüberschrift in einer Zeile */
.hero-media {
  background-position: center center !important;
}
.offers .section-heading h2 {
  font-size: clamp(1.9rem, 3.35vw, 3.15rem);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .offers .section-heading h2 {
    white-space: normal;
  }
}


/* Update 2026-05-03: Headerbild weiter herauszoomen + neues Über-mich-Bild */
.hero-media {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #dfeef5;
}
@media (max-width: 960px) {
  .hero-media {
    background-size: contain !important;
    min-height: 460px;
  }
}


/* Update 2026-05-03: Headerbild kleiner und passend zur Textspalte */
.hero-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr) !important;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(54px, 6vw, 84px) clamp(20px, 5vw, 72px);
  align-items: center;
}
.hero-split .hero-content {
  margin: 0 !important;
  padding: clamp(34px, 5vw, 64px) 0 !important;
  max-width: 690px !important;
}
.hero-media {
  min-height: 0 !important;
  height: clamp(420px, 42vw, 620px) !important;
  align-self: center;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(20, 78, 105, 0.16);
  border: 10px solid rgba(255,255,255,.62);
  clip-path: none !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }
  .hero-split .hero-content {
    padding: 72px 24px 44px !important;
  }
  .hero-media {
    width: min(92%, 520px);
    margin: 0 auto 44px;
    height: clamp(360px, 80vw, 520px) !important;
  }
}


/* Update 2026-05-03: Mobile Header untereinander statt nebeneinander */
@media (max-width: 768px) {
  .hero,
  .hero-split {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    background: #d9ebf4 !important;
  }

  .hero-split {
    padding: 0 20px 28px !important;
  }

  .hero-split .hero-content {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 48px 0 24px !important;
    text-align: center !important;
  }

  .hero-split .eyebrow {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }

  .hero-split h1 {
    font-size: clamp(3rem, 14vw, 4.7rem) !important;
    margin-bottom: 18px !important;
  }

  .hero-split .lead {
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1.05rem !important;
  }

  .hero-split .hero-actions {
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .hero-media {
    display: block !important;
    width: min(84vw, 340px) !important;
    height: min(84vw, 340px) !important;
    margin: 18px auto 0 !important;
    min-height: 0 !important;
    align-self: center !important;
    justify-self: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    clip-path: none !important;
    border-radius: 28px !important;
  }
}


/* Update 2026-05-04: Desktop-Header wieder kompakter, Mobile bleibt untereinander */
@media (min-width: 769px) {
  .hero {
    display: block !important;
    width: 100% !important;
    background: #d9ebf4 !important;
  }

  .hero-split {
    display: grid !important;
    width: min(1280px, calc(100% - 56px)) !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr) !important;
    gap: clamp(18px, 2.8vw, 38px) !important;
    align-items: center !important;
    padding: clamp(36px, 5vw, 72px) 0 !important;
    background: transparent !important;
  }

  .hero-split .hero-content {
    justify-self: end !important;
    align-self: center !important;
    max-width: 620px !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .hero-split .hero-content .eyebrow,
  .hero-split .hero-content .lead {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-split .hero-actions {
    justify-content: flex-start !important;
  }

  .hero-media {
    justify-self: start !important;
    align-self: center !important;
    width: min(100%, 560px) !important;
    height: clamp(380px, 36vw, 520px) !important;
    margin: 0 !important;
  }
}
