:root {
  --ink: #1d2424;
  --text: #424b49;
  --muted: #717b78;
  --paper: #ffffff;
  --wash: #f6f3ec;
  --mist: #eef3f1;
  --teal: #0c6b63;
  --teal-dark: #084d49;
  --coral: #d96f5f;
  --ochre: #c7963f;
  --line: rgba(29, 36, 36, 0.12);
  --line-strong: rgba(29, 36, 36, 0.2);
  --shadow: 0 18px 55px rgba(29, 36, 36, 0.12);
  --shadow-strong: 0 28px 80px rgba(29, 36, 36, 0.18);
  --radius: 8px;
  --type-content: 20px;
  --type-content-mobile: 19px;
  --type-title: clamp(32px, 4.4vw, 54px);
  --type-section-title: clamp(28px, 3.2vw, 42px);
  --type-subtitle: clamp(22px, 2.2vw, 30px);
  --type-quote: clamp(21px, 1.9vw, 27px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--wash);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 243, 236, 0.96)),
    linear-gradient(90deg, rgba(12, 107, 99, 0.07), transparent 38%, rgba(217, 111, 95, 0.07));
}

a {
  color: var(--teal);
  text-underline-offset: 0.22em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 124px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.brand span {
  max-width: 160px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal-dark);
  background: rgba(12, 107, 99, 0.09);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(12, 107, 99, 0.2);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--coral);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

#main {
  overflow: hidden;
}

.container,
.caption_container {
  width: min(1160px, calc(100% - 42px));
  margin-inline: auto;
}

.avia-fullscreen-slider {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  color: #fff;
  overflow: hidden;
  background: #142423;
}

.avia-fullscreen-slider::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 120px;
  background: linear-gradient(0deg, var(--wash), rgba(246, 243, 236, 0));
  pointer-events: none;
}

.avia-slideshow-inner {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

.avia-slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroFade 20s infinite;
}

.avia-slideshow-slide:first-child {
  opacity: 1;
}

.avia-slideshow-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 24, 0.86), rgba(12, 24, 24, 0.62) 46%, rgba(12, 24, 24, 0.16)),
    linear-gradient(0deg, rgba(12, 24, 24, 0.44), rgba(12, 24, 24, 0.08));
}

@keyframes heroFade {
  0%, 22% { opacity: 1; }
  30%, 92% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  50% {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .slideshow_align_caption::before {
    animation: revealUp 620ms ease both 120ms;
  }

  .page-home .avia-caption-title {
    animation: revealUp 720ms ease both 220ms;
  }

  .page-home .avia-caption-content {
    animation: revealUp 720ms ease both 340ms;
  }

  .page-home .hero-actions {
    animation: revealUp 720ms ease both 460ms;
  }

  .hero-badge {
    animation: fadeScale 650ms ease both 620ms, badgeFloat 5.8s ease-in-out infinite 1.2s;
    transform-origin: center;
  }

  .site-nav.open {
    animation: navDrop 180ms ease both;
  }

  .button-link,
  .button,
  button,
  input[type="submit"],
  .site-nav a,
  .contact-methods a,
  .proof-strip div {
    transition:
      background 180ms ease,
      color 180ms ease,
      border-color 180ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .button-link:hover,
  .button:hover,
  button:hover,
  input[type="submit"]:hover,
  .site-nav a:hover {
    transform: translateY(-2px);
  }

  .proof-strip div:hover,
  .contact-methods a:hover {
    transform: translateY(-4px);
  }

  .whatsapp-float {
    animation: softPulse 3.6s ease-in-out infinite;
    transition: transform 180ms ease, box-shadow 220ms ease;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
  }

  .js-enabled.reveal-ready .reveal {
    transition:
      opacity 680ms ease var(--reveal-delay, 0ms),
      transform 680ms ease var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .js-enabled.reveal-ready .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(24px);
  }

  .js-enabled.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

.avia-slideshow-arrows,
.scroll-down-link {
  display: none;
}

.av-slideshow-caption {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100vh - 76px));
}

.slideshow_caption {
  max-width: 720px;
  padding: 88px 0 128px;
}

.hero-badge {
  position: absolute;
  top: clamp(92px, 12vh, 130px);
  right: clamp(24px, 7vw, 96px);
  z-index: 6;
  width: clamp(170px, 20vw, 260px);
  margin: 0;
  background: transparent;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

.slideshow_align_caption::before {
  content: "Pers\00f6nliche Ern\00e4hrungsberatung";
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.avia-caption-title {
  margin: 0 0 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.03;
  font-weight: 700;
  text-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.avia-caption-content {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 650;
  line-height: 1.5;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.46);
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(12, 107, 99, 0.2);
}

.button-link:hover {
  background: var(--coral);
}

.button-link.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 34px rgba(29, 36, 36, 0.14);
}

.button-link.secondary:hover {
  color: #fff;
  background: var(--teal-dark);
}

.proof-strip {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1080px, calc(100% - 42px));
  margin: -76px auto 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.02;
}

.proof-strip span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.page-intro {
  padding: clamp(56px, 9vw, 104px) clamp(20px, 6vw, 80px) clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(12, 107, 99, 0.1), rgba(217, 111, 95, 0.08)),
    #fff;
  text-align: center;
}

