:root {
  --cream-50: #fffaf6;
  --cream-100: #fbf3ec;
  --cream-200: #f3e6da;
  --sand-300: #e4ccb7;
  --rose-100: #f4dedf;
  --rose-200: #eac7cb;
  --rose-400: #c88998;
  --rose-600: #925768;
  --earth-500: #876b5c;
  --earth-700: #5c433a;
  --earth-900: #392b27;
  --sage-100: #e7ebe2;
  --sage-500: #7d8b73;
  --white: #fff;
  --success: #4f765c;
  --warning: #8b5f29;
  --danger: #9a3e45;
  --shadow-soft: 0 18px 55px rgba(70, 47, 39, .10);
  --shadow-card: 0 12px 34px rgba(70, 47, 39, .08);
  --radius-small: 14px;
  --radius: 24px;
  --radius-large: 38px;
  --container: 1180px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--earth-900);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose-600); text-underline-offset: .2em; }
a:hover { color: var(--earth-700); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--earth-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.35rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.25em; }
strong { font-weight: 700; }

.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;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--earth-900);
  color: var(--white);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 780px); margin-inline: auto; }
.wide-narrow { width: min(calc(100% - 36px), 980px); margin-inline: auto; }
.center { text-align: center; }
.section-pad { padding: clamp(72px, 9vw, 122px) 0; }
.section-pad-small { padding: clamp(46px, 6vw, 78px) 0; }
.soft-section { background: var(--cream-100); }
.rose-section { background: linear-gradient(135deg, #f3dddd 0%, #f7e9e6 100%); }
.sage-section { background: var(--sage-100); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-600);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.lead { max-width: 780px; color: #5f4d46; font-size: clamp(1.08rem, 2vw, 1.34rem); line-height: 1.62; }
.center .lead { margin-inline: auto; }
.kicker-line { display: inline-flex; align-items: center; gap: 9px; color: var(--earth-500); font-weight: 700; }
.kicker-line::before { content: ""; width: 28px; height: 2px; background: var(--rose-400); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--earth-700);
  border-radius: 999px;
  background: var(--earth-700);
  box-shadow: 0 10px 25px rgba(84, 58, 49, .16);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.button:hover { transform: translateY(-2px); background: var(--rose-600); border-color: var(--rose-600); color: var(--white); box-shadow: 0 14px 30px rgba(121, 73, 87, .2); }
.button:focus-visible, .text-link:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, .nav-toggle:focus-visible, a:focus-visible {
  outline: 3px solid rgba(146, 87, 104, .38);
  outline-offset: 4px;
}
.button-secondary { background: transparent; color: var(--earth-700); box-shadow: none; }
.button-secondary:hover { background: var(--earth-700); color: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--earth-700); }
.button-light:hover { background: var(--rose-100); border-color: var(--rose-100); color: var(--earth-700); }
.button-small { min-height: 42px; padding: 10px 18px; font-size: .91rem; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--rose-600); font-weight: 760; text-decoration: none; }
.text-link:hover { gap: 12px; }

.topbar { background: var(--earth-900); color: #f8ebe4; font-size: .83rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; min-height: 38px; align-items: center; }
.topbar p { margin: 0; }
.topbar a { color: #f8ebe4; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-links { display: flex; align-items: center; gap: 9px; }
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(119, 84, 69, .10);
  background: rgba(255, 250, 246, .94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 84px; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--earth-700); text-decoration: none; }
.brand-symbol { width: 46px; height: 56px; object-fit: contain; }
.brand-type { display: grid; line-height: 1.15; }
.brand-type strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.brand-type small { margin-top: 4px; color: var(--rose-600); font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(13px, 2vw, 26px); }
.main-nav > a:not(.button) { position: relative; padding: 10px 0; color: var(--earth-700); font-size: .94rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--rose-400); transition: right var(--transition); }
.main-nav > a:not(.button):hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-toggle { display: none; flex: 0 0 auto; width: 48px; height: 46px; border: 1px solid rgba(92, 67, 58, .14); border-radius: 14px; background: var(--cream-200); }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--earth-700); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 122px); background: linear-gradient(135deg, #fffaf6 0%, #f9eee6 46%, #f1deda 100%); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255, 255, 255, .45); top: -210px; left: -140px; }
.hero::after { content: "✦"; position: absolute; right: 4vw; top: 9%; color: var(--earth-700); font-size: 34px; opacity: .7; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-logo { width: min(255px, 58%); margin-bottom: 14px; }
.hero h1 { max-width: 760px; }
.hero-visual { position: relative; min-height: 640px; }
.portrait-frame {
  position: absolute;
  inset: 0 0 0 10%;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, .82);
  border-radius: 46% 46% 32% 32% / 36% 36% 24% 24%;
  background: var(--rose-100);
  box-shadow: var(--shadow-soft);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-badge { position: absolute; z-index: 3; max-width: 210px; padding: 16px 18px; border: 1px solid rgba(129, 89, 75, .12); border-radius: 20px; background: rgba(255, 250, 246, .93); box-shadow: var(--shadow-card); color: var(--earth-700); font-size: .93rem; line-height: 1.45; }
.hero-badge strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; }
.hero-badge-one { left: 0; top: 12%; }
.hero-badge-two { right: -10px; bottom: 9%; }
.hero-star { position: absolute; z-index: 3; color: var(--rose-600); font-size: 30px; left: 5%; bottom: 11%; }
.trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 34px 0 0; padding: 0; list-style: none; }
.trust-list li { padding: 14px 15px; border: 1px solid rgba(111, 78, 65, .11); border-radius: 15px; background: rgba(255, 255, 255, .56); color: var(--earth-500); font-size: .84rem; line-height: 1.35; }
.trust-list strong { display: block; margin-bottom: 3px; color: var(--earth-700); font-size: .96rem; }

