/* ============================================================
   Feelgood Face Yoga – Custom Styles
   Styles that theme.json cannot handle
   ============================================================ */

/* ============================================================
   0. WORDPRESS BLOCK SPACING RESET
   ============================================================ */

/* blockGap is set to 0 in theme.json, so WordPress should not add
   spacing between blocks. These resets catch edge cases. */

/* No gap between top-level blocks (header → content → footer) */
.wp-site-blocks > * + * {
  margin-block-start: 0;
}

/* No gap between template parts and content */
.wp-site-blocks > .wp-block-template-part + *,
.wp-site-blocks > * + .wp-block-template-part {
  margin-block-start: 0;
}

/* post-content: volle Breite, Padding kommt über has-global-padding / Root Padding */
.entry-content.wp-block-post-content,
.wp-block-post-content {
  max-width: none;
}

/* wp-block-group containers used as our sections: no extra padding */
.wp-block-group:where(.section, .hero, .bridge-text, .trust-strip, .cta-section, .page-hero) {
  padding: 0;
}

/* wp-block-image: no extra margin within our sections */
:where(.hero, .section, .bridge-text, .trust-strip, .cta-section, .page-hero) .wp-block-image {
  margin: 0;
}

/* wp-block-image as styled container: reset line-height for proper sizing */
figure.wp-block-image {
  line-height: 0;
}

figure.wp-block-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   0b. WORDPRESS LAYOUT OVERRIDES
   WordPress is-layout-flow sets display:block on elements that
   our design needs as grid/flex. These overrides restore our
   intended display modes with enough specificity.
   ============================================================ */

/* --- Grid containers that WordPress turns into flow --- */
.wp-block-group.problem-cards {
  display: grid;
}

.wp-block-group.solution__image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wp--preset--spacing--3);
}

.wp-block-group.program-cards {
  display: grid;
}

.wp-block-group.video-cards {
  display: grid;
}

.wp-block-group.testimonial-cards {
  display: grid;
}

/* --- Flex containers that WordPress turns into flow --- */
.wp-block-group.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--4);
  flex-wrap: wrap;
  text-align: center;
}

.wp-block-group.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--6);
}

.wp-block-group.benefit-item {
  display: flex;
  gap: var(--wp--preset--spacing--4);
  align-items: flex-start;
}

.wp-block-group.card-testimonial__author-row {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
}

.wp-block-group.card-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wp-block-group.qualification__cert-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
}

/* --- Card program sub-containers that need flex/relative --- */
.wp-block-group.card-program {
  display: flex;
  flex-direction: column;
}

.wp-block-group.card-program__image {
  position: relative;
}

.wp-block-group.card-program__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Video card sub-containers --- */
.wp-block-group.card-video__image {
  position: relative;
}

/* --- About preview image placeholder as wp-block-group --- */
.wp-block-group.about-preview__image-placeholder {
  font-size: 0;
  line-height: 0;
}

/* --- About story col sticky as wp-block-group --- */
.wp-block-group.about-story__col--sticky {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   0c. WORDPRESS BUTTON COMPATIBILITY
   WordPress buttons: <div class="wp-block-button btn btn-primary">
     <a class="wp-block-button__link wp-element-button">
   Our .btn styles are on the outer div but the clickable element
   is the inner <a>. We need to:
   1. Reset the outer div to be a transparent pass-through
   2. Move all visual styles to the inner <a>
   ============================================================ */

/* Reset outer wp-block-button — it should not look like a button */
.wp-block-button.btn {
  display: contents;
}

/* The inner link inherits the visual button appearance */
.wp-block-button.btn-primary > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  line-height: 1;
  border-radius: var(--wp--custom--radius--full);
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
  cursor: pointer;
  border: 2px solid var(--wp--preset--color--sage);
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--wp--preset--color--sage);
  color: var(--wp--preset--color--text-on-dark);
}

.wp-block-button.btn-primary > .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--sage-deep);
  border-color: var(--wp--preset--color--sage-deep);
  transform: translateY(-0.0625rem);
  box-shadow: 0 4px 16px rgba(78, 122, 88, 0.3);
}

.wp-block-button.btn-primary > .wp-block-button__link:active {
  transform: translateY(0);
}

.wp-block-button.btn-secondary > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  line-height: 1;
  border-radius: var(--wp--custom--radius--full);
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
  cursor: pointer;
  border: 2px solid var(--wp--preset--color--petrol);
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--wp--preset--color--petrol);
  color: var(--wp--preset--color--text-on-dark);
}

.wp-block-button.btn-secondary > .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--petrol-deep);
  border-color: var(--wp--preset--color--petrol-deep);
  color: var(--wp--preset--color--text-on-dark);
  transform: translateY(-0.0625rem);
}

.wp-block-button.btn-ghost > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  line-height: 1;
  border-radius: var(--wp--custom--radius--full);
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
  cursor: pointer;
  border: 2px solid var(--wp--preset--color--sage);
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  color: var(--wp--preset--color--sage);
}

.wp-block-button.btn-ghost > .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--sage);
  color: var(--wp--preset--color--text-on-dark);
  transform: translateY(-0.0625rem);
}

.wp-block-button.btn-ghost-inverse > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  line-height: 1;
  border-radius: var(--wp--custom--radius--full);
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
  cursor: pointer;
  border: 2px solid white;
  text-decoration: none;
  white-space: nowrap;
  background-color: white;
  color: var(--wp--preset--color--sage-deep);
}

.wp-block-button.btn-ghost-inverse > .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--sage-pale);
  border-color: var(--wp--preset--color--sage-pale);
}

/* WordPress core sets .wp-block-buttons .wp-block-button__link { width: 100% }.
   We must reset this so our buttons size to their content. */
.wp-block-buttons .wp-block-button.btn .wp-block-button__link {
  width: auto;
}

