/* =========================================================
   Ernährungsberatung Ahlen – Design-System "Frisch & Rund"
   ========================================================= */

/* ---------- Tokens ---------- */

:root {
  --cream: #f8f5ec;
  --cream-2: #f1ebdc;
  --paper: #ffffff;
  --ink: #17281f;
  --ink-soft: #4c6156;
  --ink-mute: #758779;

  --base: #123c2c;
  --base-dark: #0b2a1f;
  --base-2: #1c5240;
  --base-soft: #e4eee6;

  --accent: #f26b44;
  --accent-dark: #d9532c;
  --accent-soft: #fde6dd;

  --gruen: #6ea54c;
  --gruen-soft: #e9f2df;
  --zitrone: #f2c14e;
  --zitrone-soft: #fbf0d4;
  --minze: #57b9a4;
  --minze-soft: #ddf1ec;
  --beere: #9b6bb3;
  --beere-soft: #f0e6f5;
  --pflaume: #7a5c9e;
  --pflaume-soft: #ebe4f4;
  --koralle: #f26b44;
  --koralle-soft: #fde6dd;
  --wald: #3f7d5a;
  --wald-soft: #e0ede4;

  --radius: 14px;
  --radius-lg: 18px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 3px rgba(23, 40, 31, 0.06);
  --shadow: 0 10px 30px -18px rgba(23, 40, 31, 0.25);
  --shadow-lg: 0 20px 50px -30px rgba(23, 40, 31, 0.35);

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background-color: #f7f6f3;
  overflow-x: hidden;
}

body.nav-open,
body.cart-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--base-dark);
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section--alt {
  background: #ffffff;
  border-block: 1px solid rgba(23, 40, 31, 0.08);
}

.section--dark {
  background: var(--base-dark);
  color: #eaf2ec;
  border-radius: 16px;
  margin: 0 clamp(0.6rem, 2vw, 1.6rem);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p {
  color: rgba(234, 242, 236, 0.82);
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 0.6rem;
  position: relative;
}

.section-head__label::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  margin-bottom: 0.9rem;
}

.section-head__body p {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--ink-soft);
}

.section-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.mono-note {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--base);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--btn-fg);
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
  box-shadow: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -16px rgba(23, 40, 31, 0.5);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--accent {
  --btn-bg: var(--accent);
}

.btn--accent:hover {
  --btn-bg: var(--accent-dark);
}

.btn--light {
  --btn-bg: #ffffff;
  --btn-fg: var(--base-dark);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--base-dark);
  border: 2px solid rgba(23, 40, 31, 0.22);
  box-shadow: none;
}

.btn--outline:hover {
  border-color: var(--base);
  background: rgba(255, 255, 255, 0.6);
}

.btn--ghost {
  --btn-bg: var(--base-soft);
  --btn-fg: var(--base-dark);
  box-shadow: none;
}

.btn--sm {
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ---------- Topbar ---------- */

.topbar {
  background: var(--base-dark);
  color: rgba(234, 242, 236, 0.86);
  font-size: 0.84rem;
  position: relative;
  z-index: 60;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar__info a,
.topbar__info span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--zitrone);
}

.topbar__info a:hover {
  color: #fff;
}

.topbar__area {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: 0.75;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 40, 31, 0.1);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 12px 34px -22px rgba(23, 40, 31, 0.4);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

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

.brand__logo {
  width: 46px;
  height: 46px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--base-dark);
}

.brand__text small {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.header__main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__item > a,
.nav__parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s;
}

.nav__item > a:hover,
.nav__parent:hover {
  color: var(--base-dark);
  background: rgba(23, 40, 31, 0.05);
}

.nav a.is-active,
.nav__parent.is-active {
  color: var(--base-dark);
  background: var(--base-soft);
}

.nav__sub-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.nav__sub-toggle svg {
  width: 15px;
  height: 15px;
}

.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 0.7rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav__item--has-children:hover .nav__sub,
.nav__item--has-children.is-open .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__sub--mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  min-width: 560px;
  gap: 0.2rem;
}

.nav__mega-item a {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  transition: background 0.2s;
}

.nav__mega-item a:hover {
  background: var(--cream);
}

.nav__mega-icon {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--base-soft);
  color: var(--base);
}

.nav__mega-icon svg {
  width: 21px;
  height: 21px;
}

.nav__mega-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__mega-body strong {
  font-size: 0.92rem;
  color: var(--base-dark);
}

.nav__mega-body small {
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

.nav__mega-cta {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--base-dark), var(--base-2));
  color: #eaf2ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav__mega-cta-text {
  display: flex;
  flex-direction: column;
}

.nav__mega-cta-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
}

.nav__mega-cta-text small {
  opacity: 0.75;
  font-size: 0.8rem;
}

.nav__mega-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mega-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.mega-phone svg {
  width: 16px;
  height: 16px;
  color: var(--zitrone);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--base-dark);
}

.header__phone svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
}

.header__phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone small {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.header__phone strong {
  font-size: 0.92rem;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(23, 40, 31, 0.16);
  background: var(--paper);
  color: var(--base-dark);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.2s;
}

.cart-button:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.cart-button svg {
  width: 21px;
  height: 21px;
}

.cart-button__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -3px rgba(217, 83, 44, 0.7);
  transition: transform 0.25s var(--ease);
}

.cart-button__count.is-bump {
  transform: scale(1.25);
}

.cart-button__count[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(23, 40, 31, 0.14);
  background: var(--paper);
  cursor: pointer;
  padding: 0 12px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 3px;
  background: var(--base-dark);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
}

.hero__blob {
  display: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(23, 40, 31, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 1.4rem;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gruen);
  box-shadow: 0 0 0 4px var(--gruen-soft);
}

.hero__title {
  margin-bottom: 1.3rem;
}

.hero__rotator {
  display: inline-block;
  color: var(--accent-dark);
  font-style: italic;
  white-space: nowrap;
  background-image: linear-gradient(90deg, var(--zitrone), rgba(242, 193, 78, 0));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.18em;
}

.hero__rotator.is-switching {
  animation: word-swap 0.5s var(--ease);
}