.course-ribbon { position: relative; z-index: 4; margin-top: -34px; }
.course-ribbon-inner { display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: stretch; overflow: hidden; border: 1px solid rgba(115, 81, 67, .11); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.course-fact { padding: 24px 25px; border-right: 1px solid var(--cream-200); }
.course-fact span { display: block; color: var(--earth-500); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.course-fact strong { display: block; margin-top: 5px; color: var(--earth-700); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.course-ribbon-action { display: flex; align-items: center; padding: 18px 23px; background: var(--rose-100); }

.page-hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 118px) 0; background: linear-gradient(135deg, var(--cream-100), #f2dedd); }
.page-hero::after { content: "✦"; position: absolute; right: 10%; bottom: 10%; color: var(--earth-700); font-size: 30px; opacity: .55; }
.page-hero h1 { max-width: 990px; margin-inline: auto; font-size: clamp(2.55rem, 5.2vw, 4.7rem); }
.page-hero.compact { padding: clamp(58px, 7vw, 88px) 0; }

.intro-grid, .split-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(42px, 7vw, 92px); align-items: center; }
.intro-grid > *, .split-grid > * { min-width: 0; }
.split-grid.reverse > :first-child { order: 2; }
.split-grid.reverse > :last-child { order: 1; }
.content-column > :last-child { margin-bottom: 0; }
.image-card { position: relative; }
.image-card img { width: 100%; border-radius: var(--radius-large); box-shadow: var(--shadow-soft); }
.image-card::before { content: ""; position: absolute; z-index: -1; width: 70%; height: 70%; right: -7%; bottom: -8%; border-radius: var(--radius-large); background: var(--rose-200); }
.image-caption { position: absolute; left: -22px; bottom: 28px; max-width: 270px; padding: 18px 20px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-card); font-size: .91rem; }
.card-grid { display: grid; gap: 22px; }
.three-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-cards, .two-research { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .info-card, .quote-card, .contact-card, .order-card, .legal-card, .logo-panel {
  border: 1px solid rgba(111, 78, 65, .10);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.feature-card { min-width: 0; min-height: 100%; padding: 24px 22px 28px; }
.feature-card h3 {
  max-width: 100%;
  font-size: clamp(1.28rem, 1.5vw, 1.4rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.feature-card p:last-child, .info-card p:last-child, .contact-card p:last-child { margin-bottom: 0; }
.feature-number { display: inline-grid; place-items: center; width: 43px; height: 43px; margin-bottom: 20px; border-radius: 50%; background: var(--rose-100); color: var(--rose-600); font-size: .78rem; font-weight: 850; letter-spacing: .08em; }
.info-card { padding: clamp(26px, 4vw, 40px); }
.info-card.accent { background: var(--earth-700); color: #fff7f2; }
.info-card.accent h2, .info-card.accent h3 { color: var(--white); }
.info-card.accent a { color: #ffdbe2; }
.icon-disc { display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; border-radius: 50%; background: var(--rose-100); color: var(--rose-600); font-size: 1.45rem; }
.logo-panel { display: grid; place-items: center; min-height: 390px; padding: 52px; background: #f7e5d0; }
.logo-panel img { width: 100%; max-width: 430px; }
.quote-card { position: relative; padding: clamp(32px, 5vw, 55px); background: var(--rose-100); }
.quote-card blockquote { margin: 0; color: var(--earth-700); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.4; }
.quote-card cite { display: block; margin-top: 20px; color: var(--rose-600); font-family: inherit; font-size: .9rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--sage-100); color: var(--success); font-size: .78rem; font-weight: 900; }
.steps { display: grid; gap: 18px; counter-reset: steps; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; padding: 22px 0; border-bottom: 1px solid rgba(111, 78, 65, .12); }
.step:last-child { border-bottom: 0; }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--rose-100); color: var(--rose-600); font-weight: 850; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; }

.course-detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 6vw, 72px); align-items: start; }
.course-summary-card { position: sticky; top: 118px; overflow: hidden; border-radius: var(--radius); background: var(--earth-700); box-shadow: var(--shadow-soft); color: #fff8f3; }
.course-summary-card h2, .course-summary-card h3 { color: var(--white); }
.course-summary-head { padding: 30px; background: rgba(255,255,255,.07); }
.course-summary-body { padding: 28px 30px 30px; }
.definition-list { display: grid; gap: 0; margin: 0; }
.definition-list > div { display: grid; grid-template-columns: 125px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.definition-list > div:last-child { border-bottom: 0; }
.definition-list dt { color: #efd9d2; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.definition-list dd { margin: 0; font-weight: 700; }
.price-large { display: block; margin: 22px 0 4px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 2.6rem; line-height: 1; }
.price-note { color: #ecd9d1; font-size: .88rem; }

.faq-list { display: grid; gap: 13px; }
details { overflow: hidden; border: 1px solid rgba(111, 78, 65, .12); border-radius: 17px; background: var(--white); box-shadow: 0 6px 20px rgba(70, 47, 39, .04); }
summary { position: relative; padding: 20px 60px 20px 22px; color: var(--earth-700); font-weight: 780; list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--rose-100); color: var(--rose-600); font-size: 1.2rem; }
details[open] summary::after { content: "–"; }
details > p, details > div { padding: 0 22px 20px; margin: 0; color: #635049; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: clamp(32px, 5vw, 55px); border-radius: var(--radius-large); background: var(--earth-700); color: #fff6f2; box-shadow: var(--shadow-soft); }
.cta-panel h2 { color: var(--white); }
.cta-panel p:last-child { margin-bottom: 0; }
.cta-panel .eyebrow { color: #efb8c2; }

.source-box { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(111, 78, 65, .13); border-radius: 18px; background: rgba(255,255,255,.55); font-size: .91rem; }
.source-list { margin: 10px 0 0; }
.source-list li + li { margin-top: 7px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--rose-400); border-radius: 12px; background: var(--cream-100); }
.notice.warning { border-color: #be8748; background: #fff4e5; }
.notice.success { border-color: var(--success); background: #edf6ef; }
.notice.danger { border-color: var(--danger); background: #fff0f1; }
.notice p:last-child { margin-bottom: 0; }

.profile-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.profile-fact { padding: 22px; border-radius: 18px; background: var(--cream-100); }
.profile-fact strong { display: block; color: var(--earth-700); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.profile-fact span { color: var(--earth-500); font-size: .87rem; }

/* Formulare */
/* Korrektur Kontaktfelder im Anmeldeformular */
.field-grid.three .field-contact-full {
  grid-column: 1 / -1 !important;
  min-width: 0;
}
.field-grid.three .field-contact-full input {
  width: 100% !important;
  min-width: 0;
  display: block;
  box-sizing: border-box;
}

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(34px, 6vw, 70px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(111, 78, 65, .11); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-card); }
.form-section { margin: 0 0 40px; padding: 0; border: 0; }
.form-section:last-of-type { margin-bottom: 28px; }
.form-section legend { width: 100%; margin: 0 0 20px; padding: 0 0 12px; border-bottom: 1px solid var(--cream-200); color: var(--earth-700); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 600; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field-grid.three { grid-template-columns: minmax(0, 1.45fr) minmax(110px, .65fr) minmax(0, 1fr); }
.field-grid.three .field-phone { grid-column: 1 / 2; }
.field-grid.three .field-email { grid-column: 2 / -1; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--earth-700); font-weight: 740; }
.required { color: var(--danger); }
.optional { color: var(--earth-500); font-size: .82rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #d7c2b7;
  border-radius: 12px;
  background: #fffcfa;
  color: var(--earth-900);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--rose-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose-600); box-shadow: 0 0 0 4px rgba(146, 87, 104, .11); background: var(--white); outline: 0; }
.field-hint { margin: 0; color: var(--earth-500); font-size: .82rem; line-height: 1.5; }
.field-error { margin: 0; color: var(--danger); font-size: .84rem; font-weight: 700; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--danger); }
.checkbox-stack { display: grid; gap: 13px; }
.checkbox-row { display: grid; grid-template-columns: 23px 1fr; gap: 11px; align-items: start; }
.checkbox-row input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--rose-600); }
.checkbox-row label { line-height: 1.5; }
.sensitive-consent { display: none; margin-top: 12px; padding: 16px; border-radius: 13px; background: #fff4f3; }
.sensitive-consent.is-visible { display: block; }
.form-error-summary { margin-bottom: 26px; padding: 20px 22px; border: 1px solid #e6b7bb; border-radius: 15px; background: #fff0f1; }
.form-error-summary h2 { margin-bottom: 8px; color: var(--danger); font-family: inherit; font-size: 1.1rem; }
.form-error-summary ul { margin: 0; }
.form-actions { display: grid; gap: 13px; }
.form-actions .privacy-small { margin: 0; color: var(--earth-500); font-size: .78rem; text-align: center; }
.order-card { position: sticky; top: 118px; overflow: hidden; }
.order-card-head { padding: 26px 28px; background: var(--rose-100); }
.order-card-body { padding: 26px 28px; }
.order-list { display: grid; gap: 0; margin: 0; }
.order-list > div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--cream-200); }
.order-list dt { color: var(--earth-500); }
.order-list dd { margin: 0; color: var(--earth-700); font-weight: 750; text-align: right; }
.order-total { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--earth-700); color: var(--earth-700); font-size: 1.15rem; font-weight: 800; }
.order-total strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.char-count { justify-self: end; color: var(--earth-500); font-size: .75rem; }

.success-panel { max-width: 820px; margin: 0 auto; padding: clamp(32px, 6vw, 64px); border: 1px solid rgba(111, 78, 65, .11); border-radius: var(--radius-large); background: var(--white); box-shadow: var(--shadow-soft); text-align: center; }
.success-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 24px; border-radius: 50%; background: var(--sage-100); color: var(--success); font-size: 2rem; font-weight: 900; }
.bank-box { margin: 28px auto 0; padding: 25px; border-radius: 18px; background: var(--earth-700); color: var(--white); text-align: left; }
.bank-box h2, .bank-box h3 { color: var(--white); }
.bank-grid { display: grid; gap: 10px; }
.bank-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 14px; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.bank-row:last-child { border-bottom: 0; }
.bank-row span:first-child { color: #efd9d2; font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.copy-button { min-height: 36px; padding: 6px 11px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: transparent; color: var(--white); font-size: .78rem; }
.copy-button:hover { background: rgba(255,255,255,.12); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.contact-card { padding: 28px; }
.contact-card .icon-disc { margin-bottom: 15px; }
.contact-card a { word-break: break-word; }
.route-box { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; padding: 34px; border-radius: var(--radius); background: var(--cream-200); }
.route-address { font-size: 1.12rem; }

/* Rechtliche Seiten */
.legal-layout { display: grid; grid-template-columns: 255px minmax(0, 1fr); gap: 54px; align-items: start; }
.legal-nav { position: sticky; top: 118px; padding: 22px; border: 1px solid rgba(111, 78, 65, .12); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-card); }
.legal-nav strong { display: block; margin-bottom: 9px; }
.legal-nav a { display: block; padding: 7px 0; color: var(--earth-500); font-size: .88rem; text-decoration: none; }
.legal-nav a:hover { color: var(--rose-600); }
.legal-content { min-width: 0; }
.legal-section { scroll-margin-top: 125px; margin-bottom: 46px; }
.legal-section h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.legal-section h3 { margin-top: 28px; font-size: 1.35rem; }
.legal-section li + li { margin-top: 8px; }
.legal-card { padding: clamp(24px, 4vw, 38px); }
.legal-table { width: 100%; margin: 18px 0 24px; border-collapse: collapse; font-size: .94rem; }
.legal-table th, .legal-table td { padding: 13px 14px; border: 1px solid #e3d1c7; text-align: left; vertical-align: top; }
.legal-table th { background: var(--cream-200); color: var(--earth-700); }
.meta-line { color: var(--earth-500); font-size: .86rem; }
.print-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.error-page { min-height: 62vh; display: grid; place-items: center; padding: 72px 0; text-align: center; }
.error-code { color: var(--rose-200); font-family: Georgia, "Times New Roman", serif; font-size: clamp(6rem, 20vw, 13rem); font-weight: 700; line-height: .85; }

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(245,232,225,.72);
  font-size: .73rem;
  line-height: 1;
  white-space: nowrap;
}
.visitor-counter::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239,184,194,.72);
  box-shadow: 0 0 0 3px rgba(239,184,194,.08);
}

@media (max-width: 1050px) {
  .main-nav { gap: 14px; }
  .intro-grid { grid-template-columns: 1fr; }
  .main-nav > a:not(.button) { font-size: .88rem; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr .85fr; gap: 38px; }
  .hero-visual { min-height: 570px; }
  .course-ribbon-inner { grid-template-columns: repeat(2, 1fr); }
  .course-fact:nth-child(2) { border-right: 0; }
  .course-fact:nth-child(-n+2) { border-bottom: 1px solid var(--cream-200); }
  .course-ribbon-action { grid-column: 1 / -1; justify-content: center; }
  .four-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .topbar-links span, .topbar-links a:first-child { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 16px 18px 22px;
    border-bottom: 1px solid rgba(111, 78, 65, .12);
    background: var(--cream-50);
    box-shadow: 0 20px 35px rgba(70, 47, 39, .12);
  }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { padding: 10px 5px; font-size: 1rem; }
  .nav-cta { display: inline-flex; margin-top: 5px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 620px; width: min(100%, 570px); margin-inline: auto; }
  .portrait-frame { left: 8%; }
  .trust-list { max-width: 700px; }
  .intro-grid, .split-grid, .course-detail-grid, .route-box { grid-template-columns: 1fr; }
  .split-grid.reverse > :first-child, .split-grid.reverse > :last-child { order: initial; }
  .image-card { width: min(100%, 620px); margin-inline: auto; }
  .image-card::before { right: 0; }
  .three-cards { grid-template-columns: 1fr; }
  .two-cards, .two-research { grid-template-columns: 1fr; }
  .course-summary-card, .order-card { position: static; }
  .form-layout { grid-template-columns: 1fr; }
  .order-card { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .profile-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container, .narrow, .wide-narrow { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 44px; }
  .topbar p { min-width: 0; font-size: .77rem; white-space: nowrap; }
  .topbar-links { display: none; }
  .header-inner { min-height: 74px; }
  .brand-symbol { width: 39px; height: 48px; }
  .brand-type strong { font-size: .96rem; }
  .brand-type small { font-size: .61rem; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.65rem); }
  .hero-visual { min-height: 500px; }
  .portrait-frame { inset: 0 4% 0 4%; border-width: 8px; border-radius: 45% 45% 30% 30% / 33% 33% 22% 22%; }
  .hero-badge { max-width: 176px; padding: 13px 14px; font-size: .78rem; }
  .hero-badge-one { left: 0; top: 7%; }
  .hero-badge-two { right: 0; bottom: 5%; }
  .trust-list { grid-template-columns: 1fr; }
  .course-ribbon { margin-top: -24px; }
  .course-ribbon-inner { grid-template-columns: 1fr; }
  .course-fact { border-right: 0; border-bottom: 1px solid var(--cream-200); }
  .course-fact:nth-child(-n+2) { border-bottom: 1px solid var(--cream-200); }
  .four-cards { grid-template-columns: 1fr; }
  .field-grid, .field-grid.three { grid-template-columns: 1fr; }
  .field-grid.three .field-phone, .field-grid.three .field-email { grid-column: 1; }
  .form-card { padding: 22px 18px; }
  .definition-list > div { grid-template-columns: 1fr; gap: 3px; }
  .bank-row { grid-template-columns: 1fr; gap: 3px; }
  .copy-button { justify-self: start; margin-top: 5px; }
  .image-caption { position: relative; left: auto; bottom: auto; max-width: none; margin: -30px 14px 0; }
  .logo-panel { min-height: 280px; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: 4px; }
  .legal-table { display: block; overflow-x: auto; white-space: nowrap; }
}

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

@media print {
  @page { margin: 18mm 17mm; size: A4; }
  body { background: #fff; color: #111; font-size: 10.5pt; line-height: 1.45; }
  .topbar, .site-header, .site-footer, .print-actions, .legal-nav, .no-print, .cta-panel { display: none !important; }
  .page-hero { padding: 0 0 16mm; background: #fff; }
  .page-hero::after { display: none; }
  .page-hero h1 { font-size: 24pt; }
  .section-pad, .section-pad-small { padding: 0; }
  .legal-layout { display: block; }
  .legal-section { break-inside: avoid; margin-bottom: 7mm; }
  .legal-section h2 { font-size: 16pt; break-after: avoid; }
  .legal-section h3 { font-size: 12pt; break-after: avoid; }
  .legal-table { font-size: 9pt; }
  .legal-card { padding: 0; border: 0; box-shadow: none; }
  a { color: #111; text-decoration: none; }
}

/* Footer */
.site-footer {
  padding: clamp(58px, 8vw, 92px) 0 0;
  background: var(--earth-900);
  color: #f5e8e1;
}
.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-footer p { color: #e9d8d0; }
.site-footer a { color: #f7e4df; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.footer-brand-block { max-width: 260px; }
.footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-logo { width: 170px; filter: brightness(0) invert(1); opacity: .96; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-link { text-decoration: none; }
.trademark-note { margin-top: 18px; font-size: .76rem; line-height: 1.55; opacity: .78; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(245,232,225,.72);
  font-size: .73rem;
  line-height: 1;
  white-space: nowrap;
}
.visitor-counter::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239,184,194,.72);
  box-shadow: 0 0 0 3px rgba(239,184,194,.08);
}

@media (max-width: 1050px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { max-width: none; }
  .footer-bottom { display: grid; gap: 4px; }
}

/* Logo auf rechtlichen Dokumenten */
.legal-logo {
  display: block;
  width: 150px;
  margin: 0 auto 18px;
}
.legal-logo img { width: 100%; }

@media print {
  .skip-link { display: none !important; }
  .legal-logo { width: 38mm; margin-bottom: 8mm; }
}

/* Instagram, Übersetzung und mehrsprachige Anmeldebögen */
.instagram-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}
.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.instagram-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.footer-social-link,
.footer-instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.footer-social-link {
  margin-top: 2px;
  font-weight: 750;
}
.footer-instagram-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .82rem;
  font-weight: 800;
}
.footer-instagram-button:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.13);
}
.footer-bottom {
  align-items: flex-end;
}
.footer-bottom-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 24px;
  flex: 1 1 470px;
}
.footer-tools {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.language-picker {
  position: relative;
}
.language-picker summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f7e4df;
  font-size: .82rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.language-picker summary::-webkit-details-marker { display: none; }
.language-picker summary:hover,
.language-picker[open] summary {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.13);
  color: var(--white);
}
.language-icon {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  border-radius: 7px;
  background: #f5d8df;
  color: var(--earth-900);
  font-size: .67rem;
  font-weight: 900;
}
.language-panel {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(380px, calc(100vw - 30px));
  padding: 20px;
  border: 1px solid rgba(88,58,48,.14);
  border-radius: 18px;
  background: var(--cream-50);
  box-shadow: 0 18px 55px rgba(24,15,12,.28);
  color: var(--earth-900);
  text-align: left;
}
.language-panel::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-right: 1px solid rgba(88,58,48,.14);
  border-bottom: 1px solid rgba(88,58,48,.14);
  background: var(--cream-50);
}
.language-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--earth-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}
.language-panel p {
  margin-bottom: 13px;
  color: var(--earth-500);
  font-size: .78rem;
  line-height: 1.5;
}
.language-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.language-links a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--cream-200);
  color: var(--earth-700);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
}
.language-links a:hover {
  background: var(--rose-100);
  color: var(--rose-600);
}