/* Buttons inside card-program__body should align to start and push to bottom */
.card-program__body .wp-block-buttons {
  margin-top: auto;
  align-self: flex-start;
}

/* Buttons on mobile full-width in card-program */
@media (max-width: 30rem) {
  .card-program__body .wp-block-button__link {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   0d. FIGURE-AS-COMPONENT OVERRIDES
   WordPress renders images as <figure class="wp-block-image my-class">
   instead of <div class="my-class"> or <img class="my-class">.
   We make figures behave like their original containers.
   ============================================================ */

/* Hero logo: figure wrapping the brand logo image */
figure.wp-block-image.hero__logo-brand {
  display: block;
  height: 280px;
  width: auto;
  margin-bottom: var(--wp--preset--spacing--6);
  line-height: 0;
}

figure.wp-block-image.hero__logo-brand img {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 46.875rem) {
  figure.wp-block-image.hero__logo-brand {
    margin-inline: auto;
  }
}

/* Hero image placeholder as figure */
figure.wp-block-image.hero__image-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  background: var(--wp--preset--color--cream);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 26rem;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
}

figure.wp-block-image.hero__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Solution image placeholders as figure */
.solution__image-grid > figure.wp-block-image.solution__image-placeholder {
  background: var(--wp--preset--color--sage-pale);
  border-radius: var(--wp--custom--radius--lg);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 18px;
  font-size: 0;
  line-height: 0;
}

.solution__image-grid > figure.wp-block-image.solution__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

figure.wp-block-image.solution__image-placeholder:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Bridge text logo as figure */
figure.wp-block-image.bridge-text__logo {
  display: block;
  width: clamp(10rem, 15vw, 18rem);
  height: auto;
  margin-inline: auto;
  margin-bottom: var(--wp--preset--spacing--6);
  opacity: 0.9;
  line-height: 0;
}

figure.wp-block-image.bridge-text__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA section logo as figure */
figure.wp-block-image.cta-section__logo {
  display: block;
  height: 280px;
  width: auto;
  margin-inline: auto;
  margin-bottom: var(--wp--preset--spacing--8);
  opacity: 0.85;
  line-height: 0;
}

figure.wp-block-image.cta-section__logo img {
  height: 100%;
  width: auto;
  display: block;
  margin-inline: auto;
}

/* Testimonial avatar as figure */
figure.wp-block-image.card-testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--wp--custom--radius--full);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--wp--preset--color--sage-pale);
  line-height: 0;
}

figure.wp-block-image.card-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--wp--custom--radius--full);
}

/* About preview image placeholder (when wp-block-group wraps a figure) */
.about-preview__image-placeholder figure.wp-block-image {
  width: 100%;
  height: 100%;
}

.about-preview__image-placeholder figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About preview cert badge as figure */
figure.wp-block-image.about-preview__cert {
  position: absolute;
  bottom: var(--wp--preset--spacing--4);
  right: -1rem;
  width: clamp(5rem, 7vw, 8rem);
  box-shadow: var(--wp--custom--shadow--card);
  border-radius: var(--wp--custom--radius--md);
  background: var(--wp--preset--color--warm-white);
  padding: var(--wp--preset--spacing--1);
  opacity: 0.85;
  line-height: 0;
}

figure.wp-block-image.about-preview__cert img {
  width: 100%;
  height: auto;
  display: block;
}

/* About story image placeholder as figure (Uber-mich page) */
figure.wp-block-image.about-story__image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--wp--preset--color--cream);
  border-radius: var(--wp--custom--radius--xl);
  max-width: 22rem;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

figure.wp-block-image.about-story__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Qualification cert image as figure */
figure.wp-block-image.qualification__cert-img {
  border: 2px solid var(--wp--preset--color--sage-pale);
  border-radius: var(--wp--custom--radius--md);
  line-height: 0;
}

figure.wp-block-image.qualification__cert-img.qualification__cert-img--full {
  width: clamp(16rem, 28vw, 24rem);
  box-shadow: var(--wp--custom--shadow--card);
}

figure.wp-block-image.qualification__cert-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--wp--custom--radius--md) - 2px);
}

/* Card program image: figure inside card-program__image */
.card-program__image figure.wp-block-image {
  width: 100%;
  height: 100%;
  line-height: 0;
}

.card-program__image figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video card image: figure inside card-video__image */
.card-video__image figure.wp-block-image {
  width: 100%;
  height: 100%;
  line-height: 0;
}

.card-video__image figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   0e. TESTIMONIAL QUOTE AS <p> INSTEAD OF <blockquote>
   WordPress renders the quote as <p class="card-testimonial__quote">
   instead of <blockquote>. Ensure styling still works.
   ============================================================ */
p.card-testimonial__quote {
  font-style: italic;
  font-weight: 300;
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--text-body);
  line-height: var(--wp--custom--leading--relaxed);
  padding-top: var(--wp--preset--spacing--6);
  margin-bottom: var(--wp--preset--spacing--5);
}

/* ============================================================
   0f. PROGRAMS MORE LINK AS <p><a> INSTEAD OF <a>
   WordPress wraps the link in a paragraph.
   ============================================================ */
p.programs__more-link {
  display: block;
  text-align: center;
  margin-top: var(--wp--preset--spacing--6);
}

p.programs__more-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--2);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  color: var(--wp--preset--color--sage);
  text-decoration: none;
}

p.programs__more-link a:hover {
  text-decoration: underline;
}

/* ============================================================
   0g. OFFERS SPLIT MARGIN-TOP
   In click-dummy this was inline style="margin-top: var(--space-12);"
   ============================================================ */
.wp-block-group.offers-split {
  margin-top: var(--wp--custom--section-padding--sm);
}