@keyframes word-swap {
  0% {
    opacity: 0;
    transform: translateY(14px) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.hero__text {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 1.9rem;
}

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

.hero__ticks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero__ticks svg {
  width: 19px;
  height: 19px;
  flex: none;
  color: #fff;
  background: var(--gruen);
  border-radius: 6px;
  padding: 3px;
}

.hero__tagline {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__visual {
  position: relative;
}

.hero__plate {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(23, 40, 31, 0.12);
  background: #ffffff;
}

.hero__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  color: var(--base-dark);
  border: 1px solid rgba(23, 40, 31, 0.14);
  border-radius: 10px;
  padding: 0.6rem 0.95rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.hero__badge small {
  color: var(--ink-mute);
}

.hero__badge strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.hero__badge small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__card {
  display: none;
}

.hero__card svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  flex: none;
}

.hero__card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.hero__card small {
  color: var(--ink-mute);
  font-size: 0.78rem;
}

.hero__sticker {
  display: none;
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  background: var(--base-dark);
  color: #eaf2ec;
  padding: 0.85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: 1.5rem;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-run 38s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
}

.ticker__group span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  white-space: nowrap;
}

.ticker__group span::after {
  content: "✺";
  color: var(--zitrone);
  font-style: normal;
  font-size: 0.9rem;
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Fakten ---------- */

.facts {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.facts__item {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.facts__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.facts__item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.facts__item span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ---------- Karten (Leistungen) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(23, 40, 31, 0.16);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--base-soft);
  color: var(--base);
}

.card__icon svg {
  width: 30px;
  height: 30px;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.card__body p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  flex: 1;
}

.card__price {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--zitrone-soft);
  color: #6b4c08;
  font-size: 0.8rem;
  font-weight: 800;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-dark);
  margin-top: 0.3rem;
}

.card__link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* ---------- Akkordeon ---------- */

.accordion {
  display: grid;
  gap: 0.8rem;
}

.acc {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.2s;
}

.acc[open] {
  box-shadow: var(--shadow);
  border-color: rgba(242, 107, 68, 0.35);
}

.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--base-dark);
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc__num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 2ch;
}

.acc__title {
  flex: 1;
}

.acc__icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--base-soft);
  transition: background 0.25s, transform 0.35s var(--ease);
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--base);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.25s;
}

.acc__icon::before {
  width: 11px;
  height: 2px;
}

.acc__icon::after {
  width: 2px;
  height: 11px;
}

.acc[open] .acc__icon {
  background: var(--accent);
  transform: rotate(90deg);
}

.acc[open] .acc__icon::before,
.acc[open] .acc__icon::after {
  background: #fff;
}

.acc[open] .acc__icon::after {
  transform: scaleY(0);
}

.acc__body {
  padding: 0 1.3rem 1.35rem 3.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: grid;
  gap: 0.8rem;
}

/* ---------- Ablauf-Schritte ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem;
  transition: transform 0.35s var(--ease), background 0.3s;
}

.step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--zitrone);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
}

/* ---------- Vorteile ---------- */

.usps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
}

.usp {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.usp:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.usp__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gruen-soft);
  color: var(--gruen);
  display: grid;
  place-items: center;
}

.usp__icon svg {
  width: 22px;
  height: 22px;
}

.usp__body h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.usp__body p {
  font-size: 0.89rem;
}

/* ---------- Über mich ---------- */

.about__media {
  position: relative;
}

.about__media img {
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
  width: 100%;
}

.about__media::after {
  content: "✺";
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--zitrone);
  color: #4a3607;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
  transform: rotate(10deg);
}

.about__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}

.about__content h2 {
  margin-bottom: 1.1rem;
}

.about__content p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.about__actions {
  margin-top: 1.4rem;
}

.checklist {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gruen-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ea54c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- Stimmen ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.testimonial {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-soft);
}

.testimonial__stars {
  color: var(--zitrone);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--base-dark);
  font-style: italic;
}

.testimonial__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.testimonial__who strong {
  color: var(--base-dark);
}

.testimonial__who span {
  color: var(--ink-mute);
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--base-2), var(--gruen));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex: none;
}

/* ---------- Newsletter ---------- */

.newsletter {
  border-radius: 16px;
  background: var(--base-dark);
  color: #eaf2ec;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.newsletter h2 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.newsletter p {
  color: rgba(234, 242, 236, 0.8);
  font-size: 0.95rem;
}

.newsletter__form {
  display: grid;
  gap: 0.8rem;
}

.newsletter__row {
  display: flex;
  gap: 0.6rem;
}

.newsletter__row input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletter__row input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter__note {
  font-size: 0.74rem;
  color: rgba(234, 242, 236, 0.62);
  line-height: 1.5;
}

.newsletter__check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(234, 242, 236, 0.86);
}

.newsletter__check input {
  margin-top: 0.25rem;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--base-dark);
  color: #eaf2ec;
  text-align: center;
  padding: clamp(2.8rem, 6vw, 4.6rem) clamp(1.5rem, 4vw, 4rem);
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  color: #fff;
  max-width: 22ch;
  margin-inline: auto;
}

.cta p {
  max-width: 56ch;
  margin: 1rem auto 1.8rem;
  color: rgba(234, 242, 236, 0.82);
}

.cta .btn-row {
  justify-content: center;
}

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.2rem, 4vw, 3.2rem);
  overflow: hidden;
}

.page-hero__inner {
  max-width: 780px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
  list-style: none;
  padding: 0;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 62ch;
}

/* ---------- Leistungsseite ---------- */

.service-nav {
  position: sticky;
  top: 102px;
  z-index: 40;
  background: rgba(248, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  border-block: 1px solid rgba(23, 40, 31, 0.08);
  padding: 0.6rem 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.service-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-nav ul::-webkit-scrollbar {
  display: none;
}

.service-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.service-nav a:hover {
  background: rgba(23, 40, 31, 0.06);
  color: var(--base-dark);
}

.service-nav a.is-active {
  background: var(--base-dark);
  color: #fff;
}

.service-nav__num {
  font-size: 0.72rem;
  opacity: 0.6;
}

.service-block {
  scroll-margin-top: 150px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.service-block__head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.service-block__icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--base-soft);
  color: var(--base);
  display: grid;
  place-items: center;
  flex: none;
}

.service-block__icon svg {
  width: 32px;
  height: 32px;
}

.service-block__num {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.service-block__body {
  display: grid;
  gap: 0.9rem;
  color: var(--ink-soft);
}

.service-block .checklist {
  margin-top: 0;
}

.service-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-top: 0.4rem;
}

.service-block__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.service-block__cta:hover svg {
  transform: translateX(4px);
}

/* ---------- Termine ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.filter-chip {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(23, 40, 31, 0.16);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover {
  border-color: var(--base);
  color: var(--base-dark);
}

.filter-chip.is-active {
  background: var(--base-dark);
  border-color: var(--base-dark);
  color: #fff;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.course-card {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.course-card.is-past {
  opacity: 0.55;
}

.course-card__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--type {
  background: var(--base-soft);
  color: var(--base);
}

.badge--hot {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.badge--new {
  background: var(--zitrone-soft);
  color: #6b4c08;
}

.badge--online {
  background: var(--minze-soft);
  color: #20695c;
}

.course-card h3 {
  font-size: 1.24rem;
}

.course-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--ink-soft);
}

.course-card__meta li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.course-card__meta svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 0.2rem;
  color: var(--accent);
}

.course-card__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex: 1;
}

.course-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px dashed rgba(23, 40, 31, 0.15);
  padding-top: 1rem;
}

.course-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--base-dark);
}

.course-card__spots {
  font-size: 0.8rem;
  color: var(--ink-mute);
}

.course-card__spots b {
  color: var(--accent-dark);
}

.spots-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--cream-2);
  overflow: hidden;
}

.spots-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gruen), var(--zitrone));
}

/* ---------- Shop ---------- */

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.shop-toolbar__count {
  font-size: 0.88rem;
  color: var(--ink-mute);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.product-card {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.product-card__cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}

.product-card__cover svg,
.product-detail__cover svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__cover svg {
  transform: scale(1.05);
}

.product-card__badge,
.product-detail__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.product-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.product-card__cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.product-card h3 {
  font-size: 1.16rem;
}

.product-card__sub {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

.product-card__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex: 1;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--base-dark);
  line-height: 1;
}

.price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-mute);
  margin-left: 0.15rem;
}