.instagram-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 390px);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}
.instagram-qr-card {
  padding: 18px;
  border: 1px solid rgba(146,87,104,.16);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.instagram-qr-card img {
  width: 100%;
  border-radius: 20px;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--rose-600);
  font-weight: 850;
}

.language-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.language-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(111,78,65,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.language-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.language-code {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-600);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.language-card h2 {
  margin: 0;
  font-size: 1.45rem;
}
.language-card p {
  color: var(--earth-500);
  font-size: .94rem;
}
.language-card .button-row {
  align-items: stretch;
  margin-top: auto;
  padding-top: 10px;
}
.language-card .button {
  width: 100%;
}
.download-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}
.download-step {
  position: relative;
  padding: 25px 24px 24px 70px;
  border-radius: 20px;
  background: var(--cream-100);
}
.download-step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--earth-700);
  color: var(--white);
  font-weight: 900;
}
.download-step h3 { margin-bottom: 6px; font-size: 1.18rem; }
.download-step p { margin: 0; font-size: .92rem; }
.download-legal-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--rose-400);
  border-radius: 16px;
  background: var(--cream-100);
}
.download-legal-note p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .language-download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-process { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .instagram-showcase { grid-template-columns: 1fr; }
  .instagram-qr-card { width: min(100%, 420px); }
  .footer-bottom { align-items: stretch; }
  .footer-bottom-copy { display: grid; }
  .footer-tools { justify-content: flex-start; }
  .language-panel { right: auto; left: 0; }
  .language-panel::after { right: auto; left: 30px; }
}
@media (max-width: 620px) {
  .language-download-grid { grid-template-columns: 1fr; }
  .language-links { grid-template-columns: 1fr; }
  .footer-tools { align-items: stretch; }
  .language-picker summary,
  .footer-instagram-button { justify-content: center; }
  .language-panel { position: fixed; right: 14px; bottom: 14px; left: 14px; width: auto; max-height: calc(100vh - 28px); overflow: auto; }
  .language-panel::after { display: none; }
}