/* ============================================================
   0h. ABOUT PREVIEW HEADING (h2 without section-header)
   Click-dummy had inline styles on this h2. WordPress renders
   it as a plain wp-block-heading.
   ============================================================ */
#ueber-sandra .wp-block-heading:not(.card-program__title):not(.card-video__title) {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 400;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--4);
}

/* ============================================================
   0i. PULL QUOTE (wp-block-quote.pull-quote)
   WordPress wraps the text in <blockquote><p> structure.
   ============================================================ */
blockquote.wp-block-quote.pull-quote {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 300;
  font-style: italic;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--sage-deep);
  border-left: 3px solid var(--wp--preset--color--petrol);
  padding-left: var(--wp--preset--spacing--6);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  margin-block: var(--wp--preset--spacing--8);
}

blockquote.wp-block-quote.pull-quote p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ============================================================
   0j. VALUES GRID AS WP-BLOCK-COLUMNS
   WordPress renders .values-grid as wp-block-columns (flex).
   Each card-value is inside a wp-block-column. We need to
   override the flex behavior to match our grid layout.
   ============================================================ */
.wp-block-columns.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
}

/* Remove wp-block-column padding/sizing so cards fill the column */
.values-grid > .wp-block-column {
  flex-basis: auto !important;
  flex-grow: 0;
  width: 100%;
}

@media (min-width: 48rem) {
  .wp-block-columns.values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .wp-block-columns.values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card-value inside wp-block-column should fill the column */
.values-grid .card-value {
  height: 100%;
}

/* ============================================================
   0k. CTA BUTTON ON UBER-MICH PAGE
   The button in cta-section is wrapped in wp-block-buttons with
   margin-top needed.
   ============================================================ */
.cta-section .wp-block-buttons {
  margin-top: var(--wp--preset--spacing--8);
  justify-content: center;
}

/* ============================================================
   0l. ENTRY-CONTENT SPACING RESET
   ============================================================ */
.entry-content.wp-block-post-content > * + * {
  margin-block-start: 0;
}

/* ============================================================
   0m. ABOUT STORY COLUMNS STICKY FIX
   On tablet+ the first column should be sticky.
   WordPress uses wp-block-columns (flex), not our grid.
   We override to match our original grid layout.
   ============================================================ */
.wp-block-columns.about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: start;
}

.about-story__inner > .wp-block-column {
  flex-basis: auto !important;
  width: 100%;
}

@media (min-width: 48rem) {
  .wp-block-columns.about-story__inner {
    grid-template-columns: 1fr 1.6fr;
  }

  .about-story__inner > .wp-block-column:first-child {
    position: sticky;
    top: calc(4rem + var(--wp--preset--spacing--8));
    align-self: start;
  }
}

/* ============================================================
   0n. QUALIFICATION INNER AS WP-BLOCK-COLUMNS
   ============================================================ */
.wp-block-columns.qualification__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center;
}

.qualification__inner > .wp-block-column {
  flex-basis: auto !important;
  width: 100%;
}

@media (min-width: 48rem) {
  .wp-block-columns.qualification__inner {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* ============================================================
   0o. SOLUTION INNER AS WP-BLOCK-COLUMNS
   ============================================================ */
.wp-block-columns.solution__inner {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: start !important;
}

.solution__inner > .wp-block-column {
  flex-basis: auto !important;
  width: 100%;
}

@media (min-width: 48rem) {
  .wp-block-columns.solution__inner {
    grid-template-columns: 45fr 55fr;
  }
}

/* ============================================================
   0p. ABOUT PREVIEW INNER AS WP-BLOCK-COLUMNS
   ============================================================ */
.wp-block-columns.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center;
}

.about-preview__inner > .wp-block-column {
  flex-basis: auto !important;
  width: 100%;
}

@media (min-width: 48rem) {
  .wp-block-columns.about-preview__inner {
    grid-template-columns: 40fr 60fr;
  }
}

/* ============================================================
   0q. HERO INNER AS WP-BLOCK-COLUMNS
   ============================================================ */
.wp-block-columns.hero__inner {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center !important;
  width: 100%;
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.hero__inner > .wp-block-column {
  flex-basis: auto !important;
  width: 100%;
}

/* Text-Spalte: am Anfang starten, Bild-Spalte bleibt zentriert */
.hero__inner > .wp-block-column.hero__text {
  order: 1;
  align-self: start;
}

.hero__inner > .wp-block-column:not(.hero__text) {
  order: 2;
}

@media (min-width: 48rem) {
  .wp-block-columns.hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: var(--wp--preset--spacing--12);
  }
}

/* ============================================================
   1. CSS RESET ADDITIONS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   2. GLOBAL TRANSITIONS
   ============================================================ */
a, button, input, .card-program, .card-testimonial {
  transition-property: color, background-color, border-color, box-shadow, transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}

.card-program, .card-testimonial {
  transition-duration: 0.3s;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.container--narrow {
  max-width: var(--wp--style--global--content-size, 50rem);
}

.section {
  padding-block: var(--wp--custom--section-padding--default);
}

.section--sm {
  padding-block: var(--wp--custom--section-padding--sm);
}

.section--lg {
  padding-block: var(--wp--custom--section-padding--lg);
}

/* Background Utilities */
.bg-warm-white { background-color: var(--wp--preset--color--warm-white); }
.bg-cream { background-color: var(--wp--preset--color--cream); }
.bg-sage-mist { background-color: var(--wp--preset--color--sage-mist); }
.bg-sage { background-color: var(--wp--preset--color--sage); }
.bg-dark { background-color: var(--wp--preset--color--text-headline); }

/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */
.overline {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 400;
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: var(--wp--preset--color--sage);
  display: block;
  margin-bottom: var(--wp--preset--spacing--3);
}

.lead {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 300;
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

.section-header {
  margin-bottom: var(--wp--preset--spacing--10);
}

.section-header h2 {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 400;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--4);
}

.section-header .lead {
  max-width: 40rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  line-height: 1;
  border-radius: var(--wp--custom--radius--full);
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--wp--preset--color--sage-deep);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--wp--preset--color--sage);
  color: var(--wp--preset--color--text-on-dark);
  border-color: var(--wp--preset--color--sage);
}