.price--old {
  font-size: 1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  font-family: var(--font-body);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.product-card__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(23, 40, 31, 0.16);
  background: var(--paper);
  color: var(--base-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex: none;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.product-card .btn {
  flex: 1;
}

.shop-note {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  border-radius: 18px;
  background: var(--zitrone-soft);
  border: 1px solid rgba(242, 193, 78, 0.5);
  font-size: 0.86rem;
  color: #6b4c08;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.shop-note svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 0.1rem;
}

.shop-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-mute);
  grid-column: 1 / -1;
}

/* Produktdetail */

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.product-detail__cover {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
}

.product-detail__info {
  display: grid;
  gap: 1rem;
}

.product-detail__cat {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.product-detail__text {
  color: var(--ink-soft);
}

.product-detail__bullets {
  margin-top: 0;
}

.delivery-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--minze-soft);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
}

.delivery-note svg {
  width: 18px;
  height: 18px;
  color: #20695c;
  flex: none;
  margin-top: 0.15rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 40, 31, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}

.qty__btn {
  width: 42px;
  height: 46px;
  border: 0;
  background: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--base-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.qty__btn:hover {
  background: var(--cream);
}

.qty__input {
  width: 46px;
  border: 0;
  text-align: center;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--base-dark);
  background: none;
  -moz-appearance: textfield;
}

.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-detail__buy {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.product-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.product-fact {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.09);
  border-radius: 16px;
  padding: 0.85rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.product-fact strong {
  display: block;
  color: var(--base-dark);
  font-size: 0.86rem;
  margin-bottom: 0.1rem;
}

/* ---------- Warenkorb ---------- */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 42, 31, 0.5);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(3px);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(460px, 100%);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: none;
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(23, 40, 31, 0.1);
  background: var(--paper);
}

.cart-drawer__head h2 {
  font-size: 1.3rem;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(23, 40, 31, 0.14);
  background: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s;
}

.cart-close:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: rotate(90deg);
}

.cart-close svg {
  width: 18px;
  height: 18px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.cart-line {
  display: flex;
  gap: 0.9rem;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.1);
  border-radius: 12px;
  padding: 0.8rem;
}

.cart-line__cover {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
}

.cart-line__cover svg {
  width: 100%;
  height: 100%;
}

.cart-line__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.cart-line__info strong {
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--base-dark);
}

.cart-line__meta {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.cart-line__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.cart-line__remove {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-mute);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
}

.cart-line__remove:hover {
  color: var(--accent-dark);
}

.cart-line .qty {
  transform: scale(0.88);
  transform-origin: left center;
}

.cart-summary {
  border-top: 1px solid rgba(23, 40, 31, 0.1);
  background: var(--paper);
  padding: 1.2rem 1.4rem 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cart-summary__row--total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--base-dark);
  border-top: 1px dashed rgba(23, 40, 31, 0.18);
  padding-top: 0.7rem;
  font-family: var(--font-display);
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-mute);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.cart-empty svg {
  width: 54px;
  height: 54px;
  color: var(--cream-2);
}

/* Warenkorb-Seite */

.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.cart-page__list {
  display: grid;
  gap: 0.9rem;
}

.cart-page .cart-line {
  padding: 1rem;
}

.cart-page .cart-line__cover {
  width: 96px;
  height: 96px;
}

.cart-page__aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1rem;
}

.panel {
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.09);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.panel h2,
.panel h3 {
  font-size: 1.25rem;
}

/* ---------- Formulare ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--base-dark);
}

.field label .req {
  color: var(--accent);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(23, 40, 31, 0.18);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field .is-error,
.field input.is-error,
.field textarea.is-error,
.field select.is-error {
  border-color: #d84545;
  box-shadow: 0 0 0 4px rgba(216, 69, 69, 0.12);
}

.field__hint {
  font-size: 0.76rem;
  color: var(--ink-mute);
}

.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex: none;
}

.checkbox.is-error {
  color: #b23232;
}

.form-status {
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: var(--gruen-soft);
  color: #2f6b23;
  border: 1px solid rgba(110, 165, 76, 0.4);
}

.form-status.is-error {
  background: #fdeaea;
  color: #a72b2b;
  border: 1px solid rgba(216, 69, 69, 0.35);
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.info-panel {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.1);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  transition: border-color 0.25s;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--base-soft);
  color: var(--base);
  display: grid;
  place-items: center;
  flex: none;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contact-item a:hover {
  color: var(--accent-dark);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
  background: var(--minze-soft);
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  padding: 2rem;
  background:
    radial-gradient(24rem 16rem at 30% 20%, rgba(87, 185, 164, 0.25), transparent 60%),
    var(--minze-soft);
}

.map-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--minze);
}

/* ---------- Rechtsseiten ---------- */

.legal {
  max-width: 860px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3.4rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.1rem;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cream-2);
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.12rem;
  margin-top: 0.6rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal ul {
  margin: 0.2rem 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.35rem;
}

.legal a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__note {
  background: var(--zitrone-soft);
  border: 1px solid rgba(242, 193, 78, 0.5);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: #6b4c08;
}

.legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.legal__toc a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(23, 40, 31, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
}