@media print {
  .footer-tools, .instagram-showcase, .download-process { display: none !important; }
}

/* Jona-Kindergarten: verlinktes Kursort-Logo */
.course-location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.jona-logo-link {
  display: block;
  width: min(100%, 310px);
  margin-top: 4px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform var(--transition), filter var(--transition);
}
.jona-logo-link picture { display: block; }
.jona-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.jona-logo-link:hover {
  transform: translateY(-2px);
  filter: saturate(1.06) drop-shadow(0 10px 18px rgba(70, 47, 39, .10));
}
.jona-logo-link:focus-visible {
  outline: 3px solid rgba(146, 87, 104, .38);
  outline-offset: 6px;
}

@media (max-width: 620px) {
  .course-location-actions { align-items: stretch; }
  .jona-logo-link {
    width: min(100%, 290px);
    margin-inline: auto;
  }
}


/* Installierbare FenKid-Web-App (PWA) */
.pwa-install-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 42px;
  padding: .45rem .8rem;
  border: 1px solid rgba(104, 68, 57, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(80, 50, 41, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pwa-install-button:hover,
.pwa-install-button:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 26px rgba(80, 50, 41, .13);
}

.pwa-install-button img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.pwa-dialog[hidden] { display: none; }

.pwa-dialog {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pwa-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 28, 24, .52);
  backdrop-filter: blur(4px);
}