.btn-primary:hover {
  background-color: var(--wp--preset--color--sage-deep);
  border-color: var(--wp--preset--color--sage-deep);
  transform: translateY(-0.0625rem);
  box-shadow: 0 4px 16px rgba(78, 122, 88, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--wp--preset--color--petrol);
  color: var(--wp--preset--color--text-on-dark);
  border-color: var(--wp--preset--color--petrol);
}

.btn-secondary:hover {
  background-color: var(--wp--preset--color--petrol-deep);
  border-color: var(--wp--preset--color--petrol-deep);
  color: var(--wp--preset--color--text-on-dark);
  transform: translateY(-0.0625rem);
}

.btn-ghost {
  background-color: transparent;
  color: var(--wp--preset--color--sage);
  border-color: var(--wp--preset--color--sage);
}

.btn-ghost:hover {
  background-color: var(--wp--preset--color--sage);
  color: var(--wp--preset--color--text-on-dark);
  transform: translateY(-0.0625rem);
}

.btn-ghost-inverse {
  background-color: white;
  color: var(--wp--preset--color--sage-deep);
  border-color: white;
}

.btn-ghost-inverse:hover {
  background-color: var(--wp--preset--color--sage-pale);
  border-color: var(--wp--preset--color--sage-pale);
}

.btn-sm {
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--4) !important;
  font-size: var(--wp--preset--font-size--xs) !important;
}

/* ============================================================
   6. HEADER / NAVIGATION
   ============================================================ */

/* WordPress wraps the header template part in a <header class="wp-block-template-part">.
   Sticky must be on that wrapper, not on our inner .site-header. */
header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  width: 100%;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  background: var(--wp--preset--color--warm-white);
  box-shadow: 0 1px 0 var(--wp--preset--color--sand);
}

.site-header .btn {
  padding-block: var(--wp--preset--spacing--2);
  margin-block: var(--wp--preset--spacing--2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(3.5rem, 3.5rem + 0.5vw, 4rem);
  padding-block: var(--wp--preset--spacing--2);
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
}

.nav-logo img {
  height: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  width: auto;
}

.nav-logo__wordmark {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 300;
  color: var(--wp--preset--color--text-headline);
  letter-spacing: var(--wp--custom--tracking--headline);
  white-space: nowrap;
  display: block;
}

@media (max-width: 22rem) {
  .nav-logo__wordmark {
    display: none;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: var(--wp--preset--spacing--6);
}

.nav-menu > li > a,
.nav-menu > li > .nav-menu__link {
  font-family: var(--wp--preset--font-family--jost);
  font-weight: 400;
  font-size: var(--wp--preset--font-size--sm);
  letter-spacing: var(--wp--custom--tracking--wide);
  color: var(--wp--preset--color--text-body);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li > .nav-menu__link:hover,
.nav-menu > li > .nav-menu__link.active,
.nav-menu__trigger[aria-expanded="true"] {
  color: var(--wp--preset--color--sage);
  border-bottom-color: var(--wp--preset--color--sage);
}

/* Dropdown trigger */
.nav-menu__trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--1);
}

.nav-menu__chevron {
  transition: transform 0.25s ease;
}

.nav-menu__trigger[aria-expanded="true"] .nav-menu__chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-menu__item--has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--wp--preset--spacing--3));
  left: 0;
  min-width: 14rem;
  background: var(--wp--preset--color--warm-white);
  border: 1px solid var(--wp--preset--color--sand);
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(42, 47, 43, 0.10), 0 2px 8px rgba(42, 47, 43, 0.06);
  padding-block: var(--wp--preset--spacing--2);
  list-style: none;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 1.5rem;
  width: 10px;
  height: 10px;
  background: var(--wp--preset--color--warm-white);
  border-top: 1px solid var(--wp--preset--color--sand);
  border-left: 1px solid var(--wp--preset--color--sand);
  transform: rotate(45deg);
}

.nav-dropdown li + li {
  border-top: 1px solid var(--wp--preset--color--sand);
}

.nav-dropdown__link {
  display: block;
  padding: var(--wp--preset--spacing--2) var(--wp--preset--spacing--4);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--text-body);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
  background-color: var(--wp--preset--color--sage-mist);
  color: var(--wp--preset--color--sage-deep);
}

.nav-menu__link:focus-visible,
.nav-menu__trigger:focus-visible,
.nav-dropdown__link:focus-visible {
  outline: 2px solid var(--wp--preset--color--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--4);
}

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.625rem;
  background: none;
  border: none;
  z-index: 101;
  position: relative;
  gap: 0;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--text-headline);
  border-radius: var(--wp--custom--radius--full);
  transition: all 0.25s ease;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(0.6875rem) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-0.6875rem) rotate(-45deg);
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--wp--preset--color--warm-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding-block-start: clamp(4rem, 3rem + 2vw, 5rem);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.nav-overlay__list {
  list-style: none;
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.nav-overlay__item {
  border-bottom: 1px solid var(--wp--preset--color--sand);
}

.nav-overlay__item:first-child {
  border-top: 1px solid var(--wp--preset--color--sand);
}

.nav-overlay__link,
.nav-overlay__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: var(--wp--preset--spacing--4);
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 300;
  color: var(--wp--preset--color--text-headline);
  text-decoration: none;
  letter-spacing: var(--wp--custom--tracking--headline);
  transition: color 0.2s ease;
}

.nav-overlay__link:hover {
  color: var(--wp--preset--color--sage);
}

