:root {
  /* Farbwerte aus den hochgeladenen Flyerbildern abgeleitet */
  --red-black: #23140f;
  --deep-red: #571e16;
  --copper: #994328;
  --brown: #4b372b;
  --text: #604b3d;
  --sand: #c3a67b;
  --caramel: #996747;
  --cream: #e3e2db;
  --cream-soft: #f5efe5;
  --taupe: #cec3ac;
  --rose-grey: #c9c6c2;
  --gold: #ddd0a9;
  --flyer-yellow: #e2c575;
  --ayurveda-light: #f7efd4;
  --ayurveda-mid: #dcc47b;
  --ayurveda-text: #571e16;
  --lotus-rose: #c99a96;
  --sound-gold: #b68b34;
  --hypnose-orange: #d1782b;
  --paper: #fffaf0;
  --white: #fffdf7;

  --max-page: 1180px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(35, 20, 15, 0.18);
  --shadow-soft: 0 16px 38px rgba(35, 20, 15, 0.11);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--brown);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.72;
  background:
    radial-gradient(circle at 9% 0%, rgba(226, 197, 117, 0.30), transparent 420px),
    radial-gradient(circle at 94% 4%, rgba(153, 67, 40, 0.18), transparent 440px),
    radial-gradient(circle at 50% 50%, rgba(201, 198, 194, 0.24), transparent 700px),
    linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 43%, #eadfce 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

address {
  font-style: normal;
}

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

p,
li,
h1,
h2,
h3,
h4,
strong {
  overflow-wrap: break-word;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin: 0;
}

.script,
.brand-title,
.hero-title,
.script-heading,
.room-script,
.portrait-room,
.script-callout {
  font-family: "Sacramento", "Apple Chancery", "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

.container {
  width: min(100% - 64px, var(--max-page));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--deep-red);
  color: var(--paper);
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(75, 55, 43, 0.13);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

.brand {
  min-width: 270px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
}


.brand-lotus {
  width: 34px;
  height: 30px;
  color: currentColor;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 30, 22, 0.18);
  border-radius: 999px;
  color: var(--deep-red);
  background:
    linear-gradient(145deg, rgba(226, 197, 117, 0.98), rgba(221, 208, 169, 0.86)),
    var(--flyer-yellow);
  box-shadow: 0 12px 24px rgba(35, 20, 15, 0.16);
}

.brand-title {
  display: block;
  color: var(--deep-red);
  max-width: 100%;
  overflow: visible;
  font-size: 2.55rem;
  line-height: 1.18;
  white-space: nowrap;
  padding-block: 0.08em 0.16em;
}

.brand-subtitle {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 790;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex: 1 1 auto;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(226, 197, 117, 0.30);
  color: var(--deep-red);
}

.main-nav .nav-accent {
  color: var(--red-black);
  background: linear-gradient(135deg, rgba(226, 197, 117, 0.92), rgba(221, 208, 169, 0.78));
  box-shadow: 0 10px 22px rgba(153, 103, 71, 0.16);
}

section {
  padding: 72px 0;
}

section[id],
details[id],
header[id] {
  scroll-margin-top: 118px;
}

.hero {
  padding-top: 56px;
  padding-bottom: 50px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(48px, 7vw, 92px);
  border: 1px solid rgba(75, 55, 43, 0.12);
  border-radius: var(--radius-xl);
  color: var(--ayurveda-text);
  background:
    linear-gradient(135deg, rgba(226, 197, 117, 0.52), rgba(255, 250, 240, 0.82)),
    var(--flyer-yellow);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(87, 30, 22, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.hero-lotus {
  position: absolute;
  right: clamp(-20px, 2vw, 44px);
  bottom: -24px;
  width: clamp(260px, 34vw, 470px);
  color: var(--lotus-rose);
  opacity: 0.38;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(75, 55, 43, 0.11);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 250, 240, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-card .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--ayurveda-text);
  background: var(--ayurveda-light);
  border-color: rgba(87, 30, 22, 0.12);
}

.hero-title {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  color: var(--ayurveda-text);
  font-size: clamp(7rem, 11.5vw, 12rem);
  line-height: 0.92;
  max-width: 720px;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span + span {
  margin-top: 0.06em;
  padding-left: 0.18em;
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-top: 34px;
  color: var(--ayurveda-text);
  font-size: 1.24rem;
  line-height: 1.62;
}

.hero-lead strong {
  color: var(--ayurveda-text);
  font-weight: 850;
}

.hero-quote {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(87, 30, 22, 0.12);
  border-radius: 22px;
  color: var(--ayurveda-text);
  background: var(--ayurveda-light);
  font-size: 1.02rem;
  line-height: 1.6;
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--deep-red);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 26px rgba(87, 30, 22, 0.24);
  cursor: pointer;
  touch-action: manipulation;
}

.button.gold {
  color: var(--red-black);
  background: linear-gradient(135deg, var(--flyer-yellow), var(--gold));
  box-shadow: 0 12px 26px rgba(153, 103, 71, 0.20);
}

.button.light {
  color: var(--brown);
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(75, 55, 43, 0.14);
  box-shadow: none;
}

.hero-card .button.gold,
.hero-card .button.light {
  color: var(--ayurveda-text);
  background: linear-gradient(135deg, var(--ayurveda-mid), var(--gold));
  border: 1px solid rgba(87, 30, 22, 0.11);
  box-shadow: 0 12px 26px rgba(153, 103, 71, 0.20);
}

.button.whatsapp {
  color: var(--paper);
  background: linear-gradient(135deg, var(--deep-red), var(--copper));
}

.panel {
  padding: 34px;
  border: 1px solid rgba(75, 55, 43, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.80);
  box-shadow: var(--shadow-soft);
}

.panel.yellow {
  background:
    linear-gradient(160deg, rgba(226, 197, 117, 0.88), rgba(221, 208, 169, 0.56)),
    var(--flyer-yellow);
}

.panel.dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 197, 117, 0.26), transparent 180px),
    linear-gradient(150deg, var(--red-black), var(--deep-red));
}