.pwa-dialog-card {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 1.6rem;
  border: 1px solid rgba(104, 68, 57, .13);
  border-radius: 24px;
  background: #fffaf6;
  box-shadow: 0 24px 80px rgba(39, 28, 24, .24);
  text-align: center;
}

.pwa-dialog-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: .55rem;
  box-shadow: 0 8px 24px rgba(80, 50, 41, .12);
}

.pwa-dialog-card h2 { margin: .2rem 0 .65rem; }
.pwa-dialog-card p { margin: 0 0 1rem; }

.pwa-dialog-close {
  position: absolute;
  top: .65rem;
  right: .7rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(104, 68, 57, .08);
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 620px) {
  .pwa-install-button {
    width: 100%;
    justify-content: center;
  }

  .pwa-dialog-card {
    border-radius: 20px;
    padding: 1.35rem 1.1rem 1.2rem;
  }
}

@media (display-mode: standalone) {
  [data-pwa-install],
  [data-pwa-ios] { display: none !important; }
}

/* PWA-Mobilkorrektur 2026-08-07: besser sichtbare Navigation, vollständiges Markenlogo und verlässliche Installationshilfe */
.site-header,
.header-inner,
.brand,
.brand-mark {
  overflow: visible;
}

.brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 68px);
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-symbol {
  display: block;
  width: auto;
  height: 60px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.brand-type {
  min-width: 0;
}

.brand-type strong,
.brand-type small {
  white-space: nowrap;
}

.nav-toggle {
  border: 2px solid rgba(146, 87, 104, .48);
  background: #fff;
  box-shadow: 0 7px 20px rgba(70, 47, 39, .11);
}

.nav-toggle span:not(.sr-only) {
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--earth-900);
}