.page-intro p {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-intro h1 {
  margin: 0;
}

.avia-section,
.av_default_container_wrap {
  position: relative;
  padding: clamp(36px, 5.6vw, 74px) 0;
  background: transparent;
}

.avia-section:nth-of-type(2n),
.alternate_color {
  background: rgba(255, 255, 255, 0.74);
}

.avia-section:nth-of-type(3n) {
  background: var(--mist);
}

.entry-content-wrapper {
  width: min(1060px, 100%);
  margin-inline: auto;
}

.av_textblock,
.avia_textblock {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: var(--type-content);
  line-height: 1.66;
  overflow-wrap: break-word;
  hyphens: auto;
}

.av_textblock p,
.av_textblock li,
.avia_textblock p,
.avia_textblock li {
  font-size: inherit;
  line-height: inherit;
}

.av_textblock p,
.avia_textblock p {
  margin: 0 0 1.08em;
}

.av_textblock p + p,
.avia_textblock p + p {
  margin-top: 0;
}

.av_textblock br,
.avia_textblock br {
  line-height: 1.1;
}

.av_textblock p:has(strong),
.avia_textblock p:has(strong) {
  color: var(--ink);
}

.av_textblock [style*="center"],
.avia_textblock [style*="center"] {
  text-align: left !important;
}

.av_textblock h2,
.av_textblock h3,
.av_textblock h4,
.avia_textblock h2,
.avia_textblock h3,
.avia_textblock h4 {
  margin-top: clamp(24px, 4vw, 42px);
}

.av_textblock h2,
.avia_textblock h2 {
  font-size: var(--type-section-title);
}

.av_textblock h3,
.av_textblock h4,
.avia_textblock h3,
.avia_textblock h4 {
  font-size: var(--type-subtitle);
}

.av_textblock > :first-child,
.av_textblock h2:first-child,
.av_textblock h3:first-child,
.av_textblock h4:first-child,
.avia_textblock > :first-child,
.avia_textblock h2:first-child,
.avia_textblock h3:first-child,
.avia_textblock h4:first-child {
  margin-top: 0;
}

.av_textblock h2 em,
.av_textblock h3 em,
.av_textblock h4 em,
.avia_textblock h2 em,
.avia_textblock h3 em,
.avia_textblock h4 em {
  font-style: italic;
}

.av_textblock h2 strong,
.av_textblock h3 strong,
.av_textblock h4 strong,
.avia_textblock h2 strong,
.avia_textblock h3 strong,
.avia_textblock h4 strong {
  font-weight: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.2;
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  font-size: var(--type-title);
  margin: 0 0 24px;
}

h2 {
  font-size: var(--type-section-title);
  margin: 0 0 24px;
}

h3 {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--teal-dark);
  font-size: var(--type-subtitle);
  line-height: 1.28;
}

h4 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: var(--type-subtitle);
  font-weight: 800;
  line-height: 1.32;
}

blockquote,
.av_textblock blockquote,
.avia_textblock blockquote {
  margin: 1.35em 0;
  padding: 0.1em 0 0.1em 1.15em;
  border-left: 4px solid var(--coral);
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-quote);
  font-style: italic;
  line-height: 1.48;
}

blockquote p,
.av_textblock blockquote p,
.avia_textblock blockquote p {
  font-size: inherit;
  line-height: inherit;
}

ul {
  margin: 1.1em 0 1.25em;
  padding-left: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 28px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(217, 111, 95, 0.12);
}