.panel h2,
.section-head h2,
.panel h3 {
  color: var(--deep-red);
  line-height: 1.08;
}

.panel.dark h2,
.panel.dark h3,
.panel.dark p {
  color: var(--paper);
}

.panel h2,
.section-head h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
  letter-spacing: -0.045em;
}

.panel p {
  margin-top: 14px;
  color: rgba(75, 55, 43, 0.82);
}

section[aria-labelledby="anliegen-title"] .container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.script-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
  color: var(--deep-red);
  font-family: "Sacramento", "Apple Chancery", "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.2rem, 5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  text-align: center;
}

.script-callout .callout-line {
  display: block;
  white-space: nowrap;
}

.script-callout .callout-line + .callout-line {
  margin-top: 0.05em;
}

.new-path-panel {
  text-align: center;
}

.new-path-description {
  max-width: 820px;
  margin: 56px auto 0 !important;
  padding-top: 0;
  text-align: left;
}

.section-head {
  margin-bottom: 24px;
  text-align: left;
}

.section-head p {
  margin-top: 12px;
  color: rgba(75, 55, 43, 0.82);
}

#angebote .section-head {
  text-align: center;
}

#angebote .section-head .eyebrow {
  margin-inline: auto;
}

.balance-title {
  max-width: 100%;
  margin: 10px auto 28px;
  padding: 0;
  border-radius: 0;
  color: var(--deep-red);
  background: transparent;
  text-align: center;
}

.balance-title strong {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.38;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.offer-stack {
  display: grid;
  gap: 18px;
}

details.offer {
  overflow: hidden;
  border: 1px solid rgba(75, 55, 43, 0.12);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: var(--shadow-soft);
}

details.offer summary {
  min-height: 112px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  list-style: none;
  cursor: pointer;
  touch-action: manipulation;
}

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


.icon-svg {
  width: 1.45em;
  height: 1.45em;
  display: block;
}

.heading-symbol {
  width: 1.05em;
  height: 1.05em;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
}

.heading-symbol .icon-svg {
  width: 1em;
  height: 1em;
}

.offer-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--icon-color, var(--deep-red));
  background: var(--icon-bg, rgba(226, 197, 117, 0.36));
  font-size: 2.05rem;
  box-shadow: inset 0 0 0 1px rgba(75, 55, 43, 0.08);
}

.offer-title {
  display: block;
  color: var(--deep-red);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.18;
  text-transform: uppercase;
}

.offer-short {
  display: block;
  margin-top: 6px;
  color: rgba(75, 55, 43, 0.76);
  font-size: 1.02rem;
  line-height: 1.42;
}

.chevron {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--deep-red);
  background: rgba(255, 250, 240, 0.74);
  transition: transform 180ms ease;
}

details[open] .chevron {
  transform: rotate(180deg);
}

.offer.ayurveda,
.offer.klang,
.offer.hypnose,
.offer.coaching {
  --icon-bg: rgba(255, 250, 240, 0.42);
  background:
    linear-gradient(135deg, rgba(226, 197, 117, 0.52), rgba(255, 250, 240, 0.82)),
    var(--flyer-yellow);
}

.offer.ayurveda {
  --icon-color: var(--deep-red);
}

.offer.klang {
  --icon-color: var(--sound-gold);
}

.offer.hypnose {
  --icon-color: var(--hypnose-orange);
}

.offer.coaching {
  --icon-color: var(--copper);
}

.offer.hypnose .offer-title,
.offer.hypnose .offer-short,
.offer.hypnose .chevron {
  color: var(--deep-red);
}

.offer.hypnose .chevron {
  background: rgba(255, 250, 240, 0.74);
}

.offer-body {
  padding: 0 26px 26px;
}

.offer-inner {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.80);
}

.offer.hypnose .offer-inner {
  color: var(--brown);
  background: rgba(255, 250, 240, 0.92);
}

.offer-inner h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-red);
  font-size: 1.9rem;
  line-height: 1.12;
}

.offer-inner h4 {
  margin-top: 24px;
  color: var(--brown);
  font-size: 1.08rem;
  line-height: 1.35;
}

.offer-inner p {
  margin-top: 12px;
  color: rgba(75, 55, 43, 0.82);
  font-size: 1.02rem;
  line-height: 1.68;
}

.service-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-list {
  counter-reset: service;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plain-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-list li,
.plain-list li {
  min-height: 56px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(75, 55, 43, 0.09);
  border-radius: 17px;
  background: rgba(226, 197, 117, 0.18);
  color: rgba(75, 55, 43, 0.86);
  font-size: 0.98rem;
  line-height: 1.44;
}

.service-list li {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.service-list li::before {
  counter-increment: service;
  content: counter(service);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--deep-red);
  background: rgba(255, 250, 240, 0.72);
  font-weight: 900;
}

.topic-block {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(75, 55, 43, 0.10);
  border-radius: 20px;
  background: rgba(227, 226, 219, 0.42);
}

.topic-block h4 {
  margin-top: 0;
  color: var(--deep-red);
}

.info-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

details.info-bucket {
  overflow: hidden;
  border: 1px solid rgba(75, 55, 43, 0.12);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: var(--shadow-soft);
}

details.info-bucket summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 40px;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
  touch-action: manipulation;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--deep-red);
  background: rgba(255, 250, 240, 0.72);
  font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(75, 55, 43, 0.08);
}

.info-title {
  display: block;
  color: var(--deep-red);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.18;
  text-transform: uppercase;
}

.info-short {
  display: block;
  margin-top: 6px;
  color: rgba(75, 55, 43, 0.76);
  font-size: 0.96rem;
  line-height: 1.42;
}

.info-body {
  padding: 0 24px 24px;
}

.info-inner {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.80);
}