.legal__toc a:hover {
  background: var(--base-soft);
  color: var(--base-dark);
}

/* ---------- Footer ---------- */

.footer {
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--base-dark);
  color: rgba(234, 242, 236, 0.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  border-radius: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem) 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 165, 76, 0.22), transparent 65%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  position: relative;
}

.footer__logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer__claim {
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer__tagline {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zitrone);
}

.footer__col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer__col a:hover {
  color: var(--zitrone);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  position: relative;
}

.footer__legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer__legal a:hover {
  color: var(--zitrone);
}

/* ---------- To-Top & Toast ---------- */

.to-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--base-dark);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  z-index: 90;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.to-top svg {
  width: 21px;
  height: 21px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translate(-50%, 2rem);
  background: var(--base-dark);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: min(90vw, 460px);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--zitrone);
  flex: none;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hilfsklassen ---------- */

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.hidden {
  display: none !important;
}

.seo-text {
  max-width: 76ch;
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips span {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(23, 40, 31, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.25s;
}

.chips span:hover {
  background: var(--base-soft);
  color: var(--base-dark);
  transform: translateY(-2px);
}

.geo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.geo__chips-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.8rem;
}

.geo__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .services-grid,
  .course-grid,
  .shop-grid,
  .usps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 92vw);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 6rem 1.6rem 2rem;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 65;
  }

  .nav.is-open {
    transform: none;
  }

  .nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav__item > a,
  .nav__parent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .nav__item--has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav__item--has-children > a,
  .nav__item--has-children > .nav__parent {
    flex: 1;
  }

  .nav__sub-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
  }

  .nav__sub-toggle svg {
    transition: transform 0.3s var(--ease);
  }

  .nav__item.is-open .nav__sub-toggle svg {
    transform: rotate(180deg);
  }

  .nav__sub,
  .nav__sub--mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    padding: 0.2rem 0 0.6rem;
    transition: none;
  }

  .nav__item.is-open .nav__sub,
  .nav__item.is-open .nav__sub--mega {
    display: grid;
  }

  .nav__item--has-children:hover .nav__sub,
  .nav__item--has-children:hover .nav__sub--mega {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__mega-cta {
    margin-top: 0.6rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header__phone {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .grid-2,
  .about__content,
  .newsletter,
  .contact-grid,
  .geo,
  .product-detail,
  .cart-page {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .about__media {
    max-width: 460px;
    margin-inline: auto;
  }

  .cart-page__aside {
    position: static;
  }

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

  .product-detail__cover {
    max-width: 520px;
  }

  .topbar__area {
    display: none;
  }

  .service-nav {
    top: 92px;
  }
}

/* ---------- Persönliches Zitat ---------- */

.section--dark .personal-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  max-width: 36ch;
  margin-inline: auto;
}

.personal-sign {
  display: block;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zitrone);
}

/* ---------- Echte Bilder (Umbau auf Original-Inhalte) ---------- */

.brand__logo {
  width: auto;
  height: 71px;
}

.brand__text {
  display: none;
}

.footer__logo {
  width: 190px;
  height: auto;
}

.hero__plate {
  border-radius: 14px;
  border: 1px solid rgba(23, 40, 31, 0.12);
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__plate img {
  width: 100%;
  height: auto;
  display: block;
}

.about__media img {
  border-radius: 14px;
  border: 1px solid rgba(23, 40, 31, 0.12);
  object-fit: cover;
}

.about__media::after {
  display: none;
}

.product-card__cover img,
.product-detail__cover img,
.cart-line__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 9%;
  display: block;
}

.product-detail__cover img {
  padding: 14%;
}

.cart-line__cover img {
  padding: 6%;
}

.product-detail__cover {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(23, 40, 31, 0.1);
  display: block;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Bewegung & Polish ---------- */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes plate-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__eyebrow,
.hero__title,
.hero__text,
.hero .btn-row,
.hero__ticks,
.hero__tagline {
  animation: rise-in 0.75s var(--ease) both;
}

.hero__eyebrow {
  animation-delay: 0.05s;
}

.hero__title {
  animation-delay: 0.14s;
}

.hero__text {
  animation-delay: 0.24s;
}

.hero .btn-row {
  animation-delay: 0.32s;
}

.hero__ticks {
  animation-delay: 0.4s;
}

.hero__tagline {
  animation-delay: 0.48s;
}

.hero__plate {
  animation: plate-in 0.9s var(--ease) 0.18s both;
}

.hero__badge {
  animation: rise-in 0.7s var(--ease) 0.55s both;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 120;
  transition: width 0.08s linear;
}

.nav__item > a {
  position: relative;
}

.nav__item > a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__item > a:hover::after,
.nav__item > a.is-active::after {
  transform: scaleX(1);
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(23, 40, 31, 0.1);
}

.gallery-item img {
  border: 0;
  border-radius: 0;
  transition: transform 0.7s var(--ease);
}

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

.hero__caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.course-card__price {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ---------- Hero: eine Fläche, ein Guss ---------- */

.hero {
  background: var(--base-dark);
  color: #eaf2ec;
  padding: clamp(3rem, 7vw, 6rem) 0 0;
}

.hero__grid {
  align-items: end;
}

.hero__content {
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero__eyebrow {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--zitrone);
  letter-spacing: 0.14em;
}

.hero__eyebrow::before {
  background: var(--accent);
  box-shadow: none;
}

.hero__title {
  color: #ffffff;
  max-width: 22ch;
}

.hero__text {
  color: rgba(234, 242, 236, 0.82);
}

.hero__ticks li {
  color: rgba(234, 242, 236, 0.9);
}

.hero__ticks svg {
  color: var(--zitrone);
}

.hero__tagline {
  color: rgba(234, 242, 236, 0.55);
}

.hero .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.hero__visual {
  align-self: end;
}

.hero__photo {
  width: 100%;
  max-width: 470px;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.45));
}

.hero__caption {
  text-align: center;
  color: rgba(234, 242, 236, 0.5);
}

.hero__plate,
.hero__badge,
.hero__card {
  display: none;
}

.page-hero {
  background: var(--base-dark);
  color: #eaf2ec;
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  color: rgba(234, 242, 236, 0.8);
}

.page-hero .breadcrumbs {
  color: rgba(234, 242, 236, 0.6);
}

.page-hero .breadcrumbs a:hover {
  color: #ffffff;
}

/* ---------- Speisekarte & Handschrift ---------- */

.hand-note {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--accent-dark);
  transform: rotate(-2deg);
  margin-top: 0.3rem;
}