li + li {
  margin-top: 6px;
}

.flex_column_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 38px);
  align-items: center;
  margin: clamp(16px, 3.4vw, 36px) auto;
}

.flex_column {
  flex: 1 1 100%;
  min-width: 0;
}

.flex_column:empty,
.av-flex-placeholder {
  display: none;
}

.av_one_half {
  flex-basis: calc(50% - 26px);
  max-width: calc(50% - 26px);
}

.av_one_third {
  flex-basis: calc(33.333% - 35px);
  max-width: calc(33.333% - 35px);
}

.av_one_fourth {
  flex-basis: calc(25% - 39px);
  max-width: calc(25% - 39px);
}

.av_two_third {
  flex-basis: calc(66.666% - 26px);
  max-width: calc(66.666% - 26px);
}

.avia-image-container {
  position: relative;
  margin: 10px auto;
  text-align: center;
  isolation: isolate;
}

.avia-image-container::before {
  content: "";
  position: absolute;
  inset: 14px -10px -10px 18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(12, 107, 99, 0.09);
  transform: rotate(-1deg);
}

.avia-image-container-inner {
  display: block;
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.avia-image-overlay-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f1e9;
}

.avia-image-container img,
.widget_media_image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: none;
  transition: transform 420ms ease, filter 420ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.av_one_third .avia-image-container img,
.av_one_fourth .avia-image-container img {
  aspect-ratio: 4 / 5;
}

.av_one_half .avia-image-container img {
  aspect-ratio: 4 / 3;
}

.av_one_full .avia-image-container img {
  aspect-ratio: 16 / 6;
  max-height: 380px;
}

.image-logo::before,
.image-portrait::before {
  inset: 18px 16px -12px -10px;
  background: rgba(199, 150, 63, 0.13);
  transform: rotate(1.3deg);
}

.image-logo .avia-image-container-inner,
.image-portrait .avia-image-container-inner {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 13px;
}

.image-logo img,
.image-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 620px;
  margin-inline: auto;
  object-fit: contain;
  aspect-ratio: auto !important;
}

.image-logo img {
  max-height: 300px;
  padding: 12px;
  background: #fff;
}

.image-food .avia-image-container-inner,
.image-panorama .avia-image-container-inner {
  padding: 8px;
}

.image-food img {
  aspect-ratio: 5 / 4 !important;
  object-fit: cover;
}

.image-panorama {
  width: min(1120px, 100%);
}

.image-panorama::before {
  inset: 18px -14px -14px 22px;
  transform: rotate(-0.6deg);
}

.image-panorama img {
  aspect-ratio: 16 / 5 !important;
  max-height: 360px;
  object-fit: cover;
}

.image-balanced img,
.image-landscape img {
  object-position: center;
}

.sabine-problem-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(1060px, calc(100% - 42px));
  margin: clamp(38px, 5.8vw, 78px) auto;
}

.sabine-problem-text {
  max-width: none;
  margin: 0;
}

.sabine-problem-image {
  align-self: center;
}

.sabine-problem-image .avia-image-container {
  width: min(330px, 100%);
  margin: 0 auto;
}

.sabine-problem-image img {
  max-height: 520px;
}

.page-home #about {
  padding-top: 18px;
}

.page-home #about .avia-image-container img {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.page-home .avia-section h2,
.page-home .avia-section h3 {
  text-align: left;
}

.page-home .entry-content-wrapper {
  width: min(1060px, calc(100% - 42px));
}

.page-home .av_textblock,
.page-home .avia_textblock {
  max-width: 860px;
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--type-content);
  font-weight: 400;
  line-height: 1.66;
  text-align: left;
}

.page-home .flex_column .av_textblock,
.page-home .flex_column .avia_textblock {
  max-width: none;
}

.page-home .av_textblock p,
.page-home .av_textblock li,
.page-home .avia_textblock p,
.page-home .avia_textblock li {
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.page-home .av_textblock p,
.page-home .avia_textblock p {
  margin-bottom: 1.08em;
}

.page-home .av_textblock ul,
.page-home .avia_textblock ul {
  margin-top: 1.1em;
}

.page-home .av_textblock h2,
.page-home .av_textblock h3,
.page-home .av_textblock h4,
.page-home .avia_textblock h2,
.page-home .avia_textblock h3,
.page-home .avia_textblock h4 {
  max-width: 860px;
  color: var(--teal-dark);
  font-weight: 800;
}

.page-home .av_textblock h2,
.page-home .avia_textblock h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-section-title);
  line-height: 1.2;
}

