/* =========================================================
   Annette Coacht — Design System v2
   Editorial, warm, theaterisch — komplettes Redesign
   ========================================================= */

:root{
  --bg: #FAF6EF;
  --bg-alt: #F2EBDF;
  --bg-deep: #171320;
  --bg-deep-alt: #201A2C;
  --paper: #FFFFFF;

  --ink: #1C1720;
  --ink-soft: #55505C;
  --ink-faint: #857E8C;
  --ink-on-deep: #F3EFE8;
  --ink-on-deep-soft: #B9AFC6;

  --violet: #4B2E83;
  --violet-deep: #2A1B4C;
  --violet-bright: #8657D6;
  --violet-mist: #EFE7F8;
  --violet-line: rgba(75,46,131,0.3);

  --gold: #C9922E;

  --line: rgba(28,23,32,0.10);
  --line-strong: rgba(28,23,32,0.18);
  --line-on-deep: rgba(255,255,255,0.14);

  --shadow-soft: 0 24px 60px -30px rgba(30,20,50,0.35);
  --shadow-card: 0 14px 34px -20px rgba(30,20,50,0.28);

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-soft: cubic-bezier(.16,.8,.24,1);
}

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

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

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

body{
  margin: 0;
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(75,46,131,0.05), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

h1, h2, h3, h4{
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h2 strong, h1 strong{ font-weight: 800; }

p{ margin: 0 0 1em; color: var(--ink-soft); }

em{ font-style: italic; color: var(--violet); font-weight: 700; }

.wrap{
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 700px){ .wrap{ padding-inline: 40px; } }

.lg-only{ display: none; }
@media (min-width: 900px){ .lg-only{ display: inline; } }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--violet);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 2px;
}
.cta-stage :focus-visible, .site-footer :focus-visible{
  outline-color: #fff;
}