.info-inner p {
  margin-top: 12px;
  color: rgba(75, 55, 43, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.info-inner p:first-child {
  margin-top: 0;
}

.info-bucket.preisliste-bucket {
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(226, 197, 117, 0.52), rgba(255, 250, 240, 0.82)),
    var(--flyer-yellow);
}

.info-bucket.gutschein-bucket {
  background:
    linear-gradient(135deg, rgba(153, 103, 71, 0.22), rgba(221, 208, 169, 0.50)),
    var(--gold);
}

.info-bucket.feedback-bucket {
  background:
    linear-gradient(135deg, rgba(227, 226, 219, 0.82), rgba(206, 195, 172, 0.44)),
    var(--cream);
}

.voucher-card {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(87, 30, 22, 0.14);
  border-radius: 28px;
  color: var(--deep-red);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 250, 240, 0.68), transparent 180px),
    linear-gradient(135deg, rgba(226, 197, 117, 0.84), rgba(255, 250, 240, 0.74)),
    var(--flyer-yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.34), 0 16px 34px rgba(35, 20, 15, 0.12);
}

.voucher-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(87, 30, 22, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.voucher-lotus {
  position: absolute;
  right: -20px;
  bottom: -18px;
  width: 230px;
  color: var(--lotus-rose);
  opacity: 0.23;
  pointer-events: none;
}

.voucher-content {
  position: relative;
  z-index: 1;
}

.voucher-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ayurveda-text);
  background: rgba(255, 250, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.voucher-title {
  display: block;
  margin-top: 18px;
  color: var(--deep-red);
  font-size: clamp(4.5rem, 7.8vw, 7.2rem);
  line-height: 0.9;
}

.voucher-subtitle {
  margin-top: 10px !important;
  color: var(--deep-red) !important;
  font-size: 1.25rem !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35 !important;
}

.voucher-copy {
  max-width: 760px;
  margin-top: 18px !important;
  color: rgba(75, 55, 43, 0.84) !important;
}

.voucher-value {
  max-width: 470px;
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(87, 30, 22, 0.14);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.64);
  color: var(--deep-red);
  font-weight: 900;
}

.voucher-value input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(87, 30, 22, 0.20);
  border-radius: 14px;
  color: var(--deep-red);
  background: rgba(255, 253, 247, 0.84);
  font: inherit;
  font-weight: 760;
}

.voucher-value input::placeholder {
  color: rgba(96, 75, 61, 0.58);
}

.voucher-praxis {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(87, 30, 22, 0.16);
  color: rgba(75, 55, 43, 0.86);
  font-size: 0.96rem;
  line-height: 1.5;
}

.voucher-praxis strong {
  color: var(--deep-red);
}


.price-intro {
  margin-top: 0 !important;
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.price-row {
  display: grid;
  grid-template-columns: 140px 80px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 12px 14px;
  border: 1px solid rgba(75, 55, 43, 0.09);
  border-radius: 16px;
  background: rgba(226, 197, 117, 0.16);
}

.price-row .duration,
.price-row .price {
  color: var(--deep-red);
  font-weight: 850;
}

.price-row .note {
  color: rgba(75, 55, 43, 0.78);
}

.package-title {
  margin-top: 24px;
  color: var(--deep-red);
  font-weight: 900;
  font-style: italic;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.package-card {
  padding: 16px;
  border: 1px solid rgba(75, 55, 43, 0.09);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.58);
}

.package-card h4 {
  margin-top: 0;
  color: var(--deep-red);
}

.package-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.package-card li {
  margin-top: 6px;
  color: rgba(75, 55, 43, 0.86);
}

.about-card {
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.portrait-mobile {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 46px 32px 80px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 250, 240, 0.82) 0 70px, transparent 71px),
    radial-gradient(circle at 50% 44%, var(--copper) 0 116px, transparent 117px),
    linear-gradient(145deg, rgba(226, 197, 117, 0.76), rgba(201, 198, 194, 0.62));
}

.portrait-mobile::after {
  content: "AYURVEDA · KLANGARBEIT · HYPNOSE · COACHING";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 32px;
  color: rgba(87, 30, 22, 0.46);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-align: center;
}

.portrait-name {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  min-width: 0;
  padding: 28px 20px 24px;
  border: 1px solid rgba(75, 55, 43, 0.12);
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(10px);
}

.portrait-room {
  display: block;
  color: var(--deep-red);
  font-size: clamp(6.3rem, 7.6vw, 9.5rem);
  line-height: 0.76;
}

.portrait-room span {
  display: block;
  white-space: nowrap;
}

.portrait-room span + span {
  margin-top: 0.08em;
  padding-left: 0.12em;
}

.portrait-person {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.room-script {
  color: var(--deep-red);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.room-name-script {
  font-family: "Sacramento", "Apple Chancery", "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow.room-script {
  padding: 8px 16px 6px;
  font-size: 1.6rem;
  line-height: 1;
}

.inline-room {
  display: inline-block;
  font-size: 1.35em;
  line-height: 0.9;
  vertical-align: -0.08em;
}

.map-room,
.footer-room {
  display: inline-block;
  font-size: 2rem;
  line-height: 0.9;
}

.about-copy {
  padding: 54px;
}

.quote-line {
  margin-top: 22px;
  padding: 18px 0 18px 20px;
  border-left: 4px solid var(--flyer-yellow);
  color: var(--deep-red);
  font-weight: 780;
  line-height: 1.55;
}

#der-raum .container,
#kontakt .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

#der-raum .panel,
#kontakt .panel,
#kontakt .map-card {
  margin-top: 0 !important;
}

#der-raum .container > .panel:only-child {
  grid-column: 1 / -1;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 17px;
  background: rgba(255, 250, 240, 0.10);
  color: rgba(255, 250, 240, 0.92);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-item {
  min-height: 70px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(75, 55, 43, 0.10);
  border-radius: 20px;
  background: rgba(226, 197, 117, 0.17);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--deep-red);
  background: rgba(255, 250, 240, 0.72);
  font-size: 1.3rem;
}