.nav-overlay__trigger {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nav-overlay__chevron {
  color: var(--wp--preset--color--sage);
  transition: transform 0.25s ease;
}

.nav-overlay__trigger[aria-expanded="true"] .nav-overlay__chevron {
  transform: rotate(180deg);
}

.nav-overlay__sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-overlay__sub.is-open {
  max-height: 400px;
}

.nav-overlay__sub-link {
  display: block;
  padding-block: var(--wp--preset--spacing--3);
  padding-inline-start: var(--wp--preset--spacing--6);
  min-height: 2.75rem;
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--text-body);
  text-decoration: none;
  border-left: 2px solid var(--wp--preset--color--sage-pale);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-overlay__sub-link:hover,
.nav-overlay__sub-link:focus-visible {
  color: var(--wp--preset--color--sage-deep);
  border-left-color: var(--wp--preset--color--sage);
}

.nav-overlay__item--cta {
  padding-block: var(--wp--preset--spacing--6);
  border-bottom: none;
}

@media (min-width: 64rem) {
  .nav-menu { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown,
  .nav-overlay__sub,
  .nav-menu__chevron,
  .nav-overlay__chevron {
    transition: none;
  }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background-color: var(--wp--preset--color--warm-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--wp--preset--spacing--8);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center;
  width: 100%;
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.hero__text { order: 1; }
.hero__image-wrap { order: 2; position: relative; }

/* Blob background as pseudo-element (no HTML element needed) */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: var(--wp--preset--color--sage-mist);
  border-radius: 60% 40% 40% 60% / 50% 50% 60% 40%;
  opacity: 0.6;
  z-index: 0;
}

/* Keep class for backwards compat if wp:group blob exists */
.hero__blob-bg {
  position: absolute;
  inset: -10%;
  background: var(--wp--preset--color--sage-mist);
  border-radius: 60% 40% 40% 60% / 50% 50% 60% 40%;
  opacity: 0.6;
  z-index: 0;
}

.hero__image-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  background: var(--wp--preset--color--cream);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--text-muted);
  max-width: 26rem;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
}

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

.hero__cert-badge {
  position: absolute;
  bottom: var(--wp--preset--spacing--6);
  left: -1rem;
  background: var(--wp--preset--color--warm-white);
  border-radius: var(--wp--custom--radius--md);
  padding: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--xs);
  color: var(--wp--preset--color--text-body);
  box-shadow: var(--wp--custom--shadow--card);
  max-width: 14rem;
  line-height: var(--wp--custom--leading--normal);
  z-index: 2;
}

.hero__overline {
  display: block;
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 400;
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: var(--wp--preset--color--sage);
  margin-bottom: var(--wp--preset--spacing--4);
}

.hero__title {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--4-xl);
  font-weight: 300;
  line-height: var(--wp--custom--leading--tight);
  letter-spacing: var(--wp--custom--tracking--tight);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--6);
}

.hero__title em { font-style: italic; }

/* Dezente Subheadline (SEO-H2) unter der Hero-Headline */
.hero__subtitle {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 400;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: 0;
  color: var(--wp--preset--color--petrol-deep);
  margin-top: calc(-1 * var(--wp--preset--spacing--4));
  margin-bottom: var(--wp--preset--spacing--6);
  max-width: 30rem;
}

.hero__lead {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 300;
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
  margin-bottom: var(--wp--preset--spacing--8);
  max-width: 32rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--4);
  align-items: center;
}

/* Scroll-Indikator als CSS-only ::after auf .hero (kein Block nötig) */
.hero::after {
  content: '⌄\ASCROLL';
  white-space: pre;
  position: absolute;
  bottom: var(--wp--preset--spacing--4);
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  letter-spacing: var(--wp--custom--tracking--wide);
  color: var(--wp--preset--color--text-muted);
  text-transform: uppercase;
  line-height: 1.8;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.5rem); }
}

/* Fallback: .hero__scroll Klasse falls Block noch existiert */
.hero__scroll {
  position: absolute;
  bottom: var(--wp--preset--spacing--8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wp--preset--spacing--2);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  letter-spacing: var(--wp--custom--tracking--wide);
  color: var(--wp--preset--color--text-muted);
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}


.hero__scroll-arrow {
  width: 1.25rem;
  height: 1.25rem;
}


.hero__logo-brand {
  display: block;
  height: 280px;
  width: auto;
  margin-bottom: var(--wp--preset--spacing--6);
}

@media (max-width: 46.875rem) {
  .hero__logo-brand { margin-inline: auto; }
}

@media (max-width: 30rem) {
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 48rem) {
  .hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: var(--wp--preset--spacing--12);
  }
  .hero__text { order: 1; }
  .hero__image-wrap { order: 2; }
}

/* ============================================================
   8. PROBLEM CARDS
   ============================================================ */
.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
}

.card-problem {
  background: var(--wp--preset--color--warm-white);
  border-radius: var(--wp--custom--radius--lg);
  padding: var(--wp--preset--spacing--8);
  box-shadow: var(--wp--custom--shadow--card);
}

.card-problem__icon,
figure.wp-block-image.card-problem__icon {
  width: 3rem;
  height: 3rem;
  color: var(--wp--preset--color--sage);
  margin-bottom: var(--wp--preset--spacing--4);
}

figure.wp-block-image.card-problem__icon img {
  width: 3rem;
  height: 3rem;
}

.card-problem__title {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 600;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--3);
}

.card-problem__text {
  font-size: var(--wp--preset--font-size--base);
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

@media (min-width: 48rem) {
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .problem-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   9. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--wp--preset--color--petrol-light);
  padding-block: var(--wp--preset--spacing--5);
}

.trust-strip__inner {
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--4);
  flex-wrap: wrap;
  text-align: center;
}

.trust-strip__icon-svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--wp--preset--color--petrol-deep);
}

