:root {
  color-scheme: light;
  --page: #fffdf4;
  --paper: #fffef9;
  --yellow: #fff4a8;
  --yellow-deep: #ecd874;
  --rose: #f7d7dc;
  --plum: #7b3f60;
  --plum-deep: #5f2d49;
  --text: #3f2935;
  --muted: #725d69;
  --line: #dfc9d4;
  --on-plum: #fffdf4;
  --radius: 28px;
  --radius-large: 44px;
  --glass: rgba(255, 254, 249, 0.72);
  --glass-border: rgba(123, 63, 96, 0.22);
  --shadow: 0 20px 52px rgba(123, 63, 96, 0.13), 0 5px 18px rgba(123, 63, 96, 0.07);
  --shadow-raised: 0 26px 66px rgba(123, 63, 96, 0.16), 0 8px 22px rgba(123, 63, 96, 0.08);
  --shell: min(1180px, calc(100% - 40px));
  --display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 244, 168, 0.5), transparent 24rem),
    radial-gradient(circle at 93% 31%, rgba(247, 215, 220, 0.34), transparent 25rem),
    var(--page);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only,
.skip-link {
  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:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  margin: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--plum);
}

.demo-notice {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 18px;
  background: var(--plum);
  color: var(--on-plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 244, 0.76);
  border-bottom: 1px solid rgba(123, 63, 96, 0.16);
  box-shadow: 0 7px 24px rgba(123, 63, 96, 0.05), inset 0 -1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-symbol {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 63, 96, 0.38);
  border-radius: 17px 23px 17px 23px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 244, 168, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 7px 16px rgba(123, 63, 96, 0.1);
  transform: rotate(-3deg);
}

.brand-heart {
  font-family: Arial, sans-serif;
  font-size: 33px;
  line-height: 1;
  transform: translate(-2px, 3px) rotate(3deg);
}

.brand-sun {
  position: absolute;
  top: 3px;
  right: 4px;
  color: #e4a40d;
  font-size: 16px;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  white-space: nowrap;
}