.menu-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(23, 40, 31, 0.14);
}

.menu-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(1.5rem, auto) auto;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.15rem 0.2rem 1.05rem;
  border-bottom: 1px solid rgba(23, 40, 31, 0.12);
  transition: background 0.25s var(--ease);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.65);
}

.menu-num {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}

.menu-title {
  min-width: 0;
}

.menu-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--base-dark);
  transition: color 0.2s;
}

.menu-title small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-mute);
}

.menu-item:hover .menu-title strong {
  color: var(--accent-dark);
}

.menu-dots {
  border-bottom: 1.5px dotted rgba(23, 40, 31, 0.28);
  transform: translateY(-0.22rem);
  min-width: 1.5rem;
}

.menu-note {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .menu-card {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .menu-title small {
    white-space: normal;
  }
}

/* ---------- Feinschliff: weniger Template-Optik ---------- */

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.section--dark {
  border-radius: 0;
  margin: 0;
}

.footer {
  border-radius: 0;
}

.section-head {
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.section-head__label {
  display: none;
}

.section-head__body p {
  margin-top: 0.7rem;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.6rem;
}

.services-grid .card {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(23, 40, 31, 0.14);
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 0 1.4rem;
  gap: 0.6rem;
}

.services-grid .card:hover {
  transform: none;
  box-shadow: none;
}

.services-grid .card__icon {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--accent-dark);
}

.services-grid .card__icon svg {
  width: 26px;
  height: 26px;
}

.services-grid .card h3 {
  font-size: 1.14rem;
}

.card__price {
  background: transparent;
  padding: 0;
  color: var(--accent-dark);
}

.card__link {
  margin-top: 0.2rem;
  font-weight: 600;
}

.usp {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(23, 40, 31, 0.14);
  border-radius: 0;
  padding: 1.4rem 0 1.2rem;
}

.usp:hover {
  transform: none;
  box-shadow: none;
}

.usp__icon,
.contact-item__icon,
.service-block__icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: var(--accent-dark);
}

.usp__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item {
  border: 0;
  border-top: 1px solid rgba(23, 40, 31, 0.14);
  border-radius: 0;
  padding: 1.1rem 0;
  background: transparent;
}

.contact-item:hover {
  transform: none;
}

.hero__ticks svg {
  background: transparent;
  color: var(--gruen);
  width: 18px;
  height: 18px;
  padding: 0;
}

.course-card,
.product-card {
  box-shadow: none;
}

.course-card:hover,
.product-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(23, 40, 31, 0.22);
}

.product-card:hover .product-card__cover svg,
.product-card:hover .product-card__cover img {
  transform: none;
}

.cta {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid rgba(23, 40, 31, 0.14);
  padding: clamp(2rem, 5vw, 3.4rem) 0 0.5rem;
  text-align: left;
}

.cta h2 {
  color: var(--base-dark);
  margin-inline: 0;
  max-width: 26ch;
}

.cta p {
  color: var(--ink-soft);
  margin: 0.9rem 0 1.6rem;
  margin-inline: 0;
}

.cta .btn-row {
  justify-content: flex-start;
}

.cta .btn--light {
  background: transparent;
  color: var(--base-dark);
  border: 1px solid rgba(23, 40, 31, 0.22);
}

.cta .btn--light:hover {
  background: #fff;
}

.newsletter {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(23, 40, 31, 0.12);
  border-radius: 14px;
  box-shadow: none;
}

.newsletter h2 {
  color: var(--base-dark);
}

.newsletter p {
  color: var(--ink-soft);
}

.newsletter__row input {
  background: #fff;
  border: 1px solid rgba(23, 40, 31, 0.18);
  color: var(--ink);
}

.newsletter__row input::placeholder {
  color: var(--ink-mute);
}

.newsletter__check {
  color: var(--ink-soft);
}

.newsletter__note {
  color: var(--ink-mute);
}

.usp__body h3,
.section--dark .usp__body h3 {
  font-size: 1.05rem;
}

/* ---------- Responsive ---------- */

/* ---------- Logo-Palette & heller Auftritt ---------- */

:root {
  --base: #3f8134;
  --base-dark: #24501c;
  --base-2: #4f9440;
  --base-soft: #eef4e6;
  --accent: #3f8134;
  --accent-dark: #2f6526;
  --accent-soft: #eaf2e0;
  --gruen: #78a848;
  --gruen-soft: #eef4e6;
  --zitrone: #a8c090;
  --zitrone-soft: #f1f6e8;
  --minze: #78a848;
  --minze-soft: #eef4e6;
  --koralle: #3f8134;
  --koralle-soft: #eaf2e0;
  --wald: #3f8134;
  --wald-soft: #eef4e6;
  --ink: #1e2419;
  --ink-soft: #4f5a47;
  --ink-mute: #7c8574;
  --cream: #f7f8f3;
}

body {
  background-color: #f7f8f3;
}

.topbar {
  background: var(--base);
  color: #ffffff;
}

.topbar__info a,
.topbar__info span {
  color: rgba(255, 255, 255, 0.92);
}

.topbar svg {
  color: #dcead1;
}

.topbar__info a:hover {
  color: #ffffff;
}