.page-home .av_textblock h3,
.page-home .av_textblock h4,
.page-home .avia_textblock h3,
.page-home .avia_textblock h4 {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--type-subtitle);
  line-height: 1.3;
}

.page-home .avia-section:nth-of-type(4n) h2,
.page-home .avia-section:nth-of-type(4n) h3 {
  color: var(--coral);
}

.page-home .av-6oqy7-ed8ebae087aefd716efb32a9c07185ab h3,
.page-home .av-majjgxsu-d4ac2455eaf554a9a74d9167884a62a1 h3 {
  color: var(--coral);
}

.page-home .av-majjgxsu-d4ac2455eaf554a9a74d9167884a62a1 h3 {
  font-size: var(--type-subtitle);
}

.page-home .av_textblock > p:first-child strong,
.page-home .av_textblock > p:first-child em,
.page-home .avia_textblock > p:first-child strong,
.page-home .avia_textblock > p:first-child em {
  color: var(--teal-dark);
}

.page-home #av_section_4 .av-l2a4f-513ae1b49fe66439d4a4348d604ce185 {
  order: 2;
}

.page-home #av_section_4 .av-jvkec-f1dc657db0b861795ab5d3f2a2b60346 {
  order: 1;
}

.wpcf7,
.wpcf7-form,
form {
  width: min(920px, 100%);
  margin: 24px auto 0;
}

.wpcf7-form,
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.wpcf7-form p,
form p {
  margin: 0;
}

.wpcf7-form p:nth-last-child(-n + 5),
.wpcf7-form p:has(textarea),
.wpcf7-response-output,
.screen-reader-response,
.hidden-fields-container {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 400;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.screen-reader-response {
  font-weight: 400;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.45;
}

.form-status-success {
  border: 1px solid rgba(12, 107, 99, 0.24);
  color: var(--teal-dark);
  background: rgba(12, 107, 99, 0.08);
}

.form-status-error {
  border: 1px solid rgba(173, 67, 42, 0.3);
  color: #8a321e;
  background: rgba(173, 67, 42, 0.08);
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

textarea {
  min-height: 155px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 4px solid rgba(12, 107, 99, 0.16);
  border-color: var(--teal);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--teal);
}

.button,
button,
input[type="submit"] {
  width: auto;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(12, 107, 99, 0.2);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--coral);
}

.final-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 34px;
  align-items: center;
  width: min(1120px, calc(100% - 42px));
  margin: clamp(52px, 8vw, 92px) auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 77, 73, 0.96), rgba(29, 36, 36, 0.92)),
    url("../img/AdobeStock_74431940-1500x219.jpeg") center / cover;
  box-shadow: var(--shadow-strong);
}

.final-cta p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 4.2vw, 52px);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(38px, 6vw, 78px) clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.86);
  background: #1d2424;
}

.site-footer img {
  width: 190px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer a {
  color: #fff;
}

.site-footer address {
  justify-self: end;
  text-align: right;
  font-style: normal;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.page-datenschutz .avia-fullscreen-slider,
.page-impressum .avia-fullscreen-slider,
.page-kontakt .avia-fullscreen-slider,
.page-ueber-uns .avia-fullscreen-slider {
  display: none;
}

.page-datenschutz .av_textblock,
.page-datenschutz .avia_textblock,
.page-impressum .av_textblock,
.page-impressum .avia_textblock {
  max-width: 960px;
  text-align: left !important;
}

.page-datenschutz h1,
.page-impressum h1 {
  color: var(--teal-dark);
}

.page-kontakt .page-intro {
  padding-bottom: clamp(48px, 7vw, 82px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 77, 73, 0.92), rgba(29, 36, 36, 0.78)),
    url("../img/AdobeStock_74431940-1500x219.jpeg") center / cover;
}

.page-kontakt .page-intro p,
.page-kontakt .page-intro h1 {
  color: #fff;
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  width: min(1120px, calc(100% - 42px));
  margin: clamp(42px, 6vw, 76px) auto 0;
}

.contact-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 18px) 0;
}