.language-picker summary,
.footer-instagram-button {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.14);
  color: #fff;
}

.language-picker summary:hover,
.language-picker[open] summary,
.footer-instagram-button:hover {
  border-color: #fff;
  background: rgba(255,255,255,.22);
  color: #fff;
}

.language-icon {
  border: 1px solid rgba(57,43,39,.16);
  background: #fff;
  color: var(--earth-900);
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
}

.pwa-install-button {
  min-height: 48px;
  padding: .5rem .95rem;
  border: 2px solid var(--rose-400);
  background: #fff;
  color: var(--earth-900);
  box-shadow: 0 9px 24px rgba(28, 16, 13, .17);
}

.pwa-install-button:hover,
.pwa-install-button:focus-visible,
.pwa-install-button.is-install-ready {
  border-color: var(--rose-600);
  background: var(--rose-100);
  color: var(--earth-900);
}

.pwa-install-button img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(146,87,104,.28);
  border-radius: 10px;
  background: #fffaf6;
}

.pwa-install-button[hidden] {
  display: none !important;
}

.pwa-dialog-open {
  overflow: hidden;
}

.pwa-dialog-backdrop {
  background: rgba(39, 28, 24, .66);
}

.pwa-dialog-card {
  width: min(470px, 100%);
  max-height: min(720px, calc(100vh - 28px));
  overflow-y: auto;
  border: 2px solid rgba(146,87,104,.26);
}