.topbar__area {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.header__bar {
  padding-block: 0.55rem;
}

.header__main {
  flex: 1;
  justify-content: flex-end;
  gap: 1.1rem;
}

.nav > ul {
  gap: 0.2rem;
}

.nav__item > a,
.nav__parent {
  padding: 0.5rem 0.7rem;
  color: var(--ink-soft);
}

.nav a.is-active,
.nav__parent.is-active {
  background: transparent;
  color: var(--base-dark);
}

.nav__item > a::after {
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.05rem;
  height: 2px;
  background: var(--base);
}

.header__cta {
  background: var(--base);
}

.header__cta:hover {
  background: var(--base-dark);
}

.cart-button {
  border-color: rgba(63, 129, 52, 0.25);
}

.cart-button:hover {
  border-color: var(--base);
}

.hero {
  background: #f3f7ee;
  color: var(--ink);
  padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(2.6rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%233f8134' stroke-width='1.1' opacity='0.16'%3E%3Cpath d='M24 168C24 116 62 76 116 70c6 54-24 92-78 96-6 0-10-1-14 2z'/%3E%3Cpath d='M36 172c38-40 66-70 78-96'/%3E%3Cpath d='M150 148c-2-26 6-44 22-56'/%3E%3Cpath d='M158 96c10-4 18-12 22-22'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero__content {
  padding-bottom: 0;
}

.hero__eyebrow {
  color: var(--base-dark);
}

.hero__eyebrow::before {
  background: var(--base);
}

.hero__title {
  color: #1f3a17;
  max-width: 24ch;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.hero__text {
  color: var(--ink-soft);
}

.hero__ticks li {
  color: var(--ink-soft);
}

.hero__ticks svg {
  color: var(--base);
}

.hero__tagline {
  color: var(--ink-mute);
}

.hero .btn--outline {
  color: var(--base-dark);
  border-color: rgba(63, 129, 52, 0.35);
}

.hero .btn--outline:hover {
  background: rgba(63, 129, 52, 0.08);
  border-color: var(--base);
}

.hero__visual {
  position: relative;
  align-self: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(96%, 450px);
  height: 84%;
  transform: translateX(-50%);
  background: #dcead1;
  border-radius: 48% 52% 44% 56% / 58% 58% 42% 42%;
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(96%, 450px);
  height: 84%;
  transform: translateX(-50%) rotate(-4deg);
  border: 1.5px dashed #a8c090;
  border-radius: 52% 48% 56% 44% / 44% 46% 54% 56%;
}

.hero + .section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.hero__photo {
  position: relative;
  z-index: 1;
  max-width: 420px;
  filter: drop-shadow(0 16px 26px rgba(36, 80, 28, 0.18));
}

.hero__caption {
  position: relative;
  z-index: 1;
  color: var(--ink-mute);
  text-align: center;
}

.page-hero {
  background: #f3f7ee;
  color: var(--ink);
}

.page-hero h1 {
  color: #1f3a17;
}

.page-hero p {
  color: var(--ink-soft);
}

.page-hero .breadcrumbs {
  color: var(--ink-mute);
}

.page-hero .breadcrumbs a:hover {
  color: var(--base-dark);
}

.section--dark {
  background: var(--base);
}

.section--dark .personal-sign {
  color: #e7f2d9;
}

.service-nav {
  background: rgba(247, 248, 243, 0.96);
  border-block: 1px solid rgba(63, 129, 52, 0.18);
}

.service-nav a {
  color: var(--ink-soft);
}

.service-nav a:hover {
  background: rgba(63, 129, 52, 0.08);
  color: var(--base-dark);
}

.service-nav a.is-active {
  background: var(--base);
  color: #ffffff;
}

.service-block {
  border: 1px solid rgba(63, 129, 52, 0.2);
  border-left: 3px solid var(--base);
  box-shadow: none;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.service-block__num {
  color: var(--base);
}

.service-block__icon {
  color: var(--base);
}

.service-block__cta {
  color: var(--base-dark);
}

.checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f8134' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.btn--accent {
  --btn-bg: var(--base);
}

.btn--accent:hover {
  --btn-bg: var(--base-dark);
}

.hand-note {
  color: var(--base-dark);
}

.footer {
  background: #24501c;
}

.footer__tagline {
  color: #cfe3c0;
}

.to-top {
  background: var(--base);
}

.to-top:hover {
  background: var(--base-dark);
}

.cart-drawer__head h2 {
  color: var(--base-dark);
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
  }

  .container {
    width: min(1200px, 100% - 1.6rem);
  }

  .services-grid,
  .course-grid,
  .shop-grid,
  .usps,
  .steps,
  .facts__grid,
  .product-detail__facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero__card {
    left: 0.4rem;
    bottom: -1rem;
    max-width: 220px;
  }

  .hero__sticker {
    width: 90px;
    height: 90px;
    right: 0;
  }

  .ticker__group span {
    font-size: 1rem;
  }

  .newsletter__row {
    flex-direction: column;
  }

  .cart-drawer__panel {
    width: 100%;
  }

  .to-top {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .section--dark {
    border-radius: 24px;
  }
}

/* ---------- Hero: editorial/modern ---------- */

.hero {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5.6rem) 0 clamp(2.8rem, 5.5vw, 4.6rem);
}

.hero .container {
  width: min(1340px, 100% - 2.5rem);
}

.hero::before {
  display: none;
}

.hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 4vw, 3.6rem);
}

.hero__content {
  padding-bottom: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--base-dark);
  letter-spacing: 0.16em;
  font-size: 0.84rem;
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 0;
  background: var(--base);
  box-shadow: none;
}

.hero__title {
  color: #1f3a17;
  font-weight: 800;
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: 1.2rem;
}

.hero__text {
  max-width: 42ch;
  font-size: 1.15rem;
}

.hero__tagline {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__visual {
  position: relative;
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

.hero__photo-card {
  border-radius: 18px;
  border: 1px solid rgba(63, 129, 52, 0.2);
  background: #eef4e6;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 588px;
  margin: 0 auto;
  display: block;
  filter: none;
}

.hero__caption {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  text-align: left;
  color: var(--ink-mute);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  list-style: none;
  margin: clamp(2.2rem, 4vw, 3.4rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(63, 129, 52, 0.22);
}

.hero__facts li {
  padding-top: 1.1rem;
}

.hero__facts span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--base);
  margin-bottom: 0.45rem;
}

.hero__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #1f3a17;
  letter-spacing: -0.01em;
}

.hero__facts small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.94rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(63, 129, 52, 0.16);
}

@media (max-width: 900px) {
  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__facts li {
    border-bottom: 1px solid rgba(63, 129, 52, 0.14);
    padding: 0.9rem 0;
  }

  .hero__facts li:last-child {
    border-bottom: 0;
  }

  .hero__caption {
    text-align: center;
  }
}

/* ---------- Mega-Menü (Desktop) ---------- */