.contact-item small {
  display: block;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 3px;
  color: var(--brown);
  font-size: 1.02rem;
  line-height: 1.34;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(75, 55, 43, 0.11);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow-soft);
}

.map-visual {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(226, 197, 117, 0.86), rgba(206, 195, 172, 0.72)),
    repeating-linear-gradient(45deg, rgba(75, 55, 43, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(75, 55, 43, 0.06) 0 1px, transparent 1px 26px);
}

.route-line {
  position: absolute;
  inset: 0;
  opacity: 0.44;
}

.pin {
  position: absolute;
  left: 54%;
  top: 46%;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  background: var(--deep-red);
  box-shadow: 0 12px 22px rgba(35, 20, 15, 0.28);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  background: var(--flyer-yellow);
}

.map-label {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(88%, 390px);
  transform: translateX(-50%);
  padding: 16px 18px;
  border: 1px solid rgba(75, 55, 43, 0.12);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.86);
  text-align: center;
  box-shadow: 0 10px 24px rgba(35, 20, 15, 0.14);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.35;
}

.map-content {
  padding: 24px;
}

.map-content p {
  color: rgba(75, 55, 43, 0.82);
  margin-bottom: 14px;
}

.legal-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(87, 30, 22, 0.13);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.66);
  color: rgba(75, 55, 43, 0.78);
  font-size: 0.94rem;
  line-height: 1.58;
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-red);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

footer {
  padding: 36px 0 50px;
  color: rgba(75, 55, 43, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-inner {
  padding-top: 24px;
  border-top: 1px solid rgba(75, 55, 43, 0.12);
}

.footer-room {
  display: block;
  margin-bottom: 10px;
  line-height: 1.15;
}

.footer-meta {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--deep-red);
  font-weight: 780;
}

.footer-legal-placeholders {
  display: block;
  margin-top: 0;
}

.footer-legal-placeholder {
  display: none;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(75, 55, 43, 0.10);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.56);
  scroll-margin-top: 118px;
}

.footer-legal-placeholder:target {
  display: block;
}