.contact-overview-copy p:first-child,
.contact-form-heading p {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-overview-copy h2,
.contact-form-heading h2 {
  margin: 0;
  color: var(--teal-dark);
}

.contact-overview-copy p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: var(--type-content);
  line-height: 1.62;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-methods a {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(29, 36, 36, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-methods a:nth-child(2) {
  border-left-color: var(--coral);
}

.contact-methods a:nth-child(3) {
  border-left-color: var(--ochre);
}

.contact-methods a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-methods span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--teal-dark);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.page-kontakt #av_section_2 {
  padding-top: clamp(30px, 4vw, 54px);
}

.page-kontakt .entry-content-wrapper {
  width: min(1080px, calc(100% - 42px));
}

.contact-form-heading {
  width: min(920px, 100%);
  margin: 0 auto 18px;
}

.page-kontakt .wpcf7,
.page-kontakt .wpcf7-form {
  width: min(980px, 100%);
}

.page-kontakt .wpcf7 {
  margin-top: 0;
}

.page-kontakt .wpcf7-form {
  margin-top: 0;
  gap: 16px 18px;
  border-color: rgba(12, 107, 99, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 236, 0.96));
}

.page-kontakt label {
  display: block;
  color: var(--teal-dark);
  font-size: 15px;
  line-height: 1.35;
}

.page-kontakt input,
.page-kontakt textarea,
.page-kontakt select {
  margin-top: 8px;
  border-color: rgba(12, 107, 99, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.page-kontakt textarea {
  min-height: 180px;
}

.page-kontakt .wpcf7-form p:nth-last-child(2) {
  align-self: end;
}

.page-kontakt input[type="submit"] {
  min-width: 180px;
  border: 0;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
}

.page-kontakt input[type="submit"]:hover {
  background: var(--coral);
}

@media (max-width: 980px) {
  .brand span {
    display: none;
  }

  .proof-strip,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .final-actions,
  .site-footer address {
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
    gap: 16px;
  }

  .brand img {
    width: 116px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: center;
    margin-left: 0;
  }

  .avia-fullscreen-slider,
  .av-slideshow-caption {
    min-height: 640px;
  }

  .slideshow_caption {
    padding: 84px 0 116px;
  }

  .hero-badge {
    top: 86px;
    right: 20px;
    width: 126px;
  }

  .proof-strip {
    margin-top: -54px;
  }

  .av_one_half,
  .av_one_third,
  .av_one_fourth,
  .av_two_third {
    flex-basis: 100%;
    max-width: 100%;
  }

  .sabine-problem-section {
    grid-template-columns: 1fr;
  }

  .sabine-problem-image {
    order: -1;
  }

  .wpcf7-form,
  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 104px;
  }

  .container,
  .caption_container {
    width: min(100% - 28px, 1160px);
  }

  .avia-fullscreen-slider,
  .av-slideshow-caption {
    min-height: 600px;
  }

  .slideshow_caption {
    padding: 150px 0 104px;
  }

  .hero-badge {
    top: 82px;
    right: 14px;
    width: 90px;
  }

  .avia-caption-title {
    font-size: 38px;
  }

  .avia-caption-content {
    font-size: 17px;
    line-height: 1.46;
  }

  .slideshow_align_caption::before {
    font-size: 11px;
  }

  .proof-strip,
  .final-cta {
    width: calc(100% - 28px);
  }

  .proof-strip div {
    min-height: auto;
    padding: 20px;
  }

  .button-link {
    width: 100%;
  }

  .final-cta {
    gap: 22px;
    padding: 26px 18px;
  }

  .final-actions {
    width: 100%;
  }

  .av_textblock,
  .avia_textblock {
    font-size: var(--type-content-mobile);
    line-height: 1.6;
  }

  .page-home .entry-content-wrapper {
    width: min(100% - 28px, 1060px);
  }

  .page-home .av_textblock,
  .page-home .avia_textblock {
    font-size: var(--type-content-mobile);
    line-height: 1.6;
  }

  .page-home .av_textblock h2,
  .page-home .av_textblock h3,
  .page-home .av_textblock h4,
  .page-home .avia_textblock h2,
  .page-home .avia_textblock h3,
  .page-home .avia_textblock h4 {
    line-height: 1.32;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 22px;
  }

  .contact-overview,
  .page-kontakt .entry-content-wrapper {
    width: min(100% - 28px, 1080px);
  }

  .contact-methods a {
    min-height: auto;
    padding: 17px 18px;
  }

  .page-kontakt .wpcf7-form {
    padding: 20px 16px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