.pwa-dialog-icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  border: 2px solid rgba(146,87,104,.34);
}

.pwa-dialog-lead {
  color: var(--earth-500);
}

.pwa-instructions {
  display: grid;
  gap: 12px;
  margin: 1rem 0;
  text-align: left;
}

.pwa-instruction-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(146,87,104,.23);
  border-radius: 16px;
  background: #fff;
}

.pwa-instruction-card[hidden] {
  display: none !important;
}

.pwa-instruction-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--earth-700);
}

.pwa-instruction-card p {
  margin: 0;
  color: var(--earth-900);
  font-size: .93rem;
  line-height: 1.52;
}

.pwa-instruction-symbol {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--rose-400);
  border-radius: 14px;
  background: var(--rose-100);
  color: var(--earth-900);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.pwa-menu-symbol {
  font-size: 2rem;
  letter-spacing: 0;
}

.pwa-dialog-note {
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--earth-900);
  font-size: .86rem;
  line-height: 1.5;
}

.pwa-dialog-close {
  border: 1px solid rgba(146,87,104,.30);
  background: #fff;
  color: var(--earth-900);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(70,47,39,.10);
}

.site-footer {
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 80px;
    gap: 10px;
    padding-block: 5px;
  }

  .brand {
    max-width: calc(100% - 58px);
    gap: 8px;
  }

  .brand-symbol {
    width: auto;
    height: 52px;
  }

  .brand-type strong {
    font-size: .90rem;
  }

  .brand-type small {
    margin-top: 2px;
    font-size: .56rem;
    letter-spacing: .12em;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .footer-tools {
    gap: 12px;
  }

  .language-picker summary,
  .footer-instagram-button,
  .pwa-install-button {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .pwa-dialog {
    align-items: end;
    padding: 10px;
  }

  .pwa-dialog-card {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 1.25rem 1rem 1rem;
    border-radius: 22px;
  }
}

@media (max-width: 360px) {
  .brand-symbol {
    height: 48px;
  }

  .brand-type strong {
    font-size: .82rem;
  }

  .brand-type small {
    font-size: .51rem;
    letter-spacing: .08em;
  }
}


/* Optionale finanzielle Unterstützung - 07.08.2026 */
.finance-support-inline-wrap { padding: 18px 0 0; background: #fffaf6; }
.finance-support-inline { display:flex; align-items:flex-start; gap:16px; padding:18px 20px; border:1px solid rgba(184,115,131,.22); border-radius:18px; background:linear-gradient(135deg,#fffaf6,#fbf0ec); box-shadow:0 10px 28px rgba(89,64,55,.05); }
.finance-support-inline p { margin:5px 0 0; color:#6e5850; }
.finance-support-kicker { display:inline-block; color:#9a5f70; font-size:.75rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.finance-support-section legend { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.finance-support-card { padding:20px; border:1px solid rgba(184,115,131,.25); border-radius:18px; background:linear-gradient(145deg,#fffaf6 0%,#fbefeb 100%); }
.finance-support-card > p:first-child { margin-top:0; }
.finance-support-card > p:last-child { margin-bottom:0; }
.finance-support-consent { margin:16px 0 10px; padding:14px; border-radius:14px; background:rgba(255,255,255,.72); }
.finance-support-consent input { margin-top:.22rem; }
.finance-flyout { position:fixed; z-index:55; right:24px; bottom:24px; width:min(390px,calc(100vw - 32px)); padding:20px 46px 18px 20px; border:1px solid rgba(184,115,131,.30); border-radius:20px; background:rgba(255,250,246,.97); box-shadow:0 18px 50px rgba(74,52,44,.18); backdrop-filter:blur(10px); transition:opacity .18s ease, transform .18s ease; }
.finance-flyout p { margin:7px 0 9px; color:#5f4b44; font-size:.92rem; line-height:1.55; }
.finance-flyout .text-link { font-size:.88rem; }
.finance-flyout-close { position:absolute; top:9px; right:10px; width:34px; height:34px; border:0; border-radius:50%; background:transparent; color:#795b54; font-size:1.45rem; line-height:1; cursor:pointer; }
.finance-flyout-close:hover,.finance-flyout-close:focus-visible { background:#f3e4df; outline:none; }
.finance-flyout.is-closing { opacity:0; transform:translateY(8px); }
.notice.finance-success { border-color:#d8b9c1; background:#fff5f6; }
@media (max-width:620px){
  .finance-flyout { right:14px; bottom:14px; width:calc(100vw - 28px); padding:18px 42px 16px 17px; border-radius:17px; }
  .finance-flyout p { font-size:.87rem; }
  .finance-support-card { padding:16px; }
}
@media print { .finance-flyout,.finance-support-inline-wrap { display:none !important; } }

/* Platzanzeige, Warteliste und geschützte Kursverwaltung – 09.08.2026 */
.seat-status-wrap { padding: 18px 0 0; background: #fffaf6; }
.seat-status-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 19px;
  border: 1px solid rgba(112, 137, 113, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, #fbfff9, #f2f7ef);
  box-shadow: 0 10px 26px rgba(72, 82, 63, .06);
}
.seat-status-card strong { display: block; color: #53644f; font-size: 1.02rem; }
.seat-status-card p { margin: 3px 0 0; color: #6e625c; }
.seat-status-card.is-full { border-color: rgba(184,115,131,.28); background: linear-gradient(135deg,#fffaf6,#fbefeb); }
.seat-status-card.is-full strong { color: #8d5364; }
.seat-status-dot {
  width: 11px;
  height: 11px;
  margin-top: .38rem;
  flex: 0 0 11px;
  border-radius: 999px;
  background: #78916f;
  box-shadow: 0 0 0 5px rgba(120,145,111,.12);
}
.is-full .seat-status-dot,
.hero-seat-badge.is-full .seat-status-dot { background: #b87383; box-shadow: 0 0 0 5px rgba(184,115,131,.13); }
.hero-seat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(112,137,113,.22);
  border-radius: 999px;
  background: rgba(244,249,241,.82);
  color: #53644f;
  font-size: .9rem;
}
.hero-seat-badge.is-full { border-color: rgba(184,115,131,.26); background: #fff1f3; color: #8d5364; }
.course-fact-seats strong { color: #5f7659; }
.course-fact-seats.is-full strong { color: #9a5f70; }
.order-seat-status {
  margin: 4px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eef5eb;
  color: #53644f;
  text-align: center;
}
.order-seat-status.is-full { background: #fff0f2; color: #8d5364; }
.waitlist-info { margin-top: 12px; }
.waitlist-response-panel { max-width: 760px; }
.success-icon.is-neutral { background: #f3e7e1; color: #8b5c50; }
.waitlist-position {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #f6eee9;
}
.waitlist-position span { color: #7a6259; font-size: .9rem; }
.waitlist-position strong { display: grid; place-items: center; min-width: 38px; height: 38px; border-radius: 50%; background: #9a5f70; color: #fff; font-size: 1.15rem; }
.waitlist-confirm-form { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.admin-section { background: #f8f2ed; min-height: 70vh; }
.admin-container { max-width: 1180px; }
.admin-login-card {
  display: grid;
  gap: 12px;
  width: min(460px, 100%);
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(112,81,70,.16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(74,52,44,.08);
}
.admin-login-card input { width: 100%; min-height: 48px; }
.admin-top-actions { display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center; margin: 18px 0 22px; }
.admin-top-actions form { margin: 0; }
.admin-stat-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin:22px 0; }
.admin-stat { padding:18px; border-radius:18px; background:#fff; border:1px solid rgba(112,81,70,.13); box-shadow:0 8px 22px rgba(74,52,44,.05); }
.admin-stat span { display:block; color:#7a6259; font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.admin-stat strong { display:block; margin-top:5px; color:#5d433b; font-family:Georgia,serif; font-size:2rem; }
.admin-stat.is-alert { background:#fff0f2; border-color:rgba(184,115,131,.28); }
.admin-panel { margin:20px 0; padding:22px; border:1px solid rgba(112,81,70,.13); border-radius:20px; background:#fff; box-shadow:0 10px 26px rgba(74,52,44,.05); }
.admin-panel-muted { background:#fbf8f5; }
.admin-panel-head { display:flex; flex-wrap:wrap; align-items:end; justify-content:space-between; gap:12px; margin-bottom:16px; }
.admin-panel-head h2 { margin:0; }
.admin-panel-head .eyebrow { margin-bottom:4px; }
.admin-panel-head > span { color:#7a6259; font-size:.9rem; }
.admin-table-wrap { overflow-x:auto; border-radius:14px; border:1px solid rgba(112,81,70,.10); }
.admin-table { width:100%; min-width:860px; border-collapse:collapse; background:#fff; }
.admin-table th { padding:12px 13px; text-align:left; background:#f4e7e2; color:#6d5149; font-size:.78rem; text-transform:uppercase; letter-spacing:.04em; }
.admin-table td { padding:13px; border-top:1px solid #eee2dc; vertical-align:top; font-size:.9rem; }
.admin-table code { font-size:.78rem; }
.admin-table small { color:#7a6259; }
.admin-status { display:inline-flex; padding:5px 9px; border-radius:999px; font-size:.76rem; font-weight:800; white-space:nowrap; }
.status-booked { background:#edf5ea; color:#587050; }
.status-waiting { background:#fff0f2; color:#8d5364; }
.admin-panel details > summary { cursor:pointer; font-weight:800; color:#6d5149; }

@media (max-width: 820px) {
  .admin-stat-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .seat-status-card { padding:14px 15px; border-radius:15px; }
  .hero-seat-badge { border-radius:16px; align-items:flex-start; }
  .admin-stat-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .admin-stat { padding:14px; }
  .admin-stat strong { font-size:1.55rem; }
  .admin-panel { padding:16px; }
  .waitlist-confirm-form .button { width:100%; justify-content:center; }
}

/* Kursdaten v3.1 */
.order-dates{max-width:32rem;line-height:1.55;font-size:.92rem;overflow-wrap:anywhere}
@media (max-width:760px){.order-dates{font-size:.9rem}}