.footer-legal-placeholder h2 {
  margin: 0;
  color: var(--deep-red);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-legal-placeholder p {
  margin-top: 8px;
  color: rgba(75, 55, 43, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-legal-placeholder:focus {
  outline: 2px solid rgba(231, 112, 112, 0.65);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .script-callout {
    font-size: clamp(5.4rem, 13vw, 8.2rem);
  }


  section[id],
  details[id],
  header[id] {
    scroll-margin-top: 170px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: clamp(6rem, 14vw, 9rem);
  }

  section[aria-labelledby="anliegen-title"] .container,
  #der-raum .container,
  #kontakt .container,
  .about-card {
    grid-template-columns: 1fr;
  }

  .plain-list,
  .service-list,
  .info-stack,
  .package-grid,
  .offer.hypnose .offer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    width: min(100% - 28px, var(--max-page));
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 2rem;
  }

  .main-nav a {
    font-size: 0.78rem;
    padding-inline: 10px;
  }

  section {
    padding: 44px 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card,
  .panel,
  .about-copy {
    padding: 24px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(4.5rem, 18vw, 6.5rem);
  }

  .button {
    width: 100%;
  }

  .balance-title strong {
    white-space: normal;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .voucher-card {
    padding: 22px;
  }

  .voucher-title {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .voucher-value {
    grid-template-columns: 1fr;
  }

  .voucher-lotus {
    width: 190px;
  }

  details.offer summary,
  details.info-bucket summary {
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    padding: 18px 16px;
  }

  .offer-icon,
  .info-icon {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }

  .offer-body,
  .info-body {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

  

/* Anpassungen aus "Änderungen neu 1406" */
:root {
  --start-yellow: #ffdb75;
  --start-left-brown: #844311;
  --start-right-brown: #906850;
  --start-button-text: #e77070;
  --start-button-bg: rgba(255, 254, 235, 0.60);
}

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

.topbar .main-nav {
  justify-content: flex-end;
}

.hero-start-10 {
  padding-top: 56px;
  padding-bottom: 50px;
}

.hero-start-image,
.room-20-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  background: var(--start-yellow);
}

.hero-start-image img,
.room-20-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  outline-offset: 4px;
}

.hero-hotspot:focus-visible {
  outline: 3px solid var(--start-button-text);
}

.hero-hotspot-offers {
  left: 10.1%;
  top: 83.5%;
  width: 19.0%;
  height: 6.2%;
}

.hero-hotspot-contact {
  left: 33.5%;
  top: 83.5%;
  width: 19.0%;
  height: 6.2%;
}

.intro-11-section .container {
  display: block !important;
}

.intro-11-card {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
  overflow: hidden;
  color: var(--start-right-brown);
  background: #fffef2;
  box-shadow: var(--shadow-soft);
}

.intro-copy-11 {
  padding: clamp(38px, 5vw, 72px) clamp(34px, 5vw, 62px);
}

.intro-copy-11 h2 {
  max-width: 980px;
  color: var(--start-right-brown);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.intro-copy-11 p {
  max-width: 900px;
  margin-top: 30px;
  color: var(--start-right-brown);
  font-size: 1.05rem;
  line-height: 1.78;
}

.intro-path-11 {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 54px;
  color: var(--start-right-brown);
  background: var(--start-yellow);
  text-align: center;
}

.intro-path-script {
  position: relative;
  z-index: 1;
  color: var(--start-left-brown);
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  line-height: 0.82;
}

.intro-path-script span {
  display: block;
  white-space: nowrap;
}

.intro-path-script span + span {
  margin-top: 0.12em;
}

.intro-path-11 p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 62px auto 0;
  color: var(--start-right-brown);
  font-size: 1.03rem;
  line-height: 2.05;
  letter-spacing: 0.26em;
  text-align: center;
}

.intro-lotus,
.about-lotus {
  position: absolute;
  color: rgba(231, 112, 112, 0.26);
  pointer-events: none;
}

.intro-lotus-top {
  top: 38px;
  right: -45px;
  width: 270px;
  transform: rotate(-5deg);
}

.intro-lotus-bottom {
  left: -58px;
  bottom: 22px;
  width: 300px;
  transform: rotate(1deg);
}

.room-20-section .container {
  display: block !important;
}

.room-20-image {
  background: var(--start-yellow);
}

.about-30-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fffef2;
  box-shadow: var(--shadow-soft);
}

.about-30-visual {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 90px 42px 70px;
  color: var(--start-right-brown);
  background: var(--start-yellow);
}

.about-room-script {
  position: relative;
  z-index: 1;
  color: var(--start-right-brown);
  font-size: clamp(5.0rem, 7.2vw, 8.5rem);
  line-height: 0.88;
  text-align: center;
}

.about-room-script span {
  display: block;
}

.about-room-script span + span {
  margin-top: 0.06em;
}

.about-lotus-top {
  top: -40px;
  right: -56px;
  width: 330px;
  transform: rotate(-10deg);
}

.about-lotus-bottom {
  left: -78px;
  bottom: -42px;
  width: 320px;
}

.portrait-orbit {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 120px auto 0;
}

.orbit-label {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  color: var(--start-right-brown);
  overflow: visible;
}

.orbit-label text {
  fill: currentColor;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.19em;
}

.portrait-photo {
  position: absolute;
  inset: 16%;
  width: 68%;
  height: 68%;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(75, 55, 43, 0.18);
}

.about-30-copy {
  padding: clamp(42px, 5vw, 70px) clamp(42px, 5vw, 74px);
  color: var(--start-right-brown);
  background: #fffef2;
}

.about-30-copy h2 {
  max-width: 780px;
  color: var(--start-right-brown);
  font-size: clamp(2.4rem, 4.1vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.about-30-copy p {
  margin-top: 28px;
  color: var(--start-right-brown);
  font-size: 1.05rem;
  line-height: 1.78;
}

.balance-title strong {
  white-space: nowrap;
}

.offer.ayurveda,
.offer.klang,
.offer.hypnose,
.offer.coaching,
.info-bucket.preisliste-bucket {
  --icon-bg: var(--start-button-bg);
  background:
    linear-gradient(135deg, rgba(255, 219, 117, 0.78), rgba(255, 254, 235, 0.80)),
    var(--start-yellow) !important;
}

.offer.ayurveda { --icon-color: var(--start-left-brown); }
.offer.klang { --icon-color: var(--sound-gold); }
.offer.hypnose { --icon-color: var(--hypnose-orange); }
.offer.coaching { --icon-color: var(--start-right-brown); }

.offer.hypnose .offer-title,
.offer.hypnose .offer-short,
.offer.hypnose .chevron {
  color: var(--deep-red) !important;
}

.offer-icon .icon-svg,
.info-icon .icon-svg,
.heading-symbol .icon-svg {
  width: 1.28em;
  height: 1.28em;
}

.heading-symbol .compass-icon,
.heading-symbol .lotus-icon,
.heading-symbol .sound-icon,
.heading-symbol .spiral-icon {
  width: 1em;
  height: 1em;
}

.included-note {
  margin-top: 18px !important;
  padding: 12px 14px;
  border: 1px solid rgba(75, 55, 43, 0.10);
  border-radius: 16px;
  color: var(--deep-red) !important;
  background: rgba(255, 254, 235, 0.66);
  font-weight: 850;
}

#kontakt .panel,
#kontakt .map-card {
  background:
    linear-gradient(135deg, rgba(255, 219, 117, 0.96), rgba(255, 219, 117, 0.96)),
    var(--start-yellow);
}

#kontakt .map-visual {
  background:
    linear-gradient(135deg, rgba(255, 219, 117, 0.96), rgba(255, 219, 117, 0.96)),
    repeating-linear-gradient(45deg, rgba(75, 55, 43, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(75, 55, 43, 0.06) 0 1px, transparent 1px 26px),
    var(--start-yellow);
}

#kontakt .contact-item,
#kontakt .legal-note {
  background: rgba(255, 219, 117, 0.22);
}

#kontakt .contact-icon,
#kontakt .map-label,
.info-icon {
  background: var(--start-button-bg);
  color: var(--start-left-brown);
}

#anhang .section-head h2,
#anhang .section-head .eyebrow,
#kontakt .eyebrow,
#kontakt h2 {
  color: var(--start-right-brown);
}

.info-bucket.gutschein-bucket,
.info-bucket.feedback-bucket {
  background:
    linear-gradient(135deg, rgba(255, 219, 117, 0.52), rgba(255, 254, 235, 0.80)),
    var(--start-yellow) !important;
}

.gift-icon {
  width: 1.22em;
  height: 1.22em;
}

@media (max-width: 1080px) {
  .intro-11-card,
  .about-30-card {
    grid-template-columns: 1fr;
  }

  .intro-path-11,
  .about-30-visual {
    min-height: auto;
  }

  .intro-copy-11,
  .about-30-copy {
    padding: 36px 28px;
  }

  .intro-path-11 {
    padding: 56px 38px 76px;
  }

  .about-30-visual {
    padding: 70px 28px 70px;
  }
}

@media (max-width: 720px) {
  .hero-start-10 {
    padding-top: 32px;
  }

  .intro-copy-11 h2,
  .about-30-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .intro-copy-11 p,
  .about-30-copy p {
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 18px;
  }

  .intro-path-script {
    font-size: clamp(3.35rem, 14.8vw, 5.45rem);
  }

  .intro-path-11 p {
    letter-spacing: 0.18em;
    font-size: 0.92rem;
  }

  .about-room-script {
    font-size: clamp(4.3rem, 17vw, 6.2rem);
  }

  .portrait-orbit {
    width: min(100%, 300px);
    margin-top: 82px;
  }

  .orbit-label text {
    font-size: 18px;
  }

  .balance-title strong {
    white-space: normal;
  }
}


/* Einheitliche Lotusblüte aus dem ersten Startseiten-Abschnitt */
.lotus-photo {
  object-fit: contain;
  object-position: center;
}
.brand-lotus.lotus-photo,
.heading-symbol .lotus-photo,
.offer-icon .lotus-photo {
  max-width: 100%;
  max-height: 100%;
}


/* Lotusblüte oben links ohne äußeren Kreis */
.brand-mark {
  width: 56px !important;
  height: 56px !important;
  display: grid;
  place-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.brand-mark .brand-lotus.lotus-photo {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
}


/* Zurück-Buttons: Stil angelehnt an die hellen Bereichs-Pillen */
main > section,
details[id] {
  position: relative;
}

.section-back {
  position: absolute;
  top: 22px;
  right: max(32px, calc((100vw - var(--max-page)) / 2 + 32px));
  z-index: 12;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 9px;
  border: 1px solid rgba(144, 104, 80, 0.22);
  border-radius: 999px;
  color: var(--start-right-brown);
  background: rgba(255, 254, 235, 0.72);
  box-shadow: 0 8px 18px rgba(75, 55, 43, 0.10);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-back:hover,
.section-back:focus-visible {
  color: var(--start-left-brown);
  background: rgba(255, 254, 235, 0.88);
  outline: none;
}

.details-back {
  top: 24px;
  right: 86px;
  min-height: 34px;
  padding: 6px 16px 7px;
  font-size: 0.70rem;
  letter-spacing: 0.12em;
}

@media (max-width: 720px) {
  .section-back {
    top: 12px;
    right: 14px;
    min-height: 34px;
    padding: 6px 16px 7px;
    font-size: 0.70rem;
    letter-spacing: 0.11em;
  }

  .details-back {
    top: 12px;
    right: 58px;
    min-height: 28px;
    padding: 4px 9px 5px;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }
}


/* Unsichtbarer Seitenanfang für Zurück-Buttons */
.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* Anpassung: Überschrift „Wenn ein Thema gelöst werden möchte“ */
.intro-copy-11 #anliegen-title {
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 1.9vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 1080px) {
  .intro-copy-11 #anliegen-title {
    font-size: clamp(1.55rem, 2.9vw, 1.95rem);
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .intro-copy-11 #anliegen-title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }
}




/* V31: Schriftgröße „Für Deinen neuen Weg“ erhöht, Format und Ausrichtung beibehalten */
.intro-path-script {
  font-size: clamp(32px, 3.2vw, 46px) !important;
  line-height: 1.2 !important;
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

.intro-path-script span,
.intro-path-script .callout-line {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

.intro-path-script span + span,
.intro-path-script .callout-line + .callout-line {
  margin-top: 0 !important;
}


/* Anpassung aus Bild: Überschrift „Ich begleite Dich …“ in Glacial Indifference, fett und wie 3.0 angeordnet */
.about-30-copy #about-title {
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(1.95rem, 2.35vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  max-width: 760px !important;
}

@media (max-width: 1080px) {
  .about-30-copy #about-title {
    font-size: clamp(1.75rem, 4.4vw, 2.45rem) !important;
    line-height: 1.1 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 720px) {
  .about-30-copy #about-title {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem) !important;
    line-height: 1.12 !important;
  }
}


/* V16: Über-mich-Bereich nach Vorlage 3.0 angepasst */
.about-room-script {
  font-size: clamp(4.6rem, 6.2vw, 7.6rem);
  line-height: 0.86;
}
.about-room-script span {
  white-space: nowrap;
}
.portrait-orbit {
  margin-top: 112px;
}
.orbit-label text {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.portrait-photo {
  object-position: 50% 38%;
}
@media (max-width: 1080px) {
  .about-room-script {
    font-size: clamp(4.2rem, 12vw, 6.8rem);
  }
}
@media (max-width: 720px) {
  .about-room-script {
    font-size: clamp(3.7rem, 15vw, 5.7rem);
  }
  .portrait-orbit {
    margin-top: 82px;
  }
  .orbit-label text {
    font-size: 17px;
    letter-spacing: 0.12em;
  }
}



/* V19: Anpassungen 4.0 Angebote */
.offer-title,
.info-bucket.preisliste-bucket .info-title {
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em;
}

.info-bucket.preisliste-bucket summary {
  min-height: 112px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
}

.info-bucket.preisliste-bucket .info-icon {
  width: 70px;
  height: 70px;
  font-size: 2.05rem;
}

.info-bucket.preisliste-bucket .info-title {
  font-size: 1.08rem;
  line-height: 1.18;
}

.info-bucket.preisliste-bucket .info-short {
  margin-top: 6px;
  color: rgba(75, 55, 43, 0.76);
  font-size: 1.02rem;
  line-height: 1.42;
}

.offer.hypnose .offer-short {
  color: rgba(75, 55, 43, 0.76) !important;
}

@media (max-width: 720px) {
  .info-bucket.preisliste-bucket summary {
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    padding: 18px 16px;
  }

  .info-bucket.preisliste-bucket .info-icon {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }
}



/* Button-Anpassungen laut Vorgabe: Zurück wie Beispiel 1, Kontakt-/Routenbuttons hell wie Beispiel 2 */
.section-back,
.section-back:visited {
  color: var(--start-button-text) !important;
  background: var(--start-button-bg) !important;
  border: 1px solid rgba(255, 254, 235, 0.82) !important;
  box-shadow: 0 9px 15px rgba(75, 55, 43, 0.22) !important;
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-back:hover,
.section-back:focus-visible {
  color: var(--start-button-text) !important;
  background: rgba(255, 254, 235, 0.76) !important;
  border-color: rgba(255, 254, 235, 0.90) !important;
  outline: none;
}

#kontakt .cta-row .button.whatsapp,
#kontakt .cta-row .button.light,
#kontakt .map-content .button,
#kontakt .cta-row .button.whatsapp:visited,
#kontakt .cta-row .button.light:visited,
#kontakt .map-content .button:visited {
  color: var(--brown) !important;
  background: rgba(255, 254, 235, 0.86) !important;
  border: 1px solid rgba(255, 254, 235, 0.94) !important;
  box-shadow: 0 9px 15px rgba(75, 55, 43, 0.18) !important;
}

#kontakt .cta-row .button.whatsapp:hover,
#kontakt .cta-row .button.light:hover,
#kontakt .map-content .button:hover,
#kontakt .cta-row .button.whatsapp:focus-visible,
#kontakt .cta-row .button.light:focus-visible,
#kontakt .map-content .button:focus-visible {
  color: var(--brown) !important;
  background: rgba(255, 254, 235, 0.96) !important;
  border-color: rgba(255, 254, 235, 1) !important;
  outline: none;
}



/* Alle Lotusblüten führen zurück zum Seitenanfang */
.lotus-home {
  cursor: pointer;
  pointer-events: auto !important;
}
.lotus-home .lotus-photo {
  pointer-events: none;
}
.lotus-symbol-home {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: inherit;
}
.lotus-symbol-home .lotus-photo {
  max-width: 100%;
  max-height: 100%;
}


/* Kontakt-Bucket als Rechteck im Querformat */
@media (min-width: 1081px) {
  #kontakt .container {
    display: block !important;
  }

  #kontakt .panel {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.35fr);
    grid-template-areas:
      "label contacts"
      "title contacts"
      "copy legal"
      "actions legal";
    gap: 14px 36px;
    align-items: start;
    padding: clamp(36px, 4vw, 54px);
  }

  #kontakt .panel > .eyebrow {
    grid-area: label;
  }

  #kontakt .panel > h2 {
    grid-area: title;
    margin-top: 0 !important;
  }

  #kontakt .panel > p {
    grid-area: copy;
    max-width: 560px;
    margin-top: 0;
  }

  #kontakt .contact-list {
    grid-area: contacts;
    margin: 0;
  }

  #kontakt .panel > .cta-row {
    grid-area: actions;
    margin-top: 10px;
    align-self: end;
  }

  #kontakt .legal-note {
    grid-area: legal;
    margin-top: 0;
  }
}