.trust-strip__text {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--text-body);
  line-height: var(--wp--custom--leading--normal);
}

.trust-strip__text strong {
  font-weight: 600;
  color: var(--wp--preset--color--text-headline);
}

.trust-strip__source {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--text-headline);
}

/* nowrap erst ab Tablet – auf Mobile sprengt der lange Quellentext
   sonst den Viewport (horizontales Scrollen). */
@media (min-width: 48rem) {
  .trust-strip__source {
    white-space: nowrap;
  }
}

/* ============================================================
   10. BRIDGE TEXT
   ============================================================ */
.bridge-text {
  background: var(--wp--preset--color--sage-mist);
  padding-block: var(--wp--preset--spacing--8);
  text-align: center;
}

.bridge-text__inner {
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.bridge-text__inner p {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 300;
  font-style: italic;
  line-height: var(--wp--custom--leading--snug);
  color: var(--wp--preset--color--text-headline);
  letter-spacing: var(--wp--custom--tracking--headline);
}

.bridge-text__logo {
  display: block;
  width: clamp(10rem, 15vw, 18rem);
  height: auto;
  margin-inline: auto;
  margin-bottom: var(--wp--preset--spacing--6);
  opacity: 0.9;
}

/* ============================================================
   11. SOLUTION / BENEFITS
   ============================================================ */
.solution__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: start;
}

.solution__image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wp--preset--spacing--3);
}

.solution__image-placeholder {
  background: var(--wp--preset--color--sage-pale);
  border-radius: var(--wp--custom--radius--lg);
  aspect-ratio: 1;
  overflow: hidden;
  padding: var(--wp--preset--spacing--3);
  font-size: 0;
}

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

.solution__image-placeholder:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Sticky erst ab Tablet – auf Mobile stapeln die Spalten, sonst
   klebt das Bild-Grid und der Text scrollt transparent darüber. */
@media (min-width: 48rem) {
  .solution__col--sticky {
    position: sticky;
    top: calc(4rem + var(--wp--preset--spacing--8));
  }
}

.solution__label {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--sm);
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: var(--wp--preset--color--sage);
  display: inline-block;
  margin-bottom: var(--wp--preset--spacing--4);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--6);
  margin-top: var(--wp--preset--spacing--6);
}

.benefit-item {
  display: flex;
  gap: var(--wp--preset--spacing--4);
  align-items: flex-start;
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--wp--preset--color--sage);
  margin-top: 0.125rem;
}

.benefit-item__content { flex: 1; }

.benefit-item__title {
  font-weight: 500;
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--1);
}

.benefit-item__text {
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 300;
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

@media (min-width: 48rem) {
  .solution__inner { grid-template-columns: 45fr 55fr; }
}

/* ============================================================
   12. PROGRAM CARDS (Angebote)
   ============================================================ */
.program-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
}

.card-program {
  background: var(--wp--preset--color--warm-white);
  border-radius: var(--wp--custom--radius--lg);
  overflow: hidden;
  box-shadow: var(--wp--custom--shadow--card);
  display: flex;
  flex-direction: column;
}

.card-program:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--wp--custom--shadow--card-hover);
}

.card-program__image {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.card-program__badge {
  position: absolute;
  bottom: var(--wp--preset--spacing--3);
  left: var(--wp--preset--spacing--3);
  background: var(--wp--preset--color--petrol);
  color: var(--wp--preset--color--text-on-dark);
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wide);
  padding: var(--wp--preset--spacing--1) var(--wp--preset--spacing--3);
  border-radius: var(--wp--custom--radius--full);
}

.card-program__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--wp--preset--spacing--6);
}

.card-program__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card-program__category {
  font-size: var(--wp--preset--font-size--xs);
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: var(--wp--preset--color--text-muted);
  margin-bottom: var(--wp--preset--spacing--2);
}

.card-program__title {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 600;
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--3);
  line-height: var(--wp--custom--leading--snug);
}

.card-program__text {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--text-body);
  line-height: var(--wp--custom--leading--relaxed);
  margin-bottom: var(--wp--preset--spacing--5);
}

.programs__more-link {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--2);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  color: var(--wp--preset--color--sage);
  text-decoration: none;
  margin-top: var(--wp--preset--spacing--8);
}

.programs__more-link:hover {
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .program-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .program-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 30rem) {
  .card-program__body .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   13. OFFERS SPLIT + VIDEO CARDS
   ============================================================ */
.offers-split {
  margin-bottom: var(--wp--preset--spacing--6);
}

.offers-split__heading {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 600;
  color: var(--wp--preset--color--text-headline);
  letter-spacing: var(--wp--custom--tracking--headline);
  line-height: var(--wp--custom--leading--snug);
  margin-bottom: var(--wp--preset--spacing--2);
}

.offers-split__sub {
  font-size: var(--wp--preset--font-size--base);
  font-weight: 300;
  color: var(--wp--preset--color--text-muted);
}

.video-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
  margin-bottom: var(--wp--preset--spacing--6);
}

.card-video {
  background: var(--wp--preset--color--warm-white);
  border-radius: var(--wp--custom--radius--lg);
  overflow: hidden;
  box-shadow: var(--wp--custom--shadow--card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-video:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--wp--custom--shadow--card-hover);
}

.card-video__image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

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

.card-video__duration {
  position: absolute;
  bottom: var(--wp--preset--spacing--2);
  right: var(--wp--preset--spacing--2);
  background: rgba(42, 47, 43, 0.72);
  color: white;
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 500;
  padding: 0.2rem var(--wp--preset--spacing--2);
  border-radius: var(--wp--custom--radius--sm);
}

.card-video__body {
  padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--5);
}

.card-video__category {
  font-size: var(--wp--preset--font-size--xs);
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: var(--wp--preset--color--text-muted);
  margin-bottom: var(--wp--preset--spacing--1);
}

