@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("Inter-Variable.woff2") format("woff2");
}

:root {
  --brown: #574347;
  --brown-heading: #574149;
  --brown-deep: #3a2c31;
  --peach: #f6c6c6;
  --peach-soft: #fae7e6;
  --peach-light: #fdf1f0;
  --peach-deep: #f2d2d2;
  --accent: #d99a9c;
  --accent-deep: #eda97a;  /* brand color */
  --accent-soft: #f2d2d2;
  --warm-white: #fffbfb;
  --white: #ffffff;
  

  --measure: 42rem;          /* ~672px lesbare Spaltenbreite */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 14px 44px rgba(77, 62, 58, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.6;
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: inherit;
  color: var(--brown-heading);
  line-height: 1.15;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--brown); }

:focus-visible {
  outline: 2px solid var(--brown-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* Sections ---------------------------------------------------------- */

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
  margin-inline: auto;
}

.section--white { background: var(--warm-white); }
.section--peach { background: var(--peach-soft); color: var(--brown); }
.section--brown { background: var(--brown); color: #fff; }

.section--peach h2 { color: var(--brown-heading); }
.section--brown  h2 { color: #fff; }

/* Wavy dividers: each block ends with a wave in the NEXT block's colour */
.hero::after,
.section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(20px, 4vw, 42px);
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
}

.hero:has(+ .section--peach)::after,
.section:has(+ .section--peach)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0,26 C300,42 300,10 600,26 C900,42 900,10 1200,26 L1200,46 L0,46 Z' fill='%23fae7e6'/%3E%3C/svg%3E");
}

.section:has(+ .section--brown)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0,26 C300,42 300,10 600,26 C900,42 900,10 1200,26 L1200,46 L0,46 Z' fill='%23574347'/%3E%3C/svg%3E");
}

.section:has(+ .section--white)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0,26 C300,42 300,10 600,26 C900,42 900,10 1200,26 L1200,46 L0,46 Z' fill='%23fffbfb'/%3E%3C/svg%3E");
}

.section:has(+ .footer)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0,26 C300,42 300,10 600,26 C900,42 900,10 1200,26 L1200,46 L0,46 Z' fill='%233a2c31'/%3E%3C/svg%3E");
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 1.95rem);
  font-weight: 700;
  text-align: center;
}

.section p {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
}

.section p:last-child { margin-bottom: 0; }

.center { text-align: center; }

.quote {
  position: relative;
  isolation: isolate;
  margin: clamp(2rem, 6vw, 3.2rem) 0;
  padding-block: clamp(1.8rem, 5vw, 2.8rem);
  font-style: italic;
  color: var(--brown-heading);
  font-size: 1.08rem;
}

.quote::before,
.quote::after {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 10rem);
  line-height: 1;
  color: var(--peach-deep);
  opacity: 0.5;
  pointer-events: none;
}

.quote::before {
  content: "\201C";
  top: clamp(-1.8rem, -3vw, -0.6rem);
}

.quote::after {
  content: "\201D";
  bottom: clamp(-7.5rem, -13vw, -4.5rem);
}

.section--brown .quote { color: var(--peach-light); }
.section--brown .quote::before,
.section--brown .quote::after { color: var(--peach-light); opacity: 0.14; }

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  background: linear-gradient(165deg, var(--peach-light) 0%, var(--peach-soft) 48%, var(--peach-deep) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 82px;
  height: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  animation: gentle-pulse 3.6s var(--ease) infinite;
}

.hero__portrait {
  width: clamp(150px, 40vw, 200px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.hero__name {
  margin: clamp(1.4rem, 4vw, 2rem) 0 0;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__role {
  margin: 0.6rem 0 0;
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}

.hero__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.8rem, 5vw, 2.6rem);
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--brown);
  border-radius: var(--radius-pill);
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.hero__cue:hover {
  background: var(--brown);
  color: #fff;
}

.hero__cue svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Icons ------------------------------------------------------------- */

.icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
}

.icon path,
.icon circle,
.icon line,
.icon polyline {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.section--white .icon,
.section--peach .icon { color: var(--brown-heading); }
.section--brown .icon { color: var(--accent); }

/* Contact ----------------------------------------------------------- */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3rem);
  justify-content: center;
  text-align: center;
}