/* Gutschein 3.0 - ersetzt den bisherigen Gutschein-Bucket, ohne äußere gelbe Linie */
#gutscheine .info-inner {
  padding: clamp(18px, 3vw, 28px);
  border: 0 !important;
  background: rgba(255, 254, 235, 0.72) !important;
}

.voucher-30 {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 22px);
  border: 0 !important;
  border-radius: 30px;
  background: rgba(255, 254, 235, 0.82);
  box-shadow: 0 18px 34px rgba(75, 55, 43, 0.10);
}

.voucher-30-hero,
.voucher-30-panel {
  position: relative;
  overflow: hidden;
  border: 0 !important;
  border-radius: 24px;
  background: var(--start-yellow);
}

.voucher-30-hero {
  min-height: clamp(310px, 38vw, 420px);
  padding: clamp(32px, 5vw, 48px) clamp(26px, 4.5vw, 42px);
  color: var(--start-left-brown);
}

.voucher-30-word {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 254, 235, 0.94);
  font-size: clamp(3.6rem, 7.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.8;
  text-shadow: 0 6px 18px rgba(132, 67, 17, 0.10);
}

.voucher-30-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, 0.85fr);
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  margin-top: clamp(22px, 4vw, 38px);
}

.voucher-30-script {
  color: var(--start-left-brown);
  font-size: clamp(3.4rem, 6.3vw, 5.9rem);
  line-height: 0.76;
}