.site-nav a {
  color: var(--plum);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:not(.nav-contact):hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-nav .nav-contact {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--plum);
  color: var(--on-plum);
  box-shadow: 0 7px 16px rgba(123, 63, 96, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-nav .nav-contact:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 11px 21px rgba(123, 63, 96, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(123, 63, 96, 0.38);
  border-radius: 16px 21px 16px 21px;
  background: rgba(255, 253, 244, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 6px 14px rgba(123, 63, 96, 0.1);
  color: var(--plum);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(36px, 5.5vw, 68px) 0;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.74) 0 8%, transparent 22%),
    radial-gradient(circle at 80% 75%, rgba(247, 215, 220, 0.36), transparent 31%),
    var(--yellow);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -54px;
  height: 94px;
  z-index: -1;
  border-radius: 50% 48% 0 0;
  background: var(--page);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-shape--one {
  width: 300px;
  height: 300px;
  top: 9%;
  right: -110px;
  border: 1px solid rgba(123, 63, 96, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 43% 57% 66% 34% / 55% 45% 55% 45%;
  transform: rotate(18deg);
}

.hero-shape--two {
  width: 90px;
  height: 90px;
  left: 4vw;
  bottom: 9%;
  border-radius: 50%;
  background: rgba(247, 215, 220, 0.72);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.76fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  max-width: 570px;
  margin: 0 0 18px;
  color: var(--plum);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 750;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--plum);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 800;
  text-transform: uppercase;
}

h1 em {
  display: inline-block;
  padding-bottom: 7px;
  font-style: italic;
  font-weight: 800;
  text-transform: none;
}

h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 760;
}

.hero-subline {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: var(--on-plum);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(123, 63, 96, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(123, 63, 96, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button:active,
.site-nav .nav-contact:active {
  transform: scale(0.98);
}

.phone-link {
  color: var(--plum);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-portrait {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
}

.portrait-backdrop {
  position: absolute;
  inset: -24px -34px 35px 24px;
  z-index: -1;
  border: 1px solid rgba(123, 63, 96, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  border-radius: 58% 42% 47% 53% / 40% 58% 42% 60%;
  transform: rotate(5deg);
}

.portrait-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 7px solid rgba(255, 254, 249, 0.84);
  border-radius: 45% 55% 49% 51% / 36% 40% 60% 64%;
  background: var(--paper);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(-2deg);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.hero-portrait figcaption {
  width: fit-content;
  margin: 13px 18px 0 auto;
  color: var(--plum);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  transform: rotate(-2deg);
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.welcome h2 {
  max-width: 14ch;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "plum yellow"
    "paper rose";
  gap: 22px;
}

.welcome-card {
  position: relative;
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.welcome-card h3 {
  max-width: 21ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
}

.welcome-card ul {
  margin: 28px 0 0;
  padding-left: 22px;
}

.welcome-card li + li {
  margin-top: 8px;
}

.welcome-card--plum {
  grid-area: plum;
  background: var(--plum);
  color: var(--on-plum);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.welcome-card--yellow {
  grid-area: yellow;
  margin-top: 48px;
  background: var(--yellow);
  color: var(--plum);
  border: 1px solid rgba(123, 63, 96, 0.17);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255, 249, 200, 0.94), rgba(255, 244, 168, 0.86));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.welcome-card--paper {
  grid-area: paper;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--plum);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
}

.welcome-card--rose {
  grid-area: rose;
  margin-top: -34px;
  background: var(--rose);
  color: var(--plum);
  border: 1px solid rgba(123, 63, 96, 0.14);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.card-symbol {
  position: absolute;
  right: 26px;
  bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 104px;
  line-height: 1;
  opacity: 0.16;
}

.beratung {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.43), transparent 23rem),
    var(--yellow);
}

.section-heading p,
.stress-heading > p,
.vita-copy > p,
.contact-copy > p {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.beratung-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
  margin-top: clamp(46px, 7vw, 82px);
}

.beratung-copy {
  padding-left: clamp(0px, 5vw, 70px);
}

.beratung-copy p {
  max-width: 54ch;
  margin: 24px 0 0;
}

.beratung-copy .large-copy {
  margin-top: 0;
  color: var(--plum);
  font-family: var(--display);
  font-size: clamp(23px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.32;
}

.therapy-note {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(123, 63, 96, 0.38);
  border-radius: var(--radius-large);
  background: var(--glass);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  transform: rotate(0.45deg);
}

.therapy-note h3 {
  max-width: none;
  margin: 0 0 26px;
  color: var(--plum);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.therapy-note p {
  margin: 18px 0 0;
}

.note-flower {
  position: absolute;
  top: 16px;
  right: 28px;
  color: #d5a616;
  font-size: 46px;
}

.stress-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px clamp(44px, 8vw, 100px);
}

.stress-heading {
  align-self: center;
}

.method-cloud {
  min-height: 360px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 42px;
  border: 1px solid rgba(123, 63, 96, 0.14);
  border-radius: var(--radius-large);
  background: linear-gradient(140deg, rgba(255, 240, 242, 0.92), rgba(247, 215, 220, 0.84));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.method-cloud span {
  padding: 11px 18px;
  border: 1px solid rgba(123, 63, 96, 0.42);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.78);
  color: var(--plum);
  font-size: 15px;
  font-weight: 750;
  box-shadow: 0 5px 12px rgba(123, 63, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.method-cloud span:nth-child(2),
.method-cloud span:nth-child(5) {
  transform: rotate(2deg);
}

.method-cloud span:nth-child(3) {
  background: var(--yellow);
  transform: rotate(-2deg);
}

.sets {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 92px);
  margin-top: clamp(40px, 7vw, 76px);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  background: var(--plum);
  color: var(--on-plum);
}

.sets h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.sets-title p {
  max-width: 36ch;
  margin: 12px 0 0;
}

.sets-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sets-methods div {
  padding: 24px;
  border: 1px solid rgba(255, 253, 244, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.sets-methods h4 {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 18px;
}

.sets-methods p {
  margin: 8px 0 0;
}

.vita {
  background:
    radial-gradient(circle at 11% 74%, rgba(255, 255, 255, 0.34), transparent 24rem),
    var(--yellow);
}

.vita-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.vita-photo {
  position: sticky;
  top: 110px;
  margin: 0;
}

.vita-photo::before {
  content: "";
  position: absolute;
  inset: -18px 24px 22px -24px;
  z-index: -1;
  border: 1px solid rgba(123, 63, 96, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
  border-radius: 48% 52% 45% 55% / 55% 40% 60% 45%;
  transform: rotate(-5deg);
}

.vita-photo-frame {
  overflow: hidden;
  aspect-ratio: 1;
  border: 7px solid rgba(255, 254, 249, 0.84);
  border-radius: 48% 52% 43% 57% / 42% 52% 48% 58%;
  background: var(--paper);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vita-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vita-copy h3 {
  margin: 24px 0 34px;
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 27px);
}

.vita-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vita-groups section {
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 12px 28px rgba(123, 63, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px) saturate(108%);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
}

.vita-groups section:nth-child(2),
.vita-groups section:nth-child(4) {
  transform: translateY(18px);
}

.vita-groups h4 {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 18px;
}

.vita-groups ul {
  margin: 0;
  padding-left: 19px;
}

.vita-groups li + li {
  margin-top: 7px;
}

.contact {
  background: var(--page);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1.05fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 74px);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(123, 63, 96, 0.32);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255, 249, 199, 0.92), rgba(255, 244, 168, 0.82));
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px) saturate(108%);
  -webkit-backdrop-filter: blur(14px) saturate(108%);
}

.contact-mark {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--plum);
}

.contact-mark span {
  font-family: Arial, sans-serif;
  font-size: clamp(110px, 13vw, 170px);
  line-height: 1;
}

.contact-mark i {
  position: absolute;
  top: 2px;
  right: 0;
  color: #d5a616;
  font-size: 52px;
  font-style: normal;
}

.contact-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px);
}

.contact-copy h3 {
  max-width: 25ch;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.4;
}

.contact-details {
  display: grid;
  gap: 7px;
  margin: 0;
  font-style: normal;
}

.contact-details strong {
  margin-bottom: 6px;
  color: var(--plum);
  font-size: 21px;
}

.contact-details a {
  margin-top: 12px;
  color: var(--plum);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 22px 0 106px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px 50px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner p {
  display: grid;
  margin: 0;
}

.footer-inner strong,
.footer-inner a {
  color: var(--plum);
}

.mobile-action {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 22px 20px 30px;
    border-bottom: 1px solid rgba(123, 63, 96, 0.3);
    background: rgba(255, 244, 168, 0.92);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a,
  .site-nav .nav-contact {
    min-height: auto;
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(123, 63, 96, 0.24);
    border-radius: 0;
    background: transparent;
    color: var(--plum);
    font-size: 16px;
  }

  .site-nav .nav-contact:hover {
    background: transparent;
    transform: none;
  }

  .hero-grid,
  .beratung-layout,
  .stress-layout,
  .vita-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-portrait {
    width: min(430px, 85%);
    margin-right: 3%;
  }

  .beratung-copy {
    padding-left: 0;
  }

  .stress-heading {
    max-width: 600px;
  }

  .method-cloud {
    min-height: 300px;
  }

  .vita-photo {
    position: relative;
    top: auto;
    width: min(470px, 88%);
  }

  .contact-panel {
    grid-template-columns: minmax(130px, 0.35fr) 1fr;
  }

  .contact-details {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 24px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    border-radius: 15px 21px 16px 20px;
  }

  .brand-heart {
    font-size: 29px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset-block-start: 68px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    align-items: start;
    padding: 28px 0 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-kicker {
    max-width: 32ch;
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(43px, 13.5vw, 58px);
    line-height: 0.96;
  }

  h1 em {
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero-subline {
    max-width: 30ch;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.38;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
  }

  .phone-link {
    font-size: 14px;
  }

  .hero-portrait {
    width: 74%;
    max-width: 270px;
    margin: 0 8% 0 auto;
  }

  .portrait-backdrop {
    inset: -13px -19px 22px 14px;
  }

  .portrait-frame {
    border-width: 6px;
  }

  .hero-portrait figcaption {
    margin-top: 7px;
    font-size: 13px;
  }

  .hero-shape--one {
    width: 190px;
    height: 190px;
  }

  .hero-shape--two {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .welcome h2 {
    margin-bottom: 40px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "plum"
      "yellow"
      "paper"
      "rose";
  }

  .welcome-card,
  .welcome-card--yellow,
  .welcome-card--rose {
    min-height: auto;
    margin-top: 0;
    padding: 30px;
    border-radius: var(--radius);
  }

  .welcome-card h3 {
    font-size: 26px;
  }

  .card-symbol {
    font-size: 78px;
  }

  .beratung-layout {
    margin-top: 38px;
  }

  .therapy-note {
    padding: 32px 26px;
    border-radius: var(--radius);
    transform: none;
  }

  .note-flower {
    top: 10px;
    right: 18px;
    font-size: 34px;
  }

  .method-cloud {
    min-height: 300px;
    padding: 34px 20px;
    border-radius: var(--radius);
  }

  .method-cloud span {
    padding: 9px 13px;
    font-size: 13px;
  }

  .sets {
    grid-template-columns: 1fr;
    margin-top: 36px;
    padding: 34px 26px;
    border-radius: var(--radius);
  }

  .sets-methods {
    grid-template-columns: 1fr;
  }

  .vita-grid {
    gap: 54px;
  }

  .vita-photo {
    width: 88%;
    margin-inline: auto;
  }

  .vita-groups {
    grid-template-columns: 1fr;
  }

  .vita-groups section:nth-child(2),
  .vita-groups section:nth-child(4) {
    transform: none;
  }

  .contact-panel {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 26px 48px;
    border-radius: var(--radius);
  }

  .contact-mark {
    min-height: 90px;
    justify-content: start;
  }

  .contact-mark span {
    font-size: 96px;
  }

  .contact-mark i {
    top: -4px;
    left: 70px;
    right: auto;
    font-size: 38px;
  }

  .contact-details {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mobile-action {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(123, 63, 96, 0.32);
    border-radius: 999px;
    background: rgba(255, 253, 244, 0.76);
    box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(112%);
    -webkit-backdrop-filter: blur(18px) saturate(112%);
  }

  .mobile-action a {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--plum);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action a:first-child {
    background: var(--plum);
    color: var(--on-plum);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .mobile-action,
  .welcome-card--paper,
  .therapy-note,
  .vita-groups section,
  .contact-panel {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