.card-video__title {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--xl);
  font-weight: 600;
  color: var(--wp--preset--color--text-headline);
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
}

.card-video--no-price .card-video__body {
  padding-bottom: var(--wp--preset--spacing--5);
}

@media (min-width: 48rem) {
  .video-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .video-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
}

.card-testimonial {
  background: var(--wp--preset--color--warm-white);
  border-radius: var(--wp--custom--radius--lg);
  padding: var(--wp--preset--spacing--8);
  position: relative;
  border: 1px solid var(--wp--preset--color--sand);
}

.card-testimonial::before {
  content: '\201C';
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--5-xl);
  color: var(--wp--preset--color--sage-pale);
  position: absolute;
  top: var(--wp--preset--spacing--4);
  left: var(--wp--preset--spacing--6);
  line-height: 0.8;
  pointer-events: none;
}

.card-testimonial__stars {
  color: var(--wp--preset--color--petrol);
  font-size: var(--wp--preset--font-size--base);
  margin-bottom: var(--wp--preset--spacing--3);
  letter-spacing: 0.05em;
  line-height: 1;
}

.card-testimonial__quote {
  font-style: italic;
  font-weight: 300;
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--text-body);
  line-height: var(--wp--custom--leading--relaxed);
  padding-top: var(--wp--preset--spacing--6);
  margin-bottom: var(--wp--preset--spacing--5);
}

.card-testimonial__author-row {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
}

.card-testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--wp--custom--radius--full);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--wp--preset--color--sage-pale);
}

.card-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-testimonial__author {
  font-weight: 500;
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--sage);
}

.card-testimonial__product {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  color: var(--wp--preset--color--text-muted);
}

@media (min-width: 48rem) {
  .testimonial-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .testimonial-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   15. ABOUT PREVIEW (Startseite)
   ============================================================ */
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center;
}

.about-preview__image-wrap {
  position: relative;
}

.about-preview__image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--wp--preset--color--cream);
  border-radius: var(--wp--custom--radius--xl);
  max-width: 22rem;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
}

.about-preview__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-preview__cert {
  position: absolute;
  bottom: var(--wp--preset--spacing--4);
  right: -1rem;
  width: clamp(5rem, 7vw, 8rem);
  box-shadow: var(--wp--custom--shadow--card);
  border-radius: var(--wp--custom--radius--md);
  background: var(--wp--preset--color--warm-white);
  padding: var(--wp--preset--spacing--1);
  opacity: 0.85;
}

.about-preview__body {
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
  margin-bottom: var(--wp--preset--spacing--6);
}

.about-preview__body p + p {
  margin-top: var(--wp--preset--spacing--4);
}

.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--2);
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 500;
  color: var(--wp--preset--color--sage);
  text-decoration: none;
}

.about-preview__link:hover {
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .about-preview__inner { grid-template-columns: 40fr 60fr; }
}

/* ============================================================
   16. CTA SECTION
   ============================================================ */
.cta-section {
  background-color: #6b8f71;
  padding-block: var(--wp--custom--section-padding--lg);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 300;
  line-height: var(--wp--custom--leading--tight);
  color: var(--wp--preset--color--text-on-dark);
  margin-bottom: var(--wp--preset--spacing--4);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 1);
  margin-bottom: var(--wp--preset--spacing--8);
  margin-inline: auto;
}

.cta-section__logo {
  display: block;
  height: 280px;
  width: auto;
  margin-inline: auto;
  margin-bottom: var(--wp--preset--spacing--8);
  opacity: 0.85;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--3);
  max-width: 32rem;
  margin-inline: auto;
}

.cta-form__input {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--wp--custom--radius--md);
  color: white;
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--5);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--base);
  outline: none;
  transition: border-color 0.2s ease;
}

.cta-form__input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.cta-form__input:focus {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.9);
}

.cta-form__input:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
  border-color: white;
}

.cta-form__hint {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-top: var(--wp--preset--spacing--3);
}

.cta-section .cta-form .btn-ghost-inverse {
  width: 100%;
  justify-content: center;
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--8);
}

@media (min-width: 48rem) {
  .cta-form { flex-direction: row; }
  .cta-form__input { flex: 1; }
  .cta-section .cta-form .btn-ghost-inverse { width: auto; }
}

.cta-section__signature {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--xl);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--wp--preset--spacing--6);
}

/* ============================================================
   17. MEDICAL DISCLAIMER
   ============================================================ */
.medical-disclaimer {
  background: var(--wp--preset--color--cream);
  border-top: 1px solid var(--wp--preset--color--sand);
  padding: var(--wp--preset--spacing--4);
}

.medical-disclaimer__inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--3);
}

.medical-disclaimer__icon {
  flex-shrink: 0;
  color: var(--wp--preset--color--text-body);
  opacity: 0.6;
  margin-top: 0.15em;
}

.medical-disclaimer__text {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
  margin: 0;
}

.medical-disclaimer__text strong {
  font-weight: 500;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--wp--preset--color--text-headline);
  padding-top: var(--wp--custom--section-padding--default);
  padding-bottom: var(--wp--preset--spacing--8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--8);
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.footer-brand__logo {
  width: 200px;
  height: auto;
  margin-bottom: var(--wp--preset--spacing--4);
  opacity: 0.9;
}

.footer-brand__tagline {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--wp--preset--spacing--3);
}

.footer-brand__desc {
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 300;
  line-height: var(--wp--custom--leading--relaxed);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--wp--preset--spacing--5);
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: var(--wp--preset--spacing--4);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.footer-social a:hover {
  color: var(--wp--preset--color--sage);
}

.footer-social svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-heading {
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 500;
  letter-spacing: var(--wp--custom--tracking--wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--wp--preset--spacing--4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--3);
}