/* -------- Eyebrow / Labels -------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 18px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 2px;
  background: var(--violet);
  flex-shrink: 0;
}
.eyebrow-light{ color: #C9B4EE; }
.eyebrow-light::before{ background: #C9B4EE; }

/* -------- Buttons -------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg{ width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{
  background: var(--violet);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{
  background: var(--violet-bright);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover{
  border-color: var(--violet);
  color: var(--violet);
  transform: translateY(-2px);
}
.btn-on-dark{
  background: #fff;
  color: var(--violet-deep);
}
.btn-on-dark:hover{
  background: var(--violet-mist);
  transform: translateY(-2px);
}
.btn-small{ padding: 11px 24px; font-size: 0.85rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250,246,239,0.7);
  backdrop-filter: blur(0px);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled{
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  transition: padding .4s var(--ease);
}
.site-header.scrolled .header-inner{ padding-block: 14px; }

.brand{
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand span{ color: var(--violet); }
.brand-mark{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--violet);
  display: none;
}

.main-nav{
  display: none;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav a{
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .3s var(--ease), background .3s var(--ease);
}
@media (min-width: 1280px){
  .main-nav{ gap: 6px; }
  .main-nav a{ font-size: 0.9rem; padding: 8px 14px; }
}
.main-nav a:hover{ color: var(--ink); background: var(--violet-mist); }
.main-nav a.active{ color: var(--violet); }
.main-nav a.active::after{
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}

.header-actions{ display: flex; align-items: center; gap: 18px; }
.header-actions .btn-primary{ display: none; }
@media (min-width: 1180px){
  .main-nav{ display: flex; }
  .header-actions .btn-primary{ display: inline-flex; }
}

.nav-toggle{
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1180px){ .nav-toggle{ display: none; } }
.nav-toggle span{
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid transparent;
  transition: max-height .4s var(--ease), border-color .4s var(--ease);
  display: flex;
  flex-direction: column;
  padding-inline: 24px;
}
.mobile-nav.open{
  max-height: 420px;
  border-color: var(--line);
  padding-block: 10px 22px;
}
.mobile-nav a{
  padding: 13px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn{ margin-top: 16px; justify-content: center; }
@media (min-width: 1180px){ .mobile-nav{ display: none; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal-img{ overflow: hidden; }
.reveal-img img{
  transition: clip-path 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  clip-path: inset(0 0 0 0);
}
.reveal-img[data-reveal]:not(.is-visible) img{
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 4vw, 48px) 24px clamp(72px, 9vw, 110px);
}
@media (min-width: 700px){ .hero{ padding-inline: 40px; } }

.hero-texture{
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.16;
  filter: blur(2px) saturate(1.15);
}
.hero-texture img{ width: 100%; height: 100%; object-fit: cover; }
.hero-texture::after{
  content: "";
  position: absolute; inset: 0;
  background: var(--bg);
  opacity: 0.55;
}

.hero-inner{ position: relative; z-index: 4; max-width: 1000px; padding-inline: 12px; }

.hero-headline{
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-inline: auto;
  white-space: normal;
}
.hero-headline strong{ font-weight: 800; }

.hero-lead{
  font-size: 1.14rem;
  max-width: 46ch;
  margin: 26px auto 10px;
}

.hero-motto{
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-faint);
  margin-bottom: 34px;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.credibility-strip{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-weight: 600;
}
.credibility-strip span{ white-space: nowrap; }
.credibility-strip span::before{ content: "— "; color: var(--violet-line); }

/* -------- Floating Portrait Badges -------- */
.hero-badge{
  position: absolute;
  z-index: 3;
  will-change: transform;
  animation: hero-badge-in 1s var(--ease) both;
}
.hero-badge-secondary{ animation-delay: 0.15s; }
@keyframes hero-badge-in{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
.hero-badge-primary{ width: 108px; height: 108px; top: 5%; right: 4%; }
.hero-badge-secondary{ width: 82px; height: 82px; bottom: 16%; left: 4%; }
@media (min-width: 540px){
  .hero-badge-primary{ width: 138px; height: 138px; top: 6%; right: 4%; }
  .hero-badge-secondary{ width: 104px; height: 104px; bottom: 18%; left: 4%; }
}
@media (min-width: 760px){
  .hero-badge-primary{ width: 182px; height: 182px; top: 7%; right: 5%; }
  .hero-badge-secondary{ width: 134px; height: 134px; bottom: 20%; left: 5%; }
}
@media (min-width: 1180px){
  .hero-badge-primary{ width: 238px; height: 238px; top: 8%; right: 5%; }
  .hero-badge-secondary{ width: 175px; height: 175px; bottom: 22%; left: 5%; }
}
/* Bei niedrigen Viewports (z. B. Mobilgerät quer) enger an die Ecken rücken */
@media (max-height: 640px){
  .hero-badge-primary{ width: 88px !important; height: 88px !important; top: 4% !important; }
  .hero-badge-secondary{ width: 70px !important; height: 70px !important; bottom: 12% !important; }
}

.hero-badge::before{
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.hero-badge:hover::before,
.hero-badge:focus-within::before{
  opacity: 1;
  animation: hero-badge-pulse 1.6s var(--ease) infinite;
}
@keyframes hero-badge-pulse{
  0%{ transform: scale(1.02); opacity: 0.9; }
  100%{ transform: scale(1.2); opacity: 0; }
}

.hero-badge-inner{
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.hero-badge-secondary .hero-badge-inner{ border-width: 4px; }
.hero-badge:hover .hero-badge-inner,
.hero-badge:focus-within .hero-badge-inner{
  transform: scale(1.1);
  box-shadow: 0 40px 70px -20px rgba(75,46,131,0.5);
}
.hero-badge-inner img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.6s var(--ease);
}
.hero-badge:hover .hero-badge-inner img,
.hero-badge:focus-within .hero-badge-inner img{
  transform: scale(1.12);
}

.hero-badge-label{
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translate(-50%, 8px);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.hero-badge:hover .hero-badge-label,
.hero-badge:focus-within .hero-badge-label{
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section{
  padding-block: clamp(76px, 10vw, 132px);
}
.section-alt{ background: var(--bg-alt); }

.section-head{
  max-width: 800px;
  margin-bottom: clamp(44px, 6vw, 68px);
}
.section-head h2{
  font-size: clamp(1.95rem, 3.6vw, 2.6rem);
  margin-bottom: 0.35em;
}
.section-head .section-note{
  max-width: 56ch;
  font-size: 1.04rem;
  margin: 0;
}
.section-head-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-row p.section-note{
  max-width: 34ch;
  font-size: 0.98rem;
  margin: 0;
}

/* =========================================================
   ANGEBOT
   ========================================================= */
.angebot-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 900px){
  .angebot-grid{ grid-template-columns: 1.1fr 1fr; align-items: center; }
}

.angebot-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.angebot-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.angebot-media:hover img{ transform: scale(1.04); }

.service-cards{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  flex: 1;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--violet-line);
}
.service-icon{
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--violet-mist);
  color: var(--violet);
  margin-bottom: 18px;
}
.service-icon svg{ width: 24px; height: 24px; }
.service-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.service-card p{ margin: 0; font-size: 0.95rem; }

.offer-strip{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
@media (min-width: 720px){
  .offer-strip{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  .offer-strip{ grid-template-columns: repeat(4, 1fr); }
}
.offer-strip li{
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.offer-strip li:hover{ border-color: var(--violet-line); transform: translateY(-3px); }
.offer-strip li span{
  display: block;
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* =========================================================
   PERSÖNLICHKEITSENTWICKLUNG (Triptychon)
   ========================================================= */
.triptych{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px){
  .triptych{ grid-template-columns: repeat(3, 1fr); }
}
.triptych-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.triptych-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.triptych-card::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,10,35,0) 38%, rgba(20,10,35,0.88) 100%);
  transition: opacity .5s var(--ease);
  z-index: 1;
}
.triptych-index{
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
}
.triptych-overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 24px;
  transform: translateY(10px);
  transition: transform .5s var(--ease);
}
.triptych-overlay h3{
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.triptych-card:hover img{ transform: scale(1.08); }
.triptych-card:hover .triptych-overlay{ transform: translateY(0); }

/* =========================================================
   WORKSHOPS CTA BANNER
   ========================================================= */
.workshops{ background: var(--violet-mist); }
.workshops-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 920px){
  .workshops-grid{ grid-template-columns: 0.9fr 1fr; gap: 64px; }
}
.workshops-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.workshops-media img{ width: 100%; height: 100%; object-fit: cover; }
.workshops-copy h2{ font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
.workshops-copy p{ font-size: 1.05rem; margin-bottom: 28px; max-width: 46ch; }

/* =========================================================
   BÜHNENERFAHRUNG (Galerie)
   ========================================================= */
.buehne-slider-wrap{ position: relative; }
.buehne-slider{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 4px;
  margin-inline: -24px;
  padding-inline: 24px;
}
@media (min-width: 700px){ .buehne-slider{ margin-inline: -40px; padding-inline: 40px; } }
.buehne-slider::-webkit-scrollbar{ display: none; }

.buehne-item{
  flex: 0 0 auto;
  width: 80%;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px){ .buehne-item{ width: 45%; } }
@media (min-width: 980px){ .buehne-item{ width: 30.5%; scroll-snap-align: start; } }
.buehne-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.buehne-item:hover img{ transform: scale(1.06); }

.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  z-index: 5;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.slider-arrow svg{ width: 20px; height: 20px; }
.slider-arrow:hover{ background: var(--violet); color: #fff; transform: translateY(-50%) scale(1.06); }
.slider-arrow-prev{ left: -4px; }
.slider-arrow-next{ right: -4px; }
@media (min-width: 700px){
  .slider-arrow{ display: flex; }
  .slider-arrow-prev{ left: -22px; }
  .slider-arrow-next{ right: -22px; }
}

.slider-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.slider-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.slider-dot:hover{ background: var(--violet-line); }
.slider-dot.active{ background: var(--violet); transform: scale(1.3); }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.ueber-mich-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 940px){
  .ueber-mich-grid{ grid-template-columns: 0.85fr 1.15fr; gap: 72px; }
}
.ueber-mich-media{ position: relative; }
.ueber-mich-media img{
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: var(--shadow-card);
}
.tag-scatter{
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-scatter li{
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.ueber-mich-copy h2{ font-size: clamp(2rem, 4vw, 2.8rem); }
.ueber-mich-copy p{ font-size: 1.02rem; max-width: 60ch; }
.pull-quote{
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--violet);
  margin: 28px 0;
  padding-left: 22px;
  border-left: 3px solid var(--violet);
}

/* =========================================================
   CLOSING CTA "STAGE"
   ========================================================= */
.cta-stage{
  background: linear-gradient(160deg, var(--violet) 0%, var(--violet-deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta-stage::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 90% 100%, rgba(255,255,255,0.08), transparent 70%);
}
.cta-stage-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px){
  .cta-stage-grid{ grid-template-columns: 1.1fr 0.7fr; }
}
.cta-stage h2{
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  max-width: 12ch;
}
.cta-stage p{
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 46ch;
}
.cta-stage-actions{ margin: 30px 0; }
.cta-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.cta-contact a{
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.cta-contact a:hover{ border-color: #fff; }

.cta-stage-media{
  justify-self: center;
  width: 100%;
  max-width: 340px;
}
.cta-stage-media img{
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(0.15) saturate(1.05);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

/* -------- Kontaktformular -------- */
.cta-form-card{
  width: 100%;
  max-width: 420px;
  justify-self: center;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 40px 80px -35px rgba(0,0,0,0.5);
}
.cta-form-card h3{
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--ink);
}
.form-row{
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label{
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.form-row label span{ font-weight: 400; color: var(--ink-faint); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea{
  font: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  resize: vertical;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-mist);
}
.form-row input:invalid:not(:placeholder-shown){ border-color: #C24E4E; }

.form-consent{
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-consent input{ margin-top: 3px; flex-shrink: 0; }
.form-consent label{
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-consent label a{ color: var(--violet); text-decoration: underline; }

.form-hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-form-card .btn{ width: 100%; justify-content: center; }

.form-status{
  margin: 14px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status[data-state="ok"]{ color: #1E7A4C; }
.form-status[data-state="error"]{ color: #C24E4E; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  position: relative;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.site-footer::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-bright), var(--violet) 45%, transparent 90%);
}

.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 780px){
  .footer-inner{ grid-template-columns: 1.3fr 1fr 0.8fr 1.1fr; gap: 24px; }
}

.footer-brand .brand{ color: #fff; font-size: 1.2rem; }
.footer-brand .brand span{ color: #C9B4EE; }
.footer-brand p{ color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 12px; }
.footer-brand .footer-locality{
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

.footer-label{
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B79EE8;
  margin: 0 0 16px;
}

.footer-nav, .footer-legal, .footer-contact{
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.92rem;
}
.footer-nav a, .footer-legal a, .footer-contact a{
  position: relative;
  width: fit-content;
  color: rgba(255,255,255,0.72);
  transition: color .3s var(--ease);
}
.footer-nav a::after, .footer-legal a::after, .footer-cta-link::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: #fff;
  transition: right .3s var(--ease);
}
.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover{ color: #fff; }
.footer-nav a:hover::after, .footer-legal a:hover::after, .footer-cta-link:hover::after{ right: 0; }

.footer-mail{
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-mail svg{ width: 17px; height: 17px; flex-shrink: 0; color: #B79EE8; }
.footer-cta-link{ color: #C9B4EE !important; font-weight: 600; }
.footer-cta-link:hover{ color: #fff !important; }

.footer-bottom{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-top-link{
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 0.8rem;
  transition: color .3s var(--ease), transform .3s var(--ease);
  display: inline-block;
}
.footer-top-link:hover{ color: #fff; transform: translateY(-2px); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-hero{
  padding-block: clamp(56px, 8vw, 96px) 24px;
}
.legal-hero .eyebrow{ margin-bottom: 12px; }
.legal-content{
  padding-bottom: 96px;
  max-width: 780px;
}
.legal-content h2{ font-size: 1.3rem; margin-top: 2.2em; }
.legal-content h3{ font-size: 1.05rem; margin-top: 1.8em; }
.legal-content p{ font-size: 0.98rem; }
.legal-content a{ color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul{ color: var(--ink-soft); padding-left: 1.2em; }
.back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--violet);
}