.voucher-30-script span {
  display: inline-block;
  margin-top: 0.12em;
  padding-left: 0.14em;
}

.voucher-30-steps {
  margin-top: 18px !important;
  color: var(--start-left-brown) !important;
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.55vw, 1.2rem) !important;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.7 !important;
  text-align: center;
  text-transform: uppercase;
}

.voucher-30-quote {
  margin: 0 !important;
  color: var(--start-right-brown) !important;
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(0.82rem, 1.35vw, 1.02rem) !important;
  font-weight: 500;
  letter-spacing: 0.20em;
  line-height: 1.95 !important;
  text-align: center;
}

.voucher-30-lotus {
  position: absolute;
  z-index: 1;
  display: block;
  opacity: 0.70;
  transition: opacity 180ms ease;
}

.voucher-30-lotus:hover,
.voucher-30-lotus:focus-visible {
  opacity: 0.88;
  outline: none;
}

.voucher-30-lotus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voucher-30-lotus-top {
  top: -16px;
  right: -10px;
  width: clamp(92px, 15vw, 150px);
}

.voucher-30-lotus-left {
  left: -28px;
  top: 31%;
  width: clamp(92px, 15vw, 148px);
}

.voucher-30-lotus-main {
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(10px, 2vw, 24px);
  width: clamp(150px, 26vw, 260px);
}

.voucher-30-panel {
  margin-top: clamp(14px, 2vw, 20px);
  padding: clamp(28px, 4vw, 44px);
  color: var(--start-right-brown);
}