.footer-links a {
  font-size: var(--wp--preset--font-size--sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
  margin-top: var(--wp--preset--spacing--5);
  flex-wrap: wrap;
}

.footer-payment__label {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: var(--wp--custom--tracking--wide);
  text-transform: uppercase;
}

.footer-payment__badge {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 600;
  padding: 0.25rem var(--wp--preset--spacing--3);
  border-radius: var(--wp--custom--radius--sm);
  letter-spacing: 0.02em;
}

.footer-payment__badge--paypal {
  background: #003087;
  color: #ffffff;
}

.footer-payment__badge--klarna {
  background: #ffb3c7;
  color: #17120f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--wp--preset--spacing--10);
  padding-top: var(--wp--preset--spacing--6);
  max-width: var(--wp--style--global--wide-size, 80rem);
  margin-inline: auto;
  padding-inline: var(--wp--custom--container-padding);
}

.footer-copyright {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--wp--preset--spacing--10);
  }
}

/* ============================================================
   19. ÜBER-MICH-SEITE
   ============================================================ */
.page-hero {
  background-color: var(--wp--preset--color--cream);
  padding-block: var(--wp--preset--spacing--16);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--4-xl);
  font-weight: 300;
  line-height: var(--wp--custom--leading--tight);
  letter-spacing: var(--wp--custom--tracking--tight);
  color: var(--wp--preset--color--text-headline);
  max-width: 36rem;
  margin-inline: auto;
}

.page-hero h1 em { font-style: italic; }

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: start;
  overflow: visible;
}

.about-story__image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--wp--preset--color--cream);
  border-radius: var(--wp--custom--radius--xl);
  max-width: 22rem;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
}

.about-story__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__text h2 {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 400;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--5);
}

.about-story__text p {
  font-size: var(--wp--preset--font-size--base);
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

.about-story__text p + p {
  margin-top: var(--wp--preset--spacing--4);
}

.pull-quote {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 300;
  font-style: italic;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--sage-deep);
  border-left: 3px solid var(--wp--preset--color--petrol);
  padding-left: var(--wp--preset--spacing--6);
  margin-block: var(--wp--preset--spacing--8);
}

@media (min-width: 48rem) {
  .about-story__inner {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
  }
  .about-story__inner > div:first-child,
  .about-story__col--sticky {
    position: sticky;
    top: calc(4rem + var(--wp--preset--spacing--8));
    align-self: start;
  }
}

.qualification__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--10);
  align-items: center;
}

.qualification__text h2 {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 400;
  line-height: var(--wp--custom--leading--snug);
  letter-spacing: var(--wp--custom--tracking--headline);
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--5);
}

.qualification__text p {
  font-size: var(--wp--preset--font-size--base);
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

.qualification__text p + p {
  margin-top: var(--wp--preset--spacing--4);
}

.qualification__cert-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wp--preset--spacing--3);
}

.qualification__cert-img {
  border: 2px solid var(--wp--preset--color--sage-pale);
  border-radius: var(--wp--custom--radius--md);
}

.qualification__cert-img--full {
  width: clamp(16rem, 28vw, 24rem);
  box-shadow: var(--wp--custom--shadow--card);
}

.qualification__cert-caption {
  font-size: var(--wp--preset--font-size--xs);
  font-weight: 300;
  color: var(--wp--preset--color--text-muted);
  text-align: center;
  max-width: 14rem;
}

@media (min-width: 48rem) {
  .qualification__inner { grid-template-columns: 1.5fr 1fr; }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--gap--cards);
}

.card-value {
  background: var(--wp--preset--color--cream);
  border-radius: var(--wp--custom--radius--lg);
  padding: var(--wp--preset--spacing--8);
}

.card-value__icon {
  width: 3rem;
  height: 3rem;
  color: var(--wp--preset--color--sage);
  margin-bottom: var(--wp--preset--spacing--4);
}

.card-value__title {
  font-family: var(--wp--preset--font-family--cormorant-garamond);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 600;
  color: var(--wp--preset--color--text-headline);
  margin-bottom: var(--wp--preset--spacing--3);
  line-height: var(--wp--custom--leading--snug);
}

.card-value__text {
  font-size: var(--wp--preset--font-size--base);
  line-height: var(--wp--custom--leading--relaxed);
  color: var(--wp--preset--color--text-body);
}

@media (min-width: 48rem) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   20. SCROLL-ANIMATIONEN
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   21. BARRIEREFREIHEIT
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus-visible {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: var(--wp--preset--spacing--3) var(--wp--preset--spacing--5);
  background: var(--wp--preset--color--text-headline);
  color: var(--wp--preset--color--text-on-dark);
  font-size: var(--wp--preset--font-size--base);
  font-weight: 500;
  border-radius: 0 0 var(--wp--custom--radius--md) 0;
  outline: 3px solid var(--wp--preset--color--sage-light);
  outline-offset: -3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--wp--preset--color--sage-deep);
  outline-offset: 3px;
  border-radius: var(--wp--custom--radius--sm);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--wp--preset--color--sage-deep);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   22. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   23. GUTENBERG EDITOR COMPATIBILITY
   ============================================================ */

/* Im Editor alle Scroll-Animationen deaktivieren – Inhalte sofort sichtbar */
.editor-styles-wrapper .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Hero-Scroll-Indikator im Editor ausblenden (nur Frontend) */
/* Scroll-Indikator + Blob im Editor ausblenden */
.editor-styles-wrapper .hero__scroll,
.editor-styles-wrapper .hero::after {
  display: none;
}

/* Hero Blob-Hintergrund im Editor sichtbar machen */
.editor-styles-wrapper .hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: var(--wp--preset--color--sage-mist);
  border-radius: 60% 40% 40% 60% / 50% 50% 60% 40%;
  opacity: 0.6;
  z-index: 0;
}