@media (min-width: 1081px) {
  .nav__sub {
    left: auto;
    right: 0;
    transform: translateY(8px);
    min-width: 0;
  }

  .nav__sub--mega {
    width: 460px;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem;
    padding: 0.6rem;
  }

  .nav__item--has-children:hover .nav__sub,
  .nav__item--has-children.is-open .nav__sub {
    transform: translateY(0);
  }

  .nav__mega-item a {
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.55rem;
    border-radius: 9px;
  }

  .nav__mega-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .nav__mega-icon svg {
    width: 17px;
    height: 17px;
  }

  .nav__mega-body strong {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .nav__mega-cta {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }
}

/* ---------- Hero: links/rechts integriert + Topbar-Detail ---------- */

.topbar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.13'%3E%3Cpath d='M24 168C24 116 62 76 116 70c6 54-24 92-78 96-6 0-10-1-14 2z'/%3E%3Cpath d='M36 172c38-40 66-70 78-96'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.topbar__inner {
  min-height: 44px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.topbar__tagline {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  line-height: 1;
  color: #dcead1;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.topbar__leaf {
  width: 17px;
  height: 17px;
  color: #a8c090;
  animation: leaf-sway 5.5s ease-in-out infinite;
}

@keyframes leaf-sway {
  0%,
  100% {
    transform: rotate(-9deg);
  }
  50% {
    transform: rotate(9deg);
  }
}

.topbar__area {
  color: rgba(255, 255, 255, 0.78);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.hero__visual {
  position: relative;
  padding-top: 1.2rem;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -100vmax;
  bottom: -1.6rem;
  left: -2.2rem;
  right: -100vmax;
  background: #eef4e6;
}

.hero__photo-card {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.hero__photo {
  max-width: 560px;
}

.hero__caption {
  position: relative;
  z-index: 1;
  text-align: right;
  color: #5f6b54;
}

@media (max-width: 900px) {
  .hero__visual::before {
    left: -100vmax;
  }

  .hero__caption {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .topbar__tagline,
  .topbar__leaf {
    display: none;
  }
}

/* ---------- Hero: Feinjustierung ---------- */

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

.hero__title {
  max-width: 23ch;
}

.hero__visual::before {
  background-color: #e8f1da;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%233f8134' stroke-width='1.1' opacity='0.14'%3E%3Cpath d='M24 168C24 116 62 76 116 70c6 54-24 92-78 96-6 0-10-1-14 2z'/%3E%3Cpath d='M36 172c38-40 66-70 78-96'/%3E%3Cpath d='M150 148c-2-26 6-44 22-56'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero__visual::before {
  display: block;
}

.hero__visual::after {
  display: none;
}

/* ---------- Hero: Links/rechts-Fläche ---------- */

.hero {
  position: relative;
  background: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  background-color: #e8f1da;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%233f8134' stroke-width='1.1' opacity='0.14'%3E%3Cpath d='M24 168C24 116 62 76 116 70c6 54-24 92-78 96-6 0-10-1-14 2z'/%3E%3Cpath d='M36 172c38-40 66-70 78-96'/%3E%3Cpath d='M150 148c-2-26 6-44 22-56'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

@media (max-width: 900px) {
  .hero::after {
    display: none;
  }

  .hero__photo-card {
    background: #e8f1da;
    border-radius: 14px;
  }
}

/* ---------- Rückgängig: Hero wieder wie vorher (Karten-Version) ---------- */

.hero::after {
  display: none;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.hero__title {
  max-width: 20ch;
}

.hero__visual {
  padding-top: 0;
}

.hero__photo-card {
  border: 1px solid rgba(63, 129, 52, 0.2);
  background: #eef4e6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo {
  max-width: 588px;
}

.hero__caption {
  text-align: left;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .hero__photo-card {
    border-radius: 14px;
  }
}

/* ---------- Über mich: Text links, Bild rechts ---------- */

@media (max-width: 900px) {
  .about__media {
    order: -1;
  }
}

/* ---------- Info-Karten: drei in einer Reihe ---------- */

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 2.2rem;
}

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

/* ================= MOBILE ANSICHT (modern) ================= */

.mobile-bar {
  display: none;
}

@media (max-width: 900px) {
  /* Grundlayout */
  body {
    font-size: 16px;
    padding-bottom: 84px;
  }

  .container,
  .hero .container {
    width: min(1340px, 100% - 1.8rem);
  }

  .section {
    padding: 2.6rem 0;
  }

  .section--dark {
    border-radius: 0;
  }

  /* Kopfbereich */
  .topbar {
    font-size: 0.78rem;
  }

  .topbar__inner {
    min-height: 38px;
    gap: 0.8rem;
  }

  .topbar__info {
    gap: 0.9rem;
  }

  .header__bar {
    padding-block: 0.45rem;
  }

  .brand__logo {
    height: 46px;
  }

  .header__actions {
    gap: 0.45rem;
  }

  .cart-button,
  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  /* Mobiles Menü */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(11, 42, 31, 0.45);
    z-index: 64;
  }

  .nav {
    width: 100%;
    max-width: 460px;
    padding: 5.6rem 1.2rem 1.6rem;
    overscroll-behavior: contain;
  }

  .nav > ul {
    gap: 0;
  }

  .nav__item {
    border-bottom: 1px solid rgba(63, 129, 52, 0.14);
  }

  .nav__item > a,
  .nav__parent {
    padding: 1rem 0.25rem;
    font-size: 1.06rem;
    font-weight: 600;
    border-radius: 0;
  }

  .nav a.is-active,
  .nav__parent.is-active {
    background: transparent;
    color: var(--base-dark);
  }

  .nav__item > a::after {
    display: none;
  }

  .nav__item--has-children > a,
  .nav__item--has-children > .nav__parent {
    padding-right: 0;
  }

  .nav__sub-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
  }

  .nav__sub {
    padding: 0 0 0.7rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav__mega-item a {
    padding: 0.65rem 0.4rem;
    border-radius: 10px;
    gap: 0.7rem;
  }

  .nav__mega-item a:hover {
    background: var(--base-soft);
  }

  .nav__mega-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .nav__mega-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav__mega-body strong {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .nav__mega-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 14px;
    margin-top: 0.4rem;
  }

  .nav__mega-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
  }

  .nav__mega-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mega-phone {
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 1.2rem 0 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero__visual {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__photo-card {
    border-radius: 14px;
  }

  .hero__photo {
    max-width: 100%;
  }

  .hero__caption {
    text-align: center;
    font-size: 0.8rem;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.9rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8.2vw, 2.3rem);
    line-height: 1.08;
    max-width: none;
    margin-bottom: 0.9rem;
  }

  .hero__text {
    font-size: 1.02rem;
    max-width: none;
  }

  .hero .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.3rem;
  }

  .hero .btn-row .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero__tagline {
    display: none;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 1.6rem;
  }

  .hero__facts li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(63, 129, 52, 0.14);
  }

  .hero__facts li:last-child {
    border-bottom: 0;
  }

  .hero__facts strong {
    font-size: 1.05rem;
  }

  /* Seitenkopf */
  .page-hero {
    padding: 1.4rem 0 1.6rem;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  /* Speisekarte */
  .menu-card {
    border-top: 0;
  }

  .menu-item {
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
    padding: 0.95rem 0;
  }

  .menu-dots {
    display: none;
  }

  .menu-note {
    font-size: 0.68rem;
  }

  .menu-title strong {
    font-size: 1.04rem;
  }

  /* Karten & Raster */
  .services-grid,
  .course-grid,
  .shop-grid,
  .usps,
  .steps,
  .facts__grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .card,
  .product-card__body,
  .course-card {
    padding: 1.2rem 1.1rem;
  }

  .course-card h3 {
    font-size: 1.14rem;
  }

  .gallery-grid,
  .gallery-grid[style] {
    grid-template-columns: 1fr !important;
  }

  /* Buttons & Formulare */
  .btn {
    min-height: 48px;
  }

  .section-foot {
    gap: 0.8rem;
  }

  .section-foot .btn {
    width: 100%;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }

  .legal {
    padding: 1.2rem 1.1rem;
    border-radius: 12px;
  }

  .legal h2 {
    font-size: 1.25rem;
  }

  /* Footer */
  .footer {
    padding-bottom: 1.2rem;
  }

  .footer__bottom {
    margin-top: 1.8rem;
  }

  /* Schwebendes */
  .to-top {
    bottom: 96px;
    right: 0.8rem;
    width: 46px;
    height: 46px;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.55rem;
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 78;
  }

  .mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 52px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--base);
    color: #ffffff;
    box-shadow: 0 12px 26px -14px rgba(23, 40, 31, 0.6);
  }

  .mobile-bar__btn svg {
    width: 18px;
    height: 18px;
  }

  .mobile-bar__btn--ghost {
    background: #ffffff;
    color: var(--base-dark);
    border: 1px solid rgba(63, 129, 52, 0.32);
  }

  /* Warenkorb */
  .cart-drawer__panel {
    width: 100%;
  }

  .cart-page .cart-line__cover {
    width: 72px;
    height: 72px;
  }

  .qty__btn {
    width: 46px;
    height: 50px;
  }

  .qty__input {
    width: 52px;
    font-size: 16px;
  }

  /* Sticky-Leistungsnavigation */
  .service-nav {
    top: 66px;
    padding: 0.5rem 0;
  }

  .service-nav ul {
    gap: 0.35rem;
  }

  .service-nav a {
    padding: 0.5rem 0.8rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .topbar__info a[data-site-href="email"] {
    display: none;
  }

  .hero__title {
    font-size: 1.7rem;
  }
}


@media (max-width: 900px) {
  .brand,
  .nav-toggle {
    position: relative;
    z-index: 90;
  }

  .nav {
    z-index: 65;
  }
}

@media (max-width: 1080px) {
  .nav__item--has-children:hover .nav__sub,
  .nav__item--has-children:hover .nav__sub--mega,
  .nav__item--has-children.is-open .nav__sub,
  .nav__item--has-children.is-open .nav__sub--mega {
    transform: none;
  }
}

/* ---------- Mobil: erst Text, dann Bild ---------- */

@media (max-width: 900px) {
  .hero__visual {
    order: 2;
    margin-top: 1.6rem;
  }

  .about__media {
    order: 2;
    margin-top: 1.4rem;
  }
}

/* ================= MOBILE FEINSCHLIFF (luftiger, weniger überladen) ================= */

@media (max-width: 900px) {
  /* Topbar auf dem Handy aus – "Anrufen" übernimmt die Aktionsleiste */
  .topbar {
    display: none;
  }

  /* Mehr Luft zwischen den Bereichen */
  .section {
    padding: 3.6rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .container,
  .hero .container {
    width: min(1340px, 100% - 1.7rem);
  }

  /* Header ruhiger */
  .header__bar {
    padding-block: 0.6rem;
  }

  .brand__logo {
    height: 44px;
  }

  /* Hero luftiger */
  .hero {
    padding: 1.8rem 0 2.8rem;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(1.7rem, 7.6vw, 2.15rem);
    line-height: 1.12;
    margin-bottom: 1.1rem;
  }

  .hero__text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero .btn-row {
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .hero__visual {
    margin-top: 2.2rem;
    max-width: 330px;
  }

  .hero__caption {
    margin-top: 0.6rem;
    font-size: 0.78rem;
  }

  /* Zahlenreihe auf dem Handy ausblenden (Inhalte stehen in der Leistungsliste) */
  .hero__facts {
    display: none;
  }

  /* Speisekarte luftiger, Kürzel weg */
  .menu-item {
    padding: 1.15rem 0;
    grid-template-columns: auto 1fr;
  }

  .menu-title strong {
    font-size: 1.02rem;
  }

  .menu-title small {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .menu-note {
    display: none;
  }

  /* Karten luftiger */
  .card,
  .course-card,
  .product-card__body {
    padding: 1.35rem 1.25rem;
  }

  .card__body p,
  .course-card__text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .services-grid,
  .course-grid,
  .shop-grid,
  .usps {
    gap: 1rem;
  }

  .course-card {
    gap: 0.8rem;
  }

  .course-card__meta {
    gap: 0.45rem;
  }

  .course-card__foot {
    padding-top: 0.9rem;
  }

  /* Galerie zweispaltig – kompakter */
  .gallery-grid,
  .gallery-grid[style] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem;
  }

  /* Buttons */
  .btn {
    min-height: 48px;
    font-size: 0.95rem;
  }

  /* Nach-oben-Pfeil aus (Aktionsleiste reicht) */
  .to-top {
    display: none;
  }

  /* Footer luftiger */
  .footer {
    padding-top: 2.6rem;
  }

  .footer__grid {
    gap: 1.7rem;
  }

  /* Formulare luftiger */
  .form-grid {
    gap: 1.1rem;
  }

  .field {
    gap: 0.5rem;
  }

  .field textarea {
    min-height: 120px;
  }

  /* Warenkorb luftiger */
  .cart-page__list {
    gap: 0.8rem;
  }

  .panel {
    padding: 1.25rem;
  }

  /* Sticky-Leistungsnavigation */
  .service-nav {
    top: 68px;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 1.62rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}


/* ---------- Mobil: Startseite luftiger ---------- */

@media (max-width: 900px) {
  .hero {
    padding: 2.7rem 0 3.5rem;
  }

  .hero__eyebrow {
    margin-bottom: 1.25rem;
  }

  .hero__title {
    margin-bottom: 1.25rem;
  }

  .hero .btn-row {
    margin-top: 1.7rem;
  }

  .hero__visual {
    margin-top: 2.7rem;
    margin-bottom: 0.8rem;
  }

  .hero__caption {
    margin-top: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* ---------- Mobil: Aktionsleiste entfernt, Abstände symmetrisch ---------- */

@media (max-width: 900px) {
  .mobile-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .hero {
    padding: 2.7rem 0 2.7rem;
  }

  .hero__visual {
    margin-bottom: 0;
  }

  .hero__caption {
    margin-bottom: 0;
  }
}