.voucher-30-panel h3 {
  max-width: 100%;
  color: var(--start-right-brown) !important;
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.voucher-30-panel p {
  max-width: 760px;
  margin-top: 20px !important;
  color: var(--start-right-brown) !important;
  font-size: 1.02rem;
  line-height: 1.75;
}

.voucher-order-button,
.voucher-order-button:visited {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  padding: 12px 22px 13px;
  border: 1px solid rgba(255, 254, 235, 0.90);
  border-radius: 999px;
  color: var(--start-button-text) !important;
  background: var(--start-button-bg);
  box-shadow: 0 9px 15px rgba(75, 55, 43, 0.22);
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-align: center;
}

.voucher-order-button:hover,
.voucher-order-button:focus-visible {
  background: rgba(255, 254, 235, 0.82);
  outline: none;
}


@media (max-width: 720px) {
  .voucher-30 {
    padding: 12px;
    border-radius: 24px;
  }

  .voucher-30-hero {
    min-height: 360px;
    padding: 30px 20px;
  }

  .voucher-30-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .voucher-30-script,
  .voucher-30-steps,
  .voucher-30-quote {
    text-align: center;
  }

  .voucher-30-quote {
    font-size: 0.76rem !important;
    letter-spacing: 0.14em;
    line-height: 1.75 !important;
  }

  .voucher-30-lotus-main {
    right: -24px;
    bottom: -18px;
    width: 165px;
  }

  .voucher-30-panel {
    padding: 24px 20px;
  }

  .voucher-order-button {
    width: 100%;
    letter-spacing: 0.13em;
  }
}



/* V29: Rechtshinweis im gleichen Farbschema und in gleicher Breite wie die Angebots-Buckets */
.offers-legal-reference {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  padding: 22px 26px;
  border: 1px solid rgba(75, 55, 43, 0.12) !important;
  border-radius: 28px;
  color: rgba(75, 55, 43, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 219, 117, 0.78), rgba(255, 254, 235, 0.80)),
    var(--start-yellow) !important;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.offers-legal-reference p {
  max-width: 860px;
  margin: 0 auto;
  color: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.62;
}

@media (max-width: 720px) {
  .offers-legal-reference {
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 24px;
  }

  .offers-legal-reference p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.56;
  }
}



/* V38: Gutscheinmotiv - "Ein Raum für Dich." vergrößern und "Neu Ausrichten" als eine Zeile halten */
.voucher-30-script {
  font-size: clamp(4.1rem, 7.2vw, 6.9rem) !important;
  line-height: 0.78 !important;
}

.voucher-30-steps .step-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.voucher-30-steps {
  font-size: clamp(0.78rem, 1.22vw, 1.02rem) !important;
  letter-spacing: clamp(0.12em, 0.28vw, 0.18em) !important;
  line-height: 1.72 !important;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: keep-all;
}

@media (max-width: 720px) {
  .voucher-30-script {
    font-size: clamp(4.0rem, 16vw, 5.6rem) !important;
  }

  .voucher-30-steps {
    font-size: clamp(0.78rem, 3.1vw, 0.94rem) !important;
    letter-spacing: 0.14em !important;
  }
}



/* V39: Gutscheinmotiv - "Ein Raum für Dich." wieder harmonischer verkleinert, angelehnt an die Textgröße im rechten Zitatbereich */
.voucher-30-script {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem) !important;
  line-height: 1.0 !important;
}

.voucher-30-script span {
  margin-top: 0.06em;
  padding-left: 0.10em;
}

@media (max-width: 720px) {
  .voucher-30-script {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
    line-height: 1.0 !important;
  }
}



/* V40: Gutscheinmotiv - „Ein Raum für Dich.“ etwas höher gesetzt, auf Höhe der Zeile „laut“ im rechten Textblock */
.voucher-30-script {
  transform: translateY(clamp(-1.45rem, -1.9vw, -0.9rem));
}

@media (max-width: 720px) {
  .voucher-30-script {
    transform: translateY(clamp(-1.25rem, -4.2vw, -0.85rem));
  }
}



/* V41: Gutscheinmotiv - "Ein Raum für Dich." höher setzen und Ankommen/Loslassen zu Neu Ausrichten zentrieren */
.voucher-30-script {
  transform: translateY(clamp(-3.35rem, -4.1vw, -2.35rem)) !important;
}

.voucher-30-steps {
  display: grid !important;
  width: max-content;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-items: center;
  text-align: center;
}

.voucher-30-steps .step-line {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 720px) {
  .voucher-30-script {
    transform: translateY(clamp(-2.65rem, -8.4vw, -1.95rem)) !important;
  }
}



/* V42: „Der zweite Raum“ im Über-mich-Bereich responsiv zentrieren und vollständig sichtbar halten */
.about-30-visual .about-room-script {
  width: min(100%, 420px) !important;
  max-width: calc(100% - 16px) !important;
  margin: 0 auto !important;
  padding: 0 8px !important;
  display: block !important;
  overflow: visible !important;
  color: var(--start-right-brown) !important;
  font-size: clamp(3.8rem, 5vw, 4.8rem) !important;
  line-height: 0.92 !important;
  text-align: center !important;
}

.about-30-visual .about-room-script span {
  display: block !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-align: center !important;
}

.about-30-visual .about-room-script span + span {
  margin-top: 0.08em !important;
}

@media (max-width: 1080px) {
  .about-30-visual .about-room-script {
    width: min(100%, 520px) !important;
    font-size: clamp(4rem, 10vw, 6rem) !important;
  }
}

@media (max-width: 720px) {
  .about-30-visual .about-room-script {
    width: min(100%, 360px) !important;
    font-size: clamp(3.1rem, 13vw, 4.6rem) !important;
    line-height: 0.95 !important;
  }
}



/* V43: Symmetrische Kreis-Beschriftung um das Portrait */
.orbit-label .orbit-char {
  fill: currentColor;
  font-family: "Glacial Indifference", "GlacialIndifference", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .orbit-label .orbit-char {
    font-size: 17px;
  }
}


/* V44: Kreis-Beschriftung mit einheitlichem Abstand zum Foto */
.about-30-visual .orbit-label {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.about-30-visual .orbit-label .orbit-char {
  letter-spacing: 0 !important;
}


/* WordPress-Seiten und Beiträge */
.wp-page-section .panel h1 {
  color: var(--deep-red);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}
.wp-page-section .entry-content {
  margin-top: 24px;
}
.wp-page-section .entry-content p + p {
  margin-top: 1em;
}
.wp-page-section article + article {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(75, 55, 43, 0.12);
}