.contact-grid > div { flex: 1 1 220px; }

.contact-grid address {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-grid .label {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.contact-grid a {
  display: inline-block;
  padding: 0.2rem 0.25rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-grid a:hover { text-decoration: underline; }

.map {
  margin-top: clamp(1.6rem, 5vw, 2.4rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.btn {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--brown);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover { background: var(--brown-deep); color: #fff; transform: translateY(-2px); }

/* Services (brown) -------------------------------------------------- */

.services {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}

.services img { width: 120px; height: auto; }

.services ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem);
}

.services li { margin: 0.5rem 0; }

.services-text { flex: 1 1 240px; min-width: 210px; text-align: left; }

/* Hypno illustration (EMDR) ----------------------------------------- */

.hypno {
  width: clamp(190px, 46vw, 300px);
  height: auto;
  margin: 0 auto clamp(1.2rem, 4vw, 1.8rem);
  border-radius: var(--radius-md);
  opacity: 0.9;
}

/* Inline logo (coaching) -------------------------------------------- */

.inline-logo {
  width: 150px;
  height: auto;
  margin: 1.8rem auto 0;
}

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

.footer {
  background: var(--brown-deep);
  color: var(--peach-light);
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer p { margin: 0.4rem 0; }

.footer a { color: #fff; font-weight: 600; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer .sep { margin: 0 0.6rem; opacity: 0.5; }

/* Impressum --------------------------------------------------------- */

.legal {
  max-width: var(--measure);
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) 1.5rem clamp(3rem, 8vw, 5rem);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
  text-decoration: none;
}

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

.legal h1 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1.75rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
}

.legal p { margin: 0 0 0.9rem; }

/* Decorative blobs -------------------------------------------------- */

.deco {
  position: absolute;
  z-index: 0;
  width: clamp(140px, 24vw, 280px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}

.deco svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  will-change: transform;
  animation: blob-drift 52s ease-in-out infinite alternate;
}

.deco--tl { top: 5%;  left: 4%;  transform: translate(-16px, -14px) scale(0.92); }
.deco--br { right: 4%; bottom: 12%; transform: translate(16px, 14px) scale(0.92); }
.deco--tr { top: 5%;  right: 4%; transform: translate(16px, -14px) scale(0.9); }
.deco--bl { left: 4%; bottom: 12%; transform: translate(-16px, 14px) scale(0.9); }

.deco--br svg,
.deco--bl svg { animation-duration: 64s; animation-direction: alternate-reverse; }

.deco.is-visible { opacity: var(--deco-opacity, 0.4); transform: translate(0, 0) scale(1); }

.section--white  { --deco-opacity: 0.5; }
.section--peach  { --deco-opacity: 0.55; }
.section--brown  { --deco-opacity: 0.3; }
.hero            { --deco-opacity: 0.5; }

.section--white .deco { color: var(--accent-soft); }
.section--peach .deco { color: var(--white); }
.section--brown .deco { color: var(--accent); }
.hero .deco           { color: var(--white); }

/* Motion / reveal --------------------------------------------------- */

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

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

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes blob-drift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(0, -8px) rotate(5deg) scale(1.02); }
}

/* Hover lift -------------------------------------------------------- */

.section__inner,
.contact-grid > div,
.map,
.hero__portrait,
.services img,
.inline-logo,
.hypno,
.section .icon {
  transition: transform 0.3s var(--ease);
}

.section__inner:hover,
.hero__portrait:hover { transform: translateY(-4px); }

.contact-grid > div:hover,
.map:hover,
.services img:hover,
.inline-logo:hover,
.hypno:hover,
.section .icon:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__logo { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .deco { transition: none; transform: none; }
  .deco svg { animation: none; }
  .btn:hover,
  .hero__cue:hover,
  .section__inner:hover,
  .contact-grid > div:hover,
  .map:hover,
  .hero__portrait:hover,
  .services img:hover,
  .inline-logo:hover,
  .hypno:hover,
  .section .icon:hover { transform: none; }
}

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

@media (max-width: 600px) {
  .services { flex-direction: column; }
  .contact-grid a { padding: 0.45rem 0.5rem; }
}
